@targetprocess/shared-data-model-client 0.6.0-us817837-mapping.14 → 0.6.0-us817837-mapping.18

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.
@@ -514,6 +514,18 @@ export interface TestTypeMappingDto extends Parsable {
514
514
  * The profile property
515
515
  */
516
516
  profile?: ProfileDto | null;
517
+ /**
518
+ * The select property
519
+ */
520
+ select?: string | null;
521
+ /**
522
+ * The skip property
523
+ */
524
+ skip?: number | null;
525
+ /**
526
+ * The take property
527
+ */
528
+ take?: number | null;
517
529
  }
518
530
  export interface TpMappingFieldDefDto extends Parsable {
519
531
  /**
@@ -453,6 +453,9 @@ function deserializeIntoTestTypeMappingDto(testTypeMappingDto = {}) {
453
453
  return {
454
454
  "entityType": n => { testTypeMappingDto.entityType = n.getStringValue(); },
455
455
  "profile": n => { testTypeMappingDto.profile = n.getObjectValue(createProfileDtoFromDiscriminatorValue); },
456
+ "select": n => { testTypeMappingDto.select = n.getStringValue(); },
457
+ "skip": n => { testTypeMappingDto.skip = n.getNumberValue(); },
458
+ "take": n => { testTypeMappingDto.take = n.getNumberValue(); },
456
459
  };
457
460
  }
458
461
  /**
@@ -707,6 +710,9 @@ function serializeTestTypeMappingDto(writer, testTypeMappingDto = {}) {
707
710
  if (testTypeMappingDto) {
708
711
  writer.writeStringValue("entityType", testTypeMappingDto.entityType);
709
712
  writer.writeObjectValue("profile", testTypeMappingDto.profile, serializeProfileDto);
713
+ writer.writeStringValue("select", testTypeMappingDto.select);
714
+ writer.writeNumberValue("skip", testTypeMappingDto.skip);
715
+ writer.writeNumberValue("take", testTypeMappingDto.take);
710
716
  }
711
717
  }
712
718
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@targetprocess/shared-data-model-client",
3
- "version": "0.6.0-us817837-mapping.14",
3
+ "version": "0.6.0-us817837-mapping.18",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,5 +1,5 @@
1
1
  {
2
- "descriptionHash": "D937FA8E91B52771B96E67EC7C1AC9062E48B73A2B38B4EEC1CBBA1173CF80BF1B2ECA7BD304B75FCFC8414D2BE9F9FE20174152837BACD70650DE9AE693B7C7",
2
+ "descriptionHash": "CFA55E864F4C3913FCE7B79AF84F5BB5FE666B223C0377ACC2F990823EBD1810E433757A5134165987DE3D0E9A24B8B0851C6650386AB702AE55B74AD9084E31",
3
3
  "descriptionLocation": "v1.json",
4
4
  "lockFileVersion": "1.0.0",
5
5
  "kiotaVersion": "1.22.3",
@@ -389,6 +389,9 @@ export function deserializeIntoTestTypeMappingDto(testTypeMappingDto: Partial<Te
389
389
  return {
390
390
  "entityType": n => { testTypeMappingDto.entityType = n.getStringValue(); },
391
391
  "profile": n => { testTypeMappingDto.profile = n.getObjectValue<ProfileDto>(createProfileDtoFromDiscriminatorValue); },
392
+ "select": n => { testTypeMappingDto.select = n.getStringValue(); },
393
+ "skip": n => { testTypeMappingDto.skip = n.getNumberValue(); },
394
+ "take": n => { testTypeMappingDto.take = n.getNumberValue(); },
392
395
  }
393
396
  }
394
397
  /**
@@ -771,6 +774,9 @@ export function serializeTestTypeMappingDto(writer: SerializationWriter, testTyp
771
774
  if (testTypeMappingDto) {
772
775
  writer.writeStringValue("entityType", testTypeMappingDto.entityType);
773
776
  writer.writeObjectValue<ProfileDto>("profile", testTypeMappingDto.profile, serializeProfileDto);
777
+ writer.writeStringValue("select", testTypeMappingDto.select);
778
+ writer.writeNumberValue("skip", testTypeMappingDto.skip);
779
+ writer.writeNumberValue("take", testTypeMappingDto.take);
774
780
  }
775
781
  }
776
782
  /**
@@ -895,6 +901,18 @@ export interface TestTypeMappingDto extends Parsable {
895
901
  * The profile property
896
902
  */
897
903
  profile?: ProfileDto | null;
904
+ /**
905
+ * The select property
906
+ */
907
+ select?: string | null;
908
+ /**
909
+ * The skip property
910
+ */
911
+ skip?: number | null;
912
+ /**
913
+ * The take property
914
+ */
915
+ take?: number | null;
898
916
  }
899
917
  export interface TpMappingFieldDefDto extends Parsable {
900
918
  /**
package/src/v1.json CHANGED
@@ -1506,6 +1506,20 @@
1506
1506
  },
1507
1507
  "profile": {
1508
1508
  "$ref": "#/components/schemas/ProfileDto"
1509
+ },
1510
+ "select": {
1511
+ "type": "string",
1512
+ "nullable": true
1513
+ },
1514
+ "skip": {
1515
+ "type": "integer",
1516
+ "format": "int32",
1517
+ "nullable": true
1518
+ },
1519
+ "take": {
1520
+ "type": "integer",
1521
+ "format": "int32",
1522
+ "nullable": true
1509
1523
  }
1510
1524
  }
1511
1525
  },