mendixmodelsdk
Advanced tools
Comparing version 4.76.1-dev-1240-6aa00a4e0 to 4.76.1-dev-1241-6aa00a4e0
{ | ||
"name": "mendixmodelsdk", | ||
"description": "Mendix Model SDK", | ||
"version": "4.76.1-dev-1240-6aa00a4e0", | ||
"version": "4.76.1-dev-1241-6aa00a4e0", | ||
"author": "Mendix", | ||
@@ -6,0 +6,0 @@ "license": "MIT", |
@@ -419,2 +419,5 @@ import * as internal from "../sdk/internal"; | ||
set sqlDataType(newValue: SqlDataType | null); | ||
/** | ||
* In version 10.1.0: removed optional | ||
*/ | ||
get dataType(): datatypes.DataType | null; | ||
@@ -421,0 +424,0 @@ set dataType(newValue: datatypes.DataType | null); |
@@ -682,3 +682,3 @@ "use strict"; | ||
/** @internal */ | ||
this.__dataType = new internal.PartProperty(QueryParameter, this, "dataType", null, false); | ||
this.__dataType = new internal.PartProperty(QueryParameter, this, "dataType", null, true); | ||
/** @internal */ | ||
@@ -700,2 +700,5 @@ this.__defaultValue = new internal.PrimitiveProperty(QueryParameter, this, "defaultValue", "", internal.PrimitiveTypeEnum.String); | ||
set sqlDataType(newValue) { this.__sqlDataType.set(newValue); } | ||
/** | ||
* In version 10.1.0: removed optional | ||
*/ | ||
get dataType() { return this.__dataType.get(); } | ||
@@ -728,2 +731,8 @@ set dataType(newValue) { this.__dataType.set(newValue); } | ||
super._initializeDefaultProperties(); | ||
(() => { | ||
if (internal.isAtLeast("10.1.0", this.model)) { | ||
this.dataType = datatypes_1.datatypes.UnknownType.create(this.model); | ||
return; | ||
} | ||
})(); | ||
} | ||
@@ -734,2 +743,12 @@ } | ||
"introduced": "9.22.0", | ||
"properties": { | ||
"dataType": { | ||
"required": { | ||
"currentValue": true, | ||
"changedIn": [ | ||
"10.1.0" | ||
] | ||
} | ||
} | ||
}, | ||
"experimental": { | ||
@@ -933,2 +952,3 @@ "currentValue": true | ||
})(databaseconnector = exports.databaseconnector || (exports.databaseconnector = {})); | ||
const datatypes_1 = require("./datatypes"); | ||
//# sourceMappingURL=databaseconnector.js.map |
@@ -1,2 +0,2 @@ | ||
/** Current SDK version: 4.76.1-dev-1240-6aa00a4e0 */ | ||
/** Current SDK version: 4.76.1-dev-1241-6aa00a4e0 */ | ||
export declare const SDK_VERSION: string; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.SDK_VERSION = void 0; | ||
/** Current SDK version: 4.76.1-dev-1240-6aa00a4e0 */ | ||
/** Current SDK version: 4.76.1-dev-1241-6aa00a4e0 */ | ||
exports.SDK_VERSION = "4.76.1"; | ||
//# sourceMappingURL=version.js.map |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
14244108
198930