@seamapi/types 1.423.4 → 1.425.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 +225 -24
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +602 -12
- package/lib/seam/connect/internal/schemas.d.ts +1 -1
- package/lib/seam/connect/internal/schemas.js +1 -1
- package/lib/seam/connect/internal/schemas.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +6 -0
- package/lib/seam/connect/models/acs/acs-credential.js +4 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +25 -2
- package/lib/seam/connect/models/acs/acs-entrance.js +18 -2
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.js +4 -1
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -0
- package/lib/seam/connect/models/connect-webviews/connect-webview.d.ts +2 -4
- package/lib/seam/connect/models/connect-webviews/connect-webview.js +3 -9
- package/lib/seam/connect/models/connect-webviews/connect-webview.js.map +1 -1
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +3 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js +4 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -2
- package/lib/seam/connect/models/index.d.ts +1 -0
- package/lib/seam/connect/models/index.js +1 -0
- package/lib/seam/connect/models/index.js.map +1 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +66 -4
- package/lib/seam/connect/models/provider-capability.d.ts +3 -0
- package/lib/seam/connect/models/provider-capability.js +11 -0
- package/lib/seam/connect/models/provider-capability.js.map +1 -0
- package/lib/seam/connect/openapi.d.ts +263 -5
- package/lib/seam/connect/openapi.js +190 -11
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +292 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +2 -0
- package/src/lib/seam/connect/models/acs/acs-credential.ts +6 -0
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +93 -70
- package/src/lib/seam/connect/models/acs/acs-system.ts +4 -1
- package/src/lib/seam/connect/models/connect-webviews/connect-webview.ts +3 -16
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +6 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -2
- package/src/lib/seam/connect/models/index.ts +1 -0
- package/src/lib/seam/connect/models/provider-capability.ts +13 -0
- package/src/lib/seam/connect/openapi.ts +217 -11
- package/src/lib/seam/connect/route-types.ts +298 -3
package/dist/connect.d.cts
CHANGED
|
@@ -3844,6 +3844,7 @@ type AcsAccessGroup = z.output<typeof acs_access_group>;
|
|
|
3844
3844
|
declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
3845
3845
|
acs_credential_id: z.ZodString;
|
|
3846
3846
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
3847
|
+
connected_account_id: z.ZodString;
|
|
3847
3848
|
acs_credential_pool_id: z.ZodOptional<z.ZodString>;
|
|
3848
3849
|
acs_system_id: z.ZodString;
|
|
3849
3850
|
parent_acs_credential_id: z.ZodOptional<z.ZodString>;
|
|
@@ -4012,6 +4013,7 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4012
4013
|
message: string;
|
|
4013
4014
|
error_code: string;
|
|
4014
4015
|
}[];
|
|
4016
|
+
connected_account_id: string;
|
|
4015
4017
|
warnings: ({
|
|
4016
4018
|
message: string;
|
|
4017
4019
|
created_at: string;
|
|
@@ -4082,6 +4084,7 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4082
4084
|
message: string;
|
|
4083
4085
|
error_code: string;
|
|
4084
4086
|
}[];
|
|
4087
|
+
connected_account_id: string;
|
|
4085
4088
|
warnings: ({
|
|
4086
4089
|
message: string;
|
|
4087
4090
|
created_at: string;
|
|
@@ -4148,6 +4151,7 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4148
4151
|
declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
4149
4152
|
acs_credential_id: z.ZodString;
|
|
4150
4153
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
4154
|
+
connected_account_id: z.ZodString;
|
|
4151
4155
|
acs_credential_pool_id: z.ZodOptional<z.ZodString>;
|
|
4152
4156
|
acs_system_id: z.ZodString;
|
|
4153
4157
|
parent_acs_credential_id: z.ZodOptional<z.ZodString>;
|
|
@@ -4316,6 +4320,7 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4316
4320
|
message: string;
|
|
4317
4321
|
error_code: string;
|
|
4318
4322
|
}[];
|
|
4323
|
+
connected_account_id: string;
|
|
4319
4324
|
warnings: ({
|
|
4320
4325
|
message: string;
|
|
4321
4326
|
created_at: string;
|
|
@@ -4386,6 +4391,7 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4386
4391
|
message: string;
|
|
4387
4392
|
error_code: string;
|
|
4388
4393
|
}[];
|
|
4394
|
+
connected_account_id: string;
|
|
4389
4395
|
warnings: ({
|
|
4390
4396
|
message: string;
|
|
4391
4397
|
created_at: string;
|
|
@@ -4499,7 +4505,7 @@ declare const acs_encoder: z.ZodObject<{
|
|
|
4499
4505
|
}>;
|
|
4500
4506
|
type AcsEncoder = z.infer<typeof acs_encoder>;
|
|
4501
4507
|
|
|
4502
|
-
declare const acs_entrance: z.ZodObject<{
|
|
4508
|
+
declare const acs_entrance: z.ZodObject<z.objectUtil.extendShape<{
|
|
4503
4509
|
acs_system_id: z.ZodString;
|
|
4504
4510
|
acs_entrance_id: z.ZodString;
|
|
4505
4511
|
created_at: z.ZodString;
|
|
@@ -4626,7 +4632,11 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4626
4632
|
ext_door_id: string;
|
|
4627
4633
|
door_description?: string | undefined;
|
|
4628
4634
|
}>>;
|
|
4629
|
-
},
|
|
4635
|
+
}, {
|
|
4636
|
+
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
4637
|
+
can_unlock_with_card: z.ZodOptional<z.ZodBoolean>;
|
|
4638
|
+
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
4639
|
+
}>, "strip", z.ZodTypeAny, {
|
|
4630
4640
|
display_name: string;
|
|
4631
4641
|
created_at: string;
|
|
4632
4642
|
errors: {
|
|
@@ -4661,6 +4671,9 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4661
4671
|
stand_open?: boolean | undefined;
|
|
4662
4672
|
pms_id?: string | undefined;
|
|
4663
4673
|
} | undefined;
|
|
4674
|
+
can_unlock_with_mobile_key?: boolean | undefined;
|
|
4675
|
+
can_unlock_with_card?: boolean | undefined;
|
|
4676
|
+
can_unlock_with_code?: boolean | undefined;
|
|
4664
4677
|
latch_metadata?: {
|
|
4665
4678
|
door_name: string;
|
|
4666
4679
|
is_connected: boolean;
|
|
@@ -4710,6 +4723,9 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4710
4723
|
stand_open?: boolean | undefined;
|
|
4711
4724
|
pms_id?: string | undefined;
|
|
4712
4725
|
} | undefined;
|
|
4726
|
+
can_unlock_with_mobile_key?: boolean | undefined;
|
|
4727
|
+
can_unlock_with_card?: boolean | undefined;
|
|
4728
|
+
can_unlock_with_code?: boolean | undefined;
|
|
4713
4729
|
latch_metadata?: {
|
|
4714
4730
|
door_name: string;
|
|
4715
4731
|
is_connected: boolean;
|
|
@@ -6546,6 +6562,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
6546
6562
|
acs_credential_on_seam: z.ZodNullable<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
6547
6563
|
acs_credential_id: z.ZodString;
|
|
6548
6564
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
6565
|
+
connected_account_id: z.ZodString;
|
|
6549
6566
|
acs_credential_pool_id: z.ZodOptional<z.ZodString>;
|
|
6550
6567
|
acs_system_id: z.ZodString;
|
|
6551
6568
|
parent_acs_credential_id: z.ZodOptional<z.ZodString>;
|
|
@@ -6714,6 +6731,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
6714
6731
|
message: string;
|
|
6715
6732
|
error_code: string;
|
|
6716
6733
|
}[];
|
|
6734
|
+
connected_account_id: string;
|
|
6717
6735
|
warnings: ({
|
|
6718
6736
|
message: string;
|
|
6719
6737
|
created_at: string;
|
|
@@ -6784,6 +6802,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
6784
6802
|
message: string;
|
|
6785
6803
|
error_code: string;
|
|
6786
6804
|
}[];
|
|
6805
|
+
connected_account_id: string;
|
|
6787
6806
|
warnings: ({
|
|
6788
6807
|
message: string;
|
|
6789
6808
|
created_at: string;
|
|
@@ -6849,6 +6868,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
6849
6868
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6850
6869
|
acs_credential_id: z.ZodString;
|
|
6851
6870
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
6871
|
+
connected_account_id: z.ZodString;
|
|
6852
6872
|
acs_credential_pool_id: z.ZodOptional<z.ZodString>;
|
|
6853
6873
|
acs_system_id: z.ZodString;
|
|
6854
6874
|
parent_acs_credential_id: z.ZodOptional<z.ZodString>;
|
|
@@ -7017,6 +7037,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
7017
7037
|
message: string;
|
|
7018
7038
|
error_code: string;
|
|
7019
7039
|
}[];
|
|
7040
|
+
connected_account_id: string;
|
|
7020
7041
|
warnings: ({
|
|
7021
7042
|
message: string;
|
|
7022
7043
|
created_at: string;
|
|
@@ -7087,6 +7108,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
7087
7108
|
message: string;
|
|
7088
7109
|
error_code: string;
|
|
7089
7110
|
}[];
|
|
7111
|
+
connected_account_id: string;
|
|
7090
7112
|
warnings: ({
|
|
7091
7113
|
message: string;
|
|
7092
7114
|
created_at: string;
|
|
@@ -7194,6 +7216,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
7194
7216
|
message: string;
|
|
7195
7217
|
error_code: string;
|
|
7196
7218
|
}[];
|
|
7219
|
+
connected_account_id: string;
|
|
7197
7220
|
warnings: ({
|
|
7198
7221
|
message: string;
|
|
7199
7222
|
created_at: string;
|
|
@@ -7264,6 +7287,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
7264
7287
|
message: string;
|
|
7265
7288
|
error_code: string;
|
|
7266
7289
|
}[];
|
|
7290
|
+
connected_account_id: string;
|
|
7267
7291
|
warnings: ({
|
|
7268
7292
|
message: string;
|
|
7269
7293
|
created_at: string;
|
|
@@ -7361,6 +7385,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
7361
7385
|
message: string;
|
|
7362
7386
|
error_code: string;
|
|
7363
7387
|
}[];
|
|
7388
|
+
connected_account_id: string;
|
|
7364
7389
|
warnings: ({
|
|
7365
7390
|
message: string;
|
|
7366
7391
|
created_at: string;
|
|
@@ -7431,6 +7456,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
7431
7456
|
message: string;
|
|
7432
7457
|
error_code: string;
|
|
7433
7458
|
}[];
|
|
7459
|
+
connected_account_id: string;
|
|
7434
7460
|
warnings: ({
|
|
7435
7461
|
message: string;
|
|
7436
7462
|
created_at: string;
|
|
@@ -7533,6 +7559,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
7533
7559
|
message: string;
|
|
7534
7560
|
error_code: string;
|
|
7535
7561
|
}[];
|
|
7562
|
+
connected_account_id: string;
|
|
7536
7563
|
warnings: ({
|
|
7537
7564
|
message: string;
|
|
7538
7565
|
created_at: string;
|
|
@@ -7603,6 +7630,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
7603
7630
|
message: string;
|
|
7604
7631
|
error_code: string;
|
|
7605
7632
|
}[];
|
|
7633
|
+
connected_account_id: string;
|
|
7606
7634
|
warnings: ({
|
|
7607
7635
|
message: string;
|
|
7608
7636
|
created_at: string;
|
|
@@ -7706,6 +7734,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
7706
7734
|
message: string;
|
|
7707
7735
|
error_code: string;
|
|
7708
7736
|
}[];
|
|
7737
|
+
connected_account_id: string;
|
|
7709
7738
|
warnings: ({
|
|
7710
7739
|
message: string;
|
|
7711
7740
|
created_at: string;
|
|
@@ -7776,6 +7805,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
7776
7805
|
message: string;
|
|
7777
7806
|
error_code: string;
|
|
7778
7807
|
}[];
|
|
7808
|
+
connected_account_id: string;
|
|
7779
7809
|
warnings: ({
|
|
7780
7810
|
message: string;
|
|
7781
7811
|
created_at: string;
|
|
@@ -8122,6 +8152,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
8122
8152
|
result: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
8123
8153
|
acs_credential_id: z.ZodString;
|
|
8124
8154
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
8155
|
+
connected_account_id: z.ZodString;
|
|
8125
8156
|
acs_credential_pool_id: z.ZodOptional<z.ZodString>;
|
|
8126
8157
|
acs_system_id: z.ZodString;
|
|
8127
8158
|
parent_acs_credential_id: z.ZodOptional<z.ZodString>;
|
|
@@ -8290,6 +8321,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
8290
8321
|
message: string;
|
|
8291
8322
|
error_code: string;
|
|
8292
8323
|
}[];
|
|
8324
|
+
connected_account_id: string;
|
|
8293
8325
|
warnings: ({
|
|
8294
8326
|
message: string;
|
|
8295
8327
|
created_at: string;
|
|
@@ -8360,6 +8392,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
8360
8392
|
message: string;
|
|
8361
8393
|
error_code: string;
|
|
8362
8394
|
}[];
|
|
8395
|
+
connected_account_id: string;
|
|
8363
8396
|
warnings: ({
|
|
8364
8397
|
message: string;
|
|
8365
8398
|
created_at: string;
|
|
@@ -8425,6 +8458,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
8425
8458
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8426
8459
|
acs_credential_id: z.ZodString;
|
|
8427
8460
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
8461
|
+
connected_account_id: z.ZodString;
|
|
8428
8462
|
acs_credential_pool_id: z.ZodOptional<z.ZodString>;
|
|
8429
8463
|
acs_system_id: z.ZodString;
|
|
8430
8464
|
parent_acs_credential_id: z.ZodOptional<z.ZodString>;
|
|
@@ -8593,6 +8627,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
8593
8627
|
message: string;
|
|
8594
8628
|
error_code: string;
|
|
8595
8629
|
}[];
|
|
8630
|
+
connected_account_id: string;
|
|
8596
8631
|
warnings: ({
|
|
8597
8632
|
message: string;
|
|
8598
8633
|
created_at: string;
|
|
@@ -8663,6 +8698,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
8663
8698
|
message: string;
|
|
8664
8699
|
error_code: string;
|
|
8665
8700
|
}[];
|
|
8701
|
+
connected_account_id: string;
|
|
8666
8702
|
warnings: ({
|
|
8667
8703
|
message: string;
|
|
8668
8704
|
created_at: string;
|
|
@@ -8738,6 +8774,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
8738
8774
|
message: string;
|
|
8739
8775
|
error_code: string;
|
|
8740
8776
|
}[];
|
|
8777
|
+
connected_account_id: string;
|
|
8741
8778
|
warnings: ({
|
|
8742
8779
|
message: string;
|
|
8743
8780
|
created_at: string;
|
|
@@ -8808,6 +8845,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
8808
8845
|
message: string;
|
|
8809
8846
|
error_code: string;
|
|
8810
8847
|
}[];
|
|
8848
|
+
connected_account_id: string;
|
|
8811
8849
|
warnings: ({
|
|
8812
8850
|
message: string;
|
|
8813
8851
|
created_at: string;
|
|
@@ -8884,6 +8922,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
8884
8922
|
message: string;
|
|
8885
8923
|
error_code: string;
|
|
8886
8924
|
}[];
|
|
8925
|
+
connected_account_id: string;
|
|
8887
8926
|
warnings: ({
|
|
8888
8927
|
message: string;
|
|
8889
8928
|
created_at: string;
|
|
@@ -8954,6 +8993,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
8954
8993
|
message: string;
|
|
8955
8994
|
error_code: string;
|
|
8956
8995
|
}[];
|
|
8996
|
+
connected_account_id: string;
|
|
8957
8997
|
warnings: ({
|
|
8958
8998
|
message: string;
|
|
8959
8999
|
created_at: string;
|
|
@@ -10498,10 +10538,10 @@ declare const connect_webview: z.ZodObject<{
|
|
|
10498
10538
|
connected_account_id: string | null;
|
|
10499
10539
|
custom_metadata: Record<string, string | boolean>;
|
|
10500
10540
|
automatically_manage_new_devices: boolean;
|
|
10541
|
+
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control")[];
|
|
10501
10542
|
connect_webview_id: string;
|
|
10502
10543
|
device_selection_mode: "none" | "single" | "multiple";
|
|
10503
10544
|
accepted_providers: string[];
|
|
10504
|
-
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control")[];
|
|
10505
10545
|
accepted_devices: string[];
|
|
10506
10546
|
any_device_allowed: boolean;
|
|
10507
10547
|
any_provider_allowed: boolean;
|
|
@@ -10519,10 +10559,10 @@ declare const connect_webview: z.ZodObject<{
|
|
|
10519
10559
|
connected_account_id: string | null;
|
|
10520
10560
|
custom_metadata: Record<string, string | boolean>;
|
|
10521
10561
|
automatically_manage_new_devices: boolean;
|
|
10562
|
+
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control")[];
|
|
10522
10563
|
connect_webview_id: string;
|
|
10523
10564
|
device_selection_mode: "none" | "single" | "multiple";
|
|
10524
10565
|
accepted_providers: string[];
|
|
10525
|
-
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control")[];
|
|
10526
10566
|
accepted_devices: string[];
|
|
10527
10567
|
any_device_allowed: boolean;
|
|
10528
10568
|
any_provider_allowed: boolean;
|
|
@@ -10990,6 +11030,7 @@ declare const connected_account: z.ZodObject<{
|
|
|
10990
11030
|
custom_metadata: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
10991
11031
|
automatically_manage_new_devices: z.ZodBoolean;
|
|
10992
11032
|
customer_key: z.ZodOptional<z.ZodString>;
|
|
11033
|
+
accepted_capabilities: z.ZodArray<z.ZodEnum<["lock", "thermostat", "noise_sensor", "access_control"]>, "many">;
|
|
10993
11034
|
}, "strip", z.ZodTypeAny, {
|
|
10994
11035
|
errors: ({
|
|
10995
11036
|
message: string;
|
|
@@ -11048,6 +11089,7 @@ declare const connected_account: z.ZodObject<{
|
|
|
11048
11089
|
})[];
|
|
11049
11090
|
custom_metadata: Record<string, string | boolean>;
|
|
11050
11091
|
automatically_manage_new_devices: boolean;
|
|
11092
|
+
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control")[];
|
|
11051
11093
|
created_at?: string | undefined;
|
|
11052
11094
|
connected_account_id?: string | undefined;
|
|
11053
11095
|
user_identifier?: {
|
|
@@ -11117,6 +11159,7 @@ declare const connected_account: z.ZodObject<{
|
|
|
11117
11159
|
})[];
|
|
11118
11160
|
custom_metadata: Record<string, string | boolean>;
|
|
11119
11161
|
automatically_manage_new_devices: boolean;
|
|
11162
|
+
accepted_capabilities: ("lock" | "thermostat" | "noise_sensor" | "access_control")[];
|
|
11120
11163
|
created_at?: string | undefined;
|
|
11121
11164
|
connected_account_id?: string | undefined;
|
|
11122
11165
|
user_identifier?: {
|
|
@@ -22457,6 +22500,11 @@ declare const _default: {
|
|
|
22457
22500
|
nullable: boolean;
|
|
22458
22501
|
type: string;
|
|
22459
22502
|
};
|
|
22503
|
+
connected_account_id: {
|
|
22504
|
+
description: string;
|
|
22505
|
+
format: string;
|
|
22506
|
+
type: string;
|
|
22507
|
+
};
|
|
22460
22508
|
created_at: {
|
|
22461
22509
|
description: string;
|
|
22462
22510
|
format: string;
|
|
@@ -22802,6 +22850,18 @@ declare const _default: {
|
|
|
22802
22850
|
required: string[];
|
|
22803
22851
|
type: string;
|
|
22804
22852
|
};
|
|
22853
|
+
can_unlock_with_card: {
|
|
22854
|
+
description: string;
|
|
22855
|
+
type: string;
|
|
22856
|
+
};
|
|
22857
|
+
can_unlock_with_code: {
|
|
22858
|
+
description: string;
|
|
22859
|
+
type: string;
|
|
22860
|
+
};
|
|
22861
|
+
can_unlock_with_mobile_key: {
|
|
22862
|
+
description: string;
|
|
22863
|
+
type: string;
|
|
22864
|
+
};
|
|
22805
22865
|
connected_account_id: {
|
|
22806
22866
|
description: string;
|
|
22807
22867
|
format: string;
|
|
@@ -23998,6 +24058,11 @@ declare const _default: {
|
|
|
23998
24058
|
nullable: boolean;
|
|
23999
24059
|
type: string;
|
|
24000
24060
|
};
|
|
24061
|
+
connected_account_id: {
|
|
24062
|
+
description: string;
|
|
24063
|
+
format: string;
|
|
24064
|
+
type: string;
|
|
24065
|
+
};
|
|
24001
24066
|
created_at: {
|
|
24002
24067
|
description: string;
|
|
24003
24068
|
format: string;
|
|
@@ -24245,6 +24310,11 @@ declare const _default: {
|
|
|
24245
24310
|
nullable: boolean;
|
|
24246
24311
|
type: string;
|
|
24247
24312
|
};
|
|
24313
|
+
connected_account_id: {
|
|
24314
|
+
description: string;
|
|
24315
|
+
format: string;
|
|
24316
|
+
type: string;
|
|
24317
|
+
};
|
|
24248
24318
|
created_at: {
|
|
24249
24319
|
description: string;
|
|
24250
24320
|
format: string;
|
|
@@ -24691,6 +24761,11 @@ declare const _default: {
|
|
|
24691
24761
|
nullable: boolean;
|
|
24692
24762
|
type: string;
|
|
24693
24763
|
};
|
|
24764
|
+
connected_account_id: {
|
|
24765
|
+
description: string;
|
|
24766
|
+
format: string;
|
|
24767
|
+
type: string;
|
|
24768
|
+
};
|
|
24694
24769
|
created_at: {
|
|
24695
24770
|
description: string;
|
|
24696
24771
|
format: string;
|
|
@@ -24938,6 +25013,11 @@ declare const _default: {
|
|
|
24938
25013
|
nullable: boolean;
|
|
24939
25014
|
type: string;
|
|
24940
25015
|
};
|
|
25016
|
+
connected_account_id: {
|
|
25017
|
+
description: string;
|
|
25018
|
+
format: string;
|
|
25019
|
+
type: string;
|
|
25020
|
+
};
|
|
24941
25021
|
created_at: {
|
|
24942
25022
|
description: string;
|
|
24943
25023
|
format: string;
|
|
@@ -25728,7 +25808,6 @@ declare const _default: {
|
|
|
25728
25808
|
device_selection_mode: {
|
|
25729
25809
|
enum: string[];
|
|
25730
25810
|
type: string;
|
|
25731
|
-
'x-undocumented': string;
|
|
25732
25811
|
};
|
|
25733
25812
|
login_successful: {
|
|
25734
25813
|
description: string;
|
|
@@ -25766,6 +25845,15 @@ declare const _default: {
|
|
|
25766
25845
|
connected_account: {
|
|
25767
25846
|
description: string;
|
|
25768
25847
|
properties: {
|
|
25848
|
+
accepted_capabilities: {
|
|
25849
|
+
description: string;
|
|
25850
|
+
items: {
|
|
25851
|
+
description: string;
|
|
25852
|
+
enum: string[];
|
|
25853
|
+
type: string;
|
|
25854
|
+
};
|
|
25855
|
+
type: string;
|
|
25856
|
+
};
|
|
25769
25857
|
account_type: {
|
|
25770
25858
|
description: string;
|
|
25771
25859
|
type: string;
|
|
@@ -31951,6 +32039,18 @@ declare const _default: {
|
|
|
31951
32039
|
required: string[];
|
|
31952
32040
|
type: string;
|
|
31953
32041
|
};
|
|
32042
|
+
can_unlock_with_card: {
|
|
32043
|
+
description: string;
|
|
32044
|
+
type: string;
|
|
32045
|
+
};
|
|
32046
|
+
can_unlock_with_code: {
|
|
32047
|
+
description: string;
|
|
32048
|
+
type: string;
|
|
32049
|
+
};
|
|
32050
|
+
can_unlock_with_mobile_key: {
|
|
32051
|
+
description: string;
|
|
32052
|
+
type: string;
|
|
32053
|
+
};
|
|
31954
32054
|
connected_account_id: {
|
|
31955
32055
|
description: string;
|
|
31956
32056
|
format: string;
|
|
@@ -32173,6 +32273,11 @@ declare const _default: {
|
|
|
32173
32273
|
nullable: boolean;
|
|
32174
32274
|
type: string;
|
|
32175
32275
|
};
|
|
32276
|
+
connected_account_id: {
|
|
32277
|
+
description: string;
|
|
32278
|
+
format: string;
|
|
32279
|
+
type: string;
|
|
32280
|
+
};
|
|
32176
32281
|
created_at: {
|
|
32177
32282
|
description: string;
|
|
32178
32283
|
format: string;
|
|
@@ -33041,6 +33146,11 @@ declare const _default: {
|
|
|
33041
33146
|
nullable: boolean;
|
|
33042
33147
|
type: string;
|
|
33043
33148
|
};
|
|
33149
|
+
connected_account_id: {
|
|
33150
|
+
description: string;
|
|
33151
|
+
format: string;
|
|
33152
|
+
type: string;
|
|
33153
|
+
};
|
|
33044
33154
|
created_at: {
|
|
33045
33155
|
description: string;
|
|
33046
33156
|
format: string;
|
|
@@ -34569,7 +34679,9 @@ declare const _default: {
|
|
|
34569
34679
|
type: string;
|
|
34570
34680
|
};
|
|
34571
34681
|
use_offline_access_code: {
|
|
34682
|
+
deprecated: boolean;
|
|
34572
34683
|
type: string;
|
|
34684
|
+
'x-deprecated': string;
|
|
34573
34685
|
};
|
|
34574
34686
|
};
|
|
34575
34687
|
required: string[];
|
|
@@ -34731,7 +34843,9 @@ declare const _default: {
|
|
|
34731
34843
|
type: string;
|
|
34732
34844
|
};
|
|
34733
34845
|
use_offline_access_code: {
|
|
34846
|
+
deprecated: boolean;
|
|
34734
34847
|
type: string;
|
|
34848
|
+
'x-deprecated': string;
|
|
34735
34849
|
};
|
|
34736
34850
|
};
|
|
34737
34851
|
required: string[];
|
|
@@ -34880,7 +34994,9 @@ declare const _default: {
|
|
|
34880
34994
|
type: string;
|
|
34881
34995
|
};
|
|
34882
34996
|
use_offline_access_code: {
|
|
34997
|
+
deprecated: boolean;
|
|
34883
34998
|
type: string;
|
|
34999
|
+
'x-deprecated': string;
|
|
34884
35000
|
};
|
|
34885
35001
|
};
|
|
34886
35002
|
required: string[];
|
|
@@ -36948,7 +37064,9 @@ declare const _default: {
|
|
|
36948
37064
|
type: string;
|
|
36949
37065
|
};
|
|
36950
37066
|
use_offline_access_code: {
|
|
37067
|
+
deprecated: boolean;
|
|
36951
37068
|
type: string;
|
|
37069
|
+
'x-deprecated': string;
|
|
36952
37070
|
};
|
|
36953
37071
|
};
|
|
36954
37072
|
required: string[];
|
|
@@ -37114,7 +37232,9 @@ declare const _default: {
|
|
|
37114
37232
|
type: string;
|
|
37115
37233
|
};
|
|
37116
37234
|
use_offline_access_code: {
|
|
37235
|
+
deprecated: boolean;
|
|
37117
37236
|
type: string;
|
|
37237
|
+
'x-deprecated': string;
|
|
37118
37238
|
};
|
|
37119
37239
|
};
|
|
37120
37240
|
required: string[];
|
|
@@ -37280,7 +37400,9 @@ declare const _default: {
|
|
|
37280
37400
|
type: string;
|
|
37281
37401
|
};
|
|
37282
37402
|
use_offline_access_code: {
|
|
37403
|
+
deprecated: boolean;
|
|
37283
37404
|
type: string;
|
|
37405
|
+
'x-deprecated': string;
|
|
37284
37406
|
};
|
|
37285
37407
|
};
|
|
37286
37408
|
required: string[];
|
|
@@ -37598,7 +37720,6 @@ declare const _default: {
|
|
|
37598
37720
|
};
|
|
37599
37721
|
ends_at: {
|
|
37600
37722
|
description: string;
|
|
37601
|
-
format: string;
|
|
37602
37723
|
type: string;
|
|
37603
37724
|
};
|
|
37604
37725
|
location: {
|
|
@@ -37664,7 +37785,6 @@ declare const _default: {
|
|
|
37664
37785
|
};
|
|
37665
37786
|
starts_at: {
|
|
37666
37787
|
description: string;
|
|
37667
|
-
format: string;
|
|
37668
37788
|
type: string;
|
|
37669
37789
|
};
|
|
37670
37790
|
};
|
|
@@ -50364,6 +50484,7 @@ declare const _default: {
|
|
|
50364
50484
|
'x-undocumented'?: never;
|
|
50365
50485
|
deprecated?: never;
|
|
50366
50486
|
'x-deprecated'?: never;
|
|
50487
|
+
minLength?: never;
|
|
50367
50488
|
};
|
|
50368
50489
|
} | {
|
|
50369
50490
|
in: string;
|
|
@@ -50381,6 +50502,7 @@ declare const _default: {
|
|
|
50381
50502
|
'x-undocumented'?: never;
|
|
50382
50503
|
deprecated?: never;
|
|
50383
50504
|
'x-deprecated'?: never;
|
|
50505
|
+
minLength?: never;
|
|
50384
50506
|
};
|
|
50385
50507
|
} | {
|
|
50386
50508
|
in: string;
|
|
@@ -50403,6 +50525,7 @@ declare const _default: {
|
|
|
50403
50525
|
'x-undocumented'?: never;
|
|
50404
50526
|
deprecated?: never;
|
|
50405
50527
|
'x-deprecated'?: never;
|
|
50528
|
+
minLength?: never;
|
|
50406
50529
|
};
|
|
50407
50530
|
} | {
|
|
50408
50531
|
in: string;
|
|
@@ -50424,6 +50547,7 @@ declare const _default: {
|
|
|
50424
50547
|
'x-undocumented'?: never;
|
|
50425
50548
|
deprecated?: never;
|
|
50426
50549
|
'x-deprecated'?: never;
|
|
50550
|
+
minLength?: never;
|
|
50427
50551
|
};
|
|
50428
50552
|
} | {
|
|
50429
50553
|
in: string;
|
|
@@ -50450,6 +50574,7 @@ declare const _default: {
|
|
|
50450
50574
|
'x-undocumented'?: never;
|
|
50451
50575
|
deprecated?: never;
|
|
50452
50576
|
'x-deprecated'?: never;
|
|
50577
|
+
minLength?: never;
|
|
50453
50578
|
};
|
|
50454
50579
|
} | {
|
|
50455
50580
|
in: string;
|
|
@@ -50467,6 +50592,7 @@ declare const _default: {
|
|
|
50467
50592
|
'x-undocumented'?: never;
|
|
50468
50593
|
deprecated?: never;
|
|
50469
50594
|
'x-deprecated'?: never;
|
|
50595
|
+
minLength?: never;
|
|
50470
50596
|
};
|
|
50471
50597
|
} | {
|
|
50472
50598
|
in: string;
|
|
@@ -50484,6 +50610,7 @@ declare const _default: {
|
|
|
50484
50610
|
'x-undocumented'?: never;
|
|
50485
50611
|
deprecated?: never;
|
|
50486
50612
|
'x-deprecated'?: never;
|
|
50613
|
+
minLength?: never;
|
|
50487
50614
|
};
|
|
50488
50615
|
} | {
|
|
50489
50616
|
in: string;
|
|
@@ -50501,6 +50628,7 @@ declare const _default: {
|
|
|
50501
50628
|
'x-undocumented'?: never;
|
|
50502
50629
|
deprecated?: never;
|
|
50503
50630
|
'x-deprecated'?: never;
|
|
50631
|
+
minLength?: never;
|
|
50504
50632
|
};
|
|
50505
50633
|
} | {
|
|
50506
50634
|
in: string;
|
|
@@ -50522,6 +50650,7 @@ declare const _default: {
|
|
|
50522
50650
|
'x-undocumented'?: never;
|
|
50523
50651
|
deprecated?: never;
|
|
50524
50652
|
'x-deprecated'?: never;
|
|
50653
|
+
minLength?: never;
|
|
50525
50654
|
};
|
|
50526
50655
|
} | {
|
|
50527
50656
|
in: string;
|
|
@@ -50539,6 +50668,7 @@ declare const _default: {
|
|
|
50539
50668
|
'x-undocumented'?: never;
|
|
50540
50669
|
deprecated?: never;
|
|
50541
50670
|
'x-deprecated'?: never;
|
|
50671
|
+
minLength?: never;
|
|
50542
50672
|
};
|
|
50543
50673
|
} | {
|
|
50544
50674
|
in: string;
|
|
@@ -50561,6 +50691,7 @@ declare const _default: {
|
|
|
50561
50691
|
nullable?: never;
|
|
50562
50692
|
deprecated?: never;
|
|
50563
50693
|
'x-deprecated'?: never;
|
|
50694
|
+
minLength?: never;
|
|
50564
50695
|
};
|
|
50565
50696
|
} | {
|
|
50566
50697
|
in: string;
|
|
@@ -50578,6 +50709,25 @@ declare const _default: {
|
|
|
50578
50709
|
default?: never;
|
|
50579
50710
|
additionalProperties?: never;
|
|
50580
50711
|
'x-undocumented'?: never;
|
|
50712
|
+
minLength?: never;
|
|
50713
|
+
};
|
|
50714
|
+
} | {
|
|
50715
|
+
in: string;
|
|
50716
|
+
name: string;
|
|
50717
|
+
schema: {
|
|
50718
|
+
description: string;
|
|
50719
|
+
minLength: number;
|
|
50720
|
+
type: string;
|
|
50721
|
+
items?: never;
|
|
50722
|
+
format?: never;
|
|
50723
|
+
oneOf?: never;
|
|
50724
|
+
enum?: never;
|
|
50725
|
+
default?: never;
|
|
50726
|
+
additionalProperties?: never;
|
|
50727
|
+
nullable?: never;
|
|
50728
|
+
'x-undocumented'?: never;
|
|
50729
|
+
deprecated?: never;
|
|
50730
|
+
'x-deprecated'?: never;
|
|
50581
50731
|
};
|
|
50582
50732
|
})[];
|
|
50583
50733
|
responses: {
|
|
@@ -50758,6 +50908,11 @@ declare const _default: {
|
|
|
50758
50908
|
nullable: boolean;
|
|
50759
50909
|
type: string;
|
|
50760
50910
|
};
|
|
50911
|
+
search: {
|
|
50912
|
+
description: string;
|
|
50913
|
+
minLength: number;
|
|
50914
|
+
type: string;
|
|
50915
|
+
};
|
|
50761
50916
|
space_id: {
|
|
50762
50917
|
description: string;
|
|
50763
50918
|
format: string;
|
|
@@ -51408,6 +51563,7 @@ declare const _default: {
|
|
|
51408
51563
|
'x-undocumented'?: never;
|
|
51409
51564
|
deprecated?: never;
|
|
51410
51565
|
'x-deprecated'?: never;
|
|
51566
|
+
minLength?: never;
|
|
51411
51567
|
};
|
|
51412
51568
|
} | {
|
|
51413
51569
|
in: string;
|
|
@@ -51425,6 +51581,7 @@ declare const _default: {
|
|
|
51425
51581
|
'x-undocumented'?: never;
|
|
51426
51582
|
deprecated?: never;
|
|
51427
51583
|
'x-deprecated'?: never;
|
|
51584
|
+
minLength?: never;
|
|
51428
51585
|
};
|
|
51429
51586
|
} | {
|
|
51430
51587
|
in: string;
|
|
@@ -51447,6 +51604,7 @@ declare const _default: {
|
|
|
51447
51604
|
'x-undocumented'?: never;
|
|
51448
51605
|
deprecated?: never;
|
|
51449
51606
|
'x-deprecated'?: never;
|
|
51607
|
+
minLength?: never;
|
|
51450
51608
|
};
|
|
51451
51609
|
} | {
|
|
51452
51610
|
in: string;
|
|
@@ -51468,6 +51626,7 @@ declare const _default: {
|
|
|
51468
51626
|
'x-undocumented'?: never;
|
|
51469
51627
|
deprecated?: never;
|
|
51470
51628
|
'x-deprecated'?: never;
|
|
51629
|
+
minLength?: never;
|
|
51471
51630
|
};
|
|
51472
51631
|
} | {
|
|
51473
51632
|
in: string;
|
|
@@ -51494,6 +51653,7 @@ declare const _default: {
|
|
|
51494
51653
|
'x-undocumented'?: never;
|
|
51495
51654
|
deprecated?: never;
|
|
51496
51655
|
'x-deprecated'?: never;
|
|
51656
|
+
minLength?: never;
|
|
51497
51657
|
};
|
|
51498
51658
|
} | {
|
|
51499
51659
|
in: string;
|
|
@@ -51511,6 +51671,7 @@ declare const _default: {
|
|
|
51511
51671
|
'x-undocumented'?: never;
|
|
51512
51672
|
deprecated?: never;
|
|
51513
51673
|
'x-deprecated'?: never;
|
|
51674
|
+
minLength?: never;
|
|
51514
51675
|
};
|
|
51515
51676
|
} | {
|
|
51516
51677
|
in: string;
|
|
@@ -51528,6 +51689,7 @@ declare const _default: {
|
|
|
51528
51689
|
'x-undocumented'?: never;
|
|
51529
51690
|
deprecated?: never;
|
|
51530
51691
|
'x-deprecated'?: never;
|
|
51692
|
+
minLength?: never;
|
|
51531
51693
|
};
|
|
51532
51694
|
} | {
|
|
51533
51695
|
in: string;
|
|
@@ -51545,6 +51707,7 @@ declare const _default: {
|
|
|
51545
51707
|
'x-undocumented'?: never;
|
|
51546
51708
|
deprecated?: never;
|
|
51547
51709
|
'x-deprecated'?: never;
|
|
51710
|
+
minLength?: never;
|
|
51548
51711
|
};
|
|
51549
51712
|
} | {
|
|
51550
51713
|
in: string;
|
|
@@ -51566,6 +51729,7 @@ declare const _default: {
|
|
|
51566
51729
|
'x-undocumented'?: never;
|
|
51567
51730
|
deprecated?: never;
|
|
51568
51731
|
'x-deprecated'?: never;
|
|
51732
|
+
minLength?: never;
|
|
51569
51733
|
};
|
|
51570
51734
|
} | {
|
|
51571
51735
|
in: string;
|
|
@@ -51583,6 +51747,7 @@ declare const _default: {
|
|
|
51583
51747
|
'x-undocumented'?: never;
|
|
51584
51748
|
deprecated?: never;
|
|
51585
51749
|
'x-deprecated'?: never;
|
|
51750
|
+
minLength?: never;
|
|
51586
51751
|
};
|
|
51587
51752
|
} | {
|
|
51588
51753
|
in: string;
|
|
@@ -51605,6 +51770,7 @@ declare const _default: {
|
|
|
51605
51770
|
nullable?: never;
|
|
51606
51771
|
deprecated?: never;
|
|
51607
51772
|
'x-deprecated'?: never;
|
|
51773
|
+
minLength?: never;
|
|
51608
51774
|
};
|
|
51609
51775
|
} | {
|
|
51610
51776
|
in: string;
|
|
@@ -51622,6 +51788,25 @@ declare const _default: {
|
|
|
51622
51788
|
default?: never;
|
|
51623
51789
|
additionalProperties?: never;
|
|
51624
51790
|
'x-undocumented'?: never;
|
|
51791
|
+
minLength?: never;
|
|
51792
|
+
};
|
|
51793
|
+
} | {
|
|
51794
|
+
in: string;
|
|
51795
|
+
name: string;
|
|
51796
|
+
schema: {
|
|
51797
|
+
description: string;
|
|
51798
|
+
minLength: number;
|
|
51799
|
+
type: string;
|
|
51800
|
+
items?: never;
|
|
51801
|
+
format?: never;
|
|
51802
|
+
oneOf?: never;
|
|
51803
|
+
enum?: never;
|
|
51804
|
+
default?: never;
|
|
51805
|
+
additionalProperties?: never;
|
|
51806
|
+
nullable?: never;
|
|
51807
|
+
'x-undocumented'?: never;
|
|
51808
|
+
deprecated?: never;
|
|
51809
|
+
'x-deprecated'?: never;
|
|
51625
51810
|
};
|
|
51626
51811
|
})[];
|
|
51627
51812
|
responses: {
|
|
@@ -51781,6 +51966,11 @@ declare const _default: {
|
|
|
51781
51966
|
nullable: boolean;
|
|
51782
51967
|
type: string;
|
|
51783
51968
|
};
|
|
51969
|
+
search: {
|
|
51970
|
+
description: string;
|
|
51971
|
+
minLength: number;
|
|
51972
|
+
type: string;
|
|
51973
|
+
};
|
|
51784
51974
|
space_id: {
|
|
51785
51975
|
description: string;
|
|
51786
51976
|
format: string;
|
|
@@ -52984,6 +53174,7 @@ declare const _default: {
|
|
|
52984
53174
|
'x-undocumented'?: never;
|
|
52985
53175
|
deprecated?: never;
|
|
52986
53176
|
'x-deprecated'?: never;
|
|
53177
|
+
minLength?: never;
|
|
52987
53178
|
};
|
|
52988
53179
|
} | {
|
|
52989
53180
|
in: string;
|
|
@@ -53000,6 +53191,7 @@ declare const _default: {
|
|
|
53000
53191
|
'x-undocumented'?: never;
|
|
53001
53192
|
deprecated?: never;
|
|
53002
53193
|
'x-deprecated'?: never;
|
|
53194
|
+
minLength?: never;
|
|
53003
53195
|
};
|
|
53004
53196
|
} | {
|
|
53005
53197
|
in: string;
|
|
@@ -53021,6 +53213,7 @@ declare const _default: {
|
|
|
53021
53213
|
'x-undocumented'?: never;
|
|
53022
53214
|
deprecated?: never;
|
|
53023
53215
|
'x-deprecated'?: never;
|
|
53216
|
+
minLength?: never;
|
|
53024
53217
|
};
|
|
53025
53218
|
} | {
|
|
53026
53219
|
in: string;
|
|
@@ -53037,6 +53230,7 @@ declare const _default: {
|
|
|
53037
53230
|
'x-undocumented'?: never;
|
|
53038
53231
|
deprecated?: never;
|
|
53039
53232
|
'x-deprecated'?: never;
|
|
53233
|
+
minLength?: never;
|
|
53040
53234
|
};
|
|
53041
53235
|
} | {
|
|
53042
53236
|
in: string;
|
|
@@ -53058,6 +53252,7 @@ declare const _default: {
|
|
|
53058
53252
|
'x-undocumented'?: never;
|
|
53059
53253
|
deprecated?: never;
|
|
53060
53254
|
'x-deprecated'?: never;
|
|
53255
|
+
minLength?: never;
|
|
53061
53256
|
};
|
|
53062
53257
|
} | {
|
|
53063
53258
|
in: string;
|
|
@@ -53074,6 +53269,7 @@ declare const _default: {
|
|
|
53074
53269
|
'x-undocumented'?: never;
|
|
53075
53270
|
deprecated?: never;
|
|
53076
53271
|
'x-deprecated'?: never;
|
|
53272
|
+
minLength?: never;
|
|
53077
53273
|
};
|
|
53078
53274
|
} | {
|
|
53079
53275
|
in: string;
|
|
@@ -53090,6 +53286,7 @@ declare const _default: {
|
|
|
53090
53286
|
'x-undocumented'?: never;
|
|
53091
53287
|
deprecated?: never;
|
|
53092
53288
|
'x-deprecated'?: never;
|
|
53289
|
+
minLength?: never;
|
|
53093
53290
|
};
|
|
53094
53291
|
} | {
|
|
53095
53292
|
in: string;
|
|
@@ -53110,6 +53307,7 @@ declare const _default: {
|
|
|
53110
53307
|
'x-undocumented'?: never;
|
|
53111
53308
|
deprecated?: never;
|
|
53112
53309
|
'x-deprecated'?: never;
|
|
53310
|
+
minLength?: never;
|
|
53113
53311
|
};
|
|
53114
53312
|
} | {
|
|
53115
53313
|
in: string;
|
|
@@ -53126,6 +53324,7 @@ declare const _default: {
|
|
|
53126
53324
|
'x-undocumented'?: never;
|
|
53127
53325
|
deprecated?: never;
|
|
53128
53326
|
'x-deprecated'?: never;
|
|
53327
|
+
minLength?: never;
|
|
53129
53328
|
};
|
|
53130
53329
|
} | {
|
|
53131
53330
|
in: string;
|
|
@@ -53147,6 +53346,7 @@ declare const _default: {
|
|
|
53147
53346
|
nullable?: never;
|
|
53148
53347
|
deprecated?: never;
|
|
53149
53348
|
'x-deprecated'?: never;
|
|
53349
|
+
minLength?: never;
|
|
53150
53350
|
};
|
|
53151
53351
|
} | {
|
|
53152
53352
|
in: string;
|
|
@@ -53163,6 +53363,24 @@ declare const _default: {
|
|
|
53163
53363
|
default?: never;
|
|
53164
53364
|
additionalProperties?: never;
|
|
53165
53365
|
'x-undocumented'?: never;
|
|
53366
|
+
minLength?: never;
|
|
53367
|
+
};
|
|
53368
|
+
} | {
|
|
53369
|
+
in: string;
|
|
53370
|
+
name: string;
|
|
53371
|
+
schema: {
|
|
53372
|
+
description: string;
|
|
53373
|
+
minLength: number;
|
|
53374
|
+
type: string;
|
|
53375
|
+
items?: never;
|
|
53376
|
+
format?: never;
|
|
53377
|
+
enum?: never;
|
|
53378
|
+
default?: never;
|
|
53379
|
+
additionalProperties?: never;
|
|
53380
|
+
nullable?: never;
|
|
53381
|
+
'x-undocumented'?: never;
|
|
53382
|
+
deprecated?: never;
|
|
53383
|
+
'x-deprecated'?: never;
|
|
53166
53384
|
};
|
|
53167
53385
|
})[];
|
|
53168
53386
|
responses: {
|
|
@@ -53331,6 +53549,11 @@ declare const _default: {
|
|
|
53331
53549
|
nullable: boolean;
|
|
53332
53550
|
type: string;
|
|
53333
53551
|
};
|
|
53552
|
+
search: {
|
|
53553
|
+
description: string;
|
|
53554
|
+
minLength: number;
|
|
53555
|
+
type: string;
|
|
53556
|
+
};
|
|
53334
53557
|
space_id: {
|
|
53335
53558
|
description: string;
|
|
53336
53559
|
format: string;
|
|
@@ -54103,6 +54326,7 @@ declare const _default: {
|
|
|
54103
54326
|
'x-undocumented'?: never;
|
|
54104
54327
|
deprecated?: never;
|
|
54105
54328
|
'x-deprecated'?: never;
|
|
54329
|
+
minLength?: never;
|
|
54106
54330
|
};
|
|
54107
54331
|
} | {
|
|
54108
54332
|
in: string;
|
|
@@ -54119,6 +54343,7 @@ declare const _default: {
|
|
|
54119
54343
|
'x-undocumented'?: never;
|
|
54120
54344
|
deprecated?: never;
|
|
54121
54345
|
'x-deprecated'?: never;
|
|
54346
|
+
minLength?: never;
|
|
54122
54347
|
};
|
|
54123
54348
|
} | {
|
|
54124
54349
|
in: string;
|
|
@@ -54140,6 +54365,7 @@ declare const _default: {
|
|
|
54140
54365
|
'x-undocumented'?: never;
|
|
54141
54366
|
deprecated?: never;
|
|
54142
54367
|
'x-deprecated'?: never;
|
|
54368
|
+
minLength?: never;
|
|
54143
54369
|
};
|
|
54144
54370
|
} | {
|
|
54145
54371
|
in: string;
|
|
@@ -54156,6 +54382,7 @@ declare const _default: {
|
|
|
54156
54382
|
'x-undocumented'?: never;
|
|
54157
54383
|
deprecated?: never;
|
|
54158
54384
|
'x-deprecated'?: never;
|
|
54385
|
+
minLength?: never;
|
|
54159
54386
|
};
|
|
54160
54387
|
} | {
|
|
54161
54388
|
in: string;
|
|
@@ -54177,6 +54404,7 @@ declare const _default: {
|
|
|
54177
54404
|
'x-undocumented'?: never;
|
|
54178
54405
|
deprecated?: never;
|
|
54179
54406
|
'x-deprecated'?: never;
|
|
54407
|
+
minLength?: never;
|
|
54180
54408
|
};
|
|
54181
54409
|
} | {
|
|
54182
54410
|
in: string;
|
|
@@ -54193,6 +54421,7 @@ declare const _default: {
|
|
|
54193
54421
|
'x-undocumented'?: never;
|
|
54194
54422
|
deprecated?: never;
|
|
54195
54423
|
'x-deprecated'?: never;
|
|
54424
|
+
minLength?: never;
|
|
54196
54425
|
};
|
|
54197
54426
|
} | {
|
|
54198
54427
|
in: string;
|
|
@@ -54209,6 +54438,7 @@ declare const _default: {
|
|
|
54209
54438
|
'x-undocumented'?: never;
|
|
54210
54439
|
deprecated?: never;
|
|
54211
54440
|
'x-deprecated'?: never;
|
|
54441
|
+
minLength?: never;
|
|
54212
54442
|
};
|
|
54213
54443
|
} | {
|
|
54214
54444
|
in: string;
|
|
@@ -54229,6 +54459,7 @@ declare const _default: {
|
|
|
54229
54459
|
'x-undocumented'?: never;
|
|
54230
54460
|
deprecated?: never;
|
|
54231
54461
|
'x-deprecated'?: never;
|
|
54462
|
+
minLength?: never;
|
|
54232
54463
|
};
|
|
54233
54464
|
} | {
|
|
54234
54465
|
in: string;
|
|
@@ -54245,6 +54476,7 @@ declare const _default: {
|
|
|
54245
54476
|
'x-undocumented'?: never;
|
|
54246
54477
|
deprecated?: never;
|
|
54247
54478
|
'x-deprecated'?: never;
|
|
54479
|
+
minLength?: never;
|
|
54248
54480
|
};
|
|
54249
54481
|
} | {
|
|
54250
54482
|
in: string;
|
|
@@ -54266,6 +54498,7 @@ declare const _default: {
|
|
|
54266
54498
|
nullable?: never;
|
|
54267
54499
|
deprecated?: never;
|
|
54268
54500
|
'x-deprecated'?: never;
|
|
54501
|
+
minLength?: never;
|
|
54269
54502
|
};
|
|
54270
54503
|
} | {
|
|
54271
54504
|
in: string;
|
|
@@ -54282,6 +54515,24 @@ declare const _default: {
|
|
|
54282
54515
|
default?: never;
|
|
54283
54516
|
additionalProperties?: never;
|
|
54284
54517
|
'x-undocumented'?: never;
|
|
54518
|
+
minLength?: never;
|
|
54519
|
+
};
|
|
54520
|
+
} | {
|
|
54521
|
+
in: string;
|
|
54522
|
+
name: string;
|
|
54523
|
+
schema: {
|
|
54524
|
+
description: string;
|
|
54525
|
+
minLength: number;
|
|
54526
|
+
type: string;
|
|
54527
|
+
items?: never;
|
|
54528
|
+
format?: never;
|
|
54529
|
+
enum?: never;
|
|
54530
|
+
default?: never;
|
|
54531
|
+
additionalProperties?: never;
|
|
54532
|
+
nullable?: never;
|
|
54533
|
+
'x-undocumented'?: never;
|
|
54534
|
+
deprecated?: never;
|
|
54535
|
+
'x-deprecated'?: never;
|
|
54285
54536
|
};
|
|
54286
54537
|
})[];
|
|
54287
54538
|
responses: {
|
|
@@ -54450,6 +54701,11 @@ declare const _default: {
|
|
|
54450
54701
|
nullable: boolean;
|
|
54451
54702
|
type: string;
|
|
54452
54703
|
};
|
|
54704
|
+
search: {
|
|
54705
|
+
description: string;
|
|
54706
|
+
minLength: number;
|
|
54707
|
+
type: string;
|
|
54708
|
+
};
|
|
54453
54709
|
space_id: {
|
|
54454
54710
|
description: string;
|
|
54455
54711
|
format: string;
|
|
@@ -59650,6 +59906,7 @@ declare const _default: {
|
|
|
59650
59906
|
'x-undocumented'?: never;
|
|
59651
59907
|
deprecated?: never;
|
|
59652
59908
|
'x-deprecated'?: never;
|
|
59909
|
+
minLength?: never;
|
|
59653
59910
|
};
|
|
59654
59911
|
} | {
|
|
59655
59912
|
in: string;
|
|
@@ -59666,6 +59923,7 @@ declare const _default: {
|
|
|
59666
59923
|
'x-undocumented'?: never;
|
|
59667
59924
|
deprecated?: never;
|
|
59668
59925
|
'x-deprecated'?: never;
|
|
59926
|
+
minLength?: never;
|
|
59669
59927
|
};
|
|
59670
59928
|
} | {
|
|
59671
59929
|
in: string;
|
|
@@ -59687,6 +59945,7 @@ declare const _default: {
|
|
|
59687
59945
|
'x-undocumented'?: never;
|
|
59688
59946
|
deprecated?: never;
|
|
59689
59947
|
'x-deprecated'?: never;
|
|
59948
|
+
minLength?: never;
|
|
59690
59949
|
};
|
|
59691
59950
|
} | {
|
|
59692
59951
|
in: string;
|
|
@@ -59703,6 +59962,7 @@ declare const _default: {
|
|
|
59703
59962
|
'x-undocumented'?: never;
|
|
59704
59963
|
deprecated?: never;
|
|
59705
59964
|
'x-deprecated'?: never;
|
|
59965
|
+
minLength?: never;
|
|
59706
59966
|
};
|
|
59707
59967
|
} | {
|
|
59708
59968
|
in: string;
|
|
@@ -59724,6 +59984,7 @@ declare const _default: {
|
|
|
59724
59984
|
'x-undocumented'?: never;
|
|
59725
59985
|
deprecated?: never;
|
|
59726
59986
|
'x-deprecated'?: never;
|
|
59987
|
+
minLength?: never;
|
|
59727
59988
|
};
|
|
59728
59989
|
} | {
|
|
59729
59990
|
in: string;
|
|
@@ -59740,6 +60001,7 @@ declare const _default: {
|
|
|
59740
60001
|
'x-undocumented'?: never;
|
|
59741
60002
|
deprecated?: never;
|
|
59742
60003
|
'x-deprecated'?: never;
|
|
60004
|
+
minLength?: never;
|
|
59743
60005
|
};
|
|
59744
60006
|
} | {
|
|
59745
60007
|
in: string;
|
|
@@ -59756,6 +60018,7 @@ declare const _default: {
|
|
|
59756
60018
|
'x-undocumented'?: never;
|
|
59757
60019
|
deprecated?: never;
|
|
59758
60020
|
'x-deprecated'?: never;
|
|
60021
|
+
minLength?: never;
|
|
59759
60022
|
};
|
|
59760
60023
|
} | {
|
|
59761
60024
|
in: string;
|
|
@@ -59776,6 +60039,7 @@ declare const _default: {
|
|
|
59776
60039
|
'x-undocumented'?: never;
|
|
59777
60040
|
deprecated?: never;
|
|
59778
60041
|
'x-deprecated'?: never;
|
|
60042
|
+
minLength?: never;
|
|
59779
60043
|
};
|
|
59780
60044
|
} | {
|
|
59781
60045
|
in: string;
|
|
@@ -59792,6 +60056,7 @@ declare const _default: {
|
|
|
59792
60056
|
'x-undocumented'?: never;
|
|
59793
60057
|
deprecated?: never;
|
|
59794
60058
|
'x-deprecated'?: never;
|
|
60059
|
+
minLength?: never;
|
|
59795
60060
|
};
|
|
59796
60061
|
} | {
|
|
59797
60062
|
in: string;
|
|
@@ -59813,6 +60078,7 @@ declare const _default: {
|
|
|
59813
60078
|
nullable?: never;
|
|
59814
60079
|
deprecated?: never;
|
|
59815
60080
|
'x-deprecated'?: never;
|
|
60081
|
+
minLength?: never;
|
|
59816
60082
|
};
|
|
59817
60083
|
} | {
|
|
59818
60084
|
in: string;
|
|
@@ -59829,6 +60095,24 @@ declare const _default: {
|
|
|
59829
60095
|
default?: never;
|
|
59830
60096
|
additionalProperties?: never;
|
|
59831
60097
|
'x-undocumented'?: never;
|
|
60098
|
+
minLength?: never;
|
|
60099
|
+
};
|
|
60100
|
+
} | {
|
|
60101
|
+
in: string;
|
|
60102
|
+
name: string;
|
|
60103
|
+
schema: {
|
|
60104
|
+
description: string;
|
|
60105
|
+
minLength: number;
|
|
60106
|
+
type: string;
|
|
60107
|
+
items?: never;
|
|
60108
|
+
format?: never;
|
|
60109
|
+
enum?: never;
|
|
60110
|
+
default?: never;
|
|
60111
|
+
additionalProperties?: never;
|
|
60112
|
+
nullable?: never;
|
|
60113
|
+
'x-undocumented'?: never;
|
|
60114
|
+
deprecated?: never;
|
|
60115
|
+
'x-deprecated'?: never;
|
|
59832
60116
|
};
|
|
59833
60117
|
})[];
|
|
59834
60118
|
responses: {
|
|
@@ -59997,6 +60281,11 @@ declare const _default: {
|
|
|
59997
60281
|
nullable: boolean;
|
|
59998
60282
|
type: string;
|
|
59999
60283
|
};
|
|
60284
|
+
search: {
|
|
60285
|
+
description: string;
|
|
60286
|
+
minLength: number;
|
|
60287
|
+
type: string;
|
|
60288
|
+
};
|
|
60000
60289
|
space_id: {
|
|
60001
60290
|
description: string;
|
|
60002
60291
|
format: string;
|
|
@@ -66050,7 +66339,15 @@ declare const _default: {
|
|
|
66050
66339
|
get: {
|
|
66051
66340
|
description: string;
|
|
66052
66341
|
operationId: string;
|
|
66053
|
-
parameters: {
|
|
66342
|
+
parameters: ({
|
|
66343
|
+
in: string;
|
|
66344
|
+
name: string;
|
|
66345
|
+
schema: {
|
|
66346
|
+
description: string;
|
|
66347
|
+
type: string;
|
|
66348
|
+
format?: never;
|
|
66349
|
+
};
|
|
66350
|
+
} | {
|
|
66054
66351
|
in: string;
|
|
66055
66352
|
name: string;
|
|
66056
66353
|
schema: {
|
|
@@ -66058,7 +66355,7 @@ declare const _default: {
|
|
|
66058
66355
|
format: string;
|
|
66059
66356
|
type: string;
|
|
66060
66357
|
};
|
|
66061
|
-
}[];
|
|
66358
|
+
})[];
|
|
66062
66359
|
responses: {
|
|
66063
66360
|
200: {
|
|
66064
66361
|
content: {
|
|
@@ -66131,6 +66428,10 @@ declare const _default: {
|
|
|
66131
66428
|
format: string;
|
|
66132
66429
|
type: string;
|
|
66133
66430
|
};
|
|
66431
|
+
search: {
|
|
66432
|
+
description: string;
|
|
66433
|
+
type: string;
|
|
66434
|
+
};
|
|
66134
66435
|
};
|
|
66135
66436
|
type: string;
|
|
66136
66437
|
};
|
|
@@ -68366,6 +68667,8 @@ interface Routes {
|
|
|
68366
68667
|
is_external_modification_allowed?: boolean | undefined;
|
|
68367
68668
|
/** Preferred code length. Only applicable if you do not specify a `code`. If the affected device does not support the preferred code length, Seam reverts to using the shortest supported code length. */
|
|
68368
68669
|
preferred_code_length?: number | undefined;
|
|
68670
|
+
/**
|
|
68671
|
+
* @deprecated Use `is_offline_access_code` instead. */
|
|
68369
68672
|
use_offline_access_code?: boolean | undefined;
|
|
68370
68673
|
/** Indicates whether the access code is an [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes). */
|
|
68371
68674
|
is_offline_access_code?: boolean | undefined;
|
|
@@ -68517,6 +68820,8 @@ interface Routes {
|
|
|
68517
68820
|
acs_credential_id: string;
|
|
68518
68821
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
68519
68822
|
acs_user_id?: string | undefined;
|
|
68823
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
68824
|
+
connected_account_id: string;
|
|
68520
68825
|
acs_credential_pool_id?: string | undefined;
|
|
68521
68826
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
68522
68827
|
acs_system_id: string;
|
|
@@ -68643,6 +68948,8 @@ interface Routes {
|
|
|
68643
68948
|
acs_credential_id: string;
|
|
68644
68949
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
68645
68950
|
acs_user_id?: string | undefined;
|
|
68951
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
68952
|
+
connected_account_id: string;
|
|
68646
68953
|
acs_credential_pool_id?: string | undefined;
|
|
68647
68954
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
68648
68955
|
acs_system_id: string;
|
|
@@ -68892,6 +69199,8 @@ interface Routes {
|
|
|
68892
69199
|
acs_credential_id: string;
|
|
68893
69200
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
68894
69201
|
acs_user_id?: string | undefined;
|
|
69202
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
69203
|
+
connected_account_id: string;
|
|
68895
69204
|
acs_credential_pool_id?: string | undefined;
|
|
68896
69205
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
68897
69206
|
acs_system_id: string;
|
|
@@ -69018,6 +69327,8 @@ interface Routes {
|
|
|
69018
69327
|
acs_credential_id: string;
|
|
69019
69328
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
69020
69329
|
acs_user_id?: string | undefined;
|
|
69330
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
69331
|
+
connected_account_id: string;
|
|
69021
69332
|
acs_credential_pool_id?: string | undefined;
|
|
69022
69333
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
69023
69334
|
acs_system_id: string;
|
|
@@ -70225,6 +70536,8 @@ interface Routes {
|
|
|
70225
70536
|
allow_external_modification?: boolean | undefined;
|
|
70226
70537
|
/** Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
|
|
70227
70538
|
is_external_modification_allowed?: boolean | undefined;
|
|
70539
|
+
/**
|
|
70540
|
+
* @deprecated Use `is_offline_access_code` instead. */
|
|
70228
70541
|
use_offline_access_code?: boolean | undefined;
|
|
70229
70542
|
/** Indicates whether the access code is an [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes). */
|
|
70230
70543
|
is_offline_access_code?: boolean | undefined;
|
|
@@ -70898,6 +71211,8 @@ interface Routes {
|
|
|
70898
71211
|
acs_credential_id: string;
|
|
70899
71212
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
70900
71213
|
acs_user_id?: string | undefined;
|
|
71214
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
71215
|
+
connected_account_id: string;
|
|
70901
71216
|
acs_credential_pool_id?: string | undefined;
|
|
70902
71217
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
70903
71218
|
acs_system_id: string;
|
|
@@ -71024,6 +71339,8 @@ interface Routes {
|
|
|
71024
71339
|
acs_credential_id: string;
|
|
71025
71340
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
71026
71341
|
acs_user_id?: string | undefined;
|
|
71342
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
71343
|
+
connected_account_id: string;
|
|
71027
71344
|
acs_credential_pool_id?: string | undefined;
|
|
71028
71345
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
71029
71346
|
acs_system_id: string;
|
|
@@ -71273,6 +71590,8 @@ interface Routes {
|
|
|
71273
71590
|
acs_credential_id: string;
|
|
71274
71591
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
71275
71592
|
acs_user_id?: string | undefined;
|
|
71593
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
71594
|
+
connected_account_id: string;
|
|
71276
71595
|
acs_credential_pool_id?: string | undefined;
|
|
71277
71596
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
71278
71597
|
acs_system_id: string;
|
|
@@ -71399,6 +71718,8 @@ interface Routes {
|
|
|
71399
71718
|
acs_credential_id: string;
|
|
71400
71719
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
71401
71720
|
acs_user_id?: string | undefined;
|
|
71721
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
71722
|
+
connected_account_id: string;
|
|
71402
71723
|
acs_credential_pool_id?: string | undefined;
|
|
71403
71724
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
71404
71725
|
acs_system_id: string;
|
|
@@ -74885,6 +75206,8 @@ interface Routes {
|
|
|
74885
75206
|
acs_credential_id: string;
|
|
74886
75207
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
74887
75208
|
acs_user_id?: string | undefined;
|
|
75209
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
75210
|
+
connected_account_id: string;
|
|
74888
75211
|
acs_credential_pool_id?: string | undefined;
|
|
74889
75212
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
74890
75213
|
acs_system_id: string;
|
|
@@ -75011,6 +75334,8 @@ interface Routes {
|
|
|
75011
75334
|
acs_credential_id: string;
|
|
75012
75335
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
75013
75336
|
acs_user_id?: string | undefined;
|
|
75337
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
75338
|
+
connected_account_id: string;
|
|
75014
75339
|
acs_credential_pool_id?: string | undefined;
|
|
75015
75340
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
75016
75341
|
acs_system_id: string;
|
|
@@ -75260,6 +75585,8 @@ interface Routes {
|
|
|
75260
75585
|
acs_credential_id: string;
|
|
75261
75586
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
75262
75587
|
acs_user_id?: string | undefined;
|
|
75588
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
75589
|
+
connected_account_id: string;
|
|
75263
75590
|
acs_credential_pool_id?: string | undefined;
|
|
75264
75591
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
75265
75592
|
acs_system_id: string;
|
|
@@ -75386,6 +75713,8 @@ interface Routes {
|
|
|
75386
75713
|
acs_credential_id: string;
|
|
75387
75714
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
75388
75715
|
acs_user_id?: string | undefined;
|
|
75716
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
75717
|
+
connected_account_id: string;
|
|
75389
75718
|
acs_credential_pool_id?: string | undefined;
|
|
75390
75719
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
75391
75720
|
acs_system_id: string;
|
|
@@ -77115,6 +77444,8 @@ interface Routes {
|
|
|
77115
77444
|
is_external_modification_allowed?: boolean | undefined;
|
|
77116
77445
|
/** Preferred code length. Only applicable if you do not specify a `code`. If the affected device does not support the preferred code length, Seam reverts to using the shortest supported code length. */
|
|
77117
77446
|
preferred_code_length?: number | undefined;
|
|
77447
|
+
/**
|
|
77448
|
+
* @deprecated Use `is_offline_access_code` instead. */
|
|
77118
77449
|
use_offline_access_code?: boolean | undefined;
|
|
77119
77450
|
/** Indicates whether the access code is an [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes). */
|
|
77120
77451
|
is_offline_access_code?: boolean | undefined;
|
|
@@ -77274,6 +77605,8 @@ interface Routes {
|
|
|
77274
77605
|
acs_credential_id: string;
|
|
77275
77606
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
77276
77607
|
acs_user_id?: string | undefined;
|
|
77608
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
77609
|
+
connected_account_id: string;
|
|
77277
77610
|
acs_credential_pool_id?: string | undefined;
|
|
77278
77611
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
77279
77612
|
acs_system_id: string;
|
|
@@ -77400,6 +77733,8 @@ interface Routes {
|
|
|
77400
77733
|
acs_credential_id: string;
|
|
77401
77734
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
77402
77735
|
acs_user_id?: string | undefined;
|
|
77736
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
77737
|
+
connected_account_id: string;
|
|
77403
77738
|
acs_credential_pool_id?: string | undefined;
|
|
77404
77739
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
77405
77740
|
acs_system_id: string;
|
|
@@ -77649,6 +77984,8 @@ interface Routes {
|
|
|
77649
77984
|
acs_credential_id: string;
|
|
77650
77985
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
77651
77986
|
acs_user_id?: string | undefined;
|
|
77987
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
77988
|
+
connected_account_id: string;
|
|
77652
77989
|
acs_credential_pool_id?: string | undefined;
|
|
77653
77990
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
77654
77991
|
acs_system_id: string;
|
|
@@ -77775,6 +78112,8 @@ interface Routes {
|
|
|
77775
78112
|
acs_credential_id: string;
|
|
77776
78113
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
77777
78114
|
acs_user_id?: string | undefined;
|
|
78115
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
78116
|
+
connected_account_id: string;
|
|
77778
78117
|
acs_credential_pool_id?: string | undefined;
|
|
77779
78118
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
77780
78119
|
acs_system_id: string;
|
|
@@ -78974,6 +79313,12 @@ interface Routes {
|
|
|
78974
79313
|
/** Description of the door in the Salto Space access system. */
|
|
78975
79314
|
door_description?: string | undefined;
|
|
78976
79315
|
} | undefined;
|
|
79316
|
+
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
79317
|
+
can_unlock_with_mobile_key?: boolean | undefined;
|
|
79318
|
+
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
79319
|
+
can_unlock_with_card?: boolean | undefined;
|
|
79320
|
+
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
79321
|
+
can_unlock_with_code?: boolean | undefined;
|
|
78977
79322
|
}>;
|
|
78978
79323
|
};
|
|
78979
79324
|
};
|
|
@@ -79390,6 +79735,8 @@ interface Routes {
|
|
|
79390
79735
|
acs_credential_id: string;
|
|
79391
79736
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
79392
79737
|
acs_user_id?: string | undefined;
|
|
79738
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
79739
|
+
connected_account_id: string;
|
|
79393
79740
|
acs_credential_pool_id?: string | undefined;
|
|
79394
79741
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
79395
79742
|
acs_system_id: string;
|
|
@@ -79581,6 +79928,8 @@ interface Routes {
|
|
|
79581
79928
|
acs_credential_id: string;
|
|
79582
79929
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
79583
79930
|
acs_user_id?: string | undefined;
|
|
79931
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
79932
|
+
connected_account_id: string;
|
|
79584
79933
|
acs_credential_pool_id?: string | undefined;
|
|
79585
79934
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
79586
79935
|
acs_system_id: string;
|
|
@@ -79734,6 +80083,8 @@ interface Routes {
|
|
|
79734
80083
|
acs_credential_id: string;
|
|
79735
80084
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
79736
80085
|
acs_user_id?: string | undefined;
|
|
80086
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
80087
|
+
connected_account_id: string;
|
|
79737
80088
|
acs_credential_pool_id?: string | undefined;
|
|
79738
80089
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
79739
80090
|
acs_system_id: string;
|
|
@@ -79891,6 +80242,8 @@ interface Routes {
|
|
|
79891
80242
|
acs_credential_id: string;
|
|
79892
80243
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
79893
80244
|
acs_user_id?: string | undefined;
|
|
80245
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
80246
|
+
connected_account_id: string;
|
|
79894
80247
|
acs_credential_pool_id?: string | undefined;
|
|
79895
80248
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
79896
80249
|
acs_system_id: string;
|
|
@@ -80049,6 +80402,8 @@ interface Routes {
|
|
|
80049
80402
|
acs_credential_id: string;
|
|
80050
80403
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
80051
80404
|
acs_user_id?: string | undefined;
|
|
80405
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
80406
|
+
connected_account_id: string;
|
|
80052
80407
|
acs_credential_pool_id?: string | undefined;
|
|
80053
80408
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
80054
80409
|
acs_system_id: string;
|
|
@@ -80273,6 +80628,12 @@ interface Routes {
|
|
|
80273
80628
|
/** Description of the door in the Salto Space access system. */
|
|
80274
80629
|
door_description?: string | undefined;
|
|
80275
80630
|
} | undefined;
|
|
80631
|
+
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
80632
|
+
can_unlock_with_mobile_key?: boolean | undefined;
|
|
80633
|
+
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
80634
|
+
can_unlock_with_card?: boolean | undefined;
|
|
80635
|
+
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
80636
|
+
can_unlock_with_code?: boolean | undefined;
|
|
80276
80637
|
}>;
|
|
80277
80638
|
};
|
|
80278
80639
|
};
|
|
@@ -80301,6 +80662,8 @@ interface Routes {
|
|
|
80301
80662
|
acs_credential_id: string;
|
|
80302
80663
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
80303
80664
|
acs_user_id?: string | undefined;
|
|
80665
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
80666
|
+
connected_account_id: string;
|
|
80304
80667
|
acs_credential_pool_id?: string | undefined;
|
|
80305
80668
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
80306
80669
|
acs_system_id: string;
|
|
@@ -80442,6 +80805,8 @@ interface Routes {
|
|
|
80442
80805
|
acs_credential_id: string;
|
|
80443
80806
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
80444
80807
|
acs_user_id?: string | undefined;
|
|
80808
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
80809
|
+
connected_account_id: string;
|
|
80445
80810
|
acs_credential_pool_id?: string | undefined;
|
|
80446
80811
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
80447
80812
|
acs_system_id: string;
|
|
@@ -80593,6 +80958,8 @@ interface Routes {
|
|
|
80593
80958
|
acs_credential_id: string;
|
|
80594
80959
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
80595
80960
|
acs_user_id?: string | undefined;
|
|
80961
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
80962
|
+
connected_account_id: string;
|
|
80596
80963
|
acs_credential_pool_id?: string | undefined;
|
|
80597
80964
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
80598
80965
|
acs_system_id: string;
|
|
@@ -80742,6 +81109,8 @@ interface Routes {
|
|
|
80742
81109
|
acs_credential_id: string;
|
|
80743
81110
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
80744
81111
|
acs_user_id?: string | undefined;
|
|
81112
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
81113
|
+
connected_account_id: string;
|
|
80745
81114
|
acs_credential_pool_id?: string | undefined;
|
|
80746
81115
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
80747
81116
|
acs_system_id: string;
|
|
@@ -81019,6 +81388,8 @@ interface Routes {
|
|
|
81019
81388
|
acs_credential_id: string;
|
|
81020
81389
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
81021
81390
|
acs_user_id?: string | undefined;
|
|
81391
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
81392
|
+
connected_account_id: string;
|
|
81022
81393
|
acs_credential_pool_id?: string | undefined;
|
|
81023
81394
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
81024
81395
|
acs_system_id: string;
|
|
@@ -81145,6 +81516,8 @@ interface Routes {
|
|
|
81145
81516
|
acs_credential_id: string;
|
|
81146
81517
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
81147
81518
|
acs_user_id?: string | undefined;
|
|
81519
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
81520
|
+
connected_account_id: string;
|
|
81148
81521
|
acs_credential_pool_id?: string | undefined;
|
|
81149
81522
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
81150
81523
|
acs_system_id: string;
|
|
@@ -81394,6 +81767,8 @@ interface Routes {
|
|
|
81394
81767
|
acs_credential_id: string;
|
|
81395
81768
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
81396
81769
|
acs_user_id?: string | undefined;
|
|
81770
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
81771
|
+
connected_account_id: string;
|
|
81397
81772
|
acs_credential_pool_id?: string | undefined;
|
|
81398
81773
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
81399
81774
|
acs_system_id: string;
|
|
@@ -81520,6 +81895,8 @@ interface Routes {
|
|
|
81520
81895
|
acs_credential_id: string;
|
|
81521
81896
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
81522
81897
|
acs_user_id?: string | undefined;
|
|
81898
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
81899
|
+
connected_account_id: string;
|
|
81523
81900
|
acs_credential_pool_id?: string | undefined;
|
|
81524
81901
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
81525
81902
|
acs_system_id: string;
|
|
@@ -82334,6 +82711,8 @@ interface Routes {
|
|
|
82334
82711
|
acs_credential_id: string;
|
|
82335
82712
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
82336
82713
|
acs_user_id?: string | undefined;
|
|
82714
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
82715
|
+
connected_account_id: string;
|
|
82337
82716
|
acs_credential_pool_id?: string | undefined;
|
|
82338
82717
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
82339
82718
|
acs_system_id: string;
|
|
@@ -82460,6 +82839,8 @@ interface Routes {
|
|
|
82460
82839
|
acs_credential_id: string;
|
|
82461
82840
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
82462
82841
|
acs_user_id?: string | undefined;
|
|
82842
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
82843
|
+
connected_account_id: string;
|
|
82463
82844
|
acs_credential_pool_id?: string | undefined;
|
|
82464
82845
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
82465
82846
|
acs_system_id: string;
|
|
@@ -82709,6 +83090,8 @@ interface Routes {
|
|
|
82709
83090
|
acs_credential_id: string;
|
|
82710
83091
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
82711
83092
|
acs_user_id?: string | undefined;
|
|
83093
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
83094
|
+
connected_account_id: string;
|
|
82712
83095
|
acs_credential_pool_id?: string | undefined;
|
|
82713
83096
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
82714
83097
|
acs_system_id: string;
|
|
@@ -82835,6 +83218,8 @@ interface Routes {
|
|
|
82835
83218
|
acs_credential_id: string;
|
|
82836
83219
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
82837
83220
|
acs_user_id?: string | undefined;
|
|
83221
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
83222
|
+
connected_account_id: string;
|
|
82838
83223
|
acs_credential_pool_id?: string | undefined;
|
|
82839
83224
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
82840
83225
|
acs_system_id: string;
|
|
@@ -83745,6 +84130,8 @@ interface Routes {
|
|
|
83745
84130
|
acs_credential_id: string;
|
|
83746
84131
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
83747
84132
|
acs_user_id?: string | undefined;
|
|
84133
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
84134
|
+
connected_account_id: string;
|
|
83748
84135
|
acs_credential_pool_id?: string | undefined;
|
|
83749
84136
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
83750
84137
|
acs_system_id: string;
|
|
@@ -83871,6 +84258,8 @@ interface Routes {
|
|
|
83871
84258
|
acs_credential_id: string;
|
|
83872
84259
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
83873
84260
|
acs_user_id?: string | undefined;
|
|
84261
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
84262
|
+
connected_account_id: string;
|
|
83874
84263
|
acs_credential_pool_id?: string | undefined;
|
|
83875
84264
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
83876
84265
|
acs_system_id: string;
|
|
@@ -84120,6 +84509,8 @@ interface Routes {
|
|
|
84120
84509
|
acs_credential_id: string;
|
|
84121
84510
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
84122
84511
|
acs_user_id?: string | undefined;
|
|
84512
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
84513
|
+
connected_account_id: string;
|
|
84123
84514
|
acs_credential_pool_id?: string | undefined;
|
|
84124
84515
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
84125
84516
|
acs_system_id: string;
|
|
@@ -84246,6 +84637,8 @@ interface Routes {
|
|
|
84246
84637
|
acs_credential_id: string;
|
|
84247
84638
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
84248
84639
|
acs_user_id?: string | undefined;
|
|
84640
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
84641
|
+
connected_account_id: string;
|
|
84249
84642
|
acs_credential_pool_id?: string | undefined;
|
|
84250
84643
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
84251
84644
|
acs_system_id: string;
|
|
@@ -85089,6 +85482,12 @@ interface Routes {
|
|
|
85089
85482
|
/** Description of the door in the Salto Space access system. */
|
|
85090
85483
|
door_description?: string | undefined;
|
|
85091
85484
|
} | undefined;
|
|
85485
|
+
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
85486
|
+
can_unlock_with_mobile_key?: boolean | undefined;
|
|
85487
|
+
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
85488
|
+
can_unlock_with_card?: boolean | undefined;
|
|
85489
|
+
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
85490
|
+
can_unlock_with_code?: boolean | undefined;
|
|
85092
85491
|
};
|
|
85093
85492
|
};
|
|
85094
85493
|
};
|
|
@@ -85219,6 +85618,12 @@ interface Routes {
|
|
|
85219
85618
|
/** Description of the door in the Salto Space access system. */
|
|
85220
85619
|
door_description?: string | undefined;
|
|
85221
85620
|
} | undefined;
|
|
85621
|
+
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
85622
|
+
can_unlock_with_mobile_key?: boolean | undefined;
|
|
85623
|
+
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
85624
|
+
can_unlock_with_card?: boolean | undefined;
|
|
85625
|
+
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
85626
|
+
can_unlock_with_code?: boolean | undefined;
|
|
85222
85627
|
}>;
|
|
85223
85628
|
};
|
|
85224
85629
|
};
|
|
@@ -85240,6 +85645,8 @@ interface Routes {
|
|
|
85240
85645
|
acs_credential_id: string;
|
|
85241
85646
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
85242
85647
|
acs_user_id?: string | undefined;
|
|
85648
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
85649
|
+
connected_account_id: string;
|
|
85243
85650
|
acs_credential_pool_id?: string | undefined;
|
|
85244
85651
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
85245
85652
|
acs_system_id: string;
|
|
@@ -86616,6 +87023,12 @@ interface Routes {
|
|
|
86616
87023
|
/** Description of the door in the Salto Space access system. */
|
|
86617
87024
|
door_description?: string | undefined;
|
|
86618
87025
|
} | undefined;
|
|
87026
|
+
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
87027
|
+
can_unlock_with_mobile_key?: boolean | undefined;
|
|
87028
|
+
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
87029
|
+
can_unlock_with_card?: boolean | undefined;
|
|
87030
|
+
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
87031
|
+
can_unlock_with_code?: boolean | undefined;
|
|
86619
87032
|
}>;
|
|
86620
87033
|
};
|
|
86621
87034
|
};
|
|
@@ -87318,6 +87731,8 @@ interface Routes {
|
|
|
87318
87731
|
acs_credential_id: string;
|
|
87319
87732
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
87320
87733
|
acs_user_id?: string | undefined;
|
|
87734
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
87735
|
+
connected_account_id: string;
|
|
87321
87736
|
acs_credential_pool_id?: string | undefined;
|
|
87322
87737
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
87323
87738
|
acs_system_id: string;
|
|
@@ -87444,6 +87859,8 @@ interface Routes {
|
|
|
87444
87859
|
acs_credential_id: string;
|
|
87445
87860
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
87446
87861
|
acs_user_id?: string | undefined;
|
|
87862
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
87863
|
+
connected_account_id: string;
|
|
87447
87864
|
acs_credential_pool_id?: string | undefined;
|
|
87448
87865
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
87449
87866
|
acs_system_id: string;
|
|
@@ -87693,6 +88110,8 @@ interface Routes {
|
|
|
87693
88110
|
acs_credential_id: string;
|
|
87694
88111
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
87695
88112
|
acs_user_id?: string | undefined;
|
|
88113
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
88114
|
+
connected_account_id: string;
|
|
87696
88115
|
acs_credential_pool_id?: string | undefined;
|
|
87697
88116
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
87698
88117
|
acs_system_id: string;
|
|
@@ -87819,6 +88238,8 @@ interface Routes {
|
|
|
87819
88238
|
acs_credential_id: string;
|
|
87820
88239
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
87821
88240
|
acs_user_id?: string | undefined;
|
|
88241
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
88242
|
+
connected_account_id: string;
|
|
87822
88243
|
acs_credential_pool_id?: string | undefined;
|
|
87823
88244
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
87824
88245
|
acs_system_id: string;
|
|
@@ -88626,6 +89047,8 @@ interface Routes {
|
|
|
88626
89047
|
acs_credential_id: string;
|
|
88627
89048
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
88628
89049
|
acs_user_id?: string | undefined;
|
|
89050
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
89051
|
+
connected_account_id: string;
|
|
88629
89052
|
acs_credential_pool_id?: string | undefined;
|
|
88630
89053
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
88631
89054
|
acs_system_id: string;
|
|
@@ -88752,6 +89175,8 @@ interface Routes {
|
|
|
88752
89175
|
acs_credential_id: string;
|
|
88753
89176
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
88754
89177
|
acs_user_id?: string | undefined;
|
|
89178
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
89179
|
+
connected_account_id: string;
|
|
88755
89180
|
acs_credential_pool_id?: string | undefined;
|
|
88756
89181
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
88757
89182
|
acs_system_id: string;
|
|
@@ -89001,6 +89426,8 @@ interface Routes {
|
|
|
89001
89426
|
acs_credential_id: string;
|
|
89002
89427
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
89003
89428
|
acs_user_id?: string | undefined;
|
|
89429
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
89430
|
+
connected_account_id: string;
|
|
89004
89431
|
acs_credential_pool_id?: string | undefined;
|
|
89005
89432
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
89006
89433
|
acs_system_id: string;
|
|
@@ -89127,6 +89554,8 @@ interface Routes {
|
|
|
89127
89554
|
acs_credential_id: string;
|
|
89128
89555
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
89129
89556
|
acs_user_id?: string | undefined;
|
|
89557
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
89558
|
+
connected_account_id: string;
|
|
89130
89559
|
acs_credential_pool_id?: string | undefined;
|
|
89131
89560
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
89132
89561
|
acs_system_id: string;
|
|
@@ -90185,7 +90614,6 @@ interface Routes {
|
|
|
90185
90614
|
connected_account_id: string | null;
|
|
90186
90615
|
/** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
|
|
90187
90616
|
url: string;
|
|
90188
|
-
/** */
|
|
90189
90617
|
device_selection_mode: 'none' | 'single' | 'multiple';
|
|
90190
90618
|
/** List of accepted [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
|
|
90191
90619
|
accepted_providers: string[];
|
|
@@ -90265,7 +90693,6 @@ interface Routes {
|
|
|
90265
90693
|
connected_account_id: string | null;
|
|
90266
90694
|
/** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
|
|
90267
90695
|
url: string;
|
|
90268
|
-
/** */
|
|
90269
90696
|
device_selection_mode: 'none' | 'single' | 'multiple';
|
|
90270
90697
|
/** List of accepted [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
|
|
90271
90698
|
accepted_providers: string[];
|
|
@@ -90329,7 +90756,6 @@ interface Routes {
|
|
|
90329
90756
|
connected_account_id: string | null;
|
|
90330
90757
|
/** URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user. */
|
|
90331
90758
|
url: string;
|
|
90332
|
-
/** */
|
|
90333
90759
|
device_selection_mode: 'none' | 'single' | 'multiple';
|
|
90334
90760
|
/** List of accepted [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
|
|
90335
90761
|
accepted_providers: string[];
|
|
@@ -90527,6 +90953,8 @@ interface Routes {
|
|
|
90527
90953
|
automatically_manage_new_devices: boolean;
|
|
90528
90954
|
/** Your unique key for the customer associated with this connected account. */
|
|
90529
90955
|
customer_key?: string | undefined;
|
|
90956
|
+
/** List of capabilities that were accepted during the account connection process. */
|
|
90957
|
+
accepted_capabilities: Array<'lock' | 'thermostat' | 'noise_sensor' | 'access_control'>;
|
|
90530
90958
|
};
|
|
90531
90959
|
};
|
|
90532
90960
|
};
|
|
@@ -90673,6 +91101,8 @@ interface Routes {
|
|
|
90673
91101
|
automatically_manage_new_devices: boolean;
|
|
90674
91102
|
/** Your unique key for the customer associated with this connected account. */
|
|
90675
91103
|
customer_key?: string | undefined;
|
|
91104
|
+
/** List of capabilities that were accepted during the account connection process. */
|
|
91105
|
+
accepted_capabilities: Array<'lock' | 'thermostat' | 'noise_sensor' | 'access_control'>;
|
|
90676
91106
|
}>;
|
|
90677
91107
|
/** Information about the current page of results. */
|
|
90678
91108
|
pagination: {
|
|
@@ -90838,6 +91268,8 @@ interface Routes {
|
|
|
90838
91268
|
automatically_manage_new_devices: boolean;
|
|
90839
91269
|
/** Your unique key for the customer associated with this connected account. */
|
|
90840
91270
|
customer_key?: string | undefined;
|
|
91271
|
+
/** List of capabilities that were accepted during the account connection process. */
|
|
91272
|
+
accepted_capabilities: Array<'lock' | 'thermostat' | 'noise_sensor' | 'access_control'>;
|
|
90841
91273
|
};
|
|
90842
91274
|
};
|
|
90843
91275
|
};
|
|
@@ -92541,6 +92973,8 @@ interface Routes {
|
|
|
92541
92973
|
unstable_location_id?: (string | null) | undefined;
|
|
92542
92974
|
/** ID of the space for which you want to list devices. */
|
|
92543
92975
|
space_id?: string | undefined;
|
|
92976
|
+
/** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
|
|
92977
|
+
search?: string | undefined;
|
|
92544
92978
|
};
|
|
92545
92979
|
formData: {};
|
|
92546
92980
|
jsonResponse: {
|
|
@@ -94174,6 +94608,8 @@ interface Routes {
|
|
|
94174
94608
|
unstable_location_id?: (string | null) | undefined;
|
|
94175
94609
|
/** ID of the space for which you want to list devices. */
|
|
94176
94610
|
space_id?: string | undefined;
|
|
94611
|
+
/** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
|
|
94612
|
+
search?: string | undefined;
|
|
94177
94613
|
};
|
|
94178
94614
|
formData: {};
|
|
94179
94615
|
jsonResponse: {
|
|
@@ -99723,6 +100159,8 @@ interface Routes {
|
|
|
99723
100159
|
unstable_location_id?: (string | null) | undefined;
|
|
99724
100160
|
/** ID of the space for which you want to list devices. */
|
|
99725
100161
|
space_id?: string | undefined;
|
|
100162
|
+
/** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
|
|
100163
|
+
search?: string | undefined;
|
|
99726
100164
|
};
|
|
99727
100165
|
formData: {};
|
|
99728
100166
|
jsonResponse: {
|
|
@@ -102101,6 +102539,8 @@ interface Routes {
|
|
|
102101
102539
|
acs_credential_id: string;
|
|
102102
102540
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
102103
102541
|
acs_user_id?: string | undefined;
|
|
102542
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
102543
|
+
connected_account_id: string;
|
|
102104
102544
|
acs_credential_pool_id?: string | undefined;
|
|
102105
102545
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
102106
102546
|
acs_system_id: string;
|
|
@@ -102227,6 +102667,8 @@ interface Routes {
|
|
|
102227
102667
|
acs_credential_id: string;
|
|
102228
102668
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
102229
102669
|
acs_user_id?: string | undefined;
|
|
102670
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
102671
|
+
connected_account_id: string;
|
|
102230
102672
|
acs_credential_pool_id?: string | undefined;
|
|
102231
102673
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
102232
102674
|
acs_system_id: string;
|
|
@@ -102476,6 +102918,8 @@ interface Routes {
|
|
|
102476
102918
|
acs_credential_id: string;
|
|
102477
102919
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
102478
102920
|
acs_user_id?: string | undefined;
|
|
102921
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
102922
|
+
connected_account_id: string;
|
|
102479
102923
|
acs_credential_pool_id?: string | undefined;
|
|
102480
102924
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
102481
102925
|
acs_system_id: string;
|
|
@@ -102602,6 +103046,8 @@ interface Routes {
|
|
|
102602
103046
|
acs_credential_id: string;
|
|
102603
103047
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
102604
103048
|
acs_user_id?: string | undefined;
|
|
103049
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
103050
|
+
connected_account_id: string;
|
|
102605
103051
|
acs_credential_pool_id?: string | undefined;
|
|
102606
103052
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
102607
103053
|
acs_system_id: string;
|
|
@@ -103416,6 +103862,8 @@ interface Routes {
|
|
|
103416
103862
|
acs_credential_id: string;
|
|
103417
103863
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
103418
103864
|
acs_user_id?: string | undefined;
|
|
103865
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
103866
|
+
connected_account_id: string;
|
|
103419
103867
|
acs_credential_pool_id?: string | undefined;
|
|
103420
103868
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
103421
103869
|
acs_system_id: string;
|
|
@@ -103542,6 +103990,8 @@ interface Routes {
|
|
|
103542
103990
|
acs_credential_id: string;
|
|
103543
103991
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
103544
103992
|
acs_user_id?: string | undefined;
|
|
103993
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
103994
|
+
connected_account_id: string;
|
|
103545
103995
|
acs_credential_pool_id?: string | undefined;
|
|
103546
103996
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
103547
103997
|
acs_system_id: string;
|
|
@@ -103791,6 +104241,8 @@ interface Routes {
|
|
|
103791
104241
|
acs_credential_id: string;
|
|
103792
104242
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
103793
104243
|
acs_user_id?: string | undefined;
|
|
104244
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
104245
|
+
connected_account_id: string;
|
|
103794
104246
|
acs_credential_pool_id?: string | undefined;
|
|
103795
104247
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
103796
104248
|
acs_system_id: string;
|
|
@@ -103917,6 +104369,8 @@ interface Routes {
|
|
|
103917
104369
|
acs_credential_id: string;
|
|
103918
104370
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
103919
104371
|
acs_user_id?: string | undefined;
|
|
104372
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
104373
|
+
connected_account_id: string;
|
|
103920
104374
|
acs_credential_pool_id?: string | undefined;
|
|
103921
104375
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
103922
104376
|
acs_system_id: string;
|
|
@@ -104729,6 +105183,8 @@ interface Routes {
|
|
|
104729
105183
|
acs_credential_id: string;
|
|
104730
105184
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
104731
105185
|
acs_user_id?: string | undefined;
|
|
105186
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
105187
|
+
connected_account_id: string;
|
|
104732
105188
|
acs_credential_pool_id?: string | undefined;
|
|
104733
105189
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
104734
105190
|
acs_system_id: string;
|
|
@@ -104855,6 +105311,8 @@ interface Routes {
|
|
|
104855
105311
|
acs_credential_id: string;
|
|
104856
105312
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
104857
105313
|
acs_user_id?: string | undefined;
|
|
105314
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
105315
|
+
connected_account_id: string;
|
|
104858
105316
|
acs_credential_pool_id?: string | undefined;
|
|
104859
105317
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
104860
105318
|
acs_system_id: string;
|
|
@@ -105104,6 +105562,8 @@ interface Routes {
|
|
|
105104
105562
|
acs_credential_id: string;
|
|
105105
105563
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
105106
105564
|
acs_user_id?: string | undefined;
|
|
105565
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
105566
|
+
connected_account_id: string;
|
|
105107
105567
|
acs_credential_pool_id?: string | undefined;
|
|
105108
105568
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
105109
105569
|
acs_system_id: string;
|
|
@@ -105230,6 +105690,8 @@ interface Routes {
|
|
|
105230
105690
|
acs_credential_id: string;
|
|
105231
105691
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
105232
105692
|
acs_user_id?: string | undefined;
|
|
105693
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
105694
|
+
connected_account_id: string;
|
|
105233
105695
|
acs_credential_pool_id?: string | undefined;
|
|
105234
105696
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
105235
105697
|
acs_system_id: string;
|
|
@@ -106044,6 +106506,8 @@ interface Routes {
|
|
|
106044
106506
|
acs_credential_id: string;
|
|
106045
106507
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
106046
106508
|
acs_user_id?: string | undefined;
|
|
106509
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
106510
|
+
connected_account_id: string;
|
|
106047
106511
|
acs_credential_pool_id?: string | undefined;
|
|
106048
106512
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
106049
106513
|
acs_system_id: string;
|
|
@@ -106170,6 +106634,8 @@ interface Routes {
|
|
|
106170
106634
|
acs_credential_id: string;
|
|
106171
106635
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
106172
106636
|
acs_user_id?: string | undefined;
|
|
106637
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
106638
|
+
connected_account_id: string;
|
|
106173
106639
|
acs_credential_pool_id?: string | undefined;
|
|
106174
106640
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
106175
106641
|
acs_system_id: string;
|
|
@@ -106419,6 +106885,8 @@ interface Routes {
|
|
|
106419
106885
|
acs_credential_id: string;
|
|
106420
106886
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
106421
106887
|
acs_user_id?: string | undefined;
|
|
106888
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
106889
|
+
connected_account_id: string;
|
|
106422
106890
|
acs_credential_pool_id?: string | undefined;
|
|
106423
106891
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
106424
106892
|
acs_system_id: string;
|
|
@@ -106545,6 +107013,8 @@ interface Routes {
|
|
|
106545
107013
|
acs_credential_id: string;
|
|
106546
107014
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
106547
107015
|
acs_user_id?: string | undefined;
|
|
107016
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
107017
|
+
connected_account_id: string;
|
|
106548
107018
|
acs_credential_pool_id?: string | undefined;
|
|
106549
107019
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
106550
107020
|
acs_system_id: string;
|
|
@@ -107281,6 +107751,8 @@ interface Routes {
|
|
|
107281
107751
|
unstable_location_id?: (string | null) | undefined;
|
|
107282
107752
|
/** ID of the space for which you want to list devices. */
|
|
107283
107753
|
space_id?: string | undefined;
|
|
107754
|
+
/** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
|
|
107755
|
+
search?: string | undefined;
|
|
107284
107756
|
};
|
|
107285
107757
|
formData: {};
|
|
107286
107758
|
jsonResponse: {
|
|
@@ -109669,6 +110141,8 @@ interface Routes {
|
|
|
109669
110141
|
acs_credential_id: string;
|
|
109670
110142
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
109671
110143
|
acs_user_id?: string | undefined;
|
|
110144
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
110145
|
+
connected_account_id: string;
|
|
109672
110146
|
acs_credential_pool_id?: string | undefined;
|
|
109673
110147
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
109674
110148
|
acs_system_id: string;
|
|
@@ -109795,6 +110269,8 @@ interface Routes {
|
|
|
109795
110269
|
acs_credential_id: string;
|
|
109796
110270
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
109797
110271
|
acs_user_id?: string | undefined;
|
|
110272
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
110273
|
+
connected_account_id: string;
|
|
109798
110274
|
acs_credential_pool_id?: string | undefined;
|
|
109799
110275
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
109800
110276
|
acs_system_id: string;
|
|
@@ -110044,6 +110520,8 @@ interface Routes {
|
|
|
110044
110520
|
acs_credential_id: string;
|
|
110045
110521
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
110046
110522
|
acs_user_id?: string | undefined;
|
|
110523
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
110524
|
+
connected_account_id: string;
|
|
110047
110525
|
acs_credential_pool_id?: string | undefined;
|
|
110048
110526
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
110049
110527
|
acs_system_id: string;
|
|
@@ -110170,6 +110648,8 @@ interface Routes {
|
|
|
110170
110648
|
acs_credential_id: string;
|
|
110171
110649
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
110172
110650
|
acs_user_id?: string | undefined;
|
|
110651
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
110652
|
+
connected_account_id: string;
|
|
110173
110653
|
acs_credential_pool_id?: string | undefined;
|
|
110174
110654
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
110175
110655
|
acs_system_id: string;
|
|
@@ -111003,6 +111483,8 @@ interface Routes {
|
|
|
111003
111483
|
acs_credential_id: string;
|
|
111004
111484
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
111005
111485
|
acs_user_id?: string | undefined;
|
|
111486
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
111487
|
+
connected_account_id: string;
|
|
111006
111488
|
acs_credential_pool_id?: string | undefined;
|
|
111007
111489
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
111008
111490
|
acs_system_id: string;
|
|
@@ -111129,6 +111611,8 @@ interface Routes {
|
|
|
111129
111611
|
acs_credential_id: string;
|
|
111130
111612
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
111131
111613
|
acs_user_id?: string | undefined;
|
|
111614
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
111615
|
+
connected_account_id: string;
|
|
111132
111616
|
acs_credential_pool_id?: string | undefined;
|
|
111133
111617
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
111134
111618
|
acs_system_id: string;
|
|
@@ -111378,6 +111862,8 @@ interface Routes {
|
|
|
111378
111862
|
acs_credential_id: string;
|
|
111379
111863
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
111380
111864
|
acs_user_id?: string | undefined;
|
|
111865
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
111866
|
+
connected_account_id: string;
|
|
111381
111867
|
acs_credential_pool_id?: string | undefined;
|
|
111382
111868
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
111383
111869
|
acs_system_id: string;
|
|
@@ -111504,6 +111990,8 @@ interface Routes {
|
|
|
111504
111990
|
acs_credential_id: string;
|
|
111505
111991
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
111506
111992
|
acs_user_id?: string | undefined;
|
|
111993
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
111994
|
+
connected_account_id: string;
|
|
111507
111995
|
acs_credential_pool_id?: string | undefined;
|
|
111508
111996
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
111509
111997
|
acs_system_id: string;
|
|
@@ -112391,6 +112879,8 @@ interface Routes {
|
|
|
112391
112879
|
acs_credential_id: string;
|
|
112392
112880
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
112393
112881
|
acs_user_id?: string | undefined;
|
|
112882
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
112883
|
+
connected_account_id: string;
|
|
112394
112884
|
acs_credential_pool_id?: string | undefined;
|
|
112395
112885
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
112396
112886
|
acs_system_id: string;
|
|
@@ -112517,6 +113007,8 @@ interface Routes {
|
|
|
112517
113007
|
acs_credential_id: string;
|
|
112518
113008
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
112519
113009
|
acs_user_id?: string | undefined;
|
|
113010
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
113011
|
+
connected_account_id: string;
|
|
112520
113012
|
acs_credential_pool_id?: string | undefined;
|
|
112521
113013
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
112522
113014
|
acs_system_id: string;
|
|
@@ -112766,6 +113258,8 @@ interface Routes {
|
|
|
112766
113258
|
acs_credential_id: string;
|
|
112767
113259
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
112768
113260
|
acs_user_id?: string | undefined;
|
|
113261
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
113262
|
+
connected_account_id: string;
|
|
112769
113263
|
acs_credential_pool_id?: string | undefined;
|
|
112770
113264
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
112771
113265
|
acs_system_id: string;
|
|
@@ -112892,6 +113386,8 @@ interface Routes {
|
|
|
112892
113386
|
acs_credential_id: string;
|
|
112893
113387
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
112894
113388
|
acs_user_id?: string | undefined;
|
|
113389
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
113390
|
+
connected_account_id: string;
|
|
112895
113391
|
acs_credential_pool_id?: string | undefined;
|
|
112896
113392
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
112897
113393
|
acs_system_id: string;
|
|
@@ -114225,6 +114721,8 @@ interface Routes {
|
|
|
114225
114721
|
acs_credential_id: string;
|
|
114226
114722
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
114227
114723
|
acs_user_id?: string | undefined;
|
|
114724
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
114725
|
+
connected_account_id: string;
|
|
114228
114726
|
acs_credential_pool_id?: string | undefined;
|
|
114229
114727
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
114230
114728
|
acs_system_id: string;
|
|
@@ -114387,6 +114885,8 @@ interface Routes {
|
|
|
114387
114885
|
acs_credentials: Array<{
|
|
114388
114886
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
114389
114887
|
acs_user_id?: string | undefined;
|
|
114888
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
114889
|
+
connected_account_id: string;
|
|
114390
114890
|
acs_credential_pool_id?: string | undefined;
|
|
114391
114891
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
114392
114892
|
acs_system_id: string;
|
|
@@ -114598,6 +115098,12 @@ interface Routes {
|
|
|
114598
115098
|
/** Description of the door in the Salto Space access system. */
|
|
114599
115099
|
door_description?: string | undefined;
|
|
114600
115100
|
} | undefined;
|
|
115101
|
+
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
115102
|
+
can_unlock_with_mobile_key?: boolean | undefined;
|
|
115103
|
+
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
115104
|
+
can_unlock_with_card?: boolean | undefined;
|
|
115105
|
+
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
115106
|
+
can_unlock_with_code?: boolean | undefined;
|
|
114601
115107
|
}>;
|
|
114602
115108
|
}>;
|
|
114603
115109
|
}>;
|
|
@@ -114958,6 +115464,8 @@ interface Routes {
|
|
|
114958
115464
|
acs_credential_id: string;
|
|
114959
115465
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
114960
115466
|
acs_user_id?: string | undefined;
|
|
115467
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
115468
|
+
connected_account_id: string;
|
|
114961
115469
|
acs_credential_pool_id?: string | undefined;
|
|
114962
115470
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
114963
115471
|
acs_system_id: string;
|
|
@@ -115084,6 +115592,8 @@ interface Routes {
|
|
|
115084
115592
|
acs_credential_id: string;
|
|
115085
115593
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
115086
115594
|
acs_user_id?: string | undefined;
|
|
115595
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
115596
|
+
connected_account_id: string;
|
|
115087
115597
|
acs_credential_pool_id?: string | undefined;
|
|
115088
115598
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
115089
115599
|
acs_system_id: string;
|
|
@@ -115333,6 +115843,8 @@ interface Routes {
|
|
|
115333
115843
|
acs_credential_id: string;
|
|
115334
115844
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
115335
115845
|
acs_user_id?: string | undefined;
|
|
115846
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
115847
|
+
connected_account_id: string;
|
|
115336
115848
|
acs_credential_pool_id?: string | undefined;
|
|
115337
115849
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
115338
115850
|
acs_system_id: string;
|
|
@@ -115459,6 +115971,8 @@ interface Routes {
|
|
|
115459
115971
|
acs_credential_id: string;
|
|
115460
115972
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
115461
115973
|
acs_user_id?: string | undefined;
|
|
115974
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
115975
|
+
connected_account_id: string;
|
|
115462
115976
|
acs_credential_pool_id?: string | undefined;
|
|
115463
115977
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
115464
115978
|
acs_system_id: string;
|
|
@@ -116277,6 +116791,8 @@ interface Routes {
|
|
|
116277
116791
|
acs_credential_id: string;
|
|
116278
116792
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
116279
116793
|
acs_user_id?: string | undefined;
|
|
116794
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
116795
|
+
connected_account_id: string;
|
|
116280
116796
|
acs_credential_pool_id?: string | undefined;
|
|
116281
116797
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
116282
116798
|
acs_system_id: string;
|
|
@@ -116403,6 +116919,8 @@ interface Routes {
|
|
|
116403
116919
|
acs_credential_id: string;
|
|
116404
116920
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
116405
116921
|
acs_user_id?: string | undefined;
|
|
116922
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
116923
|
+
connected_account_id: string;
|
|
116406
116924
|
acs_credential_pool_id?: string | undefined;
|
|
116407
116925
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
116408
116926
|
acs_system_id: string;
|
|
@@ -116652,6 +117170,8 @@ interface Routes {
|
|
|
116652
117170
|
acs_credential_id: string;
|
|
116653
117171
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
116654
117172
|
acs_user_id?: string | undefined;
|
|
117173
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
117174
|
+
connected_account_id: string;
|
|
116655
117175
|
acs_credential_pool_id?: string | undefined;
|
|
116656
117176
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
116657
117177
|
acs_system_id: string;
|
|
@@ -116778,6 +117298,8 @@ interface Routes {
|
|
|
116778
117298
|
acs_credential_id: string;
|
|
116779
117299
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
116780
117300
|
acs_user_id?: string | undefined;
|
|
117301
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
117302
|
+
connected_account_id: string;
|
|
116781
117303
|
acs_credential_pool_id?: string | undefined;
|
|
116782
117304
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
116783
117305
|
acs_system_id: string;
|
|
@@ -117684,6 +118206,8 @@ interface Routes {
|
|
|
117684
118206
|
acs_credential_id: string;
|
|
117685
118207
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
117686
118208
|
acs_user_id?: string | undefined;
|
|
118209
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
118210
|
+
connected_account_id: string;
|
|
117687
118211
|
acs_credential_pool_id?: string | undefined;
|
|
117688
118212
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
117689
118213
|
acs_system_id: string;
|
|
@@ -117810,6 +118334,8 @@ interface Routes {
|
|
|
117810
118334
|
acs_credential_id: string;
|
|
117811
118335
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
117812
118336
|
acs_user_id?: string | undefined;
|
|
118337
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
118338
|
+
connected_account_id: string;
|
|
117813
118339
|
acs_credential_pool_id?: string | undefined;
|
|
117814
118340
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
117815
118341
|
acs_system_id: string;
|
|
@@ -118059,6 +118585,8 @@ interface Routes {
|
|
|
118059
118585
|
acs_credential_id: string;
|
|
118060
118586
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
118061
118587
|
acs_user_id?: string | undefined;
|
|
118588
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
118589
|
+
connected_account_id: string;
|
|
118062
118590
|
acs_credential_pool_id?: string | undefined;
|
|
118063
118591
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
118064
118592
|
acs_system_id: string;
|
|
@@ -118185,6 +118713,8 @@ interface Routes {
|
|
|
118185
118713
|
acs_credential_id: string;
|
|
118186
118714
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
118187
118715
|
acs_user_id?: string | undefined;
|
|
118716
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
118717
|
+
connected_account_id: string;
|
|
118188
118718
|
acs_credential_pool_id?: string | undefined;
|
|
118189
118719
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
118190
118720
|
acs_system_id: string;
|
|
@@ -120143,6 +120673,8 @@ interface Routes {
|
|
|
120143
120673
|
acs_credential_id: string;
|
|
120144
120674
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
120145
120675
|
acs_user_id?: string | undefined;
|
|
120676
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
120677
|
+
connected_account_id: string;
|
|
120146
120678
|
acs_credential_pool_id?: string | undefined;
|
|
120147
120679
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
120148
120680
|
acs_system_id: string;
|
|
@@ -120269,6 +120801,8 @@ interface Routes {
|
|
|
120269
120801
|
acs_credential_id: string;
|
|
120270
120802
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
120271
120803
|
acs_user_id?: string | undefined;
|
|
120804
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
120805
|
+
connected_account_id: string;
|
|
120272
120806
|
acs_credential_pool_id?: string | undefined;
|
|
120273
120807
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
120274
120808
|
acs_system_id: string;
|
|
@@ -120518,6 +121052,8 @@ interface Routes {
|
|
|
120518
121052
|
acs_credential_id: string;
|
|
120519
121053
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
120520
121054
|
acs_user_id?: string | undefined;
|
|
121055
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
121056
|
+
connected_account_id: string;
|
|
120521
121057
|
acs_credential_pool_id?: string | undefined;
|
|
120522
121058
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
120523
121059
|
acs_system_id: string;
|
|
@@ -120644,6 +121180,8 @@ interface Routes {
|
|
|
120644
121180
|
acs_credential_id: string;
|
|
120645
121181
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
120646
121182
|
acs_user_id?: string | undefined;
|
|
121183
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
121184
|
+
connected_account_id: string;
|
|
120647
121185
|
acs_credential_pool_id?: string | undefined;
|
|
120648
121186
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
120649
121187
|
acs_system_id: string;
|
|
@@ -121466,6 +122004,8 @@ interface Routes {
|
|
|
121466
122004
|
acs_credential_id: string;
|
|
121467
122005
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
121468
122006
|
acs_user_id?: string | undefined;
|
|
122007
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
122008
|
+
connected_account_id: string;
|
|
121469
122009
|
acs_credential_pool_id?: string | undefined;
|
|
121470
122010
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
121471
122011
|
acs_system_id: string;
|
|
@@ -121592,6 +122132,8 @@ interface Routes {
|
|
|
121592
122132
|
acs_credential_id: string;
|
|
121593
122133
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
121594
122134
|
acs_user_id?: string | undefined;
|
|
122135
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
122136
|
+
connected_account_id: string;
|
|
121595
122137
|
acs_credential_pool_id?: string | undefined;
|
|
121596
122138
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
121597
122139
|
acs_system_id: string;
|
|
@@ -121841,6 +122383,8 @@ interface Routes {
|
|
|
121841
122383
|
acs_credential_id: string;
|
|
121842
122384
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
121843
122385
|
acs_user_id?: string | undefined;
|
|
122386
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
122387
|
+
connected_account_id: string;
|
|
121844
122388
|
acs_credential_pool_id?: string | undefined;
|
|
121845
122389
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
121846
122390
|
acs_system_id: string;
|
|
@@ -121967,6 +122511,8 @@ interface Routes {
|
|
|
121967
122511
|
acs_credential_id: string;
|
|
121968
122512
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
121969
122513
|
acs_user_id?: string | undefined;
|
|
122514
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
122515
|
+
connected_account_id: string;
|
|
121970
122516
|
acs_credential_pool_id?: string | undefined;
|
|
121971
122517
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
121972
122518
|
acs_system_id: string;
|
|
@@ -122668,6 +123214,8 @@ interface Routes {
|
|
|
122668
123214
|
unstable_location_id?: (string | null) | undefined;
|
|
122669
123215
|
/** ID of the space for which you want to list devices. */
|
|
122670
123216
|
space_id?: string | undefined;
|
|
123217
|
+
/** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
|
|
123218
|
+
search?: string | undefined;
|
|
122671
123219
|
};
|
|
122672
123220
|
formData: {};
|
|
122673
123221
|
jsonResponse: {
|
|
@@ -125046,6 +125594,8 @@ interface Routes {
|
|
|
125046
125594
|
acs_credential_id: string;
|
|
125047
125595
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
125048
125596
|
acs_user_id?: string | undefined;
|
|
125597
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
125598
|
+
connected_account_id: string;
|
|
125049
125599
|
acs_credential_pool_id?: string | undefined;
|
|
125050
125600
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
125051
125601
|
acs_system_id: string;
|
|
@@ -125172,6 +125722,8 @@ interface Routes {
|
|
|
125172
125722
|
acs_credential_id: string;
|
|
125173
125723
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
125174
125724
|
acs_user_id?: string | undefined;
|
|
125725
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
125726
|
+
connected_account_id: string;
|
|
125175
125727
|
acs_credential_pool_id?: string | undefined;
|
|
125176
125728
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
125177
125729
|
acs_system_id: string;
|
|
@@ -125421,6 +125973,8 @@ interface Routes {
|
|
|
125421
125973
|
acs_credential_id: string;
|
|
125422
125974
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
125423
125975
|
acs_user_id?: string | undefined;
|
|
125976
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
125977
|
+
connected_account_id: string;
|
|
125424
125978
|
acs_credential_pool_id?: string | undefined;
|
|
125425
125979
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
125426
125980
|
acs_system_id: string;
|
|
@@ -125547,6 +126101,8 @@ interface Routes {
|
|
|
125547
126101
|
acs_credential_id: string;
|
|
125548
126102
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
125549
126103
|
acs_user_id?: string | undefined;
|
|
126104
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
126105
|
+
connected_account_id: string;
|
|
125550
126106
|
acs_credential_pool_id?: string | undefined;
|
|
125551
126107
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
125552
126108
|
acs_system_id: string;
|
|
@@ -126558,6 +127114,8 @@ interface Routes {
|
|
|
126558
127114
|
acs_credential_id: string;
|
|
126559
127115
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
126560
127116
|
acs_user_id?: string | undefined;
|
|
127117
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
127118
|
+
connected_account_id: string;
|
|
126561
127119
|
acs_credential_pool_id?: string | undefined;
|
|
126562
127120
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
126563
127121
|
acs_system_id: string;
|
|
@@ -126684,6 +127242,8 @@ interface Routes {
|
|
|
126684
127242
|
acs_credential_id: string;
|
|
126685
127243
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
126686
127244
|
acs_user_id?: string | undefined;
|
|
127245
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
127246
|
+
connected_account_id: string;
|
|
126687
127247
|
acs_credential_pool_id?: string | undefined;
|
|
126688
127248
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
126689
127249
|
acs_system_id: string;
|
|
@@ -126933,6 +127493,8 @@ interface Routes {
|
|
|
126933
127493
|
acs_credential_id: string;
|
|
126934
127494
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
126935
127495
|
acs_user_id?: string | undefined;
|
|
127496
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
127497
|
+
connected_account_id: string;
|
|
126936
127498
|
acs_credential_pool_id?: string | undefined;
|
|
126937
127499
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
126938
127500
|
acs_system_id: string;
|
|
@@ -127059,6 +127621,8 @@ interface Routes {
|
|
|
127059
127621
|
acs_credential_id: string;
|
|
127060
127622
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
127061
127623
|
acs_user_id?: string | undefined;
|
|
127624
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
127625
|
+
connected_account_id: string;
|
|
127062
127626
|
acs_credential_pool_id?: string | undefined;
|
|
127063
127627
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
127064
127628
|
acs_system_id: string;
|
|
@@ -127900,6 +128464,8 @@ interface Routes {
|
|
|
127900
128464
|
acs_credential_id: string;
|
|
127901
128465
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
127902
128466
|
acs_user_id?: string | undefined;
|
|
128467
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
128468
|
+
connected_account_id: string;
|
|
127903
128469
|
acs_credential_pool_id?: string | undefined;
|
|
127904
128470
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
127905
128471
|
acs_system_id: string;
|
|
@@ -128026,6 +128592,8 @@ interface Routes {
|
|
|
128026
128592
|
acs_credential_id: string;
|
|
128027
128593
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
128028
128594
|
acs_user_id?: string | undefined;
|
|
128595
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
128596
|
+
connected_account_id: string;
|
|
128029
128597
|
acs_credential_pool_id?: string | undefined;
|
|
128030
128598
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
128031
128599
|
acs_system_id: string;
|
|
@@ -128275,6 +128843,8 @@ interface Routes {
|
|
|
128275
128843
|
acs_credential_id: string;
|
|
128276
128844
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
128277
128845
|
acs_user_id?: string | undefined;
|
|
128846
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
128847
|
+
connected_account_id: string;
|
|
128278
128848
|
acs_credential_pool_id?: string | undefined;
|
|
128279
128849
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
128280
128850
|
acs_system_id: string;
|
|
@@ -128401,6 +128971,8 @@ interface Routes {
|
|
|
128401
128971
|
acs_credential_id: string;
|
|
128402
128972
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
128403
128973
|
acs_user_id?: string | undefined;
|
|
128974
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
128975
|
+
connected_account_id: string;
|
|
128404
128976
|
acs_credential_pool_id?: string | undefined;
|
|
128405
128977
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
128406
128978
|
acs_system_id: string;
|
|
@@ -129339,6 +129911,8 @@ interface Routes {
|
|
|
129339
129911
|
acs_credential_id: string;
|
|
129340
129912
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
129341
129913
|
acs_user_id?: string | undefined;
|
|
129914
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
129915
|
+
connected_account_id: string;
|
|
129342
129916
|
acs_credential_pool_id?: string | undefined;
|
|
129343
129917
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
129344
129918
|
acs_system_id: string;
|
|
@@ -129465,6 +130039,8 @@ interface Routes {
|
|
|
129465
130039
|
acs_credential_id: string;
|
|
129466
130040
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
129467
130041
|
acs_user_id?: string | undefined;
|
|
130042
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
130043
|
+
connected_account_id: string;
|
|
129468
130044
|
acs_credential_pool_id?: string | undefined;
|
|
129469
130045
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
129470
130046
|
acs_system_id: string;
|
|
@@ -129714,6 +130290,8 @@ interface Routes {
|
|
|
129714
130290
|
acs_credential_id: string;
|
|
129715
130291
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
129716
130292
|
acs_user_id?: string | undefined;
|
|
130293
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
130294
|
+
connected_account_id: string;
|
|
129717
130295
|
acs_credential_pool_id?: string | undefined;
|
|
129718
130296
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
129719
130297
|
acs_system_id: string;
|
|
@@ -129840,6 +130418,8 @@ interface Routes {
|
|
|
129840
130418
|
acs_credential_id: string;
|
|
129841
130419
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
129842
130420
|
acs_user_id?: string | undefined;
|
|
130421
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
130422
|
+
connected_account_id: string;
|
|
129843
130423
|
acs_credential_pool_id?: string | undefined;
|
|
129844
130424
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
129845
130425
|
acs_system_id: string;
|
|
@@ -131419,6 +131999,8 @@ interface Routes {
|
|
|
131419
131999
|
queryParams: {};
|
|
131420
132000
|
jsonBody: {};
|
|
131421
132001
|
commonParams: {
|
|
132002
|
+
/** String for which to search. Filters returned user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`. */
|
|
132003
|
+
search?: string | undefined;
|
|
131422
132004
|
/** `acs_system_id` of the credential manager by which you want to filter the list of user identities. */
|
|
131423
132005
|
credential_manager_acs_system_id?: string | undefined;
|
|
131424
132006
|
};
|
|
@@ -134482,6 +135064,8 @@ interface Routes {
|
|
|
134482
135064
|
acs_credential_id: string;
|
|
134483
135065
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
134484
135066
|
acs_user_id?: string | undefined;
|
|
135067
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
135068
|
+
connected_account_id: string;
|
|
134485
135069
|
acs_credential_pool_id?: string | undefined;
|
|
134486
135070
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
134487
135071
|
acs_system_id: string;
|
|
@@ -134608,6 +135192,8 @@ interface Routes {
|
|
|
134608
135192
|
acs_credential_id: string;
|
|
134609
135193
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
134610
135194
|
acs_user_id?: string | undefined;
|
|
135195
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
135196
|
+
connected_account_id: string;
|
|
134611
135197
|
acs_credential_pool_id?: string | undefined;
|
|
134612
135198
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
134613
135199
|
acs_system_id: string;
|
|
@@ -134857,6 +135443,8 @@ interface Routes {
|
|
|
134857
135443
|
acs_credential_id: string;
|
|
134858
135444
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
134859
135445
|
acs_user_id?: string | undefined;
|
|
135446
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
135447
|
+
connected_account_id: string;
|
|
134860
135448
|
acs_credential_pool_id?: string | undefined;
|
|
134861
135449
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
134862
135450
|
acs_system_id: string;
|
|
@@ -134983,6 +135571,8 @@ interface Routes {
|
|
|
134983
135571
|
acs_credential_id: string;
|
|
134984
135572
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
134985
135573
|
acs_user_id?: string | undefined;
|
|
135574
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
135575
|
+
connected_account_id: string;
|
|
134986
135576
|
acs_credential_pool_id?: string | undefined;
|
|
134987
135577
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
134988
135578
|
acs_system_id: string;
|