@seamapi/types 1.916.0 → 1.917.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +603 -160
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +872 -15
- package/dist/index.cjs +603 -160
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-access-group.js +4 -2
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.js +12 -3
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.js +15 -5
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/acs-user.js +8 -2
- package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -1
- package/lib/seam/connect/models/connect-webviews/connect-webview.js +1 -1
- package/lib/seam/connect/models/connect-webviews/connect-webview.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.js +8 -4
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/devices/device.js +60 -20
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/phone.js +10 -6
- package/lib/seam/connect/models/devices/phone.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.js +3 -1
- package/lib/seam/connect/models/devices/unmanaged-device.js.map +1 -1
- package/lib/seam/connect/models/events/access-codes.js +7 -3
- package/lib/seam/connect/models/events/access-codes.js.map +1 -1
- package/lib/seam/connect/models/events/acs/entrances.js +3 -5
- package/lib/seam/connect/models/events/acs/entrances.js.map +1 -1
- package/lib/seam/connect/models/events/acs/users.js +6 -5
- package/lib/seam/connect/models/events/acs/users.js.map +1 -1
- package/lib/seam/connect/models/events/common.js +8 -4
- package/lib/seam/connect/models/events/common.js.map +1 -1
- package/lib/seam/connect/models/thermostats/modes.js +9 -16
- package/lib/seam/connect/models/thermostats/modes.js.map +1 -1
- package/lib/seam/connect/models/user-identities/user-identity.js +9 -2
- package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
- package/lib/seam/connect/openapi.js +494 -96
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +872 -15
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +4 -2
- package/src/lib/seam/connect/models/acs/acs-credential.ts +14 -3
- package/src/lib/seam/connect/models/acs/acs-system.ts +25 -5
- package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +10 -2
- package/src/lib/seam/connect/models/connect-webviews/connect-webview.ts +3 -1
- package/src/lib/seam/connect/models/devices/device-provider.ts +10 -4
- package/src/lib/seam/connect/models/devices/device.ts +90 -20
- package/src/lib/seam/connect/models/devices/phone.ts +12 -6
- package/src/lib/seam/connect/models/devices/unmanaged-device.ts +3 -1
- package/src/lib/seam/connect/models/events/access-codes.ts +18 -14
- package/src/lib/seam/connect/models/events/acs/entrances.ts +3 -5
- package/src/lib/seam/connect/models/events/acs/users.ts +6 -5
- package/src/lib/seam/connect/models/events/common.ts +32 -24
- package/src/lib/seam/connect/models/thermostats/modes.ts +15 -16
- package/src/lib/seam/connect/models/user-identities/user-identity.ts +9 -2
- package/src/lib/seam/connect/openapi.ts +641 -96
- package/src/lib/seam/connect/route-types.ts +872 -15
|
@@ -161,6 +161,7 @@ export type Routes = {
|
|
|
161
161
|
acs_credential_on_encoder: {
|
|
162
162
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
163
163
|
created_at: string | null
|
|
164
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
164
165
|
is_issued: boolean | null
|
|
165
166
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
166
167
|
starts_at: string | null
|
|
@@ -210,6 +211,7 @@ export type Routes = {
|
|
|
210
211
|
user_identity_id?: string | undefined
|
|
211
212
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
212
213
|
connected_account_id: string
|
|
214
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
213
215
|
acs_credential_pool_id?: string | undefined
|
|
214
216
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
215
217
|
acs_system_id: string
|
|
@@ -366,6 +368,7 @@ export type Routes = {
|
|
|
366
368
|
endpoint_id?: string | undefined
|
|
367
369
|
}
|
|
368
370
|
| undefined
|
|
371
|
+
/** Indicates whether Seam manages the credential. */
|
|
369
372
|
is_managed: true
|
|
370
373
|
}
|
|
371
374
|
| {
|
|
@@ -377,6 +380,7 @@ export type Routes = {
|
|
|
377
380
|
user_identity_id?: string | undefined
|
|
378
381
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
379
382
|
connected_account_id: string
|
|
383
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
380
384
|
acs_credential_pool_id?: string | undefined
|
|
381
385
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
382
386
|
acs_system_id: string
|
|
@@ -624,6 +628,7 @@ export type Routes = {
|
|
|
624
628
|
user_identity_id?: string | undefined
|
|
625
629
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
626
630
|
connected_account_id: string
|
|
631
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
627
632
|
acs_credential_pool_id?: string | undefined
|
|
628
633
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
629
634
|
acs_system_id: string
|
|
@@ -774,6 +779,7 @@ export type Routes = {
|
|
|
774
779
|
endpoint_id?: string | undefined
|
|
775
780
|
}
|
|
776
781
|
| undefined
|
|
782
|
+
/** Indicates whether Seam manages the credential. */
|
|
777
783
|
is_managed: true
|
|
778
784
|
}
|
|
779
785
|
| {
|
|
@@ -785,6 +791,7 @@ export type Routes = {
|
|
|
785
791
|
user_identity_id?: string | undefined
|
|
786
792
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
787
793
|
connected_account_id: string
|
|
794
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
788
795
|
acs_credential_pool_id?: string | undefined
|
|
789
796
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
790
797
|
acs_system_id: string
|
|
@@ -1037,6 +1044,7 @@ export type Routes = {
|
|
|
1037
1044
|
user_identity_id?: string | undefined
|
|
1038
1045
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
1039
1046
|
connected_account_id: string
|
|
1047
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
1040
1048
|
acs_credential_pool_id?: string | undefined
|
|
1041
1049
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
1042
1050
|
acs_system_id: string
|
|
@@ -1187,6 +1195,7 @@ export type Routes = {
|
|
|
1187
1195
|
endpoint_id?: string | undefined
|
|
1188
1196
|
}
|
|
1189
1197
|
| undefined
|
|
1198
|
+
/** Indicates whether Seam manages the credential. */
|
|
1190
1199
|
is_managed: true
|
|
1191
1200
|
}
|
|
1192
1201
|
}
|
|
@@ -3292,6 +3301,7 @@ export type Routes = {
|
|
|
3292
3301
|
acs_credential_on_encoder: {
|
|
3293
3302
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
3294
3303
|
created_at: string | null
|
|
3304
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
3295
3305
|
is_issued: boolean | null
|
|
3296
3306
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
3297
3307
|
starts_at: string | null
|
|
@@ -3341,6 +3351,7 @@ export type Routes = {
|
|
|
3341
3351
|
user_identity_id?: string | undefined
|
|
3342
3352
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
3343
3353
|
connected_account_id: string
|
|
3354
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
3344
3355
|
acs_credential_pool_id?: string | undefined
|
|
3345
3356
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
3346
3357
|
acs_system_id: string
|
|
@@ -3497,6 +3508,7 @@ export type Routes = {
|
|
|
3497
3508
|
endpoint_id?: string | undefined
|
|
3498
3509
|
}
|
|
3499
3510
|
| undefined
|
|
3511
|
+
/** Indicates whether Seam manages the credential. */
|
|
3500
3512
|
is_managed: true
|
|
3501
3513
|
}
|
|
3502
3514
|
| {
|
|
@@ -3508,6 +3520,7 @@ export type Routes = {
|
|
|
3508
3520
|
user_identity_id?: string | undefined
|
|
3509
3521
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
3510
3522
|
connected_account_id: string
|
|
3523
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
3511
3524
|
acs_credential_pool_id?: string | undefined
|
|
3512
3525
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
3513
3526
|
acs_system_id: string
|
|
@@ -3755,6 +3768,7 @@ export type Routes = {
|
|
|
3755
3768
|
user_identity_id?: string | undefined
|
|
3756
3769
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
3757
3770
|
connected_account_id: string
|
|
3771
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
3758
3772
|
acs_credential_pool_id?: string | undefined
|
|
3759
3773
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
3760
3774
|
acs_system_id: string
|
|
@@ -3905,6 +3919,7 @@ export type Routes = {
|
|
|
3905
3919
|
endpoint_id?: string | undefined
|
|
3906
3920
|
}
|
|
3907
3921
|
| undefined
|
|
3922
|
+
/** Indicates whether Seam manages the credential. */
|
|
3908
3923
|
is_managed: true
|
|
3909
3924
|
}
|
|
3910
3925
|
| {
|
|
@@ -3916,6 +3931,7 @@ export type Routes = {
|
|
|
3916
3931
|
user_identity_id?: string | undefined
|
|
3917
3932
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
3918
3933
|
connected_account_id: string
|
|
3934
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
3919
3935
|
acs_credential_pool_id?: string | undefined
|
|
3920
3936
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
3921
3937
|
acs_system_id: string
|
|
@@ -4168,6 +4184,7 @@ export type Routes = {
|
|
|
4168
4184
|
user_identity_id?: string | undefined
|
|
4169
4185
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
4170
4186
|
connected_account_id: string
|
|
4187
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
4171
4188
|
acs_credential_pool_id?: string | undefined
|
|
4172
4189
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
4173
4190
|
acs_system_id: string
|
|
@@ -4318,6 +4335,7 @@ export type Routes = {
|
|
|
4318
4335
|
endpoint_id?: string | undefined
|
|
4319
4336
|
}
|
|
4320
4337
|
| undefined
|
|
4338
|
+
/** Indicates whether Seam manages the credential. */
|
|
4321
4339
|
is_managed: true
|
|
4322
4340
|
}
|
|
4323
4341
|
}
|
|
@@ -8263,6 +8281,7 @@ export type Routes = {
|
|
|
8263
8281
|
acs_credential_on_encoder: {
|
|
8264
8282
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
8265
8283
|
created_at: string | null
|
|
8284
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
8266
8285
|
is_issued: boolean | null
|
|
8267
8286
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
8268
8287
|
starts_at: string | null
|
|
@@ -8312,6 +8331,7 @@ export type Routes = {
|
|
|
8312
8331
|
user_identity_id?: string | undefined
|
|
8313
8332
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
8314
8333
|
connected_account_id: string
|
|
8334
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
8315
8335
|
acs_credential_pool_id?: string | undefined
|
|
8316
8336
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
8317
8337
|
acs_system_id: string
|
|
@@ -8468,6 +8488,7 @@ export type Routes = {
|
|
|
8468
8488
|
endpoint_id?: string | undefined
|
|
8469
8489
|
}
|
|
8470
8490
|
| undefined
|
|
8491
|
+
/** Indicates whether Seam manages the credential. */
|
|
8471
8492
|
is_managed: true
|
|
8472
8493
|
}
|
|
8473
8494
|
| {
|
|
@@ -8479,6 +8500,7 @@ export type Routes = {
|
|
|
8479
8500
|
user_identity_id?: string | undefined
|
|
8480
8501
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
8481
8502
|
connected_account_id: string
|
|
8503
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
8482
8504
|
acs_credential_pool_id?: string | undefined
|
|
8483
8505
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
8484
8506
|
acs_system_id: string
|
|
@@ -8726,6 +8748,7 @@ export type Routes = {
|
|
|
8726
8748
|
user_identity_id?: string | undefined
|
|
8727
8749
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
8728
8750
|
connected_account_id: string
|
|
8751
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
8729
8752
|
acs_credential_pool_id?: string | undefined
|
|
8730
8753
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
8731
8754
|
acs_system_id: string
|
|
@@ -8876,6 +8899,7 @@ export type Routes = {
|
|
|
8876
8899
|
endpoint_id?: string | undefined
|
|
8877
8900
|
}
|
|
8878
8901
|
| undefined
|
|
8902
|
+
/** Indicates whether Seam manages the credential. */
|
|
8879
8903
|
is_managed: true
|
|
8880
8904
|
}
|
|
8881
8905
|
| {
|
|
@@ -8887,6 +8911,7 @@ export type Routes = {
|
|
|
8887
8911
|
user_identity_id?: string | undefined
|
|
8888
8912
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
8889
8913
|
connected_account_id: string
|
|
8914
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
8890
8915
|
acs_credential_pool_id?: string | undefined
|
|
8891
8916
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
8892
8917
|
acs_system_id: string
|
|
@@ -9139,6 +9164,7 @@ export type Routes = {
|
|
|
9139
9164
|
user_identity_id?: string | undefined
|
|
9140
9165
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
9141
9166
|
connected_account_id: string
|
|
9167
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
9142
9168
|
acs_credential_pool_id?: string | undefined
|
|
9143
9169
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
9144
9170
|
acs_system_id: string
|
|
@@ -9289,6 +9315,7 @@ export type Routes = {
|
|
|
9289
9315
|
endpoint_id?: string | undefined
|
|
9290
9316
|
}
|
|
9291
9317
|
| undefined
|
|
9318
|
+
/** Indicates whether Seam manages the credential. */
|
|
9292
9319
|
is_managed: true
|
|
9293
9320
|
}
|
|
9294
9321
|
}
|
|
@@ -11260,6 +11287,7 @@ export type Routes = {
|
|
|
11260
11287
|
acs_credential_on_encoder: {
|
|
11261
11288
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
11262
11289
|
created_at: string | null
|
|
11290
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
11263
11291
|
is_issued: boolean | null
|
|
11264
11292
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
11265
11293
|
starts_at: string | null
|
|
@@ -11309,6 +11337,7 @@ export type Routes = {
|
|
|
11309
11337
|
user_identity_id?: string | undefined
|
|
11310
11338
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
11311
11339
|
connected_account_id: string
|
|
11340
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
11312
11341
|
acs_credential_pool_id?: string | undefined
|
|
11313
11342
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
11314
11343
|
acs_system_id: string
|
|
@@ -11465,6 +11494,7 @@ export type Routes = {
|
|
|
11465
11494
|
endpoint_id?: string | undefined
|
|
11466
11495
|
}
|
|
11467
11496
|
| undefined
|
|
11497
|
+
/** Indicates whether Seam manages the credential. */
|
|
11468
11498
|
is_managed: true
|
|
11469
11499
|
}
|
|
11470
11500
|
| {
|
|
@@ -11476,6 +11506,7 @@ export type Routes = {
|
|
|
11476
11506
|
user_identity_id?: string | undefined
|
|
11477
11507
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
11478
11508
|
connected_account_id: string
|
|
11509
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
11479
11510
|
acs_credential_pool_id?: string | undefined
|
|
11480
11511
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
11481
11512
|
acs_system_id: string
|
|
@@ -11723,6 +11754,7 @@ export type Routes = {
|
|
|
11723
11754
|
user_identity_id?: string | undefined
|
|
11724
11755
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
11725
11756
|
connected_account_id: string
|
|
11757
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
11726
11758
|
acs_credential_pool_id?: string | undefined
|
|
11727
11759
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
11728
11760
|
acs_system_id: string
|
|
@@ -11873,6 +11905,7 @@ export type Routes = {
|
|
|
11873
11905
|
endpoint_id?: string | undefined
|
|
11874
11906
|
}
|
|
11875
11907
|
| undefined
|
|
11908
|
+
/** Indicates whether Seam manages the credential. */
|
|
11876
11909
|
is_managed: true
|
|
11877
11910
|
}
|
|
11878
11911
|
| {
|
|
@@ -11884,6 +11917,7 @@ export type Routes = {
|
|
|
11884
11917
|
user_identity_id?: string | undefined
|
|
11885
11918
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
11886
11919
|
connected_account_id: string
|
|
11920
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
11887
11921
|
acs_credential_pool_id?: string | undefined
|
|
11888
11922
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
11889
11923
|
acs_system_id: string
|
|
@@ -12136,6 +12170,7 @@ export type Routes = {
|
|
|
12136
12170
|
user_identity_id?: string | undefined
|
|
12137
12171
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
12138
12172
|
connected_account_id: string
|
|
12173
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
12139
12174
|
acs_credential_pool_id?: string | undefined
|
|
12140
12175
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
12141
12176
|
acs_system_id: string
|
|
@@ -12286,6 +12321,7 @@ export type Routes = {
|
|
|
12286
12321
|
endpoint_id?: string | undefined
|
|
12287
12322
|
}
|
|
12288
12323
|
| undefined
|
|
12324
|
+
/** Indicates whether Seam manages the credential. */
|
|
12289
12325
|
is_managed: true
|
|
12290
12326
|
}
|
|
12291
12327
|
}
|
|
@@ -13115,6 +13151,7 @@ export type Routes = {
|
|
|
13115
13151
|
email_address?: (string | null) | undefined
|
|
13116
13152
|
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
13117
13153
|
phone_number?: (string | null) | undefined
|
|
13154
|
+
/** Full name of the user associated with the user identity. */
|
|
13118
13155
|
full_name?: (string | null) | undefined
|
|
13119
13156
|
/** Unique key for the user identity. */
|
|
13120
13157
|
user_identity_key?: (string | null) | undefined
|
|
@@ -15386,31 +15423,51 @@ export type Routes = {
|
|
|
15386
15423
|
image_url?: string | undefined
|
|
15387
15424
|
}
|
|
15388
15425
|
| undefined
|
|
15426
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
15389
15427
|
can_remotely_unlock?: boolean | undefined
|
|
15428
|
+
/** Indicates whether the device supports remote locking. */
|
|
15390
15429
|
can_remotely_lock?: boolean | undefined
|
|
15430
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
15391
15431
|
can_program_offline_access_codes?: boolean | undefined
|
|
15432
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
15392
15433
|
can_program_online_access_codes?: boolean | undefined
|
|
15434
|
+
/** Indicates whether the thermostat supports heating. */
|
|
15393
15435
|
can_hvac_heat?: boolean | undefined
|
|
15436
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
15394
15437
|
can_hvac_cool?: boolean | undefined
|
|
15438
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
15395
15439
|
can_hvac_heat_cool?: boolean | undefined
|
|
15440
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
15396
15441
|
can_turn_off_hvac?: boolean | undefined
|
|
15442
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
15397
15443
|
can_simulate_removal?: boolean | undefined
|
|
15444
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
15398
15445
|
can_simulate_connection?: boolean | undefined
|
|
15446
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
15399
15447
|
can_simulate_disconnection?: boolean | undefined
|
|
15448
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
15400
15449
|
can_unlock_with_code?: boolean | undefined
|
|
15450
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
15401
15451
|
can_run_thermostat_programs?: boolean | undefined
|
|
15452
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
15402
15453
|
can_program_thermostat_programs_as_weekday_weekend?:
|
|
15403
15454
|
| boolean
|
|
15404
15455
|
| undefined
|
|
15456
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
15405
15457
|
can_program_thermostat_programs_as_different_each_day?:
|
|
15406
15458
|
| boolean
|
|
15407
15459
|
| undefined
|
|
15460
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
15408
15461
|
can_program_thermostat_programs_as_same_each_day?:
|
|
15409
15462
|
| boolean
|
|
15410
15463
|
| undefined
|
|
15464
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
15411
15465
|
can_simulate_hub_connection?: boolean | undefined
|
|
15466
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
15412
15467
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
15468
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
15413
15469
|
can_simulate_paid_subscription?: boolean | undefined
|
|
15470
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
15414
15471
|
can_configure_auto_lock?: boolean | undefined
|
|
15415
15472
|
}[]
|
|
15416
15473
|
| undefined
|
|
@@ -15847,7 +15904,9 @@ export type Routes = {
|
|
|
15847
15904
|
| undefined
|
|
15848
15905
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
15849
15906
|
acs_system_id: string
|
|
15907
|
+
/** Number of users in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
15850
15908
|
acs_user_count?: number | undefined
|
|
15909
|
+
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
15851
15910
|
acs_access_group_count?: number | undefined
|
|
15852
15911
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
15853
15912
|
external_type?:
|
|
@@ -15873,6 +15932,7 @@ export type Routes = {
|
|
|
15873
15932
|
external_type_display_name?: string | undefined
|
|
15874
15933
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
15875
15934
|
is_credential_manager: boolean
|
|
15935
|
+
/** Visionline-specific metadata for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
15876
15936
|
visionline_metadata?:
|
|
15877
15937
|
| {
|
|
15878
15938
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
@@ -15907,6 +15967,7 @@ export type Routes = {
|
|
|
15907
15967
|
/**
|
|
15908
15968
|
* @deprecated Use `external_type_display_name`.*/
|
|
15909
15969
|
system_type_display_name?: string | undefined
|
|
15970
|
+
/** Location information for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
15910
15971
|
location: {
|
|
15911
15972
|
/** Time zone in which the [access control system](https://docs.seam.co/low-level-apis/access-systems) is located. */
|
|
15912
15973
|
time_zone: string | null
|
|
@@ -15943,6 +16004,7 @@ export type Routes = {
|
|
|
15943
16004
|
message: string
|
|
15944
16005
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15945
16006
|
error_code: 'bridge_disconnected'
|
|
16007
|
+
/** Indicates whether the error is related to the [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
15946
16008
|
is_bridge_error?: boolean | undefined
|
|
15947
16009
|
}
|
|
15948
16010
|
| {
|
|
@@ -16036,7 +16098,9 @@ export type Routes = {
|
|
|
16036
16098
|
email_address: string | null
|
|
16037
16099
|
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
16038
16100
|
phone_number: string | null
|
|
16101
|
+
/** Display name for the user identity. */
|
|
16039
16102
|
display_name: string
|
|
16103
|
+
/** Full name of the user associated with the user identity. */
|
|
16040
16104
|
full_name: string | null
|
|
16041
16105
|
/** Date and time at which the user identity was created. */
|
|
16042
16106
|
created_at: string
|
|
@@ -16104,6 +16168,7 @@ export type Routes = {
|
|
|
16104
16168
|
/**
|
|
16105
16169
|
* @deprecated Use `external_type_display_name`.*/
|
|
16106
16170
|
access_group_type_display_name: string
|
|
16171
|
+
/** Display name for the access group. */
|
|
16107
16172
|
display_name: string
|
|
16108
16173
|
/** Brand-specific terminology for the access group type. */
|
|
16109
16174
|
external_type:
|
|
@@ -16271,6 +16336,7 @@ export type Routes = {
|
|
|
16271
16336
|
variant: 'adding' | 'removing'
|
|
16272
16337
|
}
|
|
16273
16338
|
)[]
|
|
16339
|
+
/** Indicates whether Seam manages the access group. */
|
|
16274
16340
|
is_managed: true
|
|
16275
16341
|
}[]
|
|
16276
16342
|
| undefined
|
|
@@ -17450,6 +17516,7 @@ export type Routes = {
|
|
|
17450
17516
|
acs_credential_on_encoder: {
|
|
17451
17517
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
17452
17518
|
created_at: string | null
|
|
17519
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
17453
17520
|
is_issued: boolean | null
|
|
17454
17521
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
17455
17522
|
starts_at: string | null
|
|
@@ -17499,6 +17566,7 @@ export type Routes = {
|
|
|
17499
17566
|
user_identity_id?: string | undefined
|
|
17500
17567
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
17501
17568
|
connected_account_id: string
|
|
17569
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
17502
17570
|
acs_credential_pool_id?: string | undefined
|
|
17503
17571
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
17504
17572
|
acs_system_id: string
|
|
@@ -17655,6 +17723,7 @@ export type Routes = {
|
|
|
17655
17723
|
endpoint_id?: string | undefined
|
|
17656
17724
|
}
|
|
17657
17725
|
| undefined
|
|
17726
|
+
/** Indicates whether Seam manages the credential. */
|
|
17658
17727
|
is_managed: true
|
|
17659
17728
|
}
|
|
17660
17729
|
| {
|
|
@@ -17666,6 +17735,7 @@ export type Routes = {
|
|
|
17666
17735
|
user_identity_id?: string | undefined
|
|
17667
17736
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
17668
17737
|
connected_account_id: string
|
|
17738
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
17669
17739
|
acs_credential_pool_id?: string | undefined
|
|
17670
17740
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
17671
17741
|
acs_system_id: string
|
|
@@ -17913,6 +17983,7 @@ export type Routes = {
|
|
|
17913
17983
|
user_identity_id?: string | undefined
|
|
17914
17984
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
17915
17985
|
connected_account_id: string
|
|
17986
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
17916
17987
|
acs_credential_pool_id?: string | undefined
|
|
17917
17988
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
17918
17989
|
acs_system_id: string
|
|
@@ -18063,6 +18134,7 @@ export type Routes = {
|
|
|
18063
18134
|
endpoint_id?: string | undefined
|
|
18064
18135
|
}
|
|
18065
18136
|
| undefined
|
|
18137
|
+
/** Indicates whether Seam manages the credential. */
|
|
18066
18138
|
is_managed: true
|
|
18067
18139
|
}
|
|
18068
18140
|
| {
|
|
@@ -18074,6 +18146,7 @@ export type Routes = {
|
|
|
18074
18146
|
user_identity_id?: string | undefined
|
|
18075
18147
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
18076
18148
|
connected_account_id: string
|
|
18149
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
18077
18150
|
acs_credential_pool_id?: string | undefined
|
|
18078
18151
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
18079
18152
|
acs_system_id: string
|
|
@@ -18326,6 +18399,7 @@ export type Routes = {
|
|
|
18326
18399
|
user_identity_id?: string | undefined
|
|
18327
18400
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
18328
18401
|
connected_account_id: string
|
|
18402
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
18329
18403
|
acs_credential_pool_id?: string | undefined
|
|
18330
18404
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
18331
18405
|
acs_system_id: string
|
|
@@ -18476,6 +18550,7 @@ export type Routes = {
|
|
|
18476
18550
|
endpoint_id?: string | undefined
|
|
18477
18551
|
}
|
|
18478
18552
|
| undefined
|
|
18553
|
+
/** Indicates whether Seam manages the credential. */
|
|
18479
18554
|
is_managed: true
|
|
18480
18555
|
}
|
|
18481
18556
|
}
|
|
@@ -19411,6 +19486,7 @@ export type Routes = {
|
|
|
19411
19486
|
acs_credential_on_encoder: {
|
|
19412
19487
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
19413
19488
|
created_at: string | null
|
|
19489
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
19414
19490
|
is_issued: boolean | null
|
|
19415
19491
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
19416
19492
|
starts_at: string | null
|
|
@@ -19460,6 +19536,7 @@ export type Routes = {
|
|
|
19460
19536
|
user_identity_id?: string | undefined
|
|
19461
19537
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
19462
19538
|
connected_account_id: string
|
|
19539
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
19463
19540
|
acs_credential_pool_id?: string | undefined
|
|
19464
19541
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
19465
19542
|
acs_system_id: string
|
|
@@ -19616,6 +19693,7 @@ export type Routes = {
|
|
|
19616
19693
|
endpoint_id?: string | undefined
|
|
19617
19694
|
}
|
|
19618
19695
|
| undefined
|
|
19696
|
+
/** Indicates whether Seam manages the credential. */
|
|
19619
19697
|
is_managed: true
|
|
19620
19698
|
}
|
|
19621
19699
|
| {
|
|
@@ -19627,6 +19705,7 @@ export type Routes = {
|
|
|
19627
19705
|
user_identity_id?: string | undefined
|
|
19628
19706
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
19629
19707
|
connected_account_id: string
|
|
19708
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
19630
19709
|
acs_credential_pool_id?: string | undefined
|
|
19631
19710
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
19632
19711
|
acs_system_id: string
|
|
@@ -19874,6 +19953,7 @@ export type Routes = {
|
|
|
19874
19953
|
user_identity_id?: string | undefined
|
|
19875
19954
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
19876
19955
|
connected_account_id: string
|
|
19956
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
19877
19957
|
acs_credential_pool_id?: string | undefined
|
|
19878
19958
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
19879
19959
|
acs_system_id: string
|
|
@@ -20024,6 +20104,7 @@ export type Routes = {
|
|
|
20024
20104
|
endpoint_id?: string | undefined
|
|
20025
20105
|
}
|
|
20026
20106
|
| undefined
|
|
20107
|
+
/** Indicates whether Seam manages the credential. */
|
|
20027
20108
|
is_managed: true
|
|
20028
20109
|
}
|
|
20029
20110
|
| {
|
|
@@ -20035,6 +20116,7 @@ export type Routes = {
|
|
|
20035
20116
|
user_identity_id?: string | undefined
|
|
20036
20117
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
20037
20118
|
connected_account_id: string
|
|
20119
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
20038
20120
|
acs_credential_pool_id?: string | undefined
|
|
20039
20121
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
20040
20122
|
acs_system_id: string
|
|
@@ -20287,6 +20369,7 @@ export type Routes = {
|
|
|
20287
20369
|
user_identity_id?: string | undefined
|
|
20288
20370
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
20289
20371
|
connected_account_id: string
|
|
20372
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
20290
20373
|
acs_credential_pool_id?: string | undefined
|
|
20291
20374
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
20292
20375
|
acs_system_id: string
|
|
@@ -20437,6 +20520,7 @@ export type Routes = {
|
|
|
20437
20520
|
endpoint_id?: string | undefined
|
|
20438
20521
|
}
|
|
20439
20522
|
| undefined
|
|
20523
|
+
/** Indicates whether Seam manages the credential. */
|
|
20440
20524
|
is_managed: true
|
|
20441
20525
|
}
|
|
20442
20526
|
}
|
|
@@ -23149,31 +23233,51 @@ export type Routes = {
|
|
|
23149
23233
|
image_url?: string | undefined
|
|
23150
23234
|
}
|
|
23151
23235
|
| undefined
|
|
23236
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
23152
23237
|
can_remotely_unlock?: boolean | undefined
|
|
23238
|
+
/** Indicates whether the device supports remote locking. */
|
|
23153
23239
|
can_remotely_lock?: boolean | undefined
|
|
23240
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
23154
23241
|
can_program_offline_access_codes?: boolean | undefined
|
|
23242
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
23155
23243
|
can_program_online_access_codes?: boolean | undefined
|
|
23244
|
+
/** Indicates whether the thermostat supports heating. */
|
|
23156
23245
|
can_hvac_heat?: boolean | undefined
|
|
23246
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
23157
23247
|
can_hvac_cool?: boolean | undefined
|
|
23248
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
23158
23249
|
can_hvac_heat_cool?: boolean | undefined
|
|
23250
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
23159
23251
|
can_turn_off_hvac?: boolean | undefined
|
|
23252
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
23160
23253
|
can_simulate_removal?: boolean | undefined
|
|
23254
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
23161
23255
|
can_simulate_connection?: boolean | undefined
|
|
23256
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
23162
23257
|
can_simulate_disconnection?: boolean | undefined
|
|
23258
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
23163
23259
|
can_unlock_with_code?: boolean | undefined
|
|
23260
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
23164
23261
|
can_run_thermostat_programs?: boolean | undefined
|
|
23262
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
23165
23263
|
can_program_thermostat_programs_as_weekday_weekend?:
|
|
23166
23264
|
| boolean
|
|
23167
23265
|
| undefined
|
|
23266
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
23168
23267
|
can_program_thermostat_programs_as_different_each_day?:
|
|
23169
23268
|
| boolean
|
|
23170
23269
|
| undefined
|
|
23270
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
23171
23271
|
can_program_thermostat_programs_as_same_each_day?:
|
|
23172
23272
|
| boolean
|
|
23173
23273
|
| undefined
|
|
23274
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
23174
23275
|
can_simulate_hub_connection?: boolean | undefined
|
|
23276
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
23175
23277
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
23278
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
23176
23279
|
can_simulate_paid_subscription?: boolean | undefined
|
|
23280
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
23177
23281
|
can_configure_auto_lock?: boolean | undefined
|
|
23178
23282
|
}[]
|
|
23179
23283
|
| undefined
|
|
@@ -23789,6 +23893,7 @@ export type Routes = {
|
|
|
23789
23893
|
user_identity_id?: string | undefined
|
|
23790
23894
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
23791
23895
|
connected_account_id: string
|
|
23896
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
23792
23897
|
acs_credential_pool_id?: string | undefined
|
|
23793
23898
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
23794
23899
|
acs_system_id: string
|
|
@@ -23939,6 +24044,7 @@ export type Routes = {
|
|
|
23939
24044
|
endpoint_id?: string | undefined
|
|
23940
24045
|
}
|
|
23941
24046
|
| undefined
|
|
24047
|
+
/** Indicates whether Seam manages the credential. */
|
|
23942
24048
|
is_managed: true
|
|
23943
24049
|
}[]
|
|
23944
24050
|
| undefined
|
|
@@ -24218,6 +24324,7 @@ export type Routes = {
|
|
|
24218
24324
|
acs_credential_on_encoder: {
|
|
24219
24325
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
24220
24326
|
created_at: string | null
|
|
24327
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
24221
24328
|
is_issued: boolean | null
|
|
24222
24329
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
24223
24330
|
starts_at: string | null
|
|
@@ -24267,6 +24374,7 @@ export type Routes = {
|
|
|
24267
24374
|
user_identity_id?: string | undefined
|
|
24268
24375
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
24269
24376
|
connected_account_id: string
|
|
24377
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
24270
24378
|
acs_credential_pool_id?: string | undefined
|
|
24271
24379
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
24272
24380
|
acs_system_id: string
|
|
@@ -24423,6 +24531,7 @@ export type Routes = {
|
|
|
24423
24531
|
endpoint_id?: string | undefined
|
|
24424
24532
|
}
|
|
24425
24533
|
| undefined
|
|
24534
|
+
/** Indicates whether Seam manages the credential. */
|
|
24426
24535
|
is_managed: true
|
|
24427
24536
|
}
|
|
24428
24537
|
| {
|
|
@@ -24434,6 +24543,7 @@ export type Routes = {
|
|
|
24434
24543
|
user_identity_id?: string | undefined
|
|
24435
24544
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
24436
24545
|
connected_account_id: string
|
|
24546
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
24437
24547
|
acs_credential_pool_id?: string | undefined
|
|
24438
24548
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
24439
24549
|
acs_system_id: string
|
|
@@ -24681,6 +24791,7 @@ export type Routes = {
|
|
|
24681
24791
|
user_identity_id?: string | undefined
|
|
24682
24792
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
24683
24793
|
connected_account_id: string
|
|
24794
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
24684
24795
|
acs_credential_pool_id?: string | undefined
|
|
24685
24796
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
24686
24797
|
acs_system_id: string
|
|
@@ -24831,6 +24942,7 @@ export type Routes = {
|
|
|
24831
24942
|
endpoint_id?: string | undefined
|
|
24832
24943
|
}
|
|
24833
24944
|
| undefined
|
|
24945
|
+
/** Indicates whether Seam manages the credential. */
|
|
24834
24946
|
is_managed: true
|
|
24835
24947
|
}
|
|
24836
24948
|
| {
|
|
@@ -24842,6 +24954,7 @@ export type Routes = {
|
|
|
24842
24954
|
user_identity_id?: string | undefined
|
|
24843
24955
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
24844
24956
|
connected_account_id: string
|
|
24957
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
24845
24958
|
acs_credential_pool_id?: string | undefined
|
|
24846
24959
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
24847
24960
|
acs_system_id: string
|
|
@@ -25094,6 +25207,7 @@ export type Routes = {
|
|
|
25094
25207
|
user_identity_id?: string | undefined
|
|
25095
25208
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
25096
25209
|
connected_account_id: string
|
|
25210
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
25097
25211
|
acs_credential_pool_id?: string | undefined
|
|
25098
25212
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
25099
25213
|
acs_system_id: string
|
|
@@ -25244,6 +25358,7 @@ export type Routes = {
|
|
|
25244
25358
|
endpoint_id?: string | undefined
|
|
25245
25359
|
}
|
|
25246
25360
|
| undefined
|
|
25361
|
+
/** Indicates whether Seam manages the credential. */
|
|
25247
25362
|
is_managed: true
|
|
25248
25363
|
}
|
|
25249
25364
|
}
|
|
@@ -26369,6 +26484,7 @@ export type Routes = {
|
|
|
26369
26484
|
/**
|
|
26370
26485
|
* @deprecated Use `external_type_display_name`.*/
|
|
26371
26486
|
access_group_type_display_name: string
|
|
26487
|
+
/** Display name for the access group. */
|
|
26372
26488
|
display_name: string
|
|
26373
26489
|
/** Brand-specific terminology for the access group type. */
|
|
26374
26490
|
external_type:
|
|
@@ -26536,6 +26652,7 @@ export type Routes = {
|
|
|
26536
26652
|
variant: 'adding' | 'removing'
|
|
26537
26653
|
}
|
|
26538
26654
|
)[]
|
|
26655
|
+
/** Indicates whether Seam manages the access group. */
|
|
26539
26656
|
is_managed: true
|
|
26540
26657
|
}
|
|
26541
26658
|
}
|
|
@@ -26583,6 +26700,7 @@ export type Routes = {
|
|
|
26583
26700
|
/**
|
|
26584
26701
|
* @deprecated Use `external_type_display_name`.*/
|
|
26585
26702
|
access_group_type_display_name: string
|
|
26703
|
+
/** Display name for the access group. */
|
|
26586
26704
|
display_name: string
|
|
26587
26705
|
/** Brand-specific terminology for the access group type. */
|
|
26588
26706
|
external_type:
|
|
@@ -26750,6 +26868,7 @@ export type Routes = {
|
|
|
26750
26868
|
variant: 'adding' | 'removing'
|
|
26751
26869
|
}
|
|
26752
26870
|
)[]
|
|
26871
|
+
/** Indicates whether Seam manages the access group. */
|
|
26753
26872
|
is_managed: true
|
|
26754
26873
|
}[]
|
|
26755
26874
|
}
|
|
@@ -27001,6 +27120,7 @@ export type Routes = {
|
|
|
27001
27120
|
acs_user_id: string
|
|
27002
27121
|
/** ID of the [access system](https://docs.seam.co/low-level-apis/access-systems) that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
27003
27122
|
acs_system_id: string
|
|
27123
|
+
/** ID of the HID access control system associated with the user. */
|
|
27004
27124
|
hid_acs_system_id?: string | undefined
|
|
27005
27125
|
/** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
27006
27126
|
workspace_id: string
|
|
@@ -27285,6 +27405,7 @@ export type Routes = {
|
|
|
27285
27405
|
email_address?: string | undefined
|
|
27286
27406
|
/** Phone number of the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management) in E.164 format (for example, `+15555550100`). */
|
|
27287
27407
|
phone_number?: string | undefined
|
|
27408
|
+
/** Indicates whether Seam manages the access system user. */
|
|
27288
27409
|
is_managed: true
|
|
27289
27410
|
}[]
|
|
27290
27411
|
}
|
|
@@ -27344,6 +27465,7 @@ export type Routes = {
|
|
|
27344
27465
|
/**
|
|
27345
27466
|
* @deprecated Use `external_type_display_name`.*/
|
|
27346
27467
|
access_group_type_display_name: string
|
|
27468
|
+
/** Display name for the access group. */
|
|
27347
27469
|
display_name: string
|
|
27348
27470
|
/** Brand-specific terminology for the access group type. */
|
|
27349
27471
|
external_type:
|
|
@@ -27556,6 +27678,7 @@ export type Routes = {
|
|
|
27556
27678
|
/**
|
|
27557
27679
|
* @deprecated Use `external_type_display_name`.*/
|
|
27558
27680
|
access_group_type_display_name: string
|
|
27681
|
+
/** Display name for the access group. */
|
|
27559
27682
|
display_name: string
|
|
27560
27683
|
/** Brand-specific terminology for the access group type. */
|
|
27561
27684
|
external_type:
|
|
@@ -27813,6 +27936,7 @@ export type Routes = {
|
|
|
27813
27936
|
user_identity_id?: string | undefined
|
|
27814
27937
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
27815
27938
|
connected_account_id: string
|
|
27939
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
27816
27940
|
acs_credential_pool_id?: string | undefined
|
|
27817
27941
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
27818
27942
|
acs_system_id: string
|
|
@@ -27963,6 +28087,7 @@ export type Routes = {
|
|
|
27963
28087
|
endpoint_id?: string | undefined
|
|
27964
28088
|
}
|
|
27965
28089
|
| undefined
|
|
28090
|
+
/** Indicates whether Seam manages the credential. */
|
|
27966
28091
|
is_managed: true
|
|
27967
28092
|
}
|
|
27968
28093
|
}
|
|
@@ -28056,6 +28181,7 @@ export type Routes = {
|
|
|
28056
28181
|
user_identity_id?: string | undefined
|
|
28057
28182
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
28058
28183
|
connected_account_id: string
|
|
28184
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
28059
28185
|
acs_credential_pool_id?: string | undefined
|
|
28060
28186
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
28061
28187
|
acs_system_id: string
|
|
@@ -28206,6 +28332,7 @@ export type Routes = {
|
|
|
28206
28332
|
endpoint_id?: string | undefined
|
|
28207
28333
|
}
|
|
28208
28334
|
| undefined
|
|
28335
|
+
/** Indicates whether Seam manages the credential. */
|
|
28209
28336
|
is_managed: true
|
|
28210
28337
|
}
|
|
28211
28338
|
}
|
|
@@ -28246,6 +28373,7 @@ export type Routes = {
|
|
|
28246
28373
|
user_identity_id?: string | undefined
|
|
28247
28374
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
28248
28375
|
connected_account_id: string
|
|
28376
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
28249
28377
|
acs_credential_pool_id?: string | undefined
|
|
28250
28378
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
28251
28379
|
acs_system_id: string
|
|
@@ -28396,6 +28524,7 @@ export type Routes = {
|
|
|
28396
28524
|
endpoint_id?: string | undefined
|
|
28397
28525
|
}
|
|
28398
28526
|
| undefined
|
|
28527
|
+
/** Indicates whether Seam manages the credential. */
|
|
28399
28528
|
is_managed: true
|
|
28400
28529
|
}
|
|
28401
28530
|
}
|
|
@@ -28441,6 +28570,7 @@ export type Routes = {
|
|
|
28441
28570
|
user_identity_id?: string | undefined
|
|
28442
28571
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
28443
28572
|
connected_account_id: string
|
|
28573
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
28444
28574
|
acs_credential_pool_id?: string | undefined
|
|
28445
28575
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
28446
28576
|
acs_system_id: string
|
|
@@ -28591,6 +28721,7 @@ export type Routes = {
|
|
|
28591
28721
|
endpoint_id?: string | undefined
|
|
28592
28722
|
}
|
|
28593
28723
|
| undefined
|
|
28724
|
+
/** Indicates whether Seam manages the credential. */
|
|
28594
28725
|
is_managed: true
|
|
28595
28726
|
}
|
|
28596
28727
|
}
|
|
@@ -28644,6 +28775,7 @@ export type Routes = {
|
|
|
28644
28775
|
user_identity_id?: string | undefined
|
|
28645
28776
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
28646
28777
|
connected_account_id: string
|
|
28778
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
28647
28779
|
acs_credential_pool_id?: string | undefined
|
|
28648
28780
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
28649
28781
|
acs_system_id: string
|
|
@@ -28794,6 +28926,7 @@ export type Routes = {
|
|
|
28794
28926
|
endpoint_id?: string | undefined
|
|
28795
28927
|
}
|
|
28796
28928
|
| undefined
|
|
28929
|
+
/** Indicates whether Seam manages the credential. */
|
|
28797
28930
|
is_managed: true
|
|
28798
28931
|
}[]
|
|
28799
28932
|
/** Information about the current page of results. */
|
|
@@ -29069,6 +29202,7 @@ export type Routes = {
|
|
|
29069
29202
|
user_identity_id?: string | undefined
|
|
29070
29203
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
29071
29204
|
connected_account_id: string
|
|
29205
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
29072
29206
|
acs_credential_pool_id?: string | undefined
|
|
29073
29207
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
29074
29208
|
acs_system_id: string
|
|
@@ -29219,6 +29353,7 @@ export type Routes = {
|
|
|
29219
29353
|
endpoint_id?: string | undefined
|
|
29220
29354
|
}
|
|
29221
29355
|
| undefined
|
|
29356
|
+
/** Indicates whether Seam manages the credential. */
|
|
29222
29357
|
is_managed: true
|
|
29223
29358
|
}
|
|
29224
29359
|
}
|
|
@@ -29245,6 +29380,7 @@ export type Routes = {
|
|
|
29245
29380
|
user_identity_id?: string | undefined
|
|
29246
29381
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
29247
29382
|
connected_account_id: string
|
|
29383
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
29248
29384
|
acs_credential_pool_id?: string | undefined
|
|
29249
29385
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
29250
29386
|
acs_system_id: string
|
|
@@ -29439,6 +29575,7 @@ export type Routes = {
|
|
|
29439
29575
|
user_identity_id?: string | undefined
|
|
29440
29576
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
29441
29577
|
connected_account_id: string
|
|
29578
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
29442
29579
|
acs_credential_pool_id?: string | undefined
|
|
29443
29580
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
29444
29581
|
acs_system_id: string
|
|
@@ -29625,6 +29762,7 @@ export type Routes = {
|
|
|
29625
29762
|
user_identity_id?: string | undefined
|
|
29626
29763
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
29627
29764
|
connected_account_id: string
|
|
29765
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
29628
29766
|
acs_credential_pool_id?: string | undefined
|
|
29629
29767
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
29630
29768
|
acs_system_id: string
|
|
@@ -29775,6 +29913,7 @@ export type Routes = {
|
|
|
29775
29913
|
endpoint_id?: string | undefined
|
|
29776
29914
|
}
|
|
29777
29915
|
| undefined
|
|
29916
|
+
/** Indicates whether Seam manages the credential. */
|
|
29778
29917
|
is_managed: true
|
|
29779
29918
|
}
|
|
29780
29919
|
}
|
|
@@ -29908,6 +30047,7 @@ export type Routes = {
|
|
|
29908
30047
|
acs_credential_on_encoder: {
|
|
29909
30048
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
29910
30049
|
created_at: string | null
|
|
30050
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
29911
30051
|
is_issued: boolean | null
|
|
29912
30052
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
29913
30053
|
starts_at: string | null
|
|
@@ -29957,6 +30097,7 @@ export type Routes = {
|
|
|
29957
30097
|
user_identity_id?: string | undefined
|
|
29958
30098
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
29959
30099
|
connected_account_id: string
|
|
30100
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
29960
30101
|
acs_credential_pool_id?: string | undefined
|
|
29961
30102
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
29962
30103
|
acs_system_id: string
|
|
@@ -30113,6 +30254,7 @@ export type Routes = {
|
|
|
30113
30254
|
endpoint_id?: string | undefined
|
|
30114
30255
|
}
|
|
30115
30256
|
| undefined
|
|
30257
|
+
/** Indicates whether Seam manages the credential. */
|
|
30116
30258
|
is_managed: true
|
|
30117
30259
|
}
|
|
30118
30260
|
| {
|
|
@@ -30124,6 +30266,7 @@ export type Routes = {
|
|
|
30124
30266
|
user_identity_id?: string | undefined
|
|
30125
30267
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
30126
30268
|
connected_account_id: string
|
|
30269
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
30127
30270
|
acs_credential_pool_id?: string | undefined
|
|
30128
30271
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
30129
30272
|
acs_system_id: string
|
|
@@ -30371,6 +30514,7 @@ export type Routes = {
|
|
|
30371
30514
|
user_identity_id?: string | undefined
|
|
30372
30515
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
30373
30516
|
connected_account_id: string
|
|
30517
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
30374
30518
|
acs_credential_pool_id?: string | undefined
|
|
30375
30519
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
30376
30520
|
acs_system_id: string
|
|
@@ -30521,6 +30665,7 @@ export type Routes = {
|
|
|
30521
30665
|
endpoint_id?: string | undefined
|
|
30522
30666
|
}
|
|
30523
30667
|
| undefined
|
|
30668
|
+
/** Indicates whether Seam manages the credential. */
|
|
30524
30669
|
is_managed: true
|
|
30525
30670
|
}
|
|
30526
30671
|
| {
|
|
@@ -30532,6 +30677,7 @@ export type Routes = {
|
|
|
30532
30677
|
user_identity_id?: string | undefined
|
|
30533
30678
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
30534
30679
|
connected_account_id: string
|
|
30680
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
30535
30681
|
acs_credential_pool_id?: string | undefined
|
|
30536
30682
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
30537
30683
|
acs_system_id: string
|
|
@@ -30784,6 +30930,7 @@ export type Routes = {
|
|
|
30784
30930
|
user_identity_id?: string | undefined
|
|
30785
30931
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
30786
30932
|
connected_account_id: string
|
|
30933
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
30787
30934
|
acs_credential_pool_id?: string | undefined
|
|
30788
30935
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
30789
30936
|
acs_system_id: string
|
|
@@ -30934,6 +31081,7 @@ export type Routes = {
|
|
|
30934
31081
|
endpoint_id?: string | undefined
|
|
30935
31082
|
}
|
|
30936
31083
|
| undefined
|
|
31084
|
+
/** Indicates whether Seam manages the credential. */
|
|
30937
31085
|
is_managed: true
|
|
30938
31086
|
}
|
|
30939
31087
|
}
|
|
@@ -31964,6 +32112,7 @@ export type Routes = {
|
|
|
31964
32112
|
acs_credential_on_encoder: {
|
|
31965
32113
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
31966
32114
|
created_at: string | null
|
|
32115
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
31967
32116
|
is_issued: boolean | null
|
|
31968
32117
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
31969
32118
|
starts_at: string | null
|
|
@@ -32013,6 +32162,7 @@ export type Routes = {
|
|
|
32013
32162
|
user_identity_id?: string | undefined
|
|
32014
32163
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
32015
32164
|
connected_account_id: string
|
|
32165
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
32016
32166
|
acs_credential_pool_id?: string | undefined
|
|
32017
32167
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
32018
32168
|
acs_system_id: string
|
|
@@ -32169,6 +32319,7 @@ export type Routes = {
|
|
|
32169
32319
|
endpoint_id?: string | undefined
|
|
32170
32320
|
}
|
|
32171
32321
|
| undefined
|
|
32322
|
+
/** Indicates whether Seam manages the credential. */
|
|
32172
32323
|
is_managed: true
|
|
32173
32324
|
}
|
|
32174
32325
|
| {
|
|
@@ -32180,6 +32331,7 @@ export type Routes = {
|
|
|
32180
32331
|
user_identity_id?: string | undefined
|
|
32181
32332
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
32182
32333
|
connected_account_id: string
|
|
32334
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
32183
32335
|
acs_credential_pool_id?: string | undefined
|
|
32184
32336
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
32185
32337
|
acs_system_id: string
|
|
@@ -32427,6 +32579,7 @@ export type Routes = {
|
|
|
32427
32579
|
user_identity_id?: string | undefined
|
|
32428
32580
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
32429
32581
|
connected_account_id: string
|
|
32582
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
32430
32583
|
acs_credential_pool_id?: string | undefined
|
|
32431
32584
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
32432
32585
|
acs_system_id: string
|
|
@@ -32577,6 +32730,7 @@ export type Routes = {
|
|
|
32577
32730
|
endpoint_id?: string | undefined
|
|
32578
32731
|
}
|
|
32579
32732
|
| undefined
|
|
32733
|
+
/** Indicates whether Seam manages the credential. */
|
|
32580
32734
|
is_managed: true
|
|
32581
32735
|
}
|
|
32582
32736
|
| {
|
|
@@ -32588,6 +32742,7 @@ export type Routes = {
|
|
|
32588
32742
|
user_identity_id?: string | undefined
|
|
32589
32743
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
32590
32744
|
connected_account_id: string
|
|
32745
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
32591
32746
|
acs_credential_pool_id?: string | undefined
|
|
32592
32747
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
32593
32748
|
acs_system_id: string
|
|
@@ -32840,6 +32995,7 @@ export type Routes = {
|
|
|
32840
32995
|
user_identity_id?: string | undefined
|
|
32841
32996
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
32842
32997
|
connected_account_id: string
|
|
32998
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
32843
32999
|
acs_credential_pool_id?: string | undefined
|
|
32844
33000
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
32845
33001
|
acs_system_id: string
|
|
@@ -32990,6 +33146,7 @@ export type Routes = {
|
|
|
32990
33146
|
endpoint_id?: string | undefined
|
|
32991
33147
|
}
|
|
32992
33148
|
| undefined
|
|
33149
|
+
/** Indicates whether Seam manages the credential. */
|
|
32993
33150
|
is_managed: true
|
|
32994
33151
|
}
|
|
32995
33152
|
}
|
|
@@ -33912,6 +34069,7 @@ export type Routes = {
|
|
|
33912
34069
|
acs_credential_on_encoder: {
|
|
33913
34070
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
33914
34071
|
created_at: string | null
|
|
34072
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
33915
34073
|
is_issued: boolean | null
|
|
33916
34074
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
33917
34075
|
starts_at: string | null
|
|
@@ -33961,6 +34119,7 @@ export type Routes = {
|
|
|
33961
34119
|
user_identity_id?: string | undefined
|
|
33962
34120
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
33963
34121
|
connected_account_id: string
|
|
34122
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
33964
34123
|
acs_credential_pool_id?: string | undefined
|
|
33965
34124
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
33966
34125
|
acs_system_id: string
|
|
@@ -34117,6 +34276,7 @@ export type Routes = {
|
|
|
34117
34276
|
endpoint_id?: string | undefined
|
|
34118
34277
|
}
|
|
34119
34278
|
| undefined
|
|
34279
|
+
/** Indicates whether Seam manages the credential. */
|
|
34120
34280
|
is_managed: true
|
|
34121
34281
|
}
|
|
34122
34282
|
| {
|
|
@@ -34128,6 +34288,7 @@ export type Routes = {
|
|
|
34128
34288
|
user_identity_id?: string | undefined
|
|
34129
34289
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
34130
34290
|
connected_account_id: string
|
|
34291
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
34131
34292
|
acs_credential_pool_id?: string | undefined
|
|
34132
34293
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
34133
34294
|
acs_system_id: string
|
|
@@ -34375,6 +34536,7 @@ export type Routes = {
|
|
|
34375
34536
|
user_identity_id?: string | undefined
|
|
34376
34537
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
34377
34538
|
connected_account_id: string
|
|
34539
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
34378
34540
|
acs_credential_pool_id?: string | undefined
|
|
34379
34541
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
34380
34542
|
acs_system_id: string
|
|
@@ -34525,6 +34687,7 @@ export type Routes = {
|
|
|
34525
34687
|
endpoint_id?: string | undefined
|
|
34526
34688
|
}
|
|
34527
34689
|
| undefined
|
|
34690
|
+
/** Indicates whether Seam manages the credential. */
|
|
34528
34691
|
is_managed: true
|
|
34529
34692
|
}
|
|
34530
34693
|
| {
|
|
@@ -34536,6 +34699,7 @@ export type Routes = {
|
|
|
34536
34699
|
user_identity_id?: string | undefined
|
|
34537
34700
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
34538
34701
|
connected_account_id: string
|
|
34702
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
34539
34703
|
acs_credential_pool_id?: string | undefined
|
|
34540
34704
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
34541
34705
|
acs_system_id: string
|
|
@@ -34788,6 +34952,7 @@ export type Routes = {
|
|
|
34788
34952
|
user_identity_id?: string | undefined
|
|
34789
34953
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
34790
34954
|
connected_account_id: string
|
|
34955
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
34791
34956
|
acs_credential_pool_id?: string | undefined
|
|
34792
34957
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
34793
34958
|
acs_system_id: string
|
|
@@ -34938,6 +35103,7 @@ export type Routes = {
|
|
|
34938
35103
|
endpoint_id?: string | undefined
|
|
34939
35104
|
}
|
|
34940
35105
|
| undefined
|
|
35106
|
+
/** Indicates whether Seam manages the credential. */
|
|
34941
35107
|
is_managed: true
|
|
34942
35108
|
}
|
|
34943
35109
|
}
|
|
@@ -36347,6 +36513,7 @@ export type Routes = {
|
|
|
36347
36513
|
user_identity_id?: string | undefined
|
|
36348
36514
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
36349
36515
|
connected_account_id: string
|
|
36516
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
36350
36517
|
acs_credential_pool_id?: string | undefined
|
|
36351
36518
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
36352
36519
|
acs_system_id: string
|
|
@@ -36497,6 +36664,7 @@ export type Routes = {
|
|
|
36497
36664
|
endpoint_id?: string | undefined
|
|
36498
36665
|
}
|
|
36499
36666
|
| undefined
|
|
36667
|
+
/** Indicates whether Seam manages the credential. */
|
|
36500
36668
|
is_managed: true
|
|
36501
36669
|
}[]
|
|
36502
36670
|
}
|
|
@@ -36628,6 +36796,7 @@ export type Routes = {
|
|
|
36628
36796
|
acs_credential_on_encoder: {
|
|
36629
36797
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
36630
36798
|
created_at: string | null
|
|
36799
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
36631
36800
|
is_issued: boolean | null
|
|
36632
36801
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
36633
36802
|
starts_at: string | null
|
|
@@ -36677,6 +36846,7 @@ export type Routes = {
|
|
|
36677
36846
|
user_identity_id?: string | undefined
|
|
36678
36847
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
36679
36848
|
connected_account_id: string
|
|
36849
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
36680
36850
|
acs_credential_pool_id?: string | undefined
|
|
36681
36851
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
36682
36852
|
acs_system_id: string
|
|
@@ -36833,6 +37003,7 @@ export type Routes = {
|
|
|
36833
37003
|
endpoint_id?: string | undefined
|
|
36834
37004
|
}
|
|
36835
37005
|
| undefined
|
|
37006
|
+
/** Indicates whether Seam manages the credential. */
|
|
36836
37007
|
is_managed: true
|
|
36837
37008
|
}
|
|
36838
37009
|
| {
|
|
@@ -36844,6 +37015,7 @@ export type Routes = {
|
|
|
36844
37015
|
user_identity_id?: string | undefined
|
|
36845
37016
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
36846
37017
|
connected_account_id: string
|
|
37018
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
36847
37019
|
acs_credential_pool_id?: string | undefined
|
|
36848
37020
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
36849
37021
|
acs_system_id: string
|
|
@@ -37091,6 +37263,7 @@ export type Routes = {
|
|
|
37091
37263
|
user_identity_id?: string | undefined
|
|
37092
37264
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
37093
37265
|
connected_account_id: string
|
|
37266
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
37094
37267
|
acs_credential_pool_id?: string | undefined
|
|
37095
37268
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
37096
37269
|
acs_system_id: string
|
|
@@ -37241,6 +37414,7 @@ export type Routes = {
|
|
|
37241
37414
|
endpoint_id?: string | undefined
|
|
37242
37415
|
}
|
|
37243
37416
|
| undefined
|
|
37417
|
+
/** Indicates whether Seam manages the credential. */
|
|
37244
37418
|
is_managed: true
|
|
37245
37419
|
}
|
|
37246
37420
|
| {
|
|
@@ -37252,6 +37426,7 @@ export type Routes = {
|
|
|
37252
37426
|
user_identity_id?: string | undefined
|
|
37253
37427
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
37254
37428
|
connected_account_id: string
|
|
37429
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
37255
37430
|
acs_credential_pool_id?: string | undefined
|
|
37256
37431
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
37257
37432
|
acs_system_id: string
|
|
@@ -37504,6 +37679,7 @@ export type Routes = {
|
|
|
37504
37679
|
user_identity_id?: string | undefined
|
|
37505
37680
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
37506
37681
|
connected_account_id: string
|
|
37682
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
37507
37683
|
acs_credential_pool_id?: string | undefined
|
|
37508
37684
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
37509
37685
|
acs_system_id: string
|
|
@@ -37654,6 +37830,7 @@ export type Routes = {
|
|
|
37654
37830
|
endpoint_id?: string | undefined
|
|
37655
37831
|
}
|
|
37656
37832
|
| undefined
|
|
37833
|
+
/** Indicates whether Seam manages the credential. */
|
|
37657
37834
|
is_managed: true
|
|
37658
37835
|
}
|
|
37659
37836
|
}
|
|
@@ -38462,7 +38639,9 @@ export type Routes = {
|
|
|
38462
38639
|
default_credential_manager_acs_system_id?: (string | null) | undefined
|
|
38463
38640
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
38464
38641
|
acs_system_id: string
|
|
38642
|
+
/** Number of users in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
38465
38643
|
acs_user_count?: number | undefined
|
|
38644
|
+
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
38466
38645
|
acs_access_group_count?: number | undefined
|
|
38467
38646
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
38468
38647
|
external_type?:
|
|
@@ -38488,6 +38667,7 @@ export type Routes = {
|
|
|
38488
38667
|
external_type_display_name?: string | undefined
|
|
38489
38668
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
38490
38669
|
is_credential_manager: boolean
|
|
38670
|
+
/** Visionline-specific metadata for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
38491
38671
|
visionline_metadata?:
|
|
38492
38672
|
| {
|
|
38493
38673
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
@@ -38522,6 +38702,7 @@ export type Routes = {
|
|
|
38522
38702
|
/**
|
|
38523
38703
|
* @deprecated Use `external_type_display_name`.*/
|
|
38524
38704
|
system_type_display_name?: string | undefined
|
|
38705
|
+
/** Location information for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
38525
38706
|
location: {
|
|
38526
38707
|
/** Time zone in which the [access control system](https://docs.seam.co/low-level-apis/access-systems) is located. */
|
|
38527
38708
|
time_zone: string | null
|
|
@@ -38558,6 +38739,7 @@ export type Routes = {
|
|
|
38558
38739
|
message: string
|
|
38559
38740
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
38560
38741
|
error_code: 'bridge_disconnected'
|
|
38742
|
+
/** Indicates whether the error is related to the [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
38561
38743
|
is_bridge_error?: boolean | undefined
|
|
38562
38744
|
}
|
|
38563
38745
|
| {
|
|
@@ -38663,7 +38845,9 @@ export type Routes = {
|
|
|
38663
38845
|
default_credential_manager_acs_system_id?: (string | null) | undefined
|
|
38664
38846
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
38665
38847
|
acs_system_id: string
|
|
38848
|
+
/** Number of users in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
38666
38849
|
acs_user_count?: number | undefined
|
|
38850
|
+
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
38667
38851
|
acs_access_group_count?: number | undefined
|
|
38668
38852
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
38669
38853
|
external_type?:
|
|
@@ -38689,6 +38873,7 @@ export type Routes = {
|
|
|
38689
38873
|
external_type_display_name?: string | undefined
|
|
38690
38874
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
38691
38875
|
is_credential_manager: boolean
|
|
38876
|
+
/** Visionline-specific metadata for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
38692
38877
|
visionline_metadata?:
|
|
38693
38878
|
| {
|
|
38694
38879
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
@@ -38723,6 +38908,7 @@ export type Routes = {
|
|
|
38723
38908
|
/**
|
|
38724
38909
|
* @deprecated Use `external_type_display_name`.*/
|
|
38725
38910
|
system_type_display_name?: string | undefined
|
|
38911
|
+
/** Location information for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
38726
38912
|
location: {
|
|
38727
38913
|
/** Time zone in which the [access control system](https://docs.seam.co/low-level-apis/access-systems) is located. */
|
|
38728
38914
|
time_zone: string | null
|
|
@@ -38759,6 +38945,7 @@ export type Routes = {
|
|
|
38759
38945
|
message: string
|
|
38760
38946
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
38761
38947
|
error_code: 'bridge_disconnected'
|
|
38948
|
+
/** Indicates whether the error is related to the [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
38762
38949
|
is_bridge_error?: boolean | undefined
|
|
38763
38950
|
}
|
|
38764
38951
|
| {
|
|
@@ -38860,7 +39047,9 @@ export type Routes = {
|
|
|
38860
39047
|
default_credential_manager_acs_system_id?: (string | null) | undefined
|
|
38861
39048
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
38862
39049
|
acs_system_id: string
|
|
39050
|
+
/** Number of users in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
38863
39051
|
acs_user_count?: number | undefined
|
|
39052
|
+
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
38864
39053
|
acs_access_group_count?: number | undefined
|
|
38865
39054
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
38866
39055
|
external_type?:
|
|
@@ -38886,6 +39075,7 @@ export type Routes = {
|
|
|
38886
39075
|
external_type_display_name?: string | undefined
|
|
38887
39076
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
38888
39077
|
is_credential_manager: boolean
|
|
39078
|
+
/** Visionline-specific metadata for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
38889
39079
|
visionline_metadata?:
|
|
38890
39080
|
| {
|
|
38891
39081
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
@@ -38920,6 +39110,7 @@ export type Routes = {
|
|
|
38920
39110
|
/**
|
|
38921
39111
|
* @deprecated Use `external_type_display_name`.*/
|
|
38922
39112
|
system_type_display_name?: string | undefined
|
|
39113
|
+
/** Location information for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
38923
39114
|
location: {
|
|
38924
39115
|
/** Time zone in which the [access control system](https://docs.seam.co/low-level-apis/access-systems) is located. */
|
|
38925
39116
|
time_zone: string | null
|
|
@@ -38956,6 +39147,7 @@ export type Routes = {
|
|
|
38956
39147
|
message: string
|
|
38957
39148
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
38958
39149
|
error_code: 'bridge_disconnected'
|
|
39150
|
+
/** Indicates whether the error is related to the [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
38959
39151
|
is_bridge_error?: boolean | undefined
|
|
38960
39152
|
}
|
|
38961
39153
|
| {
|
|
@@ -39139,6 +39331,7 @@ export type Routes = {
|
|
|
39139
39331
|
acs_user_id: string
|
|
39140
39332
|
/** ID of the [access system](https://docs.seam.co/low-level-apis/access-systems) that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
39141
39333
|
acs_system_id: string
|
|
39334
|
+
/** ID of the HID access control system associated with the user. */
|
|
39142
39335
|
hid_acs_system_id?: string | undefined
|
|
39143
39336
|
/** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
39144
39337
|
workspace_id: string
|
|
@@ -39423,6 +39616,7 @@ export type Routes = {
|
|
|
39423
39616
|
email_address?: string | undefined
|
|
39424
39617
|
/** Phone number of the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management) in E.164 format (for example, `+15555550100`). */
|
|
39425
39618
|
phone_number?: string | undefined
|
|
39619
|
+
/** Indicates whether Seam manages the access system user. */
|
|
39426
39620
|
is_managed: true
|
|
39427
39621
|
}
|
|
39428
39622
|
}
|
|
@@ -39470,6 +39664,7 @@ export type Routes = {
|
|
|
39470
39664
|
acs_user_id: string
|
|
39471
39665
|
/** ID of the [access system](https://docs.seam.co/low-level-apis/access-systems) that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
39472
39666
|
acs_system_id: string
|
|
39667
|
+
/** ID of the HID access control system associated with the user. */
|
|
39473
39668
|
hid_acs_system_id?: string | undefined
|
|
39474
39669
|
/** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
39475
39670
|
workspace_id: string
|
|
@@ -39754,6 +39949,7 @@ export type Routes = {
|
|
|
39754
39949
|
email_address?: string | undefined
|
|
39755
39950
|
/** Phone number of the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management) in E.164 format (for example, `+15555550100`). */
|
|
39756
39951
|
phone_number?: string | undefined
|
|
39952
|
+
/** Indicates whether Seam manages the access system user. */
|
|
39757
39953
|
is_managed: true
|
|
39758
39954
|
}
|
|
39759
39955
|
}
|
|
@@ -39789,6 +39985,7 @@ export type Routes = {
|
|
|
39789
39985
|
acs_user_id: string
|
|
39790
39986
|
/** ID of the [access system](https://docs.seam.co/low-level-apis/access-systems) that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
39791
39987
|
acs_system_id: string
|
|
39988
|
+
/** ID of the HID access control system associated with the user. */
|
|
39792
39989
|
hid_acs_system_id?: string | undefined
|
|
39793
39990
|
/** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
39794
39991
|
workspace_id: string
|
|
@@ -40073,6 +40270,7 @@ export type Routes = {
|
|
|
40073
40270
|
email_address?: string | undefined
|
|
40074
40271
|
/** Phone number of the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management) in E.164 format (for example, `+15555550100`). */
|
|
40075
40272
|
phone_number?: string | undefined
|
|
40273
|
+
/** Indicates whether Seam manages the access system user. */
|
|
40076
40274
|
is_managed: true
|
|
40077
40275
|
}[]
|
|
40078
40276
|
/** Information about the current page of results. */
|
|
@@ -40389,6 +40587,7 @@ export type Routes = {
|
|
|
40389
40587
|
acs_user_id: string
|
|
40390
40588
|
/** ID of the [access system](https://docs.seam.co/low-level-apis/access-systems) that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
40391
40589
|
acs_system_id: string
|
|
40590
|
+
/** ID of the HID access control system associated with the user. */
|
|
40392
40591
|
hid_acs_system_id?: string | undefined
|
|
40393
40592
|
/** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
40394
40593
|
workspace_id: string
|
|
@@ -40704,6 +40903,7 @@ export type Routes = {
|
|
|
40704
40903
|
acs_user_id: string
|
|
40705
40904
|
/** ID of the [access system](https://docs.seam.co/low-level-apis/access-systems) that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
40706
40905
|
acs_system_id: string
|
|
40906
|
+
/** ID of the HID access control system associated with the user. */
|
|
40707
40907
|
hid_acs_system_id?: string | undefined
|
|
40708
40908
|
/** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
40709
40909
|
workspace_id: string
|
|
@@ -41039,6 +41239,7 @@ export type Routes = {
|
|
|
41039
41239
|
phone_number?: string | undefined
|
|
41040
41240
|
/** Email address of the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
41041
41241
|
email_address?: string | undefined
|
|
41242
|
+
/** ID of the HID access control system associated with the user. */
|
|
41042
41243
|
hid_acs_system_id?: string | undefined
|
|
41043
41244
|
}
|
|
41044
41245
|
commonParams: {}
|
|
@@ -41170,6 +41371,7 @@ export type Routes = {
|
|
|
41170
41371
|
acs_credential_on_encoder: {
|
|
41171
41372
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
41172
41373
|
created_at: string | null
|
|
41374
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
41173
41375
|
is_issued: boolean | null
|
|
41174
41376
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
41175
41377
|
starts_at: string | null
|
|
@@ -41219,6 +41421,7 @@ export type Routes = {
|
|
|
41219
41421
|
user_identity_id?: string | undefined
|
|
41220
41422
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
41221
41423
|
connected_account_id: string
|
|
41424
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
41222
41425
|
acs_credential_pool_id?: string | undefined
|
|
41223
41426
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
41224
41427
|
acs_system_id: string
|
|
@@ -41375,6 +41578,7 @@ export type Routes = {
|
|
|
41375
41578
|
endpoint_id?: string | undefined
|
|
41376
41579
|
}
|
|
41377
41580
|
| undefined
|
|
41581
|
+
/** Indicates whether Seam manages the credential. */
|
|
41378
41582
|
is_managed: true
|
|
41379
41583
|
}
|
|
41380
41584
|
| {
|
|
@@ -41386,6 +41590,7 @@ export type Routes = {
|
|
|
41386
41590
|
user_identity_id?: string | undefined
|
|
41387
41591
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
41388
41592
|
connected_account_id: string
|
|
41593
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
41389
41594
|
acs_credential_pool_id?: string | undefined
|
|
41390
41595
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
41391
41596
|
acs_system_id: string
|
|
@@ -41633,6 +41838,7 @@ export type Routes = {
|
|
|
41633
41838
|
user_identity_id?: string | undefined
|
|
41634
41839
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
41635
41840
|
connected_account_id: string
|
|
41841
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
41636
41842
|
acs_credential_pool_id?: string | undefined
|
|
41637
41843
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
41638
41844
|
acs_system_id: string
|
|
@@ -41783,6 +41989,7 @@ export type Routes = {
|
|
|
41783
41989
|
endpoint_id?: string | undefined
|
|
41784
41990
|
}
|
|
41785
41991
|
| undefined
|
|
41992
|
+
/** Indicates whether Seam manages the credential. */
|
|
41786
41993
|
is_managed: true
|
|
41787
41994
|
}
|
|
41788
41995
|
| {
|
|
@@ -41794,6 +42001,7 @@ export type Routes = {
|
|
|
41794
42001
|
user_identity_id?: string | undefined
|
|
41795
42002
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
41796
42003
|
connected_account_id: string
|
|
42004
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
41797
42005
|
acs_credential_pool_id?: string | undefined
|
|
41798
42006
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
41799
42007
|
acs_system_id: string
|
|
@@ -42046,6 +42254,7 @@ export type Routes = {
|
|
|
42046
42254
|
user_identity_id?: string | undefined
|
|
42047
42255
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
42048
42256
|
connected_account_id: string
|
|
42257
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
42049
42258
|
acs_credential_pool_id?: string | undefined
|
|
42050
42259
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
42051
42260
|
acs_system_id: string
|
|
@@ -42196,6 +42405,7 @@ export type Routes = {
|
|
|
42196
42405
|
endpoint_id?: string | undefined
|
|
42197
42406
|
}
|
|
42198
42407
|
| undefined
|
|
42408
|
+
/** Indicates whether Seam manages the credential. */
|
|
42199
42409
|
is_managed: true
|
|
42200
42410
|
}
|
|
42201
42411
|
}
|
|
@@ -43108,6 +43318,7 @@ export type Routes = {
|
|
|
43108
43318
|
acs_credential_on_encoder: {
|
|
43109
43319
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
43110
43320
|
created_at: string | null
|
|
43321
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
43111
43322
|
is_issued: boolean | null
|
|
43112
43323
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
43113
43324
|
starts_at: string | null
|
|
@@ -43157,6 +43368,7 @@ export type Routes = {
|
|
|
43157
43368
|
user_identity_id?: string | undefined
|
|
43158
43369
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
43159
43370
|
connected_account_id: string
|
|
43371
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
43160
43372
|
acs_credential_pool_id?: string | undefined
|
|
43161
43373
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
43162
43374
|
acs_system_id: string
|
|
@@ -43313,6 +43525,7 @@ export type Routes = {
|
|
|
43313
43525
|
endpoint_id?: string | undefined
|
|
43314
43526
|
}
|
|
43315
43527
|
| undefined
|
|
43528
|
+
/** Indicates whether Seam manages the credential. */
|
|
43316
43529
|
is_managed: true
|
|
43317
43530
|
}
|
|
43318
43531
|
| {
|
|
@@ -43324,6 +43537,7 @@ export type Routes = {
|
|
|
43324
43537
|
user_identity_id?: string | undefined
|
|
43325
43538
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
43326
43539
|
connected_account_id: string
|
|
43540
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
43327
43541
|
acs_credential_pool_id?: string | undefined
|
|
43328
43542
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
43329
43543
|
acs_system_id: string
|
|
@@ -43571,6 +43785,7 @@ export type Routes = {
|
|
|
43571
43785
|
user_identity_id?: string | undefined
|
|
43572
43786
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
43573
43787
|
connected_account_id: string
|
|
43788
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
43574
43789
|
acs_credential_pool_id?: string | undefined
|
|
43575
43790
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
43576
43791
|
acs_system_id: string
|
|
@@ -43721,6 +43936,7 @@ export type Routes = {
|
|
|
43721
43936
|
endpoint_id?: string | undefined
|
|
43722
43937
|
}
|
|
43723
43938
|
| undefined
|
|
43939
|
+
/** Indicates whether Seam manages the credential. */
|
|
43724
43940
|
is_managed: true
|
|
43725
43941
|
}
|
|
43726
43942
|
| {
|
|
@@ -43732,6 +43948,7 @@ export type Routes = {
|
|
|
43732
43948
|
user_identity_id?: string | undefined
|
|
43733
43949
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
43734
43950
|
connected_account_id: string
|
|
43951
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
43735
43952
|
acs_credential_pool_id?: string | undefined
|
|
43736
43953
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
43737
43954
|
acs_system_id: string
|
|
@@ -43984,6 +44201,7 @@ export type Routes = {
|
|
|
43984
44201
|
user_identity_id?: string | undefined
|
|
43985
44202
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
43986
44203
|
connected_account_id: string
|
|
44204
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
43987
44205
|
acs_credential_pool_id?: string | undefined
|
|
43988
44206
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
43989
44207
|
acs_system_id: string
|
|
@@ -44134,6 +44352,7 @@ export type Routes = {
|
|
|
44134
44352
|
endpoint_id?: string | undefined
|
|
44135
44353
|
}
|
|
44136
44354
|
| undefined
|
|
44355
|
+
/** Indicates whether Seam manages the credential. */
|
|
44137
44356
|
is_managed: true
|
|
44138
44357
|
}
|
|
44139
44358
|
}
|
|
@@ -45431,6 +45650,7 @@ export type Routes = {
|
|
|
45431
45650
|
connected_account_id: string | null
|
|
45432
45651
|
/** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
|
|
45433
45652
|
url: string
|
|
45653
|
+
/** Device selection mode of the Connect Webview. Supported values: `none`, `single`, `multiple`. */
|
|
45434
45654
|
device_selection_mode: 'none' | 'single' | 'multiple'
|
|
45435
45655
|
/** List of accepted [provider keys](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
|
|
45436
45656
|
accepted_providers: string[]
|
|
@@ -45522,6 +45742,7 @@ export type Routes = {
|
|
|
45522
45742
|
connected_account_id: string | null
|
|
45523
45743
|
/** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
|
|
45524
45744
|
url: string
|
|
45745
|
+
/** Device selection mode of the Connect Webview. Supported values: `none`, `single`, `multiple`. */
|
|
45525
45746
|
device_selection_mode: 'none' | 'single' | 'multiple'
|
|
45526
45747
|
/** List of accepted [provider keys](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
|
|
45527
45748
|
accepted_providers: string[]
|
|
@@ -45603,6 +45824,7 @@ export type Routes = {
|
|
|
45603
45824
|
connected_account_id: string | null
|
|
45604
45825
|
/** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
|
|
45605
45826
|
url: string
|
|
45827
|
+
/** Device selection mode of the Connect Webview. Supported values: `none`, `single`, `multiple`. */
|
|
45606
45828
|
device_selection_mode: 'none' | 'single' | 'multiple'
|
|
45607
45829
|
/** List of accepted [provider keys](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
|
|
45608
45830
|
accepted_providers: string[]
|
|
@@ -49121,27 +49343,47 @@ export type Routes = {
|
|
|
49121
49343
|
image_url?: string | undefined
|
|
49122
49344
|
}
|
|
49123
49345
|
| undefined
|
|
49346
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
49124
49347
|
can_remotely_unlock?: boolean | undefined
|
|
49348
|
+
/** Indicates whether the device supports remote locking. */
|
|
49125
49349
|
can_remotely_lock?: boolean | undefined
|
|
49350
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
49126
49351
|
can_program_offline_access_codes?: boolean | undefined
|
|
49352
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
49127
49353
|
can_program_online_access_codes?: boolean | undefined
|
|
49354
|
+
/** Indicates whether the thermostat supports heating. */
|
|
49128
49355
|
can_hvac_heat?: boolean | undefined
|
|
49356
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
49129
49357
|
can_hvac_cool?: boolean | undefined
|
|
49358
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
49130
49359
|
can_hvac_heat_cool?: boolean | undefined
|
|
49360
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
49131
49361
|
can_turn_off_hvac?: boolean | undefined
|
|
49362
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
49132
49363
|
can_simulate_removal?: boolean | undefined
|
|
49364
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
49133
49365
|
can_simulate_connection?: boolean | undefined
|
|
49366
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
49134
49367
|
can_simulate_disconnection?: boolean | undefined
|
|
49368
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
49135
49369
|
can_unlock_with_code?: boolean | undefined
|
|
49370
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
49136
49371
|
can_run_thermostat_programs?: boolean | undefined
|
|
49372
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
49137
49373
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
49374
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
49138
49375
|
can_program_thermostat_programs_as_different_each_day?:
|
|
49139
49376
|
| boolean
|
|
49140
49377
|
| undefined
|
|
49378
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
49141
49379
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
49380
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
49142
49381
|
can_simulate_hub_connection?: boolean | undefined
|
|
49382
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
49143
49383
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
49384
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
49144
49385
|
can_simulate_paid_subscription?: boolean | undefined
|
|
49386
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
49145
49387
|
can_configure_auto_lock?: boolean | undefined
|
|
49146
49388
|
}
|
|
49147
49389
|
}
|
|
@@ -51065,27 +51307,47 @@ export type Routes = {
|
|
|
51065
51307
|
image_url?: string | undefined
|
|
51066
51308
|
}
|
|
51067
51309
|
| undefined
|
|
51310
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
51068
51311
|
can_remotely_unlock?: boolean | undefined
|
|
51312
|
+
/** Indicates whether the device supports remote locking. */
|
|
51069
51313
|
can_remotely_lock?: boolean | undefined
|
|
51314
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
51070
51315
|
can_program_offline_access_codes?: boolean | undefined
|
|
51316
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
51071
51317
|
can_program_online_access_codes?: boolean | undefined
|
|
51318
|
+
/** Indicates whether the thermostat supports heating. */
|
|
51072
51319
|
can_hvac_heat?: boolean | undefined
|
|
51320
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
51073
51321
|
can_hvac_cool?: boolean | undefined
|
|
51322
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
51074
51323
|
can_hvac_heat_cool?: boolean | undefined
|
|
51324
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
51075
51325
|
can_turn_off_hvac?: boolean | undefined
|
|
51326
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
51076
51327
|
can_simulate_removal?: boolean | undefined
|
|
51328
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
51077
51329
|
can_simulate_connection?: boolean | undefined
|
|
51330
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
51078
51331
|
can_simulate_disconnection?: boolean | undefined
|
|
51332
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
51079
51333
|
can_unlock_with_code?: boolean | undefined
|
|
51334
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
51080
51335
|
can_run_thermostat_programs?: boolean | undefined
|
|
51336
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
51081
51337
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
51338
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
51082
51339
|
can_program_thermostat_programs_as_different_each_day?:
|
|
51083
51340
|
| boolean
|
|
51084
51341
|
| undefined
|
|
51342
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
51085
51343
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
51344
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
51086
51345
|
can_simulate_hub_connection?: boolean | undefined
|
|
51346
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
51087
51347
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
51348
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
51088
51349
|
can_simulate_paid_subscription?: boolean | undefined
|
|
51350
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
51089
51351
|
can_configure_auto_lock?: boolean | undefined
|
|
51090
51352
|
}[]
|
|
51091
51353
|
/** Information about the current page of results. */
|
|
@@ -51123,6 +51385,7 @@ export type Routes = {
|
|
|
51123
51385
|
formData: {}
|
|
51124
51386
|
jsonResponse: {
|
|
51125
51387
|
device_providers: {
|
|
51388
|
+
/** Name of the device provider. */
|
|
51126
51389
|
device_provider_name:
|
|
51127
51390
|
| 'hotek'
|
|
51128
51391
|
| 'dormakaba_community'
|
|
@@ -51184,8 +51447,11 @@ export type Routes = {
|
|
|
51184
51447
|
| 'guesty'
|
|
51185
51448
|
| 'acuity_scheduling'
|
|
51186
51449
|
| 'omnitec'
|
|
51450
|
+
/** Display name for the device provider. */
|
|
51187
51451
|
display_name: string
|
|
51452
|
+
/** Image URL for the device provider. */
|
|
51188
51453
|
image_url: string
|
|
51454
|
+
/** List of provider categories to which the device provider belongs, such as `stable`, `consumer_smartlocks`, `thermostats`, and so on. */
|
|
51189
51455
|
provider_categories: (
|
|
51190
51456
|
| 'stable'
|
|
51191
51457
|
| 'consumer_smartlocks'
|
|
@@ -51196,27 +51462,47 @@ export type Routes = {
|
|
|
51196
51462
|
| 'cameras'
|
|
51197
51463
|
| 'connectors'
|
|
51198
51464
|
)[]
|
|
51465
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
51199
51466
|
can_remotely_unlock?: boolean | undefined
|
|
51467
|
+
/** Indicates whether the device supports remote locking. */
|
|
51200
51468
|
can_remotely_lock?: boolean | undefined
|
|
51469
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
51201
51470
|
can_program_offline_access_codes?: boolean | undefined
|
|
51471
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
51202
51472
|
can_program_online_access_codes?: boolean | undefined
|
|
51473
|
+
/** Indicates whether the thermostat supports heating. */
|
|
51203
51474
|
can_hvac_heat?: boolean | undefined
|
|
51475
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
51204
51476
|
can_hvac_cool?: boolean | undefined
|
|
51477
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
51205
51478
|
can_hvac_heat_cool?: boolean | undefined
|
|
51479
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
51206
51480
|
can_turn_off_hvac?: boolean | undefined
|
|
51481
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
51207
51482
|
can_simulate_removal?: boolean | undefined
|
|
51483
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
51208
51484
|
can_simulate_connection?: boolean | undefined
|
|
51485
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
51209
51486
|
can_simulate_disconnection?: boolean | undefined
|
|
51487
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
51210
51488
|
can_unlock_with_code?: boolean | undefined
|
|
51489
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
51211
51490
|
can_run_thermostat_programs?: boolean | undefined
|
|
51491
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
51212
51492
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
51493
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
51213
51494
|
can_program_thermostat_programs_as_different_each_day?:
|
|
51214
51495
|
| boolean
|
|
51215
51496
|
| undefined
|
|
51497
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
51216
51498
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
51499
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
51217
51500
|
can_simulate_hub_connection?: boolean | undefined
|
|
51501
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
51218
51502
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
51503
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
51219
51504
|
can_simulate_paid_subscription?: boolean | undefined
|
|
51505
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
51220
51506
|
can_configure_auto_lock?: boolean | undefined
|
|
51221
51507
|
}[]
|
|
51222
51508
|
}
|
|
@@ -53106,6 +53392,7 @@ export type Routes = {
|
|
|
53106
53392
|
custom_metadata: {
|
|
53107
53393
|
[x: string]: string | boolean
|
|
53108
53394
|
}
|
|
53395
|
+
/** Indicates that Seam does not manage the device. */
|
|
53109
53396
|
is_managed: false
|
|
53110
53397
|
/** properties of the device. */
|
|
53111
53398
|
properties: {
|
|
@@ -53183,27 +53470,47 @@ export type Routes = {
|
|
|
53183
53470
|
accessory_keypad_supported?: boolean | undefined
|
|
53184
53471
|
}
|
|
53185
53472
|
}
|
|
53473
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
53186
53474
|
can_remotely_unlock?: boolean | undefined
|
|
53475
|
+
/** Indicates whether the device supports remote locking. */
|
|
53187
53476
|
can_remotely_lock?: boolean | undefined
|
|
53477
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
53188
53478
|
can_program_offline_access_codes?: boolean | undefined
|
|
53479
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
53189
53480
|
can_program_online_access_codes?: boolean | undefined
|
|
53481
|
+
/** Indicates whether the thermostat supports heating. */
|
|
53190
53482
|
can_hvac_heat?: boolean | undefined
|
|
53483
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
53191
53484
|
can_hvac_cool?: boolean | undefined
|
|
53485
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
53192
53486
|
can_hvac_heat_cool?: boolean | undefined
|
|
53487
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
53193
53488
|
can_turn_off_hvac?: boolean | undefined
|
|
53489
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
53194
53490
|
can_simulate_removal?: boolean | undefined
|
|
53491
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
53195
53492
|
can_simulate_connection?: boolean | undefined
|
|
53493
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
53196
53494
|
can_simulate_disconnection?: boolean | undefined
|
|
53495
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
53197
53496
|
can_unlock_with_code?: boolean | undefined
|
|
53497
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
53198
53498
|
can_run_thermostat_programs?: boolean | undefined
|
|
53499
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
53199
53500
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
53501
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
53200
53502
|
can_program_thermostat_programs_as_different_each_day?:
|
|
53201
53503
|
| boolean
|
|
53202
53504
|
| undefined
|
|
53505
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
53203
53506
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
53507
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
53204
53508
|
can_simulate_hub_connection?: boolean | undefined
|
|
53509
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
53205
53510
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
53511
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
53206
53512
|
can_simulate_paid_subscription?: boolean | undefined
|
|
53513
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
53207
53514
|
can_configure_auto_lock?: boolean | undefined
|
|
53208
53515
|
}
|
|
53209
53516
|
}
|
|
@@ -53915,6 +54222,7 @@ export type Routes = {
|
|
|
53915
54222
|
custom_metadata: {
|
|
53916
54223
|
[x: string]: string | boolean
|
|
53917
54224
|
}
|
|
54225
|
+
/** Indicates that Seam does not manage the device. */
|
|
53918
54226
|
is_managed: false
|
|
53919
54227
|
/** properties of the device. */
|
|
53920
54228
|
properties: {
|
|
@@ -53992,27 +54300,47 @@ export type Routes = {
|
|
|
53992
54300
|
accessory_keypad_supported?: boolean | undefined
|
|
53993
54301
|
}
|
|
53994
54302
|
}
|
|
54303
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
53995
54304
|
can_remotely_unlock?: boolean | undefined
|
|
54305
|
+
/** Indicates whether the device supports remote locking. */
|
|
53996
54306
|
can_remotely_lock?: boolean | undefined
|
|
54307
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
53997
54308
|
can_program_offline_access_codes?: boolean | undefined
|
|
54309
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
53998
54310
|
can_program_online_access_codes?: boolean | undefined
|
|
54311
|
+
/** Indicates whether the thermostat supports heating. */
|
|
53999
54312
|
can_hvac_heat?: boolean | undefined
|
|
54313
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
54000
54314
|
can_hvac_cool?: boolean | undefined
|
|
54315
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
54001
54316
|
can_hvac_heat_cool?: boolean | undefined
|
|
54317
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
54002
54318
|
can_turn_off_hvac?: boolean | undefined
|
|
54319
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
54003
54320
|
can_simulate_removal?: boolean | undefined
|
|
54321
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
54004
54322
|
can_simulate_connection?: boolean | undefined
|
|
54323
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
54005
54324
|
can_simulate_disconnection?: boolean | undefined
|
|
54325
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
54006
54326
|
can_unlock_with_code?: boolean | undefined
|
|
54327
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
54007
54328
|
can_run_thermostat_programs?: boolean | undefined
|
|
54329
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
54008
54330
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
54331
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
54009
54332
|
can_program_thermostat_programs_as_different_each_day?:
|
|
54010
54333
|
| boolean
|
|
54011
54334
|
| undefined
|
|
54335
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
54012
54336
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
54337
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
54013
54338
|
can_simulate_hub_connection?: boolean | undefined
|
|
54339
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
54014
54340
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
54341
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
54015
54342
|
can_simulate_paid_subscription?: boolean | undefined
|
|
54343
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
54016
54344
|
can_configure_auto_lock?: boolean | undefined
|
|
54017
54345
|
}[]
|
|
54018
54346
|
/** Information about the current page of results. */
|
|
@@ -54835,6 +55163,7 @@ export type Routes = {
|
|
|
54835
55163
|
}
|
|
54836
55164
|
| undefined
|
|
54837
55165
|
event_type: 'access_code.backup_access_code_pulled'
|
|
55166
|
+
/** ID of the backup access code that was pulled from the pool. */
|
|
54838
55167
|
backup_access_code_id: string
|
|
54839
55168
|
}
|
|
54840
55169
|
| {
|
|
@@ -55384,6 +55713,7 @@ export type Routes = {
|
|
|
55384
55713
|
connected_account_id?: string | undefined
|
|
55385
55714
|
/** ID of the access system. */
|
|
55386
55715
|
acs_system_id: string
|
|
55716
|
+
/** ID of the affected access system user. */
|
|
55387
55717
|
acs_user_id: string
|
|
55388
55718
|
event_type: 'acs_user.created'
|
|
55389
55719
|
}
|
|
@@ -55400,6 +55730,7 @@ export type Routes = {
|
|
|
55400
55730
|
connected_account_id?: string | undefined
|
|
55401
55731
|
/** ID of the access system. */
|
|
55402
55732
|
acs_system_id: string
|
|
55733
|
+
/** ID of the affected access system user. */
|
|
55403
55734
|
acs_user_id: string
|
|
55404
55735
|
event_type: 'acs_user.deleted'
|
|
55405
55736
|
}
|
|
@@ -55467,6 +55798,7 @@ export type Routes = {
|
|
|
55467
55798
|
connected_account_id?: string | undefined
|
|
55468
55799
|
/** ID of the access system. */
|
|
55469
55800
|
acs_system_id: string
|
|
55801
|
+
/** ID of the affected entrance. */
|
|
55470
55802
|
acs_entrance_id: string
|
|
55471
55803
|
event_type: 'acs_entrance.added'
|
|
55472
55804
|
}
|
|
@@ -55483,6 +55815,7 @@ export type Routes = {
|
|
|
55483
55815
|
connected_account_id?: string | undefined
|
|
55484
55816
|
/** ID of the access system. */
|
|
55485
55817
|
acs_system_id: string
|
|
55818
|
+
/** ID of the affected entrance. */
|
|
55486
55819
|
acs_entrance_id: string
|
|
55487
55820
|
event_type: 'acs_entrance.removed'
|
|
55488
55821
|
}
|
|
@@ -58403,6 +58736,7 @@ export type Routes = {
|
|
|
58403
58736
|
}
|
|
58404
58737
|
| undefined
|
|
58405
58738
|
event_type: 'access_code.backup_access_code_pulled'
|
|
58739
|
+
/** ID of the backup access code that was pulled from the pool. */
|
|
58406
58740
|
backup_access_code_id: string
|
|
58407
58741
|
}
|
|
58408
58742
|
| {
|
|
@@ -58952,6 +59286,7 @@ export type Routes = {
|
|
|
58952
59286
|
connected_account_id?: string | undefined
|
|
58953
59287
|
/** ID of the access system. */
|
|
58954
59288
|
acs_system_id: string
|
|
59289
|
+
/** ID of the affected access system user. */
|
|
58955
59290
|
acs_user_id: string
|
|
58956
59291
|
event_type: 'acs_user.created'
|
|
58957
59292
|
}
|
|
@@ -58968,6 +59303,7 @@ export type Routes = {
|
|
|
58968
59303
|
connected_account_id?: string | undefined
|
|
58969
59304
|
/** ID of the access system. */
|
|
58970
59305
|
acs_system_id: string
|
|
59306
|
+
/** ID of the affected access system user. */
|
|
58971
59307
|
acs_user_id: string
|
|
58972
59308
|
event_type: 'acs_user.deleted'
|
|
58973
59309
|
}
|
|
@@ -59035,6 +59371,7 @@ export type Routes = {
|
|
|
59035
59371
|
connected_account_id?: string | undefined
|
|
59036
59372
|
/** ID of the access system. */
|
|
59037
59373
|
acs_system_id: string
|
|
59374
|
+
/** ID of the affected entrance. */
|
|
59038
59375
|
acs_entrance_id: string
|
|
59039
59376
|
event_type: 'acs_entrance.added'
|
|
59040
59377
|
}
|
|
@@ -59051,6 +59388,7 @@ export type Routes = {
|
|
|
59051
59388
|
connected_account_id?: string | undefined
|
|
59052
59389
|
/** ID of the access system. */
|
|
59053
59390
|
acs_system_id: string
|
|
59391
|
+
/** ID of the affected entrance. */
|
|
59054
59392
|
acs_entrance_id: string
|
|
59055
59393
|
event_type: 'acs_entrance.removed'
|
|
59056
59394
|
}
|
|
@@ -61166,6 +61504,7 @@ export type Routes = {
|
|
|
61166
61504
|
acs_credential_on_encoder: {
|
|
61167
61505
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
61168
61506
|
created_at: string | null
|
|
61507
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
61169
61508
|
is_issued: boolean | null
|
|
61170
61509
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
61171
61510
|
starts_at: string | null
|
|
@@ -61215,6 +61554,7 @@ export type Routes = {
|
|
|
61215
61554
|
user_identity_id?: string | undefined
|
|
61216
61555
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
61217
61556
|
connected_account_id: string
|
|
61557
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
61218
61558
|
acs_credential_pool_id?: string | undefined
|
|
61219
61559
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
61220
61560
|
acs_system_id: string
|
|
@@ -61371,6 +61711,7 @@ export type Routes = {
|
|
|
61371
61711
|
endpoint_id?: string | undefined
|
|
61372
61712
|
}
|
|
61373
61713
|
| undefined
|
|
61714
|
+
/** Indicates whether Seam manages the credential. */
|
|
61374
61715
|
is_managed: true
|
|
61375
61716
|
}
|
|
61376
61717
|
| {
|
|
@@ -61382,6 +61723,7 @@ export type Routes = {
|
|
|
61382
61723
|
user_identity_id?: string | undefined
|
|
61383
61724
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
61384
61725
|
connected_account_id: string
|
|
61726
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
61385
61727
|
acs_credential_pool_id?: string | undefined
|
|
61386
61728
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
61387
61729
|
acs_system_id: string
|
|
@@ -61629,6 +61971,7 @@ export type Routes = {
|
|
|
61629
61971
|
user_identity_id?: string | undefined
|
|
61630
61972
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
61631
61973
|
connected_account_id: string
|
|
61974
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
61632
61975
|
acs_credential_pool_id?: string | undefined
|
|
61633
61976
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
61634
61977
|
acs_system_id: string
|
|
@@ -61779,6 +62122,7 @@ export type Routes = {
|
|
|
61779
62122
|
endpoint_id?: string | undefined
|
|
61780
62123
|
}
|
|
61781
62124
|
| undefined
|
|
62125
|
+
/** Indicates whether Seam manages the credential. */
|
|
61782
62126
|
is_managed: true
|
|
61783
62127
|
}
|
|
61784
62128
|
| {
|
|
@@ -61790,6 +62134,7 @@ export type Routes = {
|
|
|
61790
62134
|
user_identity_id?: string | undefined
|
|
61791
62135
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
61792
62136
|
connected_account_id: string
|
|
62137
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
61793
62138
|
acs_credential_pool_id?: string | undefined
|
|
61794
62139
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
61795
62140
|
acs_system_id: string
|
|
@@ -62042,6 +62387,7 @@ export type Routes = {
|
|
|
62042
62387
|
user_identity_id?: string | undefined
|
|
62043
62388
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
62044
62389
|
connected_account_id: string
|
|
62390
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
62045
62391
|
acs_credential_pool_id?: string | undefined
|
|
62046
62392
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
62047
62393
|
acs_system_id: string
|
|
@@ -62192,6 +62538,7 @@ export type Routes = {
|
|
|
62192
62538
|
endpoint_id?: string | undefined
|
|
62193
62539
|
}
|
|
62194
62540
|
| undefined
|
|
62541
|
+
/** Indicates whether Seam manages the credential. */
|
|
62195
62542
|
is_managed: true
|
|
62196
62543
|
}
|
|
62197
62544
|
}
|
|
@@ -64673,27 +65020,47 @@ export type Routes = {
|
|
|
64673
65020
|
image_url?: string | undefined
|
|
64674
65021
|
}
|
|
64675
65022
|
| undefined
|
|
65023
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
64676
65024
|
can_remotely_unlock?: boolean | undefined
|
|
65025
|
+
/** Indicates whether the device supports remote locking. */
|
|
64677
65026
|
can_remotely_lock?: boolean | undefined
|
|
65027
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
64678
65028
|
can_program_offline_access_codes?: boolean | undefined
|
|
65029
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
64679
65030
|
can_program_online_access_codes?: boolean | undefined
|
|
65031
|
+
/** Indicates whether the thermostat supports heating. */
|
|
64680
65032
|
can_hvac_heat?: boolean | undefined
|
|
65033
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
64681
65034
|
can_hvac_cool?: boolean | undefined
|
|
65035
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
64682
65036
|
can_hvac_heat_cool?: boolean | undefined
|
|
65037
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
64683
65038
|
can_turn_off_hvac?: boolean | undefined
|
|
65039
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
64684
65040
|
can_simulate_removal?: boolean | undefined
|
|
65041
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
64685
65042
|
can_simulate_connection?: boolean | undefined
|
|
65043
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
64686
65044
|
can_simulate_disconnection?: boolean | undefined
|
|
65045
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
64687
65046
|
can_unlock_with_code?: boolean | undefined
|
|
65047
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
64688
65048
|
can_run_thermostat_programs?: boolean | undefined
|
|
65049
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
64689
65050
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
65051
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
64690
65052
|
can_program_thermostat_programs_as_different_each_day?:
|
|
64691
65053
|
| boolean
|
|
64692
65054
|
| undefined
|
|
65055
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
64693
65056
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
65057
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
64694
65058
|
can_simulate_hub_connection?: boolean | undefined
|
|
65059
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
64695
65060
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
65061
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
64696
65062
|
can_simulate_paid_subscription?: boolean | undefined
|
|
65063
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
64697
65064
|
can_configure_auto_lock?: boolean | undefined
|
|
64698
65065
|
}
|
|
64699
65066
|
/** Represents a [device](https://docs.seam.co/core-concepts/devices) that has been connected to Seam. */
|
|
@@ -66377,27 +66744,47 @@ export type Routes = {
|
|
|
66377
66744
|
image_url?: string | undefined
|
|
66378
66745
|
}
|
|
66379
66746
|
| undefined
|
|
66747
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
66380
66748
|
can_remotely_unlock?: boolean | undefined
|
|
66749
|
+
/** Indicates whether the device supports remote locking. */
|
|
66381
66750
|
can_remotely_lock?: boolean | undefined
|
|
66751
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
66382
66752
|
can_program_offline_access_codes?: boolean | undefined
|
|
66753
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
66383
66754
|
can_program_online_access_codes?: boolean | undefined
|
|
66755
|
+
/** Indicates whether the thermostat supports heating. */
|
|
66384
66756
|
can_hvac_heat?: boolean | undefined
|
|
66757
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
66385
66758
|
can_hvac_cool?: boolean | undefined
|
|
66759
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
66386
66760
|
can_hvac_heat_cool?: boolean | undefined
|
|
66761
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
66387
66762
|
can_turn_off_hvac?: boolean | undefined
|
|
66763
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
66388
66764
|
can_simulate_removal?: boolean | undefined
|
|
66765
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
66389
66766
|
can_simulate_connection?: boolean | undefined
|
|
66767
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
66390
66768
|
can_simulate_disconnection?: boolean | undefined
|
|
66769
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
66391
66770
|
can_unlock_with_code?: boolean | undefined
|
|
66771
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
66392
66772
|
can_run_thermostat_programs?: boolean | undefined
|
|
66773
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
66393
66774
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
66775
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
66394
66776
|
can_program_thermostat_programs_as_different_each_day?:
|
|
66395
66777
|
| boolean
|
|
66396
66778
|
| undefined
|
|
66779
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
66397
66780
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
66781
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
66398
66782
|
can_simulate_hub_connection?: boolean | undefined
|
|
66783
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
66399
66784
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
66785
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
66400
66786
|
can_simulate_paid_subscription?: boolean | undefined
|
|
66787
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
66401
66788
|
can_configure_auto_lock?: boolean | undefined
|
|
66402
66789
|
}
|
|
66403
66790
|
}
|
|
@@ -68274,27 +68661,47 @@ export type Routes = {
|
|
|
68274
68661
|
image_url?: string | undefined
|
|
68275
68662
|
}
|
|
68276
68663
|
| undefined
|
|
68664
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
68277
68665
|
can_remotely_unlock?: boolean | undefined
|
|
68666
|
+
/** Indicates whether the device supports remote locking. */
|
|
68278
68667
|
can_remotely_lock?: boolean | undefined
|
|
68668
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
68279
68669
|
can_program_offline_access_codes?: boolean | undefined
|
|
68670
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
68280
68671
|
can_program_online_access_codes?: boolean | undefined
|
|
68672
|
+
/** Indicates whether the thermostat supports heating. */
|
|
68281
68673
|
can_hvac_heat?: boolean | undefined
|
|
68674
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
68282
68675
|
can_hvac_cool?: boolean | undefined
|
|
68676
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
68283
68677
|
can_hvac_heat_cool?: boolean | undefined
|
|
68678
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
68284
68679
|
can_turn_off_hvac?: boolean | undefined
|
|
68680
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
68285
68681
|
can_simulate_removal?: boolean | undefined
|
|
68682
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
68286
68683
|
can_simulate_connection?: boolean | undefined
|
|
68684
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
68287
68685
|
can_simulate_disconnection?: boolean | undefined
|
|
68686
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
68288
68687
|
can_unlock_with_code?: boolean | undefined
|
|
68688
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
68289
68689
|
can_run_thermostat_programs?: boolean | undefined
|
|
68690
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
68290
68691
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
68692
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
68291
68693
|
can_program_thermostat_programs_as_different_each_day?:
|
|
68292
68694
|
| boolean
|
|
68293
68695
|
| undefined
|
|
68696
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
68294
68697
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
68698
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
68295
68699
|
can_simulate_hub_connection?: boolean | undefined
|
|
68700
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
68296
68701
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
68702
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
68297
68703
|
can_simulate_paid_subscription?: boolean | undefined
|
|
68704
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
68298
68705
|
can_configure_auto_lock?: boolean | undefined
|
|
68299
68706
|
}[]
|
|
68300
68707
|
devices: {
|
|
@@ -69977,27 +70384,47 @@ export type Routes = {
|
|
|
69977
70384
|
image_url?: string | undefined
|
|
69978
70385
|
}
|
|
69979
70386
|
| undefined
|
|
70387
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
69980
70388
|
can_remotely_unlock?: boolean | undefined
|
|
70389
|
+
/** Indicates whether the device supports remote locking. */
|
|
69981
70390
|
can_remotely_lock?: boolean | undefined
|
|
70391
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
69982
70392
|
can_program_offline_access_codes?: boolean | undefined
|
|
70393
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
69983
70394
|
can_program_online_access_codes?: boolean | undefined
|
|
70395
|
+
/** Indicates whether the thermostat supports heating. */
|
|
69984
70396
|
can_hvac_heat?: boolean | undefined
|
|
70397
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
69985
70398
|
can_hvac_cool?: boolean | undefined
|
|
70399
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
69986
70400
|
can_hvac_heat_cool?: boolean | undefined
|
|
70401
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
69987
70402
|
can_turn_off_hvac?: boolean | undefined
|
|
70403
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
69988
70404
|
can_simulate_removal?: boolean | undefined
|
|
70405
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
69989
70406
|
can_simulate_connection?: boolean | undefined
|
|
70407
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
69990
70408
|
can_simulate_disconnection?: boolean | undefined
|
|
70409
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
69991
70410
|
can_unlock_with_code?: boolean | undefined
|
|
70411
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
69992
70412
|
can_run_thermostat_programs?: boolean | undefined
|
|
70413
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
69993
70414
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
70415
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
69994
70416
|
can_program_thermostat_programs_as_different_each_day?:
|
|
69995
70417
|
| boolean
|
|
69996
70418
|
| undefined
|
|
70419
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
69997
70420
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
70421
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
69998
70422
|
can_simulate_hub_connection?: boolean | undefined
|
|
70423
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
69999
70424
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
70425
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
70000
70426
|
can_simulate_paid_subscription?: boolean | undefined
|
|
70427
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
70001
70428
|
can_configure_auto_lock?: boolean | undefined
|
|
70002
70429
|
}[]
|
|
70003
70430
|
}
|
|
@@ -70129,6 +70556,7 @@ export type Routes = {
|
|
|
70129
70556
|
acs_credential_on_encoder: {
|
|
70130
70557
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
70131
70558
|
created_at: string | null
|
|
70559
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
70132
70560
|
is_issued: boolean | null
|
|
70133
70561
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
70134
70562
|
starts_at: string | null
|
|
@@ -70178,6 +70606,7 @@ export type Routes = {
|
|
|
70178
70606
|
user_identity_id?: string | undefined
|
|
70179
70607
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
70180
70608
|
connected_account_id: string
|
|
70609
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
70181
70610
|
acs_credential_pool_id?: string | undefined
|
|
70182
70611
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
70183
70612
|
acs_system_id: string
|
|
@@ -70334,6 +70763,7 @@ export type Routes = {
|
|
|
70334
70763
|
endpoint_id?: string | undefined
|
|
70335
70764
|
}
|
|
70336
70765
|
| undefined
|
|
70766
|
+
/** Indicates whether Seam manages the credential. */
|
|
70337
70767
|
is_managed: true
|
|
70338
70768
|
}
|
|
70339
70769
|
| {
|
|
@@ -70345,6 +70775,7 @@ export type Routes = {
|
|
|
70345
70775
|
user_identity_id?: string | undefined
|
|
70346
70776
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
70347
70777
|
connected_account_id: string
|
|
70778
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
70348
70779
|
acs_credential_pool_id?: string | undefined
|
|
70349
70780
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
70350
70781
|
acs_system_id: string
|
|
@@ -70592,6 +71023,7 @@ export type Routes = {
|
|
|
70592
71023
|
user_identity_id?: string | undefined
|
|
70593
71024
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
70594
71025
|
connected_account_id: string
|
|
71026
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
70595
71027
|
acs_credential_pool_id?: string | undefined
|
|
70596
71028
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
70597
71029
|
acs_system_id: string
|
|
@@ -70742,6 +71174,7 @@ export type Routes = {
|
|
|
70742
71174
|
endpoint_id?: string | undefined
|
|
70743
71175
|
}
|
|
70744
71176
|
| undefined
|
|
71177
|
+
/** Indicates whether Seam manages the credential. */
|
|
70745
71178
|
is_managed: true
|
|
70746
71179
|
}
|
|
70747
71180
|
| {
|
|
@@ -70753,6 +71186,7 @@ export type Routes = {
|
|
|
70753
71186
|
user_identity_id?: string | undefined
|
|
70754
71187
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
70755
71188
|
connected_account_id: string
|
|
71189
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
70756
71190
|
acs_credential_pool_id?: string | undefined
|
|
70757
71191
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
70758
71192
|
acs_system_id: string
|
|
@@ -71005,6 +71439,7 @@ export type Routes = {
|
|
|
71005
71439
|
user_identity_id?: string | undefined
|
|
71006
71440
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
71007
71441
|
connected_account_id: string
|
|
71442
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
71008
71443
|
acs_credential_pool_id?: string | undefined
|
|
71009
71444
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
71010
71445
|
acs_system_id: string
|
|
@@ -71155,6 +71590,7 @@ export type Routes = {
|
|
|
71155
71590
|
endpoint_id?: string | undefined
|
|
71156
71591
|
}
|
|
71157
71592
|
| undefined
|
|
71593
|
+
/** Indicates whether Seam manages the credential. */
|
|
71158
71594
|
is_managed: true
|
|
71159
71595
|
}
|
|
71160
71596
|
}
|
|
@@ -72068,6 +72504,7 @@ export type Routes = {
|
|
|
72068
72504
|
acs_credential_on_encoder: {
|
|
72069
72505
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
72070
72506
|
created_at: string | null
|
|
72507
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
72071
72508
|
is_issued: boolean | null
|
|
72072
72509
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
72073
72510
|
starts_at: string | null
|
|
@@ -72117,6 +72554,7 @@ export type Routes = {
|
|
|
72117
72554
|
user_identity_id?: string | undefined
|
|
72118
72555
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
72119
72556
|
connected_account_id: string
|
|
72557
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
72120
72558
|
acs_credential_pool_id?: string | undefined
|
|
72121
72559
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
72122
72560
|
acs_system_id: string
|
|
@@ -72273,6 +72711,7 @@ export type Routes = {
|
|
|
72273
72711
|
endpoint_id?: string | undefined
|
|
72274
72712
|
}
|
|
72275
72713
|
| undefined
|
|
72714
|
+
/** Indicates whether Seam manages the credential. */
|
|
72276
72715
|
is_managed: true
|
|
72277
72716
|
}
|
|
72278
72717
|
| {
|
|
@@ -72284,6 +72723,7 @@ export type Routes = {
|
|
|
72284
72723
|
user_identity_id?: string | undefined
|
|
72285
72724
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
72286
72725
|
connected_account_id: string
|
|
72726
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
72287
72727
|
acs_credential_pool_id?: string | undefined
|
|
72288
72728
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
72289
72729
|
acs_system_id: string
|
|
@@ -72531,6 +72971,7 @@ export type Routes = {
|
|
|
72531
72971
|
user_identity_id?: string | undefined
|
|
72532
72972
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
72533
72973
|
connected_account_id: string
|
|
72974
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
72534
72975
|
acs_credential_pool_id?: string | undefined
|
|
72535
72976
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
72536
72977
|
acs_system_id: string
|
|
@@ -72681,6 +73122,7 @@ export type Routes = {
|
|
|
72681
73122
|
endpoint_id?: string | undefined
|
|
72682
73123
|
}
|
|
72683
73124
|
| undefined
|
|
73125
|
+
/** Indicates whether Seam manages the credential. */
|
|
72684
73126
|
is_managed: true
|
|
72685
73127
|
}
|
|
72686
73128
|
| {
|
|
@@ -72692,6 +73134,7 @@ export type Routes = {
|
|
|
72692
73134
|
user_identity_id?: string | undefined
|
|
72693
73135
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
72694
73136
|
connected_account_id: string
|
|
73137
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
72695
73138
|
acs_credential_pool_id?: string | undefined
|
|
72696
73139
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
72697
73140
|
acs_system_id: string
|
|
@@ -72944,6 +73387,7 @@ export type Routes = {
|
|
|
72944
73387
|
user_identity_id?: string | undefined
|
|
72945
73388
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
72946
73389
|
connected_account_id: string
|
|
73390
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
72947
73391
|
acs_credential_pool_id?: string | undefined
|
|
72948
73392
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
72949
73393
|
acs_system_id: string
|
|
@@ -73094,6 +73538,7 @@ export type Routes = {
|
|
|
73094
73538
|
endpoint_id?: string | undefined
|
|
73095
73539
|
}
|
|
73096
73540
|
| undefined
|
|
73541
|
+
/** Indicates whether Seam manages the credential. */
|
|
73097
73542
|
is_managed: true
|
|
73098
73543
|
}
|
|
73099
73544
|
}
|
|
@@ -74005,6 +74450,7 @@ export type Routes = {
|
|
|
74005
74450
|
acs_credential_on_encoder: {
|
|
74006
74451
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
74007
74452
|
created_at: string | null
|
|
74453
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
74008
74454
|
is_issued: boolean | null
|
|
74009
74455
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
74010
74456
|
starts_at: string | null
|
|
@@ -74054,6 +74500,7 @@ export type Routes = {
|
|
|
74054
74500
|
user_identity_id?: string | undefined
|
|
74055
74501
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
74056
74502
|
connected_account_id: string
|
|
74503
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
74057
74504
|
acs_credential_pool_id?: string | undefined
|
|
74058
74505
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
74059
74506
|
acs_system_id: string
|
|
@@ -74210,6 +74657,7 @@ export type Routes = {
|
|
|
74210
74657
|
endpoint_id?: string | undefined
|
|
74211
74658
|
}
|
|
74212
74659
|
| undefined
|
|
74660
|
+
/** Indicates whether Seam manages the credential. */
|
|
74213
74661
|
is_managed: true
|
|
74214
74662
|
}
|
|
74215
74663
|
| {
|
|
@@ -74221,6 +74669,7 @@ export type Routes = {
|
|
|
74221
74669
|
user_identity_id?: string | undefined
|
|
74222
74670
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
74223
74671
|
connected_account_id: string
|
|
74672
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
74224
74673
|
acs_credential_pool_id?: string | undefined
|
|
74225
74674
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
74226
74675
|
acs_system_id: string
|
|
@@ -74468,6 +74917,7 @@ export type Routes = {
|
|
|
74468
74917
|
user_identity_id?: string | undefined
|
|
74469
74918
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
74470
74919
|
connected_account_id: string
|
|
74920
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
74471
74921
|
acs_credential_pool_id?: string | undefined
|
|
74472
74922
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
74473
74923
|
acs_system_id: string
|
|
@@ -74618,6 +75068,7 @@ export type Routes = {
|
|
|
74618
75068
|
endpoint_id?: string | undefined
|
|
74619
75069
|
}
|
|
74620
75070
|
| undefined
|
|
75071
|
+
/** Indicates whether Seam manages the credential. */
|
|
74621
75072
|
is_managed: true
|
|
74622
75073
|
}
|
|
74623
75074
|
| {
|
|
@@ -74629,6 +75080,7 @@ export type Routes = {
|
|
|
74629
75080
|
user_identity_id?: string | undefined
|
|
74630
75081
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
74631
75082
|
connected_account_id: string
|
|
75083
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
74632
75084
|
acs_credential_pool_id?: string | undefined
|
|
74633
75085
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
74634
75086
|
acs_system_id: string
|
|
@@ -74881,6 +75333,7 @@ export type Routes = {
|
|
|
74881
75333
|
user_identity_id?: string | undefined
|
|
74882
75334
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
74883
75335
|
connected_account_id: string
|
|
75336
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
74884
75337
|
acs_credential_pool_id?: string | undefined
|
|
74885
75338
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
74886
75339
|
acs_system_id: string
|
|
@@ -75031,6 +75484,7 @@ export type Routes = {
|
|
|
75031
75484
|
endpoint_id?: string | undefined
|
|
75032
75485
|
}
|
|
75033
75486
|
| undefined
|
|
75487
|
+
/** Indicates whether Seam manages the credential. */
|
|
75034
75488
|
is_managed: true
|
|
75035
75489
|
}
|
|
75036
75490
|
}
|
|
@@ -75944,6 +76398,7 @@ export type Routes = {
|
|
|
75944
76398
|
acs_credential_on_encoder: {
|
|
75945
76399
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
75946
76400
|
created_at: string | null
|
|
76401
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
75947
76402
|
is_issued: boolean | null
|
|
75948
76403
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
75949
76404
|
starts_at: string | null
|
|
@@ -75993,6 +76448,7 @@ export type Routes = {
|
|
|
75993
76448
|
user_identity_id?: string | undefined
|
|
75994
76449
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
75995
76450
|
connected_account_id: string
|
|
76451
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
75996
76452
|
acs_credential_pool_id?: string | undefined
|
|
75997
76453
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
75998
76454
|
acs_system_id: string
|
|
@@ -76149,6 +76605,7 @@ export type Routes = {
|
|
|
76149
76605
|
endpoint_id?: string | undefined
|
|
76150
76606
|
}
|
|
76151
76607
|
| undefined
|
|
76608
|
+
/** Indicates whether Seam manages the credential. */
|
|
76152
76609
|
is_managed: true
|
|
76153
76610
|
}
|
|
76154
76611
|
| {
|
|
@@ -76160,6 +76617,7 @@ export type Routes = {
|
|
|
76160
76617
|
user_identity_id?: string | undefined
|
|
76161
76618
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
76162
76619
|
connected_account_id: string
|
|
76620
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
76163
76621
|
acs_credential_pool_id?: string | undefined
|
|
76164
76622
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
76165
76623
|
acs_system_id: string
|
|
@@ -76407,6 +76865,7 @@ export type Routes = {
|
|
|
76407
76865
|
user_identity_id?: string | undefined
|
|
76408
76866
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
76409
76867
|
connected_account_id: string
|
|
76868
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
76410
76869
|
acs_credential_pool_id?: string | undefined
|
|
76411
76870
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
76412
76871
|
acs_system_id: string
|
|
@@ -76557,6 +77016,7 @@ export type Routes = {
|
|
|
76557
77016
|
endpoint_id?: string | undefined
|
|
76558
77017
|
}
|
|
76559
77018
|
| undefined
|
|
77019
|
+
/** Indicates whether Seam manages the credential. */
|
|
76560
77020
|
is_managed: true
|
|
76561
77021
|
}
|
|
76562
77022
|
| {
|
|
@@ -76568,6 +77028,7 @@ export type Routes = {
|
|
|
76568
77028
|
user_identity_id?: string | undefined
|
|
76569
77029
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
76570
77030
|
connected_account_id: string
|
|
77031
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
76571
77032
|
acs_credential_pool_id?: string | undefined
|
|
76572
77033
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
76573
77034
|
acs_system_id: string
|
|
@@ -76820,6 +77281,7 @@ export type Routes = {
|
|
|
76820
77281
|
user_identity_id?: string | undefined
|
|
76821
77282
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
76822
77283
|
connected_account_id: string
|
|
77284
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
76823
77285
|
acs_credential_pool_id?: string | undefined
|
|
76824
77286
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
76825
77287
|
acs_system_id: string
|
|
@@ -76970,6 +77432,7 @@ export type Routes = {
|
|
|
76970
77432
|
endpoint_id?: string | undefined
|
|
76971
77433
|
}
|
|
76972
77434
|
| undefined
|
|
77435
|
+
/** Indicates whether Seam manages the credential. */
|
|
76973
77436
|
is_managed: true
|
|
76974
77437
|
}
|
|
76975
77438
|
}
|
|
@@ -79533,27 +79996,47 @@ export type Routes = {
|
|
|
79533
79996
|
image_url?: string | undefined
|
|
79534
79997
|
}
|
|
79535
79998
|
| undefined
|
|
79999
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
79536
80000
|
can_remotely_unlock?: boolean | undefined
|
|
80001
|
+
/** Indicates whether the device supports remote locking. */
|
|
79537
80002
|
can_remotely_lock?: boolean | undefined
|
|
80003
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
79538
80004
|
can_program_offline_access_codes?: boolean | undefined
|
|
80005
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
79539
80006
|
can_program_online_access_codes?: boolean | undefined
|
|
80007
|
+
/** Indicates whether the thermostat supports heating. */
|
|
79540
80008
|
can_hvac_heat?: boolean | undefined
|
|
80009
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
79541
80010
|
can_hvac_cool?: boolean | undefined
|
|
80011
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
79542
80012
|
can_hvac_heat_cool?: boolean | undefined
|
|
80013
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
79543
80014
|
can_turn_off_hvac?: boolean | undefined
|
|
80015
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
79544
80016
|
can_simulate_removal?: boolean | undefined
|
|
80017
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
79545
80018
|
can_simulate_connection?: boolean | undefined
|
|
80019
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
79546
80020
|
can_simulate_disconnection?: boolean | undefined
|
|
80021
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
79547
80022
|
can_unlock_with_code?: boolean | undefined
|
|
80023
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
79548
80024
|
can_run_thermostat_programs?: boolean | undefined
|
|
80025
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
79549
80026
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
80027
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
79550
80028
|
can_program_thermostat_programs_as_different_each_day?:
|
|
79551
80029
|
| boolean
|
|
79552
80030
|
| undefined
|
|
80031
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
79553
80032
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
80033
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
79554
80034
|
can_simulate_hub_connection?: boolean | undefined
|
|
80035
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
79555
80036
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
80037
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
79556
80038
|
can_simulate_paid_subscription?: boolean | undefined
|
|
80039
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
79557
80040
|
can_configure_auto_lock?: boolean | undefined
|
|
79558
80041
|
}[]
|
|
79559
80042
|
devices: {
|
|
@@ -81236,27 +81719,47 @@ export type Routes = {
|
|
|
81236
81719
|
image_url?: string | undefined
|
|
81237
81720
|
}
|
|
81238
81721
|
| undefined
|
|
81722
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
81239
81723
|
can_remotely_unlock?: boolean | undefined
|
|
81724
|
+
/** Indicates whether the device supports remote locking. */
|
|
81240
81725
|
can_remotely_lock?: boolean | undefined
|
|
81726
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
81241
81727
|
can_program_offline_access_codes?: boolean | undefined
|
|
81728
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
81242
81729
|
can_program_online_access_codes?: boolean | undefined
|
|
81730
|
+
/** Indicates whether the thermostat supports heating. */
|
|
81243
81731
|
can_hvac_heat?: boolean | undefined
|
|
81732
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
81244
81733
|
can_hvac_cool?: boolean | undefined
|
|
81734
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
81245
81735
|
can_hvac_heat_cool?: boolean | undefined
|
|
81736
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
81246
81737
|
can_turn_off_hvac?: boolean | undefined
|
|
81738
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
81247
81739
|
can_simulate_removal?: boolean | undefined
|
|
81740
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
81248
81741
|
can_simulate_connection?: boolean | undefined
|
|
81742
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
81249
81743
|
can_simulate_disconnection?: boolean | undefined
|
|
81744
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
81250
81745
|
can_unlock_with_code?: boolean | undefined
|
|
81746
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
81251
81747
|
can_run_thermostat_programs?: boolean | undefined
|
|
81748
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
81252
81749
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
81750
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
81253
81751
|
can_program_thermostat_programs_as_different_each_day?:
|
|
81254
81752
|
| boolean
|
|
81255
81753
|
| undefined
|
|
81754
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
81256
81755
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
81756
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
81257
81757
|
can_simulate_hub_connection?: boolean | undefined
|
|
81758
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
81258
81759
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
81760
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
81259
81761
|
can_simulate_paid_subscription?: boolean | undefined
|
|
81762
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
81260
81763
|
can_configure_auto_lock?: boolean | undefined
|
|
81261
81764
|
}[]
|
|
81262
81765
|
}
|
|
@@ -81398,6 +81901,7 @@ export type Routes = {
|
|
|
81398
81901
|
acs_credential_on_encoder: {
|
|
81399
81902
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
81400
81903
|
created_at: string | null
|
|
81904
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
81401
81905
|
is_issued: boolean | null
|
|
81402
81906
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
81403
81907
|
starts_at: string | null
|
|
@@ -81447,6 +81951,7 @@ export type Routes = {
|
|
|
81447
81951
|
user_identity_id?: string | undefined
|
|
81448
81952
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
81449
81953
|
connected_account_id: string
|
|
81954
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
81450
81955
|
acs_credential_pool_id?: string | undefined
|
|
81451
81956
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
81452
81957
|
acs_system_id: string
|
|
@@ -81603,6 +82108,7 @@ export type Routes = {
|
|
|
81603
82108
|
endpoint_id?: string | undefined
|
|
81604
82109
|
}
|
|
81605
82110
|
| undefined
|
|
82111
|
+
/** Indicates whether Seam manages the credential. */
|
|
81606
82112
|
is_managed: true
|
|
81607
82113
|
}
|
|
81608
82114
|
| {
|
|
@@ -81614,6 +82120,7 @@ export type Routes = {
|
|
|
81614
82120
|
user_identity_id?: string | undefined
|
|
81615
82121
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
81616
82122
|
connected_account_id: string
|
|
82123
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
81617
82124
|
acs_credential_pool_id?: string | undefined
|
|
81618
82125
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
81619
82126
|
acs_system_id: string
|
|
@@ -81861,6 +82368,7 @@ export type Routes = {
|
|
|
81861
82368
|
user_identity_id?: string | undefined
|
|
81862
82369
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
81863
82370
|
connected_account_id: string
|
|
82371
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
81864
82372
|
acs_credential_pool_id?: string | undefined
|
|
81865
82373
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
81866
82374
|
acs_system_id: string
|
|
@@ -82011,6 +82519,7 @@ export type Routes = {
|
|
|
82011
82519
|
endpoint_id?: string | undefined
|
|
82012
82520
|
}
|
|
82013
82521
|
| undefined
|
|
82522
|
+
/** Indicates whether Seam manages the credential. */
|
|
82014
82523
|
is_managed: true
|
|
82015
82524
|
}
|
|
82016
82525
|
| {
|
|
@@ -82022,6 +82531,7 @@ export type Routes = {
|
|
|
82022
82531
|
user_identity_id?: string | undefined
|
|
82023
82532
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
82024
82533
|
connected_account_id: string
|
|
82534
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
82025
82535
|
acs_credential_pool_id?: string | undefined
|
|
82026
82536
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
82027
82537
|
acs_system_id: string
|
|
@@ -82274,6 +82784,7 @@ export type Routes = {
|
|
|
82274
82784
|
user_identity_id?: string | undefined
|
|
82275
82785
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
82276
82786
|
connected_account_id: string
|
|
82787
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
82277
82788
|
acs_credential_pool_id?: string | undefined
|
|
82278
82789
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
82279
82790
|
acs_system_id: string
|
|
@@ -82424,6 +82935,7 @@ export type Routes = {
|
|
|
82424
82935
|
endpoint_id?: string | undefined
|
|
82425
82936
|
}
|
|
82426
82937
|
| undefined
|
|
82938
|
+
/** Indicates whether Seam manages the credential. */
|
|
82427
82939
|
is_managed: true
|
|
82428
82940
|
}
|
|
82429
82941
|
}
|
|
@@ -83356,6 +83868,7 @@ export type Routes = {
|
|
|
83356
83868
|
acs_credential_on_encoder: {
|
|
83357
83869
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
83358
83870
|
created_at: string | null
|
|
83871
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
83359
83872
|
is_issued: boolean | null
|
|
83360
83873
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
83361
83874
|
starts_at: string | null
|
|
@@ -83405,6 +83918,7 @@ export type Routes = {
|
|
|
83405
83918
|
user_identity_id?: string | undefined
|
|
83406
83919
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
83407
83920
|
connected_account_id: string
|
|
83921
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
83408
83922
|
acs_credential_pool_id?: string | undefined
|
|
83409
83923
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
83410
83924
|
acs_system_id: string
|
|
@@ -83561,6 +84075,7 @@ export type Routes = {
|
|
|
83561
84075
|
endpoint_id?: string | undefined
|
|
83562
84076
|
}
|
|
83563
84077
|
| undefined
|
|
84078
|
+
/** Indicates whether Seam manages the credential. */
|
|
83564
84079
|
is_managed: true
|
|
83565
84080
|
}
|
|
83566
84081
|
| {
|
|
@@ -83572,6 +84087,7 @@ export type Routes = {
|
|
|
83572
84087
|
user_identity_id?: string | undefined
|
|
83573
84088
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
83574
84089
|
connected_account_id: string
|
|
84090
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
83575
84091
|
acs_credential_pool_id?: string | undefined
|
|
83576
84092
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
83577
84093
|
acs_system_id: string
|
|
@@ -83819,6 +84335,7 @@ export type Routes = {
|
|
|
83819
84335
|
user_identity_id?: string | undefined
|
|
83820
84336
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
83821
84337
|
connected_account_id: string
|
|
84338
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
83822
84339
|
acs_credential_pool_id?: string | undefined
|
|
83823
84340
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
83824
84341
|
acs_system_id: string
|
|
@@ -83969,6 +84486,7 @@ export type Routes = {
|
|
|
83969
84486
|
endpoint_id?: string | undefined
|
|
83970
84487
|
}
|
|
83971
84488
|
| undefined
|
|
84489
|
+
/** Indicates whether Seam manages the credential. */
|
|
83972
84490
|
is_managed: true
|
|
83973
84491
|
}
|
|
83974
84492
|
| {
|
|
@@ -83980,6 +84498,7 @@ export type Routes = {
|
|
|
83980
84498
|
user_identity_id?: string | undefined
|
|
83981
84499
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
83982
84500
|
connected_account_id: string
|
|
84501
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
83983
84502
|
acs_credential_pool_id?: string | undefined
|
|
83984
84503
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
83985
84504
|
acs_system_id: string
|
|
@@ -84232,6 +84751,7 @@ export type Routes = {
|
|
|
84232
84751
|
user_identity_id?: string | undefined
|
|
84233
84752
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
84234
84753
|
connected_account_id: string
|
|
84754
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
84235
84755
|
acs_credential_pool_id?: string | undefined
|
|
84236
84756
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
84237
84757
|
acs_system_id: string
|
|
@@ -84382,6 +84902,7 @@ export type Routes = {
|
|
|
84382
84902
|
endpoint_id?: string | undefined
|
|
84383
84903
|
}
|
|
84384
84904
|
| undefined
|
|
84905
|
+
/** Indicates whether Seam manages the credential. */
|
|
84385
84906
|
is_managed: true
|
|
84386
84907
|
}
|
|
84387
84908
|
}
|
|
@@ -85370,6 +85891,7 @@ export type Routes = {
|
|
|
85370
85891
|
acs_credential_on_encoder: {
|
|
85371
85892
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
85372
85893
|
created_at: string | null
|
|
85894
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
85373
85895
|
is_issued: boolean | null
|
|
85374
85896
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
85375
85897
|
starts_at: string | null
|
|
@@ -85419,6 +85941,7 @@ export type Routes = {
|
|
|
85419
85941
|
user_identity_id?: string | undefined
|
|
85420
85942
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
85421
85943
|
connected_account_id: string
|
|
85944
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
85422
85945
|
acs_credential_pool_id?: string | undefined
|
|
85423
85946
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
85424
85947
|
acs_system_id: string
|
|
@@ -85575,6 +86098,7 @@ export type Routes = {
|
|
|
85575
86098
|
endpoint_id?: string | undefined
|
|
85576
86099
|
}
|
|
85577
86100
|
| undefined
|
|
86101
|
+
/** Indicates whether Seam manages the credential. */
|
|
85578
86102
|
is_managed: true
|
|
85579
86103
|
}
|
|
85580
86104
|
| {
|
|
@@ -85586,6 +86110,7 @@ export type Routes = {
|
|
|
85586
86110
|
user_identity_id?: string | undefined
|
|
85587
86111
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
85588
86112
|
connected_account_id: string
|
|
86113
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
85589
86114
|
acs_credential_pool_id?: string | undefined
|
|
85590
86115
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
85591
86116
|
acs_system_id: string
|
|
@@ -85833,6 +86358,7 @@ export type Routes = {
|
|
|
85833
86358
|
user_identity_id?: string | undefined
|
|
85834
86359
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
85835
86360
|
connected_account_id: string
|
|
86361
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
85836
86362
|
acs_credential_pool_id?: string | undefined
|
|
85837
86363
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
85838
86364
|
acs_system_id: string
|
|
@@ -85983,6 +86509,7 @@ export type Routes = {
|
|
|
85983
86509
|
endpoint_id?: string | undefined
|
|
85984
86510
|
}
|
|
85985
86511
|
| undefined
|
|
86512
|
+
/** Indicates whether Seam manages the credential. */
|
|
85986
86513
|
is_managed: true
|
|
85987
86514
|
}
|
|
85988
86515
|
| {
|
|
@@ -85994,6 +86521,7 @@ export type Routes = {
|
|
|
85994
86521
|
user_identity_id?: string | undefined
|
|
85995
86522
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
85996
86523
|
connected_account_id: string
|
|
86524
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
85997
86525
|
acs_credential_pool_id?: string | undefined
|
|
85998
86526
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
85999
86527
|
acs_system_id: string
|
|
@@ -86246,6 +86774,7 @@ export type Routes = {
|
|
|
86246
86774
|
user_identity_id?: string | undefined
|
|
86247
86775
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
86248
86776
|
connected_account_id: string
|
|
86777
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
86249
86778
|
acs_credential_pool_id?: string | undefined
|
|
86250
86779
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
86251
86780
|
acs_system_id: string
|
|
@@ -86396,6 +86925,7 @@ export type Routes = {
|
|
|
86396
86925
|
endpoint_id?: string | undefined
|
|
86397
86926
|
}
|
|
86398
86927
|
| undefined
|
|
86928
|
+
/** Indicates whether Seam manages the credential. */
|
|
86399
86929
|
is_managed: true
|
|
86400
86930
|
}
|
|
86401
86931
|
}
|
|
@@ -87244,20 +87774,21 @@ export type Routes = {
|
|
|
87244
87774
|
}
|
|
87245
87775
|
/** Errors associated with the phone. */
|
|
87246
87776
|
errors: {
|
|
87777
|
+
/** Unique identifier of the type of error. */
|
|
87247
87778
|
error_code: string
|
|
87779
|
+
/** Detailed description of the error. */
|
|
87248
87780
|
message: string
|
|
87249
87781
|
}[]
|
|
87250
87782
|
/** Warnings associated with the phone. */
|
|
87251
87783
|
warnings: {
|
|
87784
|
+
/** Unique identifier of the type of warning. */
|
|
87252
87785
|
warning_code: string
|
|
87786
|
+
/** Detailed description of the warning. */
|
|
87253
87787
|
message: string
|
|
87254
87788
|
}[]
|
|
87255
|
-
/**
|
|
87256
|
-
*/
|
|
87789
|
+
/** Type of the phone device, such as `ios_phone` or `android_phone`. */
|
|
87257
87790
|
device_type: 'ios_phone' | 'android_phone'
|
|
87258
|
-
/**
|
|
87259
|
-
Properties of the phone.
|
|
87260
|
-
*/
|
|
87791
|
+
/** Properties of the phone. */
|
|
87261
87792
|
properties: {
|
|
87262
87793
|
/** ASSA ABLOY Credential Service metadata for the phone. */
|
|
87263
87794
|
assa_abloy_credential_service_metadata?:
|
|
@@ -87321,20 +87852,21 @@ export type Routes = {
|
|
|
87321
87852
|
}
|
|
87322
87853
|
/** Errors associated with the phone. */
|
|
87323
87854
|
errors: {
|
|
87855
|
+
/** Unique identifier of the type of error. */
|
|
87324
87856
|
error_code: string
|
|
87857
|
+
/** Detailed description of the error. */
|
|
87325
87858
|
message: string
|
|
87326
87859
|
}[]
|
|
87327
87860
|
/** Warnings associated with the phone. */
|
|
87328
87861
|
warnings: {
|
|
87862
|
+
/** Unique identifier of the type of warning. */
|
|
87329
87863
|
warning_code: string
|
|
87864
|
+
/** Detailed description of the warning. */
|
|
87330
87865
|
message: string
|
|
87331
87866
|
}[]
|
|
87332
|
-
/**
|
|
87333
|
-
*/
|
|
87867
|
+
/** Type of the phone device, such as `ios_phone` or `android_phone`. */
|
|
87334
87868
|
device_type: 'ios_phone' | 'android_phone'
|
|
87335
|
-
/**
|
|
87336
|
-
Properties of the phone.
|
|
87337
|
-
*/
|
|
87869
|
+
/** Properties of the phone. */
|
|
87338
87870
|
properties: {
|
|
87339
87871
|
/** ASSA ABLOY Credential Service metadata for the phone. */
|
|
87340
87872
|
assa_abloy_credential_service_metadata?:
|
|
@@ -87425,20 +87957,21 @@ export type Routes = {
|
|
|
87425
87957
|
}
|
|
87426
87958
|
/** Errors associated with the phone. */
|
|
87427
87959
|
errors: {
|
|
87960
|
+
/** Unique identifier of the type of error. */
|
|
87428
87961
|
error_code: string
|
|
87962
|
+
/** Detailed description of the error. */
|
|
87429
87963
|
message: string
|
|
87430
87964
|
}[]
|
|
87431
87965
|
/** Warnings associated with the phone. */
|
|
87432
87966
|
warnings: {
|
|
87967
|
+
/** Unique identifier of the type of warning. */
|
|
87433
87968
|
warning_code: string
|
|
87969
|
+
/** Detailed description of the warning. */
|
|
87434
87970
|
message: string
|
|
87435
87971
|
}[]
|
|
87436
|
-
/**
|
|
87437
|
-
*/
|
|
87972
|
+
/** Type of the phone device, such as `ios_phone` or `android_phone`. */
|
|
87438
87973
|
device_type: 'ios_phone' | 'android_phone'
|
|
87439
|
-
/**
|
|
87440
|
-
Properties of the phone.
|
|
87441
|
-
*/
|
|
87974
|
+
/** Properties of the phone. */
|
|
87442
87975
|
properties: {
|
|
87443
87976
|
/** ASSA ABLOY Credential Service metadata for the phone. */
|
|
87444
87977
|
assa_abloy_credential_service_metadata?:
|
|
@@ -88630,6 +89163,7 @@ export type Routes = {
|
|
|
88630
89163
|
acs_credential_on_encoder: {
|
|
88631
89164
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
88632
89165
|
created_at: string | null
|
|
89166
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
88633
89167
|
is_issued: boolean | null
|
|
88634
89168
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
88635
89169
|
starts_at: string | null
|
|
@@ -88679,6 +89213,7 @@ export type Routes = {
|
|
|
88679
89213
|
user_identity_id?: string | undefined
|
|
88680
89214
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
88681
89215
|
connected_account_id: string
|
|
89216
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
88682
89217
|
acs_credential_pool_id?: string | undefined
|
|
88683
89218
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
88684
89219
|
acs_system_id: string
|
|
@@ -88835,6 +89370,7 @@ export type Routes = {
|
|
|
88835
89370
|
endpoint_id?: string | undefined
|
|
88836
89371
|
}
|
|
88837
89372
|
| undefined
|
|
89373
|
+
/** Indicates whether Seam manages the credential. */
|
|
88838
89374
|
is_managed: true
|
|
88839
89375
|
}
|
|
88840
89376
|
| {
|
|
@@ -88846,6 +89382,7 @@ export type Routes = {
|
|
|
88846
89382
|
user_identity_id?: string | undefined
|
|
88847
89383
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
88848
89384
|
connected_account_id: string
|
|
89385
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
88849
89386
|
acs_credential_pool_id?: string | undefined
|
|
88850
89387
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
88851
89388
|
acs_system_id: string
|
|
@@ -89093,6 +89630,7 @@ export type Routes = {
|
|
|
89093
89630
|
user_identity_id?: string | undefined
|
|
89094
89631
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
89095
89632
|
connected_account_id: string
|
|
89633
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
89096
89634
|
acs_credential_pool_id?: string | undefined
|
|
89097
89635
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
89098
89636
|
acs_system_id: string
|
|
@@ -89243,6 +89781,7 @@ export type Routes = {
|
|
|
89243
89781
|
endpoint_id?: string | undefined
|
|
89244
89782
|
}
|
|
89245
89783
|
| undefined
|
|
89784
|
+
/** Indicates whether Seam manages the credential. */
|
|
89246
89785
|
is_managed: true
|
|
89247
89786
|
}
|
|
89248
89787
|
| {
|
|
@@ -89254,6 +89793,7 @@ export type Routes = {
|
|
|
89254
89793
|
user_identity_id?: string | undefined
|
|
89255
89794
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
89256
89795
|
connected_account_id: string
|
|
89796
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
89257
89797
|
acs_credential_pool_id?: string | undefined
|
|
89258
89798
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
89259
89799
|
acs_system_id: string
|
|
@@ -89506,6 +90046,7 @@ export type Routes = {
|
|
|
89506
90046
|
user_identity_id?: string | undefined
|
|
89507
90047
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
89508
90048
|
connected_account_id: string
|
|
90049
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
89509
90050
|
acs_credential_pool_id?: string | undefined
|
|
89510
90051
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
89511
90052
|
acs_system_id: string
|
|
@@ -89656,6 +90197,7 @@ export type Routes = {
|
|
|
89656
90197
|
endpoint_id?: string | undefined
|
|
89657
90198
|
}
|
|
89658
90199
|
| undefined
|
|
90200
|
+
/** Indicates whether Seam manages the credential. */
|
|
89659
90201
|
is_managed: true
|
|
89660
90202
|
}
|
|
89661
90203
|
}
|
|
@@ -92427,6 +92969,7 @@ export type Routes = {
|
|
|
92427
92969
|
}
|
|
92428
92970
|
| undefined
|
|
92429
92971
|
event_type: 'access_code.backup_access_code_pulled'
|
|
92972
|
+
/** ID of the backup access code that was pulled from the pool. */
|
|
92430
92973
|
backup_access_code_id: string
|
|
92431
92974
|
}
|
|
92432
92975
|
| {
|
|
@@ -92976,6 +93519,7 @@ export type Routes = {
|
|
|
92976
93519
|
connected_account_id?: string | undefined
|
|
92977
93520
|
/** ID of the access system. */
|
|
92978
93521
|
acs_system_id: string
|
|
93522
|
+
/** ID of the affected access system user. */
|
|
92979
93523
|
acs_user_id: string
|
|
92980
93524
|
event_type: 'acs_user.created'
|
|
92981
93525
|
}
|
|
@@ -92992,6 +93536,7 @@ export type Routes = {
|
|
|
92992
93536
|
connected_account_id?: string | undefined
|
|
92993
93537
|
/** ID of the access system. */
|
|
92994
93538
|
acs_system_id: string
|
|
93539
|
+
/** ID of the affected access system user. */
|
|
92995
93540
|
acs_user_id: string
|
|
92996
93541
|
event_type: 'acs_user.deleted'
|
|
92997
93542
|
}
|
|
@@ -93059,6 +93604,7 @@ export type Routes = {
|
|
|
93059
93604
|
connected_account_id?: string | undefined
|
|
93060
93605
|
/** ID of the access system. */
|
|
93061
93606
|
acs_system_id: string
|
|
93607
|
+
/** ID of the affected entrance. */
|
|
93062
93608
|
acs_entrance_id: string
|
|
93063
93609
|
event_type: 'acs_entrance.added'
|
|
93064
93610
|
}
|
|
@@ -93075,6 +93621,7 @@ export type Routes = {
|
|
|
93075
93621
|
connected_account_id?: string | undefined
|
|
93076
93622
|
/** ID of the access system. */
|
|
93077
93623
|
acs_system_id: string
|
|
93624
|
+
/** ID of the affected entrance. */
|
|
93078
93625
|
acs_entrance_id: string
|
|
93079
93626
|
event_type: 'acs_entrance.removed'
|
|
93080
93627
|
}
|
|
@@ -96460,6 +97007,7 @@ export type Routes = {
|
|
|
96460
97007
|
user_identity_id?: string | undefined
|
|
96461
97008
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
96462
97009
|
connected_account_id: string
|
|
97010
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
96463
97011
|
acs_credential_pool_id?: string | undefined
|
|
96464
97012
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
96465
97013
|
acs_system_id: string
|
|
@@ -96610,6 +97158,7 @@ export type Routes = {
|
|
|
96610
97158
|
endpoint_id?: string | undefined
|
|
96611
97159
|
}
|
|
96612
97160
|
| undefined
|
|
97161
|
+
/** Indicates whether Seam manages the credential. */
|
|
96613
97162
|
is_managed: true
|
|
96614
97163
|
}[]
|
|
96615
97164
|
}
|
|
@@ -96659,6 +97208,7 @@ export type Routes = {
|
|
|
96659
97208
|
user_identity_id?: string | undefined
|
|
96660
97209
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
96661
97210
|
connected_account_id: string
|
|
97211
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
96662
97212
|
acs_credential_pool_id?: string | undefined
|
|
96663
97213
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
96664
97214
|
acs_system_id: string
|
|
@@ -96809,6 +97359,7 @@ export type Routes = {
|
|
|
96809
97359
|
endpoint_id?: string | undefined
|
|
96810
97360
|
}
|
|
96811
97361
|
| undefined
|
|
97362
|
+
/** Indicates whether Seam manages the credential. */
|
|
96812
97363
|
is_managed: true
|
|
96813
97364
|
acs_credential_id: string | null
|
|
96814
97365
|
acs_entrances: {
|
|
@@ -97042,7 +97593,9 @@ export type Routes = {
|
|
|
97042
97593
|
email_address: string | null
|
|
97043
97594
|
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
97044
97595
|
phone_number: string | null
|
|
97596
|
+
/** Display name for the user identity. */
|
|
97045
97597
|
display_name: string
|
|
97598
|
+
/** Full name of the user associated with the user identity. */
|
|
97046
97599
|
full_name: string | null
|
|
97047
97600
|
/** Date and time at which the user identity was created. */
|
|
97048
97601
|
created_at: string
|
|
@@ -99138,31 +99691,51 @@ export type Routes = {
|
|
|
99138
99691
|
image_url?: string | undefined
|
|
99139
99692
|
}
|
|
99140
99693
|
| undefined
|
|
99694
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
99141
99695
|
can_remotely_unlock?: boolean | undefined
|
|
99696
|
+
/** Indicates whether the device supports remote locking. */
|
|
99142
99697
|
can_remotely_lock?: boolean | undefined
|
|
99698
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
99143
99699
|
can_program_offline_access_codes?: boolean | undefined
|
|
99700
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
99144
99701
|
can_program_online_access_codes?: boolean | undefined
|
|
99702
|
+
/** Indicates whether the thermostat supports heating. */
|
|
99145
99703
|
can_hvac_heat?: boolean | undefined
|
|
99704
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
99146
99705
|
can_hvac_cool?: boolean | undefined
|
|
99706
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
99147
99707
|
can_hvac_heat_cool?: boolean | undefined
|
|
99708
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
99148
99709
|
can_turn_off_hvac?: boolean | undefined
|
|
99710
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
99149
99711
|
can_simulate_removal?: boolean | undefined
|
|
99712
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
99150
99713
|
can_simulate_connection?: boolean | undefined
|
|
99714
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
99151
99715
|
can_simulate_disconnection?: boolean | undefined
|
|
99716
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
99152
99717
|
can_unlock_with_code?: boolean | undefined
|
|
99718
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
99153
99719
|
can_run_thermostat_programs?: boolean | undefined
|
|
99720
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
99154
99721
|
can_program_thermostat_programs_as_weekday_weekend?:
|
|
99155
99722
|
| boolean
|
|
99156
99723
|
| undefined
|
|
99724
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
99157
99725
|
can_program_thermostat_programs_as_different_each_day?:
|
|
99158
99726
|
| boolean
|
|
99159
99727
|
| undefined
|
|
99728
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
99160
99729
|
can_program_thermostat_programs_as_same_each_day?:
|
|
99161
99730
|
| boolean
|
|
99162
99731
|
| undefined
|
|
99732
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
99163
99733
|
can_simulate_hub_connection?: boolean | undefined
|
|
99734
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
99164
99735
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
99736
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
99165
99737
|
can_simulate_paid_subscription?: boolean | undefined
|
|
99738
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
99166
99739
|
can_configure_auto_lock?: boolean | undefined
|
|
99167
99740
|
}[]
|
|
99168
99741
|
| undefined
|
|
@@ -99599,7 +100172,9 @@ export type Routes = {
|
|
|
99599
100172
|
| undefined
|
|
99600
100173
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
99601
100174
|
acs_system_id: string
|
|
100175
|
+
/** Number of users in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
99602
100176
|
acs_user_count?: number | undefined
|
|
100177
|
+
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
99603
100178
|
acs_access_group_count?: number | undefined
|
|
99604
100179
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
99605
100180
|
external_type?:
|
|
@@ -99625,6 +100200,7 @@ export type Routes = {
|
|
|
99625
100200
|
external_type_display_name?: string | undefined
|
|
99626
100201
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
99627
100202
|
is_credential_manager: boolean
|
|
100203
|
+
/** Visionline-specific metadata for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
99628
100204
|
visionline_metadata?:
|
|
99629
100205
|
| {
|
|
99630
100206
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
@@ -99659,6 +100235,7 @@ export type Routes = {
|
|
|
99659
100235
|
/**
|
|
99660
100236
|
* @deprecated Use `external_type_display_name`.*/
|
|
99661
100237
|
system_type_display_name?: string | undefined
|
|
100238
|
+
/** Location information for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
99662
100239
|
location: {
|
|
99663
100240
|
/** Time zone in which the [access control system](https://docs.seam.co/low-level-apis/access-systems) is located. */
|
|
99664
100241
|
time_zone: string | null
|
|
@@ -99695,6 +100272,7 @@ export type Routes = {
|
|
|
99695
100272
|
message: string
|
|
99696
100273
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
99697
100274
|
error_code: 'bridge_disconnected'
|
|
100275
|
+
/** Indicates whether the error is related to the [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
99698
100276
|
is_bridge_error?: boolean | undefined
|
|
99699
100277
|
}
|
|
99700
100278
|
| {
|
|
@@ -100246,6 +100824,7 @@ export type Routes = {
|
|
|
100246
100824
|
acs_credential_on_encoder: {
|
|
100247
100825
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
100248
100826
|
created_at: string | null
|
|
100827
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
100249
100828
|
is_issued: boolean | null
|
|
100250
100829
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
100251
100830
|
starts_at: string | null
|
|
@@ -100295,6 +100874,7 @@ export type Routes = {
|
|
|
100295
100874
|
user_identity_id?: string | undefined
|
|
100296
100875
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
100297
100876
|
connected_account_id: string
|
|
100877
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
100298
100878
|
acs_credential_pool_id?: string | undefined
|
|
100299
100879
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
100300
100880
|
acs_system_id: string
|
|
@@ -100451,6 +101031,7 @@ export type Routes = {
|
|
|
100451
101031
|
endpoint_id?: string | undefined
|
|
100452
101032
|
}
|
|
100453
101033
|
| undefined
|
|
101034
|
+
/** Indicates whether Seam manages the credential. */
|
|
100454
101035
|
is_managed: true
|
|
100455
101036
|
}
|
|
100456
101037
|
| {
|
|
@@ -100462,6 +101043,7 @@ export type Routes = {
|
|
|
100462
101043
|
user_identity_id?: string | undefined
|
|
100463
101044
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
100464
101045
|
connected_account_id: string
|
|
101046
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
100465
101047
|
acs_credential_pool_id?: string | undefined
|
|
100466
101048
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
100467
101049
|
acs_system_id: string
|
|
@@ -100709,6 +101291,7 @@ export type Routes = {
|
|
|
100709
101291
|
user_identity_id?: string | undefined
|
|
100710
101292
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
100711
101293
|
connected_account_id: string
|
|
101294
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
100712
101295
|
acs_credential_pool_id?: string | undefined
|
|
100713
101296
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
100714
101297
|
acs_system_id: string
|
|
@@ -100859,6 +101442,7 @@ export type Routes = {
|
|
|
100859
101442
|
endpoint_id?: string | undefined
|
|
100860
101443
|
}
|
|
100861
101444
|
| undefined
|
|
101445
|
+
/** Indicates whether Seam manages the credential. */
|
|
100862
101446
|
is_managed: true
|
|
100863
101447
|
}
|
|
100864
101448
|
| {
|
|
@@ -100870,6 +101454,7 @@ export type Routes = {
|
|
|
100870
101454
|
user_identity_id?: string | undefined
|
|
100871
101455
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
100872
101456
|
connected_account_id: string
|
|
101457
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
100873
101458
|
acs_credential_pool_id?: string | undefined
|
|
100874
101459
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
100875
101460
|
acs_system_id: string
|
|
@@ -101122,6 +101707,7 @@ export type Routes = {
|
|
|
101122
101707
|
user_identity_id?: string | undefined
|
|
101123
101708
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
101124
101709
|
connected_account_id: string
|
|
101710
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
101125
101711
|
acs_credential_pool_id?: string | undefined
|
|
101126
101712
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
101127
101713
|
acs_system_id: string
|
|
@@ -101272,6 +101858,7 @@ export type Routes = {
|
|
|
101272
101858
|
endpoint_id?: string | undefined
|
|
101273
101859
|
}
|
|
101274
101860
|
| undefined
|
|
101861
|
+
/** Indicates whether Seam manages the credential. */
|
|
101275
101862
|
is_managed: true
|
|
101276
101863
|
}
|
|
101277
101864
|
}
|
|
@@ -102189,6 +102776,7 @@ export type Routes = {
|
|
|
102189
102776
|
acs_credential_on_encoder: {
|
|
102190
102777
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
102191
102778
|
created_at: string | null
|
|
102779
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
102192
102780
|
is_issued: boolean | null
|
|
102193
102781
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
102194
102782
|
starts_at: string | null
|
|
@@ -102238,6 +102826,7 @@ export type Routes = {
|
|
|
102238
102826
|
user_identity_id?: string | undefined
|
|
102239
102827
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
102240
102828
|
connected_account_id: string
|
|
102829
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
102241
102830
|
acs_credential_pool_id?: string | undefined
|
|
102242
102831
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
102243
102832
|
acs_system_id: string
|
|
@@ -102394,6 +102983,7 @@ export type Routes = {
|
|
|
102394
102983
|
endpoint_id?: string | undefined
|
|
102395
102984
|
}
|
|
102396
102985
|
| undefined
|
|
102986
|
+
/** Indicates whether Seam manages the credential. */
|
|
102397
102987
|
is_managed: true
|
|
102398
102988
|
}
|
|
102399
102989
|
| {
|
|
@@ -102405,6 +102995,7 @@ export type Routes = {
|
|
|
102405
102995
|
user_identity_id?: string | undefined
|
|
102406
102996
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
102407
102997
|
connected_account_id: string
|
|
102998
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
102408
102999
|
acs_credential_pool_id?: string | undefined
|
|
102409
103000
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
102410
103001
|
acs_system_id: string
|
|
@@ -102652,6 +103243,7 @@ export type Routes = {
|
|
|
102652
103243
|
user_identity_id?: string | undefined
|
|
102653
103244
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
102654
103245
|
connected_account_id: string
|
|
103246
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
102655
103247
|
acs_credential_pool_id?: string | undefined
|
|
102656
103248
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
102657
103249
|
acs_system_id: string
|
|
@@ -102802,6 +103394,7 @@ export type Routes = {
|
|
|
102802
103394
|
endpoint_id?: string | undefined
|
|
102803
103395
|
}
|
|
102804
103396
|
| undefined
|
|
103397
|
+
/** Indicates whether Seam manages the credential. */
|
|
102805
103398
|
is_managed: true
|
|
102806
103399
|
}
|
|
102807
103400
|
| {
|
|
@@ -102813,6 +103406,7 @@ export type Routes = {
|
|
|
102813
103406
|
user_identity_id?: string | undefined
|
|
102814
103407
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
102815
103408
|
connected_account_id: string
|
|
103409
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
102816
103410
|
acs_credential_pool_id?: string | undefined
|
|
102817
103411
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
102818
103412
|
acs_system_id: string
|
|
@@ -103065,6 +103659,7 @@ export type Routes = {
|
|
|
103065
103659
|
user_identity_id?: string | undefined
|
|
103066
103660
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
103067
103661
|
connected_account_id: string
|
|
103662
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
103068
103663
|
acs_credential_pool_id?: string | undefined
|
|
103069
103664
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
103070
103665
|
acs_system_id: string
|
|
@@ -103215,6 +103810,7 @@ export type Routes = {
|
|
|
103215
103810
|
endpoint_id?: string | undefined
|
|
103216
103811
|
}
|
|
103217
103812
|
| undefined
|
|
103813
|
+
/** Indicates whether Seam manages the credential. */
|
|
103218
103814
|
is_managed: true
|
|
103219
103815
|
}
|
|
103220
103816
|
}
|
|
@@ -104244,6 +104840,7 @@ export type Routes = {
|
|
|
104244
104840
|
acs_credential_on_encoder: {
|
|
104245
104841
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
104246
104842
|
created_at: string | null
|
|
104843
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
104247
104844
|
is_issued: boolean | null
|
|
104248
104845
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
104249
104846
|
starts_at: string | null
|
|
@@ -104293,6 +104890,7 @@ export type Routes = {
|
|
|
104293
104890
|
user_identity_id?: string | undefined
|
|
104294
104891
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
104295
104892
|
connected_account_id: string
|
|
104893
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
104296
104894
|
acs_credential_pool_id?: string | undefined
|
|
104297
104895
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
104298
104896
|
acs_system_id: string
|
|
@@ -104449,6 +105047,7 @@ export type Routes = {
|
|
|
104449
105047
|
endpoint_id?: string | undefined
|
|
104450
105048
|
}
|
|
104451
105049
|
| undefined
|
|
105050
|
+
/** Indicates whether Seam manages the credential. */
|
|
104452
105051
|
is_managed: true
|
|
104453
105052
|
}
|
|
104454
105053
|
| {
|
|
@@ -104460,6 +105059,7 @@ export type Routes = {
|
|
|
104460
105059
|
user_identity_id?: string | undefined
|
|
104461
105060
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
104462
105061
|
connected_account_id: string
|
|
105062
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
104463
105063
|
acs_credential_pool_id?: string | undefined
|
|
104464
105064
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
104465
105065
|
acs_system_id: string
|
|
@@ -104707,6 +105307,7 @@ export type Routes = {
|
|
|
104707
105307
|
user_identity_id?: string | undefined
|
|
104708
105308
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
104709
105309
|
connected_account_id: string
|
|
105310
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
104710
105311
|
acs_credential_pool_id?: string | undefined
|
|
104711
105312
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
104712
105313
|
acs_system_id: string
|
|
@@ -104857,6 +105458,7 @@ export type Routes = {
|
|
|
104857
105458
|
endpoint_id?: string | undefined
|
|
104858
105459
|
}
|
|
104859
105460
|
| undefined
|
|
105461
|
+
/** Indicates whether Seam manages the credential. */
|
|
104860
105462
|
is_managed: true
|
|
104861
105463
|
}
|
|
104862
105464
|
| {
|
|
@@ -104868,6 +105470,7 @@ export type Routes = {
|
|
|
104868
105470
|
user_identity_id?: string | undefined
|
|
104869
105471
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
104870
105472
|
connected_account_id: string
|
|
105473
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
104871
105474
|
acs_credential_pool_id?: string | undefined
|
|
104872
105475
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
104873
105476
|
acs_system_id: string
|
|
@@ -105120,6 +105723,7 @@ export type Routes = {
|
|
|
105120
105723
|
user_identity_id?: string | undefined
|
|
105121
105724
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
105122
105725
|
connected_account_id: string
|
|
105726
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
105123
105727
|
acs_credential_pool_id?: string | undefined
|
|
105124
105728
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
105125
105729
|
acs_system_id: string
|
|
@@ -105270,6 +105874,7 @@ export type Routes = {
|
|
|
105270
105874
|
endpoint_id?: string | undefined
|
|
105271
105875
|
}
|
|
105272
105876
|
| undefined
|
|
105877
|
+
/** Indicates whether Seam manages the credential. */
|
|
105273
105878
|
is_managed: true
|
|
105274
105879
|
}
|
|
105275
105880
|
}
|
|
@@ -107766,27 +108371,47 @@ export type Routes = {
|
|
|
107766
108371
|
image_url?: string | undefined
|
|
107767
108372
|
}
|
|
107768
108373
|
| undefined
|
|
108374
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
107769
108375
|
can_remotely_unlock?: boolean | undefined
|
|
108376
|
+
/** Indicates whether the device supports remote locking. */
|
|
107770
108377
|
can_remotely_lock?: boolean | undefined
|
|
108378
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
107771
108379
|
can_program_offline_access_codes?: boolean | undefined
|
|
108380
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
107772
108381
|
can_program_online_access_codes?: boolean | undefined
|
|
108382
|
+
/** Indicates whether the thermostat supports heating. */
|
|
107773
108383
|
can_hvac_heat?: boolean | undefined
|
|
108384
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
107774
108385
|
can_hvac_cool?: boolean | undefined
|
|
108386
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
107775
108387
|
can_hvac_heat_cool?: boolean | undefined
|
|
108388
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
107776
108389
|
can_turn_off_hvac?: boolean | undefined
|
|
108390
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
107777
108391
|
can_simulate_removal?: boolean | undefined
|
|
108392
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
107778
108393
|
can_simulate_connection?: boolean | undefined
|
|
108394
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
107779
108395
|
can_simulate_disconnection?: boolean | undefined
|
|
108396
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
107780
108397
|
can_unlock_with_code?: boolean | undefined
|
|
108398
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
107781
108399
|
can_run_thermostat_programs?: boolean | undefined
|
|
108400
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
107782
108401
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
108402
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
107783
108403
|
can_program_thermostat_programs_as_different_each_day?:
|
|
107784
108404
|
| boolean
|
|
107785
108405
|
| undefined
|
|
108406
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
107786
108407
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
108408
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
107787
108409
|
can_simulate_hub_connection?: boolean | undefined
|
|
108410
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
107788
108411
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
108412
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
107789
108413
|
can_simulate_paid_subscription?: boolean | undefined
|
|
108414
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
107790
108415
|
can_configure_auto_lock?: boolean | undefined
|
|
107791
108416
|
}
|
|
107792
108417
|
}
|
|
@@ -107922,6 +108547,7 @@ export type Routes = {
|
|
|
107922
108547
|
acs_credential_on_encoder: {
|
|
107923
108548
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
107924
108549
|
created_at: string | null
|
|
108550
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
107925
108551
|
is_issued: boolean | null
|
|
107926
108552
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
107927
108553
|
starts_at: string | null
|
|
@@ -107971,6 +108597,7 @@ export type Routes = {
|
|
|
107971
108597
|
user_identity_id?: string | undefined
|
|
107972
108598
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
107973
108599
|
connected_account_id: string
|
|
108600
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
107974
108601
|
acs_credential_pool_id?: string | undefined
|
|
107975
108602
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
107976
108603
|
acs_system_id: string
|
|
@@ -108127,6 +108754,7 @@ export type Routes = {
|
|
|
108127
108754
|
endpoint_id?: string | undefined
|
|
108128
108755
|
}
|
|
108129
108756
|
| undefined
|
|
108757
|
+
/** Indicates whether Seam manages the credential. */
|
|
108130
108758
|
is_managed: true
|
|
108131
108759
|
}
|
|
108132
108760
|
| {
|
|
@@ -108138,6 +108766,7 @@ export type Routes = {
|
|
|
108138
108766
|
user_identity_id?: string | undefined
|
|
108139
108767
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
108140
108768
|
connected_account_id: string
|
|
108769
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
108141
108770
|
acs_credential_pool_id?: string | undefined
|
|
108142
108771
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
108143
108772
|
acs_system_id: string
|
|
@@ -108385,6 +109014,7 @@ export type Routes = {
|
|
|
108385
109014
|
user_identity_id?: string | undefined
|
|
108386
109015
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
108387
109016
|
connected_account_id: string
|
|
109017
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
108388
109018
|
acs_credential_pool_id?: string | undefined
|
|
108389
109019
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
108390
109020
|
acs_system_id: string
|
|
@@ -108535,6 +109165,7 @@ export type Routes = {
|
|
|
108535
109165
|
endpoint_id?: string | undefined
|
|
108536
109166
|
}
|
|
108537
109167
|
| undefined
|
|
109168
|
+
/** Indicates whether Seam manages the credential. */
|
|
108538
109169
|
is_managed: true
|
|
108539
109170
|
}
|
|
108540
109171
|
| {
|
|
@@ -108546,6 +109177,7 @@ export type Routes = {
|
|
|
108546
109177
|
user_identity_id?: string | undefined
|
|
108547
109178
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
108548
109179
|
connected_account_id: string
|
|
109180
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
108549
109181
|
acs_credential_pool_id?: string | undefined
|
|
108550
109182
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
108551
109183
|
acs_system_id: string
|
|
@@ -108798,6 +109430,7 @@ export type Routes = {
|
|
|
108798
109430
|
user_identity_id?: string | undefined
|
|
108799
109431
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
108800
109432
|
connected_account_id: string
|
|
109433
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
108801
109434
|
acs_credential_pool_id?: string | undefined
|
|
108802
109435
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
108803
109436
|
acs_system_id: string
|
|
@@ -108948,6 +109581,7 @@ export type Routes = {
|
|
|
108948
109581
|
endpoint_id?: string | undefined
|
|
108949
109582
|
}
|
|
108950
109583
|
| undefined
|
|
109584
|
+
/** Indicates whether Seam manages the credential. */
|
|
108951
109585
|
is_managed: true
|
|
108952
109586
|
}
|
|
108953
109587
|
}
|
|
@@ -109869,6 +110503,7 @@ export type Routes = {
|
|
|
109869
110503
|
acs_credential_on_encoder: {
|
|
109870
110504
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
109871
110505
|
created_at: string | null
|
|
110506
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
109872
110507
|
is_issued: boolean | null
|
|
109873
110508
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
109874
110509
|
starts_at: string | null
|
|
@@ -109918,6 +110553,7 @@ export type Routes = {
|
|
|
109918
110553
|
user_identity_id?: string | undefined
|
|
109919
110554
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
109920
110555
|
connected_account_id: string
|
|
110556
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
109921
110557
|
acs_credential_pool_id?: string | undefined
|
|
109922
110558
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
109923
110559
|
acs_system_id: string
|
|
@@ -110074,6 +110710,7 @@ export type Routes = {
|
|
|
110074
110710
|
endpoint_id?: string | undefined
|
|
110075
110711
|
}
|
|
110076
110712
|
| undefined
|
|
110713
|
+
/** Indicates whether Seam manages the credential. */
|
|
110077
110714
|
is_managed: true
|
|
110078
110715
|
}
|
|
110079
110716
|
| {
|
|
@@ -110085,6 +110722,7 @@ export type Routes = {
|
|
|
110085
110722
|
user_identity_id?: string | undefined
|
|
110086
110723
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
110087
110724
|
connected_account_id: string
|
|
110725
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
110088
110726
|
acs_credential_pool_id?: string | undefined
|
|
110089
110727
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
110090
110728
|
acs_system_id: string
|
|
@@ -110332,6 +110970,7 @@ export type Routes = {
|
|
|
110332
110970
|
user_identity_id?: string | undefined
|
|
110333
110971
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
110334
110972
|
connected_account_id: string
|
|
110973
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
110335
110974
|
acs_credential_pool_id?: string | undefined
|
|
110336
110975
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
110337
110976
|
acs_system_id: string
|
|
@@ -110482,6 +111121,7 @@ export type Routes = {
|
|
|
110482
111121
|
endpoint_id?: string | undefined
|
|
110483
111122
|
}
|
|
110484
111123
|
| undefined
|
|
111124
|
+
/** Indicates whether Seam manages the credential. */
|
|
110485
111125
|
is_managed: true
|
|
110486
111126
|
}
|
|
110487
111127
|
| {
|
|
@@ -110493,6 +111133,7 @@ export type Routes = {
|
|
|
110493
111133
|
user_identity_id?: string | undefined
|
|
110494
111134
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
110495
111135
|
connected_account_id: string
|
|
111136
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
110496
111137
|
acs_credential_pool_id?: string | undefined
|
|
110497
111138
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
110498
111139
|
acs_system_id: string
|
|
@@ -110745,6 +111386,7 @@ export type Routes = {
|
|
|
110745
111386
|
user_identity_id?: string | undefined
|
|
110746
111387
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
110747
111388
|
connected_account_id: string
|
|
111389
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
110748
111390
|
acs_credential_pool_id?: string | undefined
|
|
110749
111391
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
110750
111392
|
acs_system_id: string
|
|
@@ -110895,6 +111537,7 @@ export type Routes = {
|
|
|
110895
111537
|
endpoint_id?: string | undefined
|
|
110896
111538
|
}
|
|
110897
111539
|
| undefined
|
|
111540
|
+
/** Indicates whether Seam manages the credential. */
|
|
110898
111541
|
is_managed: true
|
|
110899
111542
|
}
|
|
110900
111543
|
}
|
|
@@ -113485,27 +114128,47 @@ export type Routes = {
|
|
|
113485
114128
|
image_url?: string | undefined
|
|
113486
114129
|
}
|
|
113487
114130
|
| undefined
|
|
114131
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
113488
114132
|
can_remotely_unlock?: boolean | undefined
|
|
114133
|
+
/** Indicates whether the device supports remote locking. */
|
|
113489
114134
|
can_remotely_lock?: boolean | undefined
|
|
114135
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
113490
114136
|
can_program_offline_access_codes?: boolean | undefined
|
|
114137
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
113491
114138
|
can_program_online_access_codes?: boolean | undefined
|
|
114139
|
+
/** Indicates whether the thermostat supports heating. */
|
|
113492
114140
|
can_hvac_heat?: boolean | undefined
|
|
114141
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
113493
114142
|
can_hvac_cool?: boolean | undefined
|
|
114143
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
113494
114144
|
can_hvac_heat_cool?: boolean | undefined
|
|
114145
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
113495
114146
|
can_turn_off_hvac?: boolean | undefined
|
|
114147
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
113496
114148
|
can_simulate_removal?: boolean | undefined
|
|
114149
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
113497
114150
|
can_simulate_connection?: boolean | undefined
|
|
114151
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
113498
114152
|
can_simulate_disconnection?: boolean | undefined
|
|
114153
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
113499
114154
|
can_unlock_with_code?: boolean | undefined
|
|
114155
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
113500
114156
|
can_run_thermostat_programs?: boolean | undefined
|
|
114157
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
113501
114158
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
114159
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
113502
114160
|
can_program_thermostat_programs_as_different_each_day?:
|
|
113503
114161
|
| boolean
|
|
113504
114162
|
| undefined
|
|
114163
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
113505
114164
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
114165
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
113506
114166
|
can_simulate_hub_connection?: boolean | undefined
|
|
114167
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
113507
114168
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
114169
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
113508
114170
|
can_simulate_paid_subscription?: boolean | undefined
|
|
114171
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
113509
114172
|
can_configure_auto_lock?: boolean | undefined
|
|
113510
114173
|
}[]
|
|
113511
114174
|
devices: {
|
|
@@ -115188,27 +115851,47 @@ export type Routes = {
|
|
|
115188
115851
|
image_url?: string | undefined
|
|
115189
115852
|
}
|
|
115190
115853
|
| undefined
|
|
115854
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
115191
115855
|
can_remotely_unlock?: boolean | undefined
|
|
115856
|
+
/** Indicates whether the device supports remote locking. */
|
|
115192
115857
|
can_remotely_lock?: boolean | undefined
|
|
115858
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
115193
115859
|
can_program_offline_access_codes?: boolean | undefined
|
|
115860
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
115194
115861
|
can_program_online_access_codes?: boolean | undefined
|
|
115862
|
+
/** Indicates whether the thermostat supports heating. */
|
|
115195
115863
|
can_hvac_heat?: boolean | undefined
|
|
115864
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
115196
115865
|
can_hvac_cool?: boolean | undefined
|
|
115866
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
115197
115867
|
can_hvac_heat_cool?: boolean | undefined
|
|
115868
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
115198
115869
|
can_turn_off_hvac?: boolean | undefined
|
|
115870
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
115199
115871
|
can_simulate_removal?: boolean | undefined
|
|
115872
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
115200
115873
|
can_simulate_connection?: boolean | undefined
|
|
115874
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
115201
115875
|
can_simulate_disconnection?: boolean | undefined
|
|
115876
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
115202
115877
|
can_unlock_with_code?: boolean | undefined
|
|
115878
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
115203
115879
|
can_run_thermostat_programs?: boolean | undefined
|
|
115880
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
115204
115881
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
115882
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
115205
115883
|
can_program_thermostat_programs_as_different_each_day?:
|
|
115206
115884
|
| boolean
|
|
115207
115885
|
| undefined
|
|
115886
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
115208
115887
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
115888
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
115209
115889
|
can_simulate_hub_connection?: boolean | undefined
|
|
115890
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
115210
115891
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
115892
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
115211
115893
|
can_simulate_paid_subscription?: boolean | undefined
|
|
115894
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
115212
115895
|
can_configure_auto_lock?: boolean | undefined
|
|
115213
115896
|
}[]
|
|
115214
115897
|
}
|
|
@@ -115340,6 +116023,7 @@ export type Routes = {
|
|
|
115340
116023
|
acs_credential_on_encoder: {
|
|
115341
116024
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
115342
116025
|
created_at: string | null
|
|
116026
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
115343
116027
|
is_issued: boolean | null
|
|
115344
116028
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
115345
116029
|
starts_at: string | null
|
|
@@ -115389,6 +116073,7 @@ export type Routes = {
|
|
|
115389
116073
|
user_identity_id?: string | undefined
|
|
115390
116074
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
115391
116075
|
connected_account_id: string
|
|
116076
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
115392
116077
|
acs_credential_pool_id?: string | undefined
|
|
115393
116078
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
115394
116079
|
acs_system_id: string
|
|
@@ -115545,6 +116230,7 @@ export type Routes = {
|
|
|
115545
116230
|
endpoint_id?: string | undefined
|
|
115546
116231
|
}
|
|
115547
116232
|
| undefined
|
|
116233
|
+
/** Indicates whether Seam manages the credential. */
|
|
115548
116234
|
is_managed: true
|
|
115549
116235
|
}
|
|
115550
116236
|
| {
|
|
@@ -115556,6 +116242,7 @@ export type Routes = {
|
|
|
115556
116242
|
user_identity_id?: string | undefined
|
|
115557
116243
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
115558
116244
|
connected_account_id: string
|
|
116245
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
115559
116246
|
acs_credential_pool_id?: string | undefined
|
|
115560
116247
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
115561
116248
|
acs_system_id: string
|
|
@@ -115803,6 +116490,7 @@ export type Routes = {
|
|
|
115803
116490
|
user_identity_id?: string | undefined
|
|
115804
116491
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
115805
116492
|
connected_account_id: string
|
|
116493
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
115806
116494
|
acs_credential_pool_id?: string | undefined
|
|
115807
116495
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
115808
116496
|
acs_system_id: string
|
|
@@ -115953,6 +116641,7 @@ export type Routes = {
|
|
|
115953
116641
|
endpoint_id?: string | undefined
|
|
115954
116642
|
}
|
|
115955
116643
|
| undefined
|
|
116644
|
+
/** Indicates whether Seam manages the credential. */
|
|
115956
116645
|
is_managed: true
|
|
115957
116646
|
}
|
|
115958
116647
|
| {
|
|
@@ -115964,6 +116653,7 @@ export type Routes = {
|
|
|
115964
116653
|
user_identity_id?: string | undefined
|
|
115965
116654
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
115966
116655
|
connected_account_id: string
|
|
116656
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
115967
116657
|
acs_credential_pool_id?: string | undefined
|
|
115968
116658
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
115969
116659
|
acs_system_id: string
|
|
@@ -116216,6 +116906,7 @@ export type Routes = {
|
|
|
116216
116906
|
user_identity_id?: string | undefined
|
|
116217
116907
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
116218
116908
|
connected_account_id: string
|
|
116909
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
116219
116910
|
acs_credential_pool_id?: string | undefined
|
|
116220
116911
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
116221
116912
|
acs_system_id: string
|
|
@@ -116366,6 +117057,7 @@ export type Routes = {
|
|
|
116366
117057
|
endpoint_id?: string | undefined
|
|
116367
117058
|
}
|
|
116368
117059
|
| undefined
|
|
117060
|
+
/** Indicates whether Seam manages the credential. */
|
|
116369
117061
|
is_managed: true
|
|
116370
117062
|
}
|
|
116371
117063
|
}
|
|
@@ -117482,6 +118174,7 @@ export type Routes = {
|
|
|
117482
118174
|
acs_credential_on_encoder: {
|
|
117483
118175
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
117484
118176
|
created_at: string | null
|
|
118177
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
117485
118178
|
is_issued: boolean | null
|
|
117486
118179
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
117487
118180
|
starts_at: string | null
|
|
@@ -117531,6 +118224,7 @@ export type Routes = {
|
|
|
117531
118224
|
user_identity_id?: string | undefined
|
|
117532
118225
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
117533
118226
|
connected_account_id: string
|
|
118227
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
117534
118228
|
acs_credential_pool_id?: string | undefined
|
|
117535
118229
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
117536
118230
|
acs_system_id: string
|
|
@@ -117687,6 +118381,7 @@ export type Routes = {
|
|
|
117687
118381
|
endpoint_id?: string | undefined
|
|
117688
118382
|
}
|
|
117689
118383
|
| undefined
|
|
118384
|
+
/** Indicates whether Seam manages the credential. */
|
|
117690
118385
|
is_managed: true
|
|
117691
118386
|
}
|
|
117692
118387
|
| {
|
|
@@ -117698,6 +118393,7 @@ export type Routes = {
|
|
|
117698
118393
|
user_identity_id?: string | undefined
|
|
117699
118394
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
117700
118395
|
connected_account_id: string
|
|
118396
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
117701
118397
|
acs_credential_pool_id?: string | undefined
|
|
117702
118398
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
117703
118399
|
acs_system_id: string
|
|
@@ -117945,6 +118641,7 @@ export type Routes = {
|
|
|
117945
118641
|
user_identity_id?: string | undefined
|
|
117946
118642
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
117947
118643
|
connected_account_id: string
|
|
118644
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
117948
118645
|
acs_credential_pool_id?: string | undefined
|
|
117949
118646
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
117950
118647
|
acs_system_id: string
|
|
@@ -118095,6 +118792,7 @@ export type Routes = {
|
|
|
118095
118792
|
endpoint_id?: string | undefined
|
|
118096
118793
|
}
|
|
118097
118794
|
| undefined
|
|
118795
|
+
/** Indicates whether Seam manages the credential. */
|
|
118098
118796
|
is_managed: true
|
|
118099
118797
|
}
|
|
118100
118798
|
| {
|
|
@@ -118106,6 +118804,7 @@ export type Routes = {
|
|
|
118106
118804
|
user_identity_id?: string | undefined
|
|
118107
118805
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
118108
118806
|
connected_account_id: string
|
|
118807
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
118109
118808
|
acs_credential_pool_id?: string | undefined
|
|
118110
118809
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
118111
118810
|
acs_system_id: string
|
|
@@ -118358,6 +119057,7 @@ export type Routes = {
|
|
|
118358
119057
|
user_identity_id?: string | undefined
|
|
118359
119058
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
118360
119059
|
connected_account_id: string
|
|
119060
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
118361
119061
|
acs_credential_pool_id?: string | undefined
|
|
118362
119062
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
118363
119063
|
acs_system_id: string
|
|
@@ -118508,6 +119208,7 @@ export type Routes = {
|
|
|
118508
119208
|
endpoint_id?: string | undefined
|
|
118509
119209
|
}
|
|
118510
119210
|
| undefined
|
|
119211
|
+
/** Indicates whether Seam manages the credential. */
|
|
118511
119212
|
is_managed: true
|
|
118512
119213
|
}
|
|
118513
119214
|
}
|
|
@@ -119457,6 +120158,7 @@ export type Routes = {
|
|
|
119457
120158
|
acs_credential_on_encoder: {
|
|
119458
120159
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
119459
120160
|
created_at: string | null
|
|
120161
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
119460
120162
|
is_issued: boolean | null
|
|
119461
120163
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
119462
120164
|
starts_at: string | null
|
|
@@ -119506,6 +120208,7 @@ export type Routes = {
|
|
|
119506
120208
|
user_identity_id?: string | undefined
|
|
119507
120209
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
119508
120210
|
connected_account_id: string
|
|
120211
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
119509
120212
|
acs_credential_pool_id?: string | undefined
|
|
119510
120213
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
119511
120214
|
acs_system_id: string
|
|
@@ -119662,6 +120365,7 @@ export type Routes = {
|
|
|
119662
120365
|
endpoint_id?: string | undefined
|
|
119663
120366
|
}
|
|
119664
120367
|
| undefined
|
|
120368
|
+
/** Indicates whether Seam manages the credential. */
|
|
119665
120369
|
is_managed: true
|
|
119666
120370
|
}
|
|
119667
120371
|
| {
|
|
@@ -119673,6 +120377,7 @@ export type Routes = {
|
|
|
119673
120377
|
user_identity_id?: string | undefined
|
|
119674
120378
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
119675
120379
|
connected_account_id: string
|
|
120380
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
119676
120381
|
acs_credential_pool_id?: string | undefined
|
|
119677
120382
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
119678
120383
|
acs_system_id: string
|
|
@@ -119920,6 +120625,7 @@ export type Routes = {
|
|
|
119920
120625
|
user_identity_id?: string | undefined
|
|
119921
120626
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
119922
120627
|
connected_account_id: string
|
|
120628
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
119923
120629
|
acs_credential_pool_id?: string | undefined
|
|
119924
120630
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
119925
120631
|
acs_system_id: string
|
|
@@ -120070,6 +120776,7 @@ export type Routes = {
|
|
|
120070
120776
|
endpoint_id?: string | undefined
|
|
120071
120777
|
}
|
|
120072
120778
|
| undefined
|
|
120779
|
+
/** Indicates whether Seam manages the credential. */
|
|
120073
120780
|
is_managed: true
|
|
120074
120781
|
}
|
|
120075
120782
|
| {
|
|
@@ -120081,6 +120788,7 @@ export type Routes = {
|
|
|
120081
120788
|
user_identity_id?: string | undefined
|
|
120082
120789
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
120083
120790
|
connected_account_id: string
|
|
120791
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
120084
120792
|
acs_credential_pool_id?: string | undefined
|
|
120085
120793
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
120086
120794
|
acs_system_id: string
|
|
@@ -120333,6 +121041,7 @@ export type Routes = {
|
|
|
120333
121041
|
user_identity_id?: string | undefined
|
|
120334
121042
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
120335
121043
|
connected_account_id: string
|
|
121044
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
120336
121045
|
acs_credential_pool_id?: string | undefined
|
|
120337
121046
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
120338
121047
|
acs_system_id: string
|
|
@@ -120483,6 +121192,7 @@ export type Routes = {
|
|
|
120483
121192
|
endpoint_id?: string | undefined
|
|
120484
121193
|
}
|
|
120485
121194
|
| undefined
|
|
121195
|
+
/** Indicates whether Seam manages the credential. */
|
|
120486
121196
|
is_managed: true
|
|
120487
121197
|
}
|
|
120488
121198
|
}
|
|
@@ -121549,6 +122259,7 @@ export type Routes = {
|
|
|
121549
122259
|
acs_credential_on_encoder: {
|
|
121550
122260
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
121551
122261
|
created_at: string | null
|
|
122262
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
121552
122263
|
is_issued: boolean | null
|
|
121553
122264
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
121554
122265
|
starts_at: string | null
|
|
@@ -121598,6 +122309,7 @@ export type Routes = {
|
|
|
121598
122309
|
user_identity_id?: string | undefined
|
|
121599
122310
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
121600
122311
|
connected_account_id: string
|
|
122312
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
121601
122313
|
acs_credential_pool_id?: string | undefined
|
|
121602
122314
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
121603
122315
|
acs_system_id: string
|
|
@@ -121754,6 +122466,7 @@ export type Routes = {
|
|
|
121754
122466
|
endpoint_id?: string | undefined
|
|
121755
122467
|
}
|
|
121756
122468
|
| undefined
|
|
122469
|
+
/** Indicates whether Seam manages the credential. */
|
|
121757
122470
|
is_managed: true
|
|
121758
122471
|
}
|
|
121759
122472
|
| {
|
|
@@ -121765,6 +122478,7 @@ export type Routes = {
|
|
|
121765
122478
|
user_identity_id?: string | undefined
|
|
121766
122479
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
121767
122480
|
connected_account_id: string
|
|
122481
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
121768
122482
|
acs_credential_pool_id?: string | undefined
|
|
121769
122483
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
121770
122484
|
acs_system_id: string
|
|
@@ -122012,6 +122726,7 @@ export type Routes = {
|
|
|
122012
122726
|
user_identity_id?: string | undefined
|
|
122013
122727
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
122014
122728
|
connected_account_id: string
|
|
122729
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
122015
122730
|
acs_credential_pool_id?: string | undefined
|
|
122016
122731
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
122017
122732
|
acs_system_id: string
|
|
@@ -122162,6 +122877,7 @@ export type Routes = {
|
|
|
122162
122877
|
endpoint_id?: string | undefined
|
|
122163
122878
|
}
|
|
122164
122879
|
| undefined
|
|
122880
|
+
/** Indicates whether Seam manages the credential. */
|
|
122165
122881
|
is_managed: true
|
|
122166
122882
|
}
|
|
122167
122883
|
| {
|
|
@@ -122173,6 +122889,7 @@ export type Routes = {
|
|
|
122173
122889
|
user_identity_id?: string | undefined
|
|
122174
122890
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
122175
122891
|
connected_account_id: string
|
|
122892
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
122176
122893
|
acs_credential_pool_id?: string | undefined
|
|
122177
122894
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
122178
122895
|
acs_system_id: string
|
|
@@ -122425,6 +123142,7 @@ export type Routes = {
|
|
|
122425
123142
|
user_identity_id?: string | undefined
|
|
122426
123143
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
122427
123144
|
connected_account_id: string
|
|
123145
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
122428
123146
|
acs_credential_pool_id?: string | undefined
|
|
122429
123147
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
122430
123148
|
acs_system_id: string
|
|
@@ -122575,6 +123293,7 @@ export type Routes = {
|
|
|
122575
123293
|
endpoint_id?: string | undefined
|
|
122576
123294
|
}
|
|
122577
123295
|
| undefined
|
|
123296
|
+
/** Indicates whether Seam manages the credential. */
|
|
122578
123297
|
is_managed: true
|
|
122579
123298
|
}
|
|
122580
123299
|
}
|
|
@@ -123608,7 +124327,9 @@ export type Routes = {
|
|
|
123608
124327
|
email_address: string | null
|
|
123609
124328
|
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
123610
124329
|
phone_number: string | null
|
|
124330
|
+
/** Display name for the user identity. */
|
|
123611
124331
|
display_name: string
|
|
124332
|
+
/** Full name of the user associated with the user identity. */
|
|
123612
124333
|
full_name: string | null
|
|
123613
124334
|
/** Date and time at which the user identity was created. */
|
|
123614
124335
|
created_at: string
|
|
@@ -123840,7 +124561,9 @@ export type Routes = {
|
|
|
123840
124561
|
email_address: string | null
|
|
123841
124562
|
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
123842
124563
|
phone_number: string | null
|
|
124564
|
+
/** Display name for the user identity. */
|
|
123843
124565
|
display_name: string
|
|
124566
|
+
/** Full name of the user associated with the user identity. */
|
|
123844
124567
|
full_name: string | null
|
|
123845
124568
|
/** Date and time at which the user identity was created. */
|
|
123846
124569
|
created_at: string
|
|
@@ -123929,7 +124652,9 @@ export type Routes = {
|
|
|
123929
124652
|
email_address: string | null
|
|
123930
124653
|
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
123931
124654
|
phone_number: string | null
|
|
124655
|
+
/** Display name for the user identity. */
|
|
123932
124656
|
display_name: string
|
|
124657
|
+
/** Full name of the user associated with the user identity. */
|
|
123933
124658
|
full_name: string | null
|
|
123934
124659
|
/** Date and time at which the user identity was created. */
|
|
123935
124660
|
created_at: string
|
|
@@ -125673,27 +126398,47 @@ export type Routes = {
|
|
|
125673
126398
|
image_url?: string | undefined
|
|
125674
126399
|
}
|
|
125675
126400
|
| undefined
|
|
126401
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
125676
126402
|
can_remotely_unlock?: boolean | undefined
|
|
126403
|
+
/** Indicates whether the device supports remote locking. */
|
|
125677
126404
|
can_remotely_lock?: boolean | undefined
|
|
126405
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
125678
126406
|
can_program_offline_access_codes?: boolean | undefined
|
|
126407
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
125679
126408
|
can_program_online_access_codes?: boolean | undefined
|
|
126409
|
+
/** Indicates whether the thermostat supports heating. */
|
|
125680
126410
|
can_hvac_heat?: boolean | undefined
|
|
126411
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
125681
126412
|
can_hvac_cool?: boolean | undefined
|
|
126413
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
125682
126414
|
can_hvac_heat_cool?: boolean | undefined
|
|
126415
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
125683
126416
|
can_turn_off_hvac?: boolean | undefined
|
|
126417
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
125684
126418
|
can_simulate_removal?: boolean | undefined
|
|
126419
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
125685
126420
|
can_simulate_connection?: boolean | undefined
|
|
126421
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
125686
126422
|
can_simulate_disconnection?: boolean | undefined
|
|
126423
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
125687
126424
|
can_unlock_with_code?: boolean | undefined
|
|
126425
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
125688
126426
|
can_run_thermostat_programs?: boolean | undefined
|
|
126427
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
125689
126428
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
126429
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
125690
126430
|
can_program_thermostat_programs_as_different_each_day?:
|
|
125691
126431
|
| boolean
|
|
125692
126432
|
| undefined
|
|
126433
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
125693
126434
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
126435
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
125694
126436
|
can_simulate_hub_connection?: boolean | undefined
|
|
126437
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
125695
126438
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
126439
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
125696
126440
|
can_simulate_paid_subscription?: boolean | undefined
|
|
126441
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
125697
126442
|
can_configure_auto_lock?: boolean | undefined
|
|
125698
126443
|
}[]
|
|
125699
126444
|
/**
|
|
@@ -127378,27 +128123,47 @@ export type Routes = {
|
|
|
127378
128123
|
image_url?: string | undefined
|
|
127379
128124
|
}
|
|
127380
128125
|
| undefined
|
|
128126
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
127381
128127
|
can_remotely_unlock?: boolean | undefined
|
|
128128
|
+
/** Indicates whether the device supports remote locking. */
|
|
127382
128129
|
can_remotely_lock?: boolean | undefined
|
|
128130
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
127383
128131
|
can_program_offline_access_codes?: boolean | undefined
|
|
128132
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
127384
128133
|
can_program_online_access_codes?: boolean | undefined
|
|
128134
|
+
/** Indicates whether the thermostat supports heating. */
|
|
127385
128135
|
can_hvac_heat?: boolean | undefined
|
|
128136
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
127386
128137
|
can_hvac_cool?: boolean | undefined
|
|
128138
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
127387
128139
|
can_hvac_heat_cool?: boolean | undefined
|
|
128140
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
127388
128141
|
can_turn_off_hvac?: boolean | undefined
|
|
128142
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
127389
128143
|
can_simulate_removal?: boolean | undefined
|
|
128144
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
127390
128145
|
can_simulate_connection?: boolean | undefined
|
|
128146
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
127391
128147
|
can_simulate_disconnection?: boolean | undefined
|
|
128148
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
127392
128149
|
can_unlock_with_code?: boolean | undefined
|
|
128150
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
127393
128151
|
can_run_thermostat_programs?: boolean | undefined
|
|
128152
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
127394
128153
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
128154
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
127395
128155
|
can_program_thermostat_programs_as_different_each_day?:
|
|
127396
128156
|
| boolean
|
|
127397
128157
|
| undefined
|
|
128158
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
127398
128159
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
128160
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
127399
128161
|
can_simulate_hub_connection?: boolean | undefined
|
|
128162
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
127400
128163
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
128164
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
127401
128165
|
can_simulate_paid_subscription?: boolean | undefined
|
|
128166
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
127402
128167
|
can_configure_auto_lock?: boolean | undefined
|
|
127403
128168
|
}[]
|
|
127404
128169
|
}
|
|
@@ -127650,7 +128415,9 @@ export type Routes = {
|
|
|
127650
128415
|
default_credential_manager_acs_system_id?: (string | null) | undefined
|
|
127651
128416
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
127652
128417
|
acs_system_id: string
|
|
128418
|
+
/** Number of users in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
127653
128419
|
acs_user_count?: number | undefined
|
|
128420
|
+
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
127654
128421
|
acs_access_group_count?: number | undefined
|
|
127655
128422
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
127656
128423
|
external_type?:
|
|
@@ -127676,6 +128443,7 @@ export type Routes = {
|
|
|
127676
128443
|
external_type_display_name?: string | undefined
|
|
127677
128444
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
127678
128445
|
is_credential_manager: boolean
|
|
128446
|
+
/** Visionline-specific metadata for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
127679
128447
|
visionline_metadata?:
|
|
127680
128448
|
| {
|
|
127681
128449
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
@@ -127710,6 +128478,7 @@ export type Routes = {
|
|
|
127710
128478
|
/**
|
|
127711
128479
|
* @deprecated Use `external_type_display_name`.*/
|
|
127712
128480
|
system_type_display_name?: string | undefined
|
|
128481
|
+
/** Location information for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
127713
128482
|
location: {
|
|
127714
128483
|
/** Time zone in which the [access control system](https://docs.seam.co/low-level-apis/access-systems) is located. */
|
|
127715
128484
|
time_zone: string | null
|
|
@@ -127746,6 +128515,7 @@ export type Routes = {
|
|
|
127746
128515
|
message: string
|
|
127747
128516
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
127748
128517
|
error_code: 'bridge_disconnected'
|
|
128518
|
+
/** Indicates whether the error is related to the [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
127749
128519
|
is_bridge_error?: boolean | undefined
|
|
127750
128520
|
}
|
|
127751
128521
|
| {
|
|
@@ -127847,6 +128617,7 @@ export type Routes = {
|
|
|
127847
128617
|
acs_user_id: string
|
|
127848
128618
|
/** ID of the [access system](https://docs.seam.co/low-level-apis/access-systems) that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
127849
128619
|
acs_system_id: string
|
|
128620
|
+
/** ID of the HID access control system associated with the user. */
|
|
127850
128621
|
hid_acs_system_id?: string | undefined
|
|
127851
128622
|
/** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
127852
128623
|
workspace_id: string
|
|
@@ -128131,6 +128902,7 @@ export type Routes = {
|
|
|
128131
128902
|
email_address?: string | undefined
|
|
128132
128903
|
/** Phone number of the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management) in E.164 format (for example, `+15555550100`). */
|
|
128133
128904
|
phone_number?: string | undefined
|
|
128905
|
+
/** Indicates whether Seam manages the access system user. */
|
|
128134
128906
|
is_managed: true
|
|
128135
128907
|
}[]
|
|
128136
128908
|
}
|
|
@@ -128185,7 +128957,9 @@ export type Routes = {
|
|
|
128185
128957
|
email_address: string | null
|
|
128186
128958
|
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
128187
128959
|
phone_number: string | null
|
|
128960
|
+
/** Display name for the user identity. */
|
|
128188
128961
|
display_name: string
|
|
128962
|
+
/** Full name of the user associated with the user identity. */
|
|
128189
128963
|
full_name: string | null
|
|
128190
128964
|
/** Date and time at which the user identity was created. */
|
|
128191
128965
|
created_at: string
|
|
@@ -128253,7 +129027,9 @@ export type Routes = {
|
|
|
128253
129027
|
email_address: string | null
|
|
128254
129028
|
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
128255
129029
|
phone_number: string | null
|
|
129030
|
+
/** Display name for the user identity. */
|
|
128256
129031
|
display_name: string
|
|
129032
|
+
/** Full name of the user associated with the user identity. */
|
|
128257
129033
|
full_name: string | null
|
|
128258
129034
|
/** Date and time at which the user identity was created. */
|
|
128259
129035
|
created_at: string
|
|
@@ -128735,7 +129511,9 @@ export type Routes = {
|
|
|
128735
129511
|
email_address: string | null
|
|
128736
129512
|
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
128737
129513
|
phone_number: string | null
|
|
129514
|
+
/** Display name for the user identity. */
|
|
128738
129515
|
display_name: string
|
|
129516
|
+
/** Full name of the user associated with the user identity. */
|
|
128739
129517
|
full_name: string | null
|
|
128740
129518
|
/** Date and time at which the user identity was created. */
|
|
128741
129519
|
created_at: string
|
|
@@ -130515,31 +131293,51 @@ export type Routes = {
|
|
|
130515
131293
|
image_url?: string | undefined
|
|
130516
131294
|
}
|
|
130517
131295
|
| undefined
|
|
131296
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
130518
131297
|
can_remotely_unlock?: boolean | undefined
|
|
131298
|
+
/** Indicates whether the device supports remote locking. */
|
|
130519
131299
|
can_remotely_lock?: boolean | undefined
|
|
131300
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
130520
131301
|
can_program_offline_access_codes?: boolean | undefined
|
|
131302
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
130521
131303
|
can_program_online_access_codes?: boolean | undefined
|
|
131304
|
+
/** Indicates whether the thermostat supports heating. */
|
|
130522
131305
|
can_hvac_heat?: boolean | undefined
|
|
131306
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
130523
131307
|
can_hvac_cool?: boolean | undefined
|
|
131308
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
130524
131309
|
can_hvac_heat_cool?: boolean | undefined
|
|
131310
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
130525
131311
|
can_turn_off_hvac?: boolean | undefined
|
|
131312
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
130526
131313
|
can_simulate_removal?: boolean | undefined
|
|
131314
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
130527
131315
|
can_simulate_connection?: boolean | undefined
|
|
131316
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
130528
131317
|
can_simulate_disconnection?: boolean | undefined
|
|
131318
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
130529
131319
|
can_unlock_with_code?: boolean | undefined
|
|
131320
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
130530
131321
|
can_run_thermostat_programs?: boolean | undefined
|
|
131322
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
130531
131323
|
can_program_thermostat_programs_as_weekday_weekend?:
|
|
130532
131324
|
| boolean
|
|
130533
131325
|
| undefined
|
|
131326
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
130534
131327
|
can_program_thermostat_programs_as_different_each_day?:
|
|
130535
131328
|
| boolean
|
|
130536
131329
|
| undefined
|
|
131330
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
130537
131331
|
can_program_thermostat_programs_as_same_each_day?:
|
|
130538
131332
|
| boolean
|
|
130539
131333
|
| undefined
|
|
131334
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
130540
131335
|
can_simulate_hub_connection?: boolean | undefined
|
|
131336
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
130541
131337
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
131338
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
130542
131339
|
can_simulate_paid_subscription?: boolean | undefined
|
|
131340
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
130543
131341
|
can_configure_auto_lock?: boolean | undefined
|
|
130544
131342
|
}[]
|
|
130545
131343
|
| undefined
|
|
@@ -130772,7 +131570,9 @@ export type Routes = {
|
|
|
130772
131570
|
| undefined
|
|
130773
131571
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
130774
131572
|
acs_system_id: string
|
|
131573
|
+
/** Number of users in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
130775
131574
|
acs_user_count?: number | undefined
|
|
131575
|
+
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
130776
131576
|
acs_access_group_count?: number | undefined
|
|
130777
131577
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
130778
131578
|
external_type?:
|
|
@@ -130798,6 +131598,7 @@ export type Routes = {
|
|
|
130798
131598
|
external_type_display_name?: string | undefined
|
|
130799
131599
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
130800
131600
|
is_credential_manager: boolean
|
|
131601
|
+
/** Visionline-specific metadata for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
130801
131602
|
visionline_metadata?:
|
|
130802
131603
|
| {
|
|
130803
131604
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
@@ -130832,6 +131633,7 @@ export type Routes = {
|
|
|
130832
131633
|
/**
|
|
130833
131634
|
* @deprecated Use `external_type_display_name`.*/
|
|
130834
131635
|
system_type_display_name?: string | undefined
|
|
131636
|
+
/** Location information for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
130835
131637
|
location: {
|
|
130836
131638
|
/** Time zone in which the [access control system](https://docs.seam.co/low-level-apis/access-systems) is located. */
|
|
130837
131639
|
time_zone: string | null
|
|
@@ -130868,6 +131670,7 @@ export type Routes = {
|
|
|
130868
131670
|
message: string
|
|
130869
131671
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
130870
131672
|
error_code: 'bridge_disconnected'
|
|
131673
|
+
/** Indicates whether the error is related to the [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
130871
131674
|
is_bridge_error?: boolean | undefined
|
|
130872
131675
|
}
|
|
130873
131676
|
| {
|
|
@@ -130957,6 +131760,7 @@ export type Routes = {
|
|
|
130957
131760
|
acs_user_id: string
|
|
130958
131761
|
/** ID of the [access system](https://docs.seam.co/low-level-apis/access-systems) that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
130959
131762
|
acs_system_id: string
|
|
131763
|
+
/** ID of the HID access control system associated with the user. */
|
|
130960
131764
|
hid_acs_system_id?: string | undefined
|
|
130961
131765
|
/** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
130962
131766
|
workspace_id: string
|
|
@@ -131245,6 +132049,7 @@ export type Routes = {
|
|
|
131245
132049
|
email_address?: string | undefined
|
|
131246
132050
|
/** Phone number of the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management) in E.164 format (for example, `+15555550100`). */
|
|
131247
132051
|
phone_number?: string | undefined
|
|
132052
|
+
/** Indicates whether Seam manages the access system user. */
|
|
131248
132053
|
is_managed: true
|
|
131249
132054
|
}[]
|
|
131250
132055
|
| undefined
|
|
@@ -131274,6 +132079,7 @@ export type Routes = {
|
|
|
131274
132079
|
/**
|
|
131275
132080
|
* @deprecated Use `external_type_display_name`.*/
|
|
131276
132081
|
access_group_type_display_name: string
|
|
132082
|
+
/** Display name for the access group. */
|
|
131277
132083
|
display_name: string
|
|
131278
132084
|
/** Brand-specific terminology for the access group type. */
|
|
131279
132085
|
external_type:
|
|
@@ -131441,6 +132247,7 @@ export type Routes = {
|
|
|
131441
132247
|
variant: 'adding' | 'removing'
|
|
131442
132248
|
}
|
|
131443
132249
|
)[]
|
|
132250
|
+
/** Indicates whether Seam manages the access group. */
|
|
131444
132251
|
is_managed: true
|
|
131445
132252
|
}[]
|
|
131446
132253
|
| undefined
|
|
@@ -131578,6 +132385,7 @@ export type Routes = {
|
|
|
131578
132385
|
acs_credential_on_encoder: {
|
|
131579
132386
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
131580
132387
|
created_at: string | null
|
|
132388
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
131581
132389
|
is_issued: boolean | null
|
|
131582
132390
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
131583
132391
|
starts_at: string | null
|
|
@@ -131627,6 +132435,7 @@ export type Routes = {
|
|
|
131627
132435
|
user_identity_id?: string | undefined
|
|
131628
132436
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
131629
132437
|
connected_account_id: string
|
|
132438
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
131630
132439
|
acs_credential_pool_id?: string | undefined
|
|
131631
132440
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
131632
132441
|
acs_system_id: string
|
|
@@ -131791,6 +132600,7 @@ export type Routes = {
|
|
|
131791
132600
|
endpoint_id?: string | undefined
|
|
131792
132601
|
}
|
|
131793
132602
|
| undefined
|
|
132603
|
+
/** Indicates whether Seam manages the credential. */
|
|
131794
132604
|
is_managed: true
|
|
131795
132605
|
}
|
|
131796
132606
|
| {
|
|
@@ -131802,6 +132612,7 @@ export type Routes = {
|
|
|
131802
132612
|
user_identity_id?: string | undefined
|
|
131803
132613
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
131804
132614
|
connected_account_id: string
|
|
132615
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
131805
132616
|
acs_credential_pool_id?: string | undefined
|
|
131806
132617
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
131807
132618
|
acs_system_id: string
|
|
@@ -132057,6 +132868,7 @@ export type Routes = {
|
|
|
132057
132868
|
user_identity_id?: string | undefined
|
|
132058
132869
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
132059
132870
|
connected_account_id: string
|
|
132871
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
132060
132872
|
acs_credential_pool_id?: string | undefined
|
|
132061
132873
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
132062
132874
|
acs_system_id: string
|
|
@@ -132213,6 +133025,7 @@ export type Routes = {
|
|
|
132213
133025
|
endpoint_id?: string | undefined
|
|
132214
133026
|
}
|
|
132215
133027
|
| undefined
|
|
133028
|
+
/** Indicates whether Seam manages the credential. */
|
|
132216
133029
|
is_managed: true
|
|
132217
133030
|
}
|
|
132218
133031
|
| {
|
|
@@ -132224,6 +133037,7 @@ export type Routes = {
|
|
|
132224
133037
|
user_identity_id?: string | undefined
|
|
132225
133038
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
132226
133039
|
connected_account_id: string
|
|
133040
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
132227
133041
|
acs_credential_pool_id?: string | undefined
|
|
132228
133042
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
132229
133043
|
acs_system_id: string
|
|
@@ -132482,6 +133296,7 @@ export type Routes = {
|
|
|
132482
133296
|
user_identity_id?: string | undefined
|
|
132483
133297
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
132484
133298
|
connected_account_id: string
|
|
133299
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
132485
133300
|
acs_credential_pool_id?: string | undefined
|
|
132486
133301
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
132487
133302
|
acs_system_id: string
|
|
@@ -132632,6 +133447,7 @@ export type Routes = {
|
|
|
132632
133447
|
endpoint_id?: string | undefined
|
|
132633
133448
|
}
|
|
132634
133449
|
| undefined
|
|
133450
|
+
/** Indicates whether Seam manages the credential. */
|
|
132635
133451
|
is_managed: true
|
|
132636
133452
|
}
|
|
132637
133453
|
}
|
|
@@ -133453,6 +134269,7 @@ export type Routes = {
|
|
|
133453
134269
|
acs_user_id: string
|
|
133454
134270
|
/** ID of the [access system](https://docs.seam.co/low-level-apis/access-systems) that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
133455
134271
|
acs_system_id: string
|
|
134272
|
+
/** ID of the HID access control system associated with the user. */
|
|
133456
134273
|
hid_acs_system_id?: string | undefined
|
|
133457
134274
|
/** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
133458
134275
|
workspace_id: string
|
|
@@ -133770,6 +134587,7 @@ export type Routes = {
|
|
|
133770
134587
|
/**
|
|
133771
134588
|
* @deprecated Use `external_type_display_name`.*/
|
|
133772
134589
|
access_group_type_display_name: string
|
|
134590
|
+
/** Display name for the access group. */
|
|
133773
134591
|
display_name: string
|
|
133774
134592
|
/** Brand-specific terminology for the access group type. */
|
|
133775
134593
|
external_type:
|
|
@@ -134409,6 +135227,7 @@ export type Routes = {
|
|
|
134409
135227
|
custom_metadata: {
|
|
134410
135228
|
[x: string]: string | boolean
|
|
134411
135229
|
}
|
|
135230
|
+
/** Indicates that Seam does not manage the device. */
|
|
134412
135231
|
is_managed: false
|
|
134413
135232
|
/** properties of the device. */
|
|
134414
135233
|
properties: {
|
|
@@ -134486,31 +135305,51 @@ export type Routes = {
|
|
|
134486
135305
|
accessory_keypad_supported?: boolean | undefined
|
|
134487
135306
|
}
|
|
134488
135307
|
}
|
|
135308
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
134489
135309
|
can_remotely_unlock?: boolean | undefined
|
|
135310
|
+
/** Indicates whether the device supports remote locking. */
|
|
134490
135311
|
can_remotely_lock?: boolean | undefined
|
|
135312
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
134491
135313
|
can_program_offline_access_codes?: boolean | undefined
|
|
135314
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
134492
135315
|
can_program_online_access_codes?: boolean | undefined
|
|
135316
|
+
/** Indicates whether the thermostat supports heating. */
|
|
134493
135317
|
can_hvac_heat?: boolean | undefined
|
|
135318
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
134494
135319
|
can_hvac_cool?: boolean | undefined
|
|
135320
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
134495
135321
|
can_hvac_heat_cool?: boolean | undefined
|
|
135322
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
134496
135323
|
can_turn_off_hvac?: boolean | undefined
|
|
135324
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
134497
135325
|
can_simulate_removal?: boolean | undefined
|
|
135326
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
134498
135327
|
can_simulate_connection?: boolean | undefined
|
|
135328
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
134499
135329
|
can_simulate_disconnection?: boolean | undefined
|
|
135330
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
134500
135331
|
can_unlock_with_code?: boolean | undefined
|
|
135332
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
134501
135333
|
can_run_thermostat_programs?: boolean | undefined
|
|
135334
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
134502
135335
|
can_program_thermostat_programs_as_weekday_weekend?:
|
|
134503
135336
|
| boolean
|
|
134504
135337
|
| undefined
|
|
135338
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
134505
135339
|
can_program_thermostat_programs_as_different_each_day?:
|
|
134506
135340
|
| boolean
|
|
134507
135341
|
| undefined
|
|
135342
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
134508
135343
|
can_program_thermostat_programs_as_same_each_day?:
|
|
134509
135344
|
| boolean
|
|
134510
135345
|
| undefined
|
|
135346
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
134511
135347
|
can_simulate_hub_connection?: boolean | undefined
|
|
135348
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
134512
135349
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
135350
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
134513
135351
|
can_simulate_paid_subscription?: boolean | undefined
|
|
135352
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
134514
135353
|
can_configure_auto_lock?: boolean | undefined
|
|
134515
135354
|
}[]
|
|
134516
135355
|
| undefined
|
|
@@ -134526,6 +135365,7 @@ export type Routes = {
|
|
|
134526
135365
|
connected_account_id: string | null
|
|
134527
135366
|
/** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
|
|
134528
135367
|
url: string
|
|
135368
|
+
/** Device selection mode of the Connect Webview. Supported values: `none`, `single`, `multiple`. */
|
|
134529
135369
|
device_selection_mode: 'none' | 'single' | 'multiple'
|
|
134530
135370
|
/** List of accepted [provider keys](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
|
|
134531
135371
|
accepted_providers: string[]
|
|
@@ -135882,6 +136722,7 @@ export type Routes = {
|
|
|
135882
136722
|
}
|
|
135883
136723
|
| undefined
|
|
135884
136724
|
event_type: 'access_code.backup_access_code_pulled'
|
|
136725
|
+
/** ID of the backup access code that was pulled from the pool. */
|
|
135885
136726
|
backup_access_code_id: string
|
|
135886
136727
|
}
|
|
135887
136728
|
| {
|
|
@@ -136431,6 +137272,7 @@ export type Routes = {
|
|
|
136431
137272
|
connected_account_id?: string | undefined
|
|
136432
137273
|
/** ID of the access system. */
|
|
136433
137274
|
acs_system_id: string
|
|
137275
|
+
/** ID of the affected access system user. */
|
|
136434
137276
|
acs_user_id: string
|
|
136435
137277
|
event_type: 'acs_user.created'
|
|
136436
137278
|
}
|
|
@@ -136447,6 +137289,7 @@ export type Routes = {
|
|
|
136447
137289
|
connected_account_id?: string | undefined
|
|
136448
137290
|
/** ID of the access system. */
|
|
136449
137291
|
acs_system_id: string
|
|
137292
|
+
/** ID of the affected access system user. */
|
|
136450
137293
|
acs_user_id: string
|
|
136451
137294
|
event_type: 'acs_user.deleted'
|
|
136452
137295
|
}
|
|
@@ -136514,6 +137357,7 @@ export type Routes = {
|
|
|
136514
137357
|
connected_account_id?: string | undefined
|
|
136515
137358
|
/** ID of the access system. */
|
|
136516
137359
|
acs_system_id: string
|
|
137360
|
+
/** ID of the affected entrance. */
|
|
136517
137361
|
acs_entrance_id: string
|
|
136518
137362
|
event_type: 'acs_entrance.added'
|
|
136519
137363
|
}
|
|
@@ -136530,6 +137374,7 @@ export type Routes = {
|
|
|
136530
137374
|
connected_account_id?: string | undefined
|
|
136531
137375
|
/** ID of the access system. */
|
|
136532
137376
|
acs_system_id: string
|
|
137377
|
+
/** ID of the affected entrance. */
|
|
136533
137378
|
acs_entrance_id: string
|
|
136534
137379
|
event_type: 'acs_entrance.removed'
|
|
136535
137380
|
}
|
|
@@ -138469,6 +139314,7 @@ export type Routes = {
|
|
|
138469
139314
|
user_identity_id?: string | undefined
|
|
138470
139315
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
138471
139316
|
connected_account_id: string
|
|
139317
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
138472
139318
|
acs_credential_pool_id?: string | undefined
|
|
138473
139319
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
138474
139320
|
acs_system_id: string
|
|
@@ -138619,6 +139465,7 @@ export type Routes = {
|
|
|
138619
139465
|
endpoint_id?: string | undefined
|
|
138620
139466
|
}
|
|
138621
139467
|
| undefined
|
|
139468
|
+
/** Indicates whether Seam manages the credential. */
|
|
138622
139469
|
is_managed: true
|
|
138623
139470
|
}[]
|
|
138624
139471
|
| undefined
|
|
@@ -138632,6 +139479,7 @@ export type Routes = {
|
|
|
138632
139479
|
user_identity_id?: string | undefined
|
|
138633
139480
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
138634
139481
|
connected_account_id: string
|
|
139482
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
138635
139483
|
acs_credential_pool_id?: string | undefined
|
|
138636
139484
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
138637
139485
|
acs_system_id: string
|
|
@@ -140140,6 +140988,7 @@ export type Routes = {
|
|
|
140140
140988
|
acs_credential_on_encoder: {
|
|
140141
140989
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
140142
140990
|
created_at: string | null
|
|
140991
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
140143
140992
|
is_issued: boolean | null
|
|
140144
140993
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
140145
140994
|
starts_at: string | null
|
|
@@ -140189,6 +141038,7 @@ export type Routes = {
|
|
|
140189
141038
|
user_identity_id?: string | undefined
|
|
140190
141039
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
140191
141040
|
connected_account_id: string
|
|
141041
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
140192
141042
|
acs_credential_pool_id?: string | undefined
|
|
140193
141043
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
140194
141044
|
acs_system_id: string
|
|
@@ -140345,6 +141195,7 @@ export type Routes = {
|
|
|
140345
141195
|
endpoint_id?: string | undefined
|
|
140346
141196
|
}
|
|
140347
141197
|
| undefined
|
|
141198
|
+
/** Indicates whether Seam manages the credential. */
|
|
140348
141199
|
is_managed: true
|
|
140349
141200
|
}
|
|
140350
141201
|
| {
|
|
@@ -140356,6 +141207,7 @@ export type Routes = {
|
|
|
140356
141207
|
user_identity_id?: string | undefined
|
|
140357
141208
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
140358
141209
|
connected_account_id: string
|
|
141210
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
140359
141211
|
acs_credential_pool_id?: string | undefined
|
|
140360
141212
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
140361
141213
|
acs_system_id: string
|
|
@@ -140603,6 +141455,7 @@ export type Routes = {
|
|
|
140603
141455
|
user_identity_id?: string | undefined
|
|
140604
141456
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
140605
141457
|
connected_account_id: string
|
|
141458
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
140606
141459
|
acs_credential_pool_id?: string | undefined
|
|
140607
141460
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
140608
141461
|
acs_system_id: string
|
|
@@ -140753,6 +141606,7 @@ export type Routes = {
|
|
|
140753
141606
|
endpoint_id?: string | undefined
|
|
140754
141607
|
}
|
|
140755
141608
|
| undefined
|
|
141609
|
+
/** Indicates whether Seam manages the credential. */
|
|
140756
141610
|
is_managed: true
|
|
140757
141611
|
}
|
|
140758
141612
|
| {
|
|
@@ -140764,6 +141618,7 @@ export type Routes = {
|
|
|
140764
141618
|
user_identity_id?: string | undefined
|
|
140765
141619
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
140766
141620
|
connected_account_id: string
|
|
141621
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
140767
141622
|
acs_credential_pool_id?: string | undefined
|
|
140768
141623
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
140769
141624
|
acs_system_id: string
|
|
@@ -141016,6 +141871,7 @@ export type Routes = {
|
|
|
141016
141871
|
user_identity_id?: string | undefined
|
|
141017
141872
|
/** ID of the [connected account](https://docs.seam.co/low-level-apis/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) belongs. */
|
|
141018
141873
|
connected_account_id: string
|
|
141874
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
141019
141875
|
acs_credential_pool_id?: string | undefined
|
|
141020
141876
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems) that contains the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
141021
141877
|
acs_system_id: string
|
|
@@ -141166,6 +142022,7 @@ export type Routes = {
|
|
|
141166
142022
|
endpoint_id?: string | undefined
|
|
141167
142023
|
}
|
|
141168
142024
|
| undefined
|
|
142025
|
+
/** Indicates whether Seam manages the credential. */
|
|
141169
142026
|
is_managed: true
|
|
141170
142027
|
}
|
|
141171
142028
|
}
|