@seamapi/types 1.769.0 → 1.770.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.
- package/dist/connect.cjs +53 -33
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +90 -90
- package/dist/index.cjs +53 -33
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +10 -10
- package/lib/seam/connect/models/access-grants/access-method.d.ts +6 -6
- package/lib/seam/connect/models/access-grants/access-method.js +2 -2
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/access-grants/requested-access-method.d.ts +3 -3
- package/lib/seam/connect/models/access-grants/requested-access-method.js +2 -2
- package/lib/seam/connect/models/access-grants/requested-access-method.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +6 -6
- package/lib/seam/connect/models/acs/acs-entrance.js +4 -4
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +17 -17
- package/lib/seam/connect/models/phones/phone-session.d.ts +16 -16
- package/lib/seam/connect/openapi.js +46 -26
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +62 -62
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-method.ts +2 -2
- package/src/lib/seam/connect/models/access-grants/requested-access-method.ts +2 -2
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +4 -4
- package/src/lib/seam/connect/openapi.ts +46 -26
- package/src/lib/seam/connect/route-types.ts +62 -62
|
@@ -11756,8 +11756,8 @@ export type Routes = {
|
|
|
11756
11756
|
/** Set of IDs of the [devices](https://docs.seam.co/latest/api/devices/list) to which access is being granted. */
|
|
11757
11757
|
device_ids?: string[]
|
|
11758
11758
|
requested_access_methods: {
|
|
11759
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
11760
|
-
mode: 'code' | 'card' | 'mobile_key'
|
|
11759
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
11760
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
11761
11761
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
11762
11762
|
code?: string | undefined
|
|
11763
11763
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -11793,8 +11793,8 @@ export type Routes = {
|
|
|
11793
11793
|
requested_access_methods: {
|
|
11794
11794
|
/** Display name of the access method. */
|
|
11795
11795
|
display_name: string
|
|
11796
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
11797
|
-
mode: 'code' | 'card' | 'mobile_key'
|
|
11796
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
11797
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
11798
11798
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
11799
11799
|
code?: string | undefined
|
|
11800
11800
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -11993,8 +11993,8 @@ export type Routes = {
|
|
|
11993
11993
|
requested_access_methods: {
|
|
11994
11994
|
/** Display name of the access method. */
|
|
11995
11995
|
display_name: string
|
|
11996
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
11997
|
-
mode: 'code' | 'card' | 'mobile_key'
|
|
11996
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
11997
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
11998
11998
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
11999
11999
|
code?: string | undefined
|
|
12000
12000
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -14033,10 +14033,10 @@ export type Routes = {
|
|
|
14033
14033
|
can_unlock_with_card?: boolean | undefined
|
|
14034
14034
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
14035
14035
|
can_unlock_with_code?: boolean | undefined
|
|
14036
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
14037
|
+
can_unlock_with_cloud_key?: boolean | undefined
|
|
14036
14038
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
14037
14039
|
can_belong_to_reservation?: boolean | undefined
|
|
14038
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
14039
|
-
can_unlock_with_cloud_key?: boolean | undefined
|
|
14040
14040
|
}[]
|
|
14041
14041
|
| undefined
|
|
14042
14042
|
connected_accounts?:
|
|
@@ -14613,8 +14613,8 @@ export type Routes = {
|
|
|
14613
14613
|
access_method_id: string
|
|
14614
14614
|
/** Display name of the access method. */
|
|
14615
14615
|
display_name: string
|
|
14616
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
14617
|
-
mode: 'code' | 'card' | 'mobile_key'
|
|
14616
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
14617
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
14618
14618
|
/** Date and time at which the access method was created. */
|
|
14619
14619
|
created_at: string
|
|
14620
14620
|
/** Date and time at which the access method was issued. */
|
|
@@ -14781,8 +14781,8 @@ export type Routes = {
|
|
|
14781
14781
|
requested_access_methods: {
|
|
14782
14782
|
/** Display name of the access method. */
|
|
14783
14783
|
display_name: string
|
|
14784
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
14785
|
-
mode: 'code' | 'card' | 'mobile_key'
|
|
14784
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
14785
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
14786
14786
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
14787
14787
|
code?: string | undefined
|
|
14788
14788
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -14950,8 +14950,8 @@ export type Routes = {
|
|
|
14950
14950
|
access_grant_id: string
|
|
14951
14951
|
/** Array of requested access methods to add to the access grant. */
|
|
14952
14952
|
requested_access_methods: {
|
|
14953
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
14954
|
-
mode: 'code' | 'card' | 'mobile_key'
|
|
14953
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
14954
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
14955
14955
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
14956
14956
|
code?: string | undefined
|
|
14957
14957
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -14981,8 +14981,8 @@ export type Routes = {
|
|
|
14981
14981
|
requested_access_methods: {
|
|
14982
14982
|
/** Display name of the access method. */
|
|
14983
14983
|
display_name: string
|
|
14984
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
14985
|
-
mode: 'code' | 'card' | 'mobile_key'
|
|
14984
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
14985
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
14986
14986
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
14987
14987
|
code?: string | undefined
|
|
14988
14988
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -15159,8 +15159,8 @@ export type Routes = {
|
|
|
15159
15159
|
requested_access_methods: {
|
|
15160
15160
|
/** Display name of the access method. */
|
|
15161
15161
|
display_name: string
|
|
15162
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
15163
|
-
mode: 'code' | 'card' | 'mobile_key'
|
|
15162
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
15163
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
15164
15164
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
15165
15165
|
code?: string | undefined
|
|
15166
15166
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -15342,8 +15342,8 @@ export type Routes = {
|
|
|
15342
15342
|
requested_access_methods: {
|
|
15343
15343
|
/** Display name of the access method. */
|
|
15344
15344
|
display_name: string
|
|
15345
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
15346
|
-
mode: 'code' | 'card' | 'mobile_key'
|
|
15345
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
15346
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
15347
15347
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
15348
15348
|
code?: string | undefined
|
|
15349
15349
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -17116,8 +17116,8 @@ export type Routes = {
|
|
|
17116
17116
|
access_method_id: string
|
|
17117
17117
|
/** Display name of the access method. */
|
|
17118
17118
|
display_name: string
|
|
17119
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
17120
|
-
mode: 'code' | 'card' | 'mobile_key'
|
|
17119
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
17120
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
17121
17121
|
/** Date and time at which the access method was created. */
|
|
17122
17122
|
created_at: string
|
|
17123
17123
|
/** Date and time at which the access method was issued. */
|
|
@@ -19118,10 +19118,10 @@ export type Routes = {
|
|
|
19118
19118
|
can_unlock_with_card?: boolean | undefined
|
|
19119
19119
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
19120
19120
|
can_unlock_with_code?: boolean | undefined
|
|
19121
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
19122
|
+
can_unlock_with_cloud_key?: boolean | undefined
|
|
19121
19123
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
19122
19124
|
can_belong_to_reservation?: boolean | undefined
|
|
19123
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
19124
|
-
can_unlock_with_cloud_key?: boolean | undefined
|
|
19125
19125
|
}[]
|
|
19126
19126
|
| undefined
|
|
19127
19127
|
access_grants?:
|
|
@@ -19145,8 +19145,8 @@ export type Routes = {
|
|
|
19145
19145
|
requested_access_methods: {
|
|
19146
19146
|
/** Display name of the access method. */
|
|
19147
19147
|
display_name: string
|
|
19148
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
19149
|
-
mode: 'code' | 'card' | 'mobile_key'
|
|
19148
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
19149
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
19150
19150
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
19151
19151
|
code?: string | undefined
|
|
19152
19152
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -19301,8 +19301,8 @@ export type Routes = {
|
|
|
19301
19301
|
access_method_id: string
|
|
19302
19302
|
/** Display name of the access method. */
|
|
19303
19303
|
display_name: string
|
|
19304
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
19305
|
-
mode: 'code' | 'card' | 'mobile_key'
|
|
19304
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
19305
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
19306
19306
|
/** Date and time at which the access method was created. */
|
|
19307
19307
|
created_at: string
|
|
19308
19308
|
/** Date and time at which the access method was issued. */
|
|
@@ -19665,8 +19665,8 @@ export type Routes = {
|
|
|
19665
19665
|
access_method_id: string
|
|
19666
19666
|
/** Display name of the access method. */
|
|
19667
19667
|
display_name: string
|
|
19668
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
19669
|
-
mode: 'code' | 'card' | 'mobile_key'
|
|
19668
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
19669
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
19670
19670
|
/** Date and time at which the access method was created. */
|
|
19671
19671
|
created_at: string
|
|
19672
19672
|
/** Date and time at which the access method was issued. */
|
|
@@ -19798,8 +19798,8 @@ export type Routes = {
|
|
|
19798
19798
|
access_method_id: string
|
|
19799
19799
|
/** Display name of the access method. */
|
|
19800
19800
|
display_name: string
|
|
19801
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
19802
|
-
mode: 'code' | 'card' | 'mobile_key'
|
|
19801
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
19802
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
19803
19803
|
/** Date and time at which the access method was created. */
|
|
19804
19804
|
created_at: string
|
|
19805
19805
|
/** Date and time at which the access method was issued. */
|
|
@@ -19930,8 +19930,8 @@ export type Routes = {
|
|
|
19930
19930
|
access_method_id: string
|
|
19931
19931
|
/** Display name of the access method. */
|
|
19932
19932
|
display_name: string
|
|
19933
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
19934
|
-
mode: 'code' | 'card' | 'mobile_key'
|
|
19933
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
19934
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
19935
19935
|
/** Date and time at which the access method was created. */
|
|
19936
19936
|
created_at: string
|
|
19937
19937
|
/** Date and time at which the access method was issued. */
|
|
@@ -20639,10 +20639,10 @@ export type Routes = {
|
|
|
20639
20639
|
can_unlock_with_card?: boolean | undefined
|
|
20640
20640
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
20641
20641
|
can_unlock_with_code?: boolean | undefined
|
|
20642
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
20643
|
+
can_unlock_with_cloud_key?: boolean | undefined
|
|
20642
20644
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
20643
20645
|
can_belong_to_reservation?: boolean | undefined
|
|
20644
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
20645
|
-
can_unlock_with_cloud_key?: boolean | undefined
|
|
20646
20646
|
}[]
|
|
20647
20647
|
}
|
|
20648
20648
|
maxDuration: undefined
|
|
@@ -22582,10 +22582,10 @@ export type Routes = {
|
|
|
22582
22582
|
can_unlock_with_card?: boolean | undefined
|
|
22583
22583
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
22584
22584
|
can_unlock_with_code?: boolean | undefined
|
|
22585
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
22586
|
+
can_unlock_with_cloud_key?: boolean | undefined
|
|
22585
22587
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
22586
22588
|
can_belong_to_reservation?: boolean | undefined
|
|
22587
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
22588
|
-
can_unlock_with_cloud_key?: boolean | undefined
|
|
22589
22589
|
}[]
|
|
22590
22590
|
}
|
|
22591
22591
|
maxDuration: undefined
|
|
@@ -26781,10 +26781,10 @@ export type Routes = {
|
|
|
26781
26781
|
can_unlock_with_card?: boolean | undefined
|
|
26782
26782
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
26783
26783
|
can_unlock_with_code?: boolean | undefined
|
|
26784
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
26785
|
+
can_unlock_with_cloud_key?: boolean | undefined
|
|
26784
26786
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
26785
26787
|
can_belong_to_reservation?: boolean | undefined
|
|
26786
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
26787
|
-
can_unlock_with_cloud_key?: boolean | undefined
|
|
26788
26788
|
}
|
|
26789
26789
|
}
|
|
26790
26790
|
maxDuration: undefined
|
|
@@ -26991,10 +26991,10 @@ export type Routes = {
|
|
|
26991
26991
|
can_unlock_with_card?: boolean | undefined
|
|
26992
26992
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
26993
26993
|
can_unlock_with_code?: boolean | undefined
|
|
26994
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
26995
|
+
can_unlock_with_cloud_key?: boolean | undefined
|
|
26994
26996
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
26995
26997
|
can_belong_to_reservation?: boolean | undefined
|
|
26996
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
26997
|
-
can_unlock_with_cloud_key?: boolean | undefined
|
|
26998
26998
|
}[]
|
|
26999
26999
|
/** Information about the current page of results. */
|
|
27000
27000
|
pagination: {
|
|
@@ -30437,10 +30437,10 @@ export type Routes = {
|
|
|
30437
30437
|
can_unlock_with_card?: boolean | undefined
|
|
30438
30438
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
30439
30439
|
can_unlock_with_code?: boolean | undefined
|
|
30440
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
30441
|
+
can_unlock_with_cloud_key?: boolean | undefined
|
|
30440
30442
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
30441
30443
|
can_belong_to_reservation?: boolean | undefined
|
|
30442
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
30443
|
-
can_unlock_with_cloud_key?: boolean | undefined
|
|
30444
30444
|
}[]
|
|
30445
30445
|
}
|
|
30446
30446
|
maxDuration: undefined
|
|
@@ -72113,8 +72113,8 @@ export type Routes = {
|
|
|
72113
72113
|
requested_access_methods: {
|
|
72114
72114
|
/** Display name of the access method. */
|
|
72115
72115
|
display_name: string
|
|
72116
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
72117
|
-
mode: 'code' | 'card' | 'mobile_key'
|
|
72116
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
72117
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
72118
72118
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
72119
72119
|
code?: string | undefined
|
|
72120
72120
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -78383,8 +78383,8 @@ export type Routes = {
|
|
|
78383
78383
|
requested_access_methods: {
|
|
78384
78384
|
/** Display name of the access method. */
|
|
78385
78385
|
display_name: string
|
|
78386
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
78387
|
-
mode: 'code' | 'card' | 'mobile_key'
|
|
78386
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
78387
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
78388
78388
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
78389
78389
|
code?: string | undefined
|
|
78390
78390
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -78844,8 +78844,8 @@ export type Routes = {
|
|
|
78844
78844
|
requested_access_methods: {
|
|
78845
78845
|
/** Display name of the access method. */
|
|
78846
78846
|
display_name: string
|
|
78847
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
78848
|
-
mode: 'code' | 'card' | 'mobile_key'
|
|
78847
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
78848
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
78849
78849
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
78850
78850
|
code?: string | undefined
|
|
78851
78851
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -79682,10 +79682,10 @@ export type Routes = {
|
|
|
79682
79682
|
can_unlock_with_card?: boolean | undefined
|
|
79683
79683
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
79684
79684
|
can_unlock_with_code?: boolean | undefined
|
|
79685
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
79686
|
+
can_unlock_with_cloud_key?: boolean | undefined
|
|
79685
79687
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
79686
79688
|
can_belong_to_reservation?: boolean | undefined
|
|
79687
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
79688
|
-
can_unlock_with_cloud_key?: boolean | undefined
|
|
79689
79689
|
}[]
|
|
79690
79690
|
}[]
|
|
79691
79691
|
}[]
|
|
@@ -81814,10 +81814,10 @@ export type Routes = {
|
|
|
81814
81814
|
can_unlock_with_card?: boolean | undefined
|
|
81815
81815
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
81816
81816
|
can_unlock_with_code?: boolean | undefined
|
|
81817
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
81818
|
+
can_unlock_with_cloud_key?: boolean | undefined
|
|
81817
81819
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
81818
81820
|
can_belong_to_reservation?: boolean | undefined
|
|
81819
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
81820
|
-
can_unlock_with_cloud_key?: boolean | undefined
|
|
81821
81821
|
}[]
|
|
81822
81822
|
| undefined
|
|
81823
81823
|
connected_accounts?:
|
|
@@ -82157,8 +82157,8 @@ export type Routes = {
|
|
|
82157
82157
|
access_method_id: string
|
|
82158
82158
|
/** Display name of the access method. */
|
|
82159
82159
|
display_name: string
|
|
82160
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
82161
|
-
mode: 'code' | 'card' | 'mobile_key'
|
|
82160
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
82161
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
82162
82162
|
/** Date and time at which the access method was created. */
|
|
82163
82163
|
created_at: string
|
|
82164
82164
|
/** Date and time at which the access method was issued. */
|
|
@@ -108664,10 +108664,10 @@ export type Routes = {
|
|
|
108664
108664
|
can_unlock_with_card?: boolean | undefined
|
|
108665
108665
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
108666
108666
|
can_unlock_with_code?: boolean | undefined
|
|
108667
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
108668
|
+
can_unlock_with_cloud_key?: boolean | undefined
|
|
108667
108669
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
108668
108670
|
can_belong_to_reservation?: boolean | undefined
|
|
108669
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
108670
|
-
can_unlock_with_cloud_key?: boolean | undefined
|
|
108671
108671
|
}[]
|
|
108672
108672
|
| undefined
|
|
108673
108673
|
acs_systems?:
|
|
@@ -111992,8 +111992,8 @@ export type Routes = {
|
|
|
111992
111992
|
access_method_id: string
|
|
111993
111993
|
/** Display name of the access method. */
|
|
111994
111994
|
display_name: string
|
|
111995
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
111996
|
-
mode: 'code' | 'card' | 'mobile_key'
|
|
111995
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
111996
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
111997
111997
|
/** Date and time at which the access method was created. */
|
|
111998
111998
|
created_at: string
|
|
111999
111999
|
/** Date and time at which the access method was issued. */
|
|
@@ -112125,8 +112125,8 @@ export type Routes = {
|
|
|
112125
112125
|
requested_access_methods: {
|
|
112126
112126
|
/** Display name of the access method. */
|
|
112127
112127
|
display_name: string
|
|
112128
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
112129
|
-
mode: 'code' | 'card' | 'mobile_key'
|
|
112128
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
112129
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
112130
112130
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
112131
112131
|
code?: string | undefined
|
|
112132
112132
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|