@targetprocess/shared-data-model-client 1.10.0 → 1.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -590,6 +590,10 @@ export interface TpTypeDefDto extends Parsable {
590
590
  * The id property
591
591
  */
592
592
  id?: string | null;
593
+ /**
594
+ * The isEmptyType property
595
+ */
596
+ isEmptyType?: boolean | null;
593
597
  /**
594
598
  * The name property
595
599
  */
@@ -522,6 +522,7 @@ function deserializeIntoTestTypeMappingDto(testTypeMappingDto = {}) {
522
522
  function deserializeIntoTpTypeDefDto(tpTypeDefDto = {}) {
523
523
  return {
524
524
  "id": n => { tpTypeDefDto.id = n.getStringValue(); },
525
+ "isEmptyType": n => { tpTypeDefDto.isEmptyType = n.getBooleanValue(); },
525
526
  "name": n => { tpTypeDefDto.name = n.getStringValue(); },
526
527
  };
527
528
  }
@@ -802,6 +803,7 @@ function serializeTestTypeMappingDto(writer, testTypeMappingDto = {}) {
802
803
  function serializeTpTypeDefDto(writer, tpTypeDefDto = {}) {
803
804
  if (tpTypeDefDto) {
804
805
  writer.writeStringValue("id", tpTypeDefDto.id);
806
+ writer.writeBooleanValue("isEmptyType", tpTypeDefDto.isEmptyType);
805
807
  writer.writeStringValue("name", tpTypeDefDto.name);
806
808
  }
807
809
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@targetprocess/shared-data-model-client",
3
- "version": "1.10.0",
3
+ "version": "1.12.0",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,5 +1,5 @@
1
1
  {
2
- "descriptionHash": "1901858390E3DC247BEE660DBA923BC950DA767D9CA9FEE2945910001CD7798E25B30AFDD5D877FED5CB90E1498D3AD5FFAC0DEB4D5AD2907FB23F4649165BDC",
2
+ "descriptionHash": "6CFB25F11093AD67EE1EDA79F88986A2B49631643BEF8FBD4734B9E4B835DAC930E5B6C2F8F2AA3B2D6B26B9CF89ADD2AD277614BC46907CAF6069588E0902AD",
3
3
  "descriptionLocation": "v1.json",
4
4
  "lockFileVersion": "1.0.0",
5
5
  "kiotaVersion": "1.27.0",
@@ -464,6 +464,7 @@ export function deserializeIntoTestTypeMappingDto(testTypeMappingDto: Partial<Te
464
464
  export function deserializeIntoTpTypeDefDto(tpTypeDefDto: Partial<TpTypeDefDto> | undefined = {}) : Record<string, (node: ParseNode) => void> {
465
465
  return {
466
466
  "id": n => { tpTypeDefDto.id = n.getStringValue(); },
467
+ "isEmptyType": n => { tpTypeDefDto.isEmptyType = n.getBooleanValue(); },
467
468
  "name": n => { tpTypeDefDto.name = n.getStringValue(); },
468
469
  }
469
470
  }
@@ -880,6 +881,7 @@ export function serializeTestTypeMappingDto(writer: SerializationWriter, testTyp
880
881
  export function serializeTpTypeDefDto(writer: SerializationWriter, tpTypeDefDto: Partial<TpTypeDefDto> | undefined | null = {}) : void {
881
882
  if (tpTypeDefDto) {
882
883
  writer.writeStringValue("id", tpTypeDefDto.id);
884
+ writer.writeBooleanValue("isEmptyType", tpTypeDefDto.isEmptyType);
883
885
  writer.writeStringValue("name", tpTypeDefDto.name);
884
886
  }
885
887
  }
@@ -1009,6 +1011,10 @@ export interface TpTypeDefDto extends Parsable {
1009
1011
  * The id property
1010
1012
  */
1011
1013
  id?: string | null;
1014
+ /**
1015
+ * The isEmptyType property
1016
+ */
1017
+ isEmptyType?: boolean | null;
1012
1018
  /**
1013
1019
  * The name property
1014
1020
  */
package/src/v1.json CHANGED
@@ -2267,7 +2267,8 @@
2267
2267
  "additionalProperties": false,
2268
2268
  "required": [
2269
2269
  "id",
2270
- "name"
2270
+ "name",
2271
+ "isEmptyType"
2271
2272
  ],
2272
2273
  "properties": {
2273
2274
  "id": {
@@ -2275,6 +2276,9 @@
2275
2276
  },
2276
2277
  "name": {
2277
2278
  "type": "string"
2279
+ },
2280
+ "isEmptyType": {
2281
+ "type": "boolean"
2278
2282
  }
2279
2283
  }
2280
2284
  },