@seamapi/types 1.321.1 → 1.322.1
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 +62 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +475 -305
- 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/models/devices/capability-properties/index.d.ts +26 -5
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +26 -5
- package/lib/seam/connect/models/devices/device.d.ts +34 -7
- package/lib/seam/connect/models/devices/phone.d.ts +26 -5
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +26 -5
- package/lib/seam/connect/models/thermostats/thermostat-schedule.d.ts +18 -3
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js +4 -1
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +54 -0
- package/lib/seam/connect/openapi.js +48 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +271 -218
- 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/models/thermostats/thermostat-schedule.ts +6 -1
- package/src/lib/seam/connect/openapi.ts +49 -0
- package/src/lib/seam/connect/route-types.ts +341 -218
|
@@ -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';
|
|
@@ -11052,7 +11057,10 @@ export interface Routes {
|
|
|
11052
11057
|
/** Date and time at which the thermostat schedule was created. */
|
|
11053
11058
|
created_at: string;
|
|
11054
11059
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
11055
|
-
errors
|
|
11060
|
+
errors: Array<{
|
|
11061
|
+
error_code: string;
|
|
11062
|
+
message: string;
|
|
11063
|
+
}>;
|
|
11056
11064
|
} | null) | undefined;
|
|
11057
11065
|
min_cooling_set_point_celsius?: number | undefined;
|
|
11058
11066
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -11606,7 +11614,10 @@ export interface Routes {
|
|
|
11606
11614
|
/** Date and time at which the thermostat schedule was created. */
|
|
11607
11615
|
created_at: string;
|
|
11608
11616
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
11609
|
-
errors
|
|
11617
|
+
errors: Array<{
|
|
11618
|
+
error_code: string;
|
|
11619
|
+
message: string;
|
|
11620
|
+
}>;
|
|
11610
11621
|
} | null) | undefined;
|
|
11611
11622
|
min_cooling_set_point_celsius?: number | undefined;
|
|
11612
11623
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -14759,7 +14770,10 @@ export interface Routes {
|
|
|
14759
14770
|
/** Date and time at which the thermostat schedule was created. */
|
|
14760
14771
|
created_at: string;
|
|
14761
14772
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
14762
|
-
errors
|
|
14773
|
+
errors: Array<{
|
|
14774
|
+
error_code: string;
|
|
14775
|
+
message: string;
|
|
14776
|
+
}>;
|
|
14763
14777
|
} | null) | undefined;
|
|
14764
14778
|
min_cooling_set_point_celsius?: number | undefined;
|
|
14765
14779
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -15276,7 +15290,10 @@ export interface Routes {
|
|
|
15276
15290
|
/** Date and time at which the thermostat schedule was created. */
|
|
15277
15291
|
created_at: string;
|
|
15278
15292
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
15279
|
-
errors
|
|
15293
|
+
errors: Array<{
|
|
15294
|
+
error_code: string;
|
|
15295
|
+
message: string;
|
|
15296
|
+
}>;
|
|
15280
15297
|
} | null) | undefined;
|
|
15281
15298
|
min_cooling_set_point_celsius?: number | undefined;
|
|
15282
15299
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -15830,7 +15847,10 @@ export interface Routes {
|
|
|
15830
15847
|
/** Date and time at which the thermostat schedule was created. */
|
|
15831
15848
|
created_at: string;
|
|
15832
15849
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
15833
|
-
errors
|
|
15850
|
+
errors: Array<{
|
|
15851
|
+
error_code: string;
|
|
15852
|
+
message: string;
|
|
15853
|
+
}>;
|
|
15834
15854
|
} | null) | undefined;
|
|
15835
15855
|
min_cooling_set_point_celsius?: number | undefined;
|
|
15836
15856
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -16347,7 +16367,10 @@ export interface Routes {
|
|
|
16347
16367
|
/** Date and time at which the thermostat schedule was created. */
|
|
16348
16368
|
created_at: string;
|
|
16349
16369
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
16350
|
-
errors
|
|
16370
|
+
errors: Array<{
|
|
16371
|
+
error_code: string;
|
|
16372
|
+
message: string;
|
|
16373
|
+
}>;
|
|
16351
16374
|
} | null) | undefined;
|
|
16352
16375
|
min_cooling_set_point_celsius?: number | undefined;
|
|
16353
16376
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -16590,9 +16613,9 @@ export interface Routes {
|
|
|
16590
16613
|
/** 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
16614
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
16592
16615
|
/** 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;
|
|
16616
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
16594
16617
|
/** 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;
|
|
16618
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
16596
16619
|
/** Visionline-specific metadata for the credential. */
|
|
16597
16620
|
visionline_metadata?: {
|
|
16598
16621
|
card_function_type: 'guest' | 'staff';
|
|
@@ -16683,9 +16706,9 @@ export interface Routes {
|
|
|
16683
16706
|
/** 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
16707
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
16685
16708
|
/** 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;
|
|
16709
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
16687
16710
|
/** 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;
|
|
16711
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
16689
16712
|
/** Visionline-specific metadata for the credential. */
|
|
16690
16713
|
visionline_metadata?: {
|
|
16691
16714
|
card_function_type: 'guest' | 'staff';
|
|
@@ -16813,9 +16836,9 @@ export interface Routes {
|
|
|
16813
16836
|
/** 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
16837
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
16815
16838
|
/** 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;
|
|
16839
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
16817
16840
|
/** 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;
|
|
16841
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
16819
16842
|
/** Visionline-specific metadata for the credential. */
|
|
16820
16843
|
visionline_metadata?: {
|
|
16821
16844
|
card_function_type: 'guest' | 'staff';
|
|
@@ -16906,9 +16929,9 @@ export interface Routes {
|
|
|
16906
16929
|
/** 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
16930
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
16908
16931
|
/** 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;
|
|
16932
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
16910
16933
|
/** 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;
|
|
16934
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
16912
16935
|
/** Visionline-specific metadata for the credential. */
|
|
16913
16936
|
visionline_metadata?: {
|
|
16914
16937
|
card_function_type: 'guest' | 'staff';
|
|
@@ -17395,9 +17418,9 @@ export interface Routes {
|
|
|
17395
17418
|
/** 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
17419
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
17397
17420
|
/** 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;
|
|
17421
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
17399
17422
|
/** 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;
|
|
17423
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
17401
17424
|
/** Visionline-specific metadata for the credential. */
|
|
17402
17425
|
visionline_metadata?: {
|
|
17403
17426
|
card_function_type: 'guest' | 'staff';
|
|
@@ -17488,9 +17511,9 @@ export interface Routes {
|
|
|
17488
17511
|
/** 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
17512
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
17490
17513
|
/** 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;
|
|
17514
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
17492
17515
|
/** 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;
|
|
17516
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
17494
17517
|
/** Visionline-specific metadata for the credential. */
|
|
17495
17518
|
visionline_metadata?: {
|
|
17496
17519
|
card_function_type: 'guest' | 'staff';
|
|
@@ -17618,9 +17641,9 @@ export interface Routes {
|
|
|
17618
17641
|
/** 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
17642
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
17620
17643
|
/** 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;
|
|
17644
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
17622
17645
|
/** 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;
|
|
17646
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
17624
17647
|
/** Visionline-specific metadata for the credential. */
|
|
17625
17648
|
visionline_metadata?: {
|
|
17626
17649
|
card_function_type: 'guest' | 'staff';
|
|
@@ -17711,9 +17734,9 @@ export interface Routes {
|
|
|
17711
17734
|
/** 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
17735
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
17713
17736
|
/** 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;
|
|
17737
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
17715
17738
|
/** 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;
|
|
17739
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
17717
17740
|
/** Visionline-specific metadata for the credential. */
|
|
17718
17741
|
visionline_metadata?: {
|
|
17719
17742
|
card_function_type: 'guest' | 'staff';
|
|
@@ -18545,7 +18568,10 @@ export interface Routes {
|
|
|
18545
18568
|
/** Date and time at which the thermostat schedule was created. */
|
|
18546
18569
|
created_at: string;
|
|
18547
18570
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
18548
|
-
errors
|
|
18571
|
+
errors: Array<{
|
|
18572
|
+
error_code: string;
|
|
18573
|
+
message: string;
|
|
18574
|
+
}>;
|
|
18549
18575
|
} | null) | undefined;
|
|
18550
18576
|
min_cooling_set_point_celsius?: number | undefined;
|
|
18551
18577
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -19062,7 +19088,10 @@ export interface Routes {
|
|
|
19062
19088
|
/** Date and time at which the thermostat schedule was created. */
|
|
19063
19089
|
created_at: string;
|
|
19064
19090
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
19065
|
-
errors
|
|
19091
|
+
errors: Array<{
|
|
19092
|
+
error_code: string;
|
|
19093
|
+
message: string;
|
|
19094
|
+
}>;
|
|
19066
19095
|
} | null) | undefined;
|
|
19067
19096
|
min_cooling_set_point_celsius?: number | undefined;
|
|
19068
19097
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -19310,9 +19339,9 @@ export interface Routes {
|
|
|
19310
19339
|
/** 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
19340
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
19312
19341
|
/** 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;
|
|
19342
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
19314
19343
|
/** 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;
|
|
19344
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
19316
19345
|
/** Visionline-specific metadata for the credential. */
|
|
19317
19346
|
visionline_metadata?: {
|
|
19318
19347
|
card_function_type: 'guest' | 'staff';
|
|
@@ -19403,9 +19432,9 @@ export interface Routes {
|
|
|
19403
19432
|
/** 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
19433
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
19405
19434
|
/** 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;
|
|
19435
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
19407
19436
|
/** 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;
|
|
19437
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
19409
19438
|
/** Visionline-specific metadata for the credential. */
|
|
19410
19439
|
visionline_metadata?: {
|
|
19411
19440
|
card_function_type: 'guest' | 'staff';
|
|
@@ -19533,9 +19562,9 @@ export interface Routes {
|
|
|
19533
19562
|
/** 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
19563
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
19535
19564
|
/** 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;
|
|
19565
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
19537
19566
|
/** 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;
|
|
19567
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
19539
19568
|
/** Visionline-specific metadata for the credential. */
|
|
19540
19569
|
visionline_metadata?: {
|
|
19541
19570
|
card_function_type: 'guest' | 'staff';
|
|
@@ -19626,9 +19655,9 @@ export interface Routes {
|
|
|
19626
19655
|
/** 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
19656
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
19628
19657
|
/** 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;
|
|
19658
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
19630
19659
|
/** 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;
|
|
19660
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
19632
19661
|
/** Visionline-specific metadata for the credential. */
|
|
19633
19662
|
visionline_metadata?: {
|
|
19634
19663
|
card_function_type: 'guest' | 'staff';
|
|
@@ -20125,9 +20154,9 @@ export interface Routes {
|
|
|
20125
20154
|
/** 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
20155
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
20127
20156
|
/** 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;
|
|
20157
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
20129
20158
|
/** 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;
|
|
20159
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
20131
20160
|
/** Visionline-specific metadata for the credential. */
|
|
20132
20161
|
visionline_metadata?: {
|
|
20133
20162
|
card_function_type: 'guest' | 'staff';
|
|
@@ -20218,9 +20247,9 @@ export interface Routes {
|
|
|
20218
20247
|
/** 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
20248
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
20220
20249
|
/** 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;
|
|
20250
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
20222
20251
|
/** 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;
|
|
20252
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
20224
20253
|
/** Visionline-specific metadata for the credential. */
|
|
20225
20254
|
visionline_metadata?: {
|
|
20226
20255
|
card_function_type: 'guest' | 'staff';
|
|
@@ -20348,9 +20377,9 @@ export interface Routes {
|
|
|
20348
20377
|
/** 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
20378
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
20350
20379
|
/** 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;
|
|
20380
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
20352
20381
|
/** 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;
|
|
20382
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
20354
20383
|
/** Visionline-specific metadata for the credential. */
|
|
20355
20384
|
visionline_metadata?: {
|
|
20356
20385
|
card_function_type: 'guest' | 'staff';
|
|
@@ -20441,9 +20470,9 @@ export interface Routes {
|
|
|
20441
20470
|
/** 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
20471
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
20443
20472
|
/** 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;
|
|
20473
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
20445
20474
|
/** 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;
|
|
20475
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
20447
20476
|
/** Visionline-specific metadata for the credential. */
|
|
20448
20477
|
visionline_metadata?: {
|
|
20449
20478
|
card_function_type: 'guest' | 'staff';
|
|
@@ -20979,9 +21008,9 @@ export interface Routes {
|
|
|
20979
21008
|
/** 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
21009
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
20981
21010
|
/** 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;
|
|
21011
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
20983
21012
|
/** 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;
|
|
21013
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
20985
21014
|
/** Visionline-specific metadata for the credential. */
|
|
20986
21015
|
visionline_metadata?: {
|
|
20987
21016
|
card_function_type: 'guest' | 'staff';
|
|
@@ -21072,9 +21101,9 @@ export interface Routes {
|
|
|
21072
21101
|
/** 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
21102
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
21074
21103
|
/** 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;
|
|
21104
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
21076
21105
|
/** 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;
|
|
21106
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
21078
21107
|
/** Visionline-specific metadata for the credential. */
|
|
21079
21108
|
visionline_metadata?: {
|
|
21080
21109
|
card_function_type: 'guest' | 'staff';
|
|
@@ -21202,9 +21231,9 @@ export interface Routes {
|
|
|
21202
21231
|
/** 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
21232
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
21204
21233
|
/** 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;
|
|
21234
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
21206
21235
|
/** 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;
|
|
21236
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
21208
21237
|
/** Visionline-specific metadata for the credential. */
|
|
21209
21238
|
visionline_metadata?: {
|
|
21210
21239
|
card_function_type: 'guest' | 'staff';
|
|
@@ -21295,9 +21324,9 @@ export interface Routes {
|
|
|
21295
21324
|
/** 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
21325
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
21297
21326
|
/** 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;
|
|
21327
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
21299
21328
|
/** 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;
|
|
21329
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
21301
21330
|
/** Visionline-specific metadata for the credential. */
|
|
21302
21331
|
visionline_metadata?: {
|
|
21303
21332
|
card_function_type: 'guest' | 'staff';
|
|
@@ -21968,9 +21997,9 @@ export interface Routes {
|
|
|
21968
21997
|
/** 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
21998
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
21970
21999
|
/** 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;
|
|
22000
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
21972
22001
|
/** 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;
|
|
22002
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
21974
22003
|
/** Visionline-specific metadata for the credential. */
|
|
21975
22004
|
visionline_metadata?: {
|
|
21976
22005
|
card_function_type: 'guest' | 'staff';
|
|
@@ -22061,9 +22090,9 @@ export interface Routes {
|
|
|
22061
22090
|
/** 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
22091
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
22063
22092
|
/** 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;
|
|
22093
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
22065
22094
|
/** 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;
|
|
22095
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
22067
22096
|
/** Visionline-specific metadata for the credential. */
|
|
22068
22097
|
visionline_metadata?: {
|
|
22069
22098
|
card_function_type: 'guest' | 'staff';
|
|
@@ -22191,9 +22220,9 @@ export interface Routes {
|
|
|
22191
22220
|
/** 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
22221
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
22193
22222
|
/** 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;
|
|
22223
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
22195
22224
|
/** 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;
|
|
22225
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
22197
22226
|
/** Visionline-specific metadata for the credential. */
|
|
22198
22227
|
visionline_metadata?: {
|
|
22199
22228
|
card_function_type: 'guest' | 'staff';
|
|
@@ -22284,9 +22313,9 @@ export interface Routes {
|
|
|
22284
22313
|
/** 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
22314
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
22286
22315
|
/** 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;
|
|
22316
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
22288
22317
|
/** 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;
|
|
22318
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
22290
22319
|
/** Visionline-specific metadata for the credential. */
|
|
22291
22320
|
visionline_metadata?: {
|
|
22292
22321
|
card_function_type: 'guest' | 'staff';
|
|
@@ -22779,9 +22808,9 @@ export interface Routes {
|
|
|
22779
22808
|
/** 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
22809
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
22781
22810
|
/** 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;
|
|
22811
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
22783
22812
|
/** 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;
|
|
22813
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
22785
22814
|
/** Visionline-specific metadata for the credential. */
|
|
22786
22815
|
visionline_metadata?: {
|
|
22787
22816
|
card_function_type: 'guest' | 'staff';
|
|
@@ -22872,9 +22901,9 @@ export interface Routes {
|
|
|
22872
22901
|
/** 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
22902
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
22874
22903
|
/** 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;
|
|
22904
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
22876
22905
|
/** 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;
|
|
22906
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
22878
22907
|
/** Visionline-specific metadata for the credential. */
|
|
22879
22908
|
visionline_metadata?: {
|
|
22880
22909
|
card_function_type: 'guest' | 'staff';
|
|
@@ -23002,9 +23031,9 @@ export interface Routes {
|
|
|
23002
23031
|
/** 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
23032
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
23004
23033
|
/** 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;
|
|
23034
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
23006
23035
|
/** 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;
|
|
23036
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
23008
23037
|
/** Visionline-specific metadata for the credential. */
|
|
23009
23038
|
visionline_metadata?: {
|
|
23010
23039
|
card_function_type: 'guest' | 'staff';
|
|
@@ -23095,9 +23124,9 @@ export interface Routes {
|
|
|
23095
23124
|
/** 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
23125
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
23097
23126
|
/** 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;
|
|
23127
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
23099
23128
|
/** 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;
|
|
23129
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
23101
23130
|
/** Visionline-specific metadata for the credential. */
|
|
23102
23131
|
visionline_metadata?: {
|
|
23103
23132
|
card_function_type: 'guest' | 'staff';
|
|
@@ -23918,7 +23947,10 @@ export interface Routes {
|
|
|
23918
23947
|
/** Date and time at which the thermostat schedule was created. */
|
|
23919
23948
|
created_at: string;
|
|
23920
23949
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
23921
|
-
errors
|
|
23950
|
+
errors: Array<{
|
|
23951
|
+
error_code: string;
|
|
23952
|
+
message: string;
|
|
23953
|
+
}>;
|
|
23922
23954
|
} | null) | undefined;
|
|
23923
23955
|
min_cooling_set_point_celsius?: number | undefined;
|
|
23924
23956
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -24167,9 +24199,9 @@ export interface Routes {
|
|
|
24167
24199
|
/** 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
24200
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
24169
24201
|
/** 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;
|
|
24202
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
24171
24203
|
/** 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;
|
|
24204
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
24173
24205
|
/** Visionline-specific metadata for the credential. */
|
|
24174
24206
|
visionline_metadata?: {
|
|
24175
24207
|
card_function_type: 'guest' | 'staff';
|
|
@@ -24260,9 +24292,9 @@ export interface Routes {
|
|
|
24260
24292
|
/** 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
24293
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
24262
24294
|
/** 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;
|
|
24295
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
24264
24296
|
/** 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;
|
|
24297
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
24266
24298
|
/** Visionline-specific metadata for the credential. */
|
|
24267
24299
|
visionline_metadata?: {
|
|
24268
24300
|
card_function_type: 'guest' | 'staff';
|
|
@@ -24390,9 +24422,9 @@ export interface Routes {
|
|
|
24390
24422
|
/** 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
24423
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
24392
24424
|
/** 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;
|
|
24425
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
24394
24426
|
/** 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;
|
|
24427
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
24396
24428
|
/** Visionline-specific metadata for the credential. */
|
|
24397
24429
|
visionline_metadata?: {
|
|
24398
24430
|
card_function_type: 'guest' | 'staff';
|
|
@@ -24483,9 +24515,9 @@ export interface Routes {
|
|
|
24483
24515
|
/** 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
24516
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
24485
24517
|
/** 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;
|
|
24518
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
24487
24519
|
/** 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;
|
|
24520
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
24489
24521
|
/** Visionline-specific metadata for the credential. */
|
|
24490
24522
|
visionline_metadata?: {
|
|
24491
24523
|
card_function_type: 'guest' | 'staff';
|
|
@@ -24982,9 +25014,9 @@ export interface Routes {
|
|
|
24982
25014
|
/** 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
25015
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
24984
25016
|
/** 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;
|
|
25017
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
24986
25018
|
/** 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;
|
|
25019
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
24988
25020
|
/** Visionline-specific metadata for the credential. */
|
|
24989
25021
|
visionline_metadata?: {
|
|
24990
25022
|
card_function_type: 'guest' | 'staff';
|
|
@@ -25075,9 +25107,9 @@ export interface Routes {
|
|
|
25075
25107
|
/** 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
25108
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
25077
25109
|
/** 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;
|
|
25110
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
25079
25111
|
/** 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;
|
|
25112
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
25081
25113
|
/** Visionline-specific metadata for the credential. */
|
|
25082
25114
|
visionline_metadata?: {
|
|
25083
25115
|
card_function_type: 'guest' | 'staff';
|
|
@@ -25205,9 +25237,9 @@ export interface Routes {
|
|
|
25205
25237
|
/** 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
25238
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
25207
25239
|
/** 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;
|
|
25240
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
25209
25241
|
/** 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;
|
|
25242
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
25211
25243
|
/** Visionline-specific metadata for the credential. */
|
|
25212
25244
|
visionline_metadata?: {
|
|
25213
25245
|
card_function_type: 'guest' | 'staff';
|
|
@@ -25298,9 +25330,9 @@ export interface Routes {
|
|
|
25298
25330
|
/** 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
25331
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
25300
25332
|
/** 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;
|
|
25333
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
25302
25334
|
/** 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;
|
|
25335
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
25304
25336
|
/** Visionline-specific metadata for the credential. */
|
|
25305
25337
|
visionline_metadata?: {
|
|
25306
25338
|
card_function_type: 'guest' | 'staff';
|
|
@@ -26098,7 +26130,10 @@ export interface Routes {
|
|
|
26098
26130
|
/** Date and time at which the thermostat schedule was created. */
|
|
26099
26131
|
created_at: string;
|
|
26100
26132
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
26101
|
-
errors
|
|
26133
|
+
errors: Array<{
|
|
26134
|
+
error_code: string;
|
|
26135
|
+
message: string;
|
|
26136
|
+
}>;
|
|
26102
26137
|
} | null) | undefined;
|
|
26103
26138
|
min_cooling_set_point_celsius?: number | undefined;
|
|
26104
26139
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -26615,7 +26650,10 @@ export interface Routes {
|
|
|
26615
26650
|
/** Date and time at which the thermostat schedule was created. */
|
|
26616
26651
|
created_at: string;
|
|
26617
26652
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
26618
|
-
errors
|
|
26653
|
+
errors: Array<{
|
|
26654
|
+
error_code: string;
|
|
26655
|
+
message: string;
|
|
26656
|
+
}>;
|
|
26619
26657
|
} | null) | undefined;
|
|
26620
26658
|
min_cooling_set_point_celsius?: number | undefined;
|
|
26621
26659
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -26860,9 +26898,9 @@ export interface Routes {
|
|
|
26860
26898
|
/** 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
26899
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
26862
26900
|
/** 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;
|
|
26901
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
26864
26902
|
/** 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;
|
|
26903
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
26866
26904
|
/** Visionline-specific metadata for the credential. */
|
|
26867
26905
|
visionline_metadata?: {
|
|
26868
26906
|
card_function_type: 'guest' | 'staff';
|
|
@@ -26953,9 +26991,9 @@ export interface Routes {
|
|
|
26953
26991
|
/** 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
26992
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
26955
26993
|
/** 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;
|
|
26994
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
26957
26995
|
/** 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;
|
|
26996
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
26959
26997
|
/** Visionline-specific metadata for the credential. */
|
|
26960
26998
|
visionline_metadata?: {
|
|
26961
26999
|
card_function_type: 'guest' | 'staff';
|
|
@@ -27083,9 +27121,9 @@ export interface Routes {
|
|
|
27083
27121
|
/** 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
27122
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
27085
27123
|
/** 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;
|
|
27124
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
27087
27125
|
/** 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;
|
|
27126
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
27089
27127
|
/** Visionline-specific metadata for the credential. */
|
|
27090
27128
|
visionline_metadata?: {
|
|
27091
27129
|
card_function_type: 'guest' | 'staff';
|
|
@@ -27176,9 +27214,9 @@ export interface Routes {
|
|
|
27176
27214
|
/** 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
27215
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
27178
27216
|
/** 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;
|
|
27217
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
27180
27218
|
/** 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;
|
|
27219
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
27182
27220
|
/** Visionline-specific metadata for the credential. */
|
|
27183
27221
|
visionline_metadata?: {
|
|
27184
27222
|
card_function_type: 'guest' | 'staff';
|
|
@@ -27530,7 +27568,10 @@ export interface Routes {
|
|
|
27530
27568
|
/** Date and time at which the thermostat schedule was created. */
|
|
27531
27569
|
created_at: string;
|
|
27532
27570
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
27533
|
-
errors
|
|
27571
|
+
errors: Array<{
|
|
27572
|
+
error_code: string;
|
|
27573
|
+
message: string;
|
|
27574
|
+
}>;
|
|
27534
27575
|
};
|
|
27535
27576
|
};
|
|
27536
27577
|
};
|
|
@@ -27578,7 +27619,10 @@ export interface Routes {
|
|
|
27578
27619
|
/** Date and time at which the thermostat schedule was created. */
|
|
27579
27620
|
created_at: string;
|
|
27580
27621
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
27581
|
-
errors
|
|
27622
|
+
errors: Array<{
|
|
27623
|
+
error_code: string;
|
|
27624
|
+
message: string;
|
|
27625
|
+
}>;
|
|
27582
27626
|
};
|
|
27583
27627
|
};
|
|
27584
27628
|
};
|
|
@@ -27615,7 +27659,10 @@ export interface Routes {
|
|
|
27615
27659
|
/** Date and time at which the thermostat schedule was created. */
|
|
27616
27660
|
created_at: string;
|
|
27617
27661
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
27618
|
-
errors
|
|
27662
|
+
errors: Array<{
|
|
27663
|
+
error_code: string;
|
|
27664
|
+
message: string;
|
|
27665
|
+
}>;
|
|
27619
27666
|
}>;
|
|
27620
27667
|
};
|
|
27621
27668
|
};
|
|
@@ -27842,9 +27889,9 @@ export interface Routes {
|
|
|
27842
27889
|
/** 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
27890
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
27844
27891
|
/** 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;
|
|
27892
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
27846
27893
|
/** 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;
|
|
27894
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
27848
27895
|
/** Visionline-specific metadata for the credential. */
|
|
27849
27896
|
visionline_metadata?: {
|
|
27850
27897
|
card_function_type: 'guest' | 'staff';
|
|
@@ -27935,9 +27982,9 @@ export interface Routes {
|
|
|
27935
27982
|
/** 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
27983
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
27937
27984
|
/** 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;
|
|
27985
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
27939
27986
|
/** 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;
|
|
27987
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
27941
27988
|
/** Visionline-specific metadata for the credential. */
|
|
27942
27989
|
visionline_metadata?: {
|
|
27943
27990
|
card_function_type: 'guest' | 'staff';
|
|
@@ -28065,9 +28112,9 @@ export interface Routes {
|
|
|
28065
28112
|
/** 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
28113
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
28067
28114
|
/** 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;
|
|
28115
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
28069
28116
|
/** 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;
|
|
28117
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
28071
28118
|
/** Visionline-specific metadata for the credential. */
|
|
28072
28119
|
visionline_metadata?: {
|
|
28073
28120
|
card_function_type: 'guest' | 'staff';
|
|
@@ -28158,9 +28205,9 @@ export interface Routes {
|
|
|
28158
28205
|
/** 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
28206
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
28160
28207
|
/** 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;
|
|
28208
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
28162
28209
|
/** 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;
|
|
28210
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
28164
28211
|
/** Visionline-specific metadata for the credential. */
|
|
28165
28212
|
visionline_metadata?: {
|
|
28166
28213
|
card_function_type: 'guest' | 'staff';
|
|
@@ -28676,9 +28723,9 @@ export interface Routes {
|
|
|
28676
28723
|
/** 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
28724
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
28678
28725
|
/** 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;
|
|
28726
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
28680
28727
|
/** 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;
|
|
28728
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
28682
28729
|
/** Visionline-specific metadata for the credential. */
|
|
28683
28730
|
visionline_metadata?: {
|
|
28684
28731
|
card_function_type: 'guest' | 'staff';
|
|
@@ -28769,9 +28816,9 @@ export interface Routes {
|
|
|
28769
28816
|
/** 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
28817
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
28771
28818
|
/** 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;
|
|
28819
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
28773
28820
|
/** 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;
|
|
28821
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
28775
28822
|
/** Visionline-specific metadata for the credential. */
|
|
28776
28823
|
visionline_metadata?: {
|
|
28777
28824
|
card_function_type: 'guest' | 'staff';
|
|
@@ -28899,9 +28946,9 @@ export interface Routes {
|
|
|
28899
28946
|
/** 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
28947
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
28901
28948
|
/** 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;
|
|
28949
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
28903
28950
|
/** 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;
|
|
28951
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
28905
28952
|
/** Visionline-specific metadata for the credential. */
|
|
28906
28953
|
visionline_metadata?: {
|
|
28907
28954
|
card_function_type: 'guest' | 'staff';
|
|
@@ -28992,9 +29039,9 @@ export interface Routes {
|
|
|
28992
29039
|
/** 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
29040
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
28994
29041
|
/** 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;
|
|
29042
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
28996
29043
|
/** 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;
|
|
29044
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
28998
29045
|
/** Visionline-specific metadata for the credential. */
|
|
28999
29046
|
visionline_metadata?: {
|
|
29000
29047
|
card_function_type: 'guest' | 'staff';
|
|
@@ -30047,7 +30094,10 @@ export interface Routes {
|
|
|
30047
30094
|
/** Date and time at which the thermostat schedule was created. */
|
|
30048
30095
|
created_at: string;
|
|
30049
30096
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
30050
|
-
errors
|
|
30097
|
+
errors: Array<{
|
|
30098
|
+
error_code: string;
|
|
30099
|
+
message: string;
|
|
30100
|
+
}>;
|
|
30051
30101
|
} | null) | undefined;
|
|
30052
30102
|
min_cooling_set_point_celsius?: number | undefined;
|
|
30053
30103
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -30566,7 +30616,10 @@ export interface Routes {
|
|
|
30566
30616
|
/** Date and time at which the thermostat schedule was created. */
|
|
30567
30617
|
created_at: string;
|
|
30568
30618
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
30569
|
-
errors
|
|
30619
|
+
errors: Array<{
|
|
30620
|
+
error_code: string;
|
|
30621
|
+
message: string;
|
|
30622
|
+
}>;
|
|
30570
30623
|
} | null) | undefined;
|
|
30571
30624
|
min_cooling_set_point_celsius?: number | undefined;
|
|
30572
30625
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -30802,9 +30855,9 @@ export interface Routes {
|
|
|
30802
30855
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
30803
30856
|
user_identity_phone_number?: (string | null) | undefined;
|
|
30804
30857
|
/** */
|
|
30805
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
30858
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
30806
30859
|
/** */
|
|
30807
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
30860
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
30808
30861
|
/** Warnings associated with the `acs_user`. */
|
|
30809
30862
|
warnings: Array<{
|
|
30810
30863
|
created_at: string;
|
|
@@ -31226,9 +31279,9 @@ export interface Routes {
|
|
|
31226
31279
|
/** 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
31280
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
31228
31281
|
/** 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;
|
|
31282
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
31230
31283
|
/** 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;
|
|
31284
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
31232
31285
|
/** Visionline-specific metadata for the credential. */
|
|
31233
31286
|
visionline_metadata?: {
|
|
31234
31287
|
card_function_type: 'guest' | 'staff';
|
|
@@ -31319,9 +31372,9 @@ export interface Routes {
|
|
|
31319
31372
|
/** 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
31373
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
31321
31374
|
/** 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;
|
|
31375
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
31323
31376
|
/** 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;
|
|
31377
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
31325
31378
|
/** Visionline-specific metadata for the credential. */
|
|
31326
31379
|
visionline_metadata?: {
|
|
31327
31380
|
card_function_type: 'guest' | 'staff';
|
|
@@ -31449,9 +31502,9 @@ export interface Routes {
|
|
|
31449
31502
|
/** 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
31503
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
31451
31504
|
/** 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;
|
|
31505
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
31453
31506
|
/** 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;
|
|
31507
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
31455
31508
|
/** Visionline-specific metadata for the credential. */
|
|
31456
31509
|
visionline_metadata?: {
|
|
31457
31510
|
card_function_type: 'guest' | 'staff';
|
|
@@ -31542,9 +31595,9 @@ export interface Routes {
|
|
|
31542
31595
|
/** 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
31596
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
31544
31597
|
/** 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;
|
|
31598
|
+
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
31546
31599
|
/** 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;
|
|
31600
|
+
latest_desired_state_synced_with_provider_at?: (string | null) | undefined;
|
|
31548
31601
|
/** Visionline-specific metadata for the credential. */
|
|
31549
31602
|
visionline_metadata?: {
|
|
31550
31603
|
card_function_type: 'guest' | 'staff';
|