addigy 2.10.1 → 2.10.2

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.
@@ -352,6 +352,7 @@ class MdmPolicies {
352
352
  payload_group_id: groupUUID,
353
353
  payload_identifier: `com.addigy.certificate.com.apple.security.root.${groupUUID}`,
354
354
  payload_uuid: (0, uuid_1.v4)(),
355
+ addigy_payload_version: 0,
355
356
  ...mdmConfigurationInput,
356
357
  };
357
358
  const res = await this.http.post('/', { payloads: [payload] }, {
@@ -204,7 +204,8 @@ export interface MdmConfigurationInput {
204
204
  payload_priority: number;
205
205
  payload_content: string;
206
206
  payload_certificate_file_name: string;
207
- addigy_payload_version: number;
208
207
  payload_display_name: string;
209
208
  }
210
- export type MdmConfiguration = MdmConfigurationInput & Payload;
209
+ export type MdmConfiguration = MdmConfigurationInput & Payload & {
210
+ addigy_payload_version: number;
211
+ };
package/package.json CHANGED
@@ -58,7 +58,7 @@
58
58
  "tsc": "tsc -p tsconfig.build.json"
59
59
  },
60
60
  "types": "index.d.ts",
61
- "version": "2.10.1",
61
+ "version": "2.10.2",
62
62
  "volta": {
63
63
  "node": "20.12.1",
64
64
  "yarn": "1.22.22"