@targetprocess/shared-data-model-client 1.7.0-ci.6 → 1.7.0-ci.7

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.
@@ -399,10 +399,6 @@ export interface ProfileIdDto extends Parsable {
399
399
  * The name property
400
400
  */
401
401
  name?: string | null;
402
- /**
403
- * The priority property
404
- */
405
- priority?: number | null;
406
402
  }
407
403
  export type RefKind = (typeof RefKindObject)[keyof typeof RefKindObject];
408
404
  export interface SdmTypeDefDto extends Parsable {
@@ -445,7 +445,6 @@ function deserializeIntoProfileIdDto(profileIdDto = {}) {
445
445
  "account": n => { profileIdDto.account = n.getStringValue(); },
446
446
  "id": n => { profileIdDto.id = n.getStringValue(); },
447
447
  "name": n => { profileIdDto.name = n.getStringValue(); },
448
- "priority": n => { profileIdDto.priority = n.getNumberValue(); },
449
448
  };
450
449
  }
451
450
  /**
@@ -726,7 +725,6 @@ function serializeProfileIdDto(writer, profileIdDto = {}) {
726
725
  writer.writeStringValue("account", profileIdDto.account);
727
726
  writer.writeStringValue("id", profileIdDto.id);
728
727
  writer.writeStringValue("name", profileIdDto.name);
729
- writer.writeNumberValue("priority", profileIdDto.priority);
730
728
  }
731
729
  }
732
730
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@targetprocess/shared-data-model-client",
3
- "version": "1.7.0-ci.6",
3
+ "version": "1.7.0-ci.7",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,5 +1,5 @@
1
1
  {
2
- "descriptionHash": "0B5C9024D41E20F690B064C11A939AE70F7ACEEFFF73F3B0B12D29D22C482BBD4D9D1C293972863F8555DA8E9DAD066DF33BAC5A11323B1A20F068E0F2D4C662",
2
+ "descriptionHash": "5D93C2217D817F9719A58FC17BF7E4EFCB51D7135C34DA97EB70EFF4C8188B74750EDC3BD2737C92DB0D31D2EEE13C63266A79949CC0B77372356D72C4DAED15",
3
3
  "descriptionLocation": "v1.json",
4
4
  "lockFileVersion": "1.0.0",
5
5
  "kiotaVersion": "1.27.0",
@@ -387,7 +387,6 @@ export function deserializeIntoProfileIdDto(profileIdDto: Partial<ProfileIdDto>
387
387
  "account": n => { profileIdDto.account = n.getStringValue(); },
388
388
  "id": n => { profileIdDto.id = n.getStringValue(); },
389
389
  "name": n => { profileIdDto.name = n.getStringValue(); },
390
- "priority": n => { profileIdDto.priority = n.getNumberValue(); },
391
390
  }
392
391
  }
393
392
  /**
@@ -656,10 +655,6 @@ export interface ProfileIdDto extends Parsable {
656
655
  * The name property
657
656
  */
658
657
  name?: string | null;
659
- /**
660
- * The priority property
661
- */
662
- priority?: number | null;
663
658
  }
664
659
  export type RefKind = (typeof RefKindObject)[keyof typeof RefKindObject];
665
660
  export interface SdmTypeDefDto extends Parsable {
@@ -808,7 +803,6 @@ export function serializeProfileIdDto(writer: SerializationWriter, profileIdDto:
808
803
  writer.writeStringValue("account", profileIdDto.account);
809
804
  writer.writeStringValue("id", profileIdDto.id);
810
805
  writer.writeStringValue("name", profileIdDto.name);
811
- writer.writeNumberValue("priority", profileIdDto.priority);
812
806
  }
813
807
  }
814
808
  /**
package/src/v1.json CHANGED
@@ -2349,8 +2349,7 @@
2349
2349
  "type": "object",
2350
2350
  "additionalProperties": false,
2351
2351
  "required": [
2352
- "name",
2353
- "priority"
2352
+ "name"
2354
2353
  ],
2355
2354
  "properties": {
2356
2355
  "id": {
@@ -2364,10 +2363,6 @@
2364
2363
  },
2365
2364
  "name": {
2366
2365
  "type": "string"
2367
- },
2368
- "priority": {
2369
- "type": "integer",
2370
- "format": "int32"
2371
2366
  }
2372
2367
  }
2373
2368
  },