@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
package/dist/connect.d.cts
CHANGED
|
@@ -3611,7 +3611,7 @@ declare const access_grant: z.ZodObject<{
|
|
|
3611
3611
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
3612
3612
|
requested_access_methods: z.ZodArray<z.ZodObject<{
|
|
3613
3613
|
display_name: z.ZodString;
|
|
3614
|
-
mode: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
3614
|
+
mode: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
3615
3615
|
code: z.ZodOptional<z.ZodString>;
|
|
3616
3616
|
instant_key_max_use_count: z.ZodOptional<z.ZodNumber>;
|
|
3617
3617
|
created_at: z.ZodString;
|
|
@@ -3619,14 +3619,14 @@ declare const access_grant: z.ZodObject<{
|
|
|
3619
3619
|
}, "strip", z.ZodTypeAny, {
|
|
3620
3620
|
display_name: string;
|
|
3621
3621
|
created_at: string;
|
|
3622
|
-
mode: "code" | "card" | "mobile_key";
|
|
3622
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
3623
3623
|
created_access_method_ids: string[];
|
|
3624
3624
|
code?: string | undefined;
|
|
3625
3625
|
instant_key_max_use_count?: number | undefined;
|
|
3626
3626
|
}, {
|
|
3627
3627
|
display_name: string;
|
|
3628
3628
|
created_at: string;
|
|
3629
|
-
mode: "code" | "card" | "mobile_key";
|
|
3629
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
3630
3630
|
created_access_method_ids: string[];
|
|
3631
3631
|
code?: string | undefined;
|
|
3632
3632
|
instant_key_max_use_count?: number | undefined;
|
|
@@ -3895,7 +3895,7 @@ declare const access_grant: z.ZodObject<{
|
|
|
3895
3895
|
requested_access_methods: {
|
|
3896
3896
|
display_name: string;
|
|
3897
3897
|
created_at: string;
|
|
3898
|
-
mode: "code" | "card" | "mobile_key";
|
|
3898
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
3899
3899
|
created_access_method_ids: string[];
|
|
3900
3900
|
code?: string | undefined;
|
|
3901
3901
|
instant_key_max_use_count?: number | undefined;
|
|
@@ -3980,7 +3980,7 @@ declare const access_grant: z.ZodObject<{
|
|
|
3980
3980
|
requested_access_methods: {
|
|
3981
3981
|
display_name: string;
|
|
3982
3982
|
created_at: string;
|
|
3983
|
-
mode: "code" | "card" | "mobile_key";
|
|
3983
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
3984
3984
|
created_access_method_ids: string[];
|
|
3985
3985
|
code?: string | undefined;
|
|
3986
3986
|
instant_key_max_use_count?: number | undefined;
|
|
@@ -4022,7 +4022,7 @@ declare const access_method: z.ZodObject<{
|
|
|
4022
4022
|
workspace_id: z.ZodString;
|
|
4023
4023
|
access_method_id: z.ZodString;
|
|
4024
4024
|
display_name: z.ZodString;
|
|
4025
|
-
mode: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
4025
|
+
mode: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
4026
4026
|
created_at: z.ZodString;
|
|
4027
4027
|
issued_at: z.ZodNullable<z.ZodString>;
|
|
4028
4028
|
is_issued: z.ZodBoolean;
|
|
@@ -4221,7 +4221,7 @@ declare const access_method: z.ZodObject<{
|
|
|
4221
4221
|
warning_code: "pulled_backup_access_code";
|
|
4222
4222
|
original_access_method_id?: string | undefined;
|
|
4223
4223
|
})[];
|
|
4224
|
-
mode: "code" | "card" | "mobile_key";
|
|
4224
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
4225
4225
|
pending_mutations: ({
|
|
4226
4226
|
message: string;
|
|
4227
4227
|
created_at: string;
|
|
@@ -4282,7 +4282,7 @@ declare const access_method: z.ZodObject<{
|
|
|
4282
4282
|
warning_code: "pulled_backup_access_code";
|
|
4283
4283
|
original_access_method_id?: string | undefined;
|
|
4284
4284
|
})[];
|
|
4285
|
-
mode: "code" | "card" | "mobile_key";
|
|
4285
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
4286
4286
|
pending_mutations: ({
|
|
4287
4287
|
message: string;
|
|
4288
4288
|
created_at: string;
|
|
@@ -6076,8 +6076,8 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
6076
6076
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
6077
6077
|
can_unlock_with_card: z.ZodOptional<z.ZodBoolean>;
|
|
6078
6078
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
6079
|
-
can_belong_to_reservation: z.ZodOptional<z.ZodBoolean>;
|
|
6080
6079
|
can_unlock_with_cloud_key: z.ZodOptional<z.ZodBoolean>;
|
|
6080
|
+
can_belong_to_reservation: z.ZodOptional<z.ZodBoolean>;
|
|
6081
6081
|
}, "strip", z.ZodTypeAny, {
|
|
6082
6082
|
display_name: string;
|
|
6083
6083
|
created_at: string;
|
|
@@ -6122,8 +6122,8 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
6122
6122
|
can_unlock_with_code?: boolean | undefined;
|
|
6123
6123
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
6124
6124
|
can_unlock_with_card?: boolean | undefined;
|
|
6125
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
6126
6125
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
6126
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
6127
6127
|
latch_metadata?: {
|
|
6128
6128
|
door_name: string;
|
|
6129
6129
|
is_connected: boolean;
|
|
@@ -6193,8 +6193,8 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
6193
6193
|
can_unlock_with_code?: boolean | undefined;
|
|
6194
6194
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
6195
6195
|
can_unlock_with_card?: boolean | undefined;
|
|
6196
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
6197
6196
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
6197
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
6198
6198
|
latch_metadata?: {
|
|
6199
6199
|
door_name: string;
|
|
6200
6200
|
is_connected: boolean;
|
|
@@ -17224,8 +17224,8 @@ declare const batch: z.ZodObject<{
|
|
|
17224
17224
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
17225
17225
|
can_unlock_with_card: z.ZodOptional<z.ZodBoolean>;
|
|
17226
17226
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
17227
|
-
can_belong_to_reservation: z.ZodOptional<z.ZodBoolean>;
|
|
17228
17227
|
can_unlock_with_cloud_key: z.ZodOptional<z.ZodBoolean>;
|
|
17228
|
+
can_belong_to_reservation: z.ZodOptional<z.ZodBoolean>;
|
|
17229
17229
|
}, "strip", z.ZodTypeAny, {
|
|
17230
17230
|
display_name: string;
|
|
17231
17231
|
created_at: string;
|
|
@@ -17270,8 +17270,8 @@ declare const batch: z.ZodObject<{
|
|
|
17270
17270
|
can_unlock_with_code?: boolean | undefined;
|
|
17271
17271
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
17272
17272
|
can_unlock_with_card?: boolean | undefined;
|
|
17273
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
17274
17273
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
17274
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
17275
17275
|
latch_metadata?: {
|
|
17276
17276
|
door_name: string;
|
|
17277
17277
|
is_connected: boolean;
|
|
@@ -17341,8 +17341,8 @@ declare const batch: z.ZodObject<{
|
|
|
17341
17341
|
can_unlock_with_code?: boolean | undefined;
|
|
17342
17342
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
17343
17343
|
can_unlock_with_card?: boolean | undefined;
|
|
17344
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
17345
17344
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
17345
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
17346
17346
|
latch_metadata?: {
|
|
17347
17347
|
door_name: string;
|
|
17348
17348
|
is_connected: boolean;
|
|
@@ -28445,7 +28445,7 @@ declare const batch: z.ZodObject<{
|
|
|
28445
28445
|
workspace_id: z.ZodString;
|
|
28446
28446
|
access_method_id: z.ZodString;
|
|
28447
28447
|
display_name: z.ZodString;
|
|
28448
|
-
mode: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
28448
|
+
mode: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
28449
28449
|
created_at: z.ZodString;
|
|
28450
28450
|
issued_at: z.ZodNullable<z.ZodString>;
|
|
28451
28451
|
is_issued: z.ZodBoolean;
|
|
@@ -28644,7 +28644,7 @@ declare const batch: z.ZodObject<{
|
|
|
28644
28644
|
warning_code: "pulled_backup_access_code";
|
|
28645
28645
|
original_access_method_id?: string | undefined;
|
|
28646
28646
|
})[];
|
|
28647
|
-
mode: "code" | "card" | "mobile_key";
|
|
28647
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
28648
28648
|
pending_mutations: ({
|
|
28649
28649
|
message: string;
|
|
28650
28650
|
created_at: string;
|
|
@@ -28705,7 +28705,7 @@ declare const batch: z.ZodObject<{
|
|
|
28705
28705
|
warning_code: "pulled_backup_access_code";
|
|
28706
28706
|
original_access_method_id?: string | undefined;
|
|
28707
28707
|
})[];
|
|
28708
|
-
mode: "code" | "card" | "mobile_key";
|
|
28708
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
28709
28709
|
pending_mutations: ({
|
|
28710
28710
|
message: string;
|
|
28711
28711
|
created_at: string;
|
|
@@ -28759,7 +28759,7 @@ declare const batch: z.ZodObject<{
|
|
|
28759
28759
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
28760
28760
|
requested_access_methods: z.ZodArray<z.ZodObject<{
|
|
28761
28761
|
display_name: z.ZodString;
|
|
28762
|
-
mode: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
28762
|
+
mode: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
28763
28763
|
code: z.ZodOptional<z.ZodString>;
|
|
28764
28764
|
instant_key_max_use_count: z.ZodOptional<z.ZodNumber>;
|
|
28765
28765
|
created_at: z.ZodString;
|
|
@@ -28767,14 +28767,14 @@ declare const batch: z.ZodObject<{
|
|
|
28767
28767
|
}, "strip", z.ZodTypeAny, {
|
|
28768
28768
|
display_name: string;
|
|
28769
28769
|
created_at: string;
|
|
28770
|
-
mode: "code" | "card" | "mobile_key";
|
|
28770
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
28771
28771
|
created_access_method_ids: string[];
|
|
28772
28772
|
code?: string | undefined;
|
|
28773
28773
|
instant_key_max_use_count?: number | undefined;
|
|
28774
28774
|
}, {
|
|
28775
28775
|
display_name: string;
|
|
28776
28776
|
created_at: string;
|
|
28777
|
-
mode: "code" | "card" | "mobile_key";
|
|
28777
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
28778
28778
|
created_access_method_ids: string[];
|
|
28779
28779
|
code?: string | undefined;
|
|
28780
28780
|
instant_key_max_use_count?: number | undefined;
|
|
@@ -29043,7 +29043,7 @@ declare const batch: z.ZodObject<{
|
|
|
29043
29043
|
requested_access_methods: {
|
|
29044
29044
|
display_name: string;
|
|
29045
29045
|
created_at: string;
|
|
29046
|
-
mode: "code" | "card" | "mobile_key";
|
|
29046
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
29047
29047
|
created_access_method_ids: string[];
|
|
29048
29048
|
code?: string | undefined;
|
|
29049
29049
|
instant_key_max_use_count?: number | undefined;
|
|
@@ -29128,7 +29128,7 @@ declare const batch: z.ZodObject<{
|
|
|
29128
29128
|
requested_access_methods: {
|
|
29129
29129
|
display_name: string;
|
|
29130
29130
|
created_at: string;
|
|
29131
|
-
mode: "code" | "card" | "mobile_key";
|
|
29131
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
29132
29132
|
created_access_method_ids: string[];
|
|
29133
29133
|
code?: string | undefined;
|
|
29134
29134
|
instant_key_max_use_count?: number | undefined;
|
|
@@ -38216,8 +38216,8 @@ declare const batch: z.ZodObject<{
|
|
|
38216
38216
|
can_unlock_with_code?: boolean | undefined;
|
|
38217
38217
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
38218
38218
|
can_unlock_with_card?: boolean | undefined;
|
|
38219
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
38220
38219
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
38220
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
38221
38221
|
latch_metadata?: {
|
|
38222
38222
|
door_name: string;
|
|
38223
38223
|
is_connected: boolean;
|
|
@@ -39996,7 +39996,7 @@ declare const batch: z.ZodObject<{
|
|
|
39996
39996
|
warning_code: "pulled_backup_access_code";
|
|
39997
39997
|
original_access_method_id?: string | undefined;
|
|
39998
39998
|
})[];
|
|
39999
|
-
mode: "code" | "card" | "mobile_key";
|
|
39999
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
40000
40000
|
pending_mutations: ({
|
|
40001
40001
|
message: string;
|
|
40002
40002
|
created_at: string;
|
|
@@ -40090,7 +40090,7 @@ declare const batch: z.ZodObject<{
|
|
|
40090
40090
|
requested_access_methods: {
|
|
40091
40091
|
display_name: string;
|
|
40092
40092
|
created_at: string;
|
|
40093
|
-
mode: "code" | "card" | "mobile_key";
|
|
40093
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
40094
40094
|
created_access_method_ids: string[];
|
|
40095
40095
|
code?: string | undefined;
|
|
40096
40096
|
instant_key_max_use_count?: number | undefined;
|
|
@@ -43074,8 +43074,8 @@ declare const batch: z.ZodObject<{
|
|
|
43074
43074
|
can_unlock_with_code?: boolean | undefined;
|
|
43075
43075
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
43076
43076
|
can_unlock_with_card?: boolean | undefined;
|
|
43077
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
43078
43077
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
43078
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
43079
43079
|
latch_metadata?: {
|
|
43080
43080
|
door_name: string;
|
|
43081
43081
|
is_connected: boolean;
|
|
@@ -44854,7 +44854,7 @@ declare const batch: z.ZodObject<{
|
|
|
44854
44854
|
warning_code: "pulled_backup_access_code";
|
|
44855
44855
|
original_access_method_id?: string | undefined;
|
|
44856
44856
|
})[];
|
|
44857
|
-
mode: "code" | "card" | "mobile_key";
|
|
44857
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
44858
44858
|
pending_mutations: ({
|
|
44859
44859
|
message: string;
|
|
44860
44860
|
created_at: string;
|
|
@@ -44948,7 +44948,7 @@ declare const batch: z.ZodObject<{
|
|
|
44948
44948
|
requested_access_methods: {
|
|
44949
44949
|
display_name: string;
|
|
44950
44950
|
created_at: string;
|
|
44951
|
-
mode: "code" | "card" | "mobile_key";
|
|
44951
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
44952
44952
|
created_access_method_ids: string[];
|
|
44953
44953
|
code?: string | undefined;
|
|
44954
44954
|
instant_key_max_use_count?: number | undefined;
|
|
@@ -144215,8 +144215,8 @@ type Routes = {
|
|
|
144215
144215
|
/** Set of IDs of the [devices](https://docs.seam.co/latest/api/devices/list) to which access is being granted. */
|
|
144216
144216
|
device_ids?: string[];
|
|
144217
144217
|
requested_access_methods: {
|
|
144218
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
144219
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
144218
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
144219
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
144220
144220
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
144221
144221
|
code?: string | undefined;
|
|
144222
144222
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -144252,8 +144252,8 @@ type Routes = {
|
|
|
144252
144252
|
requested_access_methods: {
|
|
144253
144253
|
/** Display name of the access method. */
|
|
144254
144254
|
display_name: string;
|
|
144255
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
144256
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
144255
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
144256
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
144257
144257
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
144258
144258
|
code?: string | undefined;
|
|
144259
144259
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -144440,8 +144440,8 @@ type Routes = {
|
|
|
144440
144440
|
requested_access_methods: {
|
|
144441
144441
|
/** Display name of the access method. */
|
|
144442
144442
|
display_name: string;
|
|
144443
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
144444
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
144443
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
144444
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
144445
144445
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
144446
144446
|
code?: string | undefined;
|
|
144447
144447
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -146064,10 +146064,10 @@ type Routes = {
|
|
|
146064
146064
|
can_unlock_with_card?: boolean | undefined;
|
|
146065
146065
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
146066
146066
|
can_unlock_with_code?: boolean | undefined;
|
|
146067
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
146068
|
+
can_unlock_with_cloud_key?: boolean | undefined;
|
|
146067
146069
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
146068
146070
|
can_belong_to_reservation?: boolean | undefined;
|
|
146069
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
146070
|
-
can_unlock_with_cloud_key?: boolean | undefined;
|
|
146071
146071
|
}[] | undefined;
|
|
146072
146072
|
connected_accounts?: {
|
|
146073
146073
|
/** ID of the connected account. */
|
|
@@ -146534,8 +146534,8 @@ type Routes = {
|
|
|
146534
146534
|
access_method_id: string;
|
|
146535
146535
|
/** Display name of the access method. */
|
|
146536
146536
|
display_name: string;
|
|
146537
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
146538
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
146537
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
146538
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
146539
146539
|
/** Date and time at which the access method was created. */
|
|
146540
146540
|
created_at: string;
|
|
146541
146541
|
/** Date and time at which the access method was issued. */
|
|
@@ -146693,8 +146693,8 @@ type Routes = {
|
|
|
146693
146693
|
requested_access_methods: {
|
|
146694
146694
|
/** Display name of the access method. */
|
|
146695
146695
|
display_name: string;
|
|
146696
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
146697
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
146696
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
146697
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
146698
146698
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
146699
146699
|
code?: string | undefined;
|
|
146700
146700
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -146852,8 +146852,8 @@ type Routes = {
|
|
|
146852
146852
|
access_grant_id: string;
|
|
146853
146853
|
/** Array of requested access methods to add to the access grant. */
|
|
146854
146854
|
requested_access_methods: {
|
|
146855
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
146856
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
146855
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
146856
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
146857
146857
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
146858
146858
|
code?: string | undefined;
|
|
146859
146859
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -146883,8 +146883,8 @@ type Routes = {
|
|
|
146883
146883
|
requested_access_methods: {
|
|
146884
146884
|
/** Display name of the access method. */
|
|
146885
146885
|
display_name: string;
|
|
146886
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
146887
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
146886
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
146887
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
146888
146888
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
146889
146889
|
code?: string | undefined;
|
|
146890
146890
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -147051,8 +147051,8 @@ type Routes = {
|
|
|
147051
147051
|
requested_access_methods: {
|
|
147052
147052
|
/** Display name of the access method. */
|
|
147053
147053
|
display_name: string;
|
|
147054
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
147055
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
147054
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
147055
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
147056
147056
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
147057
147057
|
code?: string | undefined;
|
|
147058
147058
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -147224,8 +147224,8 @@ type Routes = {
|
|
|
147224
147224
|
requested_access_methods: {
|
|
147225
147225
|
/** Display name of the access method. */
|
|
147226
147226
|
display_name: string;
|
|
147227
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
147228
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
147227
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
147228
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
147229
147229
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
147230
147230
|
code?: string | undefined;
|
|
147231
147231
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -148775,8 +148775,8 @@ type Routes = {
|
|
|
148775
148775
|
access_method_id: string;
|
|
148776
148776
|
/** Display name of the access method. */
|
|
148777
148777
|
display_name: string;
|
|
148778
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
148779
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
148778
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
148779
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
148780
148780
|
/** Date and time at which the access method was created. */
|
|
148781
148781
|
created_at: string;
|
|
148782
148782
|
/** Date and time at which the access method was issued. */
|
|
@@ -150363,10 +150363,10 @@ type Routes = {
|
|
|
150363
150363
|
can_unlock_with_card?: boolean | undefined;
|
|
150364
150364
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
150365
150365
|
can_unlock_with_code?: boolean | undefined;
|
|
150366
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
150367
|
+
can_unlock_with_cloud_key?: boolean | undefined;
|
|
150366
150368
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
150367
150369
|
can_belong_to_reservation?: boolean | undefined;
|
|
150368
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
150369
|
-
can_unlock_with_cloud_key?: boolean | undefined;
|
|
150370
150370
|
}[] | undefined;
|
|
150371
150371
|
access_grants?: {
|
|
150372
150372
|
/** ID of the Seam workspace associated with the Access Grant. */
|
|
@@ -150388,8 +150388,8 @@ type Routes = {
|
|
|
150388
150388
|
requested_access_methods: {
|
|
150389
150389
|
/** Display name of the access method. */
|
|
150390
150390
|
display_name: string;
|
|
150391
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
150392
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
150391
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
150392
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
150393
150393
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
150394
150394
|
code?: string | undefined;
|
|
150395
150395
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -150532,8 +150532,8 @@ type Routes = {
|
|
|
150532
150532
|
access_method_id: string;
|
|
150533
150533
|
/** Display name of the access method. */
|
|
150534
150534
|
display_name: string;
|
|
150535
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
150536
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
150535
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
150536
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
150537
150537
|
/** Date and time at which the access method was created. */
|
|
150538
150538
|
created_at: string;
|
|
150539
150539
|
/** Date and time at which the access method was issued. */
|
|
@@ -150850,8 +150850,8 @@ type Routes = {
|
|
|
150850
150850
|
access_method_id: string;
|
|
150851
150851
|
/** Display name of the access method. */
|
|
150852
150852
|
display_name: string;
|
|
150853
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
150854
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
150853
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
150854
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
150855
150855
|
/** Date and time at which the access method was created. */
|
|
150856
150856
|
created_at: string;
|
|
150857
150857
|
/** Date and time at which the access method was issued. */
|
|
@@ -150975,8 +150975,8 @@ type Routes = {
|
|
|
150975
150975
|
access_method_id: string;
|
|
150976
150976
|
/** Display name of the access method. */
|
|
150977
150977
|
display_name: string;
|
|
150978
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
150979
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
150978
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
150979
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
150980
150980
|
/** Date and time at which the access method was created. */
|
|
150981
150981
|
created_at: string;
|
|
150982
150982
|
/** Date and time at which the access method was issued. */
|
|
@@ -151099,8 +151099,8 @@ type Routes = {
|
|
|
151099
151099
|
access_method_id: string;
|
|
151100
151100
|
/** Display name of the access method. */
|
|
151101
151101
|
display_name: string;
|
|
151102
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
151103
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
151102
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
151103
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
151104
151104
|
/** Date and time at which the access method was created. */
|
|
151105
151105
|
created_at: string;
|
|
151106
151106
|
/** Date and time at which the access method was issued. */
|
|
@@ -151715,10 +151715,10 @@ type Routes = {
|
|
|
151715
151715
|
can_unlock_with_card?: boolean | undefined;
|
|
151716
151716
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
151717
151717
|
can_unlock_with_code?: boolean | undefined;
|
|
151718
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
151719
|
+
can_unlock_with_cloud_key?: boolean | undefined;
|
|
151718
151720
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
151719
151721
|
can_belong_to_reservation?: boolean | undefined;
|
|
151720
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
151721
|
-
can_unlock_with_cloud_key?: boolean | undefined;
|
|
151722
151722
|
}[];
|
|
151723
151723
|
};
|
|
151724
151724
|
maxDuration: undefined;
|
|
@@ -153375,10 +153375,10 @@ type Routes = {
|
|
|
153375
153375
|
can_unlock_with_card?: boolean | undefined;
|
|
153376
153376
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
153377
153377
|
can_unlock_with_code?: boolean | undefined;
|
|
153378
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
153379
|
+
can_unlock_with_cloud_key?: boolean | undefined;
|
|
153378
153380
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
153379
153381
|
can_belong_to_reservation?: boolean | undefined;
|
|
153380
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
153381
|
-
can_unlock_with_cloud_key?: boolean | undefined;
|
|
153382
153382
|
}[];
|
|
153383
153383
|
};
|
|
153384
153384
|
maxDuration: undefined;
|
|
@@ -156991,10 +156991,10 @@ type Routes = {
|
|
|
156991
156991
|
can_unlock_with_card?: boolean | undefined;
|
|
156992
156992
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
156993
156993
|
can_unlock_with_code?: boolean | undefined;
|
|
156994
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
156995
|
+
can_unlock_with_cloud_key?: boolean | undefined;
|
|
156994
156996
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
156995
156997
|
can_belong_to_reservation?: boolean | undefined;
|
|
156996
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
156997
|
-
can_unlock_with_cloud_key?: boolean | undefined;
|
|
156998
156998
|
};
|
|
156999
156999
|
};
|
|
157000
157000
|
maxDuration: undefined;
|
|
@@ -157172,10 +157172,10 @@ type Routes = {
|
|
|
157172
157172
|
can_unlock_with_card?: boolean | undefined;
|
|
157173
157173
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
157174
157174
|
can_unlock_with_code?: boolean | undefined;
|
|
157175
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
157176
|
+
can_unlock_with_cloud_key?: boolean | undefined;
|
|
157175
157177
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
157176
157178
|
can_belong_to_reservation?: boolean | undefined;
|
|
157177
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
157178
|
-
can_unlock_with_cloud_key?: boolean | undefined;
|
|
157179
157179
|
}[];
|
|
157180
157180
|
/** Information about the current page of results. */
|
|
157181
157181
|
pagination: {
|
|
@@ -160086,10 +160086,10 @@ type Routes = {
|
|
|
160086
160086
|
can_unlock_with_card?: boolean | undefined;
|
|
160087
160087
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
160088
160088
|
can_unlock_with_code?: boolean | undefined;
|
|
160089
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
160090
|
+
can_unlock_with_cloud_key?: boolean | undefined;
|
|
160089
160091
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
160090
160092
|
can_belong_to_reservation?: boolean | undefined;
|
|
160091
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
160092
|
-
can_unlock_with_cloud_key?: boolean | undefined;
|
|
160093
160093
|
}[];
|
|
160094
160094
|
};
|
|
160095
160095
|
maxDuration: undefined;
|
|
@@ -194492,8 +194492,8 @@ type Routes = {
|
|
|
194492
194492
|
requested_access_methods: {
|
|
194493
194493
|
/** Display name of the access method. */
|
|
194494
194494
|
display_name: string;
|
|
194495
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
194496
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
194495
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
194496
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
194497
194497
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
194498
194498
|
code?: string | undefined;
|
|
194499
194499
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -199793,8 +199793,8 @@ type Routes = {
|
|
|
199793
199793
|
requested_access_methods: {
|
|
199794
199794
|
/** Display name of the access method. */
|
|
199795
199795
|
display_name: string;
|
|
199796
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
199797
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
199796
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
199797
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
199798
199798
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
199799
199799
|
code?: string | undefined;
|
|
199800
199800
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -200215,8 +200215,8 @@ type Routes = {
|
|
|
200215
200215
|
requested_access_methods: {
|
|
200216
200216
|
/** Display name of the access method. */
|
|
200217
200217
|
display_name: string;
|
|
200218
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
200219
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
200218
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
200219
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
200220
200220
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
200221
200221
|
code?: string | undefined;
|
|
200222
200222
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -200951,10 +200951,10 @@ type Routes = {
|
|
|
200951
200951
|
can_unlock_with_card?: boolean | undefined;
|
|
200952
200952
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
200953
200953
|
can_unlock_with_code?: boolean | undefined;
|
|
200954
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
200955
|
+
can_unlock_with_cloud_key?: boolean | undefined;
|
|
200954
200956
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
200955
200957
|
can_belong_to_reservation?: boolean | undefined;
|
|
200956
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
200957
|
-
can_unlock_with_cloud_key?: boolean | undefined;
|
|
200958
200958
|
}[];
|
|
200959
200959
|
}[];
|
|
200960
200960
|
}[];
|
|
@@ -202676,10 +202676,10 @@ type Routes = {
|
|
|
202676
202676
|
can_unlock_with_card?: boolean | undefined;
|
|
202677
202677
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
202678
202678
|
can_unlock_with_code?: boolean | undefined;
|
|
202679
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
202680
|
+
can_unlock_with_cloud_key?: boolean | undefined;
|
|
202679
202681
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
202680
202682
|
can_belong_to_reservation?: boolean | undefined;
|
|
202681
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
202682
|
-
can_unlock_with_cloud_key?: boolean | undefined;
|
|
202683
202683
|
}[] | undefined;
|
|
202684
202684
|
connected_accounts?: {
|
|
202685
202685
|
/** ID of the connected account. */
|
|
@@ -202944,8 +202944,8 @@ type Routes = {
|
|
|
202944
202944
|
access_method_id: string;
|
|
202945
202945
|
/** Display name of the access method. */
|
|
202946
202946
|
display_name: string;
|
|
202947
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
202948
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
202947
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
202948
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
202949
202949
|
/** Date and time at which the access method was created. */
|
|
202950
202950
|
created_at: string;
|
|
202951
202951
|
/** Date and time at which the access method was issued. */
|
|
@@ -225324,10 +225324,10 @@ type Routes = {
|
|
|
225324
225324
|
can_unlock_with_card?: boolean | undefined;
|
|
225325
225325
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
225326
225326
|
can_unlock_with_code?: boolean | undefined;
|
|
225327
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
225328
|
+
can_unlock_with_cloud_key?: boolean | undefined;
|
|
225327
225329
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
225328
225330
|
can_belong_to_reservation?: boolean | undefined;
|
|
225329
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
225330
|
-
can_unlock_with_cloud_key?: boolean | undefined;
|
|
225331
225331
|
}[] | undefined;
|
|
225332
225332
|
acs_systems?: {
|
|
225333
225333
|
/** ID of the default credential manager `acs_system` for this [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
@@ -228094,8 +228094,8 @@ type Routes = {
|
|
|
228094
228094
|
access_method_id: string;
|
|
228095
228095
|
/** Display name of the access method. */
|
|
228096
228096
|
display_name: string;
|
|
228097
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
228098
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
228097
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
228098
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
228099
228099
|
/** Date and time at which the access method was created. */
|
|
228100
228100
|
created_at: string;
|
|
228101
228101
|
/** Date and time at which the access method was issued. */
|
|
@@ -228217,8 +228217,8 @@ type Routes = {
|
|
|
228217
228217
|
requested_access_methods: {
|
|
228218
228218
|
/** Display name of the access method. */
|
|
228219
228219
|
display_name: string;
|
|
228220
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
228221
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
228220
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
228221
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
228222
228222
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
228223
228223
|
code?: string | undefined;
|
|
228224
228224
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|