@seamapi/types 1.53.0 → 1.54.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.
@@ -226,6 +226,10 @@ declare const _default: {
226
226
  full_name: {
227
227
  type: string;
228
228
  };
229
+ hid_acs_system_id: {
230
+ format: string;
231
+ type: string;
232
+ };
229
233
  is_suspended: {
230
234
  type: string;
231
235
  };
@@ -6615,6 +6619,10 @@ declare const _default: {
6615
6619
  full_name: {
6616
6620
  type: string;
6617
6621
  };
6622
+ hid_acs_system_id: {
6623
+ format: string;
6624
+ type: string;
6625
+ };
6618
6626
  phone_number: {
6619
6627
  nullable: boolean;
6620
6628
  type: string;
@@ -6693,6 +6701,10 @@ declare const _default: {
6693
6701
  full_name: {
6694
6702
  type: string;
6695
6703
  };
6704
+ hid_acs_system_id: {
6705
+ format: string;
6706
+ type: string;
6707
+ };
6696
6708
  phone_number: {
6697
6709
  nullable: boolean;
6698
6710
  type: string;
@@ -10075,6 +10087,9 @@ declare const _default: {
10075
10087
  format: string;
10076
10088
  type: string;
10077
10089
  };
10090
+ is_programmed: {
10091
+ type: string;
10092
+ };
10078
10093
  };
10079
10094
  required: string[];
10080
10095
  type: string;
@@ -230,6 +230,7 @@ export default {
230
230
  },
231
231
  external_type_display_name: { type: 'string' },
232
232
  full_name: { type: 'string' },
233
+ hid_acs_system_id: { format: 'uuid', type: 'string' },
233
234
  is_suspended: { type: 'boolean' },
234
235
  phone_number: { nullable: true, type: 'string' },
235
236
  workspace_id: { format: 'uuid', type: 'string' },
@@ -666,11 +667,11 @@ export default {
666
667
  type: 'string',
667
668
  },
668
669
  supports_accessory_keypad: {
669
- description: 'Deprecated: Use model.offline_access_codes_enabled.',
670
+ description: 'Deprecated. Use model.accessory_keypad_supported.',
670
671
  type: 'boolean',
671
672
  },
672
673
  supports_offline_access_codes: {
673
- description: 'Deprecated: Use model.accessory_keypad_supported.',
674
+ description: 'Deprecated. Use offline_access_codes_enabled.',
674
675
  type: 'boolean',
675
676
  },
676
677
  },
@@ -4698,6 +4699,7 @@ export default {
4698
4699
  },
4699
4700
  email_address: { format: 'email', type: 'string' },
4700
4701
  full_name: { type: 'string' },
4702
+ hid_acs_system_id: { format: 'uuid', type: 'string' },
4701
4703
  phone_number: { nullable: true, type: 'string' },
4702
4704
  },
4703
4705
  required: ['acs_user_id'],
@@ -4746,6 +4748,7 @@ export default {
4746
4748
  },
4747
4749
  email_address: { format: 'email', type: 'string' },
4748
4750
  full_name: { type: 'string' },
4751
+ hid_acs_system_id: { format: 'uuid', type: 'string' },
4749
4752
  phone_number: { nullable: true, type: 'string' },
4750
4753
  },
4751
4754
  required: ['acs_user_id'],
@@ -7519,7 +7522,10 @@ export default {
7519
7522
  content: {
7520
7523
  'application/json': {
7521
7524
  schema: {
7522
- properties: { device_id: { format: 'uuid', type: 'string' } },
7525
+ properties: {
7526
+ device_id: { format: 'uuid', type: 'string' },
7527
+ is_programmed: { type: 'boolean' },
7528
+ },
7523
7529
  required: ['device_id'],
7524
7530
  type: 'object',
7525
7531
  },