@seamapi/types 1.321.1 → 1.322.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 +32 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +307 -274
- package/lib/seam/connect/models/acs/acs-credential.d.ts +12 -12
- package/lib/seam/connect/models/acs/acs-credential.js +2 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-user.d.ts +12 -12
- package/lib/seam/connect/models/acs/acs-user.js +5 -2
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +48 -48
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +20 -20
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +28 -28
- package/lib/seam/connect/openapi.d.ts +28 -0
- package/lib/seam/connect/openapi.js +28 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +207 -202
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +2 -0
- package/src/lib/seam/connect/models/acs/acs-user.ts +5 -2
- package/src/lib/seam/connect/openapi.ts +29 -0
- package/src/lib/seam/connect/route-types.ts +277 -202
|
@@ -193,9 +193,9 @@ export interface Routes {
|
|
|
193
193
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
194
194
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
195
195
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
196
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
196
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
197
197
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
198
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
198
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
199
199
|
/** Visionline-specific metadata for the credential. */
|
|
200
200
|
visionline_metadata?: {
|
|
201
201
|
card_function_type: 'guest' | 'staff';
|
|
@@ -286,9 +286,9 @@ export interface Routes {
|
|
|
286
286
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
287
287
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
288
288
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
289
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
289
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
290
290
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
291
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
291
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
292
292
|
/** Visionline-specific metadata for the credential. */
|
|
293
293
|
visionline_metadata?: {
|
|
294
294
|
card_function_type: 'guest' | 'staff';
|
|
@@ -416,9 +416,9 @@ export interface Routes {
|
|
|
416
416
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
417
417
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
418
418
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
419
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
419
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
420
420
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
421
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
421
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
422
422
|
/** Visionline-specific metadata for the credential. */
|
|
423
423
|
visionline_metadata?: {
|
|
424
424
|
card_function_type: 'guest' | 'staff';
|
|
@@ -509,9 +509,9 @@ export interface Routes {
|
|
|
509
509
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
510
510
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
511
511
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
512
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
512
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
513
513
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
514
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
514
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
515
515
|
/** Visionline-specific metadata for the credential. */
|
|
516
516
|
visionline_metadata?: {
|
|
517
517
|
card_function_type: 'guest' | 'staff';
|
|
@@ -1148,9 +1148,9 @@ export interface Routes {
|
|
|
1148
1148
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
1149
1149
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1150
1150
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
1151
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1151
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
1152
1152
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
1153
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1153
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
1154
1154
|
/** Visionline-specific metadata for the credential. */
|
|
1155
1155
|
visionline_metadata?: {
|
|
1156
1156
|
card_function_type: 'guest' | 'staff';
|
|
@@ -1241,9 +1241,9 @@ export interface Routes {
|
|
|
1241
1241
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
1242
1242
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1243
1243
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
1244
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1244
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
1245
1245
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
1246
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1246
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
1247
1247
|
/** Visionline-specific metadata for the credential. */
|
|
1248
1248
|
visionline_metadata?: {
|
|
1249
1249
|
card_function_type: 'guest' | 'staff';
|
|
@@ -1371,9 +1371,9 @@ export interface Routes {
|
|
|
1371
1371
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
1372
1372
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1373
1373
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
1374
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1374
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
1375
1375
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
1376
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1376
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
1377
1377
|
/** Visionline-specific metadata for the credential. */
|
|
1378
1378
|
visionline_metadata?: {
|
|
1379
1379
|
card_function_type: 'guest' | 'staff';
|
|
@@ -1464,9 +1464,9 @@ export interface Routes {
|
|
|
1464
1464
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
1465
1465
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
1466
1466
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
1467
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1467
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
1468
1468
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
1469
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
1469
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
1470
1470
|
/** Visionline-specific metadata for the credential. */
|
|
1471
1471
|
visionline_metadata?: {
|
|
1472
1472
|
card_function_type: 'guest' | 'staff';
|
|
@@ -2321,9 +2321,9 @@ export interface Routes {
|
|
|
2321
2321
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
2322
2322
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2323
2323
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
2324
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2324
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
2325
2325
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
2326
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2326
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
2327
2327
|
/** Visionline-specific metadata for the credential. */
|
|
2328
2328
|
visionline_metadata?: {
|
|
2329
2329
|
card_function_type: 'guest' | 'staff';
|
|
@@ -2414,9 +2414,9 @@ export interface Routes {
|
|
|
2414
2414
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
2415
2415
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2416
2416
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
2417
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2417
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
2418
2418
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
2419
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2419
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
2420
2420
|
/** Visionline-specific metadata for the credential. */
|
|
2421
2421
|
visionline_metadata?: {
|
|
2422
2422
|
card_function_type: 'guest' | 'staff';
|
|
@@ -2544,9 +2544,9 @@ export interface Routes {
|
|
|
2544
2544
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
2545
2545
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2546
2546
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
2547
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2547
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
2548
2548
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
2549
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2549
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
2550
2550
|
/** Visionline-specific metadata for the credential. */
|
|
2551
2551
|
visionline_metadata?: {
|
|
2552
2552
|
card_function_type: 'guest' | 'staff';
|
|
@@ -2637,9 +2637,9 @@ export interface Routes {
|
|
|
2637
2637
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
2638
2638
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2639
2639
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
2640
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2640
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
2641
2641
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
2642
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2642
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
2643
2643
|
/** Visionline-specific metadata for the credential. */
|
|
2644
2644
|
visionline_metadata?: {
|
|
2645
2645
|
card_function_type: 'guest' | 'staff';
|
|
@@ -3263,9 +3263,9 @@ export interface Routes {
|
|
|
3263
3263
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
3264
3264
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
3265
3265
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
3266
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3266
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
3267
3267
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
3268
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3268
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
3269
3269
|
/** Visionline-specific metadata for the credential. */
|
|
3270
3270
|
visionline_metadata?: {
|
|
3271
3271
|
card_function_type: 'guest' | 'staff';
|
|
@@ -3356,9 +3356,9 @@ export interface Routes {
|
|
|
3356
3356
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
3357
3357
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
3358
3358
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
3359
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3359
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
3360
3360
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
3361
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3361
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
3362
3362
|
/** Visionline-specific metadata for the credential. */
|
|
3363
3363
|
visionline_metadata?: {
|
|
3364
3364
|
card_function_type: 'guest' | 'staff';
|
|
@@ -3486,9 +3486,9 @@ export interface Routes {
|
|
|
3486
3486
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
3487
3487
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
3488
3488
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
3489
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3489
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
3490
3490
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
3491
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3491
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
3492
3492
|
/** Visionline-specific metadata for the credential. */
|
|
3493
3493
|
visionline_metadata?: {
|
|
3494
3494
|
card_function_type: 'guest' | 'staff';
|
|
@@ -3579,9 +3579,9 @@ export interface Routes {
|
|
|
3579
3579
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
3580
3580
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
3581
3581
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
3582
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3582
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
3583
3583
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
3584
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3584
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
3585
3585
|
/** Visionline-specific metadata for the credential. */
|
|
3586
3586
|
visionline_metadata?: {
|
|
3587
3587
|
card_function_type: 'guest' | 'staff';
|
|
@@ -4125,9 +4125,9 @@ export interface Routes {
|
|
|
4125
4125
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
4126
4126
|
user_identity_phone_number?: (string | null) | undefined;
|
|
4127
4127
|
/** */
|
|
4128
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
4128
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
4129
4129
|
/** */
|
|
4130
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
4130
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
4131
4131
|
/** Warnings associated with the `acs_user`. */
|
|
4132
4132
|
warnings: Array<{
|
|
4133
4133
|
created_at: string;
|
|
@@ -4428,9 +4428,9 @@ export interface Routes {
|
|
|
4428
4428
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
4429
4429
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
4430
4430
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
4431
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
4431
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
4432
4432
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
4433
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
4433
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
4434
4434
|
/** Visionline-specific metadata for the credential. */
|
|
4435
4435
|
visionline_metadata?: {
|
|
4436
4436
|
card_function_type: 'guest' | 'staff';
|
|
@@ -4484,6 +4484,11 @@ export interface Routes {
|
|
|
4484
4484
|
join_all_guest_acs_entrances?: boolean | undefined;
|
|
4485
4485
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4486
4486
|
} | undefined;
|
|
4487
|
+
/** Salto Space-specific metadata for the new credential. */
|
|
4488
|
+
salto_space_metadata?: {
|
|
4489
|
+
assign_new_key?: boolean | undefined;
|
|
4490
|
+
update_current_key?: boolean | undefined;
|
|
4491
|
+
} | undefined;
|
|
4487
4492
|
/** Date and time at which the validity of the new credential starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
4488
4493
|
starts_at?: string | undefined;
|
|
4489
4494
|
/** Date and time at which the validity of the new credential ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
@@ -4571,9 +4576,9 @@ export interface Routes {
|
|
|
4571
4576
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
4572
4577
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
4573
4578
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
4574
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
4579
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
4575
4580
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
4576
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
4581
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
4577
4582
|
/** Visionline-specific metadata for the credential. */
|
|
4578
4583
|
visionline_metadata?: {
|
|
4579
4584
|
card_function_type: 'guest' | 'staff';
|
|
@@ -4688,9 +4693,9 @@ export interface Routes {
|
|
|
4688
4693
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
4689
4694
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
4690
4695
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
4691
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
4696
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
4692
4697
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
4693
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
4698
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
4694
4699
|
/** Visionline-specific metadata for the credential. */
|
|
4695
4700
|
visionline_metadata?: {
|
|
4696
4701
|
card_function_type: 'guest' | 'staff';
|
|
@@ -4809,9 +4814,9 @@ export interface Routes {
|
|
|
4809
4814
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
4810
4815
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
4811
4816
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
4812
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
4817
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
4813
4818
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
4814
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
4819
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
4815
4820
|
/** Visionline-specific metadata for the credential. */
|
|
4816
4821
|
visionline_metadata?: {
|
|
4817
4822
|
card_function_type: 'guest' | 'staff';
|
|
@@ -4934,9 +4939,9 @@ export interface Routes {
|
|
|
4934
4939
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
4935
4940
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
4936
4941
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
4937
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
4942
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
4938
4943
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
4939
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
4944
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
4940
4945
|
/** Visionline-specific metadata for the credential. */
|
|
4941
4946
|
visionline_metadata?: {
|
|
4942
4947
|
card_function_type: 'guest' | 'staff';
|
|
@@ -5112,9 +5117,9 @@ export interface Routes {
|
|
|
5112
5117
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
5113
5118
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
5114
5119
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
5115
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
5120
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
5116
5121
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
5117
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
5122
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
5118
5123
|
/** Visionline-specific metadata for the credential. */
|
|
5119
5124
|
visionline_metadata?: {
|
|
5120
5125
|
card_function_type: 'guest' | 'staff';
|
|
@@ -5221,9 +5226,9 @@ export interface Routes {
|
|
|
5221
5226
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
5222
5227
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
5223
5228
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
5224
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
5229
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
5225
5230
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
5226
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
5231
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
5227
5232
|
/** Visionline-specific metadata for the credential. */
|
|
5228
5233
|
visionline_metadata?: {
|
|
5229
5234
|
card_function_type: 'guest' | 'staff';
|
|
@@ -5339,9 +5344,9 @@ export interface Routes {
|
|
|
5339
5344
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
5340
5345
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
5341
5346
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
5342
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
5347
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
5343
5348
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
5344
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
5349
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
5345
5350
|
/** Visionline-specific metadata for the credential. */
|
|
5346
5351
|
visionline_metadata?: {
|
|
5347
5352
|
card_function_type: 'guest' | 'staff';
|
|
@@ -5452,9 +5457,9 @@ export interface Routes {
|
|
|
5452
5457
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
5453
5458
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
5454
5459
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
5455
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
5460
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
5456
5461
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
5457
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
5462
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
5458
5463
|
/** Visionline-specific metadata for the credential. */
|
|
5459
5464
|
visionline_metadata?: {
|
|
5460
5465
|
card_function_type: 'guest' | 'staff';
|
|
@@ -5651,9 +5656,9 @@ export interface Routes {
|
|
|
5651
5656
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
5652
5657
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
5653
5658
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
5654
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
5659
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
5655
5660
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
5656
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
5661
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
5657
5662
|
/** Visionline-specific metadata for the credential. */
|
|
5658
5663
|
visionline_metadata?: {
|
|
5659
5664
|
card_function_type: 'guest' | 'staff';
|
|
@@ -5744,9 +5749,9 @@ export interface Routes {
|
|
|
5744
5749
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
5745
5750
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
5746
5751
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
5747
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
5752
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
5748
5753
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
5749
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
5754
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
5750
5755
|
/** Visionline-specific metadata for the credential. */
|
|
5751
5756
|
visionline_metadata?: {
|
|
5752
5757
|
card_function_type: 'guest' | 'staff';
|
|
@@ -5874,9 +5879,9 @@ export interface Routes {
|
|
|
5874
5879
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
5875
5880
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
5876
5881
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
5877
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
5882
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
5878
5883
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
5879
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
5884
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
5880
5885
|
/** Visionline-specific metadata for the credential. */
|
|
5881
5886
|
visionline_metadata?: {
|
|
5882
5887
|
card_function_type: 'guest' | 'staff';
|
|
@@ -5967,9 +5972,9 @@ export interface Routes {
|
|
|
5967
5972
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
5968
5973
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
5969
5974
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
5970
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
5975
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
5971
5976
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
5972
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
5977
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
5973
5978
|
/** Visionline-specific metadata for the credential. */
|
|
5974
5979
|
visionline_metadata?: {
|
|
5975
5980
|
card_function_type: 'guest' | 'staff';
|
|
@@ -6496,9 +6501,9 @@ export interface Routes {
|
|
|
6496
6501
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
6497
6502
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
6498
6503
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
6499
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
6504
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
6500
6505
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
6501
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
6506
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
6502
6507
|
/** Visionline-specific metadata for the credential. */
|
|
6503
6508
|
visionline_metadata?: {
|
|
6504
6509
|
card_function_type: 'guest' | 'staff';
|
|
@@ -6589,9 +6594,9 @@ export interface Routes {
|
|
|
6589
6594
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
6590
6595
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
6591
6596
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
6592
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
6597
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
6593
6598
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
6594
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
6599
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
6595
6600
|
/** Visionline-specific metadata for the credential. */
|
|
6596
6601
|
visionline_metadata?: {
|
|
6597
6602
|
card_function_type: 'guest' | 'staff';
|
|
@@ -6719,9 +6724,9 @@ export interface Routes {
|
|
|
6719
6724
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
6720
6725
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
6721
6726
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
6722
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
6727
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
6723
6728
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
6724
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
6729
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
6725
6730
|
/** Visionline-specific metadata for the credential. */
|
|
6726
6731
|
visionline_metadata?: {
|
|
6727
6732
|
card_function_type: 'guest' | 'staff';
|
|
@@ -6812,9 +6817,9 @@ export interface Routes {
|
|
|
6812
6817
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
6813
6818
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
6814
6819
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
6815
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
6820
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
6816
6821
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
6817
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
6822
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
6818
6823
|
/** Visionline-specific metadata for the credential. */
|
|
6819
6824
|
visionline_metadata?: {
|
|
6820
6825
|
card_function_type: 'guest' | 'staff';
|
|
@@ -7420,9 +7425,9 @@ export interface Routes {
|
|
|
7420
7425
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
7421
7426
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
7422
7427
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
7423
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
7428
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
7424
7429
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
7425
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
7430
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
7426
7431
|
/** Visionline-specific metadata for the credential. */
|
|
7427
7432
|
visionline_metadata?: {
|
|
7428
7433
|
card_function_type: 'guest' | 'staff';
|
|
@@ -7898,9 +7903,9 @@ export interface Routes {
|
|
|
7898
7903
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
7899
7904
|
user_identity_phone_number?: (string | null) | undefined;
|
|
7900
7905
|
/** */
|
|
7901
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
7906
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
7902
7907
|
/** */
|
|
7903
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
7908
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
7904
7909
|
/** Warnings associated with the `acs_user`. */
|
|
7905
7910
|
warnings: Array<{
|
|
7906
7911
|
created_at: string;
|
|
@@ -8014,9 +8019,9 @@ export interface Routes {
|
|
|
8014
8019
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
8015
8020
|
user_identity_phone_number?: (string | null) | undefined;
|
|
8016
8021
|
/** */
|
|
8017
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
8022
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
8018
8023
|
/** */
|
|
8019
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
8024
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
8020
8025
|
/** Warnings associated with the `acs_user`. */
|
|
8021
8026
|
warnings: Array<{
|
|
8022
8027
|
created_at: string;
|
|
@@ -8125,9 +8130,9 @@ export interface Routes {
|
|
|
8125
8130
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
8126
8131
|
user_identity_phone_number?: (string | null) | undefined;
|
|
8127
8132
|
/** */
|
|
8128
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
8133
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
8129
8134
|
/** */
|
|
8130
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
8135
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
8131
8136
|
/** Warnings associated with the `acs_user`. */
|
|
8132
8137
|
warnings: Array<{
|
|
8133
8138
|
created_at: string;
|
|
@@ -8333,9 +8338,9 @@ export interface Routes {
|
|
|
8333
8338
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
8334
8339
|
user_identity_phone_number?: (string | null) | undefined;
|
|
8335
8340
|
/** */
|
|
8336
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
8341
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
8337
8342
|
/** */
|
|
8338
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
8343
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
8339
8344
|
/** Warnings associated with the `acs_user`. */
|
|
8340
8345
|
warnings: Array<{
|
|
8341
8346
|
created_at: string;
|
|
@@ -8439,9 +8444,9 @@ export interface Routes {
|
|
|
8439
8444
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
8440
8445
|
user_identity_phone_number?: (string | null) | undefined;
|
|
8441
8446
|
/** */
|
|
8442
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
8447
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
8443
8448
|
/** */
|
|
8444
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
8449
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
8445
8450
|
/** Warnings associated with the `acs_user`. */
|
|
8446
8451
|
warnings: Array<{
|
|
8447
8452
|
created_at: string;
|
|
@@ -8714,9 +8719,9 @@ export interface Routes {
|
|
|
8714
8719
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
8715
8720
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
8716
8721
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
8717
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
8722
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
8718
8723
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
8719
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
8724
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
8720
8725
|
/** Visionline-specific metadata for the credential. */
|
|
8721
8726
|
visionline_metadata?: {
|
|
8722
8727
|
card_function_type: 'guest' | 'staff';
|
|
@@ -8807,9 +8812,9 @@ export interface Routes {
|
|
|
8807
8812
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
8808
8813
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
8809
8814
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
8810
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
8815
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
8811
8816
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
8812
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
8817
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
8813
8818
|
/** Visionline-specific metadata for the credential. */
|
|
8814
8819
|
visionline_metadata?: {
|
|
8815
8820
|
card_function_type: 'guest' | 'staff';
|
|
@@ -8937,9 +8942,9 @@ export interface Routes {
|
|
|
8937
8942
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
8938
8943
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
8939
8944
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
8940
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
8945
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
8941
8946
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
8942
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
8947
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
8943
8948
|
/** Visionline-specific metadata for the credential. */
|
|
8944
8949
|
visionline_metadata?: {
|
|
8945
8950
|
card_function_type: 'guest' | 'staff';
|
|
@@ -9030,9 +9035,9 @@ export interface Routes {
|
|
|
9030
9035
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
9031
9036
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
9032
9037
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
9033
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
9038
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
9034
9039
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
9035
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
9040
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
9036
9041
|
/** Visionline-specific metadata for the credential. */
|
|
9037
9042
|
visionline_metadata?: {
|
|
9038
9043
|
card_function_type: 'guest' | 'staff';
|
|
@@ -9518,9 +9523,9 @@ export interface Routes {
|
|
|
9518
9523
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
9519
9524
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
9520
9525
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
9521
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
9526
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
9522
9527
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
9523
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
9528
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
9524
9529
|
/** Visionline-specific metadata for the credential. */
|
|
9525
9530
|
visionline_metadata?: {
|
|
9526
9531
|
card_function_type: 'guest' | 'staff';
|
|
@@ -9611,9 +9616,9 @@ export interface Routes {
|
|
|
9611
9616
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
9612
9617
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
9613
9618
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
9614
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
9619
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
9615
9620
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
9616
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
9621
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
9617
9622
|
/** Visionline-specific metadata for the credential. */
|
|
9618
9623
|
visionline_metadata?: {
|
|
9619
9624
|
card_function_type: 'guest' | 'staff';
|
|
@@ -9741,9 +9746,9 @@ export interface Routes {
|
|
|
9741
9746
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
9742
9747
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
9743
9748
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
9744
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
9749
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
9745
9750
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
9746
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
9751
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
9747
9752
|
/** Visionline-specific metadata for the credential. */
|
|
9748
9753
|
visionline_metadata?: {
|
|
9749
9754
|
card_function_type: 'guest' | 'staff';
|
|
@@ -9834,9 +9839,9 @@ export interface Routes {
|
|
|
9834
9839
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
9835
9840
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
9836
9841
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
9837
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
9842
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
9838
9843
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
9839
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
9844
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
9840
9845
|
/** Visionline-specific metadata for the credential. */
|
|
9841
9846
|
visionline_metadata?: {
|
|
9842
9847
|
card_function_type: 'guest' | 'staff';
|
|
@@ -16590,9 +16595,9 @@ export interface Routes {
|
|
|
16590
16595
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
16591
16596
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
16592
16597
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
16593
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
16598
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
16594
16599
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
16595
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
16600
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
16596
16601
|
/** Visionline-specific metadata for the credential. */
|
|
16597
16602
|
visionline_metadata?: {
|
|
16598
16603
|
card_function_type: 'guest' | 'staff';
|
|
@@ -16683,9 +16688,9 @@ export interface Routes {
|
|
|
16683
16688
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
16684
16689
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
16685
16690
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
16686
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
16691
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
16687
16692
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
16688
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
16693
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
16689
16694
|
/** Visionline-specific metadata for the credential. */
|
|
16690
16695
|
visionline_metadata?: {
|
|
16691
16696
|
card_function_type: 'guest' | 'staff';
|
|
@@ -16813,9 +16818,9 @@ export interface Routes {
|
|
|
16813
16818
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
16814
16819
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
16815
16820
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
16816
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
16821
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
16817
16822
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
16818
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
16823
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
16819
16824
|
/** Visionline-specific metadata for the credential. */
|
|
16820
16825
|
visionline_metadata?: {
|
|
16821
16826
|
card_function_type: 'guest' | 'staff';
|
|
@@ -16906,9 +16911,9 @@ export interface Routes {
|
|
|
16906
16911
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
16907
16912
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
16908
16913
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
16909
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
16914
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
16910
16915
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
16911
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
16916
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
16912
16917
|
/** Visionline-specific metadata for the credential. */
|
|
16913
16918
|
visionline_metadata?: {
|
|
16914
16919
|
card_function_type: 'guest' | 'staff';
|
|
@@ -17395,9 +17400,9 @@ export interface Routes {
|
|
|
17395
17400
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
17396
17401
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
17397
17402
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
17398
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
17403
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
17399
17404
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
17400
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
17405
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
17401
17406
|
/** Visionline-specific metadata for the credential. */
|
|
17402
17407
|
visionline_metadata?: {
|
|
17403
17408
|
card_function_type: 'guest' | 'staff';
|
|
@@ -17488,9 +17493,9 @@ export interface Routes {
|
|
|
17488
17493
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
17489
17494
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
17490
17495
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
17491
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
17496
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
17492
17497
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
17493
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
17498
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
17494
17499
|
/** Visionline-specific metadata for the credential. */
|
|
17495
17500
|
visionline_metadata?: {
|
|
17496
17501
|
card_function_type: 'guest' | 'staff';
|
|
@@ -17618,9 +17623,9 @@ export interface Routes {
|
|
|
17618
17623
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
17619
17624
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
17620
17625
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
17621
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
17626
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
17622
17627
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
17623
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
17628
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
17624
17629
|
/** Visionline-specific metadata for the credential. */
|
|
17625
17630
|
visionline_metadata?: {
|
|
17626
17631
|
card_function_type: 'guest' | 'staff';
|
|
@@ -17711,9 +17716,9 @@ export interface Routes {
|
|
|
17711
17716
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
17712
17717
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
17713
17718
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
17714
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
17719
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
17715
17720
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
17716
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
17721
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
17717
17722
|
/** Visionline-specific metadata for the credential. */
|
|
17718
17723
|
visionline_metadata?: {
|
|
17719
17724
|
card_function_type: 'guest' | 'staff';
|
|
@@ -19310,9 +19315,9 @@ export interface Routes {
|
|
|
19310
19315
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
19311
19316
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
19312
19317
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
19313
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
19318
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
19314
19319
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
19315
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
19320
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
19316
19321
|
/** Visionline-specific metadata for the credential. */
|
|
19317
19322
|
visionline_metadata?: {
|
|
19318
19323
|
card_function_type: 'guest' | 'staff';
|
|
@@ -19403,9 +19408,9 @@ export interface Routes {
|
|
|
19403
19408
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
19404
19409
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
19405
19410
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
19406
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
19411
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
19407
19412
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
19408
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
19413
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
19409
19414
|
/** Visionline-specific metadata for the credential. */
|
|
19410
19415
|
visionline_metadata?: {
|
|
19411
19416
|
card_function_type: 'guest' | 'staff';
|
|
@@ -19533,9 +19538,9 @@ export interface Routes {
|
|
|
19533
19538
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
19534
19539
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
19535
19540
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
19536
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
19541
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
19537
19542
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
19538
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
19543
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
19539
19544
|
/** Visionline-specific metadata for the credential. */
|
|
19540
19545
|
visionline_metadata?: {
|
|
19541
19546
|
card_function_type: 'guest' | 'staff';
|
|
@@ -19626,9 +19631,9 @@ export interface Routes {
|
|
|
19626
19631
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
19627
19632
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
19628
19633
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
19629
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
19634
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
19630
19635
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
19631
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
19636
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
19632
19637
|
/** Visionline-specific metadata for the credential. */
|
|
19633
19638
|
visionline_metadata?: {
|
|
19634
19639
|
card_function_type: 'guest' | 'staff';
|
|
@@ -20125,9 +20130,9 @@ export interface Routes {
|
|
|
20125
20130
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
20126
20131
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
20127
20132
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
20128
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
20133
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
20129
20134
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
20130
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
20135
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
20131
20136
|
/** Visionline-specific metadata for the credential. */
|
|
20132
20137
|
visionline_metadata?: {
|
|
20133
20138
|
card_function_type: 'guest' | 'staff';
|
|
@@ -20218,9 +20223,9 @@ export interface Routes {
|
|
|
20218
20223
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
20219
20224
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
20220
20225
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
20221
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
20226
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
20222
20227
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
20223
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
20228
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
20224
20229
|
/** Visionline-specific metadata for the credential. */
|
|
20225
20230
|
visionline_metadata?: {
|
|
20226
20231
|
card_function_type: 'guest' | 'staff';
|
|
@@ -20348,9 +20353,9 @@ export interface Routes {
|
|
|
20348
20353
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
20349
20354
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
20350
20355
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
20351
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
20356
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
20352
20357
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
20353
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
20358
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
20354
20359
|
/** Visionline-specific metadata for the credential. */
|
|
20355
20360
|
visionline_metadata?: {
|
|
20356
20361
|
card_function_type: 'guest' | 'staff';
|
|
@@ -20441,9 +20446,9 @@ export interface Routes {
|
|
|
20441
20446
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
20442
20447
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
20443
20448
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
20444
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
20449
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
20445
20450
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
20446
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
20451
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
20447
20452
|
/** Visionline-specific metadata for the credential. */
|
|
20448
20453
|
visionline_metadata?: {
|
|
20449
20454
|
card_function_type: 'guest' | 'staff';
|
|
@@ -20979,9 +20984,9 @@ export interface Routes {
|
|
|
20979
20984
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
20980
20985
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
20981
20986
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
20982
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
20987
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
20983
20988
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
20984
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
20989
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
20985
20990
|
/** Visionline-specific metadata for the credential. */
|
|
20986
20991
|
visionline_metadata?: {
|
|
20987
20992
|
card_function_type: 'guest' | 'staff';
|
|
@@ -21072,9 +21077,9 @@ export interface Routes {
|
|
|
21072
21077
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
21073
21078
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
21074
21079
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
21075
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
21080
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
21076
21081
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
21077
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
21082
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
21078
21083
|
/** Visionline-specific metadata for the credential. */
|
|
21079
21084
|
visionline_metadata?: {
|
|
21080
21085
|
card_function_type: 'guest' | 'staff';
|
|
@@ -21202,9 +21207,9 @@ export interface Routes {
|
|
|
21202
21207
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
21203
21208
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
21204
21209
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
21205
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
21210
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
21206
21211
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
21207
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
21212
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
21208
21213
|
/** Visionline-specific metadata for the credential. */
|
|
21209
21214
|
visionline_metadata?: {
|
|
21210
21215
|
card_function_type: 'guest' | 'staff';
|
|
@@ -21295,9 +21300,9 @@ export interface Routes {
|
|
|
21295
21300
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
21296
21301
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
21297
21302
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
21298
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
21303
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
21299
21304
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
21300
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
21305
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
21301
21306
|
/** Visionline-specific metadata for the credential. */
|
|
21302
21307
|
visionline_metadata?: {
|
|
21303
21308
|
card_function_type: 'guest' | 'staff';
|
|
@@ -21968,9 +21973,9 @@ export interface Routes {
|
|
|
21968
21973
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
21969
21974
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
21970
21975
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
21971
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
21976
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
21972
21977
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
21973
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
21978
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
21974
21979
|
/** Visionline-specific metadata for the credential. */
|
|
21975
21980
|
visionline_metadata?: {
|
|
21976
21981
|
card_function_type: 'guest' | 'staff';
|
|
@@ -22061,9 +22066,9 @@ export interface Routes {
|
|
|
22061
22066
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
22062
22067
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
22063
22068
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
22064
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
22069
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
22065
22070
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
22066
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
22071
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
22067
22072
|
/** Visionline-specific metadata for the credential. */
|
|
22068
22073
|
visionline_metadata?: {
|
|
22069
22074
|
card_function_type: 'guest' | 'staff';
|
|
@@ -22191,9 +22196,9 @@ export interface Routes {
|
|
|
22191
22196
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
22192
22197
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
22193
22198
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
22194
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
22199
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
22195
22200
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
22196
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
22201
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
22197
22202
|
/** Visionline-specific metadata for the credential. */
|
|
22198
22203
|
visionline_metadata?: {
|
|
22199
22204
|
card_function_type: 'guest' | 'staff';
|
|
@@ -22284,9 +22289,9 @@ export interface Routes {
|
|
|
22284
22289
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
22285
22290
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
22286
22291
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
22287
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
22292
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
22288
22293
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
22289
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
22294
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
22290
22295
|
/** Visionline-specific metadata for the credential. */
|
|
22291
22296
|
visionline_metadata?: {
|
|
22292
22297
|
card_function_type: 'guest' | 'staff';
|
|
@@ -22779,9 +22784,9 @@ export interface Routes {
|
|
|
22779
22784
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
22780
22785
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
22781
22786
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
22782
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
22787
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
22783
22788
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
22784
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
22789
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
22785
22790
|
/** Visionline-specific metadata for the credential. */
|
|
22786
22791
|
visionline_metadata?: {
|
|
22787
22792
|
card_function_type: 'guest' | 'staff';
|
|
@@ -22872,9 +22877,9 @@ export interface Routes {
|
|
|
22872
22877
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
22873
22878
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
22874
22879
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
22875
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
22880
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
22876
22881
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
22877
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
22882
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
22878
22883
|
/** Visionline-specific metadata for the credential. */
|
|
22879
22884
|
visionline_metadata?: {
|
|
22880
22885
|
card_function_type: 'guest' | 'staff';
|
|
@@ -23002,9 +23007,9 @@ export interface Routes {
|
|
|
23002
23007
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
23003
23008
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
23004
23009
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
23005
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
23010
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
23006
23011
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
23007
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
23012
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
23008
23013
|
/** Visionline-specific metadata for the credential. */
|
|
23009
23014
|
visionline_metadata?: {
|
|
23010
23015
|
card_function_type: 'guest' | 'staff';
|
|
@@ -23095,9 +23100,9 @@ export interface Routes {
|
|
|
23095
23100
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
23096
23101
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
23097
23102
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
23098
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
23103
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
23099
23104
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
23100
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
23105
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
23101
23106
|
/** Visionline-specific metadata for the credential. */
|
|
23102
23107
|
visionline_metadata?: {
|
|
23103
23108
|
card_function_type: 'guest' | 'staff';
|
|
@@ -24167,9 +24172,9 @@ export interface Routes {
|
|
|
24167
24172
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
24168
24173
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
24169
24174
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
24170
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
24175
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
24171
24176
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
24172
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
24177
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
24173
24178
|
/** Visionline-specific metadata for the credential. */
|
|
24174
24179
|
visionline_metadata?: {
|
|
24175
24180
|
card_function_type: 'guest' | 'staff';
|
|
@@ -24260,9 +24265,9 @@ export interface Routes {
|
|
|
24260
24265
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
24261
24266
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
24262
24267
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
24263
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
24268
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
24264
24269
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
24265
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
24270
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
24266
24271
|
/** Visionline-specific metadata for the credential. */
|
|
24267
24272
|
visionline_metadata?: {
|
|
24268
24273
|
card_function_type: 'guest' | 'staff';
|
|
@@ -24390,9 +24395,9 @@ export interface Routes {
|
|
|
24390
24395
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
24391
24396
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
24392
24397
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
24393
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
24398
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
24394
24399
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
24395
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
24400
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
24396
24401
|
/** Visionline-specific metadata for the credential. */
|
|
24397
24402
|
visionline_metadata?: {
|
|
24398
24403
|
card_function_type: 'guest' | 'staff';
|
|
@@ -24483,9 +24488,9 @@ export interface Routes {
|
|
|
24483
24488
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
24484
24489
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
24485
24490
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
24486
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
24491
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
24487
24492
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
24488
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
24493
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
24489
24494
|
/** Visionline-specific metadata for the credential. */
|
|
24490
24495
|
visionline_metadata?: {
|
|
24491
24496
|
card_function_type: 'guest' | 'staff';
|
|
@@ -24982,9 +24987,9 @@ export interface Routes {
|
|
|
24982
24987
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
24983
24988
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
24984
24989
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
24985
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
24990
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
24986
24991
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
24987
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
24992
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
24988
24993
|
/** Visionline-specific metadata for the credential. */
|
|
24989
24994
|
visionline_metadata?: {
|
|
24990
24995
|
card_function_type: 'guest' | 'staff';
|
|
@@ -25075,9 +25080,9 @@ export interface Routes {
|
|
|
25075
25080
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
25076
25081
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
25077
25082
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
25078
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
25083
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
25079
25084
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
25080
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
25085
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
25081
25086
|
/** Visionline-specific metadata for the credential. */
|
|
25082
25087
|
visionline_metadata?: {
|
|
25083
25088
|
card_function_type: 'guest' | 'staff';
|
|
@@ -25205,9 +25210,9 @@ export interface Routes {
|
|
|
25205
25210
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
25206
25211
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
25207
25212
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
25208
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
25213
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
25209
25214
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
25210
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
25215
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
25211
25216
|
/** Visionline-specific metadata for the credential. */
|
|
25212
25217
|
visionline_metadata?: {
|
|
25213
25218
|
card_function_type: 'guest' | 'staff';
|
|
@@ -25298,9 +25303,9 @@ export interface Routes {
|
|
|
25298
25303
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
25299
25304
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
25300
25305
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
25301
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
25306
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
25302
25307
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
25303
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
25308
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
25304
25309
|
/** Visionline-specific metadata for the credential. */
|
|
25305
25310
|
visionline_metadata?: {
|
|
25306
25311
|
card_function_type: 'guest' | 'staff';
|
|
@@ -26860,9 +26865,9 @@ export interface Routes {
|
|
|
26860
26865
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
26861
26866
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
26862
26867
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
26863
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
26868
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
26864
26869
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
26865
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
26870
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
26866
26871
|
/** Visionline-specific metadata for the credential. */
|
|
26867
26872
|
visionline_metadata?: {
|
|
26868
26873
|
card_function_type: 'guest' | 'staff';
|
|
@@ -26953,9 +26958,9 @@ export interface Routes {
|
|
|
26953
26958
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
26954
26959
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
26955
26960
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
26956
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
26961
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
26957
26962
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
26958
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
26963
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
26959
26964
|
/** Visionline-specific metadata for the credential. */
|
|
26960
26965
|
visionline_metadata?: {
|
|
26961
26966
|
card_function_type: 'guest' | 'staff';
|
|
@@ -27083,9 +27088,9 @@ export interface Routes {
|
|
|
27083
27088
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
27084
27089
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
27085
27090
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
27086
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
27091
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
27087
27092
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
27088
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
27093
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
27089
27094
|
/** Visionline-specific metadata for the credential. */
|
|
27090
27095
|
visionline_metadata?: {
|
|
27091
27096
|
card_function_type: 'guest' | 'staff';
|
|
@@ -27176,9 +27181,9 @@ export interface Routes {
|
|
|
27176
27181
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
27177
27182
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
27178
27183
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
27179
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
27184
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
27180
27185
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
27181
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
27186
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
27182
27187
|
/** Visionline-specific metadata for the credential. */
|
|
27183
27188
|
visionline_metadata?: {
|
|
27184
27189
|
card_function_type: 'guest' | 'staff';
|
|
@@ -27842,9 +27847,9 @@ export interface Routes {
|
|
|
27842
27847
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
27843
27848
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
27844
27849
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
27845
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
27850
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
27846
27851
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
27847
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
27852
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
27848
27853
|
/** Visionline-specific metadata for the credential. */
|
|
27849
27854
|
visionline_metadata?: {
|
|
27850
27855
|
card_function_type: 'guest' | 'staff';
|
|
@@ -27935,9 +27940,9 @@ export interface Routes {
|
|
|
27935
27940
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
27936
27941
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
27937
27942
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
27938
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
27943
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
27939
27944
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
27940
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
27945
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
27941
27946
|
/** Visionline-specific metadata for the credential. */
|
|
27942
27947
|
visionline_metadata?: {
|
|
27943
27948
|
card_function_type: 'guest' | 'staff';
|
|
@@ -28065,9 +28070,9 @@ export interface Routes {
|
|
|
28065
28070
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
28066
28071
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
28067
28072
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
28068
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
28073
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
28069
28074
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
28070
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
28075
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
28071
28076
|
/** Visionline-specific metadata for the credential. */
|
|
28072
28077
|
visionline_metadata?: {
|
|
28073
28078
|
card_function_type: 'guest' | 'staff';
|
|
@@ -28158,9 +28163,9 @@ export interface Routes {
|
|
|
28158
28163
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
28159
28164
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
28160
28165
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
28161
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
28166
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
28162
28167
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
28163
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
28168
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
28164
28169
|
/** Visionline-specific metadata for the credential. */
|
|
28165
28170
|
visionline_metadata?: {
|
|
28166
28171
|
card_function_type: 'guest' | 'staff';
|
|
@@ -28676,9 +28681,9 @@ export interface Routes {
|
|
|
28676
28681
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
28677
28682
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
28678
28683
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
28679
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
28684
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
28680
28685
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
28681
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
28686
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
28682
28687
|
/** Visionline-specific metadata for the credential. */
|
|
28683
28688
|
visionline_metadata?: {
|
|
28684
28689
|
card_function_type: 'guest' | 'staff';
|
|
@@ -28769,9 +28774,9 @@ export interface Routes {
|
|
|
28769
28774
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
28770
28775
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
28771
28776
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
28772
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
28777
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
28773
28778
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
28774
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
28779
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
28775
28780
|
/** Visionline-specific metadata for the credential. */
|
|
28776
28781
|
visionline_metadata?: {
|
|
28777
28782
|
card_function_type: 'guest' | 'staff';
|
|
@@ -28899,9 +28904,9 @@ export interface Routes {
|
|
|
28899
28904
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
28900
28905
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
28901
28906
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
28902
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
28907
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
28903
28908
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
28904
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
28909
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
28905
28910
|
/** Visionline-specific metadata for the credential. */
|
|
28906
28911
|
visionline_metadata?: {
|
|
28907
28912
|
card_function_type: 'guest' | 'staff';
|
|
@@ -28992,9 +28997,9 @@ export interface Routes {
|
|
|
28992
28997
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
28993
28998
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
28994
28999
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
28995
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
29000
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
28996
29001
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
28997
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
29002
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
28998
29003
|
/** Visionline-specific metadata for the credential. */
|
|
28999
29004
|
visionline_metadata?: {
|
|
29000
29005
|
card_function_type: 'guest' | 'staff';
|
|
@@ -30802,9 +30807,9 @@ export interface Routes {
|
|
|
30802
30807
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
30803
30808
|
user_identity_phone_number?: (string | null) | undefined;
|
|
30804
30809
|
/** */
|
|
30805
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
30810
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
30806
30811
|
/** */
|
|
30807
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
30812
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
30808
30813
|
/** Warnings associated with the `acs_user`. */
|
|
30809
30814
|
warnings: Array<{
|
|
30810
30815
|
created_at: string;
|
|
@@ -31226,9 +31231,9 @@ export interface Routes {
|
|
|
31226
31231
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
31227
31232
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
31228
31233
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
31229
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
31234
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
31230
31235
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
31231
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
31236
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
31232
31237
|
/** Visionline-specific metadata for the credential. */
|
|
31233
31238
|
visionline_metadata?: {
|
|
31234
31239
|
card_function_type: 'guest' | 'staff';
|
|
@@ -31319,9 +31324,9 @@ export interface Routes {
|
|
|
31319
31324
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
31320
31325
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
31321
31326
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
31322
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
31327
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
31323
31328
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
31324
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
31329
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
31325
31330
|
/** Visionline-specific metadata for the credential. */
|
|
31326
31331
|
visionline_metadata?: {
|
|
31327
31332
|
card_function_type: 'guest' | 'staff';
|
|
@@ -31449,9 +31454,9 @@ export interface Routes {
|
|
|
31449
31454
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
31450
31455
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
31451
31456
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
31452
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
31457
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
31453
31458
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
31454
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
31459
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
31455
31460
|
/** Visionline-specific metadata for the credential. */
|
|
31456
31461
|
visionline_metadata?: {
|
|
31457
31462
|
card_function_type: 'guest' | 'staff';
|
|
@@ -31542,9 +31547,9 @@ export interface Routes {
|
|
|
31542
31547
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
31543
31548
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
31544
31549
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
31545
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
31550
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
31546
31551
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
31547
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
31552
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
31548
31553
|
/** Visionline-specific metadata for the credential. */
|
|
31549
31554
|
visionline_metadata?: {
|
|
31550
31555
|
card_function_type: 'guest' | 'staff';
|