@seamapi/types 1.606.0 → 1.607.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.
@@ -11465,6 +11465,8 @@ export type Routes = {
11465
11465
  can_unlock_with_card?: boolean | undefined;
11466
11466
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
11467
11467
  can_unlock_with_code?: boolean | undefined;
11468
+ /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
11469
+ can_belong_to_reservation?: boolean | undefined;
11468
11470
  }[] | undefined;
11469
11471
  user_identities?: {
11470
11472
  /** ID of the user identity. */
@@ -14897,6 +14899,8 @@ export type Routes = {
14897
14899
  can_unlock_with_card?: boolean | undefined;
14898
14900
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
14899
14901
  can_unlock_with_code?: boolean | undefined;
14902
+ /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
14903
+ can_belong_to_reservation?: boolean | undefined;
14900
14904
  }[] | undefined;
14901
14905
  acs_systems?: {
14902
14906
  /** ID of the default credential manager `acs_system` for this [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
@@ -20954,6 +20958,8 @@ export type Routes = {
20954
20958
  can_unlock_with_card?: boolean | undefined;
20955
20959
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
20956
20960
  can_unlock_with_code?: boolean | undefined;
20961
+ /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
20962
+ can_belong_to_reservation?: boolean | undefined;
20957
20963
  }[];
20958
20964
  };
20959
20965
  };
@@ -22320,6 +22326,8 @@ export type Routes = {
22320
22326
  can_unlock_with_card?: boolean | undefined;
22321
22327
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
22322
22328
  can_unlock_with_code?: boolean | undefined;
22329
+ /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
22330
+ can_belong_to_reservation?: boolean | undefined;
22323
22331
  }[];
22324
22332
  };
22325
22333
  };
@@ -25786,6 +25794,8 @@ export type Routes = {
25786
25794
  can_unlock_with_card?: boolean | undefined;
25787
25795
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
25788
25796
  can_unlock_with_code?: boolean | undefined;
25797
+ /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
25798
+ can_belong_to_reservation?: boolean | undefined;
25789
25799
  };
25790
25800
  };
25791
25801
  };
@@ -25953,6 +25963,8 @@ export type Routes = {
25953
25963
  can_unlock_with_card?: boolean | undefined;
25954
25964
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
25955
25965
  can_unlock_with_code?: boolean | undefined;
25966
+ /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
25967
+ can_belong_to_reservation?: boolean | undefined;
25956
25968
  }[];
25957
25969
  /** Information about the current page of results. */
25958
25970
  pagination: {
@@ -27428,6 +27440,8 @@ export type Routes = {
27428
27440
  can_unlock_with_card?: boolean | undefined;
27429
27441
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
27430
27442
  can_unlock_with_code?: boolean | undefined;
27443
+ /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
27444
+ can_belong_to_reservation?: boolean | undefined;
27431
27445
  }[];
27432
27446
  };
27433
27447
  };
@@ -59758,6 +59772,8 @@ export type Routes = {
59758
59772
  can_unlock_with_card?: boolean | undefined;
59759
59773
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
59760
59774
  can_unlock_with_code?: boolean | undefined;
59775
+ /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
59776
+ can_belong_to_reservation?: boolean | undefined;
59761
59777
  }[];
59762
59778
  }[];
59763
59779
  }[];
@@ -61337,6 +61353,8 @@ export type Routes = {
61337
61353
  can_unlock_with_card?: boolean | undefined;
61338
61354
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
61339
61355
  can_unlock_with_code?: boolean | undefined;
61356
+ /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
61357
+ can_belong_to_reservation?: boolean | undefined;
61340
61358
  }[] | undefined;
61341
61359
  connected_accounts?: {
61342
61360
  /** ID of the connected account. */
@@ -82571,6 +82589,8 @@ export type Routes = {
82571
82589
  can_unlock_with_card?: boolean | undefined;
82572
82590
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
82573
82591
  can_unlock_with_code?: boolean | undefined;
82592
+ /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
82593
+ can_belong_to_reservation?: boolean | undefined;
82574
82594
  }[] | undefined;
82575
82595
  acs_systems?: {
82576
82596
  /** ID of the default credential manager `acs_system` for this [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.606.0",
3
+ "version": "1.607.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -30,6 +30,12 @@ export const acs_entrance_capability_flags = z.object({
30
30
  .describe(
31
31
  'Indicates whether the ACS entrance can be unlocked with pin codes.',
32
32
  ),
33
+ can_belong_to_reservation: z
34
+ .boolean()
35
+ .optional()
36
+ .describe(
37
+ 'Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key.',
38
+ ),
33
39
  })
34
40
 
35
41
  export const acs_entrance = z
@@ -2820,6 +2820,11 @@ export default {
2820
2820
  required: ['door_type', 'door_name'],
2821
2821
  type: 'object',
2822
2822
  },
2823
+ can_belong_to_reservation: {
2824
+ description:
2825
+ 'Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key.',
2826
+ type: 'boolean',
2827
+ },
2823
2828
  can_unlock_with_card: {
2824
2829
  description:
2825
2830
  'Indicates whether the ACS entrance can be unlocked with card credentials.',
@@ -19852,6 +19857,11 @@ export default {
19852
19857
  required: ['door_type', 'door_name'],
19853
19858
  type: 'object',
19854
19859
  },
19860
+ can_belong_to_reservation: {
19861
+ description:
19862
+ 'Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key.',
19863
+ type: 'boolean',
19864
+ },
19855
19865
  can_unlock_with_card: {
19856
19866
  description:
19857
19867
  'Indicates whether the ACS entrance can be unlocked with card credentials.',
@@ -13111,6 +13111,8 @@ export type Routes = {
13111
13111
  can_unlock_with_card?: boolean | undefined
13112
13112
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
13113
13113
  can_unlock_with_code?: boolean | undefined
13114
+ /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
13115
+ can_belong_to_reservation?: boolean | undefined
13114
13116
  }[]
13115
13117
  | undefined
13116
13118
  user_identities?:
@@ -17223,6 +17225,8 @@ export type Routes = {
17223
17225
  can_unlock_with_card?: boolean | undefined
17224
17226
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
17225
17227
  can_unlock_with_code?: boolean | undefined
17228
+ /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
17229
+ can_belong_to_reservation?: boolean | undefined
17226
17230
  }[]
17227
17231
  | undefined
17228
17232
  acs_systems?:
@@ -24354,6 +24358,8 @@ export type Routes = {
24354
24358
  can_unlock_with_card?: boolean | undefined
24355
24359
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
24356
24360
  can_unlock_with_code?: boolean | undefined
24361
+ /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
24362
+ can_belong_to_reservation?: boolean | undefined
24357
24363
  }[]
24358
24364
  }
24359
24365
  }
@@ -25964,6 +25970,8 @@ export type Routes = {
25964
25970
  can_unlock_with_card?: boolean | undefined
25965
25971
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
25966
25972
  can_unlock_with_code?: boolean | undefined
25973
+ /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
25974
+ can_belong_to_reservation?: boolean | undefined
25967
25975
  }[]
25968
25976
  }
25969
25977
  }
@@ -29968,6 +29976,8 @@ export type Routes = {
29968
29976
  can_unlock_with_card?: boolean | undefined
29969
29977
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
29970
29978
  can_unlock_with_code?: boolean | undefined
29979
+ /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
29980
+ can_belong_to_reservation?: boolean | undefined
29971
29981
  }
29972
29982
  }
29973
29983
  }
@@ -30162,6 +30172,8 @@ export type Routes = {
30162
30172
  can_unlock_with_card?: boolean | undefined
30163
30173
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
30164
30174
  can_unlock_with_code?: boolean | undefined
30175
+ /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
30176
+ can_belong_to_reservation?: boolean | undefined
30165
30177
  }[]
30166
30178
  /** Information about the current page of results. */
30167
30179
  pagination: {
@@ -31944,6 +31956,8 @@ export type Routes = {
31944
31956
  can_unlock_with_card?: boolean | undefined
31945
31957
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
31946
31958
  can_unlock_with_code?: boolean | undefined
31959
+ /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
31960
+ can_belong_to_reservation?: boolean | undefined
31947
31961
  }[]
31948
31962
  }
31949
31963
  }
@@ -71173,6 +71187,8 @@ export type Routes = {
71173
71187
  can_unlock_with_card?: boolean | undefined
71174
71188
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
71175
71189
  can_unlock_with_code?: boolean | undefined
71190
+ /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
71191
+ can_belong_to_reservation?: boolean | undefined
71176
71192
  }[]
71177
71193
  }[]
71178
71194
  }[]
@@ -73142,6 +73158,8 @@ export type Routes = {
73142
73158
  can_unlock_with_card?: boolean | undefined
73143
73159
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
73144
73160
  can_unlock_with_code?: boolean | undefined
73161
+ /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
73162
+ can_belong_to_reservation?: boolean | undefined
73145
73163
  }[]
73146
73164
  | undefined
73147
73165
  connected_accounts?:
@@ -98314,6 +98332,8 @@ export type Routes = {
98314
98332
  can_unlock_with_card?: boolean | undefined
98315
98333
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
98316
98334
  can_unlock_with_code?: boolean | undefined
98335
+ /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
98336
+ can_belong_to_reservation?: boolean | undefined
98317
98337
  }[]
98318
98338
  | undefined
98319
98339
  acs_systems?: