@seamapi/types 1.756.0 → 1.758.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.
@@ -20583,6 +20583,11 @@ declare const _default: {
20583
20583
  };
20584
20584
  type: string;
20585
20585
  };
20586
+ access_method_id: {
20587
+ description: string;
20588
+ format: string;
20589
+ type: string;
20590
+ };
20586
20591
  customer_key: {
20587
20592
  description: string;
20588
20593
  type: string;
@@ -50408,6 +50413,9 @@ declare const _default: {
50408
50413
  minItems: number;
50409
50414
  type: string;
50410
50415
  };
50416
+ allow_shared_email_and_phone_across_user_identities: {
50417
+ type: string;
50418
+ };
50411
50419
  card_count_on_reservation_create: {
50412
50420
  minimum: number;
50413
50421
  type: string;
@@ -50710,6 +50718,9 @@ declare const _default: {
50710
50718
  minItems: number;
50711
50719
  type: string;
50712
50720
  };
50721
+ allow_shared_email_and_phone_across_user_identities: {
50722
+ type: string;
50723
+ };
50713
50724
  card_count_on_reservation_create: {
50714
50725
  minimum: number;
50715
50726
  type: string;
@@ -50999,6 +51010,9 @@ declare const _default: {
50999
51010
  minItems: number;
51000
51011
  type: string;
51001
51012
  };
51013
+ allow_shared_email_and_phone_across_user_identities: {
51014
+ type: string;
51015
+ };
51002
51016
  card_count_on_reservation_create: {
51003
51017
  minimum: number;
51004
51018
  type: string;
@@ -51311,6 +51325,9 @@ declare const _default: {
51311
51325
  minItems: number;
51312
51326
  type: string;
51313
51327
  };
51328
+ allow_shared_email_and_phone_across_user_identities: {
51329
+ type: string;
51330
+ };
51314
51331
  card_count_on_reservation_create: {
51315
51332
  minimum: number;
51316
51333
  type: string;
@@ -52752,6 +52769,9 @@ declare const _default: {
52752
52769
  minItems: number;
52753
52770
  type: string;
52754
52771
  };
52772
+ allow_shared_email_and_phone_across_user_identities: {
52773
+ type: string;
52774
+ };
52755
52775
  card_count_on_reservation_create: {
52756
52776
  minimum: number;
52757
52777
  type: string;
@@ -53040,6 +53060,9 @@ declare const _default: {
53040
53060
  minItems: number;
53041
53061
  type: string;
53042
53062
  };
53063
+ allow_shared_email_and_phone_across_user_identities: {
53064
+ type: string;
53065
+ };
53043
53066
  card_count_on_reservation_create: {
53044
53067
  minimum: number;
53045
53068
  type: string;
@@ -53328,6 +53351,9 @@ declare const _default: {
53328
53351
  minItems: number;
53329
53352
  type: string;
53330
53353
  };
53354
+ allow_shared_email_and_phone_across_user_identities: {
53355
+ type: string;
53356
+ };
53331
53357
  card_count_on_reservation_create: {
53332
53358
  minimum: number;
53333
53359
  type: string;
@@ -53631,6 +53657,9 @@ declare const _default: {
53631
53657
  minItems: number;
53632
53658
  type: string;
53633
53659
  };
53660
+ allow_shared_email_and_phone_across_user_identities: {
53661
+ type: string;
53662
+ };
53634
53663
  card_count_on_reservation_create: {
53635
53664
  minimum: number;
53636
53665
  type: string;
@@ -28675,7 +28675,7 @@ export default {
28675
28675
  },
28676
28676
  '/access_codes/list': {
28677
28677
  get: {
28678
- description: 'Returns a list of all [access codes](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).\n\nSpecify either `device_id` or `access_code_ids`.',
28678
+ description: 'Returns a list of all [access codes](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).\n\nSpecify `device_id`, `access_code_ids`, or `access_method_id`.',
28679
28679
  operationId: 'accessCodesListGet',
28680
28680
  parameters: [
28681
28681
  {
@@ -28690,7 +28690,7 @@ export default {
28690
28690
  in: 'query',
28691
28691
  name: 'device_id',
28692
28692
  schema: {
28693
- description: 'ID of the device for which you want to list access codes. Specify either `device_id` or `access_code_ids`.',
28693
+ description: 'ID of the device for which you want to list access codes. Specify `device_id`, `access_code_ids`, or `access_method_id`.',
28694
28694
  format: 'uuid',
28695
28695
  type: 'string',
28696
28696
  },
@@ -28699,11 +28699,20 @@ export default {
28699
28699
  in: 'query',
28700
28700
  name: 'access_code_ids',
28701
28701
  schema: {
28702
- description: 'IDs of the access codes that you want to retrieve. Specify either `device_id` or `access_code_ids`.',
28702
+ description: 'IDs of the access codes that you want to retrieve. Specify `device_id`, `access_code_ids`, or `access_method_id`.',
28703
28703
  items: { format: 'uuid', type: 'string' },
28704
28704
  type: 'array',
28705
28705
  },
28706
28706
  },
28707
+ {
28708
+ in: 'query',
28709
+ name: 'access_method_id',
28710
+ schema: {
28711
+ description: 'ID of the access method for which you want to list access codes. Specify `device_id`, `access_code_ids`, or `access_method_id`.',
28712
+ format: 'uuid',
28713
+ type: 'string',
28714
+ },
28715
+ },
28707
28716
  {
28708
28717
  in: 'query',
28709
28718
  name: 'user_identifier_key',
@@ -28780,7 +28789,7 @@ export default {
28780
28789
  'x-title': 'List Access Codes',
28781
28790
  },
28782
28791
  post: {
28783
- description: 'Returns a list of all [access codes](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).\n\nSpecify either `device_id` or `access_code_ids`.',
28792
+ description: 'Returns a list of all [access codes](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).\n\nSpecify `device_id`, `access_code_ids`, or `access_method_id`.',
28784
28793
  operationId: 'accessCodesListPost',
28785
28794
  requestBody: {
28786
28795
  content: {
@@ -28788,16 +28797,21 @@ export default {
28788
28797
  schema: {
28789
28798
  properties: {
28790
28799
  access_code_ids: {
28791
- description: 'IDs of the access codes that you want to retrieve. Specify either `device_id` or `access_code_ids`.',
28800
+ description: 'IDs of the access codes that you want to retrieve. Specify `device_id`, `access_code_ids`, or `access_method_id`.',
28792
28801
  items: { format: 'uuid', type: 'string' },
28793
28802
  type: 'array',
28794
28803
  },
28804
+ access_method_id: {
28805
+ description: 'ID of the access method for which you want to list access codes. Specify `device_id`, `access_code_ids`, or `access_method_id`.',
28806
+ format: 'uuid',
28807
+ type: 'string',
28808
+ },
28795
28809
  customer_key: {
28796
28810
  description: 'Customer key for which you want to list access codes.',
28797
28811
  type: 'string',
28798
28812
  },
28799
28813
  device_id: {
28800
- description: 'ID of the device for which you want to list access codes. Specify either `device_id` or `access_code_ids`.',
28814
+ description: 'ID of the device for which you want to list access codes. Specify `device_id`, `access_code_ids`, or `access_method_id`.',
28801
28815
  format: 'uuid',
28802
28816
  type: 'string',
28803
28817
  },
@@ -56247,6 +56261,7 @@ export default {
56247
56261
  minItems: 1,
56248
56262
  type: 'array',
56249
56263
  },
56264
+ allow_shared_email_and_phone_across_user_identities: { type: 'boolean' },
56250
56265
  card_count_on_reservation_create: {
56251
56266
  minimum: 0,
56252
56267
  type: 'integer',
@@ -56546,6 +56561,7 @@ export default {
56546
56561
  minItems: 1,
56547
56562
  type: 'array',
56548
56563
  },
56564
+ allow_shared_email_and_phone_across_user_identities: { type: 'boolean' },
56549
56565
  card_count_on_reservation_create: {
56550
56566
  minimum: 0,
56551
56567
  type: 'integer',
@@ -56832,6 +56848,7 @@ export default {
56832
56848
  minItems: 1,
56833
56849
  type: 'array',
56834
56850
  },
56851
+ allow_shared_email_and_phone_across_user_identities: { type: 'boolean' },
56835
56852
  card_count_on_reservation_create: {
56836
56853
  minimum: 0,
56837
56854
  type: 'integer',
@@ -57118,6 +57135,7 @@ export default {
57118
57135
  minItems: 1,
57119
57136
  type: 'array',
57120
57137
  },
57138
+ allow_shared_email_and_phone_across_user_identities: { type: 'boolean' },
57121
57139
  card_count_on_reservation_create: {
57122
57140
  minimum: 0,
57123
57141
  type: 'integer',
@@ -58363,6 +58381,7 @@ export default {
58363
58381
  minItems: 1,
58364
58382
  type: 'array',
58365
58383
  },
58384
+ allow_shared_email_and_phone_across_user_identities: { type: 'boolean' },
58366
58385
  card_count_on_reservation_create: {
58367
58386
  minimum: 0,
58368
58387
  type: 'integer',
@@ -58662,6 +58681,7 @@ export default {
58662
58681
  minItems: 1,
58663
58682
  type: 'array',
58664
58683
  },
58684
+ allow_shared_email_and_phone_across_user_identities: { type: 'boolean' },
58665
58685
  card_count_on_reservation_create: {
58666
58686
  minimum: 0,
58667
58687
  type: 'integer',
@@ -58961,6 +58981,7 @@ export default {
58961
58981
  minItems: 1,
58962
58982
  type: 'array',
58963
58983
  },
58984
+ allow_shared_email_and_phone_across_user_identities: { type: 'boolean' },
58964
58985
  card_count_on_reservation_create: {
58965
58986
  minimum: 0,
58966
58987
  type: 'integer',
@@ -59248,6 +59269,7 @@ export default {
59248
59269
  minItems: 1,
59249
59270
  type: 'array',
59250
59271
  },
59272
+ allow_shared_email_and_phone_across_user_identities: { type: 'boolean' },
59251
59273
  card_count_on_reservation_create: {
59252
59274
  minimum: 0,
59253
59275
  type: 'integer',