@seamapi/types 1.916.0 → 1.918.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 +645 -162
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +987 -23
- package/dist/index.cjs +645 -162
- 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/events/devices.d.ts +30 -8
- package/lib/seam/connect/models/events/devices.js +25 -0
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +15 -4
- 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 +514 -97
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +972 -19
- 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/events/devices.ts +25 -0
- 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 +665 -97
- package/src/lib/seam/connect/route-types.ts +972 -19
|
@@ -153,6 +153,7 @@ export type Routes = {
|
|
|
153
153
|
acs_credential_on_encoder: {
|
|
154
154
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
155
155
|
created_at: string | null;
|
|
156
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
156
157
|
is_issued: boolean | null;
|
|
157
158
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
158
159
|
starts_at: string | null;
|
|
@@ -198,6 +199,7 @@ export type Routes = {
|
|
|
198
199
|
user_identity_id?: string | undefined;
|
|
199
200
|
/** 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. */
|
|
200
201
|
connected_account_id: string;
|
|
202
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
201
203
|
acs_credential_pool_id?: string | undefined;
|
|
202
204
|
/** 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). */
|
|
203
205
|
acs_system_id: string;
|
|
@@ -318,6 +320,7 @@ export type Routes = {
|
|
|
318
320
|
/** Endpoint ID in the Vostio access system. */
|
|
319
321
|
endpoint_id?: string | undefined;
|
|
320
322
|
} | undefined;
|
|
323
|
+
/** Indicates whether Seam manages the credential. */
|
|
321
324
|
is_managed: true;
|
|
322
325
|
} | {
|
|
323
326
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -328,6 +331,7 @@ export type Routes = {
|
|
|
328
331
|
user_identity_id?: string | undefined;
|
|
329
332
|
/** 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. */
|
|
330
333
|
connected_account_id: string;
|
|
334
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
331
335
|
acs_credential_pool_id?: string | undefined;
|
|
332
336
|
/** 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). */
|
|
333
337
|
acs_system_id: string;
|
|
@@ -525,6 +529,7 @@ export type Routes = {
|
|
|
525
529
|
user_identity_id?: string | undefined;
|
|
526
530
|
/** 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. */
|
|
527
531
|
connected_account_id: string;
|
|
532
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
528
533
|
acs_credential_pool_id?: string | undefined;
|
|
529
534
|
/** 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). */
|
|
530
535
|
acs_system_id: string;
|
|
@@ -645,6 +650,7 @@ export type Routes = {
|
|
|
645
650
|
/** Endpoint ID in the Vostio access system. */
|
|
646
651
|
endpoint_id?: string | undefined;
|
|
647
652
|
} | undefined;
|
|
653
|
+
/** Indicates whether Seam manages the credential. */
|
|
648
654
|
is_managed: true;
|
|
649
655
|
} | {
|
|
650
656
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -655,6 +661,7 @@ export type Routes = {
|
|
|
655
661
|
user_identity_id?: string | undefined;
|
|
656
662
|
/** 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. */
|
|
657
663
|
connected_account_id: string;
|
|
664
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
658
665
|
acs_credential_pool_id?: string | undefined;
|
|
659
666
|
/** 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). */
|
|
660
667
|
acs_system_id: string;
|
|
@@ -864,6 +871,7 @@ export type Routes = {
|
|
|
864
871
|
user_identity_id?: string | undefined;
|
|
865
872
|
/** 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. */
|
|
866
873
|
connected_account_id: string;
|
|
874
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
867
875
|
acs_credential_pool_id?: string | undefined;
|
|
868
876
|
/** 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). */
|
|
869
877
|
acs_system_id: string;
|
|
@@ -984,6 +992,7 @@ export type Routes = {
|
|
|
984
992
|
/** Endpoint ID in the Vostio access system. */
|
|
985
993
|
endpoint_id?: string | undefined;
|
|
986
994
|
} | undefined;
|
|
995
|
+
/** Indicates whether Seam manages the credential. */
|
|
987
996
|
is_managed: true;
|
|
988
997
|
};
|
|
989
998
|
} | {
|
|
@@ -2908,6 +2917,7 @@ export type Routes = {
|
|
|
2908
2917
|
acs_credential_on_encoder: {
|
|
2909
2918
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
2910
2919
|
created_at: string | null;
|
|
2920
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
2911
2921
|
is_issued: boolean | null;
|
|
2912
2922
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
2913
2923
|
starts_at: string | null;
|
|
@@ -2953,6 +2963,7 @@ export type Routes = {
|
|
|
2953
2963
|
user_identity_id?: string | undefined;
|
|
2954
2964
|
/** 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. */
|
|
2955
2965
|
connected_account_id: string;
|
|
2966
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
2956
2967
|
acs_credential_pool_id?: string | undefined;
|
|
2957
2968
|
/** 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). */
|
|
2958
2969
|
acs_system_id: string;
|
|
@@ -3073,6 +3084,7 @@ export type Routes = {
|
|
|
3073
3084
|
/** Endpoint ID in the Vostio access system. */
|
|
3074
3085
|
endpoint_id?: string | undefined;
|
|
3075
3086
|
} | undefined;
|
|
3087
|
+
/** Indicates whether Seam manages the credential. */
|
|
3076
3088
|
is_managed: true;
|
|
3077
3089
|
} | {
|
|
3078
3090
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -3083,6 +3095,7 @@ export type Routes = {
|
|
|
3083
3095
|
user_identity_id?: string | undefined;
|
|
3084
3096
|
/** 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. */
|
|
3085
3097
|
connected_account_id: string;
|
|
3098
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
3086
3099
|
acs_credential_pool_id?: string | undefined;
|
|
3087
3100
|
/** 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). */
|
|
3088
3101
|
acs_system_id: string;
|
|
@@ -3280,6 +3293,7 @@ export type Routes = {
|
|
|
3280
3293
|
user_identity_id?: string | undefined;
|
|
3281
3294
|
/** 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. */
|
|
3282
3295
|
connected_account_id: string;
|
|
3296
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
3283
3297
|
acs_credential_pool_id?: string | undefined;
|
|
3284
3298
|
/** 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). */
|
|
3285
3299
|
acs_system_id: string;
|
|
@@ -3400,6 +3414,7 @@ export type Routes = {
|
|
|
3400
3414
|
/** Endpoint ID in the Vostio access system. */
|
|
3401
3415
|
endpoint_id?: string | undefined;
|
|
3402
3416
|
} | undefined;
|
|
3417
|
+
/** Indicates whether Seam manages the credential. */
|
|
3403
3418
|
is_managed: true;
|
|
3404
3419
|
} | {
|
|
3405
3420
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -3410,6 +3425,7 @@ export type Routes = {
|
|
|
3410
3425
|
user_identity_id?: string | undefined;
|
|
3411
3426
|
/** 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. */
|
|
3412
3427
|
connected_account_id: string;
|
|
3428
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
3413
3429
|
acs_credential_pool_id?: string | undefined;
|
|
3414
3430
|
/** 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). */
|
|
3415
3431
|
acs_system_id: string;
|
|
@@ -3619,6 +3635,7 @@ export type Routes = {
|
|
|
3619
3635
|
user_identity_id?: string | undefined;
|
|
3620
3636
|
/** 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. */
|
|
3621
3637
|
connected_account_id: string;
|
|
3638
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
3622
3639
|
acs_credential_pool_id?: string | undefined;
|
|
3623
3640
|
/** 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). */
|
|
3624
3641
|
acs_system_id: string;
|
|
@@ -3739,6 +3756,7 @@ export type Routes = {
|
|
|
3739
3756
|
/** Endpoint ID in the Vostio access system. */
|
|
3740
3757
|
endpoint_id?: string | undefined;
|
|
3741
3758
|
} | undefined;
|
|
3759
|
+
/** Indicates whether Seam manages the credential. */
|
|
3742
3760
|
is_managed: true;
|
|
3743
3761
|
};
|
|
3744
3762
|
} | {
|
|
@@ -7304,6 +7322,7 @@ export type Routes = {
|
|
|
7304
7322
|
acs_credential_on_encoder: {
|
|
7305
7323
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
7306
7324
|
created_at: string | null;
|
|
7325
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
7307
7326
|
is_issued: boolean | null;
|
|
7308
7327
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
7309
7328
|
starts_at: string | null;
|
|
@@ -7349,6 +7368,7 @@ export type Routes = {
|
|
|
7349
7368
|
user_identity_id?: string | undefined;
|
|
7350
7369
|
/** 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. */
|
|
7351
7370
|
connected_account_id: string;
|
|
7371
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
7352
7372
|
acs_credential_pool_id?: string | undefined;
|
|
7353
7373
|
/** 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). */
|
|
7354
7374
|
acs_system_id: string;
|
|
@@ -7469,6 +7489,7 @@ export type Routes = {
|
|
|
7469
7489
|
/** Endpoint ID in the Vostio access system. */
|
|
7470
7490
|
endpoint_id?: string | undefined;
|
|
7471
7491
|
} | undefined;
|
|
7492
|
+
/** Indicates whether Seam manages the credential. */
|
|
7472
7493
|
is_managed: true;
|
|
7473
7494
|
} | {
|
|
7474
7495
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -7479,6 +7500,7 @@ export type Routes = {
|
|
|
7479
7500
|
user_identity_id?: string | undefined;
|
|
7480
7501
|
/** 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. */
|
|
7481
7502
|
connected_account_id: string;
|
|
7503
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
7482
7504
|
acs_credential_pool_id?: string | undefined;
|
|
7483
7505
|
/** 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). */
|
|
7484
7506
|
acs_system_id: string;
|
|
@@ -7676,6 +7698,7 @@ export type Routes = {
|
|
|
7676
7698
|
user_identity_id?: string | undefined;
|
|
7677
7699
|
/** 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. */
|
|
7678
7700
|
connected_account_id: string;
|
|
7701
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
7679
7702
|
acs_credential_pool_id?: string | undefined;
|
|
7680
7703
|
/** 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). */
|
|
7681
7704
|
acs_system_id: string;
|
|
@@ -7796,6 +7819,7 @@ export type Routes = {
|
|
|
7796
7819
|
/** Endpoint ID in the Vostio access system. */
|
|
7797
7820
|
endpoint_id?: string | undefined;
|
|
7798
7821
|
} | undefined;
|
|
7822
|
+
/** Indicates whether Seam manages the credential. */
|
|
7799
7823
|
is_managed: true;
|
|
7800
7824
|
} | {
|
|
7801
7825
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -7806,6 +7830,7 @@ export type Routes = {
|
|
|
7806
7830
|
user_identity_id?: string | undefined;
|
|
7807
7831
|
/** 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. */
|
|
7808
7832
|
connected_account_id: string;
|
|
7833
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
7809
7834
|
acs_credential_pool_id?: string | undefined;
|
|
7810
7835
|
/** 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). */
|
|
7811
7836
|
acs_system_id: string;
|
|
@@ -8015,6 +8040,7 @@ export type Routes = {
|
|
|
8015
8040
|
user_identity_id?: string | undefined;
|
|
8016
8041
|
/** 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. */
|
|
8017
8042
|
connected_account_id: string;
|
|
8043
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
8018
8044
|
acs_credential_pool_id?: string | undefined;
|
|
8019
8045
|
/** 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). */
|
|
8020
8046
|
acs_system_id: string;
|
|
@@ -8135,6 +8161,7 @@ export type Routes = {
|
|
|
8135
8161
|
/** Endpoint ID in the Vostio access system. */
|
|
8136
8162
|
endpoint_id?: string | undefined;
|
|
8137
8163
|
} | undefined;
|
|
8164
|
+
/** Indicates whether Seam manages the credential. */
|
|
8138
8165
|
is_managed: true;
|
|
8139
8166
|
};
|
|
8140
8167
|
} | {
|
|
@@ -9939,6 +9966,7 @@ export type Routes = {
|
|
|
9939
9966
|
acs_credential_on_encoder: {
|
|
9940
9967
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
9941
9968
|
created_at: string | null;
|
|
9969
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
9942
9970
|
is_issued: boolean | null;
|
|
9943
9971
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
9944
9972
|
starts_at: string | null;
|
|
@@ -9984,6 +10012,7 @@ export type Routes = {
|
|
|
9984
10012
|
user_identity_id?: string | undefined;
|
|
9985
10013
|
/** 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. */
|
|
9986
10014
|
connected_account_id: string;
|
|
10015
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
9987
10016
|
acs_credential_pool_id?: string | undefined;
|
|
9988
10017
|
/** 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). */
|
|
9989
10018
|
acs_system_id: string;
|
|
@@ -10104,6 +10133,7 @@ export type Routes = {
|
|
|
10104
10133
|
/** Endpoint ID in the Vostio access system. */
|
|
10105
10134
|
endpoint_id?: string | undefined;
|
|
10106
10135
|
} | undefined;
|
|
10136
|
+
/** Indicates whether Seam manages the credential. */
|
|
10107
10137
|
is_managed: true;
|
|
10108
10138
|
} | {
|
|
10109
10139
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -10114,6 +10144,7 @@ export type Routes = {
|
|
|
10114
10144
|
user_identity_id?: string | undefined;
|
|
10115
10145
|
/** 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. */
|
|
10116
10146
|
connected_account_id: string;
|
|
10147
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
10117
10148
|
acs_credential_pool_id?: string | undefined;
|
|
10118
10149
|
/** 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). */
|
|
10119
10150
|
acs_system_id: string;
|
|
@@ -10311,6 +10342,7 @@ export type Routes = {
|
|
|
10311
10342
|
user_identity_id?: string | undefined;
|
|
10312
10343
|
/** 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. */
|
|
10313
10344
|
connected_account_id: string;
|
|
10345
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
10314
10346
|
acs_credential_pool_id?: string | undefined;
|
|
10315
10347
|
/** 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). */
|
|
10316
10348
|
acs_system_id: string;
|
|
@@ -10431,6 +10463,7 @@ export type Routes = {
|
|
|
10431
10463
|
/** Endpoint ID in the Vostio access system. */
|
|
10432
10464
|
endpoint_id?: string | undefined;
|
|
10433
10465
|
} | undefined;
|
|
10466
|
+
/** Indicates whether Seam manages the credential. */
|
|
10434
10467
|
is_managed: true;
|
|
10435
10468
|
} | {
|
|
10436
10469
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -10441,6 +10474,7 @@ export type Routes = {
|
|
|
10441
10474
|
user_identity_id?: string | undefined;
|
|
10442
10475
|
/** 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. */
|
|
10443
10476
|
connected_account_id: string;
|
|
10477
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
10444
10478
|
acs_credential_pool_id?: string | undefined;
|
|
10445
10479
|
/** 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). */
|
|
10446
10480
|
acs_system_id: string;
|
|
@@ -10650,6 +10684,7 @@ export type Routes = {
|
|
|
10650
10684
|
user_identity_id?: string | undefined;
|
|
10651
10685
|
/** 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. */
|
|
10652
10686
|
connected_account_id: string;
|
|
10687
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
10653
10688
|
acs_credential_pool_id?: string | undefined;
|
|
10654
10689
|
/** 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). */
|
|
10655
10690
|
acs_system_id: string;
|
|
@@ -10770,6 +10805,7 @@ export type Routes = {
|
|
|
10770
10805
|
/** Endpoint ID in the Vostio access system. */
|
|
10771
10806
|
endpoint_id?: string | undefined;
|
|
10772
10807
|
} | undefined;
|
|
10808
|
+
/** Indicates whether Seam manages the credential. */
|
|
10773
10809
|
is_managed: true;
|
|
10774
10810
|
};
|
|
10775
10811
|
} | {
|
|
@@ -11534,6 +11570,7 @@ export type Routes = {
|
|
|
11534
11570
|
email_address?: (string | null) | undefined;
|
|
11535
11571
|
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
11536
11572
|
phone_number?: (string | null) | undefined;
|
|
11573
|
+
/** Full name of the user associated with the user identity. */
|
|
11537
11574
|
full_name?: (string | null) | undefined;
|
|
11538
11575
|
/** Unique key for the user identity. */
|
|
11539
11576
|
user_identity_key?: (string | null) | undefined;
|
|
@@ -13387,25 +13424,45 @@ export type Routes = {
|
|
|
13387
13424
|
/** Image URL for the manufacturer logo. */
|
|
13388
13425
|
image_url?: string | undefined;
|
|
13389
13426
|
} | undefined;
|
|
13427
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
13390
13428
|
can_remotely_unlock?: boolean | undefined;
|
|
13429
|
+
/** Indicates whether the device supports remote locking. */
|
|
13391
13430
|
can_remotely_lock?: boolean | undefined;
|
|
13431
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
13392
13432
|
can_program_offline_access_codes?: boolean | undefined;
|
|
13433
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
13393
13434
|
can_program_online_access_codes?: boolean | undefined;
|
|
13435
|
+
/** Indicates whether the thermostat supports heating. */
|
|
13394
13436
|
can_hvac_heat?: boolean | undefined;
|
|
13437
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
13395
13438
|
can_hvac_cool?: boolean | undefined;
|
|
13439
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
13396
13440
|
can_hvac_heat_cool?: boolean | undefined;
|
|
13441
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
13397
13442
|
can_turn_off_hvac?: boolean | undefined;
|
|
13443
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
13398
13444
|
can_simulate_removal?: boolean | undefined;
|
|
13445
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
13399
13446
|
can_simulate_connection?: boolean | undefined;
|
|
13447
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
13400
13448
|
can_simulate_disconnection?: boolean | undefined;
|
|
13449
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
13401
13450
|
can_unlock_with_code?: boolean | undefined;
|
|
13451
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
13402
13452
|
can_run_thermostat_programs?: boolean | undefined;
|
|
13453
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
13403
13454
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
13455
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
13404
13456
|
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
13457
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
13405
13458
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
13459
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
13406
13460
|
can_simulate_hub_connection?: boolean | undefined;
|
|
13461
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
13407
13462
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
13463
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
13408
13464
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
13465
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
13409
13466
|
can_configure_auto_lock?: boolean | undefined;
|
|
13410
13467
|
}[] | undefined;
|
|
13411
13468
|
acs_entrances?: {
|
|
@@ -13773,7 +13830,9 @@ export type Routes = {
|
|
|
13773
13830
|
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
13774
13831
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
13775
13832
|
acs_system_id: string;
|
|
13833
|
+
/** Number of users in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
13776
13834
|
acs_user_count?: number | undefined;
|
|
13835
|
+
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
13777
13836
|
acs_access_group_count?: number | undefined;
|
|
13778
13837
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
13779
13838
|
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
|
|
@@ -13781,6 +13840,7 @@ export type Routes = {
|
|
|
13781
13840
|
external_type_display_name?: string | undefined;
|
|
13782
13841
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
13783
13842
|
is_credential_manager: boolean;
|
|
13843
|
+
/** Visionline-specific metadata for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
13784
13844
|
visionline_metadata?: {
|
|
13785
13845
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
13786
13846
|
mobile_access_uuid: string;
|
|
@@ -13795,6 +13855,7 @@ export type Routes = {
|
|
|
13795
13855
|
/**
|
|
13796
13856
|
* @deprecated Use `external_type_display_name`.*/
|
|
13797
13857
|
system_type_display_name?: string | undefined;
|
|
13858
|
+
/** Location information for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
13798
13859
|
location: {
|
|
13799
13860
|
/** Time zone in which the [access control system](https://docs.seam.co/low-level-apis/access-systems) is located. */
|
|
13800
13861
|
time_zone: string | null;
|
|
@@ -13829,6 +13890,7 @@ export type Routes = {
|
|
|
13829
13890
|
message: string;
|
|
13830
13891
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13831
13892
|
error_code: 'bridge_disconnected';
|
|
13893
|
+
/** Indicates whether the error is related to the [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
13832
13894
|
is_bridge_error?: boolean | undefined;
|
|
13833
13895
|
} | {
|
|
13834
13896
|
/** Date and time at which Seam created the error. */
|
|
@@ -13909,7 +13971,9 @@ export type Routes = {
|
|
|
13909
13971
|
email_address: string | null;
|
|
13910
13972
|
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
13911
13973
|
phone_number: string | null;
|
|
13974
|
+
/** Display name for the user identity. */
|
|
13912
13975
|
display_name: string;
|
|
13976
|
+
/** Full name of the user associated with the user identity. */
|
|
13913
13977
|
full_name: string | null;
|
|
13914
13978
|
/** Date and time at which the user identity was created. */
|
|
13915
13979
|
created_at: string;
|
|
@@ -13964,6 +14028,7 @@ export type Routes = {
|
|
|
13964
14028
|
/**
|
|
13965
14029
|
* @deprecated Use `external_type_display_name`.*/
|
|
13966
14030
|
access_group_type_display_name: string;
|
|
14031
|
+
/** Display name for the access group. */
|
|
13967
14032
|
display_name: string;
|
|
13968
14033
|
/** Brand-specific terminology for the access group type. */
|
|
13969
14034
|
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
|
|
@@ -14109,6 +14174,7 @@ export type Routes = {
|
|
|
14109
14174
|
/** Whether the user is scheduled to be added to or removed from this access group. */
|
|
14110
14175
|
variant: 'adding' | 'removing';
|
|
14111
14176
|
})[];
|
|
14177
|
+
/** Indicates whether Seam manages the access group. */
|
|
14112
14178
|
is_managed: true;
|
|
14113
14179
|
}[] | undefined;
|
|
14114
14180
|
access_methods?: {
|
|
@@ -15205,6 +15271,7 @@ export type Routes = {
|
|
|
15205
15271
|
acs_credential_on_encoder: {
|
|
15206
15272
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
15207
15273
|
created_at: string | null;
|
|
15274
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
15208
15275
|
is_issued: boolean | null;
|
|
15209
15276
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
15210
15277
|
starts_at: string | null;
|
|
@@ -15250,6 +15317,7 @@ export type Routes = {
|
|
|
15250
15317
|
user_identity_id?: string | undefined;
|
|
15251
15318
|
/** 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. */
|
|
15252
15319
|
connected_account_id: string;
|
|
15320
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
15253
15321
|
acs_credential_pool_id?: string | undefined;
|
|
15254
15322
|
/** 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). */
|
|
15255
15323
|
acs_system_id: string;
|
|
@@ -15370,6 +15438,7 @@ export type Routes = {
|
|
|
15370
15438
|
/** Endpoint ID in the Vostio access system. */
|
|
15371
15439
|
endpoint_id?: string | undefined;
|
|
15372
15440
|
} | undefined;
|
|
15441
|
+
/** Indicates whether Seam manages the credential. */
|
|
15373
15442
|
is_managed: true;
|
|
15374
15443
|
} | {
|
|
15375
15444
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -15380,6 +15449,7 @@ export type Routes = {
|
|
|
15380
15449
|
user_identity_id?: string | undefined;
|
|
15381
15450
|
/** 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. */
|
|
15382
15451
|
connected_account_id: string;
|
|
15452
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
15383
15453
|
acs_credential_pool_id?: string | undefined;
|
|
15384
15454
|
/** 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). */
|
|
15385
15455
|
acs_system_id: string;
|
|
@@ -15577,6 +15647,7 @@ export type Routes = {
|
|
|
15577
15647
|
user_identity_id?: string | undefined;
|
|
15578
15648
|
/** 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. */
|
|
15579
15649
|
connected_account_id: string;
|
|
15650
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
15580
15651
|
acs_credential_pool_id?: string | undefined;
|
|
15581
15652
|
/** 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). */
|
|
15582
15653
|
acs_system_id: string;
|
|
@@ -15697,6 +15768,7 @@ export type Routes = {
|
|
|
15697
15768
|
/** Endpoint ID in the Vostio access system. */
|
|
15698
15769
|
endpoint_id?: string | undefined;
|
|
15699
15770
|
} | undefined;
|
|
15771
|
+
/** Indicates whether Seam manages the credential. */
|
|
15700
15772
|
is_managed: true;
|
|
15701
15773
|
} | {
|
|
15702
15774
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -15707,6 +15779,7 @@ export type Routes = {
|
|
|
15707
15779
|
user_identity_id?: string | undefined;
|
|
15708
15780
|
/** 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. */
|
|
15709
15781
|
connected_account_id: string;
|
|
15782
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
15710
15783
|
acs_credential_pool_id?: string | undefined;
|
|
15711
15784
|
/** 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). */
|
|
15712
15785
|
acs_system_id: string;
|
|
@@ -15916,6 +15989,7 @@ export type Routes = {
|
|
|
15916
15989
|
user_identity_id?: string | undefined;
|
|
15917
15990
|
/** 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. */
|
|
15918
15991
|
connected_account_id: string;
|
|
15992
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
15919
15993
|
acs_credential_pool_id?: string | undefined;
|
|
15920
15994
|
/** 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). */
|
|
15921
15995
|
acs_system_id: string;
|
|
@@ -16036,6 +16110,7 @@ export type Routes = {
|
|
|
16036
16110
|
/** Endpoint ID in the Vostio access system. */
|
|
16037
16111
|
endpoint_id?: string | undefined;
|
|
16038
16112
|
} | undefined;
|
|
16113
|
+
/** Indicates whether Seam manages the credential. */
|
|
16039
16114
|
is_managed: true;
|
|
16040
16115
|
};
|
|
16041
16116
|
} | {
|
|
@@ -16897,6 +16972,7 @@ export type Routes = {
|
|
|
16897
16972
|
acs_credential_on_encoder: {
|
|
16898
16973
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
16899
16974
|
created_at: string | null;
|
|
16975
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
16900
16976
|
is_issued: boolean | null;
|
|
16901
16977
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
16902
16978
|
starts_at: string | null;
|
|
@@ -16942,6 +17018,7 @@ export type Routes = {
|
|
|
16942
17018
|
user_identity_id?: string | undefined;
|
|
16943
17019
|
/** 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. */
|
|
16944
17020
|
connected_account_id: string;
|
|
17021
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
16945
17022
|
acs_credential_pool_id?: string | undefined;
|
|
16946
17023
|
/** 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). */
|
|
16947
17024
|
acs_system_id: string;
|
|
@@ -17062,6 +17139,7 @@ export type Routes = {
|
|
|
17062
17139
|
/** Endpoint ID in the Vostio access system. */
|
|
17063
17140
|
endpoint_id?: string | undefined;
|
|
17064
17141
|
} | undefined;
|
|
17142
|
+
/** Indicates whether Seam manages the credential. */
|
|
17065
17143
|
is_managed: true;
|
|
17066
17144
|
} | {
|
|
17067
17145
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -17072,6 +17150,7 @@ export type Routes = {
|
|
|
17072
17150
|
user_identity_id?: string | undefined;
|
|
17073
17151
|
/** 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. */
|
|
17074
17152
|
connected_account_id: string;
|
|
17153
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
17075
17154
|
acs_credential_pool_id?: string | undefined;
|
|
17076
17155
|
/** 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). */
|
|
17077
17156
|
acs_system_id: string;
|
|
@@ -17269,6 +17348,7 @@ export type Routes = {
|
|
|
17269
17348
|
user_identity_id?: string | undefined;
|
|
17270
17349
|
/** 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. */
|
|
17271
17350
|
connected_account_id: string;
|
|
17351
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
17272
17352
|
acs_credential_pool_id?: string | undefined;
|
|
17273
17353
|
/** 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). */
|
|
17274
17354
|
acs_system_id: string;
|
|
@@ -17389,6 +17469,7 @@ export type Routes = {
|
|
|
17389
17469
|
/** Endpoint ID in the Vostio access system. */
|
|
17390
17470
|
endpoint_id?: string | undefined;
|
|
17391
17471
|
} | undefined;
|
|
17472
|
+
/** Indicates whether Seam manages the credential. */
|
|
17392
17473
|
is_managed: true;
|
|
17393
17474
|
} | {
|
|
17394
17475
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -17399,6 +17480,7 @@ export type Routes = {
|
|
|
17399
17480
|
user_identity_id?: string | undefined;
|
|
17400
17481
|
/** 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. */
|
|
17401
17482
|
connected_account_id: string;
|
|
17483
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
17402
17484
|
acs_credential_pool_id?: string | undefined;
|
|
17403
17485
|
/** 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). */
|
|
17404
17486
|
acs_system_id: string;
|
|
@@ -17608,6 +17690,7 @@ export type Routes = {
|
|
|
17608
17690
|
user_identity_id?: string | undefined;
|
|
17609
17691
|
/** 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. */
|
|
17610
17692
|
connected_account_id: string;
|
|
17693
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
17611
17694
|
acs_credential_pool_id?: string | undefined;
|
|
17612
17695
|
/** 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). */
|
|
17613
17696
|
acs_system_id: string;
|
|
@@ -17728,6 +17811,7 @@ export type Routes = {
|
|
|
17728
17811
|
/** Endpoint ID in the Vostio access system. */
|
|
17729
17812
|
endpoint_id?: string | undefined;
|
|
17730
17813
|
} | undefined;
|
|
17814
|
+
/** Indicates whether Seam manages the credential. */
|
|
17731
17815
|
is_managed: true;
|
|
17732
17816
|
};
|
|
17733
17817
|
} | {
|
|
@@ -19988,25 +20072,45 @@ export type Routes = {
|
|
|
19988
20072
|
/** Image URL for the manufacturer logo. */
|
|
19989
20073
|
image_url?: string | undefined;
|
|
19990
20074
|
} | undefined;
|
|
20075
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
19991
20076
|
can_remotely_unlock?: boolean | undefined;
|
|
20077
|
+
/** Indicates whether the device supports remote locking. */
|
|
19992
20078
|
can_remotely_lock?: boolean | undefined;
|
|
20079
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
19993
20080
|
can_program_offline_access_codes?: boolean | undefined;
|
|
20081
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
19994
20082
|
can_program_online_access_codes?: boolean | undefined;
|
|
20083
|
+
/** Indicates whether the thermostat supports heating. */
|
|
19995
20084
|
can_hvac_heat?: boolean | undefined;
|
|
20085
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
19996
20086
|
can_hvac_cool?: boolean | undefined;
|
|
20087
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
19997
20088
|
can_hvac_heat_cool?: boolean | undefined;
|
|
20089
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
19998
20090
|
can_turn_off_hvac?: boolean | undefined;
|
|
20091
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
19999
20092
|
can_simulate_removal?: boolean | undefined;
|
|
20093
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
20000
20094
|
can_simulate_connection?: boolean | undefined;
|
|
20095
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
20001
20096
|
can_simulate_disconnection?: boolean | undefined;
|
|
20097
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
20002
20098
|
can_unlock_with_code?: boolean | undefined;
|
|
20099
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
20003
20100
|
can_run_thermostat_programs?: boolean | undefined;
|
|
20101
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
20004
20102
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
20103
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
20005
20104
|
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
20105
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
20006
20106
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
20107
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
20007
20108
|
can_simulate_hub_connection?: boolean | undefined;
|
|
20109
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
20008
20110
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
20111
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
20009
20112
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
20113
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
20010
20114
|
can_configure_auto_lock?: boolean | undefined;
|
|
20011
20115
|
}[] | undefined;
|
|
20012
20116
|
acs_entrances?: {
|
|
@@ -20545,6 +20649,7 @@ export type Routes = {
|
|
|
20545
20649
|
user_identity_id?: string | undefined;
|
|
20546
20650
|
/** 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. */
|
|
20547
20651
|
connected_account_id: string;
|
|
20652
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
20548
20653
|
acs_credential_pool_id?: string | undefined;
|
|
20549
20654
|
/** 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). */
|
|
20550
20655
|
acs_system_id: string;
|
|
@@ -20665,6 +20770,7 @@ export type Routes = {
|
|
|
20665
20770
|
/** Endpoint ID in the Vostio access system. */
|
|
20666
20771
|
endpoint_id?: string | undefined;
|
|
20667
20772
|
} | undefined;
|
|
20773
|
+
/** Indicates whether Seam manages the credential. */
|
|
20668
20774
|
is_managed: true;
|
|
20669
20775
|
}[] | undefined;
|
|
20670
20776
|
};
|
|
@@ -20927,6 +21033,7 @@ export type Routes = {
|
|
|
20927
21033
|
acs_credential_on_encoder: {
|
|
20928
21034
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
20929
21035
|
created_at: string | null;
|
|
21036
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
20930
21037
|
is_issued: boolean | null;
|
|
20931
21038
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
20932
21039
|
starts_at: string | null;
|
|
@@ -20972,6 +21079,7 @@ export type Routes = {
|
|
|
20972
21079
|
user_identity_id?: string | undefined;
|
|
20973
21080
|
/** 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. */
|
|
20974
21081
|
connected_account_id: string;
|
|
21082
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
20975
21083
|
acs_credential_pool_id?: string | undefined;
|
|
20976
21084
|
/** 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). */
|
|
20977
21085
|
acs_system_id: string;
|
|
@@ -21092,6 +21200,7 @@ export type Routes = {
|
|
|
21092
21200
|
/** Endpoint ID in the Vostio access system. */
|
|
21093
21201
|
endpoint_id?: string | undefined;
|
|
21094
21202
|
} | undefined;
|
|
21203
|
+
/** Indicates whether Seam manages the credential. */
|
|
21095
21204
|
is_managed: true;
|
|
21096
21205
|
} | {
|
|
21097
21206
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -21102,6 +21211,7 @@ export type Routes = {
|
|
|
21102
21211
|
user_identity_id?: string | undefined;
|
|
21103
21212
|
/** 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. */
|
|
21104
21213
|
connected_account_id: string;
|
|
21214
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
21105
21215
|
acs_credential_pool_id?: string | undefined;
|
|
21106
21216
|
/** 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). */
|
|
21107
21217
|
acs_system_id: string;
|
|
@@ -21299,6 +21409,7 @@ export type Routes = {
|
|
|
21299
21409
|
user_identity_id?: string | undefined;
|
|
21300
21410
|
/** 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. */
|
|
21301
21411
|
connected_account_id: string;
|
|
21412
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
21302
21413
|
acs_credential_pool_id?: string | undefined;
|
|
21303
21414
|
/** 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). */
|
|
21304
21415
|
acs_system_id: string;
|
|
@@ -21419,6 +21530,7 @@ export type Routes = {
|
|
|
21419
21530
|
/** Endpoint ID in the Vostio access system. */
|
|
21420
21531
|
endpoint_id?: string | undefined;
|
|
21421
21532
|
} | undefined;
|
|
21533
|
+
/** Indicates whether Seam manages the credential. */
|
|
21422
21534
|
is_managed: true;
|
|
21423
21535
|
} | {
|
|
21424
21536
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -21429,6 +21541,7 @@ export type Routes = {
|
|
|
21429
21541
|
user_identity_id?: string | undefined;
|
|
21430
21542
|
/** 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. */
|
|
21431
21543
|
connected_account_id: string;
|
|
21544
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
21432
21545
|
acs_credential_pool_id?: string | undefined;
|
|
21433
21546
|
/** 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). */
|
|
21434
21547
|
acs_system_id: string;
|
|
@@ -21638,6 +21751,7 @@ export type Routes = {
|
|
|
21638
21751
|
user_identity_id?: string | undefined;
|
|
21639
21752
|
/** 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. */
|
|
21640
21753
|
connected_account_id: string;
|
|
21754
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
21641
21755
|
acs_credential_pool_id?: string | undefined;
|
|
21642
21756
|
/** 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). */
|
|
21643
21757
|
acs_system_id: string;
|
|
@@ -21758,6 +21872,7 @@ export type Routes = {
|
|
|
21758
21872
|
/** Endpoint ID in the Vostio access system. */
|
|
21759
21873
|
endpoint_id?: string | undefined;
|
|
21760
21874
|
} | undefined;
|
|
21875
|
+
/** Indicates whether Seam manages the credential. */
|
|
21761
21876
|
is_managed: true;
|
|
21762
21877
|
};
|
|
21763
21878
|
} | {
|
|
@@ -22796,6 +22911,7 @@ export type Routes = {
|
|
|
22796
22911
|
/**
|
|
22797
22912
|
* @deprecated Use `external_type_display_name`.*/
|
|
22798
22913
|
access_group_type_display_name: string;
|
|
22914
|
+
/** Display name for the access group. */
|
|
22799
22915
|
display_name: string;
|
|
22800
22916
|
/** Brand-specific terminology for the access group type. */
|
|
22801
22917
|
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
|
|
@@ -22941,6 +23057,7 @@ export type Routes = {
|
|
|
22941
23057
|
/** Whether the user is scheduled to be added to or removed from this access group. */
|
|
22942
23058
|
variant: 'adding' | 'removing';
|
|
22943
23059
|
})[];
|
|
23060
|
+
/** Indicates whether Seam manages the access group. */
|
|
22944
23061
|
is_managed: true;
|
|
22945
23062
|
};
|
|
22946
23063
|
};
|
|
@@ -22980,6 +23097,7 @@ export type Routes = {
|
|
|
22980
23097
|
/**
|
|
22981
23098
|
* @deprecated Use `external_type_display_name`.*/
|
|
22982
23099
|
access_group_type_display_name: string;
|
|
23100
|
+
/** Display name for the access group. */
|
|
22983
23101
|
display_name: string;
|
|
22984
23102
|
/** Brand-specific terminology for the access group type. */
|
|
22985
23103
|
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
|
|
@@ -23125,6 +23243,7 @@ export type Routes = {
|
|
|
23125
23243
|
/** Whether the user is scheduled to be added to or removed from this access group. */
|
|
23126
23244
|
variant: 'adding' | 'removing';
|
|
23127
23245
|
})[];
|
|
23246
|
+
/** Indicates whether Seam manages the access group. */
|
|
23128
23247
|
is_managed: true;
|
|
23129
23248
|
}[];
|
|
23130
23249
|
};
|
|
@@ -23340,6 +23459,7 @@ export type Routes = {
|
|
|
23340
23459
|
acs_user_id: string;
|
|
23341
23460
|
/** 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). */
|
|
23342
23461
|
acs_system_id: string;
|
|
23462
|
+
/** ID of the HID access control system associated with the user. */
|
|
23343
23463
|
hid_acs_system_id?: string | undefined;
|
|
23344
23464
|
/** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
23345
23465
|
workspace_id: string;
|
|
@@ -23585,6 +23705,7 @@ export type Routes = {
|
|
|
23585
23705
|
email_address?: string | undefined;
|
|
23586
23706
|
/** 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`). */
|
|
23587
23707
|
phone_number?: string | undefined;
|
|
23708
|
+
/** Indicates whether Seam manages the access system user. */
|
|
23588
23709
|
is_managed: true;
|
|
23589
23710
|
}[];
|
|
23590
23711
|
};
|
|
@@ -23636,6 +23757,7 @@ export type Routes = {
|
|
|
23636
23757
|
/**
|
|
23637
23758
|
* @deprecated Use `external_type_display_name`.*/
|
|
23638
23759
|
access_group_type_display_name: string;
|
|
23760
|
+
/** Display name for the access group. */
|
|
23639
23761
|
display_name: string;
|
|
23640
23762
|
/** Brand-specific terminology for the access group type. */
|
|
23641
23763
|
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
|
|
@@ -23818,6 +23940,7 @@ export type Routes = {
|
|
|
23818
23940
|
/**
|
|
23819
23941
|
* @deprecated Use `external_type_display_name`.*/
|
|
23820
23942
|
access_group_type_display_name: string;
|
|
23943
|
+
/** Display name for the access group. */
|
|
23821
23944
|
display_name: string;
|
|
23822
23945
|
/** Brand-specific terminology for the access group type. */
|
|
23823
23946
|
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
|
|
@@ -24053,6 +24176,7 @@ export type Routes = {
|
|
|
24053
24176
|
user_identity_id?: string | undefined;
|
|
24054
24177
|
/** 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. */
|
|
24055
24178
|
connected_account_id: string;
|
|
24179
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
24056
24180
|
acs_credential_pool_id?: string | undefined;
|
|
24057
24181
|
/** 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). */
|
|
24058
24182
|
acs_system_id: string;
|
|
@@ -24173,6 +24297,7 @@ export type Routes = {
|
|
|
24173
24297
|
/** Endpoint ID in the Vostio access system. */
|
|
24174
24298
|
endpoint_id?: string | undefined;
|
|
24175
24299
|
} | undefined;
|
|
24300
|
+
/** Indicates whether Seam manages the credential. */
|
|
24176
24301
|
is_managed: true;
|
|
24177
24302
|
};
|
|
24178
24303
|
};
|
|
@@ -24256,6 +24381,7 @@ export type Routes = {
|
|
|
24256
24381
|
user_identity_id?: string | undefined;
|
|
24257
24382
|
/** 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. */
|
|
24258
24383
|
connected_account_id: string;
|
|
24384
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
24259
24385
|
acs_credential_pool_id?: string | undefined;
|
|
24260
24386
|
/** 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). */
|
|
24261
24387
|
acs_system_id: string;
|
|
@@ -24376,6 +24502,7 @@ export type Routes = {
|
|
|
24376
24502
|
/** Endpoint ID in the Vostio access system. */
|
|
24377
24503
|
endpoint_id?: string | undefined;
|
|
24378
24504
|
} | undefined;
|
|
24505
|
+
/** Indicates whether Seam manages the credential. */
|
|
24379
24506
|
is_managed: true;
|
|
24380
24507
|
};
|
|
24381
24508
|
};
|
|
@@ -24416,6 +24543,7 @@ export type Routes = {
|
|
|
24416
24543
|
user_identity_id?: string | undefined;
|
|
24417
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. */
|
|
24418
24545
|
connected_account_id: string;
|
|
24546
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
24419
24547
|
acs_credential_pool_id?: string | undefined;
|
|
24420
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). */
|
|
24421
24549
|
acs_system_id: string;
|
|
@@ -24536,6 +24664,7 @@ export type Routes = {
|
|
|
24536
24664
|
/** Endpoint ID in the Vostio access system. */
|
|
24537
24665
|
endpoint_id?: string | undefined;
|
|
24538
24666
|
} | undefined;
|
|
24667
|
+
/** Indicates whether Seam manages the credential. */
|
|
24539
24668
|
is_managed: true;
|
|
24540
24669
|
};
|
|
24541
24670
|
};
|
|
@@ -24581,6 +24710,7 @@ export type Routes = {
|
|
|
24581
24710
|
user_identity_id?: string | undefined;
|
|
24582
24711
|
/** 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. */
|
|
24583
24712
|
connected_account_id: string;
|
|
24713
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
24584
24714
|
acs_credential_pool_id?: string | undefined;
|
|
24585
24715
|
/** 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). */
|
|
24586
24716
|
acs_system_id: string;
|
|
@@ -24701,6 +24831,7 @@ export type Routes = {
|
|
|
24701
24831
|
/** Endpoint ID in the Vostio access system. */
|
|
24702
24832
|
endpoint_id?: string | undefined;
|
|
24703
24833
|
} | undefined;
|
|
24834
|
+
/** Indicates whether Seam manages the credential. */
|
|
24704
24835
|
is_managed: true;
|
|
24705
24836
|
};
|
|
24706
24837
|
};
|
|
@@ -24748,6 +24879,7 @@ export type Routes = {
|
|
|
24748
24879
|
user_identity_id?: string | undefined;
|
|
24749
24880
|
/** 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. */
|
|
24750
24881
|
connected_account_id: string;
|
|
24882
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
24751
24883
|
acs_credential_pool_id?: string | undefined;
|
|
24752
24884
|
/** 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). */
|
|
24753
24885
|
acs_system_id: string;
|
|
@@ -24868,6 +25000,7 @@ export type Routes = {
|
|
|
24868
25000
|
/** Endpoint ID in the Vostio access system. */
|
|
24869
25001
|
endpoint_id?: string | undefined;
|
|
24870
25002
|
} | undefined;
|
|
25003
|
+
/** Indicates whether Seam manages the credential. */
|
|
24871
25004
|
is_managed: true;
|
|
24872
25005
|
}[];
|
|
24873
25006
|
/** Information about the current page of results. */
|
|
@@ -25107,6 +25240,7 @@ export type Routes = {
|
|
|
25107
25240
|
user_identity_id?: string | undefined;
|
|
25108
25241
|
/** 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. */
|
|
25109
25242
|
connected_account_id: string;
|
|
25243
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
25110
25244
|
acs_credential_pool_id?: string | undefined;
|
|
25111
25245
|
/** 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). */
|
|
25112
25246
|
acs_system_id: string;
|
|
@@ -25227,6 +25361,7 @@ export type Routes = {
|
|
|
25227
25361
|
/** Endpoint ID in the Vostio access system. */
|
|
25228
25362
|
endpoint_id?: string | undefined;
|
|
25229
25363
|
} | undefined;
|
|
25364
|
+
/** Indicates whether Seam manages the credential. */
|
|
25230
25365
|
is_managed: true;
|
|
25231
25366
|
};
|
|
25232
25367
|
};
|
|
@@ -25253,6 +25388,7 @@ export type Routes = {
|
|
|
25253
25388
|
user_identity_id?: string | undefined;
|
|
25254
25389
|
/** 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. */
|
|
25255
25390
|
connected_account_id: string;
|
|
25391
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
25256
25392
|
acs_credential_pool_id?: string | undefined;
|
|
25257
25393
|
/** 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). */
|
|
25258
25394
|
acs_system_id: string;
|
|
@@ -25412,6 +25548,7 @@ export type Routes = {
|
|
|
25412
25548
|
user_identity_id?: string | undefined;
|
|
25413
25549
|
/** 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. */
|
|
25414
25550
|
connected_account_id: string;
|
|
25551
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
25415
25552
|
acs_credential_pool_id?: string | undefined;
|
|
25416
25553
|
/** 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). */
|
|
25417
25554
|
acs_system_id: string;
|
|
@@ -25568,6 +25705,7 @@ export type Routes = {
|
|
|
25568
25705
|
user_identity_id?: string | undefined;
|
|
25569
25706
|
/** 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. */
|
|
25570
25707
|
connected_account_id: string;
|
|
25708
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
25571
25709
|
acs_credential_pool_id?: string | undefined;
|
|
25572
25710
|
/** 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). */
|
|
25573
25711
|
acs_system_id: string;
|
|
@@ -25688,6 +25826,7 @@ export type Routes = {
|
|
|
25688
25826
|
/** Endpoint ID in the Vostio access system. */
|
|
25689
25827
|
endpoint_id?: string | undefined;
|
|
25690
25828
|
} | undefined;
|
|
25829
|
+
/** Indicates whether Seam manages the credential. */
|
|
25691
25830
|
is_managed: true;
|
|
25692
25831
|
};
|
|
25693
25832
|
};
|
|
@@ -25813,6 +25952,7 @@ export type Routes = {
|
|
|
25813
25952
|
acs_credential_on_encoder: {
|
|
25814
25953
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
25815
25954
|
created_at: string | null;
|
|
25955
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
25816
25956
|
is_issued: boolean | null;
|
|
25817
25957
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
25818
25958
|
starts_at: string | null;
|
|
@@ -25858,6 +25998,7 @@ export type Routes = {
|
|
|
25858
25998
|
user_identity_id?: string | undefined;
|
|
25859
25999
|
/** 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. */
|
|
25860
26000
|
connected_account_id: string;
|
|
26001
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
25861
26002
|
acs_credential_pool_id?: string | undefined;
|
|
25862
26003
|
/** 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). */
|
|
25863
26004
|
acs_system_id: string;
|
|
@@ -25978,6 +26119,7 @@ export type Routes = {
|
|
|
25978
26119
|
/** Endpoint ID in the Vostio access system. */
|
|
25979
26120
|
endpoint_id?: string | undefined;
|
|
25980
26121
|
} | undefined;
|
|
26122
|
+
/** Indicates whether Seam manages the credential. */
|
|
25981
26123
|
is_managed: true;
|
|
25982
26124
|
} | {
|
|
25983
26125
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -25988,6 +26130,7 @@ export type Routes = {
|
|
|
25988
26130
|
user_identity_id?: string | undefined;
|
|
25989
26131
|
/** 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. */
|
|
25990
26132
|
connected_account_id: string;
|
|
26133
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
25991
26134
|
acs_credential_pool_id?: string | undefined;
|
|
25992
26135
|
/** 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). */
|
|
25993
26136
|
acs_system_id: string;
|
|
@@ -26185,6 +26328,7 @@ export type Routes = {
|
|
|
26185
26328
|
user_identity_id?: string | undefined;
|
|
26186
26329
|
/** 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. */
|
|
26187
26330
|
connected_account_id: string;
|
|
26331
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
26188
26332
|
acs_credential_pool_id?: string | undefined;
|
|
26189
26333
|
/** 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). */
|
|
26190
26334
|
acs_system_id: string;
|
|
@@ -26305,6 +26449,7 @@ export type Routes = {
|
|
|
26305
26449
|
/** Endpoint ID in the Vostio access system. */
|
|
26306
26450
|
endpoint_id?: string | undefined;
|
|
26307
26451
|
} | undefined;
|
|
26452
|
+
/** Indicates whether Seam manages the credential. */
|
|
26308
26453
|
is_managed: true;
|
|
26309
26454
|
} | {
|
|
26310
26455
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -26315,6 +26460,7 @@ export type Routes = {
|
|
|
26315
26460
|
user_identity_id?: string | undefined;
|
|
26316
26461
|
/** 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. */
|
|
26317
26462
|
connected_account_id: string;
|
|
26463
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
26318
26464
|
acs_credential_pool_id?: string | undefined;
|
|
26319
26465
|
/** 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). */
|
|
26320
26466
|
acs_system_id: string;
|
|
@@ -26524,6 +26670,7 @@ export type Routes = {
|
|
|
26524
26670
|
user_identity_id?: string | undefined;
|
|
26525
26671
|
/** 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. */
|
|
26526
26672
|
connected_account_id: string;
|
|
26673
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
26527
26674
|
acs_credential_pool_id?: string | undefined;
|
|
26528
26675
|
/** 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). */
|
|
26529
26676
|
acs_system_id: string;
|
|
@@ -26644,6 +26791,7 @@ export type Routes = {
|
|
|
26644
26791
|
/** Endpoint ID in the Vostio access system. */
|
|
26645
26792
|
endpoint_id?: string | undefined;
|
|
26646
26793
|
} | undefined;
|
|
26794
|
+
/** Indicates whether Seam manages the credential. */
|
|
26647
26795
|
is_managed: true;
|
|
26648
26796
|
};
|
|
26649
26797
|
} | {
|
|
@@ -27597,6 +27745,7 @@ export type Routes = {
|
|
|
27597
27745
|
acs_credential_on_encoder: {
|
|
27598
27746
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
27599
27747
|
created_at: string | null;
|
|
27748
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
27600
27749
|
is_issued: boolean | null;
|
|
27601
27750
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
27602
27751
|
starts_at: string | null;
|
|
@@ -27642,6 +27791,7 @@ export type Routes = {
|
|
|
27642
27791
|
user_identity_id?: string | undefined;
|
|
27643
27792
|
/** 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. */
|
|
27644
27793
|
connected_account_id: string;
|
|
27794
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
27645
27795
|
acs_credential_pool_id?: string | undefined;
|
|
27646
27796
|
/** 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). */
|
|
27647
27797
|
acs_system_id: string;
|
|
@@ -27762,6 +27912,7 @@ export type Routes = {
|
|
|
27762
27912
|
/** Endpoint ID in the Vostio access system. */
|
|
27763
27913
|
endpoint_id?: string | undefined;
|
|
27764
27914
|
} | undefined;
|
|
27915
|
+
/** Indicates whether Seam manages the credential. */
|
|
27765
27916
|
is_managed: true;
|
|
27766
27917
|
} | {
|
|
27767
27918
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -27772,6 +27923,7 @@ export type Routes = {
|
|
|
27772
27923
|
user_identity_id?: string | undefined;
|
|
27773
27924
|
/** 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. */
|
|
27774
27925
|
connected_account_id: string;
|
|
27926
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
27775
27927
|
acs_credential_pool_id?: string | undefined;
|
|
27776
27928
|
/** 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). */
|
|
27777
27929
|
acs_system_id: string;
|
|
@@ -27969,6 +28121,7 @@ export type Routes = {
|
|
|
27969
28121
|
user_identity_id?: string | undefined;
|
|
27970
28122
|
/** 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. */
|
|
27971
28123
|
connected_account_id: string;
|
|
28124
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
27972
28125
|
acs_credential_pool_id?: string | undefined;
|
|
27973
28126
|
/** 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). */
|
|
27974
28127
|
acs_system_id: string;
|
|
@@ -28089,6 +28242,7 @@ export type Routes = {
|
|
|
28089
28242
|
/** Endpoint ID in the Vostio access system. */
|
|
28090
28243
|
endpoint_id?: string | undefined;
|
|
28091
28244
|
} | undefined;
|
|
28245
|
+
/** Indicates whether Seam manages the credential. */
|
|
28092
28246
|
is_managed: true;
|
|
28093
28247
|
} | {
|
|
28094
28248
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -28099,6 +28253,7 @@ export type Routes = {
|
|
|
28099
28253
|
user_identity_id?: string | undefined;
|
|
28100
28254
|
/** 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. */
|
|
28101
28255
|
connected_account_id: string;
|
|
28256
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
28102
28257
|
acs_credential_pool_id?: string | undefined;
|
|
28103
28258
|
/** 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). */
|
|
28104
28259
|
acs_system_id: string;
|
|
@@ -28308,6 +28463,7 @@ export type Routes = {
|
|
|
28308
28463
|
user_identity_id?: string | undefined;
|
|
28309
28464
|
/** 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. */
|
|
28310
28465
|
connected_account_id: string;
|
|
28466
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
28311
28467
|
acs_credential_pool_id?: string | undefined;
|
|
28312
28468
|
/** 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). */
|
|
28313
28469
|
acs_system_id: string;
|
|
@@ -28428,6 +28584,7 @@ export type Routes = {
|
|
|
28428
28584
|
/** Endpoint ID in the Vostio access system. */
|
|
28429
28585
|
endpoint_id?: string | undefined;
|
|
28430
28586
|
} | undefined;
|
|
28587
|
+
/** Indicates whether Seam manages the credential. */
|
|
28431
28588
|
is_managed: true;
|
|
28432
28589
|
};
|
|
28433
28590
|
} | {
|
|
@@ -29277,6 +29434,7 @@ export type Routes = {
|
|
|
29277
29434
|
acs_credential_on_encoder: {
|
|
29278
29435
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
29279
29436
|
created_at: string | null;
|
|
29437
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
29280
29438
|
is_issued: boolean | null;
|
|
29281
29439
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
29282
29440
|
starts_at: string | null;
|
|
@@ -29322,6 +29480,7 @@ export type Routes = {
|
|
|
29322
29480
|
user_identity_id?: string | undefined;
|
|
29323
29481
|
/** 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. */
|
|
29324
29482
|
connected_account_id: string;
|
|
29483
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
29325
29484
|
acs_credential_pool_id?: string | undefined;
|
|
29326
29485
|
/** 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). */
|
|
29327
29486
|
acs_system_id: string;
|
|
@@ -29442,6 +29601,7 @@ export type Routes = {
|
|
|
29442
29601
|
/** Endpoint ID in the Vostio access system. */
|
|
29443
29602
|
endpoint_id?: string | undefined;
|
|
29444
29603
|
} | undefined;
|
|
29604
|
+
/** Indicates whether Seam manages the credential. */
|
|
29445
29605
|
is_managed: true;
|
|
29446
29606
|
} | {
|
|
29447
29607
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -29452,6 +29612,7 @@ export type Routes = {
|
|
|
29452
29612
|
user_identity_id?: string | undefined;
|
|
29453
29613
|
/** 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. */
|
|
29454
29614
|
connected_account_id: string;
|
|
29615
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
29455
29616
|
acs_credential_pool_id?: string | undefined;
|
|
29456
29617
|
/** 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). */
|
|
29457
29618
|
acs_system_id: string;
|
|
@@ -29649,6 +29810,7 @@ export type Routes = {
|
|
|
29649
29810
|
user_identity_id?: string | undefined;
|
|
29650
29811
|
/** 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. */
|
|
29651
29812
|
connected_account_id: string;
|
|
29813
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
29652
29814
|
acs_credential_pool_id?: string | undefined;
|
|
29653
29815
|
/** 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). */
|
|
29654
29816
|
acs_system_id: string;
|
|
@@ -29769,6 +29931,7 @@ export type Routes = {
|
|
|
29769
29931
|
/** Endpoint ID in the Vostio access system. */
|
|
29770
29932
|
endpoint_id?: string | undefined;
|
|
29771
29933
|
} | undefined;
|
|
29934
|
+
/** Indicates whether Seam manages the credential. */
|
|
29772
29935
|
is_managed: true;
|
|
29773
29936
|
} | {
|
|
29774
29937
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -29779,6 +29942,7 @@ export type Routes = {
|
|
|
29779
29942
|
user_identity_id?: string | undefined;
|
|
29780
29943
|
/** 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. */
|
|
29781
29944
|
connected_account_id: string;
|
|
29945
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
29782
29946
|
acs_credential_pool_id?: string | undefined;
|
|
29783
29947
|
/** 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). */
|
|
29784
29948
|
acs_system_id: string;
|
|
@@ -29988,6 +30152,7 @@ export type Routes = {
|
|
|
29988
30152
|
user_identity_id?: string | undefined;
|
|
29989
30153
|
/** 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. */
|
|
29990
30154
|
connected_account_id: string;
|
|
30155
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
29991
30156
|
acs_credential_pool_id?: string | undefined;
|
|
29992
30157
|
/** 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). */
|
|
29993
30158
|
acs_system_id: string;
|
|
@@ -30108,6 +30273,7 @@ export type Routes = {
|
|
|
30108
30273
|
/** Endpoint ID in the Vostio access system. */
|
|
30109
30274
|
endpoint_id?: string | undefined;
|
|
30110
30275
|
} | undefined;
|
|
30276
|
+
/** Indicates whether Seam manages the credential. */
|
|
30111
30277
|
is_managed: true;
|
|
30112
30278
|
};
|
|
30113
30279
|
} | {
|
|
@@ -31373,6 +31539,7 @@ export type Routes = {
|
|
|
31373
31539
|
user_identity_id?: string | undefined;
|
|
31374
31540
|
/** 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. */
|
|
31375
31541
|
connected_account_id: string;
|
|
31542
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
31376
31543
|
acs_credential_pool_id?: string | undefined;
|
|
31377
31544
|
/** 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). */
|
|
31378
31545
|
acs_system_id: string;
|
|
@@ -31493,6 +31660,7 @@ export type Routes = {
|
|
|
31493
31660
|
/** Endpoint ID in the Vostio access system. */
|
|
31494
31661
|
endpoint_id?: string | undefined;
|
|
31495
31662
|
} | undefined;
|
|
31663
|
+
/** Indicates whether Seam manages the credential. */
|
|
31496
31664
|
is_managed: true;
|
|
31497
31665
|
}[];
|
|
31498
31666
|
};
|
|
@@ -31616,6 +31784,7 @@ export type Routes = {
|
|
|
31616
31784
|
acs_credential_on_encoder: {
|
|
31617
31785
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
31618
31786
|
created_at: string | null;
|
|
31787
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
31619
31788
|
is_issued: boolean | null;
|
|
31620
31789
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
31621
31790
|
starts_at: string | null;
|
|
@@ -31661,6 +31830,7 @@ export type Routes = {
|
|
|
31661
31830
|
user_identity_id?: string | undefined;
|
|
31662
31831
|
/** 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. */
|
|
31663
31832
|
connected_account_id: string;
|
|
31833
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
31664
31834
|
acs_credential_pool_id?: string | undefined;
|
|
31665
31835
|
/** 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). */
|
|
31666
31836
|
acs_system_id: string;
|
|
@@ -31781,6 +31951,7 @@ export type Routes = {
|
|
|
31781
31951
|
/** Endpoint ID in the Vostio access system. */
|
|
31782
31952
|
endpoint_id?: string | undefined;
|
|
31783
31953
|
} | undefined;
|
|
31954
|
+
/** Indicates whether Seam manages the credential. */
|
|
31784
31955
|
is_managed: true;
|
|
31785
31956
|
} | {
|
|
31786
31957
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -31791,6 +31962,7 @@ export type Routes = {
|
|
|
31791
31962
|
user_identity_id?: string | undefined;
|
|
31792
31963
|
/** 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. */
|
|
31793
31964
|
connected_account_id: string;
|
|
31965
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
31794
31966
|
acs_credential_pool_id?: string | undefined;
|
|
31795
31967
|
/** 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). */
|
|
31796
31968
|
acs_system_id: string;
|
|
@@ -31988,6 +32160,7 @@ export type Routes = {
|
|
|
31988
32160
|
user_identity_id?: string | undefined;
|
|
31989
32161
|
/** 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. */
|
|
31990
32162
|
connected_account_id: string;
|
|
32163
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
31991
32164
|
acs_credential_pool_id?: string | undefined;
|
|
31992
32165
|
/** 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). */
|
|
31993
32166
|
acs_system_id: string;
|
|
@@ -32108,6 +32281,7 @@ export type Routes = {
|
|
|
32108
32281
|
/** Endpoint ID in the Vostio access system. */
|
|
32109
32282
|
endpoint_id?: string | undefined;
|
|
32110
32283
|
} | undefined;
|
|
32284
|
+
/** Indicates whether Seam manages the credential. */
|
|
32111
32285
|
is_managed: true;
|
|
32112
32286
|
} | {
|
|
32113
32287
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -32118,6 +32292,7 @@ export type Routes = {
|
|
|
32118
32292
|
user_identity_id?: string | undefined;
|
|
32119
32293
|
/** 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. */
|
|
32120
32294
|
connected_account_id: string;
|
|
32295
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
32121
32296
|
acs_credential_pool_id?: string | undefined;
|
|
32122
32297
|
/** 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). */
|
|
32123
32298
|
acs_system_id: string;
|
|
@@ -32327,6 +32502,7 @@ export type Routes = {
|
|
|
32327
32502
|
user_identity_id?: string | undefined;
|
|
32328
32503
|
/** 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. */
|
|
32329
32504
|
connected_account_id: string;
|
|
32505
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
32330
32506
|
acs_credential_pool_id?: string | undefined;
|
|
32331
32507
|
/** 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). */
|
|
32332
32508
|
acs_system_id: string;
|
|
@@ -32447,6 +32623,7 @@ export type Routes = {
|
|
|
32447
32623
|
/** Endpoint ID in the Vostio access system. */
|
|
32448
32624
|
endpoint_id?: string | undefined;
|
|
32449
32625
|
} | undefined;
|
|
32626
|
+
/** Indicates whether Seam manages the credential. */
|
|
32450
32627
|
is_managed: true;
|
|
32451
32628
|
};
|
|
32452
32629
|
} | {
|
|
@@ -33192,7 +33369,9 @@ export type Routes = {
|
|
|
33192
33369
|
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
33193
33370
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
33194
33371
|
acs_system_id: string;
|
|
33372
|
+
/** Number of users in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
33195
33373
|
acs_user_count?: number | undefined;
|
|
33374
|
+
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
33196
33375
|
acs_access_group_count?: number | undefined;
|
|
33197
33376
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
33198
33377
|
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
|
|
@@ -33200,6 +33379,7 @@ export type Routes = {
|
|
|
33200
33379
|
external_type_display_name?: string | undefined;
|
|
33201
33380
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
33202
33381
|
is_credential_manager: boolean;
|
|
33382
|
+
/** Visionline-specific metadata for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
33203
33383
|
visionline_metadata?: {
|
|
33204
33384
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
33205
33385
|
mobile_access_uuid: string;
|
|
@@ -33214,6 +33394,7 @@ export type Routes = {
|
|
|
33214
33394
|
/**
|
|
33215
33395
|
* @deprecated Use `external_type_display_name`.*/
|
|
33216
33396
|
system_type_display_name?: string | undefined;
|
|
33397
|
+
/** Location information for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
33217
33398
|
location: {
|
|
33218
33399
|
/** Time zone in which the [access control system](https://docs.seam.co/low-level-apis/access-systems) is located. */
|
|
33219
33400
|
time_zone: string | null;
|
|
@@ -33248,6 +33429,7 @@ export type Routes = {
|
|
|
33248
33429
|
message: string;
|
|
33249
33430
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
33250
33431
|
error_code: 'bridge_disconnected';
|
|
33432
|
+
/** Indicates whether the error is related to the [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
33251
33433
|
is_bridge_error?: boolean | undefined;
|
|
33252
33434
|
} | {
|
|
33253
33435
|
/** Date and time at which Seam created the error. */
|
|
@@ -33342,7 +33524,9 @@ export type Routes = {
|
|
|
33342
33524
|
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
33343
33525
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
33344
33526
|
acs_system_id: string;
|
|
33527
|
+
/** Number of users in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
33345
33528
|
acs_user_count?: number | undefined;
|
|
33529
|
+
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
33346
33530
|
acs_access_group_count?: number | undefined;
|
|
33347
33531
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
33348
33532
|
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
|
|
@@ -33350,6 +33534,7 @@ export type Routes = {
|
|
|
33350
33534
|
external_type_display_name?: string | undefined;
|
|
33351
33535
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
33352
33536
|
is_credential_manager: boolean;
|
|
33537
|
+
/** Visionline-specific metadata for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
33353
33538
|
visionline_metadata?: {
|
|
33354
33539
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
33355
33540
|
mobile_access_uuid: string;
|
|
@@ -33364,6 +33549,7 @@ export type Routes = {
|
|
|
33364
33549
|
/**
|
|
33365
33550
|
* @deprecated Use `external_type_display_name`.*/
|
|
33366
33551
|
system_type_display_name?: string | undefined;
|
|
33552
|
+
/** Location information for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
33367
33553
|
location: {
|
|
33368
33554
|
/** Time zone in which the [access control system](https://docs.seam.co/low-level-apis/access-systems) is located. */
|
|
33369
33555
|
time_zone: string | null;
|
|
@@ -33398,6 +33584,7 @@ export type Routes = {
|
|
|
33398
33584
|
message: string;
|
|
33399
33585
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
33400
33586
|
error_code: 'bridge_disconnected';
|
|
33587
|
+
/** Indicates whether the error is related to the [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
33401
33588
|
is_bridge_error?: boolean | undefined;
|
|
33402
33589
|
} | {
|
|
33403
33590
|
/** Date and time at which Seam created the error. */
|
|
@@ -33488,7 +33675,9 @@ export type Routes = {
|
|
|
33488
33675
|
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
33489
33676
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
33490
33677
|
acs_system_id: string;
|
|
33678
|
+
/** Number of users in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
33491
33679
|
acs_user_count?: number | undefined;
|
|
33680
|
+
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
33492
33681
|
acs_access_group_count?: number | undefined;
|
|
33493
33682
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
33494
33683
|
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
|
|
@@ -33496,6 +33685,7 @@ export type Routes = {
|
|
|
33496
33685
|
external_type_display_name?: string | undefined;
|
|
33497
33686
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
33498
33687
|
is_credential_manager: boolean;
|
|
33688
|
+
/** Visionline-specific metadata for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
33499
33689
|
visionline_metadata?: {
|
|
33500
33690
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
33501
33691
|
mobile_access_uuid: string;
|
|
@@ -33510,6 +33700,7 @@ export type Routes = {
|
|
|
33510
33700
|
/**
|
|
33511
33701
|
* @deprecated Use `external_type_display_name`.*/
|
|
33512
33702
|
system_type_display_name?: string | undefined;
|
|
33703
|
+
/** Location information for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
33513
33704
|
location: {
|
|
33514
33705
|
/** Time zone in which the [access control system](https://docs.seam.co/low-level-apis/access-systems) is located. */
|
|
33515
33706
|
time_zone: string | null;
|
|
@@ -33544,6 +33735,7 @@ export type Routes = {
|
|
|
33544
33735
|
message: string;
|
|
33545
33736
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
33546
33737
|
error_code: 'bridge_disconnected';
|
|
33738
|
+
/** Indicates whether the error is related to the [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
33547
33739
|
is_bridge_error?: boolean | undefined;
|
|
33548
33740
|
} | {
|
|
33549
33741
|
/** Date and time at which Seam created the error. */
|
|
@@ -33710,6 +33902,7 @@ export type Routes = {
|
|
|
33710
33902
|
acs_user_id: string;
|
|
33711
33903
|
/** 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). */
|
|
33712
33904
|
acs_system_id: string;
|
|
33905
|
+
/** ID of the HID access control system associated with the user. */
|
|
33713
33906
|
hid_acs_system_id?: string | undefined;
|
|
33714
33907
|
/** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
33715
33908
|
workspace_id: string;
|
|
@@ -33955,6 +34148,7 @@ export type Routes = {
|
|
|
33955
34148
|
email_address?: string | undefined;
|
|
33956
34149
|
/** 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`). */
|
|
33957
34150
|
phone_number?: string | undefined;
|
|
34151
|
+
/** Indicates whether Seam manages the access system user. */
|
|
33958
34152
|
is_managed: true;
|
|
33959
34153
|
};
|
|
33960
34154
|
};
|
|
@@ -34002,6 +34196,7 @@ export type Routes = {
|
|
|
34002
34196
|
acs_user_id: string;
|
|
34003
34197
|
/** 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). */
|
|
34004
34198
|
acs_system_id: string;
|
|
34199
|
+
/** ID of the HID access control system associated with the user. */
|
|
34005
34200
|
hid_acs_system_id?: string | undefined;
|
|
34006
34201
|
/** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
34007
34202
|
workspace_id: string;
|
|
@@ -34247,6 +34442,7 @@ export type Routes = {
|
|
|
34247
34442
|
email_address?: string | undefined;
|
|
34248
34443
|
/** 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`). */
|
|
34249
34444
|
phone_number?: string | undefined;
|
|
34445
|
+
/** Indicates whether Seam manages the access system user. */
|
|
34250
34446
|
is_managed: true;
|
|
34251
34447
|
};
|
|
34252
34448
|
};
|
|
@@ -34282,6 +34478,7 @@ export type Routes = {
|
|
|
34282
34478
|
acs_user_id: string;
|
|
34283
34479
|
/** 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). */
|
|
34284
34480
|
acs_system_id: string;
|
|
34481
|
+
/** ID of the HID access control system associated with the user. */
|
|
34285
34482
|
hid_acs_system_id?: string | undefined;
|
|
34286
34483
|
/** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
34287
34484
|
workspace_id: string;
|
|
@@ -34527,6 +34724,7 @@ export type Routes = {
|
|
|
34527
34724
|
email_address?: string | undefined;
|
|
34528
34725
|
/** 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`). */
|
|
34529
34726
|
phone_number?: string | undefined;
|
|
34727
|
+
/** Indicates whether Seam manages the access system user. */
|
|
34530
34728
|
is_managed: true;
|
|
34531
34729
|
}[];
|
|
34532
34730
|
/** Information about the current page of results. */
|
|
@@ -34807,6 +35005,7 @@ export type Routes = {
|
|
|
34807
35005
|
acs_user_id: string;
|
|
34808
35006
|
/** 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). */
|
|
34809
35007
|
acs_system_id: string;
|
|
35008
|
+
/** ID of the HID access control system associated with the user. */
|
|
34810
35009
|
hid_acs_system_id?: string | undefined;
|
|
34811
35010
|
/** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
34812
35011
|
workspace_id: string;
|
|
@@ -35083,6 +35282,7 @@ export type Routes = {
|
|
|
35083
35282
|
acs_user_id: string;
|
|
35084
35283
|
/** 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). */
|
|
35085
35284
|
acs_system_id: string;
|
|
35285
|
+
/** ID of the HID access control system associated with the user. */
|
|
35086
35286
|
hid_acs_system_id?: string | undefined;
|
|
35087
35287
|
/** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
35088
35288
|
workspace_id: string;
|
|
@@ -35377,6 +35577,7 @@ export type Routes = {
|
|
|
35377
35577
|
phone_number?: string | undefined;
|
|
35378
35578
|
/** Email address of the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
35379
35579
|
email_address?: string | undefined;
|
|
35580
|
+
/** ID of the HID access control system associated with the user. */
|
|
35380
35581
|
hid_acs_system_id?: string | undefined;
|
|
35381
35582
|
};
|
|
35382
35583
|
commonParams: {};
|
|
@@ -35500,6 +35701,7 @@ export type Routes = {
|
|
|
35500
35701
|
acs_credential_on_encoder: {
|
|
35501
35702
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
35502
35703
|
created_at: string | null;
|
|
35704
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
35503
35705
|
is_issued: boolean | null;
|
|
35504
35706
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
35505
35707
|
starts_at: string | null;
|
|
@@ -35545,6 +35747,7 @@ export type Routes = {
|
|
|
35545
35747
|
user_identity_id?: string | undefined;
|
|
35546
35748
|
/** 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. */
|
|
35547
35749
|
connected_account_id: string;
|
|
35750
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
35548
35751
|
acs_credential_pool_id?: string | undefined;
|
|
35549
35752
|
/** 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). */
|
|
35550
35753
|
acs_system_id: string;
|
|
@@ -35665,6 +35868,7 @@ export type Routes = {
|
|
|
35665
35868
|
/** Endpoint ID in the Vostio access system. */
|
|
35666
35869
|
endpoint_id?: string | undefined;
|
|
35667
35870
|
} | undefined;
|
|
35871
|
+
/** Indicates whether Seam manages the credential. */
|
|
35668
35872
|
is_managed: true;
|
|
35669
35873
|
} | {
|
|
35670
35874
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -35675,6 +35879,7 @@ export type Routes = {
|
|
|
35675
35879
|
user_identity_id?: string | undefined;
|
|
35676
35880
|
/** 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. */
|
|
35677
35881
|
connected_account_id: string;
|
|
35882
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
35678
35883
|
acs_credential_pool_id?: string | undefined;
|
|
35679
35884
|
/** 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). */
|
|
35680
35885
|
acs_system_id: string;
|
|
@@ -35872,6 +36077,7 @@ export type Routes = {
|
|
|
35872
36077
|
user_identity_id?: string | undefined;
|
|
35873
36078
|
/** 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. */
|
|
35874
36079
|
connected_account_id: string;
|
|
36080
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
35875
36081
|
acs_credential_pool_id?: string | undefined;
|
|
35876
36082
|
/** 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). */
|
|
35877
36083
|
acs_system_id: string;
|
|
@@ -35992,6 +36198,7 @@ export type Routes = {
|
|
|
35992
36198
|
/** Endpoint ID in the Vostio access system. */
|
|
35993
36199
|
endpoint_id?: string | undefined;
|
|
35994
36200
|
} | undefined;
|
|
36201
|
+
/** Indicates whether Seam manages the credential. */
|
|
35995
36202
|
is_managed: true;
|
|
35996
36203
|
} | {
|
|
35997
36204
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -36002,6 +36209,7 @@ export type Routes = {
|
|
|
36002
36209
|
user_identity_id?: string | undefined;
|
|
36003
36210
|
/** 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. */
|
|
36004
36211
|
connected_account_id: string;
|
|
36212
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
36005
36213
|
acs_credential_pool_id?: string | undefined;
|
|
36006
36214
|
/** 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). */
|
|
36007
36215
|
acs_system_id: string;
|
|
@@ -36211,6 +36419,7 @@ export type Routes = {
|
|
|
36211
36419
|
user_identity_id?: string | undefined;
|
|
36212
36420
|
/** 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. */
|
|
36213
36421
|
connected_account_id: string;
|
|
36422
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
36214
36423
|
acs_credential_pool_id?: string | undefined;
|
|
36215
36424
|
/** 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). */
|
|
36216
36425
|
acs_system_id: string;
|
|
@@ -36331,6 +36540,7 @@ export type Routes = {
|
|
|
36331
36540
|
/** Endpoint ID in the Vostio access system. */
|
|
36332
36541
|
endpoint_id?: string | undefined;
|
|
36333
36542
|
} | undefined;
|
|
36543
|
+
/** Indicates whether Seam manages the credential. */
|
|
36334
36544
|
is_managed: true;
|
|
36335
36545
|
};
|
|
36336
36546
|
} | {
|
|
@@ -37172,6 +37382,7 @@ export type Routes = {
|
|
|
37172
37382
|
acs_credential_on_encoder: {
|
|
37173
37383
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
37174
37384
|
created_at: string | null;
|
|
37385
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
37175
37386
|
is_issued: boolean | null;
|
|
37176
37387
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
37177
37388
|
starts_at: string | null;
|
|
@@ -37217,6 +37428,7 @@ export type Routes = {
|
|
|
37217
37428
|
user_identity_id?: string | undefined;
|
|
37218
37429
|
/** 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. */
|
|
37219
37430
|
connected_account_id: string;
|
|
37431
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
37220
37432
|
acs_credential_pool_id?: string | undefined;
|
|
37221
37433
|
/** 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). */
|
|
37222
37434
|
acs_system_id: string;
|
|
@@ -37337,6 +37549,7 @@ export type Routes = {
|
|
|
37337
37549
|
/** Endpoint ID in the Vostio access system. */
|
|
37338
37550
|
endpoint_id?: string | undefined;
|
|
37339
37551
|
} | undefined;
|
|
37552
|
+
/** Indicates whether Seam manages the credential. */
|
|
37340
37553
|
is_managed: true;
|
|
37341
37554
|
} | {
|
|
37342
37555
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -37347,6 +37560,7 @@ export type Routes = {
|
|
|
37347
37560
|
user_identity_id?: string | undefined;
|
|
37348
37561
|
/** 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. */
|
|
37349
37562
|
connected_account_id: string;
|
|
37563
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
37350
37564
|
acs_credential_pool_id?: string | undefined;
|
|
37351
37565
|
/** 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). */
|
|
37352
37566
|
acs_system_id: string;
|
|
@@ -37544,6 +37758,7 @@ export type Routes = {
|
|
|
37544
37758
|
user_identity_id?: string | undefined;
|
|
37545
37759
|
/** 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. */
|
|
37546
37760
|
connected_account_id: string;
|
|
37761
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
37547
37762
|
acs_credential_pool_id?: string | undefined;
|
|
37548
37763
|
/** 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). */
|
|
37549
37764
|
acs_system_id: string;
|
|
@@ -37664,6 +37879,7 @@ export type Routes = {
|
|
|
37664
37879
|
/** Endpoint ID in the Vostio access system. */
|
|
37665
37880
|
endpoint_id?: string | undefined;
|
|
37666
37881
|
} | undefined;
|
|
37882
|
+
/** Indicates whether Seam manages the credential. */
|
|
37667
37883
|
is_managed: true;
|
|
37668
37884
|
} | {
|
|
37669
37885
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -37674,6 +37890,7 @@ export type Routes = {
|
|
|
37674
37890
|
user_identity_id?: string | undefined;
|
|
37675
37891
|
/** 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. */
|
|
37676
37892
|
connected_account_id: string;
|
|
37893
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
37677
37894
|
acs_credential_pool_id?: string | undefined;
|
|
37678
37895
|
/** 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). */
|
|
37679
37896
|
acs_system_id: string;
|
|
@@ -37883,6 +38100,7 @@ export type Routes = {
|
|
|
37883
38100
|
user_identity_id?: string | undefined;
|
|
37884
38101
|
/** 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. */
|
|
37885
38102
|
connected_account_id: string;
|
|
38103
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
37886
38104
|
acs_credential_pool_id?: string | undefined;
|
|
37887
38105
|
/** 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). */
|
|
37888
38106
|
acs_system_id: string;
|
|
@@ -38003,6 +38221,7 @@ export type Routes = {
|
|
|
38003
38221
|
/** Endpoint ID in the Vostio access system. */
|
|
38004
38222
|
endpoint_id?: string | undefined;
|
|
38005
38223
|
} | undefined;
|
|
38224
|
+
/** Indicates whether Seam manages the credential. */
|
|
38006
38225
|
is_managed: true;
|
|
38007
38226
|
};
|
|
38008
38227
|
} | {
|
|
@@ -39147,6 +39366,7 @@ export type Routes = {
|
|
|
39147
39366
|
connected_account_id: string | null;
|
|
39148
39367
|
/** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
|
|
39149
39368
|
url: string;
|
|
39369
|
+
/** Device selection mode of the Connect Webview. Supported values: `none`, `single`, `multiple`. */
|
|
39150
39370
|
device_selection_mode: 'none' | 'single' | 'multiple';
|
|
39151
39371
|
/** 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). */
|
|
39152
39372
|
accepted_providers: string[];
|
|
@@ -39232,6 +39452,7 @@ export type Routes = {
|
|
|
39232
39452
|
connected_account_id: string | null;
|
|
39233
39453
|
/** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
|
|
39234
39454
|
url: string;
|
|
39455
|
+
/** Device selection mode of the Connect Webview. Supported values: `none`, `single`, `multiple`. */
|
|
39235
39456
|
device_selection_mode: 'none' | 'single' | 'multiple';
|
|
39236
39457
|
/** 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). */
|
|
39237
39458
|
accepted_providers: string[];
|
|
@@ -39305,6 +39526,7 @@ export type Routes = {
|
|
|
39305
39526
|
connected_account_id: string | null;
|
|
39306
39527
|
/** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
|
|
39307
39528
|
url: string;
|
|
39529
|
+
/** Device selection mode of the Connect Webview. Supported values: `none`, `single`, `multiple`. */
|
|
39308
39530
|
device_selection_mode: 'none' | 'single' | 'multiple';
|
|
39309
39531
|
/** 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). */
|
|
39310
39532
|
accepted_providers: string[];
|
|
@@ -42270,25 +42492,45 @@ export type Routes = {
|
|
|
42270
42492
|
/** Image URL for the manufacturer logo. */
|
|
42271
42493
|
image_url?: string | undefined;
|
|
42272
42494
|
} | undefined;
|
|
42495
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
42273
42496
|
can_remotely_unlock?: boolean | undefined;
|
|
42497
|
+
/** Indicates whether the device supports remote locking. */
|
|
42274
42498
|
can_remotely_lock?: boolean | undefined;
|
|
42499
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
42275
42500
|
can_program_offline_access_codes?: boolean | undefined;
|
|
42501
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
42276
42502
|
can_program_online_access_codes?: boolean | undefined;
|
|
42503
|
+
/** Indicates whether the thermostat supports heating. */
|
|
42277
42504
|
can_hvac_heat?: boolean | undefined;
|
|
42505
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
42278
42506
|
can_hvac_cool?: boolean | undefined;
|
|
42507
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
42279
42508
|
can_hvac_heat_cool?: boolean | undefined;
|
|
42509
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
42280
42510
|
can_turn_off_hvac?: boolean | undefined;
|
|
42511
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
42281
42512
|
can_simulate_removal?: boolean | undefined;
|
|
42513
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
42282
42514
|
can_simulate_connection?: boolean | undefined;
|
|
42515
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
42283
42516
|
can_simulate_disconnection?: boolean | undefined;
|
|
42517
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
42284
42518
|
can_unlock_with_code?: boolean | undefined;
|
|
42519
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
42285
42520
|
can_run_thermostat_programs?: boolean | undefined;
|
|
42521
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
42286
42522
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
42523
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
42287
42524
|
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
42525
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
42288
42526
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
42527
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
42289
42528
|
can_simulate_hub_connection?: boolean | undefined;
|
|
42529
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
42290
42530
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
42531
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
42291
42532
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
42533
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
42292
42534
|
can_configure_auto_lock?: boolean | undefined;
|
|
42293
42535
|
};
|
|
42294
42536
|
};
|
|
@@ -43692,25 +43934,45 @@ export type Routes = {
|
|
|
43692
43934
|
/** Image URL for the manufacturer logo. */
|
|
43693
43935
|
image_url?: string | undefined;
|
|
43694
43936
|
} | undefined;
|
|
43937
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
43695
43938
|
can_remotely_unlock?: boolean | undefined;
|
|
43939
|
+
/** Indicates whether the device supports remote locking. */
|
|
43696
43940
|
can_remotely_lock?: boolean | undefined;
|
|
43941
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
43697
43942
|
can_program_offline_access_codes?: boolean | undefined;
|
|
43943
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
43698
43944
|
can_program_online_access_codes?: boolean | undefined;
|
|
43945
|
+
/** Indicates whether the thermostat supports heating. */
|
|
43699
43946
|
can_hvac_heat?: boolean | undefined;
|
|
43947
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
43700
43948
|
can_hvac_cool?: boolean | undefined;
|
|
43949
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
43701
43950
|
can_hvac_heat_cool?: boolean | undefined;
|
|
43951
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
43702
43952
|
can_turn_off_hvac?: boolean | undefined;
|
|
43953
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
43703
43954
|
can_simulate_removal?: boolean | undefined;
|
|
43955
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
43704
43956
|
can_simulate_connection?: boolean | undefined;
|
|
43957
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
43705
43958
|
can_simulate_disconnection?: boolean | undefined;
|
|
43959
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
43706
43960
|
can_unlock_with_code?: boolean | undefined;
|
|
43961
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
43707
43962
|
can_run_thermostat_programs?: boolean | undefined;
|
|
43963
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
43708
43964
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
43965
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
43709
43966
|
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
43967
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
43710
43968
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
43969
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
43711
43970
|
can_simulate_hub_connection?: boolean | undefined;
|
|
43971
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
43712
43972
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
43973
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
43713
43974
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
43975
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
43714
43976
|
can_configure_auto_lock?: boolean | undefined;
|
|
43715
43977
|
}[];
|
|
43716
43978
|
/** Information about the current page of results. */
|
|
@@ -43737,29 +43999,53 @@ export type Routes = {
|
|
|
43737
43999
|
formData: {};
|
|
43738
44000
|
jsonResponse: {
|
|
43739
44001
|
device_providers: {
|
|
44002
|
+
/** Name of the device provider. */
|
|
43740
44003
|
device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec';
|
|
44004
|
+
/** Display name for the device provider. */
|
|
43741
44005
|
display_name: string;
|
|
44006
|
+
/** Image URL for the device provider. */
|
|
43742
44007
|
image_url: string;
|
|
44008
|
+
/** List of provider categories to which the device provider belongs, such as `stable`, `consumer_smartlocks`, `thermostats`, and so on. */
|
|
43743
44009
|
provider_categories: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors')[];
|
|
44010
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
43744
44011
|
can_remotely_unlock?: boolean | undefined;
|
|
44012
|
+
/** Indicates whether the device supports remote locking. */
|
|
43745
44013
|
can_remotely_lock?: boolean | undefined;
|
|
44014
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
43746
44015
|
can_program_offline_access_codes?: boolean | undefined;
|
|
44016
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
43747
44017
|
can_program_online_access_codes?: boolean | undefined;
|
|
44018
|
+
/** Indicates whether the thermostat supports heating. */
|
|
43748
44019
|
can_hvac_heat?: boolean | undefined;
|
|
44020
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
43749
44021
|
can_hvac_cool?: boolean | undefined;
|
|
44022
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
43750
44023
|
can_hvac_heat_cool?: boolean | undefined;
|
|
44024
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
43751
44025
|
can_turn_off_hvac?: boolean | undefined;
|
|
44026
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
43752
44027
|
can_simulate_removal?: boolean | undefined;
|
|
44028
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
43753
44029
|
can_simulate_connection?: boolean | undefined;
|
|
44030
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
43754
44031
|
can_simulate_disconnection?: boolean | undefined;
|
|
44032
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
43755
44033
|
can_unlock_with_code?: boolean | undefined;
|
|
44034
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
43756
44035
|
can_run_thermostat_programs?: boolean | undefined;
|
|
44036
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
43757
44037
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
44038
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
43758
44039
|
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
44040
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
43759
44041
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
44042
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
43760
44043
|
can_simulate_hub_connection?: boolean | undefined;
|
|
44044
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
43761
44045
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
44046
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
43762
44047
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
44048
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
43763
44049
|
can_configure_auto_lock?: boolean | undefined;
|
|
43764
44050
|
}[];
|
|
43765
44051
|
};
|
|
@@ -44261,6 +44547,7 @@ export type Routes = {
|
|
|
44261
44547
|
custom_metadata: {
|
|
44262
44548
|
[x: string]: string | boolean;
|
|
44263
44549
|
};
|
|
44550
|
+
/** Indicates that Seam does not manage the device. */
|
|
44264
44551
|
is_managed: false;
|
|
44265
44552
|
/** properties of the device. */
|
|
44266
44553
|
properties: {
|
|
@@ -44332,25 +44619,45 @@ export type Routes = {
|
|
|
44332
44619
|
accessory_keypad_supported?: boolean | undefined;
|
|
44333
44620
|
};
|
|
44334
44621
|
};
|
|
44622
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
44335
44623
|
can_remotely_unlock?: boolean | undefined;
|
|
44624
|
+
/** Indicates whether the device supports remote locking. */
|
|
44336
44625
|
can_remotely_lock?: boolean | undefined;
|
|
44626
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
44337
44627
|
can_program_offline_access_codes?: boolean | undefined;
|
|
44628
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
44338
44629
|
can_program_online_access_codes?: boolean | undefined;
|
|
44630
|
+
/** Indicates whether the thermostat supports heating. */
|
|
44339
44631
|
can_hvac_heat?: boolean | undefined;
|
|
44632
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
44340
44633
|
can_hvac_cool?: boolean | undefined;
|
|
44634
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
44341
44635
|
can_hvac_heat_cool?: boolean | undefined;
|
|
44636
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
44342
44637
|
can_turn_off_hvac?: boolean | undefined;
|
|
44638
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
44343
44639
|
can_simulate_removal?: boolean | undefined;
|
|
44640
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
44344
44641
|
can_simulate_connection?: boolean | undefined;
|
|
44642
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
44345
44643
|
can_simulate_disconnection?: boolean | undefined;
|
|
44644
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
44346
44645
|
can_unlock_with_code?: boolean | undefined;
|
|
44646
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
44347
44647
|
can_run_thermostat_programs?: boolean | undefined;
|
|
44648
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
44348
44649
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
44650
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
44349
44651
|
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
44652
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
44350
44653
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
44654
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
44351
44655
|
can_simulate_hub_connection?: boolean | undefined;
|
|
44656
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
44352
44657
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
44658
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
44353
44659
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
44660
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
44354
44661
|
can_configure_auto_lock?: boolean | undefined;
|
|
44355
44662
|
};
|
|
44356
44663
|
};
|
|
@@ -44777,6 +45084,7 @@ export type Routes = {
|
|
|
44777
45084
|
custom_metadata: {
|
|
44778
45085
|
[x: string]: string | boolean;
|
|
44779
45086
|
};
|
|
45087
|
+
/** Indicates that Seam does not manage the device. */
|
|
44780
45088
|
is_managed: false;
|
|
44781
45089
|
/** properties of the device. */
|
|
44782
45090
|
properties: {
|
|
@@ -44848,25 +45156,45 @@ export type Routes = {
|
|
|
44848
45156
|
accessory_keypad_supported?: boolean | undefined;
|
|
44849
45157
|
};
|
|
44850
45158
|
};
|
|
45159
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
44851
45160
|
can_remotely_unlock?: boolean | undefined;
|
|
45161
|
+
/** Indicates whether the device supports remote locking. */
|
|
44852
45162
|
can_remotely_lock?: boolean | undefined;
|
|
45163
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
44853
45164
|
can_program_offline_access_codes?: boolean | undefined;
|
|
45165
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
44854
45166
|
can_program_online_access_codes?: boolean | undefined;
|
|
45167
|
+
/** Indicates whether the thermostat supports heating. */
|
|
44855
45168
|
can_hvac_heat?: boolean | undefined;
|
|
45169
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
44856
45170
|
can_hvac_cool?: boolean | undefined;
|
|
45171
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
44857
45172
|
can_hvac_heat_cool?: boolean | undefined;
|
|
45173
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
44858
45174
|
can_turn_off_hvac?: boolean | undefined;
|
|
45175
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
44859
45176
|
can_simulate_removal?: boolean | undefined;
|
|
45177
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
44860
45178
|
can_simulate_connection?: boolean | undefined;
|
|
45179
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
44861
45180
|
can_simulate_disconnection?: boolean | undefined;
|
|
45181
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
44862
45182
|
can_unlock_with_code?: boolean | undefined;
|
|
45183
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
44863
45184
|
can_run_thermostat_programs?: boolean | undefined;
|
|
45185
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
44864
45186
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
45187
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
44865
45188
|
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
45189
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
44866
45190
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
45191
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
44867
45192
|
can_simulate_hub_connection?: boolean | undefined;
|
|
45193
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
44868
45194
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
45195
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
44869
45196
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
45197
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
44870
45198
|
can_configure_auto_lock?: boolean | undefined;
|
|
44871
45199
|
}[];
|
|
44872
45200
|
/** Information about the current page of results. */
|
|
@@ -45600,6 +45928,7 @@ export type Routes = {
|
|
|
45600
45928
|
[x: string]: string | boolean;
|
|
45601
45929
|
} | undefined;
|
|
45602
45930
|
event_type: 'access_code.backup_access_code_pulled';
|
|
45931
|
+
/** ID of the backup access code that was pulled from the pool. */
|
|
45603
45932
|
backup_access_code_id: string;
|
|
45604
45933
|
} | {
|
|
45605
45934
|
/** ID of the event. */
|
|
@@ -46108,6 +46437,7 @@ export type Routes = {
|
|
|
46108
46437
|
connected_account_id?: string | undefined;
|
|
46109
46438
|
/** ID of the access system. */
|
|
46110
46439
|
acs_system_id: string;
|
|
46440
|
+
/** ID of the affected access system user. */
|
|
46111
46441
|
acs_user_id: string;
|
|
46112
46442
|
event_type: 'acs_user.created';
|
|
46113
46443
|
} | {
|
|
@@ -46123,6 +46453,7 @@ export type Routes = {
|
|
|
46123
46453
|
connected_account_id?: string | undefined;
|
|
46124
46454
|
/** ID of the access system. */
|
|
46125
46455
|
acs_system_id: string;
|
|
46456
|
+
/** ID of the affected access system user. */
|
|
46126
46457
|
acs_user_id: string;
|
|
46127
46458
|
event_type: 'acs_user.deleted';
|
|
46128
46459
|
} | {
|
|
@@ -46186,6 +46517,7 @@ export type Routes = {
|
|
|
46186
46517
|
connected_account_id?: string | undefined;
|
|
46187
46518
|
/** ID of the access system. */
|
|
46188
46519
|
acs_system_id: string;
|
|
46520
|
+
/** ID of the affected entrance. */
|
|
46189
46521
|
acs_entrance_id: string;
|
|
46190
46522
|
event_type: 'acs_entrance.added';
|
|
46191
46523
|
} | {
|
|
@@ -46201,6 +46533,7 @@ export type Routes = {
|
|
|
46201
46533
|
connected_account_id?: string | undefined;
|
|
46202
46534
|
/** ID of the access system. */
|
|
46203
46535
|
acs_system_id: string;
|
|
46536
|
+
/** ID of the affected entrance. */
|
|
46204
46537
|
acs_entrance_id: string;
|
|
46205
46538
|
event_type: 'acs_entrance.removed';
|
|
46206
46539
|
} | {
|
|
@@ -47457,7 +47790,7 @@ export type Routes = {
|
|
|
47457
47790
|
/** Date and time at which the event occurred. */
|
|
47458
47791
|
occurred_at: string;
|
|
47459
47792
|
/** ID of the affected device. */
|
|
47460
|
-
device_id
|
|
47793
|
+
device_id?: string | undefined;
|
|
47461
47794
|
/** ID of the connected account associated with the event. */
|
|
47462
47795
|
connected_account_id: string;
|
|
47463
47796
|
/** The customer key associated with the device, if any. */
|
|
@@ -47473,6 +47806,30 @@ export type Routes = {
|
|
|
47473
47806
|
event_type: 'lock.access_denied';
|
|
47474
47807
|
/** ID of the access code that was used in the unlock attempts. */
|
|
47475
47808
|
access_code_id?: string | undefined;
|
|
47809
|
+
/**
|
|
47810
|
+
undocumented: Unreleased.
|
|
47811
|
+
---
|
|
47812
|
+
ID of the user identity associated with the access-denied event.
|
|
47813
|
+
*/
|
|
47814
|
+
user_identity_id?: string | undefined;
|
|
47815
|
+
/**
|
|
47816
|
+
undocumented: Unreleased.
|
|
47817
|
+
---
|
|
47818
|
+
ID of the ACS system associated with the access-denied event.
|
|
47819
|
+
*/
|
|
47820
|
+
acs_system_id?: string | undefined;
|
|
47821
|
+
/**
|
|
47822
|
+
undocumented: Unreleased.
|
|
47823
|
+
---
|
|
47824
|
+
ID of the ACS user associated with the access-denied event.
|
|
47825
|
+
*/
|
|
47826
|
+
acs_user_id?: string | undefined;
|
|
47827
|
+
/**
|
|
47828
|
+
undocumented: Unreleased.
|
|
47829
|
+
---
|
|
47830
|
+
ID of the ACS entrance associated with the access-denied event.
|
|
47831
|
+
*/
|
|
47832
|
+
acs_entrance_id?: string | undefined;
|
|
47476
47833
|
} | {
|
|
47477
47834
|
/** ID of the event. */
|
|
47478
47835
|
event_id: string;
|
|
@@ -48571,6 +48928,7 @@ export type Routes = {
|
|
|
48571
48928
|
[x: string]: string | boolean;
|
|
48572
48929
|
} | undefined;
|
|
48573
48930
|
event_type: 'access_code.backup_access_code_pulled';
|
|
48931
|
+
/** ID of the backup access code that was pulled from the pool. */
|
|
48574
48932
|
backup_access_code_id: string;
|
|
48575
48933
|
} | {
|
|
48576
48934
|
/** ID of the event. */
|
|
@@ -49079,6 +49437,7 @@ export type Routes = {
|
|
|
49079
49437
|
connected_account_id?: string | undefined;
|
|
49080
49438
|
/** ID of the access system. */
|
|
49081
49439
|
acs_system_id: string;
|
|
49440
|
+
/** ID of the affected access system user. */
|
|
49082
49441
|
acs_user_id: string;
|
|
49083
49442
|
event_type: 'acs_user.created';
|
|
49084
49443
|
} | {
|
|
@@ -49094,6 +49453,7 @@ export type Routes = {
|
|
|
49094
49453
|
connected_account_id?: string | undefined;
|
|
49095
49454
|
/** ID of the access system. */
|
|
49096
49455
|
acs_system_id: string;
|
|
49456
|
+
/** ID of the affected access system user. */
|
|
49097
49457
|
acs_user_id: string;
|
|
49098
49458
|
event_type: 'acs_user.deleted';
|
|
49099
49459
|
} | {
|
|
@@ -49157,6 +49517,7 @@ export type Routes = {
|
|
|
49157
49517
|
connected_account_id?: string | undefined;
|
|
49158
49518
|
/** ID of the access system. */
|
|
49159
49519
|
acs_system_id: string;
|
|
49520
|
+
/** ID of the affected entrance. */
|
|
49160
49521
|
acs_entrance_id: string;
|
|
49161
49522
|
event_type: 'acs_entrance.added';
|
|
49162
49523
|
} | {
|
|
@@ -49172,6 +49533,7 @@ export type Routes = {
|
|
|
49172
49533
|
connected_account_id?: string | undefined;
|
|
49173
49534
|
/** ID of the access system. */
|
|
49174
49535
|
acs_system_id: string;
|
|
49536
|
+
/** ID of the affected entrance. */
|
|
49175
49537
|
acs_entrance_id: string;
|
|
49176
49538
|
event_type: 'acs_entrance.removed';
|
|
49177
49539
|
} | {
|
|
@@ -50428,7 +50790,7 @@ export type Routes = {
|
|
|
50428
50790
|
/** Date and time at which the event occurred. */
|
|
50429
50791
|
occurred_at: string;
|
|
50430
50792
|
/** ID of the affected device. */
|
|
50431
|
-
device_id
|
|
50793
|
+
device_id?: string | undefined;
|
|
50432
50794
|
/** ID of the connected account associated with the event. */
|
|
50433
50795
|
connected_account_id: string;
|
|
50434
50796
|
/** The customer key associated with the device, if any. */
|
|
@@ -50444,6 +50806,30 @@ export type Routes = {
|
|
|
50444
50806
|
event_type: 'lock.access_denied';
|
|
50445
50807
|
/** ID of the access code that was used in the unlock attempts. */
|
|
50446
50808
|
access_code_id?: string | undefined;
|
|
50809
|
+
/**
|
|
50810
|
+
undocumented: Unreleased.
|
|
50811
|
+
---
|
|
50812
|
+
ID of the user identity associated with the access-denied event.
|
|
50813
|
+
*/
|
|
50814
|
+
user_identity_id?: string | undefined;
|
|
50815
|
+
/**
|
|
50816
|
+
undocumented: Unreleased.
|
|
50817
|
+
---
|
|
50818
|
+
ID of the ACS system associated with the access-denied event.
|
|
50819
|
+
*/
|
|
50820
|
+
acs_system_id?: string | undefined;
|
|
50821
|
+
/**
|
|
50822
|
+
undocumented: Unreleased.
|
|
50823
|
+
---
|
|
50824
|
+
ID of the ACS user associated with the access-denied event.
|
|
50825
|
+
*/
|
|
50826
|
+
acs_user_id?: string | undefined;
|
|
50827
|
+
/**
|
|
50828
|
+
undocumented: Unreleased.
|
|
50829
|
+
---
|
|
50830
|
+
ID of the ACS entrance associated with the access-denied event.
|
|
50831
|
+
*/
|
|
50832
|
+
acs_entrance_id?: string | undefined;
|
|
50447
50833
|
} | {
|
|
50448
50834
|
/** ID of the event. */
|
|
50449
50835
|
event_id: string;
|
|
@@ -51039,6 +51425,7 @@ export type Routes = {
|
|
|
51039
51425
|
acs_credential_on_encoder: {
|
|
51040
51426
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
51041
51427
|
created_at: string | null;
|
|
51428
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
51042
51429
|
is_issued: boolean | null;
|
|
51043
51430
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
51044
51431
|
starts_at: string | null;
|
|
@@ -51084,6 +51471,7 @@ export type Routes = {
|
|
|
51084
51471
|
user_identity_id?: string | undefined;
|
|
51085
51472
|
/** 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. */
|
|
51086
51473
|
connected_account_id: string;
|
|
51474
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
51087
51475
|
acs_credential_pool_id?: string | undefined;
|
|
51088
51476
|
/** 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). */
|
|
51089
51477
|
acs_system_id: string;
|
|
@@ -51204,6 +51592,7 @@ export type Routes = {
|
|
|
51204
51592
|
/** Endpoint ID in the Vostio access system. */
|
|
51205
51593
|
endpoint_id?: string | undefined;
|
|
51206
51594
|
} | undefined;
|
|
51595
|
+
/** Indicates whether Seam manages the credential. */
|
|
51207
51596
|
is_managed: true;
|
|
51208
51597
|
} | {
|
|
51209
51598
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -51214,6 +51603,7 @@ export type Routes = {
|
|
|
51214
51603
|
user_identity_id?: string | undefined;
|
|
51215
51604
|
/** 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. */
|
|
51216
51605
|
connected_account_id: string;
|
|
51606
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
51217
51607
|
acs_credential_pool_id?: string | undefined;
|
|
51218
51608
|
/** 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). */
|
|
51219
51609
|
acs_system_id: string;
|
|
@@ -51411,6 +51801,7 @@ export type Routes = {
|
|
|
51411
51801
|
user_identity_id?: string | undefined;
|
|
51412
51802
|
/** 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. */
|
|
51413
51803
|
connected_account_id: string;
|
|
51804
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
51414
51805
|
acs_credential_pool_id?: string | undefined;
|
|
51415
51806
|
/** 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). */
|
|
51416
51807
|
acs_system_id: string;
|
|
@@ -51531,6 +51922,7 @@ export type Routes = {
|
|
|
51531
51922
|
/** Endpoint ID in the Vostio access system. */
|
|
51532
51923
|
endpoint_id?: string | undefined;
|
|
51533
51924
|
} | undefined;
|
|
51925
|
+
/** Indicates whether Seam manages the credential. */
|
|
51534
51926
|
is_managed: true;
|
|
51535
51927
|
} | {
|
|
51536
51928
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -51541,6 +51933,7 @@ export type Routes = {
|
|
|
51541
51933
|
user_identity_id?: string | undefined;
|
|
51542
51934
|
/** 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. */
|
|
51543
51935
|
connected_account_id: string;
|
|
51936
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
51544
51937
|
acs_credential_pool_id?: string | undefined;
|
|
51545
51938
|
/** 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). */
|
|
51546
51939
|
acs_system_id: string;
|
|
@@ -51750,6 +52143,7 @@ export type Routes = {
|
|
|
51750
52143
|
user_identity_id?: string | undefined;
|
|
51751
52144
|
/** 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. */
|
|
51752
52145
|
connected_account_id: string;
|
|
52146
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
51753
52147
|
acs_credential_pool_id?: string | undefined;
|
|
51754
52148
|
/** 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). */
|
|
51755
52149
|
acs_system_id: string;
|
|
@@ -51870,6 +52264,7 @@ export type Routes = {
|
|
|
51870
52264
|
/** Endpoint ID in the Vostio access system. */
|
|
51871
52265
|
endpoint_id?: string | undefined;
|
|
51872
52266
|
} | undefined;
|
|
52267
|
+
/** Indicates whether Seam manages the credential. */
|
|
51873
52268
|
is_managed: true;
|
|
51874
52269
|
};
|
|
51875
52270
|
} | {
|
|
@@ -53958,25 +54353,45 @@ export type Routes = {
|
|
|
53958
54353
|
/** Image URL for the manufacturer logo. */
|
|
53959
54354
|
image_url?: string | undefined;
|
|
53960
54355
|
} | undefined;
|
|
54356
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
53961
54357
|
can_remotely_unlock?: boolean | undefined;
|
|
54358
|
+
/** Indicates whether the device supports remote locking. */
|
|
53962
54359
|
can_remotely_lock?: boolean | undefined;
|
|
54360
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
53963
54361
|
can_program_offline_access_codes?: boolean | undefined;
|
|
54362
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
53964
54363
|
can_program_online_access_codes?: boolean | undefined;
|
|
54364
|
+
/** Indicates whether the thermostat supports heating. */
|
|
53965
54365
|
can_hvac_heat?: boolean | undefined;
|
|
54366
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
53966
54367
|
can_hvac_cool?: boolean | undefined;
|
|
54368
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
53967
54369
|
can_hvac_heat_cool?: boolean | undefined;
|
|
54370
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
53968
54371
|
can_turn_off_hvac?: boolean | undefined;
|
|
54372
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
53969
54373
|
can_simulate_removal?: boolean | undefined;
|
|
54374
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
53970
54375
|
can_simulate_connection?: boolean | undefined;
|
|
54376
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
53971
54377
|
can_simulate_disconnection?: boolean | undefined;
|
|
54378
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
53972
54379
|
can_unlock_with_code?: boolean | undefined;
|
|
54380
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
53973
54381
|
can_run_thermostat_programs?: boolean | undefined;
|
|
54382
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
53974
54383
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
54384
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
53975
54385
|
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
54386
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
53976
54387
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
54388
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
53977
54389
|
can_simulate_hub_connection?: boolean | undefined;
|
|
54390
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
53978
54391
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
54392
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
53979
54393
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
54394
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
53980
54395
|
can_configure_auto_lock?: boolean | undefined;
|
|
53981
54396
|
};
|
|
53982
54397
|
/** Represents a [device](https://docs.seam.co/core-concepts/devices) that has been connected to Seam. */
|
|
@@ -55330,25 +55745,45 @@ export type Routes = {
|
|
|
55330
55745
|
/** Image URL for the manufacturer logo. */
|
|
55331
55746
|
image_url?: string | undefined;
|
|
55332
55747
|
} | undefined;
|
|
55748
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
55333
55749
|
can_remotely_unlock?: boolean | undefined;
|
|
55750
|
+
/** Indicates whether the device supports remote locking. */
|
|
55334
55751
|
can_remotely_lock?: boolean | undefined;
|
|
55752
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
55335
55753
|
can_program_offline_access_codes?: boolean | undefined;
|
|
55754
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
55336
55755
|
can_program_online_access_codes?: boolean | undefined;
|
|
55756
|
+
/** Indicates whether the thermostat supports heating. */
|
|
55337
55757
|
can_hvac_heat?: boolean | undefined;
|
|
55758
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
55338
55759
|
can_hvac_cool?: boolean | undefined;
|
|
55760
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
55339
55761
|
can_hvac_heat_cool?: boolean | undefined;
|
|
55762
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
55340
55763
|
can_turn_off_hvac?: boolean | undefined;
|
|
55764
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
55341
55765
|
can_simulate_removal?: boolean | undefined;
|
|
55766
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
55342
55767
|
can_simulate_connection?: boolean | undefined;
|
|
55768
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
55343
55769
|
can_simulate_disconnection?: boolean | undefined;
|
|
55770
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
55344
55771
|
can_unlock_with_code?: boolean | undefined;
|
|
55772
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
55345
55773
|
can_run_thermostat_programs?: boolean | undefined;
|
|
55774
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
55346
55775
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
55776
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
55347
55777
|
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
55778
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
55348
55779
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
55780
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
55349
55781
|
can_simulate_hub_connection?: boolean | undefined;
|
|
55782
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
55350
55783
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
55784
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
55351
55785
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
55786
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
55352
55787
|
can_configure_auto_lock?: boolean | undefined;
|
|
55353
55788
|
};
|
|
55354
55789
|
};
|
|
@@ -56752,25 +57187,45 @@ export type Routes = {
|
|
|
56752
57187
|
/** Image URL for the manufacturer logo. */
|
|
56753
57188
|
image_url?: string | undefined;
|
|
56754
57189
|
} | undefined;
|
|
57190
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
56755
57191
|
can_remotely_unlock?: boolean | undefined;
|
|
57192
|
+
/** Indicates whether the device supports remote locking. */
|
|
56756
57193
|
can_remotely_lock?: boolean | undefined;
|
|
57194
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
56757
57195
|
can_program_offline_access_codes?: boolean | undefined;
|
|
57196
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
56758
57197
|
can_program_online_access_codes?: boolean | undefined;
|
|
57198
|
+
/** Indicates whether the thermostat supports heating. */
|
|
56759
57199
|
can_hvac_heat?: boolean | undefined;
|
|
57200
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
56760
57201
|
can_hvac_cool?: boolean | undefined;
|
|
57202
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
56761
57203
|
can_hvac_heat_cool?: boolean | undefined;
|
|
57204
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
56762
57205
|
can_turn_off_hvac?: boolean | undefined;
|
|
57206
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
56763
57207
|
can_simulate_removal?: boolean | undefined;
|
|
57208
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
56764
57209
|
can_simulate_connection?: boolean | undefined;
|
|
57210
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
56765
57211
|
can_simulate_disconnection?: boolean | undefined;
|
|
57212
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
56766
57213
|
can_unlock_with_code?: boolean | undefined;
|
|
57214
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
56767
57215
|
can_run_thermostat_programs?: boolean | undefined;
|
|
57216
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
56768
57217
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
57218
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
56769
57219
|
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
57220
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
56770
57221
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
57222
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
56771
57223
|
can_simulate_hub_connection?: boolean | undefined;
|
|
57224
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
56772
57225
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
57226
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
56773
57227
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
57228
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
56774
57229
|
can_configure_auto_lock?: boolean | undefined;
|
|
56775
57230
|
}[];
|
|
56776
57231
|
devices: {
|
|
@@ -58123,25 +58578,45 @@ export type Routes = {
|
|
|
58123
58578
|
/** Image URL for the manufacturer logo. */
|
|
58124
58579
|
image_url?: string | undefined;
|
|
58125
58580
|
} | undefined;
|
|
58581
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
58126
58582
|
can_remotely_unlock?: boolean | undefined;
|
|
58583
|
+
/** Indicates whether the device supports remote locking. */
|
|
58127
58584
|
can_remotely_lock?: boolean | undefined;
|
|
58585
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
58128
58586
|
can_program_offline_access_codes?: boolean | undefined;
|
|
58587
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
58129
58588
|
can_program_online_access_codes?: boolean | undefined;
|
|
58589
|
+
/** Indicates whether the thermostat supports heating. */
|
|
58130
58590
|
can_hvac_heat?: boolean | undefined;
|
|
58591
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
58131
58592
|
can_hvac_cool?: boolean | undefined;
|
|
58593
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
58132
58594
|
can_hvac_heat_cool?: boolean | undefined;
|
|
58595
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
58133
58596
|
can_turn_off_hvac?: boolean | undefined;
|
|
58597
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
58134
58598
|
can_simulate_removal?: boolean | undefined;
|
|
58599
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
58135
58600
|
can_simulate_connection?: boolean | undefined;
|
|
58601
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
58136
58602
|
can_simulate_disconnection?: boolean | undefined;
|
|
58603
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
58137
58604
|
can_unlock_with_code?: boolean | undefined;
|
|
58605
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
58138
58606
|
can_run_thermostat_programs?: boolean | undefined;
|
|
58607
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
58139
58608
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
58609
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
58140
58610
|
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
58611
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
58141
58612
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
58613
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
58142
58614
|
can_simulate_hub_connection?: boolean | undefined;
|
|
58615
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
58143
58616
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
58617
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
58144
58618
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
58619
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
58145
58620
|
can_configure_auto_lock?: boolean | undefined;
|
|
58146
58621
|
}[];
|
|
58147
58622
|
};
|
|
@@ -58265,6 +58740,7 @@ export type Routes = {
|
|
|
58265
58740
|
acs_credential_on_encoder: {
|
|
58266
58741
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
58267
58742
|
created_at: string | null;
|
|
58743
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
58268
58744
|
is_issued: boolean | null;
|
|
58269
58745
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
58270
58746
|
starts_at: string | null;
|
|
@@ -58310,6 +58786,7 @@ export type Routes = {
|
|
|
58310
58786
|
user_identity_id?: string | undefined;
|
|
58311
58787
|
/** 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. */
|
|
58312
58788
|
connected_account_id: string;
|
|
58789
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
58313
58790
|
acs_credential_pool_id?: string | undefined;
|
|
58314
58791
|
/** 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). */
|
|
58315
58792
|
acs_system_id: string;
|
|
@@ -58430,6 +58907,7 @@ export type Routes = {
|
|
|
58430
58907
|
/** Endpoint ID in the Vostio access system. */
|
|
58431
58908
|
endpoint_id?: string | undefined;
|
|
58432
58909
|
} | undefined;
|
|
58910
|
+
/** Indicates whether Seam manages the credential. */
|
|
58433
58911
|
is_managed: true;
|
|
58434
58912
|
} | {
|
|
58435
58913
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -58440,6 +58918,7 @@ export type Routes = {
|
|
|
58440
58918
|
user_identity_id?: string | undefined;
|
|
58441
58919
|
/** 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. */
|
|
58442
58920
|
connected_account_id: string;
|
|
58921
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
58443
58922
|
acs_credential_pool_id?: string | undefined;
|
|
58444
58923
|
/** 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). */
|
|
58445
58924
|
acs_system_id: string;
|
|
@@ -58637,6 +59116,7 @@ export type Routes = {
|
|
|
58637
59116
|
user_identity_id?: string | undefined;
|
|
58638
59117
|
/** 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. */
|
|
58639
59118
|
connected_account_id: string;
|
|
59119
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
58640
59120
|
acs_credential_pool_id?: string | undefined;
|
|
58641
59121
|
/** 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). */
|
|
58642
59122
|
acs_system_id: string;
|
|
@@ -58757,6 +59237,7 @@ export type Routes = {
|
|
|
58757
59237
|
/** Endpoint ID in the Vostio access system. */
|
|
58758
59238
|
endpoint_id?: string | undefined;
|
|
58759
59239
|
} | undefined;
|
|
59240
|
+
/** Indicates whether Seam manages the credential. */
|
|
58760
59241
|
is_managed: true;
|
|
58761
59242
|
} | {
|
|
58762
59243
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -58767,6 +59248,7 @@ export type Routes = {
|
|
|
58767
59248
|
user_identity_id?: string | undefined;
|
|
58768
59249
|
/** 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. */
|
|
58769
59250
|
connected_account_id: string;
|
|
59251
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
58770
59252
|
acs_credential_pool_id?: string | undefined;
|
|
58771
59253
|
/** 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). */
|
|
58772
59254
|
acs_system_id: string;
|
|
@@ -58976,6 +59458,7 @@ export type Routes = {
|
|
|
58976
59458
|
user_identity_id?: string | undefined;
|
|
58977
59459
|
/** 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. */
|
|
58978
59460
|
connected_account_id: string;
|
|
59461
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
58979
59462
|
acs_credential_pool_id?: string | undefined;
|
|
58980
59463
|
/** 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). */
|
|
58981
59464
|
acs_system_id: string;
|
|
@@ -59096,6 +59579,7 @@ export type Routes = {
|
|
|
59096
59579
|
/** Endpoint ID in the Vostio access system. */
|
|
59097
59580
|
endpoint_id?: string | undefined;
|
|
59098
59581
|
} | undefined;
|
|
59582
|
+
/** Indicates whether Seam manages the credential. */
|
|
59099
59583
|
is_managed: true;
|
|
59100
59584
|
};
|
|
59101
59585
|
} | {
|
|
@@ -59938,6 +60422,7 @@ export type Routes = {
|
|
|
59938
60422
|
acs_credential_on_encoder: {
|
|
59939
60423
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
59940
60424
|
created_at: string | null;
|
|
60425
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
59941
60426
|
is_issued: boolean | null;
|
|
59942
60427
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
59943
60428
|
starts_at: string | null;
|
|
@@ -59983,6 +60468,7 @@ export type Routes = {
|
|
|
59983
60468
|
user_identity_id?: string | undefined;
|
|
59984
60469
|
/** 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. */
|
|
59985
60470
|
connected_account_id: string;
|
|
60471
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
59986
60472
|
acs_credential_pool_id?: string | undefined;
|
|
59987
60473
|
/** 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). */
|
|
59988
60474
|
acs_system_id: string;
|
|
@@ -60103,6 +60589,7 @@ export type Routes = {
|
|
|
60103
60589
|
/** Endpoint ID in the Vostio access system. */
|
|
60104
60590
|
endpoint_id?: string | undefined;
|
|
60105
60591
|
} | undefined;
|
|
60592
|
+
/** Indicates whether Seam manages the credential. */
|
|
60106
60593
|
is_managed: true;
|
|
60107
60594
|
} | {
|
|
60108
60595
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -60113,6 +60600,7 @@ export type Routes = {
|
|
|
60113
60600
|
user_identity_id?: string | undefined;
|
|
60114
60601
|
/** 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. */
|
|
60115
60602
|
connected_account_id: string;
|
|
60603
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
60116
60604
|
acs_credential_pool_id?: string | undefined;
|
|
60117
60605
|
/** 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). */
|
|
60118
60606
|
acs_system_id: string;
|
|
@@ -60310,6 +60798,7 @@ export type Routes = {
|
|
|
60310
60798
|
user_identity_id?: string | undefined;
|
|
60311
60799
|
/** 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. */
|
|
60312
60800
|
connected_account_id: string;
|
|
60801
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
60313
60802
|
acs_credential_pool_id?: string | undefined;
|
|
60314
60803
|
/** 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). */
|
|
60315
60804
|
acs_system_id: string;
|
|
@@ -60430,6 +60919,7 @@ export type Routes = {
|
|
|
60430
60919
|
/** Endpoint ID in the Vostio access system. */
|
|
60431
60920
|
endpoint_id?: string | undefined;
|
|
60432
60921
|
} | undefined;
|
|
60922
|
+
/** Indicates whether Seam manages the credential. */
|
|
60433
60923
|
is_managed: true;
|
|
60434
60924
|
} | {
|
|
60435
60925
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -60440,6 +60930,7 @@ export type Routes = {
|
|
|
60440
60930
|
user_identity_id?: string | undefined;
|
|
60441
60931
|
/** 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. */
|
|
60442
60932
|
connected_account_id: string;
|
|
60933
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
60443
60934
|
acs_credential_pool_id?: string | undefined;
|
|
60444
60935
|
/** 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). */
|
|
60445
60936
|
acs_system_id: string;
|
|
@@ -60649,6 +61140,7 @@ export type Routes = {
|
|
|
60649
61140
|
user_identity_id?: string | undefined;
|
|
60650
61141
|
/** 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. */
|
|
60651
61142
|
connected_account_id: string;
|
|
61143
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
60652
61144
|
acs_credential_pool_id?: string | undefined;
|
|
60653
61145
|
/** 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). */
|
|
60654
61146
|
acs_system_id: string;
|
|
@@ -60769,6 +61261,7 @@ export type Routes = {
|
|
|
60769
61261
|
/** Endpoint ID in the Vostio access system. */
|
|
60770
61262
|
endpoint_id?: string | undefined;
|
|
60771
61263
|
} | undefined;
|
|
61264
|
+
/** Indicates whether Seam manages the credential. */
|
|
60772
61265
|
is_managed: true;
|
|
60773
61266
|
};
|
|
60774
61267
|
} | {
|
|
@@ -61609,6 +62102,7 @@ export type Routes = {
|
|
|
61609
62102
|
acs_credential_on_encoder: {
|
|
61610
62103
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
61611
62104
|
created_at: string | null;
|
|
62105
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
61612
62106
|
is_issued: boolean | null;
|
|
61613
62107
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
61614
62108
|
starts_at: string | null;
|
|
@@ -61654,6 +62148,7 @@ export type Routes = {
|
|
|
61654
62148
|
user_identity_id?: string | undefined;
|
|
61655
62149
|
/** 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. */
|
|
61656
62150
|
connected_account_id: string;
|
|
62151
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
61657
62152
|
acs_credential_pool_id?: string | undefined;
|
|
61658
62153
|
/** 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). */
|
|
61659
62154
|
acs_system_id: string;
|
|
@@ -61774,6 +62269,7 @@ export type Routes = {
|
|
|
61774
62269
|
/** Endpoint ID in the Vostio access system. */
|
|
61775
62270
|
endpoint_id?: string | undefined;
|
|
61776
62271
|
} | undefined;
|
|
62272
|
+
/** Indicates whether Seam manages the credential. */
|
|
61777
62273
|
is_managed: true;
|
|
61778
62274
|
} | {
|
|
61779
62275
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -61784,6 +62280,7 @@ export type Routes = {
|
|
|
61784
62280
|
user_identity_id?: string | undefined;
|
|
61785
62281
|
/** 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. */
|
|
61786
62282
|
connected_account_id: string;
|
|
62283
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
61787
62284
|
acs_credential_pool_id?: string | undefined;
|
|
61788
62285
|
/** 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). */
|
|
61789
62286
|
acs_system_id: string;
|
|
@@ -61981,6 +62478,7 @@ export type Routes = {
|
|
|
61981
62478
|
user_identity_id?: string | undefined;
|
|
61982
62479
|
/** 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. */
|
|
61983
62480
|
connected_account_id: string;
|
|
62481
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
61984
62482
|
acs_credential_pool_id?: string | undefined;
|
|
61985
62483
|
/** 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). */
|
|
61986
62484
|
acs_system_id: string;
|
|
@@ -62101,6 +62599,7 @@ export type Routes = {
|
|
|
62101
62599
|
/** Endpoint ID in the Vostio access system. */
|
|
62102
62600
|
endpoint_id?: string | undefined;
|
|
62103
62601
|
} | undefined;
|
|
62602
|
+
/** Indicates whether Seam manages the credential. */
|
|
62104
62603
|
is_managed: true;
|
|
62105
62604
|
} | {
|
|
62106
62605
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -62111,6 +62610,7 @@ export type Routes = {
|
|
|
62111
62610
|
user_identity_id?: string | undefined;
|
|
62112
62611
|
/** 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. */
|
|
62113
62612
|
connected_account_id: string;
|
|
62613
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
62114
62614
|
acs_credential_pool_id?: string | undefined;
|
|
62115
62615
|
/** 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). */
|
|
62116
62616
|
acs_system_id: string;
|
|
@@ -62320,6 +62820,7 @@ export type Routes = {
|
|
|
62320
62820
|
user_identity_id?: string | undefined;
|
|
62321
62821
|
/** 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. */
|
|
62322
62822
|
connected_account_id: string;
|
|
62823
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
62323
62824
|
acs_credential_pool_id?: string | undefined;
|
|
62324
62825
|
/** 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). */
|
|
62325
62826
|
acs_system_id: string;
|
|
@@ -62440,6 +62941,7 @@ export type Routes = {
|
|
|
62440
62941
|
/** Endpoint ID in the Vostio access system. */
|
|
62441
62942
|
endpoint_id?: string | undefined;
|
|
62442
62943
|
} | undefined;
|
|
62944
|
+
/** Indicates whether Seam manages the credential. */
|
|
62443
62945
|
is_managed: true;
|
|
62444
62946
|
};
|
|
62445
62947
|
} | {
|
|
@@ -63282,6 +63784,7 @@ export type Routes = {
|
|
|
63282
63784
|
acs_credential_on_encoder: {
|
|
63283
63785
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
63284
63786
|
created_at: string | null;
|
|
63787
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
63285
63788
|
is_issued: boolean | null;
|
|
63286
63789
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
63287
63790
|
starts_at: string | null;
|
|
@@ -63327,6 +63830,7 @@ export type Routes = {
|
|
|
63327
63830
|
user_identity_id?: string | undefined;
|
|
63328
63831
|
/** 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. */
|
|
63329
63832
|
connected_account_id: string;
|
|
63833
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
63330
63834
|
acs_credential_pool_id?: string | undefined;
|
|
63331
63835
|
/** 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). */
|
|
63332
63836
|
acs_system_id: string;
|
|
@@ -63447,6 +63951,7 @@ export type Routes = {
|
|
|
63447
63951
|
/** Endpoint ID in the Vostio access system. */
|
|
63448
63952
|
endpoint_id?: string | undefined;
|
|
63449
63953
|
} | undefined;
|
|
63954
|
+
/** Indicates whether Seam manages the credential. */
|
|
63450
63955
|
is_managed: true;
|
|
63451
63956
|
} | {
|
|
63452
63957
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -63457,6 +63962,7 @@ export type Routes = {
|
|
|
63457
63962
|
user_identity_id?: string | undefined;
|
|
63458
63963
|
/** 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. */
|
|
63459
63964
|
connected_account_id: string;
|
|
63965
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
63460
63966
|
acs_credential_pool_id?: string | undefined;
|
|
63461
63967
|
/** 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). */
|
|
63462
63968
|
acs_system_id: string;
|
|
@@ -63654,6 +64160,7 @@ export type Routes = {
|
|
|
63654
64160
|
user_identity_id?: string | undefined;
|
|
63655
64161
|
/** 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. */
|
|
63656
64162
|
connected_account_id: string;
|
|
64163
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
63657
64164
|
acs_credential_pool_id?: string | undefined;
|
|
63658
64165
|
/** 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). */
|
|
63659
64166
|
acs_system_id: string;
|
|
@@ -63774,6 +64281,7 @@ export type Routes = {
|
|
|
63774
64281
|
/** Endpoint ID in the Vostio access system. */
|
|
63775
64282
|
endpoint_id?: string | undefined;
|
|
63776
64283
|
} | undefined;
|
|
64284
|
+
/** Indicates whether Seam manages the credential. */
|
|
63777
64285
|
is_managed: true;
|
|
63778
64286
|
} | {
|
|
63779
64287
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -63784,6 +64292,7 @@ export type Routes = {
|
|
|
63784
64292
|
user_identity_id?: string | undefined;
|
|
63785
64293
|
/** 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. */
|
|
63786
64294
|
connected_account_id: string;
|
|
64295
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
63787
64296
|
acs_credential_pool_id?: string | undefined;
|
|
63788
64297
|
/** 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). */
|
|
63789
64298
|
acs_system_id: string;
|
|
@@ -63993,6 +64502,7 @@ export type Routes = {
|
|
|
63993
64502
|
user_identity_id?: string | undefined;
|
|
63994
64503
|
/** 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. */
|
|
63995
64504
|
connected_account_id: string;
|
|
64505
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
63996
64506
|
acs_credential_pool_id?: string | undefined;
|
|
63997
64507
|
/** 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). */
|
|
63998
64508
|
acs_system_id: string;
|
|
@@ -64113,6 +64623,7 @@ export type Routes = {
|
|
|
64113
64623
|
/** Endpoint ID in the Vostio access system. */
|
|
64114
64624
|
endpoint_id?: string | undefined;
|
|
64115
64625
|
} | undefined;
|
|
64626
|
+
/** Indicates whether Seam manages the credential. */
|
|
64116
64627
|
is_managed: true;
|
|
64117
64628
|
};
|
|
64118
64629
|
} | {
|
|
@@ -66235,25 +66746,45 @@ export type Routes = {
|
|
|
66235
66746
|
/** Image URL for the manufacturer logo. */
|
|
66236
66747
|
image_url?: string | undefined;
|
|
66237
66748
|
} | undefined;
|
|
66749
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
66238
66750
|
can_remotely_unlock?: boolean | undefined;
|
|
66751
|
+
/** Indicates whether the device supports remote locking. */
|
|
66239
66752
|
can_remotely_lock?: boolean | undefined;
|
|
66753
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
66240
66754
|
can_program_offline_access_codes?: boolean | undefined;
|
|
66755
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
66241
66756
|
can_program_online_access_codes?: boolean | undefined;
|
|
66757
|
+
/** Indicates whether the thermostat supports heating. */
|
|
66242
66758
|
can_hvac_heat?: boolean | undefined;
|
|
66759
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
66243
66760
|
can_hvac_cool?: boolean | undefined;
|
|
66761
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
66244
66762
|
can_hvac_heat_cool?: boolean | undefined;
|
|
66763
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
66245
66764
|
can_turn_off_hvac?: boolean | undefined;
|
|
66765
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
66246
66766
|
can_simulate_removal?: boolean | undefined;
|
|
66767
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
66247
66768
|
can_simulate_connection?: boolean | undefined;
|
|
66769
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
66248
66770
|
can_simulate_disconnection?: boolean | undefined;
|
|
66771
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
66249
66772
|
can_unlock_with_code?: boolean | undefined;
|
|
66773
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
66250
66774
|
can_run_thermostat_programs?: boolean | undefined;
|
|
66775
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
66251
66776
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
66777
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
66252
66778
|
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
66779
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
66253
66780
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
66781
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
66254
66782
|
can_simulate_hub_connection?: boolean | undefined;
|
|
66783
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
66255
66784
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
66785
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
66256
66786
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
66787
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
66257
66788
|
can_configure_auto_lock?: boolean | undefined;
|
|
66258
66789
|
}[];
|
|
66259
66790
|
devices: {
|
|
@@ -67606,25 +68137,45 @@ export type Routes = {
|
|
|
67606
68137
|
/** Image URL for the manufacturer logo. */
|
|
67607
68138
|
image_url?: string | undefined;
|
|
67608
68139
|
} | undefined;
|
|
68140
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
67609
68141
|
can_remotely_unlock?: boolean | undefined;
|
|
68142
|
+
/** Indicates whether the device supports remote locking. */
|
|
67610
68143
|
can_remotely_lock?: boolean | undefined;
|
|
68144
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
67611
68145
|
can_program_offline_access_codes?: boolean | undefined;
|
|
68146
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
67612
68147
|
can_program_online_access_codes?: boolean | undefined;
|
|
68148
|
+
/** Indicates whether the thermostat supports heating. */
|
|
67613
68149
|
can_hvac_heat?: boolean | undefined;
|
|
68150
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
67614
68151
|
can_hvac_cool?: boolean | undefined;
|
|
68152
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
67615
68153
|
can_hvac_heat_cool?: boolean | undefined;
|
|
68154
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
67616
68155
|
can_turn_off_hvac?: boolean | undefined;
|
|
68156
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
67617
68157
|
can_simulate_removal?: boolean | undefined;
|
|
68158
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
67618
68159
|
can_simulate_connection?: boolean | undefined;
|
|
68160
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
67619
68161
|
can_simulate_disconnection?: boolean | undefined;
|
|
68162
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
67620
68163
|
can_unlock_with_code?: boolean | undefined;
|
|
68164
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
67621
68165
|
can_run_thermostat_programs?: boolean | undefined;
|
|
68166
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
67622
68167
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
68168
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
67623
68169
|
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
68170
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
67624
68171
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
68172
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
67625
68173
|
can_simulate_hub_connection?: boolean | undefined;
|
|
68174
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
67626
68175
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
68176
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
67627
68177
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
68178
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
67628
68179
|
can_configure_auto_lock?: boolean | undefined;
|
|
67629
68180
|
}[];
|
|
67630
68181
|
};
|
|
@@ -67758,6 +68309,7 @@ export type Routes = {
|
|
|
67758
68309
|
acs_credential_on_encoder: {
|
|
67759
68310
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
67760
68311
|
created_at: string | null;
|
|
68312
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
67761
68313
|
is_issued: boolean | null;
|
|
67762
68314
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
67763
68315
|
starts_at: string | null;
|
|
@@ -67803,6 +68355,7 @@ export type Routes = {
|
|
|
67803
68355
|
user_identity_id?: string | undefined;
|
|
67804
68356
|
/** 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. */
|
|
67805
68357
|
connected_account_id: string;
|
|
68358
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
67806
68359
|
acs_credential_pool_id?: string | undefined;
|
|
67807
68360
|
/** 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). */
|
|
67808
68361
|
acs_system_id: string;
|
|
@@ -67923,6 +68476,7 @@ export type Routes = {
|
|
|
67923
68476
|
/** Endpoint ID in the Vostio access system. */
|
|
67924
68477
|
endpoint_id?: string | undefined;
|
|
67925
68478
|
} | undefined;
|
|
68479
|
+
/** Indicates whether Seam manages the credential. */
|
|
67926
68480
|
is_managed: true;
|
|
67927
68481
|
} | {
|
|
67928
68482
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -67933,6 +68487,7 @@ export type Routes = {
|
|
|
67933
68487
|
user_identity_id?: string | undefined;
|
|
67934
68488
|
/** 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. */
|
|
67935
68489
|
connected_account_id: string;
|
|
68490
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
67936
68491
|
acs_credential_pool_id?: string | undefined;
|
|
67937
68492
|
/** 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). */
|
|
67938
68493
|
acs_system_id: string;
|
|
@@ -68130,6 +68685,7 @@ export type Routes = {
|
|
|
68130
68685
|
user_identity_id?: string | undefined;
|
|
68131
68686
|
/** 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. */
|
|
68132
68687
|
connected_account_id: string;
|
|
68688
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
68133
68689
|
acs_credential_pool_id?: string | undefined;
|
|
68134
68690
|
/** 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). */
|
|
68135
68691
|
acs_system_id: string;
|
|
@@ -68250,6 +68806,7 @@ export type Routes = {
|
|
|
68250
68806
|
/** Endpoint ID in the Vostio access system. */
|
|
68251
68807
|
endpoint_id?: string | undefined;
|
|
68252
68808
|
} | undefined;
|
|
68809
|
+
/** Indicates whether Seam manages the credential. */
|
|
68253
68810
|
is_managed: true;
|
|
68254
68811
|
} | {
|
|
68255
68812
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -68260,6 +68817,7 @@ export type Routes = {
|
|
|
68260
68817
|
user_identity_id?: string | undefined;
|
|
68261
68818
|
/** 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. */
|
|
68262
68819
|
connected_account_id: string;
|
|
68820
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
68263
68821
|
acs_credential_pool_id?: string | undefined;
|
|
68264
68822
|
/** 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). */
|
|
68265
68823
|
acs_system_id: string;
|
|
@@ -68469,6 +69027,7 @@ export type Routes = {
|
|
|
68469
69027
|
user_identity_id?: string | undefined;
|
|
68470
69028
|
/** 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. */
|
|
68471
69029
|
connected_account_id: string;
|
|
69030
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
68472
69031
|
acs_credential_pool_id?: string | undefined;
|
|
68473
69032
|
/** 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). */
|
|
68474
69033
|
acs_system_id: string;
|
|
@@ -68589,6 +69148,7 @@ export type Routes = {
|
|
|
68589
69148
|
/** Endpoint ID in the Vostio access system. */
|
|
68590
69149
|
endpoint_id?: string | undefined;
|
|
68591
69150
|
} | undefined;
|
|
69151
|
+
/** Indicates whether Seam manages the credential. */
|
|
68592
69152
|
is_managed: true;
|
|
68593
69153
|
};
|
|
68594
69154
|
} | {
|
|
@@ -69450,6 +70010,7 @@ export type Routes = {
|
|
|
69450
70010
|
acs_credential_on_encoder: {
|
|
69451
70011
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
69452
70012
|
created_at: string | null;
|
|
70013
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
69453
70014
|
is_issued: boolean | null;
|
|
69454
70015
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
69455
70016
|
starts_at: string | null;
|
|
@@ -69495,6 +70056,7 @@ export type Routes = {
|
|
|
69495
70056
|
user_identity_id?: string | undefined;
|
|
69496
70057
|
/** 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. */
|
|
69497
70058
|
connected_account_id: string;
|
|
70059
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
69498
70060
|
acs_credential_pool_id?: string | undefined;
|
|
69499
70061
|
/** 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). */
|
|
69500
70062
|
acs_system_id: string;
|
|
@@ -69615,6 +70177,7 @@ export type Routes = {
|
|
|
69615
70177
|
/** Endpoint ID in the Vostio access system. */
|
|
69616
70178
|
endpoint_id?: string | undefined;
|
|
69617
70179
|
} | undefined;
|
|
70180
|
+
/** Indicates whether Seam manages the credential. */
|
|
69618
70181
|
is_managed: true;
|
|
69619
70182
|
} | {
|
|
69620
70183
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -69625,6 +70188,7 @@ export type Routes = {
|
|
|
69625
70188
|
user_identity_id?: string | undefined;
|
|
69626
70189
|
/** 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. */
|
|
69627
70190
|
connected_account_id: string;
|
|
70191
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
69628
70192
|
acs_credential_pool_id?: string | undefined;
|
|
69629
70193
|
/** 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). */
|
|
69630
70194
|
acs_system_id: string;
|
|
@@ -69822,6 +70386,7 @@ export type Routes = {
|
|
|
69822
70386
|
user_identity_id?: string | undefined;
|
|
69823
70387
|
/** 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. */
|
|
69824
70388
|
connected_account_id: string;
|
|
70389
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
69825
70390
|
acs_credential_pool_id?: string | undefined;
|
|
69826
70391
|
/** 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). */
|
|
69827
70392
|
acs_system_id: string;
|
|
@@ -69942,6 +70507,7 @@ export type Routes = {
|
|
|
69942
70507
|
/** Endpoint ID in the Vostio access system. */
|
|
69943
70508
|
endpoint_id?: string | undefined;
|
|
69944
70509
|
} | undefined;
|
|
70510
|
+
/** Indicates whether Seam manages the credential. */
|
|
69945
70511
|
is_managed: true;
|
|
69946
70512
|
} | {
|
|
69947
70513
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -69952,6 +70518,7 @@ export type Routes = {
|
|
|
69952
70518
|
user_identity_id?: string | undefined;
|
|
69953
70519
|
/** 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. */
|
|
69954
70520
|
connected_account_id: string;
|
|
70521
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
69955
70522
|
acs_credential_pool_id?: string | undefined;
|
|
69956
70523
|
/** 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). */
|
|
69957
70524
|
acs_system_id: string;
|
|
@@ -70161,6 +70728,7 @@ export type Routes = {
|
|
|
70161
70728
|
user_identity_id?: string | undefined;
|
|
70162
70729
|
/** 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. */
|
|
70163
70730
|
connected_account_id: string;
|
|
70731
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
70164
70732
|
acs_credential_pool_id?: string | undefined;
|
|
70165
70733
|
/** 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). */
|
|
70166
70734
|
acs_system_id: string;
|
|
@@ -70281,6 +70849,7 @@ export type Routes = {
|
|
|
70281
70849
|
/** Endpoint ID in the Vostio access system. */
|
|
70282
70850
|
endpoint_id?: string | undefined;
|
|
70283
70851
|
} | undefined;
|
|
70852
|
+
/** Indicates whether Seam manages the credential. */
|
|
70284
70853
|
is_managed: true;
|
|
70285
70854
|
};
|
|
70286
70855
|
} | {
|
|
@@ -71198,6 +71767,7 @@ export type Routes = {
|
|
|
71198
71767
|
acs_credential_on_encoder: {
|
|
71199
71768
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
71200
71769
|
created_at: string | null;
|
|
71770
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
71201
71771
|
is_issued: boolean | null;
|
|
71202
71772
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
71203
71773
|
starts_at: string | null;
|
|
@@ -71243,6 +71813,7 @@ export type Routes = {
|
|
|
71243
71813
|
user_identity_id?: string | undefined;
|
|
71244
71814
|
/** 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. */
|
|
71245
71815
|
connected_account_id: string;
|
|
71816
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
71246
71817
|
acs_credential_pool_id?: string | undefined;
|
|
71247
71818
|
/** 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). */
|
|
71248
71819
|
acs_system_id: string;
|
|
@@ -71363,6 +71934,7 @@ export type Routes = {
|
|
|
71363
71934
|
/** Endpoint ID in the Vostio access system. */
|
|
71364
71935
|
endpoint_id?: string | undefined;
|
|
71365
71936
|
} | undefined;
|
|
71937
|
+
/** Indicates whether Seam manages the credential. */
|
|
71366
71938
|
is_managed: true;
|
|
71367
71939
|
} | {
|
|
71368
71940
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -71373,6 +71945,7 @@ export type Routes = {
|
|
|
71373
71945
|
user_identity_id?: string | undefined;
|
|
71374
71946
|
/** 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. */
|
|
71375
71947
|
connected_account_id: string;
|
|
71948
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
71376
71949
|
acs_credential_pool_id?: string | undefined;
|
|
71377
71950
|
/** 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). */
|
|
71378
71951
|
acs_system_id: string;
|
|
@@ -71570,6 +72143,7 @@ export type Routes = {
|
|
|
71570
72143
|
user_identity_id?: string | undefined;
|
|
71571
72144
|
/** 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. */
|
|
71572
72145
|
connected_account_id: string;
|
|
72146
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
71573
72147
|
acs_credential_pool_id?: string | undefined;
|
|
71574
72148
|
/** 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). */
|
|
71575
72149
|
acs_system_id: string;
|
|
@@ -71690,6 +72264,7 @@ export type Routes = {
|
|
|
71690
72264
|
/** Endpoint ID in the Vostio access system. */
|
|
71691
72265
|
endpoint_id?: string | undefined;
|
|
71692
72266
|
} | undefined;
|
|
72267
|
+
/** Indicates whether Seam manages the credential. */
|
|
71693
72268
|
is_managed: true;
|
|
71694
72269
|
} | {
|
|
71695
72270
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -71700,6 +72275,7 @@ export type Routes = {
|
|
|
71700
72275
|
user_identity_id?: string | undefined;
|
|
71701
72276
|
/** 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. */
|
|
71702
72277
|
connected_account_id: string;
|
|
72278
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
71703
72279
|
acs_credential_pool_id?: string | undefined;
|
|
71704
72280
|
/** 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). */
|
|
71705
72281
|
acs_system_id: string;
|
|
@@ -71909,6 +72485,7 @@ export type Routes = {
|
|
|
71909
72485
|
user_identity_id?: string | undefined;
|
|
71910
72486
|
/** 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. */
|
|
71911
72487
|
connected_account_id: string;
|
|
72488
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
71912
72489
|
acs_credential_pool_id?: string | undefined;
|
|
71913
72490
|
/** 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). */
|
|
71914
72491
|
acs_system_id: string;
|
|
@@ -72029,6 +72606,7 @@ export type Routes = {
|
|
|
72029
72606
|
/** Endpoint ID in the Vostio access system. */
|
|
72030
72607
|
endpoint_id?: string | undefined;
|
|
72031
72608
|
} | undefined;
|
|
72609
|
+
/** Indicates whether Seam manages the credential. */
|
|
72032
72610
|
is_managed: true;
|
|
72033
72611
|
};
|
|
72034
72612
|
} | {
|
|
@@ -72814,20 +73392,21 @@ export type Routes = {
|
|
|
72814
73392
|
};
|
|
72815
73393
|
/** Errors associated with the phone. */
|
|
72816
73394
|
errors: {
|
|
73395
|
+
/** Unique identifier of the type of error. */
|
|
72817
73396
|
error_code: string;
|
|
73397
|
+
/** Detailed description of the error. */
|
|
72818
73398
|
message: string;
|
|
72819
73399
|
}[];
|
|
72820
73400
|
/** Warnings associated with the phone. */
|
|
72821
73401
|
warnings: {
|
|
73402
|
+
/** Unique identifier of the type of warning. */
|
|
72822
73403
|
warning_code: string;
|
|
73404
|
+
/** Detailed description of the warning. */
|
|
72823
73405
|
message: string;
|
|
72824
73406
|
}[];
|
|
72825
|
-
/**
|
|
72826
|
-
*/
|
|
73407
|
+
/** Type of the phone device, such as `ios_phone` or `android_phone`. */
|
|
72827
73408
|
device_type: 'ios_phone' | 'android_phone';
|
|
72828
|
-
/**
|
|
72829
|
-
Properties of the phone.
|
|
72830
|
-
*/
|
|
73409
|
+
/** Properties of the phone. */
|
|
72831
73410
|
properties: {
|
|
72832
73411
|
/** ASSA ABLOY Credential Service metadata for the phone. */
|
|
72833
73412
|
assa_abloy_credential_service_metadata?: {
|
|
@@ -72887,20 +73466,21 @@ export type Routes = {
|
|
|
72887
73466
|
};
|
|
72888
73467
|
/** Errors associated with the phone. */
|
|
72889
73468
|
errors: {
|
|
73469
|
+
/** Unique identifier of the type of error. */
|
|
72890
73470
|
error_code: string;
|
|
73471
|
+
/** Detailed description of the error. */
|
|
72891
73472
|
message: string;
|
|
72892
73473
|
}[];
|
|
72893
73474
|
/** Warnings associated with the phone. */
|
|
72894
73475
|
warnings: {
|
|
73476
|
+
/** Unique identifier of the type of warning. */
|
|
72895
73477
|
warning_code: string;
|
|
73478
|
+
/** Detailed description of the warning. */
|
|
72896
73479
|
message: string;
|
|
72897
73480
|
}[];
|
|
72898
|
-
/**
|
|
72899
|
-
*/
|
|
73481
|
+
/** Type of the phone device, such as `ios_phone` or `android_phone`. */
|
|
72900
73482
|
device_type: 'ios_phone' | 'android_phone';
|
|
72901
|
-
/**
|
|
72902
|
-
Properties of the phone.
|
|
72903
|
-
*/
|
|
73483
|
+
/** Properties of the phone. */
|
|
72904
73484
|
properties: {
|
|
72905
73485
|
/** ASSA ABLOY Credential Service metadata for the phone. */
|
|
72906
73486
|
assa_abloy_credential_service_metadata?: {
|
|
@@ -72987,20 +73567,21 @@ export type Routes = {
|
|
|
72987
73567
|
};
|
|
72988
73568
|
/** Errors associated with the phone. */
|
|
72989
73569
|
errors: {
|
|
73570
|
+
/** Unique identifier of the type of error. */
|
|
72990
73571
|
error_code: string;
|
|
73572
|
+
/** Detailed description of the error. */
|
|
72991
73573
|
message: string;
|
|
72992
73574
|
}[];
|
|
72993
73575
|
/** Warnings associated with the phone. */
|
|
72994
73576
|
warnings: {
|
|
73577
|
+
/** Unique identifier of the type of warning. */
|
|
72995
73578
|
warning_code: string;
|
|
73579
|
+
/** Detailed description of the warning. */
|
|
72996
73580
|
message: string;
|
|
72997
73581
|
}[];
|
|
72998
|
-
/**
|
|
72999
|
-
*/
|
|
73582
|
+
/** Type of the phone device, such as `ios_phone` or `android_phone`. */
|
|
73000
73583
|
device_type: 'ios_phone' | 'android_phone';
|
|
73001
|
-
/**
|
|
73002
|
-
Properties of the phone.
|
|
73003
|
-
*/
|
|
73584
|
+
/** Properties of the phone. */
|
|
73004
73585
|
properties: {
|
|
73005
73586
|
/** ASSA ABLOY Credential Service metadata for the phone. */
|
|
73006
73587
|
assa_abloy_credential_service_metadata?: {
|
|
@@ -74108,6 +74689,7 @@ export type Routes = {
|
|
|
74108
74689
|
acs_credential_on_encoder: {
|
|
74109
74690
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
74110
74691
|
created_at: string | null;
|
|
74692
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
74111
74693
|
is_issued: boolean | null;
|
|
74112
74694
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
74113
74695
|
starts_at: string | null;
|
|
@@ -74153,6 +74735,7 @@ export type Routes = {
|
|
|
74153
74735
|
user_identity_id?: string | undefined;
|
|
74154
74736
|
/** 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. */
|
|
74155
74737
|
connected_account_id: string;
|
|
74738
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
74156
74739
|
acs_credential_pool_id?: string | undefined;
|
|
74157
74740
|
/** 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). */
|
|
74158
74741
|
acs_system_id: string;
|
|
@@ -74273,6 +74856,7 @@ export type Routes = {
|
|
|
74273
74856
|
/** Endpoint ID in the Vostio access system. */
|
|
74274
74857
|
endpoint_id?: string | undefined;
|
|
74275
74858
|
} | undefined;
|
|
74859
|
+
/** Indicates whether Seam manages the credential. */
|
|
74276
74860
|
is_managed: true;
|
|
74277
74861
|
} | {
|
|
74278
74862
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -74283,6 +74867,7 @@ export type Routes = {
|
|
|
74283
74867
|
user_identity_id?: string | undefined;
|
|
74284
74868
|
/** 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. */
|
|
74285
74869
|
connected_account_id: string;
|
|
74870
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
74286
74871
|
acs_credential_pool_id?: string | undefined;
|
|
74287
74872
|
/** 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). */
|
|
74288
74873
|
acs_system_id: string;
|
|
@@ -74480,6 +75065,7 @@ export type Routes = {
|
|
|
74480
75065
|
user_identity_id?: string | undefined;
|
|
74481
75066
|
/** 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. */
|
|
74482
75067
|
connected_account_id: string;
|
|
75068
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
74483
75069
|
acs_credential_pool_id?: string | undefined;
|
|
74484
75070
|
/** 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). */
|
|
74485
75071
|
acs_system_id: string;
|
|
@@ -74600,6 +75186,7 @@ export type Routes = {
|
|
|
74600
75186
|
/** Endpoint ID in the Vostio access system. */
|
|
74601
75187
|
endpoint_id?: string | undefined;
|
|
74602
75188
|
} | undefined;
|
|
75189
|
+
/** Indicates whether Seam manages the credential. */
|
|
74603
75190
|
is_managed: true;
|
|
74604
75191
|
} | {
|
|
74605
75192
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -74610,6 +75197,7 @@ export type Routes = {
|
|
|
74610
75197
|
user_identity_id?: string | undefined;
|
|
74611
75198
|
/** 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. */
|
|
74612
75199
|
connected_account_id: string;
|
|
75200
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
74613
75201
|
acs_credential_pool_id?: string | undefined;
|
|
74614
75202
|
/** 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). */
|
|
74615
75203
|
acs_system_id: string;
|
|
@@ -74819,6 +75407,7 @@ export type Routes = {
|
|
|
74819
75407
|
user_identity_id?: string | undefined;
|
|
74820
75408
|
/** 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. */
|
|
74821
75409
|
connected_account_id: string;
|
|
75410
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
74822
75411
|
acs_credential_pool_id?: string | undefined;
|
|
74823
75412
|
/** 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). */
|
|
74824
75413
|
acs_system_id: string;
|
|
@@ -74939,6 +75528,7 @@ export type Routes = {
|
|
|
74939
75528
|
/** Endpoint ID in the Vostio access system. */
|
|
74940
75529
|
endpoint_id?: string | undefined;
|
|
74941
75530
|
} | undefined;
|
|
75531
|
+
/** Indicates whether Seam manages the credential. */
|
|
74942
75532
|
is_managed: true;
|
|
74943
75533
|
};
|
|
74944
75534
|
} | {
|
|
@@ -77174,6 +77764,7 @@ export type Routes = {
|
|
|
77174
77764
|
[x: string]: string | boolean;
|
|
77175
77765
|
} | undefined;
|
|
77176
77766
|
event_type: 'access_code.backup_access_code_pulled';
|
|
77767
|
+
/** ID of the backup access code that was pulled from the pool. */
|
|
77177
77768
|
backup_access_code_id: string;
|
|
77178
77769
|
} | {
|
|
77179
77770
|
/** ID of the event. */
|
|
@@ -77682,6 +78273,7 @@ export type Routes = {
|
|
|
77682
78273
|
connected_account_id?: string | undefined;
|
|
77683
78274
|
/** ID of the access system. */
|
|
77684
78275
|
acs_system_id: string;
|
|
78276
|
+
/** ID of the affected access system user. */
|
|
77685
78277
|
acs_user_id: string;
|
|
77686
78278
|
event_type: 'acs_user.created';
|
|
77687
78279
|
} | {
|
|
@@ -77697,6 +78289,7 @@ export type Routes = {
|
|
|
77697
78289
|
connected_account_id?: string | undefined;
|
|
77698
78290
|
/** ID of the access system. */
|
|
77699
78291
|
acs_system_id: string;
|
|
78292
|
+
/** ID of the affected access system user. */
|
|
77700
78293
|
acs_user_id: string;
|
|
77701
78294
|
event_type: 'acs_user.deleted';
|
|
77702
78295
|
} | {
|
|
@@ -77760,6 +78353,7 @@ export type Routes = {
|
|
|
77760
78353
|
connected_account_id?: string | undefined;
|
|
77761
78354
|
/** ID of the access system. */
|
|
77762
78355
|
acs_system_id: string;
|
|
78356
|
+
/** ID of the affected entrance. */
|
|
77763
78357
|
acs_entrance_id: string;
|
|
77764
78358
|
event_type: 'acs_entrance.added';
|
|
77765
78359
|
} | {
|
|
@@ -77775,6 +78369,7 @@ export type Routes = {
|
|
|
77775
78369
|
connected_account_id?: string | undefined;
|
|
77776
78370
|
/** ID of the access system. */
|
|
77777
78371
|
acs_system_id: string;
|
|
78372
|
+
/** ID of the affected entrance. */
|
|
77778
78373
|
acs_entrance_id: string;
|
|
77779
78374
|
event_type: 'acs_entrance.removed';
|
|
77780
78375
|
} | {
|
|
@@ -79031,7 +79626,7 @@ export type Routes = {
|
|
|
79031
79626
|
/** Date and time at which the event occurred. */
|
|
79032
79627
|
occurred_at: string;
|
|
79033
79628
|
/** ID of the affected device. */
|
|
79034
|
-
device_id
|
|
79629
|
+
device_id?: string | undefined;
|
|
79035
79630
|
/** ID of the connected account associated with the event. */
|
|
79036
79631
|
connected_account_id: string;
|
|
79037
79632
|
/** The customer key associated with the device, if any. */
|
|
@@ -79047,6 +79642,30 @@ export type Routes = {
|
|
|
79047
79642
|
event_type: 'lock.access_denied';
|
|
79048
79643
|
/** ID of the access code that was used in the unlock attempts. */
|
|
79049
79644
|
access_code_id?: string | undefined;
|
|
79645
|
+
/**
|
|
79646
|
+
undocumented: Unreleased.
|
|
79647
|
+
---
|
|
79648
|
+
ID of the user identity associated with the access-denied event.
|
|
79649
|
+
*/
|
|
79650
|
+
user_identity_id?: string | undefined;
|
|
79651
|
+
/**
|
|
79652
|
+
undocumented: Unreleased.
|
|
79653
|
+
---
|
|
79654
|
+
ID of the ACS system associated with the access-denied event.
|
|
79655
|
+
*/
|
|
79656
|
+
acs_system_id?: string | undefined;
|
|
79657
|
+
/**
|
|
79658
|
+
undocumented: Unreleased.
|
|
79659
|
+
---
|
|
79660
|
+
ID of the ACS user associated with the access-denied event.
|
|
79661
|
+
*/
|
|
79662
|
+
acs_user_id?: string | undefined;
|
|
79663
|
+
/**
|
|
79664
|
+
undocumented: Unreleased.
|
|
79665
|
+
---
|
|
79666
|
+
ID of the ACS entrance associated with the access-denied event.
|
|
79667
|
+
*/
|
|
79668
|
+
acs_entrance_id?: string | undefined;
|
|
79050
79669
|
} | {
|
|
79051
79670
|
/** ID of the event. */
|
|
79052
79671
|
event_id: string;
|
|
@@ -80742,6 +81361,7 @@ export type Routes = {
|
|
|
80742
81361
|
user_identity_id?: string | undefined;
|
|
80743
81362
|
/** 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. */
|
|
80744
81363
|
connected_account_id: string;
|
|
81364
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
80745
81365
|
acs_credential_pool_id?: string | undefined;
|
|
80746
81366
|
/** 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). */
|
|
80747
81367
|
acs_system_id: string;
|
|
@@ -80862,6 +81482,7 @@ export type Routes = {
|
|
|
80862
81482
|
/** Endpoint ID in the Vostio access system. */
|
|
80863
81483
|
endpoint_id?: string | undefined;
|
|
80864
81484
|
} | undefined;
|
|
81485
|
+
/** Indicates whether Seam manages the credential. */
|
|
80865
81486
|
is_managed: true;
|
|
80866
81487
|
}[];
|
|
80867
81488
|
};
|
|
@@ -80909,6 +81530,7 @@ export type Routes = {
|
|
|
80909
81530
|
user_identity_id?: string | undefined;
|
|
80910
81531
|
/** 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. */
|
|
80911
81532
|
connected_account_id: string;
|
|
81533
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
80912
81534
|
acs_credential_pool_id?: string | undefined;
|
|
80913
81535
|
/** 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). */
|
|
80914
81536
|
acs_system_id: string;
|
|
@@ -81029,6 +81651,7 @@ export type Routes = {
|
|
|
81029
81651
|
/** Endpoint ID in the Vostio access system. */
|
|
81030
81652
|
endpoint_id?: string | undefined;
|
|
81031
81653
|
} | undefined;
|
|
81654
|
+
/** Indicates whether Seam manages the credential. */
|
|
81032
81655
|
is_managed: true;
|
|
81033
81656
|
acs_credential_id: string | null;
|
|
81034
81657
|
acs_entrances: {
|
|
@@ -81223,7 +81846,9 @@ export type Routes = {
|
|
|
81223
81846
|
email_address: string | null;
|
|
81224
81847
|
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
81225
81848
|
phone_number: string | null;
|
|
81849
|
+
/** Display name for the user identity. */
|
|
81226
81850
|
display_name: string;
|
|
81851
|
+
/** Full name of the user associated with the user identity. */
|
|
81227
81852
|
full_name: string | null;
|
|
81228
81853
|
/** Date and time at which the user identity was created. */
|
|
81229
81854
|
created_at: string;
|
|
@@ -82927,25 +83552,45 @@ export type Routes = {
|
|
|
82927
83552
|
/** Image URL for the manufacturer logo. */
|
|
82928
83553
|
image_url?: string | undefined;
|
|
82929
83554
|
} | undefined;
|
|
83555
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
82930
83556
|
can_remotely_unlock?: boolean | undefined;
|
|
83557
|
+
/** Indicates whether the device supports remote locking. */
|
|
82931
83558
|
can_remotely_lock?: boolean | undefined;
|
|
83559
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
82932
83560
|
can_program_offline_access_codes?: boolean | undefined;
|
|
83561
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
82933
83562
|
can_program_online_access_codes?: boolean | undefined;
|
|
83563
|
+
/** Indicates whether the thermostat supports heating. */
|
|
82934
83564
|
can_hvac_heat?: boolean | undefined;
|
|
83565
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
82935
83566
|
can_hvac_cool?: boolean | undefined;
|
|
83567
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
82936
83568
|
can_hvac_heat_cool?: boolean | undefined;
|
|
83569
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
82937
83570
|
can_turn_off_hvac?: boolean | undefined;
|
|
83571
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
82938
83572
|
can_simulate_removal?: boolean | undefined;
|
|
83573
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
82939
83574
|
can_simulate_connection?: boolean | undefined;
|
|
83575
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
82940
83576
|
can_simulate_disconnection?: boolean | undefined;
|
|
83577
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
82941
83578
|
can_unlock_with_code?: boolean | undefined;
|
|
83579
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
82942
83580
|
can_run_thermostat_programs?: boolean | undefined;
|
|
83581
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
82943
83582
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
83583
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
82944
83584
|
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
83585
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
82945
83586
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
83587
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
82946
83588
|
can_simulate_hub_connection?: boolean | undefined;
|
|
83589
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
82947
83590
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
83591
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
82948
83592
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
83593
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
82949
83594
|
can_configure_auto_lock?: boolean | undefined;
|
|
82950
83595
|
}[] | undefined;
|
|
82951
83596
|
acs_entrances?: {
|
|
@@ -83313,7 +83958,9 @@ export type Routes = {
|
|
|
83313
83958
|
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
83314
83959
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
83315
83960
|
acs_system_id: string;
|
|
83961
|
+
/** Number of users in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
83316
83962
|
acs_user_count?: number | undefined;
|
|
83963
|
+
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
83317
83964
|
acs_access_group_count?: number | undefined;
|
|
83318
83965
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
83319
83966
|
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
|
|
@@ -83321,6 +83968,7 @@ export type Routes = {
|
|
|
83321
83968
|
external_type_display_name?: string | undefined;
|
|
83322
83969
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
83323
83970
|
is_credential_manager: boolean;
|
|
83971
|
+
/** Visionline-specific metadata for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
83324
83972
|
visionline_metadata?: {
|
|
83325
83973
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
83326
83974
|
mobile_access_uuid: string;
|
|
@@ -83335,6 +83983,7 @@ export type Routes = {
|
|
|
83335
83983
|
/**
|
|
83336
83984
|
* @deprecated Use `external_type_display_name`.*/
|
|
83337
83985
|
system_type_display_name?: string | undefined;
|
|
83986
|
+
/** Location information for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
83338
83987
|
location: {
|
|
83339
83988
|
/** Time zone in which the [access control system](https://docs.seam.co/low-level-apis/access-systems) is located. */
|
|
83340
83989
|
time_zone: string | null;
|
|
@@ -83369,6 +84018,7 @@ export type Routes = {
|
|
|
83369
84018
|
message: string;
|
|
83370
84019
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83371
84020
|
error_code: 'bridge_disconnected';
|
|
84021
|
+
/** Indicates whether the error is related to the [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
83372
84022
|
is_bridge_error?: boolean | undefined;
|
|
83373
84023
|
} | {
|
|
83374
84024
|
/** Date and time at which Seam created the error. */
|
|
@@ -83880,6 +84530,7 @@ export type Routes = {
|
|
|
83880
84530
|
acs_credential_on_encoder: {
|
|
83881
84531
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
83882
84532
|
created_at: string | null;
|
|
84533
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
83883
84534
|
is_issued: boolean | null;
|
|
83884
84535
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
83885
84536
|
starts_at: string | null;
|
|
@@ -83925,6 +84576,7 @@ export type Routes = {
|
|
|
83925
84576
|
user_identity_id?: string | undefined;
|
|
83926
84577
|
/** 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. */
|
|
83927
84578
|
connected_account_id: string;
|
|
84579
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
83928
84580
|
acs_credential_pool_id?: string | undefined;
|
|
83929
84581
|
/** 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). */
|
|
83930
84582
|
acs_system_id: string;
|
|
@@ -84045,6 +84697,7 @@ export type Routes = {
|
|
|
84045
84697
|
/** Endpoint ID in the Vostio access system. */
|
|
84046
84698
|
endpoint_id?: string | undefined;
|
|
84047
84699
|
} | undefined;
|
|
84700
|
+
/** Indicates whether Seam manages the credential. */
|
|
84048
84701
|
is_managed: true;
|
|
84049
84702
|
} | {
|
|
84050
84703
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -84055,6 +84708,7 @@ export type Routes = {
|
|
|
84055
84708
|
user_identity_id?: string | undefined;
|
|
84056
84709
|
/** 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. */
|
|
84057
84710
|
connected_account_id: string;
|
|
84711
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
84058
84712
|
acs_credential_pool_id?: string | undefined;
|
|
84059
84713
|
/** 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). */
|
|
84060
84714
|
acs_system_id: string;
|
|
@@ -84252,6 +84906,7 @@ export type Routes = {
|
|
|
84252
84906
|
user_identity_id?: string | undefined;
|
|
84253
84907
|
/** 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. */
|
|
84254
84908
|
connected_account_id: string;
|
|
84909
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
84255
84910
|
acs_credential_pool_id?: string | undefined;
|
|
84256
84911
|
/** 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). */
|
|
84257
84912
|
acs_system_id: string;
|
|
@@ -84372,6 +85027,7 @@ export type Routes = {
|
|
|
84372
85027
|
/** Endpoint ID in the Vostio access system. */
|
|
84373
85028
|
endpoint_id?: string | undefined;
|
|
84374
85029
|
} | undefined;
|
|
85030
|
+
/** Indicates whether Seam manages the credential. */
|
|
84375
85031
|
is_managed: true;
|
|
84376
85032
|
} | {
|
|
84377
85033
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -84382,6 +85038,7 @@ export type Routes = {
|
|
|
84382
85038
|
user_identity_id?: string | undefined;
|
|
84383
85039
|
/** 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. */
|
|
84384
85040
|
connected_account_id: string;
|
|
85041
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
84385
85042
|
acs_credential_pool_id?: string | undefined;
|
|
84386
85043
|
/** 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). */
|
|
84387
85044
|
acs_system_id: string;
|
|
@@ -84591,6 +85248,7 @@ export type Routes = {
|
|
|
84591
85248
|
user_identity_id?: string | undefined;
|
|
84592
85249
|
/** 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. */
|
|
84593
85250
|
connected_account_id: string;
|
|
85251
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
84594
85252
|
acs_credential_pool_id?: string | undefined;
|
|
84595
85253
|
/** 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). */
|
|
84596
85254
|
acs_system_id: string;
|
|
@@ -84711,6 +85369,7 @@ export type Routes = {
|
|
|
84711
85369
|
/** Endpoint ID in the Vostio access system. */
|
|
84712
85370
|
endpoint_id?: string | undefined;
|
|
84713
85371
|
} | undefined;
|
|
85372
|
+
/** Indicates whether Seam manages the credential. */
|
|
84714
85373
|
is_managed: true;
|
|
84715
85374
|
};
|
|
84716
85375
|
} | {
|
|
@@ -85557,6 +86216,7 @@ export type Routes = {
|
|
|
85557
86216
|
acs_credential_on_encoder: {
|
|
85558
86217
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
85559
86218
|
created_at: string | null;
|
|
86219
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
85560
86220
|
is_issued: boolean | null;
|
|
85561
86221
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
85562
86222
|
starts_at: string | null;
|
|
@@ -85602,6 +86262,7 @@ export type Routes = {
|
|
|
85602
86262
|
user_identity_id?: string | undefined;
|
|
85603
86263
|
/** 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. */
|
|
85604
86264
|
connected_account_id: string;
|
|
86265
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
85605
86266
|
acs_credential_pool_id?: string | undefined;
|
|
85606
86267
|
/** 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). */
|
|
85607
86268
|
acs_system_id: string;
|
|
@@ -85722,6 +86383,7 @@ export type Routes = {
|
|
|
85722
86383
|
/** Endpoint ID in the Vostio access system. */
|
|
85723
86384
|
endpoint_id?: string | undefined;
|
|
85724
86385
|
} | undefined;
|
|
86386
|
+
/** Indicates whether Seam manages the credential. */
|
|
85725
86387
|
is_managed: true;
|
|
85726
86388
|
} | {
|
|
85727
86389
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -85732,6 +86394,7 @@ export type Routes = {
|
|
|
85732
86394
|
user_identity_id?: string | undefined;
|
|
85733
86395
|
/** 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. */
|
|
85734
86396
|
connected_account_id: string;
|
|
86397
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
85735
86398
|
acs_credential_pool_id?: string | undefined;
|
|
85736
86399
|
/** 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). */
|
|
85737
86400
|
acs_system_id: string;
|
|
@@ -85929,6 +86592,7 @@ export type Routes = {
|
|
|
85929
86592
|
user_identity_id?: string | undefined;
|
|
85930
86593
|
/** 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. */
|
|
85931
86594
|
connected_account_id: string;
|
|
86595
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
85932
86596
|
acs_credential_pool_id?: string | undefined;
|
|
85933
86597
|
/** 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). */
|
|
85934
86598
|
acs_system_id: string;
|
|
@@ -86049,6 +86713,7 @@ export type Routes = {
|
|
|
86049
86713
|
/** Endpoint ID in the Vostio access system. */
|
|
86050
86714
|
endpoint_id?: string | undefined;
|
|
86051
86715
|
} | undefined;
|
|
86716
|
+
/** Indicates whether Seam manages the credential. */
|
|
86052
86717
|
is_managed: true;
|
|
86053
86718
|
} | {
|
|
86054
86719
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -86059,6 +86724,7 @@ export type Routes = {
|
|
|
86059
86724
|
user_identity_id?: string | undefined;
|
|
86060
86725
|
/** 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. */
|
|
86061
86726
|
connected_account_id: string;
|
|
86727
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
86062
86728
|
acs_credential_pool_id?: string | undefined;
|
|
86063
86729
|
/** 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). */
|
|
86064
86730
|
acs_system_id: string;
|
|
@@ -86268,6 +86934,7 @@ export type Routes = {
|
|
|
86268
86934
|
user_identity_id?: string | undefined;
|
|
86269
86935
|
/** 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. */
|
|
86270
86936
|
connected_account_id: string;
|
|
86937
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
86271
86938
|
acs_credential_pool_id?: string | undefined;
|
|
86272
86939
|
/** 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). */
|
|
86273
86940
|
acs_system_id: string;
|
|
@@ -86388,6 +87055,7 @@ export type Routes = {
|
|
|
86388
87055
|
/** Endpoint ID in the Vostio access system. */
|
|
86389
87056
|
endpoint_id?: string | undefined;
|
|
86390
87057
|
} | undefined;
|
|
87058
|
+
/** Indicates whether Seam manages the credential. */
|
|
86391
87059
|
is_managed: true;
|
|
86392
87060
|
};
|
|
86393
87061
|
} | {
|
|
@@ -87340,6 +88008,7 @@ export type Routes = {
|
|
|
87340
88008
|
acs_credential_on_encoder: {
|
|
87341
88009
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
87342
88010
|
created_at: string | null;
|
|
88011
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
87343
88012
|
is_issued: boolean | null;
|
|
87344
88013
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
87345
88014
|
starts_at: string | null;
|
|
@@ -87385,6 +88054,7 @@ export type Routes = {
|
|
|
87385
88054
|
user_identity_id?: string | undefined;
|
|
87386
88055
|
/** 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. */
|
|
87387
88056
|
connected_account_id: string;
|
|
88057
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
87388
88058
|
acs_credential_pool_id?: string | undefined;
|
|
87389
88059
|
/** 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). */
|
|
87390
88060
|
acs_system_id: string;
|
|
@@ -87505,6 +88175,7 @@ export type Routes = {
|
|
|
87505
88175
|
/** Endpoint ID in the Vostio access system. */
|
|
87506
88176
|
endpoint_id?: string | undefined;
|
|
87507
88177
|
} | undefined;
|
|
88178
|
+
/** Indicates whether Seam manages the credential. */
|
|
87508
88179
|
is_managed: true;
|
|
87509
88180
|
} | {
|
|
87510
88181
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -87515,6 +88186,7 @@ export type Routes = {
|
|
|
87515
88186
|
user_identity_id?: string | undefined;
|
|
87516
88187
|
/** 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. */
|
|
87517
88188
|
connected_account_id: string;
|
|
88189
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
87518
88190
|
acs_credential_pool_id?: string | undefined;
|
|
87519
88191
|
/** 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). */
|
|
87520
88192
|
acs_system_id: string;
|
|
@@ -87712,6 +88384,7 @@ export type Routes = {
|
|
|
87712
88384
|
user_identity_id?: string | undefined;
|
|
87713
88385
|
/** 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. */
|
|
87714
88386
|
connected_account_id: string;
|
|
88387
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
87715
88388
|
acs_credential_pool_id?: string | undefined;
|
|
87716
88389
|
/** 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). */
|
|
87717
88390
|
acs_system_id: string;
|
|
@@ -87832,6 +88505,7 @@ export type Routes = {
|
|
|
87832
88505
|
/** Endpoint ID in the Vostio access system. */
|
|
87833
88506
|
endpoint_id?: string | undefined;
|
|
87834
88507
|
} | undefined;
|
|
88508
|
+
/** Indicates whether Seam manages the credential. */
|
|
87835
88509
|
is_managed: true;
|
|
87836
88510
|
} | {
|
|
87837
88511
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -87842,6 +88516,7 @@ export type Routes = {
|
|
|
87842
88516
|
user_identity_id?: string | undefined;
|
|
87843
88517
|
/** 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. */
|
|
87844
88518
|
connected_account_id: string;
|
|
88519
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
87845
88520
|
acs_credential_pool_id?: string | undefined;
|
|
87846
88521
|
/** 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). */
|
|
87847
88522
|
acs_system_id: string;
|
|
@@ -88051,6 +88726,7 @@ export type Routes = {
|
|
|
88051
88726
|
user_identity_id?: string | undefined;
|
|
88052
88727
|
/** 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. */
|
|
88053
88728
|
connected_account_id: string;
|
|
88729
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
88054
88730
|
acs_credential_pool_id?: string | undefined;
|
|
88055
88731
|
/** 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). */
|
|
88056
88732
|
acs_system_id: string;
|
|
@@ -88171,6 +88847,7 @@ export type Routes = {
|
|
|
88171
88847
|
/** Endpoint ID in the Vostio access system. */
|
|
88172
88848
|
endpoint_id?: string | undefined;
|
|
88173
88849
|
} | undefined;
|
|
88850
|
+
/** Indicates whether Seam manages the credential. */
|
|
88174
88851
|
is_managed: true;
|
|
88175
88852
|
};
|
|
88176
88853
|
} | {
|
|
@@ -90274,25 +90951,45 @@ export type Routes = {
|
|
|
90274
90951
|
/** Image URL for the manufacturer logo. */
|
|
90275
90952
|
image_url?: string | undefined;
|
|
90276
90953
|
} | undefined;
|
|
90954
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
90277
90955
|
can_remotely_unlock?: boolean | undefined;
|
|
90956
|
+
/** Indicates whether the device supports remote locking. */
|
|
90278
90957
|
can_remotely_lock?: boolean | undefined;
|
|
90958
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
90279
90959
|
can_program_offline_access_codes?: boolean | undefined;
|
|
90960
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
90280
90961
|
can_program_online_access_codes?: boolean | undefined;
|
|
90962
|
+
/** Indicates whether the thermostat supports heating. */
|
|
90281
90963
|
can_hvac_heat?: boolean | undefined;
|
|
90964
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
90282
90965
|
can_hvac_cool?: boolean | undefined;
|
|
90966
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
90283
90967
|
can_hvac_heat_cool?: boolean | undefined;
|
|
90968
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
90284
90969
|
can_turn_off_hvac?: boolean | undefined;
|
|
90970
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
90285
90971
|
can_simulate_removal?: boolean | undefined;
|
|
90972
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
90286
90973
|
can_simulate_connection?: boolean | undefined;
|
|
90974
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
90287
90975
|
can_simulate_disconnection?: boolean | undefined;
|
|
90976
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
90288
90977
|
can_unlock_with_code?: boolean | undefined;
|
|
90978
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
90289
90979
|
can_run_thermostat_programs?: boolean | undefined;
|
|
90980
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
90290
90981
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
90982
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
90291
90983
|
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
90984
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
90292
90985
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
90986
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
90293
90987
|
can_simulate_hub_connection?: boolean | undefined;
|
|
90988
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
90294
90989
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
90990
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
90295
90991
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
90992
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
90296
90993
|
can_configure_auto_lock?: boolean | undefined;
|
|
90297
90994
|
};
|
|
90298
90995
|
};
|
|
@@ -90420,6 +91117,7 @@ export type Routes = {
|
|
|
90420
91117
|
acs_credential_on_encoder: {
|
|
90421
91118
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
90422
91119
|
created_at: string | null;
|
|
91120
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
90423
91121
|
is_issued: boolean | null;
|
|
90424
91122
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
90425
91123
|
starts_at: string | null;
|
|
@@ -90465,6 +91163,7 @@ export type Routes = {
|
|
|
90465
91163
|
user_identity_id?: string | undefined;
|
|
90466
91164
|
/** 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. */
|
|
90467
91165
|
connected_account_id: string;
|
|
91166
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
90468
91167
|
acs_credential_pool_id?: string | undefined;
|
|
90469
91168
|
/** 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). */
|
|
90470
91169
|
acs_system_id: string;
|
|
@@ -90585,6 +91284,7 @@ export type Routes = {
|
|
|
90585
91284
|
/** Endpoint ID in the Vostio access system. */
|
|
90586
91285
|
endpoint_id?: string | undefined;
|
|
90587
91286
|
} | undefined;
|
|
91287
|
+
/** Indicates whether Seam manages the credential. */
|
|
90588
91288
|
is_managed: true;
|
|
90589
91289
|
} | {
|
|
90590
91290
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -90595,6 +91295,7 @@ export type Routes = {
|
|
|
90595
91295
|
user_identity_id?: string | undefined;
|
|
90596
91296
|
/** 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. */
|
|
90597
91297
|
connected_account_id: string;
|
|
91298
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
90598
91299
|
acs_credential_pool_id?: string | undefined;
|
|
90599
91300
|
/** 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). */
|
|
90600
91301
|
acs_system_id: string;
|
|
@@ -90792,6 +91493,7 @@ export type Routes = {
|
|
|
90792
91493
|
user_identity_id?: string | undefined;
|
|
90793
91494
|
/** 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. */
|
|
90794
91495
|
connected_account_id: string;
|
|
91496
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
90795
91497
|
acs_credential_pool_id?: string | undefined;
|
|
90796
91498
|
/** 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). */
|
|
90797
91499
|
acs_system_id: string;
|
|
@@ -90912,6 +91614,7 @@ export type Routes = {
|
|
|
90912
91614
|
/** Endpoint ID in the Vostio access system. */
|
|
90913
91615
|
endpoint_id?: string | undefined;
|
|
90914
91616
|
} | undefined;
|
|
91617
|
+
/** Indicates whether Seam manages the credential. */
|
|
90915
91618
|
is_managed: true;
|
|
90916
91619
|
} | {
|
|
90917
91620
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -90922,6 +91625,7 @@ export type Routes = {
|
|
|
90922
91625
|
user_identity_id?: string | undefined;
|
|
90923
91626
|
/** 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. */
|
|
90924
91627
|
connected_account_id: string;
|
|
91628
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
90925
91629
|
acs_credential_pool_id?: string | undefined;
|
|
90926
91630
|
/** 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). */
|
|
90927
91631
|
acs_system_id: string;
|
|
@@ -91131,6 +91835,7 @@ export type Routes = {
|
|
|
91131
91835
|
user_identity_id?: string | undefined;
|
|
91132
91836
|
/** 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. */
|
|
91133
91837
|
connected_account_id: string;
|
|
91838
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
91134
91839
|
acs_credential_pool_id?: string | undefined;
|
|
91135
91840
|
/** 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). */
|
|
91136
91841
|
acs_system_id: string;
|
|
@@ -91251,6 +91956,7 @@ export type Routes = {
|
|
|
91251
91956
|
/** Endpoint ID in the Vostio access system. */
|
|
91252
91957
|
endpoint_id?: string | undefined;
|
|
91253
91958
|
} | undefined;
|
|
91959
|
+
/** Indicates whether Seam manages the credential. */
|
|
91254
91960
|
is_managed: true;
|
|
91255
91961
|
};
|
|
91256
91962
|
} | {
|
|
@@ -92101,6 +92807,7 @@ export type Routes = {
|
|
|
92101
92807
|
acs_credential_on_encoder: {
|
|
92102
92808
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
92103
92809
|
created_at: string | null;
|
|
92810
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
92104
92811
|
is_issued: boolean | null;
|
|
92105
92812
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
92106
92813
|
starts_at: string | null;
|
|
@@ -92146,6 +92853,7 @@ export type Routes = {
|
|
|
92146
92853
|
user_identity_id?: string | undefined;
|
|
92147
92854
|
/** 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. */
|
|
92148
92855
|
connected_account_id: string;
|
|
92856
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
92149
92857
|
acs_credential_pool_id?: string | undefined;
|
|
92150
92858
|
/** 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). */
|
|
92151
92859
|
acs_system_id: string;
|
|
@@ -92266,6 +92974,7 @@ export type Routes = {
|
|
|
92266
92974
|
/** Endpoint ID in the Vostio access system. */
|
|
92267
92975
|
endpoint_id?: string | undefined;
|
|
92268
92976
|
} | undefined;
|
|
92977
|
+
/** Indicates whether Seam manages the credential. */
|
|
92269
92978
|
is_managed: true;
|
|
92270
92979
|
} | {
|
|
92271
92980
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -92276,6 +92985,7 @@ export type Routes = {
|
|
|
92276
92985
|
user_identity_id?: string | undefined;
|
|
92277
92986
|
/** 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. */
|
|
92278
92987
|
connected_account_id: string;
|
|
92988
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
92279
92989
|
acs_credential_pool_id?: string | undefined;
|
|
92280
92990
|
/** 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). */
|
|
92281
92991
|
acs_system_id: string;
|
|
@@ -92473,6 +93183,7 @@ export type Routes = {
|
|
|
92473
93183
|
user_identity_id?: string | undefined;
|
|
92474
93184
|
/** 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. */
|
|
92475
93185
|
connected_account_id: string;
|
|
93186
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
92476
93187
|
acs_credential_pool_id?: string | undefined;
|
|
92477
93188
|
/** 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). */
|
|
92478
93189
|
acs_system_id: string;
|
|
@@ -92593,6 +93304,7 @@ export type Routes = {
|
|
|
92593
93304
|
/** Endpoint ID in the Vostio access system. */
|
|
92594
93305
|
endpoint_id?: string | undefined;
|
|
92595
93306
|
} | undefined;
|
|
93307
|
+
/** Indicates whether Seam manages the credential. */
|
|
92596
93308
|
is_managed: true;
|
|
92597
93309
|
} | {
|
|
92598
93310
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -92603,6 +93315,7 @@ export type Routes = {
|
|
|
92603
93315
|
user_identity_id?: string | undefined;
|
|
92604
93316
|
/** 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. */
|
|
92605
93317
|
connected_account_id: string;
|
|
93318
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
92606
93319
|
acs_credential_pool_id?: string | undefined;
|
|
92607
93320
|
/** 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). */
|
|
92608
93321
|
acs_system_id: string;
|
|
@@ -92812,6 +93525,7 @@ export type Routes = {
|
|
|
92812
93525
|
user_identity_id?: string | undefined;
|
|
92813
93526
|
/** 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. */
|
|
92814
93527
|
connected_account_id: string;
|
|
93528
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
92815
93529
|
acs_credential_pool_id?: string | undefined;
|
|
92816
93530
|
/** 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). */
|
|
92817
93531
|
acs_system_id: string;
|
|
@@ -92932,6 +93646,7 @@ export type Routes = {
|
|
|
92932
93646
|
/** Endpoint ID in the Vostio access system. */
|
|
92933
93647
|
endpoint_id?: string | undefined;
|
|
92934
93648
|
} | undefined;
|
|
93649
|
+
/** Indicates whether Seam manages the credential. */
|
|
92935
93650
|
is_managed: true;
|
|
92936
93651
|
};
|
|
92937
93652
|
} | {
|
|
@@ -95054,25 +95769,45 @@ export type Routes = {
|
|
|
95054
95769
|
/** Image URL for the manufacturer logo. */
|
|
95055
95770
|
image_url?: string | undefined;
|
|
95056
95771
|
} | undefined;
|
|
95772
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
95057
95773
|
can_remotely_unlock?: boolean | undefined;
|
|
95774
|
+
/** Indicates whether the device supports remote locking. */
|
|
95058
95775
|
can_remotely_lock?: boolean | undefined;
|
|
95776
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
95059
95777
|
can_program_offline_access_codes?: boolean | undefined;
|
|
95778
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
95060
95779
|
can_program_online_access_codes?: boolean | undefined;
|
|
95780
|
+
/** Indicates whether the thermostat supports heating. */
|
|
95061
95781
|
can_hvac_heat?: boolean | undefined;
|
|
95782
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
95062
95783
|
can_hvac_cool?: boolean | undefined;
|
|
95784
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
95063
95785
|
can_hvac_heat_cool?: boolean | undefined;
|
|
95786
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
95064
95787
|
can_turn_off_hvac?: boolean | undefined;
|
|
95788
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
95065
95789
|
can_simulate_removal?: boolean | undefined;
|
|
95790
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
95066
95791
|
can_simulate_connection?: boolean | undefined;
|
|
95792
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
95067
95793
|
can_simulate_disconnection?: boolean | undefined;
|
|
95794
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
95068
95795
|
can_unlock_with_code?: boolean | undefined;
|
|
95796
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
95069
95797
|
can_run_thermostat_programs?: boolean | undefined;
|
|
95798
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
95070
95799
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
95800
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
95071
95801
|
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
95802
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
95072
95803
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
95804
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
95073
95805
|
can_simulate_hub_connection?: boolean | undefined;
|
|
95806
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
95074
95807
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
95808
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
95075
95809
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
95810
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
95076
95811
|
can_configure_auto_lock?: boolean | undefined;
|
|
95077
95812
|
}[];
|
|
95078
95813
|
devices: {
|
|
@@ -96425,25 +97160,45 @@ export type Routes = {
|
|
|
96425
97160
|
/** Image URL for the manufacturer logo. */
|
|
96426
97161
|
image_url?: string | undefined;
|
|
96427
97162
|
} | undefined;
|
|
97163
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
96428
97164
|
can_remotely_unlock?: boolean | undefined;
|
|
97165
|
+
/** Indicates whether the device supports remote locking. */
|
|
96429
97166
|
can_remotely_lock?: boolean | undefined;
|
|
97167
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
96430
97168
|
can_program_offline_access_codes?: boolean | undefined;
|
|
97169
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
96431
97170
|
can_program_online_access_codes?: boolean | undefined;
|
|
97171
|
+
/** Indicates whether the thermostat supports heating. */
|
|
96432
97172
|
can_hvac_heat?: boolean | undefined;
|
|
97173
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
96433
97174
|
can_hvac_cool?: boolean | undefined;
|
|
97175
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
96434
97176
|
can_hvac_heat_cool?: boolean | undefined;
|
|
97177
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
96435
97178
|
can_turn_off_hvac?: boolean | undefined;
|
|
97179
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
96436
97180
|
can_simulate_removal?: boolean | undefined;
|
|
97181
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
96437
97182
|
can_simulate_connection?: boolean | undefined;
|
|
97183
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
96438
97184
|
can_simulate_disconnection?: boolean | undefined;
|
|
97185
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
96439
97186
|
can_unlock_with_code?: boolean | undefined;
|
|
97187
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
96440
97188
|
can_run_thermostat_programs?: boolean | undefined;
|
|
97189
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
96441
97190
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
97191
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
96442
97192
|
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
97193
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
96443
97194
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
97195
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
96444
97196
|
can_simulate_hub_connection?: boolean | undefined;
|
|
97197
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
96445
97198
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
97199
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
96446
97200
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
97201
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
96447
97202
|
can_configure_auto_lock?: boolean | undefined;
|
|
96448
97203
|
}[];
|
|
96449
97204
|
};
|
|
@@ -96567,6 +97322,7 @@ export type Routes = {
|
|
|
96567
97322
|
acs_credential_on_encoder: {
|
|
96568
97323
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
96569
97324
|
created_at: string | null;
|
|
97325
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
96570
97326
|
is_issued: boolean | null;
|
|
96571
97327
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
96572
97328
|
starts_at: string | null;
|
|
@@ -96612,6 +97368,7 @@ export type Routes = {
|
|
|
96612
97368
|
user_identity_id?: string | undefined;
|
|
96613
97369
|
/** 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. */
|
|
96614
97370
|
connected_account_id: string;
|
|
97371
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
96615
97372
|
acs_credential_pool_id?: string | undefined;
|
|
96616
97373
|
/** 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). */
|
|
96617
97374
|
acs_system_id: string;
|
|
@@ -96732,6 +97489,7 @@ export type Routes = {
|
|
|
96732
97489
|
/** Endpoint ID in the Vostio access system. */
|
|
96733
97490
|
endpoint_id?: string | undefined;
|
|
96734
97491
|
} | undefined;
|
|
97492
|
+
/** Indicates whether Seam manages the credential. */
|
|
96735
97493
|
is_managed: true;
|
|
96736
97494
|
} | {
|
|
96737
97495
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -96742,6 +97500,7 @@ export type Routes = {
|
|
|
96742
97500
|
user_identity_id?: string | undefined;
|
|
96743
97501
|
/** 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. */
|
|
96744
97502
|
connected_account_id: string;
|
|
97503
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
96745
97504
|
acs_credential_pool_id?: string | undefined;
|
|
96746
97505
|
/** 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). */
|
|
96747
97506
|
acs_system_id: string;
|
|
@@ -96939,6 +97698,7 @@ export type Routes = {
|
|
|
96939
97698
|
user_identity_id?: string | undefined;
|
|
96940
97699
|
/** 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. */
|
|
96941
97700
|
connected_account_id: string;
|
|
97701
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
96942
97702
|
acs_credential_pool_id?: string | undefined;
|
|
96943
97703
|
/** 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). */
|
|
96944
97704
|
acs_system_id: string;
|
|
@@ -97059,6 +97819,7 @@ export type Routes = {
|
|
|
97059
97819
|
/** Endpoint ID in the Vostio access system. */
|
|
97060
97820
|
endpoint_id?: string | undefined;
|
|
97061
97821
|
} | undefined;
|
|
97822
|
+
/** Indicates whether Seam manages the credential. */
|
|
97062
97823
|
is_managed: true;
|
|
97063
97824
|
} | {
|
|
97064
97825
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -97069,6 +97830,7 @@ export type Routes = {
|
|
|
97069
97830
|
user_identity_id?: string | undefined;
|
|
97070
97831
|
/** 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. */
|
|
97071
97832
|
connected_account_id: string;
|
|
97833
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
97072
97834
|
acs_credential_pool_id?: string | undefined;
|
|
97073
97835
|
/** 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). */
|
|
97074
97836
|
acs_system_id: string;
|
|
@@ -97278,6 +98040,7 @@ export type Routes = {
|
|
|
97278
98040
|
user_identity_id?: string | undefined;
|
|
97279
98041
|
/** 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. */
|
|
97280
98042
|
connected_account_id: string;
|
|
98043
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
97281
98044
|
acs_credential_pool_id?: string | undefined;
|
|
97282
98045
|
/** 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). */
|
|
97283
98046
|
acs_system_id: string;
|
|
@@ -97398,6 +98161,7 @@ export type Routes = {
|
|
|
97398
98161
|
/** Endpoint ID in the Vostio access system. */
|
|
97399
98162
|
endpoint_id?: string | undefined;
|
|
97400
98163
|
} | undefined;
|
|
98164
|
+
/** Indicates whether Seam manages the credential. */
|
|
97401
98165
|
is_managed: true;
|
|
97402
98166
|
};
|
|
97403
98167
|
} | {
|
|
@@ -98443,6 +99207,7 @@ export type Routes = {
|
|
|
98443
99207
|
acs_credential_on_encoder: {
|
|
98444
99208
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
98445
99209
|
created_at: string | null;
|
|
99210
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
98446
99211
|
is_issued: boolean | null;
|
|
98447
99212
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
98448
99213
|
starts_at: string | null;
|
|
@@ -98488,6 +99253,7 @@ export type Routes = {
|
|
|
98488
99253
|
user_identity_id?: string | undefined;
|
|
98489
99254
|
/** 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. */
|
|
98490
99255
|
connected_account_id: string;
|
|
99256
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
98491
99257
|
acs_credential_pool_id?: string | undefined;
|
|
98492
99258
|
/** 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). */
|
|
98493
99259
|
acs_system_id: string;
|
|
@@ -98608,6 +99374,7 @@ export type Routes = {
|
|
|
98608
99374
|
/** Endpoint ID in the Vostio access system. */
|
|
98609
99375
|
endpoint_id?: string | undefined;
|
|
98610
99376
|
} | undefined;
|
|
99377
|
+
/** Indicates whether Seam manages the credential. */
|
|
98611
99378
|
is_managed: true;
|
|
98612
99379
|
} | {
|
|
98613
99380
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -98618,6 +99385,7 @@ export type Routes = {
|
|
|
98618
99385
|
user_identity_id?: string | undefined;
|
|
98619
99386
|
/** 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. */
|
|
98620
99387
|
connected_account_id: string;
|
|
99388
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
98621
99389
|
acs_credential_pool_id?: string | undefined;
|
|
98622
99390
|
/** 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). */
|
|
98623
99391
|
acs_system_id: string;
|
|
@@ -98815,6 +99583,7 @@ export type Routes = {
|
|
|
98815
99583
|
user_identity_id?: string | undefined;
|
|
98816
99584
|
/** 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. */
|
|
98817
99585
|
connected_account_id: string;
|
|
99586
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
98818
99587
|
acs_credential_pool_id?: string | undefined;
|
|
98819
99588
|
/** 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). */
|
|
98820
99589
|
acs_system_id: string;
|
|
@@ -98935,6 +99704,7 @@ export type Routes = {
|
|
|
98935
99704
|
/** Endpoint ID in the Vostio access system. */
|
|
98936
99705
|
endpoint_id?: string | undefined;
|
|
98937
99706
|
} | undefined;
|
|
99707
|
+
/** Indicates whether Seam manages the credential. */
|
|
98938
99708
|
is_managed: true;
|
|
98939
99709
|
} | {
|
|
98940
99710
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -98945,6 +99715,7 @@ export type Routes = {
|
|
|
98945
99715
|
user_identity_id?: string | undefined;
|
|
98946
99716
|
/** 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. */
|
|
98947
99717
|
connected_account_id: string;
|
|
99718
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
98948
99719
|
acs_credential_pool_id?: string | undefined;
|
|
98949
99720
|
/** 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). */
|
|
98950
99721
|
acs_system_id: string;
|
|
@@ -99154,6 +99925,7 @@ export type Routes = {
|
|
|
99154
99925
|
user_identity_id?: string | undefined;
|
|
99155
99926
|
/** 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. */
|
|
99156
99927
|
connected_account_id: string;
|
|
99928
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
99157
99929
|
acs_credential_pool_id?: string | undefined;
|
|
99158
99930
|
/** 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). */
|
|
99159
99931
|
acs_system_id: string;
|
|
@@ -99274,6 +100046,7 @@ export type Routes = {
|
|
|
99274
100046
|
/** Endpoint ID in the Vostio access system. */
|
|
99275
100047
|
endpoint_id?: string | undefined;
|
|
99276
100048
|
} | undefined;
|
|
100049
|
+
/** Indicates whether Seam manages the credential. */
|
|
99277
100050
|
is_managed: true;
|
|
99278
100051
|
};
|
|
99279
100052
|
} | {
|
|
@@ -100147,6 +100920,7 @@ export type Routes = {
|
|
|
100147
100920
|
acs_credential_on_encoder: {
|
|
100148
100921
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
100149
100922
|
created_at: string | null;
|
|
100923
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
100150
100924
|
is_issued: boolean | null;
|
|
100151
100925
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
100152
100926
|
starts_at: string | null;
|
|
@@ -100192,6 +100966,7 @@ export type Routes = {
|
|
|
100192
100966
|
user_identity_id?: string | undefined;
|
|
100193
100967
|
/** 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. */
|
|
100194
100968
|
connected_account_id: string;
|
|
100969
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
100195
100970
|
acs_credential_pool_id?: string | undefined;
|
|
100196
100971
|
/** 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). */
|
|
100197
100972
|
acs_system_id: string;
|
|
@@ -100312,6 +101087,7 @@ export type Routes = {
|
|
|
100312
101087
|
/** Endpoint ID in the Vostio access system. */
|
|
100313
101088
|
endpoint_id?: string | undefined;
|
|
100314
101089
|
} | undefined;
|
|
101090
|
+
/** Indicates whether Seam manages the credential. */
|
|
100315
101091
|
is_managed: true;
|
|
100316
101092
|
} | {
|
|
100317
101093
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -100322,6 +101098,7 @@ export type Routes = {
|
|
|
100322
101098
|
user_identity_id?: string | undefined;
|
|
100323
101099
|
/** 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. */
|
|
100324
101100
|
connected_account_id: string;
|
|
101101
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
100325
101102
|
acs_credential_pool_id?: string | undefined;
|
|
100326
101103
|
/** 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). */
|
|
100327
101104
|
acs_system_id: string;
|
|
@@ -100519,6 +101296,7 @@ export type Routes = {
|
|
|
100519
101296
|
user_identity_id?: string | undefined;
|
|
100520
101297
|
/** 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. */
|
|
100521
101298
|
connected_account_id: string;
|
|
101299
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
100522
101300
|
acs_credential_pool_id?: string | undefined;
|
|
100523
101301
|
/** 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). */
|
|
100524
101302
|
acs_system_id: string;
|
|
@@ -100639,6 +101417,7 @@ export type Routes = {
|
|
|
100639
101417
|
/** Endpoint ID in the Vostio access system. */
|
|
100640
101418
|
endpoint_id?: string | undefined;
|
|
100641
101419
|
} | undefined;
|
|
101420
|
+
/** Indicates whether Seam manages the credential. */
|
|
100642
101421
|
is_managed: true;
|
|
100643
101422
|
} | {
|
|
100644
101423
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -100649,6 +101428,7 @@ export type Routes = {
|
|
|
100649
101428
|
user_identity_id?: string | undefined;
|
|
100650
101429
|
/** 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. */
|
|
100651
101430
|
connected_account_id: string;
|
|
101431
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
100652
101432
|
acs_credential_pool_id?: string | undefined;
|
|
100653
101433
|
/** 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). */
|
|
100654
101434
|
acs_system_id: string;
|
|
@@ -100858,6 +101638,7 @@ export type Routes = {
|
|
|
100858
101638
|
user_identity_id?: string | undefined;
|
|
100859
101639
|
/** 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. */
|
|
100860
101640
|
connected_account_id: string;
|
|
101641
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
100861
101642
|
acs_credential_pool_id?: string | undefined;
|
|
100862
101643
|
/** 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). */
|
|
100863
101644
|
acs_system_id: string;
|
|
@@ -100978,6 +101759,7 @@ export type Routes = {
|
|
|
100978
101759
|
/** Endpoint ID in the Vostio access system. */
|
|
100979
101760
|
endpoint_id?: string | undefined;
|
|
100980
101761
|
} | undefined;
|
|
101762
|
+
/** Indicates whether Seam manages the credential. */
|
|
100981
101763
|
is_managed: true;
|
|
100982
101764
|
};
|
|
100983
101765
|
} | {
|
|
@@ -101963,6 +102745,7 @@ export type Routes = {
|
|
|
101963
102745
|
acs_credential_on_encoder: {
|
|
101964
102746
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
101965
102747
|
created_at: string | null;
|
|
102748
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
101966
102749
|
is_issued: boolean | null;
|
|
101967
102750
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
101968
102751
|
starts_at: string | null;
|
|
@@ -102008,6 +102791,7 @@ export type Routes = {
|
|
|
102008
102791
|
user_identity_id?: string | undefined;
|
|
102009
102792
|
/** 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. */
|
|
102010
102793
|
connected_account_id: string;
|
|
102794
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
102011
102795
|
acs_credential_pool_id?: string | undefined;
|
|
102012
102796
|
/** 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). */
|
|
102013
102797
|
acs_system_id: string;
|
|
@@ -102128,6 +102912,7 @@ export type Routes = {
|
|
|
102128
102912
|
/** Endpoint ID in the Vostio access system. */
|
|
102129
102913
|
endpoint_id?: string | undefined;
|
|
102130
102914
|
} | undefined;
|
|
102915
|
+
/** Indicates whether Seam manages the credential. */
|
|
102131
102916
|
is_managed: true;
|
|
102132
102917
|
} | {
|
|
102133
102918
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -102138,6 +102923,7 @@ export type Routes = {
|
|
|
102138
102923
|
user_identity_id?: string | undefined;
|
|
102139
102924
|
/** 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. */
|
|
102140
102925
|
connected_account_id: string;
|
|
102926
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
102141
102927
|
acs_credential_pool_id?: string | undefined;
|
|
102142
102928
|
/** 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). */
|
|
102143
102929
|
acs_system_id: string;
|
|
@@ -102335,6 +103121,7 @@ export type Routes = {
|
|
|
102335
103121
|
user_identity_id?: string | undefined;
|
|
102336
103122
|
/** 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. */
|
|
102337
103123
|
connected_account_id: string;
|
|
103124
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
102338
103125
|
acs_credential_pool_id?: string | undefined;
|
|
102339
103126
|
/** 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). */
|
|
102340
103127
|
acs_system_id: string;
|
|
@@ -102455,6 +103242,7 @@ export type Routes = {
|
|
|
102455
103242
|
/** Endpoint ID in the Vostio access system. */
|
|
102456
103243
|
endpoint_id?: string | undefined;
|
|
102457
103244
|
} | undefined;
|
|
103245
|
+
/** Indicates whether Seam manages the credential. */
|
|
102458
103246
|
is_managed: true;
|
|
102459
103247
|
} | {
|
|
102460
103248
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -102465,6 +103253,7 @@ export type Routes = {
|
|
|
102465
103253
|
user_identity_id?: string | undefined;
|
|
102466
103254
|
/** 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. */
|
|
102467
103255
|
connected_account_id: string;
|
|
103256
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
102468
103257
|
acs_credential_pool_id?: string | undefined;
|
|
102469
103258
|
/** 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). */
|
|
102470
103259
|
acs_system_id: string;
|
|
@@ -102674,6 +103463,7 @@ export type Routes = {
|
|
|
102674
103463
|
user_identity_id?: string | undefined;
|
|
102675
103464
|
/** 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. */
|
|
102676
103465
|
connected_account_id: string;
|
|
103466
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
102677
103467
|
acs_credential_pool_id?: string | undefined;
|
|
102678
103468
|
/** 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). */
|
|
102679
103469
|
acs_system_id: string;
|
|
@@ -102794,6 +103584,7 @@ export type Routes = {
|
|
|
102794
103584
|
/** Endpoint ID in the Vostio access system. */
|
|
102795
103585
|
endpoint_id?: string | undefined;
|
|
102796
103586
|
} | undefined;
|
|
103587
|
+
/** Indicates whether Seam manages the credential. */
|
|
102797
103588
|
is_managed: true;
|
|
102798
103589
|
};
|
|
102799
103590
|
} | {
|
|
@@ -103748,7 +104539,9 @@ export type Routes = {
|
|
|
103748
104539
|
email_address: string | null;
|
|
103749
104540
|
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
103750
104541
|
phone_number: string | null;
|
|
104542
|
+
/** Display name for the user identity. */
|
|
103751
104543
|
display_name: string;
|
|
104544
|
+
/** Full name of the user associated with the user identity. */
|
|
103752
104545
|
full_name: string | null;
|
|
103753
104546
|
/** Date and time at which the user identity was created. */
|
|
103754
104547
|
created_at: string;
|
|
@@ -103973,7 +104766,9 @@ export type Routes = {
|
|
|
103973
104766
|
email_address: string | null;
|
|
103974
104767
|
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
103975
104768
|
phone_number: string | null;
|
|
104769
|
+
/** Display name for the user identity. */
|
|
103976
104770
|
display_name: string;
|
|
104771
|
+
/** Full name of the user associated with the user identity. */
|
|
103977
104772
|
full_name: string | null;
|
|
103978
104773
|
/** Date and time at which the user identity was created. */
|
|
103979
104774
|
created_at: string;
|
|
@@ -104059,7 +104854,9 @@ export type Routes = {
|
|
|
104059
104854
|
email_address: string | null;
|
|
104060
104855
|
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
104061
104856
|
phone_number: string | null;
|
|
104857
|
+
/** Display name for the user identity. */
|
|
104062
104858
|
display_name: string;
|
|
104859
|
+
/** Full name of the user associated with the user identity. */
|
|
104063
104860
|
full_name: string | null;
|
|
104064
104861
|
/** Date and time at which the user identity was created. */
|
|
104065
104862
|
created_at: string;
|
|
@@ -105470,25 +106267,45 @@ export type Routes = {
|
|
|
105470
106267
|
/** Image URL for the manufacturer logo. */
|
|
105471
106268
|
image_url?: string | undefined;
|
|
105472
106269
|
} | undefined;
|
|
106270
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
105473
106271
|
can_remotely_unlock?: boolean | undefined;
|
|
106272
|
+
/** Indicates whether the device supports remote locking. */
|
|
105474
106273
|
can_remotely_lock?: boolean | undefined;
|
|
106274
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
105475
106275
|
can_program_offline_access_codes?: boolean | undefined;
|
|
106276
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
105476
106277
|
can_program_online_access_codes?: boolean | undefined;
|
|
106278
|
+
/** Indicates whether the thermostat supports heating. */
|
|
105477
106279
|
can_hvac_heat?: boolean | undefined;
|
|
106280
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
105478
106281
|
can_hvac_cool?: boolean | undefined;
|
|
106282
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
105479
106283
|
can_hvac_heat_cool?: boolean | undefined;
|
|
106284
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
105480
106285
|
can_turn_off_hvac?: boolean | undefined;
|
|
106286
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
105481
106287
|
can_simulate_removal?: boolean | undefined;
|
|
106288
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
105482
106289
|
can_simulate_connection?: boolean | undefined;
|
|
106290
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
105483
106291
|
can_simulate_disconnection?: boolean | undefined;
|
|
106292
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
105484
106293
|
can_unlock_with_code?: boolean | undefined;
|
|
106294
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
105485
106295
|
can_run_thermostat_programs?: boolean | undefined;
|
|
106296
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
105486
106297
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
106298
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
105487
106299
|
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
106300
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
105488
106301
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
106302
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
105489
106303
|
can_simulate_hub_connection?: boolean | undefined;
|
|
106304
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
105490
106305
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
106306
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
105491
106307
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
106308
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
105492
106309
|
can_configure_auto_lock?: boolean | undefined;
|
|
105493
106310
|
}[];
|
|
105494
106311
|
/**
|
|
@@ -106843,25 +107660,45 @@ export type Routes = {
|
|
|
106843
107660
|
/** Image URL for the manufacturer logo. */
|
|
106844
107661
|
image_url?: string | undefined;
|
|
106845
107662
|
} | undefined;
|
|
107663
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
106846
107664
|
can_remotely_unlock?: boolean | undefined;
|
|
107665
|
+
/** Indicates whether the device supports remote locking. */
|
|
106847
107666
|
can_remotely_lock?: boolean | undefined;
|
|
107667
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
106848
107668
|
can_program_offline_access_codes?: boolean | undefined;
|
|
107669
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
106849
107670
|
can_program_online_access_codes?: boolean | undefined;
|
|
107671
|
+
/** Indicates whether the thermostat supports heating. */
|
|
106850
107672
|
can_hvac_heat?: boolean | undefined;
|
|
107673
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
106851
107674
|
can_hvac_cool?: boolean | undefined;
|
|
107675
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
106852
107676
|
can_hvac_heat_cool?: boolean | undefined;
|
|
107677
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
106853
107678
|
can_turn_off_hvac?: boolean | undefined;
|
|
107679
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
106854
107680
|
can_simulate_removal?: boolean | undefined;
|
|
107681
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
106855
107682
|
can_simulate_connection?: boolean | undefined;
|
|
107683
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
106856
107684
|
can_simulate_disconnection?: boolean | undefined;
|
|
107685
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
106857
107686
|
can_unlock_with_code?: boolean | undefined;
|
|
107687
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
106858
107688
|
can_run_thermostat_programs?: boolean | undefined;
|
|
107689
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
106859
107690
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
107691
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
106860
107692
|
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
107693
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
106861
107694
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
107695
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
106862
107696
|
can_simulate_hub_connection?: boolean | undefined;
|
|
107697
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
106863
107698
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
107699
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
106864
107700
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
107701
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
106865
107702
|
can_configure_auto_lock?: boolean | undefined;
|
|
106866
107703
|
}[];
|
|
106867
107704
|
};
|
|
@@ -107077,7 +107914,9 @@ export type Routes = {
|
|
|
107077
107914
|
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
107078
107915
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
107079
107916
|
acs_system_id: string;
|
|
107917
|
+
/** Number of users in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
107080
107918
|
acs_user_count?: number | undefined;
|
|
107919
|
+
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
107081
107920
|
acs_access_group_count?: number | undefined;
|
|
107082
107921
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
107083
107922
|
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
|
|
@@ -107085,6 +107924,7 @@ export type Routes = {
|
|
|
107085
107924
|
external_type_display_name?: string | undefined;
|
|
107086
107925
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
107087
107926
|
is_credential_manager: boolean;
|
|
107927
|
+
/** Visionline-specific metadata for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
107088
107928
|
visionline_metadata?: {
|
|
107089
107929
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
107090
107930
|
mobile_access_uuid: string;
|
|
@@ -107099,6 +107939,7 @@ export type Routes = {
|
|
|
107099
107939
|
/**
|
|
107100
107940
|
* @deprecated Use `external_type_display_name`.*/
|
|
107101
107941
|
system_type_display_name?: string | undefined;
|
|
107942
|
+
/** Location information for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
107102
107943
|
location: {
|
|
107103
107944
|
/** Time zone in which the [access control system](https://docs.seam.co/low-level-apis/access-systems) is located. */
|
|
107104
107945
|
time_zone: string | null;
|
|
@@ -107133,6 +107974,7 @@ export type Routes = {
|
|
|
107133
107974
|
message: string;
|
|
107134
107975
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
107135
107976
|
error_code: 'bridge_disconnected';
|
|
107977
|
+
/** Indicates whether the error is related to the [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
107136
107978
|
is_bridge_error?: boolean | undefined;
|
|
107137
107979
|
} | {
|
|
107138
107980
|
/** Date and time at which Seam created the error. */
|
|
@@ -107223,6 +108065,7 @@ export type Routes = {
|
|
|
107223
108065
|
acs_user_id: string;
|
|
107224
108066
|
/** 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). */
|
|
107225
108067
|
acs_system_id: string;
|
|
108068
|
+
/** ID of the HID access control system associated with the user. */
|
|
107226
108069
|
hid_acs_system_id?: string | undefined;
|
|
107227
108070
|
/** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
107228
108071
|
workspace_id: string;
|
|
@@ -107468,6 +108311,7 @@ export type Routes = {
|
|
|
107468
108311
|
email_address?: string | undefined;
|
|
107469
108312
|
/** 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`). */
|
|
107470
108313
|
phone_number?: string | undefined;
|
|
108314
|
+
/** Indicates whether Seam manages the access system user. */
|
|
107471
108315
|
is_managed: true;
|
|
107472
108316
|
}[];
|
|
107473
108317
|
};
|
|
@@ -107522,7 +108366,9 @@ export type Routes = {
|
|
|
107522
108366
|
email_address: string | null;
|
|
107523
108367
|
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
107524
108368
|
phone_number: string | null;
|
|
108369
|
+
/** Display name for the user identity. */
|
|
107525
108370
|
display_name: string;
|
|
108371
|
+
/** Full name of the user associated with the user identity. */
|
|
107526
108372
|
full_name: string | null;
|
|
107527
108373
|
/** Date and time at which the user identity was created. */
|
|
107528
108374
|
created_at: string;
|
|
@@ -107587,7 +108433,9 @@ export type Routes = {
|
|
|
107587
108433
|
email_address: string | null;
|
|
107588
108434
|
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
107589
108435
|
phone_number: string | null;
|
|
108436
|
+
/** Display name for the user identity. */
|
|
107590
108437
|
display_name: string;
|
|
108438
|
+
/** Full name of the user associated with the user identity. */
|
|
107591
108439
|
full_name: string | null;
|
|
107592
108440
|
/** Date and time at which the user identity was created. */
|
|
107593
108441
|
created_at: string;
|
|
@@ -108037,7 +108885,9 @@ export type Routes = {
|
|
|
108037
108885
|
email_address: string | null;
|
|
108038
108886
|
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
108039
108887
|
phone_number: string | null;
|
|
108888
|
+
/** Display name for the user identity. */
|
|
108040
108889
|
display_name: string;
|
|
108890
|
+
/** Full name of the user associated with the user identity. */
|
|
108041
108891
|
full_name: string | null;
|
|
108042
108892
|
/** Date and time at which the user identity was created. */
|
|
108043
108893
|
created_at: string;
|
|
@@ -109458,25 +110308,45 @@ export type Routes = {
|
|
|
109458
110308
|
/** Image URL for the manufacturer logo. */
|
|
109459
110309
|
image_url?: string | undefined;
|
|
109460
110310
|
} | undefined;
|
|
110311
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
109461
110312
|
can_remotely_unlock?: boolean | undefined;
|
|
110313
|
+
/** Indicates whether the device supports remote locking. */
|
|
109462
110314
|
can_remotely_lock?: boolean | undefined;
|
|
110315
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
109463
110316
|
can_program_offline_access_codes?: boolean | undefined;
|
|
110317
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
109464
110318
|
can_program_online_access_codes?: boolean | undefined;
|
|
110319
|
+
/** Indicates whether the thermostat supports heating. */
|
|
109465
110320
|
can_hvac_heat?: boolean | undefined;
|
|
110321
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
109466
110322
|
can_hvac_cool?: boolean | undefined;
|
|
110323
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
109467
110324
|
can_hvac_heat_cool?: boolean | undefined;
|
|
110325
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
109468
110326
|
can_turn_off_hvac?: boolean | undefined;
|
|
110327
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
109469
110328
|
can_simulate_removal?: boolean | undefined;
|
|
110329
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
109470
110330
|
can_simulate_connection?: boolean | undefined;
|
|
110331
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
109471
110332
|
can_simulate_disconnection?: boolean | undefined;
|
|
110333
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
109472
110334
|
can_unlock_with_code?: boolean | undefined;
|
|
110335
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
109473
110336
|
can_run_thermostat_programs?: boolean | undefined;
|
|
110337
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
109474
110338
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
110339
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
109475
110340
|
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
110341
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
109476
110342
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
110343
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
109477
110344
|
can_simulate_hub_connection?: boolean | undefined;
|
|
110345
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
109478
110346
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
110347
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
109479
110348
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
110349
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
109480
110350
|
can_configure_auto_lock?: boolean | undefined;
|
|
109481
110351
|
}[] | undefined;
|
|
109482
110352
|
acs_entrances?: {
|
|
@@ -109664,7 +110534,9 @@ export type Routes = {
|
|
|
109664
110534
|
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
109665
110535
|
/** ID of the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
109666
110536
|
acs_system_id: string;
|
|
110537
|
+
/** Number of users in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
109667
110538
|
acs_user_count?: number | undefined;
|
|
110539
|
+
/** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
109668
110540
|
acs_access_group_count?: number | undefined;
|
|
109669
110541
|
/** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
109670
110542
|
external_type?: ('pti_site' | 'avigilon_alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community_site' | 'dormakaba_ambiance_site' | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'hotek_site') | undefined;
|
|
@@ -109672,6 +110544,7 @@ export type Routes = {
|
|
|
109672
110544
|
external_type_display_name?: string | undefined;
|
|
109673
110545
|
/** Indicates whether the `acs_system` is a credential manager. */
|
|
109674
110546
|
is_credential_manager: boolean;
|
|
110547
|
+
/** Visionline-specific metadata for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
109675
110548
|
visionline_metadata?: {
|
|
109676
110549
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
109677
110550
|
mobile_access_uuid: string;
|
|
@@ -109686,6 +110559,7 @@ export type Routes = {
|
|
|
109686
110559
|
/**
|
|
109687
110560
|
* @deprecated Use `external_type_display_name`.*/
|
|
109688
110561
|
system_type_display_name?: string | undefined;
|
|
110562
|
+
/** Location information for the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
|
|
109689
110563
|
location: {
|
|
109690
110564
|
/** Time zone in which the [access control system](https://docs.seam.co/low-level-apis/access-systems) is located. */
|
|
109691
110565
|
time_zone: string | null;
|
|
@@ -109720,6 +110594,7 @@ export type Routes = {
|
|
|
109720
110594
|
message: string;
|
|
109721
110595
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
109722
110596
|
error_code: 'bridge_disconnected';
|
|
110597
|
+
/** Indicates whether the error is related to the [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
109723
110598
|
is_bridge_error?: boolean | undefined;
|
|
109724
110599
|
} | {
|
|
109725
110600
|
/** Date and time at which Seam created the error. */
|
|
@@ -109796,6 +110671,7 @@ export type Routes = {
|
|
|
109796
110671
|
acs_user_id: string;
|
|
109797
110672
|
/** 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). */
|
|
109798
110673
|
acs_system_id: string;
|
|
110674
|
+
/** ID of the HID access control system associated with the user. */
|
|
109799
110675
|
hid_acs_system_id?: string | undefined;
|
|
109800
110676
|
/** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
109801
110677
|
workspace_id: string;
|
|
@@ -110041,6 +110917,7 @@ export type Routes = {
|
|
|
110041
110917
|
email_address?: string | undefined;
|
|
110042
110918
|
/** 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`). */
|
|
110043
110919
|
phone_number?: string | undefined;
|
|
110920
|
+
/** Indicates whether Seam manages the access system user. */
|
|
110044
110921
|
is_managed: true;
|
|
110045
110922
|
}[] | undefined;
|
|
110046
110923
|
acs_access_groups?: {
|
|
@@ -110060,6 +110937,7 @@ export type Routes = {
|
|
|
110060
110937
|
/**
|
|
110061
110938
|
* @deprecated Use `external_type_display_name`.*/
|
|
110062
110939
|
access_group_type_display_name: string;
|
|
110940
|
+
/** Display name for the access group. */
|
|
110063
110941
|
display_name: string;
|
|
110064
110942
|
/** Brand-specific terminology for the access group type. */
|
|
110065
110943
|
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
|
|
@@ -110205,6 +111083,7 @@ export type Routes = {
|
|
|
110205
111083
|
/** Whether the user is scheduled to be added to or removed from this access group. */
|
|
110206
111084
|
variant: 'adding' | 'removing';
|
|
110207
111085
|
})[];
|
|
111086
|
+
/** Indicates whether Seam manages the access group. */
|
|
110208
111087
|
is_managed: true;
|
|
110209
111088
|
}[] | undefined;
|
|
110210
111089
|
acs_encoders?: {
|
|
@@ -110330,6 +111209,7 @@ export type Routes = {
|
|
|
110330
111209
|
acs_credential_on_encoder: {
|
|
110331
111210
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
110332
111211
|
created_at: string | null;
|
|
111212
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
110333
111213
|
is_issued: boolean | null;
|
|
110334
111214
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
110335
111215
|
starts_at: string | null;
|
|
@@ -110375,6 +111255,7 @@ export type Routes = {
|
|
|
110375
111255
|
user_identity_id?: string | undefined;
|
|
110376
111256
|
/** 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. */
|
|
110377
111257
|
connected_account_id: string;
|
|
111258
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
110378
111259
|
acs_credential_pool_id?: string | undefined;
|
|
110379
111260
|
/** 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). */
|
|
110380
111261
|
acs_system_id: string;
|
|
@@ -110495,6 +111376,7 @@ export type Routes = {
|
|
|
110495
111376
|
/** Endpoint ID in the Vostio access system. */
|
|
110496
111377
|
endpoint_id?: string | undefined;
|
|
110497
111378
|
} | undefined;
|
|
111379
|
+
/** Indicates whether Seam manages the credential. */
|
|
110498
111380
|
is_managed: true;
|
|
110499
111381
|
} | {
|
|
110500
111382
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -110505,6 +111387,7 @@ export type Routes = {
|
|
|
110505
111387
|
user_identity_id?: string | undefined;
|
|
110506
111388
|
/** 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. */
|
|
110507
111389
|
connected_account_id: string;
|
|
111390
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
110508
111391
|
acs_credential_pool_id?: string | undefined;
|
|
110509
111392
|
/** 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). */
|
|
110510
111393
|
acs_system_id: string;
|
|
@@ -110702,6 +111585,7 @@ export type Routes = {
|
|
|
110702
111585
|
user_identity_id?: string | undefined;
|
|
110703
111586
|
/** 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. */
|
|
110704
111587
|
connected_account_id: string;
|
|
111588
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
110705
111589
|
acs_credential_pool_id?: string | undefined;
|
|
110706
111590
|
/** 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). */
|
|
110707
111591
|
acs_system_id: string;
|
|
@@ -110822,6 +111706,7 @@ export type Routes = {
|
|
|
110822
111706
|
/** Endpoint ID in the Vostio access system. */
|
|
110823
111707
|
endpoint_id?: string | undefined;
|
|
110824
111708
|
} | undefined;
|
|
111709
|
+
/** Indicates whether Seam manages the credential. */
|
|
110825
111710
|
is_managed: true;
|
|
110826
111711
|
} | {
|
|
110827
111712
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -110832,6 +111717,7 @@ export type Routes = {
|
|
|
110832
111717
|
user_identity_id?: string | undefined;
|
|
110833
111718
|
/** 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. */
|
|
110834
111719
|
connected_account_id: string;
|
|
111720
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
110835
111721
|
acs_credential_pool_id?: string | undefined;
|
|
110836
111722
|
/** 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). */
|
|
110837
111723
|
acs_system_id: string;
|
|
@@ -111041,6 +111927,7 @@ export type Routes = {
|
|
|
111041
111927
|
user_identity_id?: string | undefined;
|
|
111042
111928
|
/** 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. */
|
|
111043
111929
|
connected_account_id: string;
|
|
111930
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
111044
111931
|
acs_credential_pool_id?: string | undefined;
|
|
111045
111932
|
/** 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). */
|
|
111046
111933
|
acs_system_id: string;
|
|
@@ -111161,6 +112048,7 @@ export type Routes = {
|
|
|
111161
112048
|
/** Endpoint ID in the Vostio access system. */
|
|
111162
112049
|
endpoint_id?: string | undefined;
|
|
111163
112050
|
} | undefined;
|
|
112051
|
+
/** Indicates whether Seam manages the credential. */
|
|
111164
112052
|
is_managed: true;
|
|
111165
112053
|
};
|
|
111166
112054
|
} | {
|
|
@@ -111914,6 +112802,7 @@ export type Routes = {
|
|
|
111914
112802
|
acs_user_id: string;
|
|
111915
112803
|
/** 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). */
|
|
111916
112804
|
acs_system_id: string;
|
|
112805
|
+
/** ID of the HID access control system associated with the user. */
|
|
111917
112806
|
hid_acs_system_id?: string | undefined;
|
|
111918
112807
|
/** ID of the workspace that contains the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
111919
112808
|
workspace_id: string;
|
|
@@ -112178,6 +113067,7 @@ export type Routes = {
|
|
|
112178
113067
|
/**
|
|
112179
113068
|
* @deprecated Use `external_type_display_name`.*/
|
|
112180
113069
|
access_group_type_display_name: string;
|
|
113070
|
+
/** Display name for the access group. */
|
|
112181
113071
|
display_name: string;
|
|
112182
113072
|
/** Brand-specific terminology for the access group type. */
|
|
112183
113073
|
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
|
|
@@ -112698,6 +113588,7 @@ export type Routes = {
|
|
|
112698
113588
|
custom_metadata: {
|
|
112699
113589
|
[x: string]: string | boolean;
|
|
112700
113590
|
};
|
|
113591
|
+
/** Indicates that Seam does not manage the device. */
|
|
112701
113592
|
is_managed: false;
|
|
112702
113593
|
/** properties of the device. */
|
|
112703
113594
|
properties: {
|
|
@@ -112769,25 +113660,45 @@ export type Routes = {
|
|
|
112769
113660
|
accessory_keypad_supported?: boolean | undefined;
|
|
112770
113661
|
};
|
|
112771
113662
|
};
|
|
113663
|
+
/** Indicates whether the device supports remote unlocking. */
|
|
112772
113664
|
can_remotely_unlock?: boolean | undefined;
|
|
113665
|
+
/** Indicates whether the device supports remote locking. */
|
|
112773
113666
|
can_remotely_lock?: boolean | undefined;
|
|
113667
|
+
/** Indicates whether the device supports programming offline access codes. */
|
|
112774
113668
|
can_program_offline_access_codes?: boolean | undefined;
|
|
113669
|
+
/** Indicates whether the device supports programming online access codes. */
|
|
112775
113670
|
can_program_online_access_codes?: boolean | undefined;
|
|
113671
|
+
/** Indicates whether the thermostat supports heating. */
|
|
112776
113672
|
can_hvac_heat?: boolean | undefined;
|
|
113673
|
+
/** Indicates whether the thermostat supports cooling. */
|
|
112777
113674
|
can_hvac_cool?: boolean | undefined;
|
|
113675
|
+
/** Indicates whether the thermostat supports simultaneous heating and cooling. */
|
|
112778
113676
|
can_hvac_heat_cool?: boolean | undefined;
|
|
113677
|
+
/** Indicates whether the thermostat can be turned off. */
|
|
112779
113678
|
can_turn_off_hvac?: boolean | undefined;
|
|
113679
|
+
/** Indicates whether the device supports simulating removal in a sandbox. */
|
|
112780
113680
|
can_simulate_removal?: boolean | undefined;
|
|
113681
|
+
/** Indicates whether the device supports simulating connection in a sandbox. */
|
|
112781
113682
|
can_simulate_connection?: boolean | undefined;
|
|
113683
|
+
/** Indicates whether the device supports simulating disconnection in a sandbox. */
|
|
112782
113684
|
can_simulate_disconnection?: boolean | undefined;
|
|
113685
|
+
/** Indicates whether the lock supports unlocking with an access code. */
|
|
112783
113686
|
can_unlock_with_code?: boolean | undefined;
|
|
113687
|
+
/** Indicates whether the thermostat supports running climate programs. */
|
|
112784
113688
|
can_run_thermostat_programs?: boolean | undefined;
|
|
113689
|
+
/** Indicates whether the thermostat supports weekday/weekend climate programs. */
|
|
112785
113690
|
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined;
|
|
113691
|
+
/** Indicates whether the thermostat supports different climate programs for each day of the week. */
|
|
112786
113692
|
can_program_thermostat_programs_as_different_each_day?: boolean | undefined;
|
|
113693
|
+
/** Indicates whether the thermostat supports a single climate program applied to every day. */
|
|
112787
113694
|
can_program_thermostat_programs_as_same_each_day?: boolean | undefined;
|
|
113695
|
+
/** Indicates whether the hub supports simulating connection in a sandbox. */
|
|
112788
113696
|
can_simulate_hub_connection?: boolean | undefined;
|
|
113697
|
+
/** Indicates whether the hub supports simulating disconnection in a sandbox. */
|
|
112789
113698
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
113699
|
+
/** Indicates whether the device supports simulating a paid subscription in a sandbox. */
|
|
112790
113700
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
113701
|
+
/** Indicates whether the lock supports configuring automatic locking. */
|
|
112791
113702
|
can_configure_auto_lock?: boolean | undefined;
|
|
112792
113703
|
}[] | undefined;
|
|
112793
113704
|
connect_webviews?: {
|
|
@@ -112801,6 +113712,7 @@ export type Routes = {
|
|
|
112801
113712
|
connected_account_id: string | null;
|
|
112802
113713
|
/** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
|
|
112803
113714
|
url: string;
|
|
113715
|
+
/** Device selection mode of the Connect Webview. Supported values: `none`, `single`, `multiple`. */
|
|
112804
113716
|
device_selection_mode: 'none' | 'single' | 'multiple';
|
|
112805
113717
|
/** 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). */
|
|
112806
113718
|
accepted_providers: string[];
|
|
@@ -114009,6 +114921,7 @@ export type Routes = {
|
|
|
114009
114921
|
[x: string]: string | boolean;
|
|
114010
114922
|
} | undefined;
|
|
114011
114923
|
event_type: 'access_code.backup_access_code_pulled';
|
|
114924
|
+
/** ID of the backup access code that was pulled from the pool. */
|
|
114012
114925
|
backup_access_code_id: string;
|
|
114013
114926
|
} | {
|
|
114014
114927
|
/** ID of the event. */
|
|
@@ -114517,6 +115430,7 @@ export type Routes = {
|
|
|
114517
115430
|
connected_account_id?: string | undefined;
|
|
114518
115431
|
/** ID of the access system. */
|
|
114519
115432
|
acs_system_id: string;
|
|
115433
|
+
/** ID of the affected access system user. */
|
|
114520
115434
|
acs_user_id: string;
|
|
114521
115435
|
event_type: 'acs_user.created';
|
|
114522
115436
|
} | {
|
|
@@ -114532,6 +115446,7 @@ export type Routes = {
|
|
|
114532
115446
|
connected_account_id?: string | undefined;
|
|
114533
115447
|
/** ID of the access system. */
|
|
114534
115448
|
acs_system_id: string;
|
|
115449
|
+
/** ID of the affected access system user. */
|
|
114535
115450
|
acs_user_id: string;
|
|
114536
115451
|
event_type: 'acs_user.deleted';
|
|
114537
115452
|
} | {
|
|
@@ -114595,6 +115510,7 @@ export type Routes = {
|
|
|
114595
115510
|
connected_account_id?: string | undefined;
|
|
114596
115511
|
/** ID of the access system. */
|
|
114597
115512
|
acs_system_id: string;
|
|
115513
|
+
/** ID of the affected entrance. */
|
|
114598
115514
|
acs_entrance_id: string;
|
|
114599
115515
|
event_type: 'acs_entrance.added';
|
|
114600
115516
|
} | {
|
|
@@ -114610,6 +115526,7 @@ export type Routes = {
|
|
|
114610
115526
|
connected_account_id?: string | undefined;
|
|
114611
115527
|
/** ID of the access system. */
|
|
114612
115528
|
acs_system_id: string;
|
|
115529
|
+
/** ID of the affected entrance. */
|
|
114613
115530
|
acs_entrance_id: string;
|
|
114614
115531
|
event_type: 'acs_entrance.removed';
|
|
114615
115532
|
} | {
|
|
@@ -115866,7 +116783,7 @@ export type Routes = {
|
|
|
115866
116783
|
/** Date and time at which the event occurred. */
|
|
115867
116784
|
occurred_at: string;
|
|
115868
116785
|
/** ID of the affected device. */
|
|
115869
|
-
device_id
|
|
116786
|
+
device_id?: string | undefined;
|
|
115870
116787
|
/** ID of the connected account associated with the event. */
|
|
115871
116788
|
connected_account_id: string;
|
|
115872
116789
|
/** The customer key associated with the device, if any. */
|
|
@@ -115882,6 +116799,30 @@ export type Routes = {
|
|
|
115882
116799
|
event_type: 'lock.access_denied';
|
|
115883
116800
|
/** ID of the access code that was used in the unlock attempts. */
|
|
115884
116801
|
access_code_id?: string | undefined;
|
|
116802
|
+
/**
|
|
116803
|
+
undocumented: Unreleased.
|
|
116804
|
+
---
|
|
116805
|
+
ID of the user identity associated with the access-denied event.
|
|
116806
|
+
*/
|
|
116807
|
+
user_identity_id?: string | undefined;
|
|
116808
|
+
/**
|
|
116809
|
+
undocumented: Unreleased.
|
|
116810
|
+
---
|
|
116811
|
+
ID of the ACS system associated with the access-denied event.
|
|
116812
|
+
*/
|
|
116813
|
+
acs_system_id?: string | undefined;
|
|
116814
|
+
/**
|
|
116815
|
+
undocumented: Unreleased.
|
|
116816
|
+
---
|
|
116817
|
+
ID of the ACS user associated with the access-denied event.
|
|
116818
|
+
*/
|
|
116819
|
+
acs_user_id?: string | undefined;
|
|
116820
|
+
/**
|
|
116821
|
+
undocumented: Unreleased.
|
|
116822
|
+
---
|
|
116823
|
+
ID of the ACS entrance associated with the access-denied event.
|
|
116824
|
+
*/
|
|
116825
|
+
acs_entrance_id?: string | undefined;
|
|
115885
116826
|
} | {
|
|
115886
116827
|
/** ID of the event. */
|
|
115887
116828
|
event_id: string;
|
|
@@ -116290,6 +117231,7 @@ export type Routes = {
|
|
|
116290
117231
|
user_identity_id?: string | undefined;
|
|
116291
117232
|
/** 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. */
|
|
116292
117233
|
connected_account_id: string;
|
|
117234
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
116293
117235
|
acs_credential_pool_id?: string | undefined;
|
|
116294
117236
|
/** 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). */
|
|
116295
117237
|
acs_system_id: string;
|
|
@@ -116410,6 +117352,7 @@ export type Routes = {
|
|
|
116410
117352
|
/** Endpoint ID in the Vostio access system. */
|
|
116411
117353
|
endpoint_id?: string | undefined;
|
|
116412
117354
|
} | undefined;
|
|
117355
|
+
/** Indicates whether Seam manages the credential. */
|
|
116413
117356
|
is_managed: true;
|
|
116414
117357
|
}[] | undefined;
|
|
116415
117358
|
unmanaged_acs_credentials?: {
|
|
@@ -116421,6 +117364,7 @@ export type Routes = {
|
|
|
116421
117364
|
user_identity_id?: string | undefined;
|
|
116422
117365
|
/** 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. */
|
|
116423
117366
|
connected_account_id: string;
|
|
117367
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
116424
117368
|
acs_credential_pool_id?: string | undefined;
|
|
116425
117369
|
/** 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). */
|
|
116426
117370
|
acs_system_id: string;
|
|
@@ -117771,6 +118715,7 @@ export type Routes = {
|
|
|
117771
118715
|
acs_credential_on_encoder: {
|
|
117772
118716
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was created. */
|
|
117773
118717
|
created_at: string | null;
|
|
118718
|
+
/** Indicates whether the credential has been issued (encoded onto a card). */
|
|
117774
118719
|
is_issued: boolean | null;
|
|
117775
118720
|
/** Date and time at which the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) becomes usable. */
|
|
117776
118721
|
starts_at: string | null;
|
|
@@ -117816,6 +118761,7 @@ export type Routes = {
|
|
|
117816
118761
|
user_identity_id?: string | undefined;
|
|
117817
118762
|
/** 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. */
|
|
117818
118763
|
connected_account_id: string;
|
|
118764
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
117819
118765
|
acs_credential_pool_id?: string | undefined;
|
|
117820
118766
|
/** 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). */
|
|
117821
118767
|
acs_system_id: string;
|
|
@@ -117936,6 +118882,7 @@ export type Routes = {
|
|
|
117936
118882
|
/** Endpoint ID in the Vostio access system. */
|
|
117937
118883
|
endpoint_id?: string | undefined;
|
|
117938
118884
|
} | undefined;
|
|
118885
|
+
/** Indicates whether Seam manages the credential. */
|
|
117939
118886
|
is_managed: true;
|
|
117940
118887
|
} | {
|
|
117941
118888
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -117946,6 +118893,7 @@ export type Routes = {
|
|
|
117946
118893
|
user_identity_id?: string | undefined;
|
|
117947
118894
|
/** 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. */
|
|
117948
118895
|
connected_account_id: string;
|
|
118896
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
117949
118897
|
acs_credential_pool_id?: string | undefined;
|
|
117950
118898
|
/** 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). */
|
|
117951
118899
|
acs_system_id: string;
|
|
@@ -118143,6 +119091,7 @@ export type Routes = {
|
|
|
118143
119091
|
user_identity_id?: string | undefined;
|
|
118144
119092
|
/** 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. */
|
|
118145
119093
|
connected_account_id: string;
|
|
119094
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
118146
119095
|
acs_credential_pool_id?: string | undefined;
|
|
118147
119096
|
/** 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). */
|
|
118148
119097
|
acs_system_id: string;
|
|
@@ -118263,6 +119212,7 @@ export type Routes = {
|
|
|
118263
119212
|
/** Endpoint ID in the Vostio access system. */
|
|
118264
119213
|
endpoint_id?: string | undefined;
|
|
118265
119214
|
} | undefined;
|
|
119215
|
+
/** Indicates whether Seam manages the credential. */
|
|
118266
119216
|
is_managed: true;
|
|
118267
119217
|
} | {
|
|
118268
119218
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
@@ -118273,6 +119223,7 @@ export type Routes = {
|
|
|
118273
119223
|
user_identity_id?: string | undefined;
|
|
118274
119224
|
/** 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. */
|
|
118275
119225
|
connected_account_id: string;
|
|
119226
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
118276
119227
|
acs_credential_pool_id?: string | undefined;
|
|
118277
119228
|
/** 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). */
|
|
118278
119229
|
acs_system_id: string;
|
|
@@ -118482,6 +119433,7 @@ export type Routes = {
|
|
|
118482
119433
|
user_identity_id?: string | undefined;
|
|
118483
119434
|
/** 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. */
|
|
118484
119435
|
connected_account_id: string;
|
|
119436
|
+
/** ID of the credential pool to which the credential belongs. */
|
|
118485
119437
|
acs_credential_pool_id?: string | undefined;
|
|
118486
119438
|
/** 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). */
|
|
118487
119439
|
acs_system_id: string;
|
|
@@ -118602,6 +119554,7 @@ export type Routes = {
|
|
|
118602
119554
|
/** Endpoint ID in the Vostio access system. */
|
|
118603
119555
|
endpoint_id?: string | undefined;
|
|
118604
119556
|
} | undefined;
|
|
119557
|
+
/** Indicates whether Seam manages the credential. */
|
|
118605
119558
|
is_managed: true;
|
|
118606
119559
|
};
|
|
118607
119560
|
} | {
|