@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
|
@@ -220,11 +220,11 @@ export interface Routes {
|
|
|
220
220
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
221
221
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
222
222
|
is_latest_desired_state_synced_with_provider?:
|
|
223
|
-
| boolean
|
|
223
|
+
| (boolean | null)
|
|
224
224
|
| undefined
|
|
225
225
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
226
226
|
latest_desired_state_synced_with_provider_at?:
|
|
227
|
-
| string
|
|
227
|
+
| (string | null)
|
|
228
228
|
| undefined
|
|
229
229
|
/** Visionline-specific metadata for the credential. */
|
|
230
230
|
visionline_metadata?:
|
|
@@ -334,11 +334,11 @@ export interface Routes {
|
|
|
334
334
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
335
335
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
336
336
|
is_latest_desired_state_synced_with_provider?:
|
|
337
|
-
| boolean
|
|
337
|
+
| (boolean | null)
|
|
338
338
|
| undefined
|
|
339
339
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
340
340
|
latest_desired_state_synced_with_provider_at?:
|
|
341
|
-
| string
|
|
341
|
+
| (string | null)
|
|
342
342
|
| undefined
|
|
343
343
|
/** Visionline-specific metadata for the credential. */
|
|
344
344
|
visionline_metadata?:
|
|
@@ -495,11 +495,11 @@ export interface Routes {
|
|
|
495
495
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
496
496
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
497
497
|
is_latest_desired_state_synced_with_provider?:
|
|
498
|
-
| boolean
|
|
498
|
+
| (boolean | null)
|
|
499
499
|
| undefined
|
|
500
500
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
501
501
|
latest_desired_state_synced_with_provider_at?:
|
|
502
|
-
| string
|
|
502
|
+
| (string | null)
|
|
503
503
|
| undefined
|
|
504
504
|
/** Visionline-specific metadata for the credential. */
|
|
505
505
|
visionline_metadata?:
|
|
@@ -609,11 +609,11 @@ export interface Routes {
|
|
|
609
609
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
610
610
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
611
611
|
is_latest_desired_state_synced_with_provider?:
|
|
612
|
-
| boolean
|
|
612
|
+
| (boolean | null)
|
|
613
613
|
| undefined
|
|
614
614
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
615
615
|
latest_desired_state_synced_with_provider_at?:
|
|
616
|
-
| string
|
|
616
|
+
| (string | null)
|
|
617
617
|
| undefined
|
|
618
618
|
/** Visionline-specific metadata for the credential. */
|
|
619
619
|
visionline_metadata?:
|
|
@@ -1326,11 +1326,11 @@ export interface Routes {
|
|
|
1326
1326
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
1327
1327
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
1328
1328
|
is_latest_desired_state_synced_with_provider?:
|
|
1329
|
-
| boolean
|
|
1329
|
+
| (boolean | null)
|
|
1330
1330
|
| undefined
|
|
1331
1331
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
1332
1332
|
latest_desired_state_synced_with_provider_at?:
|
|
1333
|
-
| string
|
|
1333
|
+
| (string | null)
|
|
1334
1334
|
| undefined
|
|
1335
1335
|
/** Visionline-specific metadata for the credential. */
|
|
1336
1336
|
visionline_metadata?:
|
|
@@ -1440,11 +1440,11 @@ export interface Routes {
|
|
|
1440
1440
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
1441
1441
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
1442
1442
|
is_latest_desired_state_synced_with_provider?:
|
|
1443
|
-
| boolean
|
|
1443
|
+
| (boolean | null)
|
|
1444
1444
|
| undefined
|
|
1445
1445
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
1446
1446
|
latest_desired_state_synced_with_provider_at?:
|
|
1447
|
-
| string
|
|
1447
|
+
| (string | null)
|
|
1448
1448
|
| undefined
|
|
1449
1449
|
/** Visionline-specific metadata for the credential. */
|
|
1450
1450
|
visionline_metadata?:
|
|
@@ -1601,11 +1601,11 @@ export interface Routes {
|
|
|
1601
1601
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
1602
1602
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
1603
1603
|
is_latest_desired_state_synced_with_provider?:
|
|
1604
|
-
| boolean
|
|
1604
|
+
| (boolean | null)
|
|
1605
1605
|
| undefined
|
|
1606
1606
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
1607
1607
|
latest_desired_state_synced_with_provider_at?:
|
|
1608
|
-
| string
|
|
1608
|
+
| (string | null)
|
|
1609
1609
|
| undefined
|
|
1610
1610
|
/** Visionline-specific metadata for the credential. */
|
|
1611
1611
|
visionline_metadata?:
|
|
@@ -1715,11 +1715,11 @@ export interface Routes {
|
|
|
1715
1715
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
1716
1716
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
1717
1717
|
is_latest_desired_state_synced_with_provider?:
|
|
1718
|
-
| boolean
|
|
1718
|
+
| (boolean | null)
|
|
1719
1719
|
| undefined
|
|
1720
1720
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
1721
1721
|
latest_desired_state_synced_with_provider_at?:
|
|
1722
|
-
| string
|
|
1722
|
+
| (string | null)
|
|
1723
1723
|
| undefined
|
|
1724
1724
|
/** Visionline-specific metadata for the credential. */
|
|
1725
1725
|
visionline_metadata?:
|
|
@@ -2662,11 +2662,11 @@ export interface Routes {
|
|
|
2662
2662
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
2663
2663
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
2664
2664
|
is_latest_desired_state_synced_with_provider?:
|
|
2665
|
-
| boolean
|
|
2665
|
+
| (boolean | null)
|
|
2666
2666
|
| undefined
|
|
2667
2667
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
2668
2668
|
latest_desired_state_synced_with_provider_at?:
|
|
2669
|
-
| string
|
|
2669
|
+
| (string | null)
|
|
2670
2670
|
| undefined
|
|
2671
2671
|
/** Visionline-specific metadata for the credential. */
|
|
2672
2672
|
visionline_metadata?:
|
|
@@ -2776,11 +2776,11 @@ export interface Routes {
|
|
|
2776
2776
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
2777
2777
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
2778
2778
|
is_latest_desired_state_synced_with_provider?:
|
|
2779
|
-
| boolean
|
|
2779
|
+
| (boolean | null)
|
|
2780
2780
|
| undefined
|
|
2781
2781
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
2782
2782
|
latest_desired_state_synced_with_provider_at?:
|
|
2783
|
-
| string
|
|
2783
|
+
| (string | null)
|
|
2784
2784
|
| undefined
|
|
2785
2785
|
/** Visionline-specific metadata for the credential. */
|
|
2786
2786
|
visionline_metadata?:
|
|
@@ -2937,11 +2937,11 @@ export interface Routes {
|
|
|
2937
2937
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
2938
2938
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
2939
2939
|
is_latest_desired_state_synced_with_provider?:
|
|
2940
|
-
| boolean
|
|
2940
|
+
| (boolean | null)
|
|
2941
2941
|
| undefined
|
|
2942
2942
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
2943
2943
|
latest_desired_state_synced_with_provider_at?:
|
|
2944
|
-
| string
|
|
2944
|
+
| (string | null)
|
|
2945
2945
|
| undefined
|
|
2946
2946
|
/** Visionline-specific metadata for the credential. */
|
|
2947
2947
|
visionline_metadata?:
|
|
@@ -3051,11 +3051,11 @@ export interface Routes {
|
|
|
3051
3051
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
3052
3052
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
3053
3053
|
is_latest_desired_state_synced_with_provider?:
|
|
3054
|
-
| boolean
|
|
3054
|
+
| (boolean | null)
|
|
3055
3055
|
| undefined
|
|
3056
3056
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
3057
3057
|
latest_desired_state_synced_with_provider_at?:
|
|
3058
|
-
| string
|
|
3058
|
+
| (string | null)
|
|
3059
3059
|
| undefined
|
|
3060
3060
|
/** Visionline-specific metadata for the credential. */
|
|
3061
3061
|
visionline_metadata?:
|
|
@@ -3755,11 +3755,11 @@ export interface Routes {
|
|
|
3755
3755
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
3756
3756
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
3757
3757
|
is_latest_desired_state_synced_with_provider?:
|
|
3758
|
-
| boolean
|
|
3758
|
+
| (boolean | null)
|
|
3759
3759
|
| undefined
|
|
3760
3760
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
3761
3761
|
latest_desired_state_synced_with_provider_at?:
|
|
3762
|
-
| string
|
|
3762
|
+
| (string | null)
|
|
3763
3763
|
| undefined
|
|
3764
3764
|
/** Visionline-specific metadata for the credential. */
|
|
3765
3765
|
visionline_metadata?:
|
|
@@ -3869,11 +3869,11 @@ export interface Routes {
|
|
|
3869
3869
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
3870
3870
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
3871
3871
|
is_latest_desired_state_synced_with_provider?:
|
|
3872
|
-
| boolean
|
|
3872
|
+
| (boolean | null)
|
|
3873
3873
|
| undefined
|
|
3874
3874
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
3875
3875
|
latest_desired_state_synced_with_provider_at?:
|
|
3876
|
-
| string
|
|
3876
|
+
| (string | null)
|
|
3877
3877
|
| undefined
|
|
3878
3878
|
/** Visionline-specific metadata for the credential. */
|
|
3879
3879
|
visionline_metadata?:
|
|
@@ -4030,11 +4030,11 @@ export interface Routes {
|
|
|
4030
4030
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
4031
4031
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
4032
4032
|
is_latest_desired_state_synced_with_provider?:
|
|
4033
|
-
| boolean
|
|
4033
|
+
| (boolean | null)
|
|
4034
4034
|
| undefined
|
|
4035
4035
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
4036
4036
|
latest_desired_state_synced_with_provider_at?:
|
|
4037
|
-
| string
|
|
4037
|
+
| (string | null)
|
|
4038
4038
|
| undefined
|
|
4039
4039
|
/** Visionline-specific metadata for the credential. */
|
|
4040
4040
|
visionline_metadata?:
|
|
@@ -4144,11 +4144,11 @@ export interface Routes {
|
|
|
4144
4144
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
4145
4145
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
4146
4146
|
is_latest_desired_state_synced_with_provider?:
|
|
4147
|
-
| boolean
|
|
4147
|
+
| (boolean | null)
|
|
4148
4148
|
| undefined
|
|
4149
4149
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
4150
4150
|
latest_desired_state_synced_with_provider_at?:
|
|
4151
|
-
| string
|
|
4151
|
+
| (string | null)
|
|
4152
4152
|
| undefined
|
|
4153
4153
|
/** Visionline-specific metadata for the credential. */
|
|
4154
4154
|
visionline_metadata?:
|
|
@@ -4791,9 +4791,13 @@ export interface Routes {
|
|
|
4791
4791
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
4792
4792
|
user_identity_phone_number?: (string | null) | undefined
|
|
4793
4793
|
/** */
|
|
4794
|
-
latest_desired_state_synced_with_provider_at?:
|
|
4794
|
+
latest_desired_state_synced_with_provider_at?:
|
|
4795
|
+
| (string | null)
|
|
4796
|
+
| undefined
|
|
4795
4797
|
/** */
|
|
4796
|
-
is_latest_desired_state_synced_with_provider?:
|
|
4798
|
+
is_latest_desired_state_synced_with_provider?:
|
|
4799
|
+
| (boolean | null)
|
|
4800
|
+
| undefined
|
|
4797
4801
|
/** Warnings associated with the `acs_user`. */
|
|
4798
4802
|
warnings: Array<
|
|
4799
4803
|
| {
|
|
@@ -5141,9 +5145,13 @@ export interface Routes {
|
|
|
5141
5145
|
/** 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). */
|
|
5142
5146
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
5143
5147
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
5144
|
-
is_latest_desired_state_synced_with_provider?:
|
|
5148
|
+
is_latest_desired_state_synced_with_provider?:
|
|
5149
|
+
| (boolean | null)
|
|
5150
|
+
| undefined
|
|
5145
5151
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
5146
|
-
latest_desired_state_synced_with_provider_at?:
|
|
5152
|
+
latest_desired_state_synced_with_provider_at?:
|
|
5153
|
+
| (string | null)
|
|
5154
|
+
| undefined
|
|
5147
5155
|
/** Visionline-specific metadata for the credential. */
|
|
5148
5156
|
visionline_metadata?:
|
|
5149
5157
|
| {
|
|
@@ -5205,6 +5213,13 @@ export interface Routes {
|
|
|
5205
5213
|
override_guest_acs_entrance_ids?: string[] | undefined
|
|
5206
5214
|
}
|
|
5207
5215
|
| undefined
|
|
5216
|
+
/** Salto Space-specific metadata for the new credential. */
|
|
5217
|
+
salto_space_metadata?:
|
|
5218
|
+
| {
|
|
5219
|
+
assign_new_key?: boolean | undefined
|
|
5220
|
+
update_current_key?: boolean | undefined
|
|
5221
|
+
}
|
|
5222
|
+
| undefined
|
|
5208
5223
|
/** 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. */
|
|
5209
5224
|
starts_at?: string | undefined
|
|
5210
5225
|
/** 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`. */
|
|
@@ -5306,9 +5321,13 @@ export interface Routes {
|
|
|
5306
5321
|
/** 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). */
|
|
5307
5322
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
5308
5323
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
5309
|
-
is_latest_desired_state_synced_with_provider?:
|
|
5324
|
+
is_latest_desired_state_synced_with_provider?:
|
|
5325
|
+
| (boolean | null)
|
|
5326
|
+
| undefined
|
|
5310
5327
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
5311
|
-
latest_desired_state_synced_with_provider_at?:
|
|
5328
|
+
latest_desired_state_synced_with_provider_at?:
|
|
5329
|
+
| (string | null)
|
|
5330
|
+
| undefined
|
|
5312
5331
|
/** Visionline-specific metadata for the credential. */
|
|
5313
5332
|
visionline_metadata?:
|
|
5314
5333
|
| {
|
|
@@ -5439,9 +5458,13 @@ export interface Routes {
|
|
|
5439
5458
|
/** 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). */
|
|
5440
5459
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
5441
5460
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
5442
|
-
is_latest_desired_state_synced_with_provider?:
|
|
5461
|
+
is_latest_desired_state_synced_with_provider?:
|
|
5462
|
+
| (boolean | null)
|
|
5463
|
+
| undefined
|
|
5443
5464
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
5444
|
-
latest_desired_state_synced_with_provider_at?:
|
|
5465
|
+
latest_desired_state_synced_with_provider_at?:
|
|
5466
|
+
| (string | null)
|
|
5467
|
+
| undefined
|
|
5445
5468
|
/** Visionline-specific metadata for the credential. */
|
|
5446
5469
|
visionline_metadata?:
|
|
5447
5470
|
| {
|
|
@@ -5576,9 +5599,13 @@ export interface Routes {
|
|
|
5576
5599
|
/** 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). */
|
|
5577
5600
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
5578
5601
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
5579
|
-
is_latest_desired_state_synced_with_provider?:
|
|
5602
|
+
is_latest_desired_state_synced_with_provider?:
|
|
5603
|
+
| (boolean | null)
|
|
5604
|
+
| undefined
|
|
5580
5605
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
5581
|
-
latest_desired_state_synced_with_provider_at?:
|
|
5606
|
+
latest_desired_state_synced_with_provider_at?:
|
|
5607
|
+
| (string | null)
|
|
5608
|
+
| undefined
|
|
5582
5609
|
/** Visionline-specific metadata for the credential. */
|
|
5583
5610
|
visionline_metadata?:
|
|
5584
5611
|
| {
|
|
@@ -5722,9 +5749,13 @@ export interface Routes {
|
|
|
5722
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). */
|
|
5723
5750
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
5724
5751
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
5725
|
-
is_latest_desired_state_synced_with_provider?:
|
|
5752
|
+
is_latest_desired_state_synced_with_provider?:
|
|
5753
|
+
| (boolean | null)
|
|
5754
|
+
| undefined
|
|
5726
5755
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
5727
|
-
latest_desired_state_synced_with_provider_at?:
|
|
5756
|
+
latest_desired_state_synced_with_provider_at?:
|
|
5757
|
+
| (string | null)
|
|
5758
|
+
| undefined
|
|
5728
5759
|
/** Visionline-specific metadata for the credential. */
|
|
5729
5760
|
visionline_metadata?:
|
|
5730
5761
|
| {
|
|
@@ -5939,9 +5970,13 @@ export interface Routes {
|
|
|
5939
5970
|
/** 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). */
|
|
5940
5971
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
5941
5972
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
5942
|
-
is_latest_desired_state_synced_with_provider?:
|
|
5973
|
+
is_latest_desired_state_synced_with_provider?:
|
|
5974
|
+
| (boolean | null)
|
|
5975
|
+
| undefined
|
|
5943
5976
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
5944
|
-
latest_desired_state_synced_with_provider_at?:
|
|
5977
|
+
latest_desired_state_synced_with_provider_at?:
|
|
5978
|
+
| (string | null)
|
|
5979
|
+
| undefined
|
|
5945
5980
|
/** Visionline-specific metadata for the credential. */
|
|
5946
5981
|
visionline_metadata?:
|
|
5947
5982
|
| {
|
|
@@ -6064,9 +6099,13 @@ export interface Routes {
|
|
|
6064
6099
|
/** 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). */
|
|
6065
6100
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
6066
6101
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
6067
|
-
is_latest_desired_state_synced_with_provider?:
|
|
6102
|
+
is_latest_desired_state_synced_with_provider?:
|
|
6103
|
+
| (boolean | null)
|
|
6104
|
+
| undefined
|
|
6068
6105
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
6069
|
-
latest_desired_state_synced_with_provider_at?:
|
|
6106
|
+
latest_desired_state_synced_with_provider_at?:
|
|
6107
|
+
| (string | null)
|
|
6108
|
+
| undefined
|
|
6070
6109
|
/** Visionline-specific metadata for the credential. */
|
|
6071
6110
|
visionline_metadata?:
|
|
6072
6111
|
| {
|
|
@@ -6202,9 +6241,13 @@ export interface Routes {
|
|
|
6202
6241
|
/** 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). */
|
|
6203
6242
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
6204
6243
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
6205
|
-
is_latest_desired_state_synced_with_provider?:
|
|
6244
|
+
is_latest_desired_state_synced_with_provider?:
|
|
6245
|
+
| (boolean | null)
|
|
6246
|
+
| undefined
|
|
6206
6247
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
6207
|
-
latest_desired_state_synced_with_provider_at?:
|
|
6248
|
+
latest_desired_state_synced_with_provider_at?:
|
|
6249
|
+
| (string | null)
|
|
6250
|
+
| undefined
|
|
6208
6251
|
/** Visionline-specific metadata for the credential. */
|
|
6209
6252
|
visionline_metadata?:
|
|
6210
6253
|
| {
|
|
@@ -6331,9 +6374,13 @@ export interface Routes {
|
|
|
6331
6374
|
/** 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). */
|
|
6332
6375
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
6333
6376
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
6334
|
-
is_latest_desired_state_synced_with_provider?:
|
|
6377
|
+
is_latest_desired_state_synced_with_provider?:
|
|
6378
|
+
| (boolean | null)
|
|
6379
|
+
| undefined
|
|
6335
6380
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
6336
|
-
latest_desired_state_synced_with_provider_at?:
|
|
6381
|
+
latest_desired_state_synced_with_provider_at?:
|
|
6382
|
+
| (string | null)
|
|
6383
|
+
| undefined
|
|
6337
6384
|
/** Visionline-specific metadata for the credential. */
|
|
6338
6385
|
visionline_metadata?:
|
|
6339
6386
|
| {
|
|
@@ -6559,11 +6606,11 @@ export interface Routes {
|
|
|
6559
6606
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
6560
6607
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
6561
6608
|
is_latest_desired_state_synced_with_provider?:
|
|
6562
|
-
| boolean
|
|
6609
|
+
| (boolean | null)
|
|
6563
6610
|
| undefined
|
|
6564
6611
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
6565
6612
|
latest_desired_state_synced_with_provider_at?:
|
|
6566
|
-
| string
|
|
6613
|
+
| (string | null)
|
|
6567
6614
|
| undefined
|
|
6568
6615
|
/** Visionline-specific metadata for the credential. */
|
|
6569
6616
|
visionline_metadata?:
|
|
@@ -6673,11 +6720,11 @@ export interface Routes {
|
|
|
6673
6720
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
6674
6721
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
6675
6722
|
is_latest_desired_state_synced_with_provider?:
|
|
6676
|
-
| boolean
|
|
6723
|
+
| (boolean | null)
|
|
6677
6724
|
| undefined
|
|
6678
6725
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
6679
6726
|
latest_desired_state_synced_with_provider_at?:
|
|
6680
|
-
| string
|
|
6727
|
+
| (string | null)
|
|
6681
6728
|
| undefined
|
|
6682
6729
|
/** Visionline-specific metadata for the credential. */
|
|
6683
6730
|
visionline_metadata?:
|
|
@@ -6834,11 +6881,11 @@ export interface Routes {
|
|
|
6834
6881
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
6835
6882
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
6836
6883
|
is_latest_desired_state_synced_with_provider?:
|
|
6837
|
-
| boolean
|
|
6884
|
+
| (boolean | null)
|
|
6838
6885
|
| undefined
|
|
6839
6886
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
6840
6887
|
latest_desired_state_synced_with_provider_at?:
|
|
6841
|
-
| string
|
|
6888
|
+
| (string | null)
|
|
6842
6889
|
| undefined
|
|
6843
6890
|
/** Visionline-specific metadata for the credential. */
|
|
6844
6891
|
visionline_metadata?:
|
|
@@ -6948,11 +6995,11 @@ export interface Routes {
|
|
|
6948
6995
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
6949
6996
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
6950
6997
|
is_latest_desired_state_synced_with_provider?:
|
|
6951
|
-
| boolean
|
|
6998
|
+
| (boolean | null)
|
|
6952
6999
|
| undefined
|
|
6953
7000
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
6954
7001
|
latest_desired_state_synced_with_provider_at?:
|
|
6955
|
-
| string
|
|
7002
|
+
| (string | null)
|
|
6956
7003
|
| undefined
|
|
6957
7004
|
/** Visionline-specific metadata for the credential. */
|
|
6958
7005
|
visionline_metadata?:
|
|
@@ -7550,11 +7597,11 @@ export interface Routes {
|
|
|
7550
7597
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
7551
7598
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
7552
7599
|
is_latest_desired_state_synced_with_provider?:
|
|
7553
|
-
| boolean
|
|
7600
|
+
| (boolean | null)
|
|
7554
7601
|
| undefined
|
|
7555
7602
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
7556
7603
|
latest_desired_state_synced_with_provider_at?:
|
|
7557
|
-
| string
|
|
7604
|
+
| (string | null)
|
|
7558
7605
|
| undefined
|
|
7559
7606
|
/** Visionline-specific metadata for the credential. */
|
|
7560
7607
|
visionline_metadata?:
|
|
@@ -7664,11 +7711,11 @@ export interface Routes {
|
|
|
7664
7711
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
7665
7712
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
7666
7713
|
is_latest_desired_state_synced_with_provider?:
|
|
7667
|
-
| boolean
|
|
7714
|
+
| (boolean | null)
|
|
7668
7715
|
| undefined
|
|
7669
7716
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
7670
7717
|
latest_desired_state_synced_with_provider_at?:
|
|
7671
|
-
| string
|
|
7718
|
+
| (string | null)
|
|
7672
7719
|
| undefined
|
|
7673
7720
|
/** Visionline-specific metadata for the credential. */
|
|
7674
7721
|
visionline_metadata?:
|
|
@@ -7825,11 +7872,11 @@ export interface Routes {
|
|
|
7825
7872
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
7826
7873
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
7827
7874
|
is_latest_desired_state_synced_with_provider?:
|
|
7828
|
-
| boolean
|
|
7875
|
+
| (boolean | null)
|
|
7829
7876
|
| undefined
|
|
7830
7877
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
7831
7878
|
latest_desired_state_synced_with_provider_at?:
|
|
7832
|
-
| string
|
|
7879
|
+
| (string | null)
|
|
7833
7880
|
| undefined
|
|
7834
7881
|
/** Visionline-specific metadata for the credential. */
|
|
7835
7882
|
visionline_metadata?:
|
|
@@ -7939,11 +7986,11 @@ export interface Routes {
|
|
|
7939
7986
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
7940
7987
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
7941
7988
|
is_latest_desired_state_synced_with_provider?:
|
|
7942
|
-
| boolean
|
|
7989
|
+
| (boolean | null)
|
|
7943
7990
|
| undefined
|
|
7944
7991
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
7945
7992
|
latest_desired_state_synced_with_provider_at?:
|
|
7946
|
-
| string
|
|
7993
|
+
| (string | null)
|
|
7947
7994
|
| undefined
|
|
7948
7995
|
/** Visionline-specific metadata for the credential. */
|
|
7949
7996
|
visionline_metadata?:
|
|
@@ -8659,9 +8706,13 @@ export interface Routes {
|
|
|
8659
8706
|
/** 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). */
|
|
8660
8707
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
8661
8708
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
8662
|
-
is_latest_desired_state_synced_with_provider?:
|
|
8709
|
+
is_latest_desired_state_synced_with_provider?:
|
|
8710
|
+
| (boolean | null)
|
|
8711
|
+
| undefined
|
|
8663
8712
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
8664
|
-
latest_desired_state_synced_with_provider_at?:
|
|
8713
|
+
latest_desired_state_synced_with_provider_at?:
|
|
8714
|
+
| (string | null)
|
|
8715
|
+
| undefined
|
|
8665
8716
|
/** Visionline-specific metadata for the credential. */
|
|
8666
8717
|
visionline_metadata?:
|
|
8667
8718
|
| {
|
|
@@ -9284,9 +9335,13 @@ export interface Routes {
|
|
|
9284
9335
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
9285
9336
|
user_identity_phone_number?: (string | null) | undefined
|
|
9286
9337
|
/** */
|
|
9287
|
-
latest_desired_state_synced_with_provider_at?:
|
|
9338
|
+
latest_desired_state_synced_with_provider_at?:
|
|
9339
|
+
| (string | null)
|
|
9340
|
+
| undefined
|
|
9288
9341
|
/** */
|
|
9289
|
-
is_latest_desired_state_synced_with_provider?:
|
|
9342
|
+
is_latest_desired_state_synced_with_provider?:
|
|
9343
|
+
| (boolean | null)
|
|
9344
|
+
| undefined
|
|
9290
9345
|
/** Warnings associated with the `acs_user`. */
|
|
9291
9346
|
warnings: Array<
|
|
9292
9347
|
| {
|
|
@@ -9420,9 +9475,13 @@ export interface Routes {
|
|
|
9420
9475
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
9421
9476
|
user_identity_phone_number?: (string | null) | undefined
|
|
9422
9477
|
/** */
|
|
9423
|
-
latest_desired_state_synced_with_provider_at?:
|
|
9478
|
+
latest_desired_state_synced_with_provider_at?:
|
|
9479
|
+
| (string | null)
|
|
9480
|
+
| undefined
|
|
9424
9481
|
/** */
|
|
9425
|
-
is_latest_desired_state_synced_with_provider?:
|
|
9482
|
+
is_latest_desired_state_synced_with_provider?:
|
|
9483
|
+
| (boolean | null)
|
|
9484
|
+
| undefined
|
|
9426
9485
|
/** Warnings associated with the `acs_user`. */
|
|
9427
9486
|
warnings: Array<
|
|
9428
9487
|
| {
|
|
@@ -9551,9 +9610,13 @@ export interface Routes {
|
|
|
9551
9610
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
9552
9611
|
user_identity_phone_number?: (string | null) | undefined
|
|
9553
9612
|
/** */
|
|
9554
|
-
latest_desired_state_synced_with_provider_at?:
|
|
9613
|
+
latest_desired_state_synced_with_provider_at?:
|
|
9614
|
+
| (string | null)
|
|
9615
|
+
| undefined
|
|
9555
9616
|
/** */
|
|
9556
|
-
is_latest_desired_state_synced_with_provider?:
|
|
9617
|
+
is_latest_desired_state_synced_with_provider?:
|
|
9618
|
+
| (boolean | null)
|
|
9619
|
+
| undefined
|
|
9557
9620
|
/** Warnings associated with the `acs_user`. */
|
|
9558
9621
|
warnings: Array<
|
|
9559
9622
|
| {
|
|
@@ -9802,9 +9865,13 @@ export interface Routes {
|
|
|
9802
9865
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
9803
9866
|
user_identity_phone_number?: (string | null) | undefined
|
|
9804
9867
|
/** */
|
|
9805
|
-
latest_desired_state_synced_with_provider_at?:
|
|
9868
|
+
latest_desired_state_synced_with_provider_at?:
|
|
9869
|
+
| (string | null)
|
|
9870
|
+
| undefined
|
|
9806
9871
|
/** */
|
|
9807
|
-
is_latest_desired_state_synced_with_provider?:
|
|
9872
|
+
is_latest_desired_state_synced_with_provider?:
|
|
9873
|
+
| (boolean | null)
|
|
9874
|
+
| undefined
|
|
9808
9875
|
/** Warnings associated with the `acs_user`. */
|
|
9809
9876
|
warnings: Array<
|
|
9810
9877
|
| {
|
|
@@ -9928,9 +9995,13 @@ export interface Routes {
|
|
|
9928
9995
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
9929
9996
|
user_identity_phone_number?: (string | null) | undefined
|
|
9930
9997
|
/** */
|
|
9931
|
-
latest_desired_state_synced_with_provider_at?:
|
|
9998
|
+
latest_desired_state_synced_with_provider_at?:
|
|
9999
|
+
| (string | null)
|
|
10000
|
+
| undefined
|
|
9932
10001
|
/** */
|
|
9933
|
-
is_latest_desired_state_synced_with_provider?:
|
|
10002
|
+
is_latest_desired_state_synced_with_provider?:
|
|
10003
|
+
| (boolean | null)
|
|
10004
|
+
| undefined
|
|
9934
10005
|
/** Warnings associated with the `acs_user`. */
|
|
9935
10006
|
warnings: Array<
|
|
9936
10007
|
| {
|
|
@@ -10241,11 +10312,11 @@ export interface Routes {
|
|
|
10241
10312
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
10242
10313
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
10243
10314
|
is_latest_desired_state_synced_with_provider?:
|
|
10244
|
-
| boolean
|
|
10315
|
+
| (boolean | null)
|
|
10245
10316
|
| undefined
|
|
10246
10317
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
10247
10318
|
latest_desired_state_synced_with_provider_at?:
|
|
10248
|
-
| string
|
|
10319
|
+
| (string | null)
|
|
10249
10320
|
| undefined
|
|
10250
10321
|
/** Visionline-specific metadata for the credential. */
|
|
10251
10322
|
visionline_metadata?:
|
|
@@ -10355,11 +10426,11 @@ export interface Routes {
|
|
|
10355
10426
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
10356
10427
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
10357
10428
|
is_latest_desired_state_synced_with_provider?:
|
|
10358
|
-
| boolean
|
|
10429
|
+
| (boolean | null)
|
|
10359
10430
|
| undefined
|
|
10360
10431
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
10361
10432
|
latest_desired_state_synced_with_provider_at?:
|
|
10362
|
-
| string
|
|
10433
|
+
| (string | null)
|
|
10363
10434
|
| undefined
|
|
10364
10435
|
/** Visionline-specific metadata for the credential. */
|
|
10365
10436
|
visionline_metadata?:
|
|
@@ -10516,11 +10587,11 @@ export interface Routes {
|
|
|
10516
10587
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
10517
10588
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
10518
10589
|
is_latest_desired_state_synced_with_provider?:
|
|
10519
|
-
| boolean
|
|
10590
|
+
| (boolean | null)
|
|
10520
10591
|
| undefined
|
|
10521
10592
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
10522
10593
|
latest_desired_state_synced_with_provider_at?:
|
|
10523
|
-
| string
|
|
10594
|
+
| (string | null)
|
|
10524
10595
|
| undefined
|
|
10525
10596
|
/** Visionline-specific metadata for the credential. */
|
|
10526
10597
|
visionline_metadata?:
|
|
@@ -10630,11 +10701,11 @@ export interface Routes {
|
|
|
10630
10701
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
10631
10702
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
10632
10703
|
is_latest_desired_state_synced_with_provider?:
|
|
10633
|
-
| boolean
|
|
10704
|
+
| (boolean | null)
|
|
10634
10705
|
| undefined
|
|
10635
10706
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
10636
10707
|
latest_desired_state_synced_with_provider_at?:
|
|
10637
|
-
| string
|
|
10708
|
+
| (string | null)
|
|
10638
10709
|
| undefined
|
|
10639
10710
|
/** Visionline-specific metadata for the credential. */
|
|
10640
10711
|
visionline_metadata?:
|
|
@@ -11188,11 +11259,11 @@ export interface Routes {
|
|
|
11188
11259
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
11189
11260
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
11190
11261
|
is_latest_desired_state_synced_with_provider?:
|
|
11191
|
-
| boolean
|
|
11262
|
+
| (boolean | null)
|
|
11192
11263
|
| undefined
|
|
11193
11264
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
11194
11265
|
latest_desired_state_synced_with_provider_at?:
|
|
11195
|
-
| string
|
|
11266
|
+
| (string | null)
|
|
11196
11267
|
| undefined
|
|
11197
11268
|
/** Visionline-specific metadata for the credential. */
|
|
11198
11269
|
visionline_metadata?:
|
|
@@ -11302,11 +11373,11 @@ export interface Routes {
|
|
|
11302
11373
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
11303
11374
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
11304
11375
|
is_latest_desired_state_synced_with_provider?:
|
|
11305
|
-
| boolean
|
|
11376
|
+
| (boolean | null)
|
|
11306
11377
|
| undefined
|
|
11307
11378
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
11308
11379
|
latest_desired_state_synced_with_provider_at?:
|
|
11309
|
-
| string
|
|
11380
|
+
| (string | null)
|
|
11310
11381
|
| undefined
|
|
11311
11382
|
/** Visionline-specific metadata for the credential. */
|
|
11312
11383
|
visionline_metadata?:
|
|
@@ -11463,11 +11534,11 @@ export interface Routes {
|
|
|
11463
11534
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
11464
11535
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
11465
11536
|
is_latest_desired_state_synced_with_provider?:
|
|
11466
|
-
| boolean
|
|
11537
|
+
| (boolean | null)
|
|
11467
11538
|
| undefined
|
|
11468
11539
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
11469
11540
|
latest_desired_state_synced_with_provider_at?:
|
|
11470
|
-
| string
|
|
11541
|
+
| (string | null)
|
|
11471
11542
|
| undefined
|
|
11472
11543
|
/** Visionline-specific metadata for the credential. */
|
|
11473
11544
|
visionline_metadata?:
|
|
@@ -11577,11 +11648,11 @@ export interface Routes {
|
|
|
11577
11648
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
11578
11649
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
11579
11650
|
is_latest_desired_state_synced_with_provider?:
|
|
11580
|
-
| boolean
|
|
11651
|
+
| (boolean | null)
|
|
11581
11652
|
| undefined
|
|
11582
11653
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
11583
11654
|
latest_desired_state_synced_with_provider_at?:
|
|
11584
|
-
| string
|
|
11655
|
+
| (string | null)
|
|
11585
11656
|
| undefined
|
|
11586
11657
|
/** Visionline-specific metadata for the credential. */
|
|
11587
11658
|
visionline_metadata?:
|
|
@@ -13092,7 +13163,10 @@ export interface Routes {
|
|
|
13092
13163
|
/** Date and time at which the thermostat schedule was created. */
|
|
13093
13164
|
created_at: string
|
|
13094
13165
|
/** 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. */
|
|
13095
|
-
errors
|
|
13166
|
+
errors: Array<{
|
|
13167
|
+
error_code: string
|
|
13168
|
+
message: string
|
|
13169
|
+
}>
|
|
13096
13170
|
} | null)
|
|
13097
13171
|
| undefined
|
|
13098
13172
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -13978,7 +14052,10 @@ export interface Routes {
|
|
|
13978
14052
|
/** Date and time at which the thermostat schedule was created. */
|
|
13979
14053
|
created_at: string
|
|
13980
14054
|
/** 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. */
|
|
13981
|
-
errors
|
|
14055
|
+
errors: Array<{
|
|
14056
|
+
error_code: string
|
|
14057
|
+
message: string
|
|
14058
|
+
}>
|
|
13982
14059
|
} | null)
|
|
13983
14060
|
| undefined
|
|
13984
14061
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -17954,7 +18031,10 @@ export interface Routes {
|
|
|
17954
18031
|
/** Date and time at which the thermostat schedule was created. */
|
|
17955
18032
|
created_at: string
|
|
17956
18033
|
/** 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. */
|
|
17957
|
-
errors
|
|
18034
|
+
errors: Array<{
|
|
18035
|
+
error_code: string
|
|
18036
|
+
message: string
|
|
18037
|
+
}>
|
|
17958
18038
|
} | null)
|
|
17959
18039
|
| undefined
|
|
17960
18040
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -18656,7 +18736,10 @@ export interface Routes {
|
|
|
18656
18736
|
/** Date and time at which the thermostat schedule was created. */
|
|
18657
18737
|
created_at: string
|
|
18658
18738
|
/** 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. */
|
|
18659
|
-
errors
|
|
18739
|
+
errors: Array<{
|
|
18740
|
+
error_code: string
|
|
18741
|
+
message: string
|
|
18742
|
+
}>
|
|
18660
18743
|
} | null)
|
|
18661
18744
|
| undefined
|
|
18662
18745
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -19542,7 +19625,10 @@ export interface Routes {
|
|
|
19542
19625
|
/** Date and time at which the thermostat schedule was created. */
|
|
19543
19626
|
created_at: string
|
|
19544
19627
|
/** 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. */
|
|
19545
|
-
errors
|
|
19628
|
+
errors: Array<{
|
|
19629
|
+
error_code: string
|
|
19630
|
+
message: string
|
|
19631
|
+
}>
|
|
19546
19632
|
} | null)
|
|
19547
19633
|
| undefined
|
|
19548
19634
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -20244,7 +20330,10 @@ export interface Routes {
|
|
|
20244
20330
|
/** Date and time at which the thermostat schedule was created. */
|
|
20245
20331
|
created_at: string
|
|
20246
20332
|
/** 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. */
|
|
20247
|
-
errors
|
|
20333
|
+
errors: Array<{
|
|
20334
|
+
error_code: string
|
|
20335
|
+
message: string
|
|
20336
|
+
}>
|
|
20248
20337
|
} | null)
|
|
20249
20338
|
| undefined
|
|
20250
20339
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -20523,11 +20612,11 @@ export interface Routes {
|
|
|
20523
20612
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
20524
20613
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
20525
20614
|
is_latest_desired_state_synced_with_provider?:
|
|
20526
|
-
| boolean
|
|
20615
|
+
| (boolean | null)
|
|
20527
20616
|
| undefined
|
|
20528
20617
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
20529
20618
|
latest_desired_state_synced_with_provider_at?:
|
|
20530
|
-
| string
|
|
20619
|
+
| (string | null)
|
|
20531
20620
|
| undefined
|
|
20532
20621
|
/** Visionline-specific metadata for the credential. */
|
|
20533
20622
|
visionline_metadata?:
|
|
@@ -20637,11 +20726,11 @@ export interface Routes {
|
|
|
20637
20726
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
20638
20727
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
20639
20728
|
is_latest_desired_state_synced_with_provider?:
|
|
20640
|
-
| boolean
|
|
20729
|
+
| (boolean | null)
|
|
20641
20730
|
| undefined
|
|
20642
20731
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
20643
20732
|
latest_desired_state_synced_with_provider_at?:
|
|
20644
|
-
| string
|
|
20733
|
+
| (string | null)
|
|
20645
20734
|
| undefined
|
|
20646
20735
|
/** Visionline-specific metadata for the credential. */
|
|
20647
20736
|
visionline_metadata?:
|
|
@@ -20798,11 +20887,11 @@ export interface Routes {
|
|
|
20798
20887
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
20799
20888
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
20800
20889
|
is_latest_desired_state_synced_with_provider?:
|
|
20801
|
-
| boolean
|
|
20890
|
+
| (boolean | null)
|
|
20802
20891
|
| undefined
|
|
20803
20892
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
20804
20893
|
latest_desired_state_synced_with_provider_at?:
|
|
20805
|
-
| string
|
|
20894
|
+
| (string | null)
|
|
20806
20895
|
| undefined
|
|
20807
20896
|
/** Visionline-specific metadata for the credential. */
|
|
20808
20897
|
visionline_metadata?:
|
|
@@ -20912,11 +21001,11 @@ export interface Routes {
|
|
|
20912
21001
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
20913
21002
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
20914
21003
|
is_latest_desired_state_synced_with_provider?:
|
|
20915
|
-
| boolean
|
|
21004
|
+
| (boolean | null)
|
|
20916
21005
|
| undefined
|
|
20917
21006
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
20918
21007
|
latest_desired_state_synced_with_provider_at?:
|
|
20919
|
-
| string
|
|
21008
|
+
| (string | null)
|
|
20920
21009
|
| undefined
|
|
20921
21010
|
/** Visionline-specific metadata for the credential. */
|
|
20922
21011
|
visionline_metadata?:
|
|
@@ -21471,11 +21560,11 @@ export interface Routes {
|
|
|
21471
21560
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
21472
21561
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
21473
21562
|
is_latest_desired_state_synced_with_provider?:
|
|
21474
|
-
| boolean
|
|
21563
|
+
| (boolean | null)
|
|
21475
21564
|
| undefined
|
|
21476
21565
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
21477
21566
|
latest_desired_state_synced_with_provider_at?:
|
|
21478
|
-
| string
|
|
21567
|
+
| (string | null)
|
|
21479
21568
|
| undefined
|
|
21480
21569
|
/** Visionline-specific metadata for the credential. */
|
|
21481
21570
|
visionline_metadata?:
|
|
@@ -21585,11 +21674,11 @@ export interface Routes {
|
|
|
21585
21674
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
21586
21675
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
21587
21676
|
is_latest_desired_state_synced_with_provider?:
|
|
21588
|
-
| boolean
|
|
21677
|
+
| (boolean | null)
|
|
21589
21678
|
| undefined
|
|
21590
21679
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
21591
21680
|
latest_desired_state_synced_with_provider_at?:
|
|
21592
|
-
| string
|
|
21681
|
+
| (string | null)
|
|
21593
21682
|
| undefined
|
|
21594
21683
|
/** Visionline-specific metadata for the credential. */
|
|
21595
21684
|
visionline_metadata?:
|
|
@@ -21746,11 +21835,11 @@ export interface Routes {
|
|
|
21746
21835
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
21747
21836
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
21748
21837
|
is_latest_desired_state_synced_with_provider?:
|
|
21749
|
-
| boolean
|
|
21838
|
+
| (boolean | null)
|
|
21750
21839
|
| undefined
|
|
21751
21840
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
21752
21841
|
latest_desired_state_synced_with_provider_at?:
|
|
21753
|
-
| string
|
|
21842
|
+
| (string | null)
|
|
21754
21843
|
| undefined
|
|
21755
21844
|
/** Visionline-specific metadata for the credential. */
|
|
21756
21845
|
visionline_metadata?:
|
|
@@ -21860,11 +21949,11 @@ export interface Routes {
|
|
|
21860
21949
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
21861
21950
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
21862
21951
|
is_latest_desired_state_synced_with_provider?:
|
|
21863
|
-
| boolean
|
|
21952
|
+
| (boolean | null)
|
|
21864
21953
|
| undefined
|
|
21865
21954
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
21866
21955
|
latest_desired_state_synced_with_provider_at?:
|
|
21867
|
-
| string
|
|
21956
|
+
| (string | null)
|
|
21868
21957
|
| undefined
|
|
21869
21958
|
/** Visionline-specific metadata for the credential. */
|
|
21870
21959
|
visionline_metadata?:
|
|
@@ -23060,7 +23149,10 @@ export interface Routes {
|
|
|
23060
23149
|
/** Date and time at which the thermostat schedule was created. */
|
|
23061
23150
|
created_at: string
|
|
23062
23151
|
/** 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. */
|
|
23063
|
-
errors
|
|
23152
|
+
errors: Array<{
|
|
23153
|
+
error_code: string
|
|
23154
|
+
message: string
|
|
23155
|
+
}>
|
|
23064
23156
|
} | null)
|
|
23065
23157
|
| undefined
|
|
23066
23158
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -23762,7 +23854,10 @@ export interface Routes {
|
|
|
23762
23854
|
/** Date and time at which the thermostat schedule was created. */
|
|
23763
23855
|
created_at: string
|
|
23764
23856
|
/** 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. */
|
|
23765
|
-
errors
|
|
23857
|
+
errors: Array<{
|
|
23858
|
+
error_code: string
|
|
23859
|
+
message: string
|
|
23860
|
+
}>
|
|
23766
23861
|
} | null)
|
|
23767
23862
|
| undefined
|
|
23768
23863
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -24046,11 +24141,11 @@ export interface Routes {
|
|
|
24046
24141
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
24047
24142
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
24048
24143
|
is_latest_desired_state_synced_with_provider?:
|
|
24049
|
-
| boolean
|
|
24144
|
+
| (boolean | null)
|
|
24050
24145
|
| undefined
|
|
24051
24146
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
24052
24147
|
latest_desired_state_synced_with_provider_at?:
|
|
24053
|
-
| string
|
|
24148
|
+
| (string | null)
|
|
24054
24149
|
| undefined
|
|
24055
24150
|
/** Visionline-specific metadata for the credential. */
|
|
24056
24151
|
visionline_metadata?:
|
|
@@ -24160,11 +24255,11 @@ export interface Routes {
|
|
|
24160
24255
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
24161
24256
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
24162
24257
|
is_latest_desired_state_synced_with_provider?:
|
|
24163
|
-
| boolean
|
|
24258
|
+
| (boolean | null)
|
|
24164
24259
|
| undefined
|
|
24165
24260
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
24166
24261
|
latest_desired_state_synced_with_provider_at?:
|
|
24167
|
-
| string
|
|
24262
|
+
| (string | null)
|
|
24168
24263
|
| undefined
|
|
24169
24264
|
/** Visionline-specific metadata for the credential. */
|
|
24170
24265
|
visionline_metadata?:
|
|
@@ -24321,11 +24416,11 @@ export interface Routes {
|
|
|
24321
24416
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
24322
24417
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
24323
24418
|
is_latest_desired_state_synced_with_provider?:
|
|
24324
|
-
| boolean
|
|
24419
|
+
| (boolean | null)
|
|
24325
24420
|
| undefined
|
|
24326
24421
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
24327
24422
|
latest_desired_state_synced_with_provider_at?:
|
|
24328
|
-
| string
|
|
24423
|
+
| (string | null)
|
|
24329
24424
|
| undefined
|
|
24330
24425
|
/** Visionline-specific metadata for the credential. */
|
|
24331
24426
|
visionline_metadata?:
|
|
@@ -24435,11 +24530,11 @@ export interface Routes {
|
|
|
24435
24530
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
24436
24531
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
24437
24532
|
is_latest_desired_state_synced_with_provider?:
|
|
24438
|
-
| boolean
|
|
24533
|
+
| (boolean | null)
|
|
24439
24534
|
| undefined
|
|
24440
24535
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
24441
24536
|
latest_desired_state_synced_with_provider_at?:
|
|
24442
|
-
| string
|
|
24537
|
+
| (string | null)
|
|
24443
24538
|
| undefined
|
|
24444
24539
|
/** Visionline-specific metadata for the credential. */
|
|
24445
24540
|
visionline_metadata?:
|
|
@@ -25004,11 +25099,11 @@ export interface Routes {
|
|
|
25004
25099
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
25005
25100
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
25006
25101
|
is_latest_desired_state_synced_with_provider?:
|
|
25007
|
-
| boolean
|
|
25102
|
+
| (boolean | null)
|
|
25008
25103
|
| undefined
|
|
25009
25104
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
25010
25105
|
latest_desired_state_synced_with_provider_at?:
|
|
25011
|
-
| string
|
|
25106
|
+
| (string | null)
|
|
25012
25107
|
| undefined
|
|
25013
25108
|
/** Visionline-specific metadata for the credential. */
|
|
25014
25109
|
visionline_metadata?:
|
|
@@ -25118,11 +25213,11 @@ export interface Routes {
|
|
|
25118
25213
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
25119
25214
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
25120
25215
|
is_latest_desired_state_synced_with_provider?:
|
|
25121
|
-
| boolean
|
|
25216
|
+
| (boolean | null)
|
|
25122
25217
|
| undefined
|
|
25123
25218
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
25124
25219
|
latest_desired_state_synced_with_provider_at?:
|
|
25125
|
-
| string
|
|
25220
|
+
| (string | null)
|
|
25126
25221
|
| undefined
|
|
25127
25222
|
/** Visionline-specific metadata for the credential. */
|
|
25128
25223
|
visionline_metadata?:
|
|
@@ -25279,11 +25374,11 @@ export interface Routes {
|
|
|
25279
25374
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
25280
25375
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
25281
25376
|
is_latest_desired_state_synced_with_provider?:
|
|
25282
|
-
| boolean
|
|
25377
|
+
| (boolean | null)
|
|
25283
25378
|
| undefined
|
|
25284
25379
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
25285
25380
|
latest_desired_state_synced_with_provider_at?:
|
|
25286
|
-
| string
|
|
25381
|
+
| (string | null)
|
|
25287
25382
|
| undefined
|
|
25288
25383
|
/** Visionline-specific metadata for the credential. */
|
|
25289
25384
|
visionline_metadata?:
|
|
@@ -25393,11 +25488,11 @@ export interface Routes {
|
|
|
25393
25488
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
25394
25489
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
25395
25490
|
is_latest_desired_state_synced_with_provider?:
|
|
25396
|
-
| boolean
|
|
25491
|
+
| (boolean | null)
|
|
25397
25492
|
| undefined
|
|
25398
25493
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
25399
25494
|
latest_desired_state_synced_with_provider_at?:
|
|
25400
|
-
| string
|
|
25495
|
+
| (string | null)
|
|
25401
25496
|
| undefined
|
|
25402
25497
|
/** Visionline-specific metadata for the credential. */
|
|
25403
25498
|
visionline_metadata?:
|
|
@@ -26001,11 +26096,11 @@ export interface Routes {
|
|
|
26001
26096
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
26002
26097
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
26003
26098
|
is_latest_desired_state_synced_with_provider?:
|
|
26004
|
-
| boolean
|
|
26099
|
+
| (boolean | null)
|
|
26005
26100
|
| undefined
|
|
26006
26101
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
26007
26102
|
latest_desired_state_synced_with_provider_at?:
|
|
26008
|
-
| string
|
|
26103
|
+
| (string | null)
|
|
26009
26104
|
| undefined
|
|
26010
26105
|
/** Visionline-specific metadata for the credential. */
|
|
26011
26106
|
visionline_metadata?:
|
|
@@ -26115,11 +26210,11 @@ export interface Routes {
|
|
|
26115
26210
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
26116
26211
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
26117
26212
|
is_latest_desired_state_synced_with_provider?:
|
|
26118
|
-
| boolean
|
|
26213
|
+
| (boolean | null)
|
|
26119
26214
|
| undefined
|
|
26120
26215
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
26121
26216
|
latest_desired_state_synced_with_provider_at?:
|
|
26122
|
-
| string
|
|
26217
|
+
| (string | null)
|
|
26123
26218
|
| undefined
|
|
26124
26219
|
/** Visionline-specific metadata for the credential. */
|
|
26125
26220
|
visionline_metadata?:
|
|
@@ -26276,11 +26371,11 @@ export interface Routes {
|
|
|
26276
26371
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
26277
26372
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
26278
26373
|
is_latest_desired_state_synced_with_provider?:
|
|
26279
|
-
| boolean
|
|
26374
|
+
| (boolean | null)
|
|
26280
26375
|
| undefined
|
|
26281
26376
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
26282
26377
|
latest_desired_state_synced_with_provider_at?:
|
|
26283
|
-
| string
|
|
26378
|
+
| (string | null)
|
|
26284
26379
|
| undefined
|
|
26285
26380
|
/** Visionline-specific metadata for the credential. */
|
|
26286
26381
|
visionline_metadata?:
|
|
@@ -26390,11 +26485,11 @@ export interface Routes {
|
|
|
26390
26485
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
26391
26486
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
26392
26487
|
is_latest_desired_state_synced_with_provider?:
|
|
26393
|
-
| boolean
|
|
26488
|
+
| (boolean | null)
|
|
26394
26489
|
| undefined
|
|
26395
26490
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
26396
26491
|
latest_desired_state_synced_with_provider_at?:
|
|
26397
|
-
| string
|
|
26492
|
+
| (string | null)
|
|
26398
26493
|
| undefined
|
|
26399
26494
|
/** Visionline-specific metadata for the credential. */
|
|
26400
26495
|
visionline_metadata?:
|
|
@@ -27157,11 +27252,11 @@ export interface Routes {
|
|
|
27157
27252
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
27158
27253
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
27159
27254
|
is_latest_desired_state_synced_with_provider?:
|
|
27160
|
-
| boolean
|
|
27255
|
+
| (boolean | null)
|
|
27161
27256
|
| undefined
|
|
27162
27257
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
27163
27258
|
latest_desired_state_synced_with_provider_at?:
|
|
27164
|
-
| string
|
|
27259
|
+
| (string | null)
|
|
27165
27260
|
| undefined
|
|
27166
27261
|
/** Visionline-specific metadata for the credential. */
|
|
27167
27262
|
visionline_metadata?:
|
|
@@ -27271,11 +27366,11 @@ export interface Routes {
|
|
|
27271
27366
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
27272
27367
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
27273
27368
|
is_latest_desired_state_synced_with_provider?:
|
|
27274
|
-
| boolean
|
|
27369
|
+
| (boolean | null)
|
|
27275
27370
|
| undefined
|
|
27276
27371
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
27277
27372
|
latest_desired_state_synced_with_provider_at?:
|
|
27278
|
-
| string
|
|
27373
|
+
| (string | null)
|
|
27279
27374
|
| undefined
|
|
27280
27375
|
/** Visionline-specific metadata for the credential. */
|
|
27281
27376
|
visionline_metadata?:
|
|
@@ -27432,11 +27527,11 @@ export interface Routes {
|
|
|
27432
27527
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
27433
27528
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
27434
27529
|
is_latest_desired_state_synced_with_provider?:
|
|
27435
|
-
| boolean
|
|
27530
|
+
| (boolean | null)
|
|
27436
27531
|
| undefined
|
|
27437
27532
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
27438
27533
|
latest_desired_state_synced_with_provider_at?:
|
|
27439
|
-
| string
|
|
27534
|
+
| (string | null)
|
|
27440
27535
|
| undefined
|
|
27441
27536
|
/** Visionline-specific metadata for the credential. */
|
|
27442
27537
|
visionline_metadata?:
|
|
@@ -27546,11 +27641,11 @@ export interface Routes {
|
|
|
27546
27641
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
27547
27642
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
27548
27643
|
is_latest_desired_state_synced_with_provider?:
|
|
27549
|
-
| boolean
|
|
27644
|
+
| (boolean | null)
|
|
27550
27645
|
| undefined
|
|
27551
27646
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
27552
27647
|
latest_desired_state_synced_with_provider_at?:
|
|
27553
|
-
| string
|
|
27648
|
+
| (string | null)
|
|
27554
27649
|
| undefined
|
|
27555
27650
|
/** Visionline-specific metadata for the credential. */
|
|
27556
27651
|
visionline_metadata?:
|
|
@@ -28111,11 +28206,11 @@ export interface Routes {
|
|
|
28111
28206
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
28112
28207
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
28113
28208
|
is_latest_desired_state_synced_with_provider?:
|
|
28114
|
-
| boolean
|
|
28209
|
+
| (boolean | null)
|
|
28115
28210
|
| undefined
|
|
28116
28211
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
28117
28212
|
latest_desired_state_synced_with_provider_at?:
|
|
28118
|
-
| string
|
|
28213
|
+
| (string | null)
|
|
28119
28214
|
| undefined
|
|
28120
28215
|
/** Visionline-specific metadata for the credential. */
|
|
28121
28216
|
visionline_metadata?:
|
|
@@ -28225,11 +28320,11 @@ export interface Routes {
|
|
|
28225
28320
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
28226
28321
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
28227
28322
|
is_latest_desired_state_synced_with_provider?:
|
|
28228
|
-
| boolean
|
|
28323
|
+
| (boolean | null)
|
|
28229
28324
|
| undefined
|
|
28230
28325
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
28231
28326
|
latest_desired_state_synced_with_provider_at?:
|
|
28232
|
-
| string
|
|
28327
|
+
| (string | null)
|
|
28233
28328
|
| undefined
|
|
28234
28329
|
/** Visionline-specific metadata for the credential. */
|
|
28235
28330
|
visionline_metadata?:
|
|
@@ -28386,11 +28481,11 @@ export interface Routes {
|
|
|
28386
28481
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
28387
28482
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
28388
28483
|
is_latest_desired_state_synced_with_provider?:
|
|
28389
|
-
| boolean
|
|
28484
|
+
| (boolean | null)
|
|
28390
28485
|
| undefined
|
|
28391
28486
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
28392
28487
|
latest_desired_state_synced_with_provider_at?:
|
|
28393
|
-
| string
|
|
28488
|
+
| (string | null)
|
|
28394
28489
|
| undefined
|
|
28395
28490
|
/** Visionline-specific metadata for the credential. */
|
|
28396
28491
|
visionline_metadata?:
|
|
@@ -28500,11 +28595,11 @@ export interface Routes {
|
|
|
28500
28595
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
28501
28596
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
28502
28597
|
is_latest_desired_state_synced_with_provider?:
|
|
28503
|
-
| boolean
|
|
28598
|
+
| (boolean | null)
|
|
28504
28599
|
| undefined
|
|
28505
28600
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
28506
28601
|
latest_desired_state_synced_with_provider_at?:
|
|
28507
|
-
| string
|
|
28602
|
+
| (string | null)
|
|
28508
28603
|
| undefined
|
|
28509
28604
|
/** Visionline-specific metadata for the credential. */
|
|
28510
28605
|
visionline_metadata?:
|
|
@@ -29542,7 +29637,10 @@ export interface Routes {
|
|
|
29542
29637
|
/** Date and time at which the thermostat schedule was created. */
|
|
29543
29638
|
created_at: string
|
|
29544
29639
|
/** 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. */
|
|
29545
|
-
errors
|
|
29640
|
+
errors: Array<{
|
|
29641
|
+
error_code: string
|
|
29642
|
+
message: string
|
|
29643
|
+
}>
|
|
29546
29644
|
} | null)
|
|
29547
29645
|
| undefined
|
|
29548
29646
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -29827,11 +29925,11 @@ export interface Routes {
|
|
|
29827
29925
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
29828
29926
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
29829
29927
|
is_latest_desired_state_synced_with_provider?:
|
|
29830
|
-
| boolean
|
|
29928
|
+
| (boolean | null)
|
|
29831
29929
|
| undefined
|
|
29832
29930
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
29833
29931
|
latest_desired_state_synced_with_provider_at?:
|
|
29834
|
-
| string
|
|
29932
|
+
| (string | null)
|
|
29835
29933
|
| undefined
|
|
29836
29934
|
/** Visionline-specific metadata for the credential. */
|
|
29837
29935
|
visionline_metadata?:
|
|
@@ -29941,11 +30039,11 @@ export interface Routes {
|
|
|
29941
30039
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
29942
30040
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
29943
30041
|
is_latest_desired_state_synced_with_provider?:
|
|
29944
|
-
| boolean
|
|
30042
|
+
| (boolean | null)
|
|
29945
30043
|
| undefined
|
|
29946
30044
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
29947
30045
|
latest_desired_state_synced_with_provider_at?:
|
|
29948
|
-
| string
|
|
30046
|
+
| (string | null)
|
|
29949
30047
|
| undefined
|
|
29950
30048
|
/** Visionline-specific metadata for the credential. */
|
|
29951
30049
|
visionline_metadata?:
|
|
@@ -30102,11 +30200,11 @@ export interface Routes {
|
|
|
30102
30200
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
30103
30201
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
30104
30202
|
is_latest_desired_state_synced_with_provider?:
|
|
30105
|
-
| boolean
|
|
30203
|
+
| (boolean | null)
|
|
30106
30204
|
| undefined
|
|
30107
30205
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
30108
30206
|
latest_desired_state_synced_with_provider_at?:
|
|
30109
|
-
| string
|
|
30207
|
+
| (string | null)
|
|
30110
30208
|
| undefined
|
|
30111
30209
|
/** Visionline-specific metadata for the credential. */
|
|
30112
30210
|
visionline_metadata?:
|
|
@@ -30216,11 +30314,11 @@ export interface Routes {
|
|
|
30216
30314
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
30217
30315
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
30218
30316
|
is_latest_desired_state_synced_with_provider?:
|
|
30219
|
-
| boolean
|
|
30317
|
+
| (boolean | null)
|
|
30220
30318
|
| undefined
|
|
30221
30319
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
30222
30320
|
latest_desired_state_synced_with_provider_at?:
|
|
30223
|
-
| string
|
|
30321
|
+
| (string | null)
|
|
30224
30322
|
| undefined
|
|
30225
30323
|
/** Visionline-specific metadata for the credential. */
|
|
30226
30324
|
visionline_metadata?:
|
|
@@ -30785,11 +30883,11 @@ export interface Routes {
|
|
|
30785
30883
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
30786
30884
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
30787
30885
|
is_latest_desired_state_synced_with_provider?:
|
|
30788
|
-
| boolean
|
|
30886
|
+
| (boolean | null)
|
|
30789
30887
|
| undefined
|
|
30790
30888
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
30791
30889
|
latest_desired_state_synced_with_provider_at?:
|
|
30792
|
-
| string
|
|
30890
|
+
| (string | null)
|
|
30793
30891
|
| undefined
|
|
30794
30892
|
/** Visionline-specific metadata for the credential. */
|
|
30795
30893
|
visionline_metadata?:
|
|
@@ -30899,11 +30997,11 @@ export interface Routes {
|
|
|
30899
30997
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
30900
30998
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
30901
30999
|
is_latest_desired_state_synced_with_provider?:
|
|
30902
|
-
| boolean
|
|
31000
|
+
| (boolean | null)
|
|
30903
31001
|
| undefined
|
|
30904
31002
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
30905
31003
|
latest_desired_state_synced_with_provider_at?:
|
|
30906
|
-
| string
|
|
31004
|
+
| (string | null)
|
|
30907
31005
|
| undefined
|
|
30908
31006
|
/** Visionline-specific metadata for the credential. */
|
|
30909
31007
|
visionline_metadata?:
|
|
@@ -31060,11 +31158,11 @@ export interface Routes {
|
|
|
31060
31158
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
31061
31159
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
31062
31160
|
is_latest_desired_state_synced_with_provider?:
|
|
31063
|
-
| boolean
|
|
31161
|
+
| (boolean | null)
|
|
31064
31162
|
| undefined
|
|
31065
31163
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
31066
31164
|
latest_desired_state_synced_with_provider_at?:
|
|
31067
|
-
| string
|
|
31165
|
+
| (string | null)
|
|
31068
31166
|
| undefined
|
|
31069
31167
|
/** Visionline-specific metadata for the credential. */
|
|
31070
31168
|
visionline_metadata?:
|
|
@@ -31174,11 +31272,11 @@ export interface Routes {
|
|
|
31174
31272
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
31175
31273
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
31176
31274
|
is_latest_desired_state_synced_with_provider?:
|
|
31177
|
-
| boolean
|
|
31275
|
+
| (boolean | null)
|
|
31178
31276
|
| undefined
|
|
31179
31277
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
31180
31278
|
latest_desired_state_synced_with_provider_at?:
|
|
31181
|
-
| string
|
|
31279
|
+
| (string | null)
|
|
31182
31280
|
| undefined
|
|
31183
31281
|
/** Visionline-specific metadata for the credential. */
|
|
31184
31282
|
visionline_metadata?:
|
|
@@ -32340,7 +32438,10 @@ export interface Routes {
|
|
|
32340
32438
|
/** Date and time at which the thermostat schedule was created. */
|
|
32341
32439
|
created_at: string
|
|
32342
32440
|
/** 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. */
|
|
32343
|
-
errors
|
|
32441
|
+
errors: Array<{
|
|
32442
|
+
error_code: string
|
|
32443
|
+
message: string
|
|
32444
|
+
}>
|
|
32344
32445
|
} | null)
|
|
32345
32446
|
| undefined
|
|
32346
32447
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -33042,7 +33143,10 @@ export interface Routes {
|
|
|
33042
33143
|
/** Date and time at which the thermostat schedule was created. */
|
|
33043
33144
|
created_at: string
|
|
33044
33145
|
/** 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. */
|
|
33045
|
-
errors
|
|
33146
|
+
errors: Array<{
|
|
33147
|
+
error_code: string
|
|
33148
|
+
message: string
|
|
33149
|
+
}>
|
|
33046
33150
|
} | null)
|
|
33047
33151
|
| undefined
|
|
33048
33152
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -33323,11 +33427,11 @@ export interface Routes {
|
|
|
33323
33427
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
33324
33428
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
33325
33429
|
is_latest_desired_state_synced_with_provider?:
|
|
33326
|
-
| boolean
|
|
33430
|
+
| (boolean | null)
|
|
33327
33431
|
| undefined
|
|
33328
33432
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
33329
33433
|
latest_desired_state_synced_with_provider_at?:
|
|
33330
|
-
| string
|
|
33434
|
+
| (string | null)
|
|
33331
33435
|
| undefined
|
|
33332
33436
|
/** Visionline-specific metadata for the credential. */
|
|
33333
33437
|
visionline_metadata?:
|
|
@@ -33437,11 +33541,11 @@ export interface Routes {
|
|
|
33437
33541
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
33438
33542
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
33439
33543
|
is_latest_desired_state_synced_with_provider?:
|
|
33440
|
-
| boolean
|
|
33544
|
+
| (boolean | null)
|
|
33441
33545
|
| undefined
|
|
33442
33546
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
33443
33547
|
latest_desired_state_synced_with_provider_at?:
|
|
33444
|
-
| string
|
|
33548
|
+
| (string | null)
|
|
33445
33549
|
| undefined
|
|
33446
33550
|
/** Visionline-specific metadata for the credential. */
|
|
33447
33551
|
visionline_metadata?:
|
|
@@ -33598,11 +33702,11 @@ export interface Routes {
|
|
|
33598
33702
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
33599
33703
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
33600
33704
|
is_latest_desired_state_synced_with_provider?:
|
|
33601
|
-
| boolean
|
|
33705
|
+
| (boolean | null)
|
|
33602
33706
|
| undefined
|
|
33603
33707
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
33604
33708
|
latest_desired_state_synced_with_provider_at?:
|
|
33605
|
-
| string
|
|
33709
|
+
| (string | null)
|
|
33606
33710
|
| undefined
|
|
33607
33711
|
/** Visionline-specific metadata for the credential. */
|
|
33608
33712
|
visionline_metadata?:
|
|
@@ -33712,11 +33816,11 @@ export interface Routes {
|
|
|
33712
33816
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
33713
33817
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
33714
33818
|
is_latest_desired_state_synced_with_provider?:
|
|
33715
|
-
| boolean
|
|
33819
|
+
| (boolean | null)
|
|
33716
33820
|
| undefined
|
|
33717
33821
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
33718
33822
|
latest_desired_state_synced_with_provider_at?:
|
|
33719
|
-
| string
|
|
33823
|
+
| (string | null)
|
|
33720
33824
|
| undefined
|
|
33721
33825
|
/** Visionline-specific metadata for the credential. */
|
|
33722
33826
|
visionline_metadata?:
|
|
@@ -34109,7 +34213,10 @@ export interface Routes {
|
|
|
34109
34213
|
/** Date and time at which the thermostat schedule was created. */
|
|
34110
34214
|
created_at: string
|
|
34111
34215
|
/** 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. */
|
|
34112
|
-
errors
|
|
34216
|
+
errors: Array<{
|
|
34217
|
+
error_code: string
|
|
34218
|
+
message: string
|
|
34219
|
+
}>
|
|
34113
34220
|
}
|
|
34114
34221
|
}
|
|
34115
34222
|
}
|
|
@@ -34157,7 +34264,10 @@ export interface Routes {
|
|
|
34157
34264
|
/** Date and time at which the thermostat schedule was created. */
|
|
34158
34265
|
created_at: string
|
|
34159
34266
|
/** 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. */
|
|
34160
|
-
errors
|
|
34267
|
+
errors: Array<{
|
|
34268
|
+
error_code: string
|
|
34269
|
+
message: string
|
|
34270
|
+
}>
|
|
34161
34271
|
}
|
|
34162
34272
|
}
|
|
34163
34273
|
}
|
|
@@ -34194,7 +34304,10 @@ export interface Routes {
|
|
|
34194
34304
|
/** Date and time at which the thermostat schedule was created. */
|
|
34195
34305
|
created_at: string
|
|
34196
34306
|
/** 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. */
|
|
34197
|
-
errors
|
|
34307
|
+
errors: Array<{
|
|
34308
|
+
error_code: string
|
|
34309
|
+
message: string
|
|
34310
|
+
}>
|
|
34198
34311
|
}>
|
|
34199
34312
|
}
|
|
34200
34313
|
}
|
|
@@ -34448,11 +34561,11 @@ export interface Routes {
|
|
|
34448
34561
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
34449
34562
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
34450
34563
|
is_latest_desired_state_synced_with_provider?:
|
|
34451
|
-
| boolean
|
|
34564
|
+
| (boolean | null)
|
|
34452
34565
|
| undefined
|
|
34453
34566
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
34454
34567
|
latest_desired_state_synced_with_provider_at?:
|
|
34455
|
-
| string
|
|
34568
|
+
| (string | null)
|
|
34456
34569
|
| undefined
|
|
34457
34570
|
/** Visionline-specific metadata for the credential. */
|
|
34458
34571
|
visionline_metadata?:
|
|
@@ -34562,11 +34675,11 @@ export interface Routes {
|
|
|
34562
34675
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
34563
34676
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
34564
34677
|
is_latest_desired_state_synced_with_provider?:
|
|
34565
|
-
| boolean
|
|
34678
|
+
| (boolean | null)
|
|
34566
34679
|
| undefined
|
|
34567
34680
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
34568
34681
|
latest_desired_state_synced_with_provider_at?:
|
|
34569
|
-
| string
|
|
34682
|
+
| (string | null)
|
|
34570
34683
|
| undefined
|
|
34571
34684
|
/** Visionline-specific metadata for the credential. */
|
|
34572
34685
|
visionline_metadata?:
|
|
@@ -34723,11 +34836,11 @@ export interface Routes {
|
|
|
34723
34836
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
34724
34837
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
34725
34838
|
is_latest_desired_state_synced_with_provider?:
|
|
34726
|
-
| boolean
|
|
34839
|
+
| (boolean | null)
|
|
34727
34840
|
| undefined
|
|
34728
34841
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
34729
34842
|
latest_desired_state_synced_with_provider_at?:
|
|
34730
|
-
| string
|
|
34843
|
+
| (string | null)
|
|
34731
34844
|
| undefined
|
|
34732
34845
|
/** Visionline-specific metadata for the credential. */
|
|
34733
34846
|
visionline_metadata?:
|
|
@@ -34837,11 +34950,11 @@ export interface Routes {
|
|
|
34837
34950
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
34838
34951
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
34839
34952
|
is_latest_desired_state_synced_with_provider?:
|
|
34840
|
-
| boolean
|
|
34953
|
+
| (boolean | null)
|
|
34841
34954
|
| undefined
|
|
34842
34955
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
34843
34956
|
latest_desired_state_synced_with_provider_at?:
|
|
34844
|
-
| string
|
|
34957
|
+
| (string | null)
|
|
34845
34958
|
| undefined
|
|
34846
34959
|
/** Visionline-specific metadata for the credential. */
|
|
34847
34960
|
visionline_metadata?:
|
|
@@ -35429,11 +35542,11 @@ export interface Routes {
|
|
|
35429
35542
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
35430
35543
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
35431
35544
|
is_latest_desired_state_synced_with_provider?:
|
|
35432
|
-
| boolean
|
|
35545
|
+
| (boolean | null)
|
|
35433
35546
|
| undefined
|
|
35434
35547
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
35435
35548
|
latest_desired_state_synced_with_provider_at?:
|
|
35436
|
-
| string
|
|
35549
|
+
| (string | null)
|
|
35437
35550
|
| undefined
|
|
35438
35551
|
/** Visionline-specific metadata for the credential. */
|
|
35439
35552
|
visionline_metadata?:
|
|
@@ -35543,11 +35656,11 @@ export interface Routes {
|
|
|
35543
35656
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
35544
35657
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
35545
35658
|
is_latest_desired_state_synced_with_provider?:
|
|
35546
|
-
| boolean
|
|
35659
|
+
| (boolean | null)
|
|
35547
35660
|
| undefined
|
|
35548
35661
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
35549
35662
|
latest_desired_state_synced_with_provider_at?:
|
|
35550
|
-
| string
|
|
35663
|
+
| (string | null)
|
|
35551
35664
|
| undefined
|
|
35552
35665
|
/** Visionline-specific metadata for the credential. */
|
|
35553
35666
|
visionline_metadata?:
|
|
@@ -35704,11 +35817,11 @@ export interface Routes {
|
|
|
35704
35817
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
35705
35818
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
35706
35819
|
is_latest_desired_state_synced_with_provider?:
|
|
35707
|
-
| boolean
|
|
35820
|
+
| (boolean | null)
|
|
35708
35821
|
| undefined
|
|
35709
35822
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
35710
35823
|
latest_desired_state_synced_with_provider_at?:
|
|
35711
|
-
| string
|
|
35824
|
+
| (string | null)
|
|
35712
35825
|
| undefined
|
|
35713
35826
|
/** Visionline-specific metadata for the credential. */
|
|
35714
35827
|
visionline_metadata?:
|
|
@@ -35818,11 +35931,11 @@ export interface Routes {
|
|
|
35818
35931
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
35819
35932
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
35820
35933
|
is_latest_desired_state_synced_with_provider?:
|
|
35821
|
-
| boolean
|
|
35934
|
+
| (boolean | null)
|
|
35822
35935
|
| undefined
|
|
35823
35936
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
35824
35937
|
latest_desired_state_synced_with_provider_at?:
|
|
35825
|
-
| string
|
|
35938
|
+
| (string | null)
|
|
35826
35939
|
| undefined
|
|
35827
35940
|
/** Visionline-specific metadata for the credential. */
|
|
35828
35941
|
visionline_metadata?:
|
|
@@ -37094,7 +37207,10 @@ export interface Routes {
|
|
|
37094
37207
|
/** Date and time at which the thermostat schedule was created. */
|
|
37095
37208
|
created_at: string
|
|
37096
37209
|
/** 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. */
|
|
37097
|
-
errors
|
|
37210
|
+
errors: Array<{
|
|
37211
|
+
error_code: string
|
|
37212
|
+
message: string
|
|
37213
|
+
}>
|
|
37098
37214
|
} | null)
|
|
37099
37215
|
| undefined
|
|
37100
37216
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -37798,7 +37914,10 @@ export interface Routes {
|
|
|
37798
37914
|
/** Date and time at which the thermostat schedule was created. */
|
|
37799
37915
|
created_at: string
|
|
37800
37916
|
/** 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. */
|
|
37801
|
-
errors
|
|
37917
|
+
errors: Array<{
|
|
37918
|
+
error_code: string
|
|
37919
|
+
message: string
|
|
37920
|
+
}>
|
|
37802
37921
|
} | null)
|
|
37803
37922
|
| undefined
|
|
37804
37923
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -38098,9 +38217,13 @@ export interface Routes {
|
|
|
38098
38217
|
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
38099
38218
|
user_identity_phone_number?: (string | null) | undefined
|
|
38100
38219
|
/** */
|
|
38101
|
-
latest_desired_state_synced_with_provider_at?:
|
|
38220
|
+
latest_desired_state_synced_with_provider_at?:
|
|
38221
|
+
| (string | null)
|
|
38222
|
+
| undefined
|
|
38102
38223
|
/** */
|
|
38103
|
-
is_latest_desired_state_synced_with_provider?:
|
|
38224
|
+
is_latest_desired_state_synced_with_provider?:
|
|
38225
|
+
| (boolean | null)
|
|
38226
|
+
| undefined
|
|
38104
38227
|
/** Warnings associated with the `acs_user`. */
|
|
38105
38228
|
warnings: Array<
|
|
38106
38229
|
| {
|
|
@@ -38558,11 +38681,11 @@ export interface Routes {
|
|
|
38558
38681
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
38559
38682
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
38560
38683
|
is_latest_desired_state_synced_with_provider?:
|
|
38561
|
-
| boolean
|
|
38684
|
+
| (boolean | null)
|
|
38562
38685
|
| undefined
|
|
38563
38686
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
38564
38687
|
latest_desired_state_synced_with_provider_at?:
|
|
38565
|
-
| string
|
|
38688
|
+
| (string | null)
|
|
38566
38689
|
| undefined
|
|
38567
38690
|
/** Visionline-specific metadata for the credential. */
|
|
38568
38691
|
visionline_metadata?:
|
|
@@ -38672,11 +38795,11 @@ export interface Routes {
|
|
|
38672
38795
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
38673
38796
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
38674
38797
|
is_latest_desired_state_synced_with_provider?:
|
|
38675
|
-
| boolean
|
|
38798
|
+
| (boolean | null)
|
|
38676
38799
|
| undefined
|
|
38677
38800
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
38678
38801
|
latest_desired_state_synced_with_provider_at?:
|
|
38679
|
-
| string
|
|
38802
|
+
| (string | null)
|
|
38680
38803
|
| undefined
|
|
38681
38804
|
/** Visionline-specific metadata for the credential. */
|
|
38682
38805
|
visionline_metadata?:
|
|
@@ -38833,11 +38956,11 @@ export interface Routes {
|
|
|
38833
38956
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
38834
38957
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
38835
38958
|
is_latest_desired_state_synced_with_provider?:
|
|
38836
|
-
| boolean
|
|
38959
|
+
| (boolean | null)
|
|
38837
38960
|
| undefined
|
|
38838
38961
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
38839
38962
|
latest_desired_state_synced_with_provider_at?:
|
|
38840
|
-
| string
|
|
38963
|
+
| (string | null)
|
|
38841
38964
|
| undefined
|
|
38842
38965
|
/** Visionline-specific metadata for the credential. */
|
|
38843
38966
|
visionline_metadata?:
|
|
@@ -38947,11 +39070,11 @@ export interface Routes {
|
|
|
38947
39070
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
38948
39071
|
/** Indicates whether the latest state of the credential has been synced from Seam to the provider. */
|
|
38949
39072
|
is_latest_desired_state_synced_with_provider?:
|
|
38950
|
-
| boolean
|
|
39073
|
+
| (boolean | null)
|
|
38951
39074
|
| undefined
|
|
38952
39075
|
/** Date and time at which the state of the credential was most recently synced from Seam to the provider. */
|
|
38953
39076
|
latest_desired_state_synced_with_provider_at?:
|
|
38954
|
-
| string
|
|
39077
|
+
| (string | null)
|
|
38955
39078
|
| undefined
|
|
38956
39079
|
/** Visionline-specific metadata for the credential. */
|
|
38957
39080
|
visionline_metadata?:
|