@seamapi/types 1.152.0 → 1.153.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +333 -1276
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +914 -1587
- package/lib/seam/connect/models/connect-webviews/connect-webview.d.ts +3 -3
- package/lib/seam/connect/models/connect-webviews/connect-webview.js +10 -3
- package/lib/seam/connect/models/connect-webviews/connect-webview.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +397 -1605
- package/lib/seam/connect/openapi.js +300 -1254
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +538 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/models/connect-webviews/connect-webview.ts +14 -3
- package/src/lib/seam/connect/openapi.ts +303 -1254
- package/src/lib/seam/connect/route-types.ts +755 -3
package/dist/connect.d.cts
CHANGED
|
@@ -9,8 +9,8 @@ declare const connect_webview: z.ZodObject<{
|
|
|
9
9
|
device_selection_mode: z.ZodEnum<["none", "single", "multiple"]>;
|
|
10
10
|
accepted_providers: z.ZodArray<z.ZodString, "many">;
|
|
11
11
|
accepted_devices: z.ZodArray<z.ZodString, "many">;
|
|
12
|
-
any_provider_allowed: z.ZodBoolean;
|
|
13
12
|
any_device_allowed: z.ZodBoolean;
|
|
13
|
+
any_provider_allowed: z.ZodBoolean;
|
|
14
14
|
login_successful: z.ZodBoolean;
|
|
15
15
|
status: z.ZodEnum<["pending", "failed", "authorized"]>;
|
|
16
16
|
custom_redirect_url: z.ZodNullable<z.ZodString>;
|
|
@@ -30,8 +30,8 @@ declare const connect_webview: z.ZodObject<{
|
|
|
30
30
|
device_selection_mode: "none" | "single" | "multiple";
|
|
31
31
|
accepted_providers: string[];
|
|
32
32
|
accepted_devices: string[];
|
|
33
|
-
any_provider_allowed: boolean;
|
|
34
33
|
any_device_allowed: boolean;
|
|
34
|
+
any_provider_allowed: boolean;
|
|
35
35
|
login_successful: boolean;
|
|
36
36
|
custom_redirect_url: string | null;
|
|
37
37
|
custom_redirect_failure_url: string | null;
|
|
@@ -50,8 +50,8 @@ declare const connect_webview: z.ZodObject<{
|
|
|
50
50
|
device_selection_mode: "none" | "single" | "multiple";
|
|
51
51
|
accepted_providers: string[];
|
|
52
52
|
accepted_devices: string[];
|
|
53
|
-
any_provider_allowed: boolean;
|
|
54
53
|
any_device_allowed: boolean;
|
|
54
|
+
any_provider_allowed: boolean;
|
|
55
55
|
login_successful: boolean;
|
|
56
56
|
custom_redirect_url: string | null;
|
|
57
57
|
custom_redirect_failure_url: string | null;
|
|
@@ -221,6 +221,253 @@ declare const _default: {
|
|
|
221
221
|
required: string[];
|
|
222
222
|
type: string;
|
|
223
223
|
};
|
|
224
|
+
acs_credential: {
|
|
225
|
+
properties: {
|
|
226
|
+
access_method: {
|
|
227
|
+
enum: string[];
|
|
228
|
+
type: string;
|
|
229
|
+
};
|
|
230
|
+
acs_credential_id: {
|
|
231
|
+
format: string;
|
|
232
|
+
type: string;
|
|
233
|
+
};
|
|
234
|
+
acs_credential_pool_id: {
|
|
235
|
+
format: string;
|
|
236
|
+
type: string;
|
|
237
|
+
};
|
|
238
|
+
acs_system_id: {
|
|
239
|
+
format: string;
|
|
240
|
+
type: string;
|
|
241
|
+
};
|
|
242
|
+
acs_user_id: {
|
|
243
|
+
format: string;
|
|
244
|
+
type: string;
|
|
245
|
+
};
|
|
246
|
+
code: {
|
|
247
|
+
nullable: boolean;
|
|
248
|
+
type: string;
|
|
249
|
+
};
|
|
250
|
+
created_at: {
|
|
251
|
+
format: string;
|
|
252
|
+
type: string;
|
|
253
|
+
};
|
|
254
|
+
display_name: {
|
|
255
|
+
minLength: number;
|
|
256
|
+
type: string;
|
|
257
|
+
};
|
|
258
|
+
ends_at: {
|
|
259
|
+
type: string;
|
|
260
|
+
};
|
|
261
|
+
errors: {
|
|
262
|
+
items: {
|
|
263
|
+
properties: {
|
|
264
|
+
error_code: {
|
|
265
|
+
type: string;
|
|
266
|
+
};
|
|
267
|
+
message: {
|
|
268
|
+
type: string;
|
|
269
|
+
};
|
|
270
|
+
};
|
|
271
|
+
required: string[];
|
|
272
|
+
type: string;
|
|
273
|
+
};
|
|
274
|
+
type: string;
|
|
275
|
+
};
|
|
276
|
+
external_type: {
|
|
277
|
+
enum: string[];
|
|
278
|
+
type: string;
|
|
279
|
+
};
|
|
280
|
+
external_type_display_name: {
|
|
281
|
+
type: string;
|
|
282
|
+
};
|
|
283
|
+
is_multi_phone_sync_credential: {
|
|
284
|
+
type: string;
|
|
285
|
+
};
|
|
286
|
+
parent_acs_credential_id: {
|
|
287
|
+
format: string;
|
|
288
|
+
type: string;
|
|
289
|
+
};
|
|
290
|
+
starts_at: {
|
|
291
|
+
type: string;
|
|
292
|
+
};
|
|
293
|
+
visionline_metadata: {
|
|
294
|
+
properties: {
|
|
295
|
+
common_acs_entrance_ids: {
|
|
296
|
+
items: {
|
|
297
|
+
format: string;
|
|
298
|
+
type: string;
|
|
299
|
+
};
|
|
300
|
+
type: string;
|
|
301
|
+
};
|
|
302
|
+
guest_acs_entrance_ids: {
|
|
303
|
+
items: {
|
|
304
|
+
format: string;
|
|
305
|
+
type: string;
|
|
306
|
+
};
|
|
307
|
+
type: string;
|
|
308
|
+
};
|
|
309
|
+
joiner_acs_credential_ids: {
|
|
310
|
+
items: {
|
|
311
|
+
format: string;
|
|
312
|
+
type: string;
|
|
313
|
+
};
|
|
314
|
+
type: string;
|
|
315
|
+
};
|
|
316
|
+
};
|
|
317
|
+
type: string;
|
|
318
|
+
};
|
|
319
|
+
warnings: {
|
|
320
|
+
items: {
|
|
321
|
+
properties: {
|
|
322
|
+
message: {
|
|
323
|
+
type: string;
|
|
324
|
+
};
|
|
325
|
+
warning_code: {
|
|
326
|
+
type: string;
|
|
327
|
+
};
|
|
328
|
+
};
|
|
329
|
+
required: string[];
|
|
330
|
+
type: string;
|
|
331
|
+
};
|
|
332
|
+
type: string;
|
|
333
|
+
};
|
|
334
|
+
workspace_id: {
|
|
335
|
+
format: string;
|
|
336
|
+
type: string;
|
|
337
|
+
};
|
|
338
|
+
};
|
|
339
|
+
required: string[];
|
|
340
|
+
type: string;
|
|
341
|
+
};
|
|
342
|
+
acs_credential_pool: {
|
|
343
|
+
properties: {
|
|
344
|
+
acs_credential_pool_id: {
|
|
345
|
+
format: string;
|
|
346
|
+
type: string;
|
|
347
|
+
};
|
|
348
|
+
acs_system_id: {
|
|
349
|
+
format: string;
|
|
350
|
+
type: string;
|
|
351
|
+
};
|
|
352
|
+
created_at: {
|
|
353
|
+
format: string;
|
|
354
|
+
type: string;
|
|
355
|
+
};
|
|
356
|
+
display_name: {
|
|
357
|
+
minLength: number;
|
|
358
|
+
type: string;
|
|
359
|
+
};
|
|
360
|
+
external_type: {
|
|
361
|
+
enum: string[];
|
|
362
|
+
type: string;
|
|
363
|
+
};
|
|
364
|
+
external_type_display_name: {
|
|
365
|
+
type: string;
|
|
366
|
+
};
|
|
367
|
+
workspace_id: {
|
|
368
|
+
format: string;
|
|
369
|
+
type: string;
|
|
370
|
+
};
|
|
371
|
+
};
|
|
372
|
+
required: string[];
|
|
373
|
+
type: string;
|
|
374
|
+
};
|
|
375
|
+
acs_credential_provisioning_automation: {
|
|
376
|
+
properties: {
|
|
377
|
+
acs_credential_provisioning_automation_id: {
|
|
378
|
+
format: string;
|
|
379
|
+
type: string;
|
|
380
|
+
};
|
|
381
|
+
created_at: {
|
|
382
|
+
format: string;
|
|
383
|
+
type: string;
|
|
384
|
+
};
|
|
385
|
+
credential_manager_acs_system_id: {
|
|
386
|
+
format: string;
|
|
387
|
+
type: string;
|
|
388
|
+
};
|
|
389
|
+
user_identity_id: {
|
|
390
|
+
format: string;
|
|
391
|
+
type: string;
|
|
392
|
+
};
|
|
393
|
+
workspace_id: {
|
|
394
|
+
format: string;
|
|
395
|
+
type: string;
|
|
396
|
+
};
|
|
397
|
+
};
|
|
398
|
+
required: string[];
|
|
399
|
+
type: string;
|
|
400
|
+
};
|
|
401
|
+
acs_entrance: {
|
|
402
|
+
properties: {
|
|
403
|
+
acs_entrance_id: {
|
|
404
|
+
format: string;
|
|
405
|
+
type: string;
|
|
406
|
+
};
|
|
407
|
+
acs_system_id: {
|
|
408
|
+
format: string;
|
|
409
|
+
type: string;
|
|
410
|
+
};
|
|
411
|
+
created_at: {
|
|
412
|
+
format: string;
|
|
413
|
+
type: string;
|
|
414
|
+
};
|
|
415
|
+
display_name: {
|
|
416
|
+
type: string;
|
|
417
|
+
};
|
|
418
|
+
latch_metadata: {
|
|
419
|
+
nullable: boolean;
|
|
420
|
+
properties: {
|
|
421
|
+
accessibility_type: {
|
|
422
|
+
type: string;
|
|
423
|
+
};
|
|
424
|
+
is_connected: {
|
|
425
|
+
type: string;
|
|
426
|
+
};
|
|
427
|
+
name: {
|
|
428
|
+
type: string;
|
|
429
|
+
};
|
|
430
|
+
type: {
|
|
431
|
+
type: string;
|
|
432
|
+
};
|
|
433
|
+
};
|
|
434
|
+
required: string[];
|
|
435
|
+
type: string;
|
|
436
|
+
};
|
|
437
|
+
visionline_metadata: {
|
|
438
|
+
nullable: boolean;
|
|
439
|
+
properties: {
|
|
440
|
+
door_category: {
|
|
441
|
+
enum: string[];
|
|
442
|
+
type: string;
|
|
443
|
+
};
|
|
444
|
+
door_name: {
|
|
445
|
+
type: string;
|
|
446
|
+
};
|
|
447
|
+
profiles: {
|
|
448
|
+
items: {
|
|
449
|
+
properties: {
|
|
450
|
+
visionline_door_profile_id: {
|
|
451
|
+
type: string;
|
|
452
|
+
};
|
|
453
|
+
visionline_door_profile_type: {
|
|
454
|
+
enum: string[];
|
|
455
|
+
type: string;
|
|
456
|
+
};
|
|
457
|
+
};
|
|
458
|
+
required: string[];
|
|
459
|
+
type: string;
|
|
460
|
+
};
|
|
461
|
+
type: string;
|
|
462
|
+
};
|
|
463
|
+
};
|
|
464
|
+
required: string[];
|
|
465
|
+
type: string;
|
|
466
|
+
};
|
|
467
|
+
};
|
|
468
|
+
required: string[];
|
|
469
|
+
type: string;
|
|
470
|
+
};
|
|
224
471
|
acs_system: {
|
|
225
472
|
properties: {
|
|
226
473
|
acs_system_id: {
|
|
@@ -560,6 +807,7 @@ declare const _default: {
|
|
|
560
807
|
connect_webview: {
|
|
561
808
|
properties: {
|
|
562
809
|
accepted_devices: {
|
|
810
|
+
description: string;
|
|
563
811
|
items: {
|
|
564
812
|
type: string;
|
|
565
813
|
};
|
|
@@ -572,6 +820,7 @@ declare const _default: {
|
|
|
572
820
|
type: string;
|
|
573
821
|
};
|
|
574
822
|
any_device_allowed: {
|
|
823
|
+
description: string;
|
|
575
824
|
type: string;
|
|
576
825
|
};
|
|
577
826
|
any_provider_allowed: {
|
|
@@ -2344,6 +2593,27 @@ declare const _default: {
|
|
|
2344
2593
|
required: string[];
|
|
2345
2594
|
type: string;
|
|
2346
2595
|
};
|
|
2596
|
+
network: {
|
|
2597
|
+
properties: {
|
|
2598
|
+
created_at: {
|
|
2599
|
+
format: string;
|
|
2600
|
+
type: string;
|
|
2601
|
+
};
|
|
2602
|
+
display_name: {
|
|
2603
|
+
type: string;
|
|
2604
|
+
};
|
|
2605
|
+
network_id: {
|
|
2606
|
+
format: string;
|
|
2607
|
+
type: string;
|
|
2608
|
+
};
|
|
2609
|
+
workspace_id: {
|
|
2610
|
+
format: string;
|
|
2611
|
+
type: string;
|
|
2612
|
+
};
|
|
2613
|
+
};
|
|
2614
|
+
required: string[];
|
|
2615
|
+
type: string;
|
|
2616
|
+
};
|
|
2347
2617
|
noise_threshold: {
|
|
2348
2618
|
properties: {
|
|
2349
2619
|
device_id: {
|
|
@@ -2798,18 +3068,59 @@ declare const _default: {
|
|
|
2798
3068
|
required: string[];
|
|
2799
3069
|
type: string;
|
|
2800
3070
|
};
|
|
2801
|
-
|
|
3071
|
+
user_identity: {
|
|
2802
3072
|
properties: {
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
type: string;
|
|
2806
|
-
};
|
|
3073
|
+
created_at: {
|
|
3074
|
+
format: string;
|
|
2807
3075
|
type: string;
|
|
2808
3076
|
};
|
|
2809
|
-
|
|
3077
|
+
display_name: {
|
|
3078
|
+
minLength: number;
|
|
2810
3079
|
type: string;
|
|
2811
3080
|
};
|
|
2812
|
-
|
|
3081
|
+
email_address: {
|
|
3082
|
+
format: string;
|
|
3083
|
+
nullable: boolean;
|
|
3084
|
+
type: string;
|
|
3085
|
+
};
|
|
3086
|
+
full_name: {
|
|
3087
|
+
minLength: number;
|
|
3088
|
+
nullable: boolean;
|
|
3089
|
+
type: string;
|
|
3090
|
+
};
|
|
3091
|
+
phone_number: {
|
|
3092
|
+
nullable: boolean;
|
|
3093
|
+
type: string;
|
|
3094
|
+
};
|
|
3095
|
+
user_identity_id: {
|
|
3096
|
+
format: string;
|
|
3097
|
+
type: string;
|
|
3098
|
+
};
|
|
3099
|
+
user_identity_key: {
|
|
3100
|
+
minLength: number;
|
|
3101
|
+
nullable: boolean;
|
|
3102
|
+
type: string;
|
|
3103
|
+
};
|
|
3104
|
+
workspace_id: {
|
|
3105
|
+
format: string;
|
|
3106
|
+
type: string;
|
|
3107
|
+
};
|
|
3108
|
+
};
|
|
3109
|
+
required: string[];
|
|
3110
|
+
type: string;
|
|
3111
|
+
};
|
|
3112
|
+
webhook: {
|
|
3113
|
+
properties: {
|
|
3114
|
+
event_types: {
|
|
3115
|
+
items: {
|
|
3116
|
+
type: string;
|
|
3117
|
+
};
|
|
3118
|
+
type: string;
|
|
3119
|
+
};
|
|
3120
|
+
secret: {
|
|
3121
|
+
type: string;
|
|
3122
|
+
};
|
|
3123
|
+
url: {
|
|
2813
3124
|
type: string;
|
|
2814
3125
|
};
|
|
2815
3126
|
webhook_id: {
|
|
@@ -4946,6 +5257,7 @@ declare const _default: {
|
|
|
4946
5257
|
tags: string[];
|
|
4947
5258
|
'x-fern-sdk-group-name': string[];
|
|
4948
5259
|
'x-fern-sdk-method-name': string;
|
|
5260
|
+
'x-fern-sdk-return-value': string;
|
|
4949
5261
|
};
|
|
4950
5262
|
};
|
|
4951
5263
|
'/acs/access_groups/list': {
|
|
@@ -5017,6 +5329,7 @@ declare const _default: {
|
|
|
5017
5329
|
tags: string[];
|
|
5018
5330
|
'x-fern-sdk-group-name': string[];
|
|
5019
5331
|
'x-fern-sdk-method-name': string;
|
|
5332
|
+
'x-fern-sdk-return-value': string;
|
|
5020
5333
|
};
|
|
5021
5334
|
};
|
|
5022
5335
|
'/acs/access_groups/list_users': {
|
|
@@ -5093,6 +5406,7 @@ declare const _default: {
|
|
|
5093
5406
|
tags: string[];
|
|
5094
5407
|
'x-fern-sdk-group-name': string[];
|
|
5095
5408
|
'x-fern-sdk-method-name': string;
|
|
5409
|
+
'x-fern-sdk-return-value': string;
|
|
5096
5410
|
};
|
|
5097
5411
|
};
|
|
5098
5412
|
'/acs/access_groups/remove_user': {
|
|
@@ -5188,37 +5502,7 @@ declare const _default: {
|
|
|
5188
5502
|
properties: {
|
|
5189
5503
|
acs_credential_pools: {
|
|
5190
5504
|
items: {
|
|
5191
|
-
|
|
5192
|
-
acs_credential_pool_id: {
|
|
5193
|
-
format: string;
|
|
5194
|
-
type: string;
|
|
5195
|
-
};
|
|
5196
|
-
acs_system_id: {
|
|
5197
|
-
format: string;
|
|
5198
|
-
type: string;
|
|
5199
|
-
};
|
|
5200
|
-
created_at: {
|
|
5201
|
-
format: string;
|
|
5202
|
-
type: string;
|
|
5203
|
-
};
|
|
5204
|
-
display_name: {
|
|
5205
|
-
minLength: number;
|
|
5206
|
-
type: string;
|
|
5207
|
-
};
|
|
5208
|
-
external_type: {
|
|
5209
|
-
enum: string[];
|
|
5210
|
-
type: string;
|
|
5211
|
-
};
|
|
5212
|
-
external_type_display_name: {
|
|
5213
|
-
type: string;
|
|
5214
|
-
};
|
|
5215
|
-
workspace_id: {
|
|
5216
|
-
format: string;
|
|
5217
|
-
type: string;
|
|
5218
|
-
};
|
|
5219
|
-
};
|
|
5220
|
-
required: string[];
|
|
5221
|
-
type: string;
|
|
5505
|
+
$ref: string;
|
|
5222
5506
|
};
|
|
5223
5507
|
type: string;
|
|
5224
5508
|
};
|
|
@@ -5257,6 +5541,7 @@ declare const _default: {
|
|
|
5257
5541
|
tags: string[];
|
|
5258
5542
|
'x-fern-sdk-group-name': string[];
|
|
5259
5543
|
'x-fern-sdk-method-name': string;
|
|
5544
|
+
'x-fern-sdk-return-value': string;
|
|
5260
5545
|
};
|
|
5261
5546
|
};
|
|
5262
5547
|
'/acs/credential_provisioning_automations/launch': {
|
|
@@ -5300,30 +5585,7 @@ declare const _default: {
|
|
|
5300
5585
|
schema: {
|
|
5301
5586
|
properties: {
|
|
5302
5587
|
acs_credential_provisioning_automation: {
|
|
5303
|
-
|
|
5304
|
-
acs_credential_provisioning_automation_id: {
|
|
5305
|
-
format: string;
|
|
5306
|
-
type: string;
|
|
5307
|
-
};
|
|
5308
|
-
created_at: {
|
|
5309
|
-
format: string;
|
|
5310
|
-
type: string;
|
|
5311
|
-
};
|
|
5312
|
-
credential_manager_acs_system_id: {
|
|
5313
|
-
format: string;
|
|
5314
|
-
type: string;
|
|
5315
|
-
};
|
|
5316
|
-
user_identity_id: {
|
|
5317
|
-
format: string;
|
|
5318
|
-
type: string;
|
|
5319
|
-
};
|
|
5320
|
-
workspace_id: {
|
|
5321
|
-
format: string;
|
|
5322
|
-
type: string;
|
|
5323
|
-
};
|
|
5324
|
-
};
|
|
5325
|
-
required: string[];
|
|
5326
|
-
type: string;
|
|
5588
|
+
$ref: string;
|
|
5327
5589
|
};
|
|
5328
5590
|
ok: {
|
|
5329
5591
|
type: string;
|
|
@@ -5360,6 +5622,7 @@ declare const _default: {
|
|
|
5360
5622
|
tags: string[];
|
|
5361
5623
|
'x-fern-sdk-group-name': string[];
|
|
5362
5624
|
'x-fern-sdk-method-name': string;
|
|
5625
|
+
'x-fern-sdk-return-value': string;
|
|
5363
5626
|
};
|
|
5364
5627
|
};
|
|
5365
5628
|
'/acs/credentials/assign': {
|
|
@@ -5392,122 +5655,7 @@ declare const _default: {
|
|
|
5392
5655
|
schema: {
|
|
5393
5656
|
properties: {
|
|
5394
5657
|
acs_credential: {
|
|
5395
|
-
|
|
5396
|
-
access_method: {
|
|
5397
|
-
enum: string[];
|
|
5398
|
-
type: string;
|
|
5399
|
-
};
|
|
5400
|
-
acs_credential_id: {
|
|
5401
|
-
format: string;
|
|
5402
|
-
type: string;
|
|
5403
|
-
};
|
|
5404
|
-
acs_credential_pool_id: {
|
|
5405
|
-
format: string;
|
|
5406
|
-
type: string;
|
|
5407
|
-
};
|
|
5408
|
-
acs_system_id: {
|
|
5409
|
-
format: string;
|
|
5410
|
-
type: string;
|
|
5411
|
-
};
|
|
5412
|
-
acs_user_id: {
|
|
5413
|
-
format: string;
|
|
5414
|
-
type: string;
|
|
5415
|
-
};
|
|
5416
|
-
code: {
|
|
5417
|
-
nullable: boolean;
|
|
5418
|
-
type: string;
|
|
5419
|
-
};
|
|
5420
|
-
created_at: {
|
|
5421
|
-
format: string;
|
|
5422
|
-
type: string;
|
|
5423
|
-
};
|
|
5424
|
-
display_name: {
|
|
5425
|
-
minLength: number;
|
|
5426
|
-
type: string;
|
|
5427
|
-
};
|
|
5428
|
-
ends_at: {
|
|
5429
|
-
type: string;
|
|
5430
|
-
};
|
|
5431
|
-
errors: {
|
|
5432
|
-
items: {
|
|
5433
|
-
properties: {
|
|
5434
|
-
error_code: {
|
|
5435
|
-
type: string;
|
|
5436
|
-
};
|
|
5437
|
-
message: {
|
|
5438
|
-
type: string;
|
|
5439
|
-
};
|
|
5440
|
-
};
|
|
5441
|
-
required: string[];
|
|
5442
|
-
type: string;
|
|
5443
|
-
};
|
|
5444
|
-
type: string;
|
|
5445
|
-
};
|
|
5446
|
-
external_type: {
|
|
5447
|
-
enum: string[];
|
|
5448
|
-
type: string;
|
|
5449
|
-
};
|
|
5450
|
-
external_type_display_name: {
|
|
5451
|
-
type: string;
|
|
5452
|
-
};
|
|
5453
|
-
is_multi_phone_sync_credential: {
|
|
5454
|
-
type: string;
|
|
5455
|
-
};
|
|
5456
|
-
parent_acs_credential_id: {
|
|
5457
|
-
format: string;
|
|
5458
|
-
type: string;
|
|
5459
|
-
};
|
|
5460
|
-
starts_at: {
|
|
5461
|
-
type: string;
|
|
5462
|
-
};
|
|
5463
|
-
visionline_metadata: {
|
|
5464
|
-
properties: {
|
|
5465
|
-
common_acs_entrance_ids: {
|
|
5466
|
-
items: {
|
|
5467
|
-
format: string;
|
|
5468
|
-
type: string;
|
|
5469
|
-
};
|
|
5470
|
-
type: string;
|
|
5471
|
-
};
|
|
5472
|
-
guest_acs_entrance_ids: {
|
|
5473
|
-
items: {
|
|
5474
|
-
format: string;
|
|
5475
|
-
type: string;
|
|
5476
|
-
};
|
|
5477
|
-
type: string;
|
|
5478
|
-
};
|
|
5479
|
-
joiner_acs_credential_ids: {
|
|
5480
|
-
items: {
|
|
5481
|
-
format: string;
|
|
5482
|
-
type: string;
|
|
5483
|
-
};
|
|
5484
|
-
type: string;
|
|
5485
|
-
};
|
|
5486
|
-
};
|
|
5487
|
-
type: string;
|
|
5488
|
-
};
|
|
5489
|
-
warnings: {
|
|
5490
|
-
items: {
|
|
5491
|
-
properties: {
|
|
5492
|
-
message: {
|
|
5493
|
-
type: string;
|
|
5494
|
-
};
|
|
5495
|
-
warning_code: {
|
|
5496
|
-
type: string;
|
|
5497
|
-
};
|
|
5498
|
-
};
|
|
5499
|
-
required: string[];
|
|
5500
|
-
type: string;
|
|
5501
|
-
};
|
|
5502
|
-
type: string;
|
|
5503
|
-
};
|
|
5504
|
-
workspace_id: {
|
|
5505
|
-
format: string;
|
|
5506
|
-
type: string;
|
|
5507
|
-
};
|
|
5508
|
-
};
|
|
5509
|
-
required: string[];
|
|
5510
|
-
type: string;
|
|
5658
|
+
$ref: string;
|
|
5511
5659
|
};
|
|
5512
5660
|
ok: {
|
|
5513
5661
|
type: string;
|
|
@@ -5573,122 +5721,7 @@ declare const _default: {
|
|
|
5573
5721
|
schema: {
|
|
5574
5722
|
properties: {
|
|
5575
5723
|
acs_credential: {
|
|
5576
|
-
|
|
5577
|
-
access_method: {
|
|
5578
|
-
enum: string[];
|
|
5579
|
-
type: string;
|
|
5580
|
-
};
|
|
5581
|
-
acs_credential_id: {
|
|
5582
|
-
format: string;
|
|
5583
|
-
type: string;
|
|
5584
|
-
};
|
|
5585
|
-
acs_credential_pool_id: {
|
|
5586
|
-
format: string;
|
|
5587
|
-
type: string;
|
|
5588
|
-
};
|
|
5589
|
-
acs_system_id: {
|
|
5590
|
-
format: string;
|
|
5591
|
-
type: string;
|
|
5592
|
-
};
|
|
5593
|
-
acs_user_id: {
|
|
5594
|
-
format: string;
|
|
5595
|
-
type: string;
|
|
5596
|
-
};
|
|
5597
|
-
code: {
|
|
5598
|
-
nullable: boolean;
|
|
5599
|
-
type: string;
|
|
5600
|
-
};
|
|
5601
|
-
created_at: {
|
|
5602
|
-
format: string;
|
|
5603
|
-
type: string;
|
|
5604
|
-
};
|
|
5605
|
-
display_name: {
|
|
5606
|
-
minLength: number;
|
|
5607
|
-
type: string;
|
|
5608
|
-
};
|
|
5609
|
-
ends_at: {
|
|
5610
|
-
type: string;
|
|
5611
|
-
};
|
|
5612
|
-
errors: {
|
|
5613
|
-
items: {
|
|
5614
|
-
properties: {
|
|
5615
|
-
error_code: {
|
|
5616
|
-
type: string;
|
|
5617
|
-
};
|
|
5618
|
-
message: {
|
|
5619
|
-
type: string;
|
|
5620
|
-
};
|
|
5621
|
-
};
|
|
5622
|
-
required: string[];
|
|
5623
|
-
type: string;
|
|
5624
|
-
};
|
|
5625
|
-
type: string;
|
|
5626
|
-
};
|
|
5627
|
-
external_type: {
|
|
5628
|
-
enum: string[];
|
|
5629
|
-
type: string;
|
|
5630
|
-
};
|
|
5631
|
-
external_type_display_name: {
|
|
5632
|
-
type: string;
|
|
5633
|
-
};
|
|
5634
|
-
is_multi_phone_sync_credential: {
|
|
5635
|
-
type: string;
|
|
5636
|
-
};
|
|
5637
|
-
parent_acs_credential_id: {
|
|
5638
|
-
format: string;
|
|
5639
|
-
type: string;
|
|
5640
|
-
};
|
|
5641
|
-
starts_at: {
|
|
5642
|
-
type: string;
|
|
5643
|
-
};
|
|
5644
|
-
visionline_metadata: {
|
|
5645
|
-
properties: {
|
|
5646
|
-
common_acs_entrance_ids: {
|
|
5647
|
-
items: {
|
|
5648
|
-
format: string;
|
|
5649
|
-
type: string;
|
|
5650
|
-
};
|
|
5651
|
-
type: string;
|
|
5652
|
-
};
|
|
5653
|
-
guest_acs_entrance_ids: {
|
|
5654
|
-
items: {
|
|
5655
|
-
format: string;
|
|
5656
|
-
type: string;
|
|
5657
|
-
};
|
|
5658
|
-
type: string;
|
|
5659
|
-
};
|
|
5660
|
-
joiner_acs_credential_ids: {
|
|
5661
|
-
items: {
|
|
5662
|
-
format: string;
|
|
5663
|
-
type: string;
|
|
5664
|
-
};
|
|
5665
|
-
type: string;
|
|
5666
|
-
};
|
|
5667
|
-
};
|
|
5668
|
-
type: string;
|
|
5669
|
-
};
|
|
5670
|
-
warnings: {
|
|
5671
|
-
items: {
|
|
5672
|
-
properties: {
|
|
5673
|
-
message: {
|
|
5674
|
-
type: string;
|
|
5675
|
-
};
|
|
5676
|
-
warning_code: {
|
|
5677
|
-
type: string;
|
|
5678
|
-
};
|
|
5679
|
-
};
|
|
5680
|
-
required: string[];
|
|
5681
|
-
type: string;
|
|
5682
|
-
};
|
|
5683
|
-
type: string;
|
|
5684
|
-
};
|
|
5685
|
-
workspace_id: {
|
|
5686
|
-
format: string;
|
|
5687
|
-
type: string;
|
|
5688
|
-
};
|
|
5689
|
-
};
|
|
5690
|
-
required: string[];
|
|
5691
|
-
type: string;
|
|
5724
|
+
$ref: string;
|
|
5692
5725
|
};
|
|
5693
5726
|
ok: {
|
|
5694
5727
|
type: string;
|
|
@@ -5808,122 +5841,7 @@ declare const _default: {
|
|
|
5808
5841
|
schema: {
|
|
5809
5842
|
properties: {
|
|
5810
5843
|
acs_credential: {
|
|
5811
|
-
|
|
5812
|
-
access_method: {
|
|
5813
|
-
enum: string[];
|
|
5814
|
-
type: string;
|
|
5815
|
-
};
|
|
5816
|
-
acs_credential_id: {
|
|
5817
|
-
format: string;
|
|
5818
|
-
type: string;
|
|
5819
|
-
};
|
|
5820
|
-
acs_credential_pool_id: {
|
|
5821
|
-
format: string;
|
|
5822
|
-
type: string;
|
|
5823
|
-
};
|
|
5824
|
-
acs_system_id: {
|
|
5825
|
-
format: string;
|
|
5826
|
-
type: string;
|
|
5827
|
-
};
|
|
5828
|
-
acs_user_id: {
|
|
5829
|
-
format: string;
|
|
5830
|
-
type: string;
|
|
5831
|
-
};
|
|
5832
|
-
code: {
|
|
5833
|
-
nullable: boolean;
|
|
5834
|
-
type: string;
|
|
5835
|
-
};
|
|
5836
|
-
created_at: {
|
|
5837
|
-
format: string;
|
|
5838
|
-
type: string;
|
|
5839
|
-
};
|
|
5840
|
-
display_name: {
|
|
5841
|
-
minLength: number;
|
|
5842
|
-
type: string;
|
|
5843
|
-
};
|
|
5844
|
-
ends_at: {
|
|
5845
|
-
type: string;
|
|
5846
|
-
};
|
|
5847
|
-
errors: {
|
|
5848
|
-
items: {
|
|
5849
|
-
properties: {
|
|
5850
|
-
error_code: {
|
|
5851
|
-
type: string;
|
|
5852
|
-
};
|
|
5853
|
-
message: {
|
|
5854
|
-
type: string;
|
|
5855
|
-
};
|
|
5856
|
-
};
|
|
5857
|
-
required: string[];
|
|
5858
|
-
type: string;
|
|
5859
|
-
};
|
|
5860
|
-
type: string;
|
|
5861
|
-
};
|
|
5862
|
-
external_type: {
|
|
5863
|
-
enum: string[];
|
|
5864
|
-
type: string;
|
|
5865
|
-
};
|
|
5866
|
-
external_type_display_name: {
|
|
5867
|
-
type: string;
|
|
5868
|
-
};
|
|
5869
|
-
is_multi_phone_sync_credential: {
|
|
5870
|
-
type: string;
|
|
5871
|
-
};
|
|
5872
|
-
parent_acs_credential_id: {
|
|
5873
|
-
format: string;
|
|
5874
|
-
type: string;
|
|
5875
|
-
};
|
|
5876
|
-
starts_at: {
|
|
5877
|
-
type: string;
|
|
5878
|
-
};
|
|
5879
|
-
visionline_metadata: {
|
|
5880
|
-
properties: {
|
|
5881
|
-
common_acs_entrance_ids: {
|
|
5882
|
-
items: {
|
|
5883
|
-
format: string;
|
|
5884
|
-
type: string;
|
|
5885
|
-
};
|
|
5886
|
-
type: string;
|
|
5887
|
-
};
|
|
5888
|
-
guest_acs_entrance_ids: {
|
|
5889
|
-
items: {
|
|
5890
|
-
format: string;
|
|
5891
|
-
type: string;
|
|
5892
|
-
};
|
|
5893
|
-
type: string;
|
|
5894
|
-
};
|
|
5895
|
-
joiner_acs_credential_ids: {
|
|
5896
|
-
items: {
|
|
5897
|
-
format: string;
|
|
5898
|
-
type: string;
|
|
5899
|
-
};
|
|
5900
|
-
type: string;
|
|
5901
|
-
};
|
|
5902
|
-
};
|
|
5903
|
-
type: string;
|
|
5904
|
-
};
|
|
5905
|
-
warnings: {
|
|
5906
|
-
items: {
|
|
5907
|
-
properties: {
|
|
5908
|
-
message: {
|
|
5909
|
-
type: string;
|
|
5910
|
-
};
|
|
5911
|
-
warning_code: {
|
|
5912
|
-
type: string;
|
|
5913
|
-
};
|
|
5914
|
-
};
|
|
5915
|
-
required: string[];
|
|
5916
|
-
type: string;
|
|
5917
|
-
};
|
|
5918
|
-
type: string;
|
|
5919
|
-
};
|
|
5920
|
-
workspace_id: {
|
|
5921
|
-
format: string;
|
|
5922
|
-
type: string;
|
|
5923
|
-
};
|
|
5924
|
-
};
|
|
5925
|
-
required: string[];
|
|
5926
|
-
type: string;
|
|
5844
|
+
$ref: string;
|
|
5927
5845
|
};
|
|
5928
5846
|
ok: {
|
|
5929
5847
|
type: string;
|
|
@@ -5960,6 +5878,7 @@ declare const _default: {
|
|
|
5960
5878
|
tags: string[];
|
|
5961
5879
|
'x-fern-sdk-group-name': string[];
|
|
5962
5880
|
'x-fern-sdk-method-name': string;
|
|
5881
|
+
'x-fern-sdk-return-value': string;
|
|
5963
5882
|
};
|
|
5964
5883
|
};
|
|
5965
5884
|
'/acs/credentials/delete': {
|
|
@@ -6050,122 +5969,7 @@ declare const _default: {
|
|
|
6050
5969
|
schema: {
|
|
6051
5970
|
properties: {
|
|
6052
5971
|
acs_credential: {
|
|
6053
|
-
|
|
6054
|
-
access_method: {
|
|
6055
|
-
enum: string[];
|
|
6056
|
-
type: string;
|
|
6057
|
-
};
|
|
6058
|
-
acs_credential_id: {
|
|
6059
|
-
format: string;
|
|
6060
|
-
type: string;
|
|
6061
|
-
};
|
|
6062
|
-
acs_credential_pool_id: {
|
|
6063
|
-
format: string;
|
|
6064
|
-
type: string;
|
|
6065
|
-
};
|
|
6066
|
-
acs_system_id: {
|
|
6067
|
-
format: string;
|
|
6068
|
-
type: string;
|
|
6069
|
-
};
|
|
6070
|
-
acs_user_id: {
|
|
6071
|
-
format: string;
|
|
6072
|
-
type: string;
|
|
6073
|
-
};
|
|
6074
|
-
code: {
|
|
6075
|
-
nullable: boolean;
|
|
6076
|
-
type: string;
|
|
6077
|
-
};
|
|
6078
|
-
created_at: {
|
|
6079
|
-
format: string;
|
|
6080
|
-
type: string;
|
|
6081
|
-
};
|
|
6082
|
-
display_name: {
|
|
6083
|
-
minLength: number;
|
|
6084
|
-
type: string;
|
|
6085
|
-
};
|
|
6086
|
-
ends_at: {
|
|
6087
|
-
type: string;
|
|
6088
|
-
};
|
|
6089
|
-
errors: {
|
|
6090
|
-
items: {
|
|
6091
|
-
properties: {
|
|
6092
|
-
error_code: {
|
|
6093
|
-
type: string;
|
|
6094
|
-
};
|
|
6095
|
-
message: {
|
|
6096
|
-
type: string;
|
|
6097
|
-
};
|
|
6098
|
-
};
|
|
6099
|
-
required: string[];
|
|
6100
|
-
type: string;
|
|
6101
|
-
};
|
|
6102
|
-
type: string;
|
|
6103
|
-
};
|
|
6104
|
-
external_type: {
|
|
6105
|
-
enum: string[];
|
|
6106
|
-
type: string;
|
|
6107
|
-
};
|
|
6108
|
-
external_type_display_name: {
|
|
6109
|
-
type: string;
|
|
6110
|
-
};
|
|
6111
|
-
is_multi_phone_sync_credential: {
|
|
6112
|
-
type: string;
|
|
6113
|
-
};
|
|
6114
|
-
parent_acs_credential_id: {
|
|
6115
|
-
format: string;
|
|
6116
|
-
type: string;
|
|
6117
|
-
};
|
|
6118
|
-
starts_at: {
|
|
6119
|
-
type: string;
|
|
6120
|
-
};
|
|
6121
|
-
visionline_metadata: {
|
|
6122
|
-
properties: {
|
|
6123
|
-
common_acs_entrance_ids: {
|
|
6124
|
-
items: {
|
|
6125
|
-
format: string;
|
|
6126
|
-
type: string;
|
|
6127
|
-
};
|
|
6128
|
-
type: string;
|
|
6129
|
-
};
|
|
6130
|
-
guest_acs_entrance_ids: {
|
|
6131
|
-
items: {
|
|
6132
|
-
format: string;
|
|
6133
|
-
type: string;
|
|
6134
|
-
};
|
|
6135
|
-
type: string;
|
|
6136
|
-
};
|
|
6137
|
-
joiner_acs_credential_ids: {
|
|
6138
|
-
items: {
|
|
6139
|
-
format: string;
|
|
6140
|
-
type: string;
|
|
6141
|
-
};
|
|
6142
|
-
type: string;
|
|
6143
|
-
};
|
|
6144
|
-
};
|
|
6145
|
-
type: string;
|
|
6146
|
-
};
|
|
6147
|
-
warnings: {
|
|
6148
|
-
items: {
|
|
6149
|
-
properties: {
|
|
6150
|
-
message: {
|
|
6151
|
-
type: string;
|
|
6152
|
-
};
|
|
6153
|
-
warning_code: {
|
|
6154
|
-
type: string;
|
|
6155
|
-
};
|
|
6156
|
-
};
|
|
6157
|
-
required: string[];
|
|
6158
|
-
type: string;
|
|
6159
|
-
};
|
|
6160
|
-
type: string;
|
|
6161
|
-
};
|
|
6162
|
-
workspace_id: {
|
|
6163
|
-
format: string;
|
|
6164
|
-
type: string;
|
|
6165
|
-
};
|
|
6166
|
-
};
|
|
6167
|
-
required: string[];
|
|
6168
|
-
type: string;
|
|
5972
|
+
$ref: string;
|
|
6169
5973
|
};
|
|
6170
5974
|
ok: {
|
|
6171
5975
|
type: string;
|
|
@@ -6202,6 +6006,7 @@ declare const _default: {
|
|
|
6202
6006
|
tags: string[];
|
|
6203
6007
|
'x-fern-sdk-group-name': string[];
|
|
6204
6008
|
'x-fern-sdk-method-name': string;
|
|
6009
|
+
'x-fern-sdk-return-value': string;
|
|
6205
6010
|
};
|
|
6206
6011
|
};
|
|
6207
6012
|
'/acs/credentials/list': {
|
|
@@ -6283,122 +6088,7 @@ declare const _default: {
|
|
|
6283
6088
|
properties: {
|
|
6284
6089
|
acs_credentials: {
|
|
6285
6090
|
items: {
|
|
6286
|
-
|
|
6287
|
-
access_method: {
|
|
6288
|
-
enum: string[];
|
|
6289
|
-
type: string;
|
|
6290
|
-
};
|
|
6291
|
-
acs_credential_id: {
|
|
6292
|
-
format: string;
|
|
6293
|
-
type: string;
|
|
6294
|
-
};
|
|
6295
|
-
acs_credential_pool_id: {
|
|
6296
|
-
format: string;
|
|
6297
|
-
type: string;
|
|
6298
|
-
};
|
|
6299
|
-
acs_system_id: {
|
|
6300
|
-
format: string;
|
|
6301
|
-
type: string;
|
|
6302
|
-
};
|
|
6303
|
-
acs_user_id: {
|
|
6304
|
-
format: string;
|
|
6305
|
-
type: string;
|
|
6306
|
-
};
|
|
6307
|
-
code: {
|
|
6308
|
-
nullable: boolean;
|
|
6309
|
-
type: string;
|
|
6310
|
-
};
|
|
6311
|
-
created_at: {
|
|
6312
|
-
format: string;
|
|
6313
|
-
type: string;
|
|
6314
|
-
};
|
|
6315
|
-
display_name: {
|
|
6316
|
-
minLength: number;
|
|
6317
|
-
type: string;
|
|
6318
|
-
};
|
|
6319
|
-
ends_at: {
|
|
6320
|
-
type: string;
|
|
6321
|
-
};
|
|
6322
|
-
errors: {
|
|
6323
|
-
items: {
|
|
6324
|
-
properties: {
|
|
6325
|
-
error_code: {
|
|
6326
|
-
type: string;
|
|
6327
|
-
};
|
|
6328
|
-
message: {
|
|
6329
|
-
type: string;
|
|
6330
|
-
};
|
|
6331
|
-
};
|
|
6332
|
-
required: string[];
|
|
6333
|
-
type: string;
|
|
6334
|
-
};
|
|
6335
|
-
type: string;
|
|
6336
|
-
};
|
|
6337
|
-
external_type: {
|
|
6338
|
-
enum: string[];
|
|
6339
|
-
type: string;
|
|
6340
|
-
};
|
|
6341
|
-
external_type_display_name: {
|
|
6342
|
-
type: string;
|
|
6343
|
-
};
|
|
6344
|
-
is_multi_phone_sync_credential: {
|
|
6345
|
-
type: string;
|
|
6346
|
-
};
|
|
6347
|
-
parent_acs_credential_id: {
|
|
6348
|
-
format: string;
|
|
6349
|
-
type: string;
|
|
6350
|
-
};
|
|
6351
|
-
starts_at: {
|
|
6352
|
-
type: string;
|
|
6353
|
-
};
|
|
6354
|
-
visionline_metadata: {
|
|
6355
|
-
properties: {
|
|
6356
|
-
common_acs_entrance_ids: {
|
|
6357
|
-
items: {
|
|
6358
|
-
format: string;
|
|
6359
|
-
type: string;
|
|
6360
|
-
};
|
|
6361
|
-
type: string;
|
|
6362
|
-
};
|
|
6363
|
-
guest_acs_entrance_ids: {
|
|
6364
|
-
items: {
|
|
6365
|
-
format: string;
|
|
6366
|
-
type: string;
|
|
6367
|
-
};
|
|
6368
|
-
type: string;
|
|
6369
|
-
};
|
|
6370
|
-
joiner_acs_credential_ids: {
|
|
6371
|
-
items: {
|
|
6372
|
-
format: string;
|
|
6373
|
-
type: string;
|
|
6374
|
-
};
|
|
6375
|
-
type: string;
|
|
6376
|
-
};
|
|
6377
|
-
};
|
|
6378
|
-
type: string;
|
|
6379
|
-
};
|
|
6380
|
-
warnings: {
|
|
6381
|
-
items: {
|
|
6382
|
-
properties: {
|
|
6383
|
-
message: {
|
|
6384
|
-
type: string;
|
|
6385
|
-
};
|
|
6386
|
-
warning_code: {
|
|
6387
|
-
type: string;
|
|
6388
|
-
};
|
|
6389
|
-
};
|
|
6390
|
-
required: string[];
|
|
6391
|
-
type: string;
|
|
6392
|
-
};
|
|
6393
|
-
type: string;
|
|
6394
|
-
};
|
|
6395
|
-
workspace_id: {
|
|
6396
|
-
format: string;
|
|
6397
|
-
type: string;
|
|
6398
|
-
};
|
|
6399
|
-
};
|
|
6400
|
-
required: string[];
|
|
6401
|
-
type: string;
|
|
6091
|
+
$ref: string;
|
|
6402
6092
|
};
|
|
6403
6093
|
type: string;
|
|
6404
6094
|
};
|
|
@@ -6445,6 +6135,7 @@ declare const _default: {
|
|
|
6445
6135
|
tags: string[];
|
|
6446
6136
|
'x-fern-sdk-group-name': string[];
|
|
6447
6137
|
'x-fern-sdk-method-name': string;
|
|
6138
|
+
'x-fern-sdk-return-value': string;
|
|
6448
6139
|
};
|
|
6449
6140
|
};
|
|
6450
6141
|
'/acs/credentials/unassign': {
|
|
@@ -6477,122 +6168,7 @@ declare const _default: {
|
|
|
6477
6168
|
schema: {
|
|
6478
6169
|
properties: {
|
|
6479
6170
|
acs_credential: {
|
|
6480
|
-
|
|
6481
|
-
access_method: {
|
|
6482
|
-
enum: string[];
|
|
6483
|
-
type: string;
|
|
6484
|
-
};
|
|
6485
|
-
acs_credential_id: {
|
|
6486
|
-
format: string;
|
|
6487
|
-
type: string;
|
|
6488
|
-
};
|
|
6489
|
-
acs_credential_pool_id: {
|
|
6490
|
-
format: string;
|
|
6491
|
-
type: string;
|
|
6492
|
-
};
|
|
6493
|
-
acs_system_id: {
|
|
6494
|
-
format: string;
|
|
6495
|
-
type: string;
|
|
6496
|
-
};
|
|
6497
|
-
acs_user_id: {
|
|
6498
|
-
format: string;
|
|
6499
|
-
type: string;
|
|
6500
|
-
};
|
|
6501
|
-
code: {
|
|
6502
|
-
nullable: boolean;
|
|
6503
|
-
type: string;
|
|
6504
|
-
};
|
|
6505
|
-
created_at: {
|
|
6506
|
-
format: string;
|
|
6507
|
-
type: string;
|
|
6508
|
-
};
|
|
6509
|
-
display_name: {
|
|
6510
|
-
minLength: number;
|
|
6511
|
-
type: string;
|
|
6512
|
-
};
|
|
6513
|
-
ends_at: {
|
|
6514
|
-
type: string;
|
|
6515
|
-
};
|
|
6516
|
-
errors: {
|
|
6517
|
-
items: {
|
|
6518
|
-
properties: {
|
|
6519
|
-
error_code: {
|
|
6520
|
-
type: string;
|
|
6521
|
-
};
|
|
6522
|
-
message: {
|
|
6523
|
-
type: string;
|
|
6524
|
-
};
|
|
6525
|
-
};
|
|
6526
|
-
required: string[];
|
|
6527
|
-
type: string;
|
|
6528
|
-
};
|
|
6529
|
-
type: string;
|
|
6530
|
-
};
|
|
6531
|
-
external_type: {
|
|
6532
|
-
enum: string[];
|
|
6533
|
-
type: string;
|
|
6534
|
-
};
|
|
6535
|
-
external_type_display_name: {
|
|
6536
|
-
type: string;
|
|
6537
|
-
};
|
|
6538
|
-
is_multi_phone_sync_credential: {
|
|
6539
|
-
type: string;
|
|
6540
|
-
};
|
|
6541
|
-
parent_acs_credential_id: {
|
|
6542
|
-
format: string;
|
|
6543
|
-
type: string;
|
|
6544
|
-
};
|
|
6545
|
-
starts_at: {
|
|
6546
|
-
type: string;
|
|
6547
|
-
};
|
|
6548
|
-
visionline_metadata: {
|
|
6549
|
-
properties: {
|
|
6550
|
-
common_acs_entrance_ids: {
|
|
6551
|
-
items: {
|
|
6552
|
-
format: string;
|
|
6553
|
-
type: string;
|
|
6554
|
-
};
|
|
6555
|
-
type: string;
|
|
6556
|
-
};
|
|
6557
|
-
guest_acs_entrance_ids: {
|
|
6558
|
-
items: {
|
|
6559
|
-
format: string;
|
|
6560
|
-
type: string;
|
|
6561
|
-
};
|
|
6562
|
-
type: string;
|
|
6563
|
-
};
|
|
6564
|
-
joiner_acs_credential_ids: {
|
|
6565
|
-
items: {
|
|
6566
|
-
format: string;
|
|
6567
|
-
type: string;
|
|
6568
|
-
};
|
|
6569
|
-
type: string;
|
|
6570
|
-
};
|
|
6571
|
-
};
|
|
6572
|
-
type: string;
|
|
6573
|
-
};
|
|
6574
|
-
warnings: {
|
|
6575
|
-
items: {
|
|
6576
|
-
properties: {
|
|
6577
|
-
message: {
|
|
6578
|
-
type: string;
|
|
6579
|
-
};
|
|
6580
|
-
warning_code: {
|
|
6581
|
-
type: string;
|
|
6582
|
-
};
|
|
6583
|
-
};
|
|
6584
|
-
required: string[];
|
|
6585
|
-
type: string;
|
|
6586
|
-
};
|
|
6587
|
-
type: string;
|
|
6588
|
-
};
|
|
6589
|
-
workspace_id: {
|
|
6590
|
-
format: string;
|
|
6591
|
-
type: string;
|
|
6592
|
-
};
|
|
6593
|
-
};
|
|
6594
|
-
required: string[];
|
|
6595
|
-
type: string;
|
|
6171
|
+
$ref: string;
|
|
6596
6172
|
};
|
|
6597
6173
|
ok: {
|
|
6598
6174
|
type: string;
|
|
@@ -6658,122 +6234,7 @@ declare const _default: {
|
|
|
6658
6234
|
schema: {
|
|
6659
6235
|
properties: {
|
|
6660
6236
|
acs_credential: {
|
|
6661
|
-
|
|
6662
|
-
access_method: {
|
|
6663
|
-
enum: string[];
|
|
6664
|
-
type: string;
|
|
6665
|
-
};
|
|
6666
|
-
acs_credential_id: {
|
|
6667
|
-
format: string;
|
|
6668
|
-
type: string;
|
|
6669
|
-
};
|
|
6670
|
-
acs_credential_pool_id: {
|
|
6671
|
-
format: string;
|
|
6672
|
-
type: string;
|
|
6673
|
-
};
|
|
6674
|
-
acs_system_id: {
|
|
6675
|
-
format: string;
|
|
6676
|
-
type: string;
|
|
6677
|
-
};
|
|
6678
|
-
acs_user_id: {
|
|
6679
|
-
format: string;
|
|
6680
|
-
type: string;
|
|
6681
|
-
};
|
|
6682
|
-
code: {
|
|
6683
|
-
nullable: boolean;
|
|
6684
|
-
type: string;
|
|
6685
|
-
};
|
|
6686
|
-
created_at: {
|
|
6687
|
-
format: string;
|
|
6688
|
-
type: string;
|
|
6689
|
-
};
|
|
6690
|
-
display_name: {
|
|
6691
|
-
minLength: number;
|
|
6692
|
-
type: string;
|
|
6693
|
-
};
|
|
6694
|
-
ends_at: {
|
|
6695
|
-
type: string;
|
|
6696
|
-
};
|
|
6697
|
-
errors: {
|
|
6698
|
-
items: {
|
|
6699
|
-
properties: {
|
|
6700
|
-
error_code: {
|
|
6701
|
-
type: string;
|
|
6702
|
-
};
|
|
6703
|
-
message: {
|
|
6704
|
-
type: string;
|
|
6705
|
-
};
|
|
6706
|
-
};
|
|
6707
|
-
required: string[];
|
|
6708
|
-
type: string;
|
|
6709
|
-
};
|
|
6710
|
-
type: string;
|
|
6711
|
-
};
|
|
6712
|
-
external_type: {
|
|
6713
|
-
enum: string[];
|
|
6714
|
-
type: string;
|
|
6715
|
-
};
|
|
6716
|
-
external_type_display_name: {
|
|
6717
|
-
type: string;
|
|
6718
|
-
};
|
|
6719
|
-
is_multi_phone_sync_credential: {
|
|
6720
|
-
type: string;
|
|
6721
|
-
};
|
|
6722
|
-
parent_acs_credential_id: {
|
|
6723
|
-
format: string;
|
|
6724
|
-
type: string;
|
|
6725
|
-
};
|
|
6726
|
-
starts_at: {
|
|
6727
|
-
type: string;
|
|
6728
|
-
};
|
|
6729
|
-
visionline_metadata: {
|
|
6730
|
-
properties: {
|
|
6731
|
-
common_acs_entrance_ids: {
|
|
6732
|
-
items: {
|
|
6733
|
-
format: string;
|
|
6734
|
-
type: string;
|
|
6735
|
-
};
|
|
6736
|
-
type: string;
|
|
6737
|
-
};
|
|
6738
|
-
guest_acs_entrance_ids: {
|
|
6739
|
-
items: {
|
|
6740
|
-
format: string;
|
|
6741
|
-
type: string;
|
|
6742
|
-
};
|
|
6743
|
-
type: string;
|
|
6744
|
-
};
|
|
6745
|
-
joiner_acs_credential_ids: {
|
|
6746
|
-
items: {
|
|
6747
|
-
format: string;
|
|
6748
|
-
type: string;
|
|
6749
|
-
};
|
|
6750
|
-
type: string;
|
|
6751
|
-
};
|
|
6752
|
-
};
|
|
6753
|
-
type: string;
|
|
6754
|
-
};
|
|
6755
|
-
warnings: {
|
|
6756
|
-
items: {
|
|
6757
|
-
properties: {
|
|
6758
|
-
message: {
|
|
6759
|
-
type: string;
|
|
6760
|
-
};
|
|
6761
|
-
warning_code: {
|
|
6762
|
-
type: string;
|
|
6763
|
-
};
|
|
6764
|
-
};
|
|
6765
|
-
required: string[];
|
|
6766
|
-
type: string;
|
|
6767
|
-
};
|
|
6768
|
-
type: string;
|
|
6769
|
-
};
|
|
6770
|
-
workspace_id: {
|
|
6771
|
-
format: string;
|
|
6772
|
-
type: string;
|
|
6773
|
-
};
|
|
6774
|
-
};
|
|
6775
|
-
required: string[];
|
|
6776
|
-
type: string;
|
|
6237
|
+
$ref: string;
|
|
6777
6238
|
};
|
|
6778
6239
|
ok: {
|
|
6779
6240
|
type: string;
|
|
@@ -6841,122 +6302,7 @@ declare const _default: {
|
|
|
6841
6302
|
schema: {
|
|
6842
6303
|
properties: {
|
|
6843
6304
|
acs_credential: {
|
|
6844
|
-
|
|
6845
|
-
access_method: {
|
|
6846
|
-
enum: string[];
|
|
6847
|
-
type: string;
|
|
6848
|
-
};
|
|
6849
|
-
acs_credential_id: {
|
|
6850
|
-
format: string;
|
|
6851
|
-
type: string;
|
|
6852
|
-
};
|
|
6853
|
-
acs_credential_pool_id: {
|
|
6854
|
-
format: string;
|
|
6855
|
-
type: string;
|
|
6856
|
-
};
|
|
6857
|
-
acs_system_id: {
|
|
6858
|
-
format: string;
|
|
6859
|
-
type: string;
|
|
6860
|
-
};
|
|
6861
|
-
acs_user_id: {
|
|
6862
|
-
format: string;
|
|
6863
|
-
type: string;
|
|
6864
|
-
};
|
|
6865
|
-
code: {
|
|
6866
|
-
nullable: boolean;
|
|
6867
|
-
type: string;
|
|
6868
|
-
};
|
|
6869
|
-
created_at: {
|
|
6870
|
-
format: string;
|
|
6871
|
-
type: string;
|
|
6872
|
-
};
|
|
6873
|
-
display_name: {
|
|
6874
|
-
minLength: number;
|
|
6875
|
-
type: string;
|
|
6876
|
-
};
|
|
6877
|
-
ends_at: {
|
|
6878
|
-
type: string;
|
|
6879
|
-
};
|
|
6880
|
-
errors: {
|
|
6881
|
-
items: {
|
|
6882
|
-
properties: {
|
|
6883
|
-
error_code: {
|
|
6884
|
-
type: string;
|
|
6885
|
-
};
|
|
6886
|
-
message: {
|
|
6887
|
-
type: string;
|
|
6888
|
-
};
|
|
6889
|
-
};
|
|
6890
|
-
required: string[];
|
|
6891
|
-
type: string;
|
|
6892
|
-
};
|
|
6893
|
-
type: string;
|
|
6894
|
-
};
|
|
6895
|
-
external_type: {
|
|
6896
|
-
enum: string[];
|
|
6897
|
-
type: string;
|
|
6898
|
-
};
|
|
6899
|
-
external_type_display_name: {
|
|
6900
|
-
type: string;
|
|
6901
|
-
};
|
|
6902
|
-
is_multi_phone_sync_credential: {
|
|
6903
|
-
type: string;
|
|
6904
|
-
};
|
|
6905
|
-
parent_acs_credential_id: {
|
|
6906
|
-
format: string;
|
|
6907
|
-
type: string;
|
|
6908
|
-
};
|
|
6909
|
-
starts_at: {
|
|
6910
|
-
type: string;
|
|
6911
|
-
};
|
|
6912
|
-
visionline_metadata: {
|
|
6913
|
-
properties: {
|
|
6914
|
-
common_acs_entrance_ids: {
|
|
6915
|
-
items: {
|
|
6916
|
-
format: string;
|
|
6917
|
-
type: string;
|
|
6918
|
-
};
|
|
6919
|
-
type: string;
|
|
6920
|
-
};
|
|
6921
|
-
guest_acs_entrance_ids: {
|
|
6922
|
-
items: {
|
|
6923
|
-
format: string;
|
|
6924
|
-
type: string;
|
|
6925
|
-
};
|
|
6926
|
-
type: string;
|
|
6927
|
-
};
|
|
6928
|
-
joiner_acs_credential_ids: {
|
|
6929
|
-
items: {
|
|
6930
|
-
format: string;
|
|
6931
|
-
type: string;
|
|
6932
|
-
};
|
|
6933
|
-
type: string;
|
|
6934
|
-
};
|
|
6935
|
-
};
|
|
6936
|
-
type: string;
|
|
6937
|
-
};
|
|
6938
|
-
warnings: {
|
|
6939
|
-
items: {
|
|
6940
|
-
properties: {
|
|
6941
|
-
message: {
|
|
6942
|
-
type: string;
|
|
6943
|
-
};
|
|
6944
|
-
warning_code: {
|
|
6945
|
-
type: string;
|
|
6946
|
-
};
|
|
6947
|
-
};
|
|
6948
|
-
required: string[];
|
|
6949
|
-
type: string;
|
|
6950
|
-
};
|
|
6951
|
-
type: string;
|
|
6952
|
-
};
|
|
6953
|
-
workspace_id: {
|
|
6954
|
-
format: string;
|
|
6955
|
-
type: string;
|
|
6956
|
-
};
|
|
6957
|
-
};
|
|
6958
|
-
required: string[];
|
|
6959
|
-
type: string;
|
|
6305
|
+
$ref: string;
|
|
6960
6306
|
};
|
|
6961
6307
|
ok: {
|
|
6962
6308
|
type: string;
|
|
@@ -7021,122 +6367,7 @@ declare const _default: {
|
|
|
7021
6367
|
schema: {
|
|
7022
6368
|
properties: {
|
|
7023
6369
|
acs_credential: {
|
|
7024
|
-
|
|
7025
|
-
access_method: {
|
|
7026
|
-
enum: string[];
|
|
7027
|
-
type: string;
|
|
7028
|
-
};
|
|
7029
|
-
acs_credential_id: {
|
|
7030
|
-
format: string;
|
|
7031
|
-
type: string;
|
|
7032
|
-
};
|
|
7033
|
-
acs_credential_pool_id: {
|
|
7034
|
-
format: string;
|
|
7035
|
-
type: string;
|
|
7036
|
-
};
|
|
7037
|
-
acs_system_id: {
|
|
7038
|
-
format: string;
|
|
7039
|
-
type: string;
|
|
7040
|
-
};
|
|
7041
|
-
acs_user_id: {
|
|
7042
|
-
format: string;
|
|
7043
|
-
type: string;
|
|
7044
|
-
};
|
|
7045
|
-
code: {
|
|
7046
|
-
nullable: boolean;
|
|
7047
|
-
type: string;
|
|
7048
|
-
};
|
|
7049
|
-
created_at: {
|
|
7050
|
-
format: string;
|
|
7051
|
-
type: string;
|
|
7052
|
-
};
|
|
7053
|
-
display_name: {
|
|
7054
|
-
minLength: number;
|
|
7055
|
-
type: string;
|
|
7056
|
-
};
|
|
7057
|
-
ends_at: {
|
|
7058
|
-
type: string;
|
|
7059
|
-
};
|
|
7060
|
-
errors: {
|
|
7061
|
-
items: {
|
|
7062
|
-
properties: {
|
|
7063
|
-
error_code: {
|
|
7064
|
-
type: string;
|
|
7065
|
-
};
|
|
7066
|
-
message: {
|
|
7067
|
-
type: string;
|
|
7068
|
-
};
|
|
7069
|
-
};
|
|
7070
|
-
required: string[];
|
|
7071
|
-
type: string;
|
|
7072
|
-
};
|
|
7073
|
-
type: string;
|
|
7074
|
-
};
|
|
7075
|
-
external_type: {
|
|
7076
|
-
enum: string[];
|
|
7077
|
-
type: string;
|
|
7078
|
-
};
|
|
7079
|
-
external_type_display_name: {
|
|
7080
|
-
type: string;
|
|
7081
|
-
};
|
|
7082
|
-
is_multi_phone_sync_credential: {
|
|
7083
|
-
type: string;
|
|
7084
|
-
};
|
|
7085
|
-
parent_acs_credential_id: {
|
|
7086
|
-
format: string;
|
|
7087
|
-
type: string;
|
|
7088
|
-
};
|
|
7089
|
-
starts_at: {
|
|
7090
|
-
type: string;
|
|
7091
|
-
};
|
|
7092
|
-
visionline_metadata: {
|
|
7093
|
-
properties: {
|
|
7094
|
-
common_acs_entrance_ids: {
|
|
7095
|
-
items: {
|
|
7096
|
-
format: string;
|
|
7097
|
-
type: string;
|
|
7098
|
-
};
|
|
7099
|
-
type: string;
|
|
7100
|
-
};
|
|
7101
|
-
guest_acs_entrance_ids: {
|
|
7102
|
-
items: {
|
|
7103
|
-
format: string;
|
|
7104
|
-
type: string;
|
|
7105
|
-
};
|
|
7106
|
-
type: string;
|
|
7107
|
-
};
|
|
7108
|
-
joiner_acs_credential_ids: {
|
|
7109
|
-
items: {
|
|
7110
|
-
format: string;
|
|
7111
|
-
type: string;
|
|
7112
|
-
};
|
|
7113
|
-
type: string;
|
|
7114
|
-
};
|
|
7115
|
-
};
|
|
7116
|
-
type: string;
|
|
7117
|
-
};
|
|
7118
|
-
warnings: {
|
|
7119
|
-
items: {
|
|
7120
|
-
properties: {
|
|
7121
|
-
message: {
|
|
7122
|
-
type: string;
|
|
7123
|
-
};
|
|
7124
|
-
warning_code: {
|
|
7125
|
-
type: string;
|
|
7126
|
-
};
|
|
7127
|
-
};
|
|
7128
|
-
required: string[];
|
|
7129
|
-
type: string;
|
|
7130
|
-
};
|
|
7131
|
-
type: string;
|
|
7132
|
-
};
|
|
7133
|
-
workspace_id: {
|
|
7134
|
-
format: string;
|
|
7135
|
-
type: string;
|
|
7136
|
-
};
|
|
7137
|
-
};
|
|
7138
|
-
required: string[];
|
|
7139
|
-
type: string;
|
|
6370
|
+
$ref: string;
|
|
7140
6371
|
};
|
|
7141
6372
|
ok: {
|
|
7142
6373
|
type: string;
|
|
@@ -7201,74 +6432,7 @@ declare const _default: {
|
|
|
7201
6432
|
schema: {
|
|
7202
6433
|
properties: {
|
|
7203
6434
|
acs_entrance: {
|
|
7204
|
-
|
|
7205
|
-
acs_entrance_id: {
|
|
7206
|
-
format: string;
|
|
7207
|
-
type: string;
|
|
7208
|
-
};
|
|
7209
|
-
acs_system_id: {
|
|
7210
|
-
format: string;
|
|
7211
|
-
type: string;
|
|
7212
|
-
};
|
|
7213
|
-
created_at: {
|
|
7214
|
-
format: string;
|
|
7215
|
-
type: string;
|
|
7216
|
-
};
|
|
7217
|
-
display_name: {
|
|
7218
|
-
type: string;
|
|
7219
|
-
};
|
|
7220
|
-
latch_metadata: {
|
|
7221
|
-
nullable: boolean;
|
|
7222
|
-
properties: {
|
|
7223
|
-
accessibility_type: {
|
|
7224
|
-
type: string;
|
|
7225
|
-
};
|
|
7226
|
-
is_connected: {
|
|
7227
|
-
type: string;
|
|
7228
|
-
};
|
|
7229
|
-
name: {
|
|
7230
|
-
type: string;
|
|
7231
|
-
};
|
|
7232
|
-
type: {
|
|
7233
|
-
type: string;
|
|
7234
|
-
};
|
|
7235
|
-
};
|
|
7236
|
-
required: string[];
|
|
7237
|
-
type: string;
|
|
7238
|
-
};
|
|
7239
|
-
visionline_metadata: {
|
|
7240
|
-
nullable: boolean;
|
|
7241
|
-
properties: {
|
|
7242
|
-
door_category: {
|
|
7243
|
-
enum: string[];
|
|
7244
|
-
type: string;
|
|
7245
|
-
};
|
|
7246
|
-
door_name: {
|
|
7247
|
-
type: string;
|
|
7248
|
-
};
|
|
7249
|
-
profiles: {
|
|
7250
|
-
items: {
|
|
7251
|
-
properties: {
|
|
7252
|
-
visionline_door_profile_id: {
|
|
7253
|
-
type: string;
|
|
7254
|
-
};
|
|
7255
|
-
visionline_door_profile_type: {
|
|
7256
|
-
enum: string[];
|
|
7257
|
-
type: string;
|
|
7258
|
-
};
|
|
7259
|
-
};
|
|
7260
|
-
required: string[];
|
|
7261
|
-
type: string;
|
|
7262
|
-
};
|
|
7263
|
-
type: string;
|
|
7264
|
-
};
|
|
7265
|
-
};
|
|
7266
|
-
required: string[];
|
|
7267
|
-
type: string;
|
|
7268
|
-
};
|
|
7269
|
-
};
|
|
7270
|
-
required: string[];
|
|
7271
|
-
type: string;
|
|
6435
|
+
$ref: string;
|
|
7272
6436
|
};
|
|
7273
6437
|
ok: {
|
|
7274
6438
|
type: string;
|
|
@@ -7313,6 +6477,7 @@ declare const _default: {
|
|
|
7313
6477
|
tags: string[];
|
|
7314
6478
|
'x-fern-sdk-group-name': string[];
|
|
7315
6479
|
'x-fern-sdk-method-name': string;
|
|
6480
|
+
'x-fern-sdk-return-value': string;
|
|
7316
6481
|
};
|
|
7317
6482
|
};
|
|
7318
6483
|
'/acs/entrances/grant_access': {
|
|
@@ -7419,74 +6584,7 @@ declare const _default: {
|
|
|
7419
6584
|
properties: {
|
|
7420
6585
|
acs_entrances: {
|
|
7421
6586
|
items: {
|
|
7422
|
-
|
|
7423
|
-
acs_entrance_id: {
|
|
7424
|
-
format: string;
|
|
7425
|
-
type: string;
|
|
7426
|
-
};
|
|
7427
|
-
acs_system_id: {
|
|
7428
|
-
format: string;
|
|
7429
|
-
type: string;
|
|
7430
|
-
};
|
|
7431
|
-
created_at: {
|
|
7432
|
-
format: string;
|
|
7433
|
-
type: string;
|
|
7434
|
-
};
|
|
7435
|
-
display_name: {
|
|
7436
|
-
type: string;
|
|
7437
|
-
};
|
|
7438
|
-
latch_metadata: {
|
|
7439
|
-
nullable: boolean;
|
|
7440
|
-
properties: {
|
|
7441
|
-
accessibility_type: {
|
|
7442
|
-
type: string;
|
|
7443
|
-
};
|
|
7444
|
-
is_connected: {
|
|
7445
|
-
type: string;
|
|
7446
|
-
};
|
|
7447
|
-
name: {
|
|
7448
|
-
type: string;
|
|
7449
|
-
};
|
|
7450
|
-
type: {
|
|
7451
|
-
type: string;
|
|
7452
|
-
};
|
|
7453
|
-
};
|
|
7454
|
-
required: string[];
|
|
7455
|
-
type: string;
|
|
7456
|
-
};
|
|
7457
|
-
visionline_metadata: {
|
|
7458
|
-
nullable: boolean;
|
|
7459
|
-
properties: {
|
|
7460
|
-
door_category: {
|
|
7461
|
-
enum: string[];
|
|
7462
|
-
type: string;
|
|
7463
|
-
};
|
|
7464
|
-
door_name: {
|
|
7465
|
-
type: string;
|
|
7466
|
-
};
|
|
7467
|
-
profiles: {
|
|
7468
|
-
items: {
|
|
7469
|
-
properties: {
|
|
7470
|
-
visionline_door_profile_id: {
|
|
7471
|
-
type: string;
|
|
7472
|
-
};
|
|
7473
|
-
visionline_door_profile_type: {
|
|
7474
|
-
enum: string[];
|
|
7475
|
-
type: string;
|
|
7476
|
-
};
|
|
7477
|
-
};
|
|
7478
|
-
required: string[];
|
|
7479
|
-
type: string;
|
|
7480
|
-
};
|
|
7481
|
-
type: string;
|
|
7482
|
-
};
|
|
7483
|
-
};
|
|
7484
|
-
required: string[];
|
|
7485
|
-
type: string;
|
|
7486
|
-
};
|
|
7487
|
-
};
|
|
7488
|
-
required: string[];
|
|
7489
|
-
type: string;
|
|
6587
|
+
$ref: string;
|
|
7490
6588
|
};
|
|
7491
6589
|
type: string;
|
|
7492
6590
|
};
|
|
@@ -7533,6 +6631,7 @@ declare const _default: {
|
|
|
7533
6631
|
tags: string[];
|
|
7534
6632
|
'x-fern-sdk-group-name': string[];
|
|
7535
6633
|
'x-fern-sdk-method-name': string;
|
|
6634
|
+
'x-fern-sdk-return-value': string;
|
|
7536
6635
|
};
|
|
7537
6636
|
};
|
|
7538
6637
|
'/acs/entrances/list_credentials_with_access': {
|
|
@@ -7569,122 +6668,7 @@ declare const _default: {
|
|
|
7569
6668
|
properties: {
|
|
7570
6669
|
acs_credentials: {
|
|
7571
6670
|
items: {
|
|
7572
|
-
|
|
7573
|
-
access_method: {
|
|
7574
|
-
enum: string[];
|
|
7575
|
-
type: string;
|
|
7576
|
-
};
|
|
7577
|
-
acs_credential_id: {
|
|
7578
|
-
format: string;
|
|
7579
|
-
type: string;
|
|
7580
|
-
};
|
|
7581
|
-
acs_credential_pool_id: {
|
|
7582
|
-
format: string;
|
|
7583
|
-
type: string;
|
|
7584
|
-
};
|
|
7585
|
-
acs_system_id: {
|
|
7586
|
-
format: string;
|
|
7587
|
-
type: string;
|
|
7588
|
-
};
|
|
7589
|
-
acs_user_id: {
|
|
7590
|
-
format: string;
|
|
7591
|
-
type: string;
|
|
7592
|
-
};
|
|
7593
|
-
code: {
|
|
7594
|
-
nullable: boolean;
|
|
7595
|
-
type: string;
|
|
7596
|
-
};
|
|
7597
|
-
created_at: {
|
|
7598
|
-
format: string;
|
|
7599
|
-
type: string;
|
|
7600
|
-
};
|
|
7601
|
-
display_name: {
|
|
7602
|
-
minLength: number;
|
|
7603
|
-
type: string;
|
|
7604
|
-
};
|
|
7605
|
-
ends_at: {
|
|
7606
|
-
type: string;
|
|
7607
|
-
};
|
|
7608
|
-
errors: {
|
|
7609
|
-
items: {
|
|
7610
|
-
properties: {
|
|
7611
|
-
error_code: {
|
|
7612
|
-
type: string;
|
|
7613
|
-
};
|
|
7614
|
-
message: {
|
|
7615
|
-
type: string;
|
|
7616
|
-
};
|
|
7617
|
-
};
|
|
7618
|
-
required: string[];
|
|
7619
|
-
type: string;
|
|
7620
|
-
};
|
|
7621
|
-
type: string;
|
|
7622
|
-
};
|
|
7623
|
-
external_type: {
|
|
7624
|
-
enum: string[];
|
|
7625
|
-
type: string;
|
|
7626
|
-
};
|
|
7627
|
-
external_type_display_name: {
|
|
7628
|
-
type: string;
|
|
7629
|
-
};
|
|
7630
|
-
is_multi_phone_sync_credential: {
|
|
7631
|
-
type: string;
|
|
7632
|
-
};
|
|
7633
|
-
parent_acs_credential_id: {
|
|
7634
|
-
format: string;
|
|
7635
|
-
type: string;
|
|
7636
|
-
};
|
|
7637
|
-
starts_at: {
|
|
7638
|
-
type: string;
|
|
7639
|
-
};
|
|
7640
|
-
visionline_metadata: {
|
|
7641
|
-
properties: {
|
|
7642
|
-
common_acs_entrance_ids: {
|
|
7643
|
-
items: {
|
|
7644
|
-
format: string;
|
|
7645
|
-
type: string;
|
|
7646
|
-
};
|
|
7647
|
-
type: string;
|
|
7648
|
-
};
|
|
7649
|
-
guest_acs_entrance_ids: {
|
|
7650
|
-
items: {
|
|
7651
|
-
format: string;
|
|
7652
|
-
type: string;
|
|
7653
|
-
};
|
|
7654
|
-
type: string;
|
|
7655
|
-
};
|
|
7656
|
-
joiner_acs_credential_ids: {
|
|
7657
|
-
items: {
|
|
7658
|
-
format: string;
|
|
7659
|
-
type: string;
|
|
7660
|
-
};
|
|
7661
|
-
type: string;
|
|
7662
|
-
};
|
|
7663
|
-
};
|
|
7664
|
-
type: string;
|
|
7665
|
-
};
|
|
7666
|
-
warnings: {
|
|
7667
|
-
items: {
|
|
7668
|
-
properties: {
|
|
7669
|
-
message: {
|
|
7670
|
-
type: string;
|
|
7671
|
-
};
|
|
7672
|
-
warning_code: {
|
|
7673
|
-
type: string;
|
|
7674
|
-
};
|
|
7675
|
-
};
|
|
7676
|
-
required: string[];
|
|
7677
|
-
type: string;
|
|
7678
|
-
};
|
|
7679
|
-
type: string;
|
|
7680
|
-
};
|
|
7681
|
-
workspace_id: {
|
|
7682
|
-
format: string;
|
|
7683
|
-
type: string;
|
|
7684
|
-
};
|
|
7685
|
-
};
|
|
7686
|
-
required: string[];
|
|
7687
|
-
type: string;
|
|
6671
|
+
$ref: string;
|
|
7688
6672
|
};
|
|
7689
6673
|
type: string;
|
|
7690
6674
|
};
|
|
@@ -7731,6 +6715,7 @@ declare const _default: {
|
|
|
7731
6715
|
tags: string[];
|
|
7732
6716
|
'x-fern-sdk-group-name': string[];
|
|
7733
6717
|
'x-fern-sdk-method-name': string;
|
|
6718
|
+
'x-fern-sdk-return-value': string;
|
|
7734
6719
|
};
|
|
7735
6720
|
};
|
|
7736
6721
|
'/acs/systems/get': {
|
|
@@ -7796,6 +6781,7 @@ declare const _default: {
|
|
|
7796
6781
|
tags: string[];
|
|
7797
6782
|
'x-fern-sdk-group-name': string[];
|
|
7798
6783
|
'x-fern-sdk-method-name': string;
|
|
6784
|
+
'x-fern-sdk-return-value': string;
|
|
7799
6785
|
};
|
|
7800
6786
|
};
|
|
7801
6787
|
'/acs/systems/list': {
|
|
@@ -7871,6 +6857,7 @@ declare const _default: {
|
|
|
7871
6857
|
tags: string[];
|
|
7872
6858
|
'x-fern-sdk-group-name': string[];
|
|
7873
6859
|
'x-fern-sdk-method-name': string;
|
|
6860
|
+
'x-fern-sdk-return-value': string;
|
|
7874
6861
|
};
|
|
7875
6862
|
};
|
|
7876
6863
|
'/acs/users/add_to_access_group': {
|
|
@@ -8107,6 +7094,7 @@ declare const _default: {
|
|
|
8107
7094
|
tags: string[];
|
|
8108
7095
|
'x-fern-sdk-group-name': string[];
|
|
8109
7096
|
'x-fern-sdk-method-name': string;
|
|
7097
|
+
'x-fern-sdk-return-value': string;
|
|
8110
7098
|
};
|
|
8111
7099
|
};
|
|
8112
7100
|
'/acs/users/delete': {
|
|
@@ -8234,6 +7222,7 @@ declare const _default: {
|
|
|
8234
7222
|
tags: string[];
|
|
8235
7223
|
'x-fern-sdk-group-name': string[];
|
|
8236
7224
|
'x-fern-sdk-method-name': string;
|
|
7225
|
+
'x-fern-sdk-return-value': string;
|
|
8237
7226
|
};
|
|
8238
7227
|
};
|
|
8239
7228
|
'/acs/users/list': {
|
|
@@ -8320,6 +7309,7 @@ declare const _default: {
|
|
|
8320
7309
|
tags: string[];
|
|
8321
7310
|
'x-fern-sdk-group-name': string[];
|
|
8322
7311
|
'x-fern-sdk-method-name': string;
|
|
7312
|
+
'x-fern-sdk-return-value': string;
|
|
8323
7313
|
};
|
|
8324
7314
|
};
|
|
8325
7315
|
'/acs/users/list_accessible_entrances': {
|
|
@@ -8349,74 +7339,7 @@ declare const _default: {
|
|
|
8349
7339
|
properties: {
|
|
8350
7340
|
acs_entrances: {
|
|
8351
7341
|
items: {
|
|
8352
|
-
|
|
8353
|
-
acs_entrance_id: {
|
|
8354
|
-
format: string;
|
|
8355
|
-
type: string;
|
|
8356
|
-
};
|
|
8357
|
-
acs_system_id: {
|
|
8358
|
-
format: string;
|
|
8359
|
-
type: string;
|
|
8360
|
-
};
|
|
8361
|
-
created_at: {
|
|
8362
|
-
format: string;
|
|
8363
|
-
type: string;
|
|
8364
|
-
};
|
|
8365
|
-
display_name: {
|
|
8366
|
-
type: string;
|
|
8367
|
-
};
|
|
8368
|
-
latch_metadata: {
|
|
8369
|
-
nullable: boolean;
|
|
8370
|
-
properties: {
|
|
8371
|
-
accessibility_type: {
|
|
8372
|
-
type: string;
|
|
8373
|
-
};
|
|
8374
|
-
is_connected: {
|
|
8375
|
-
type: string;
|
|
8376
|
-
};
|
|
8377
|
-
name: {
|
|
8378
|
-
type: string;
|
|
8379
|
-
};
|
|
8380
|
-
type: {
|
|
8381
|
-
type: string;
|
|
8382
|
-
};
|
|
8383
|
-
};
|
|
8384
|
-
required: string[];
|
|
8385
|
-
type: string;
|
|
8386
|
-
};
|
|
8387
|
-
visionline_metadata: {
|
|
8388
|
-
nullable: boolean;
|
|
8389
|
-
properties: {
|
|
8390
|
-
door_category: {
|
|
8391
|
-
enum: string[];
|
|
8392
|
-
type: string;
|
|
8393
|
-
};
|
|
8394
|
-
door_name: {
|
|
8395
|
-
type: string;
|
|
8396
|
-
};
|
|
8397
|
-
profiles: {
|
|
8398
|
-
items: {
|
|
8399
|
-
properties: {
|
|
8400
|
-
visionline_door_profile_id: {
|
|
8401
|
-
type: string;
|
|
8402
|
-
};
|
|
8403
|
-
visionline_door_profile_type: {
|
|
8404
|
-
enum: string[];
|
|
8405
|
-
type: string;
|
|
8406
|
-
};
|
|
8407
|
-
};
|
|
8408
|
-
required: string[];
|
|
8409
|
-
type: string;
|
|
8410
|
-
};
|
|
8411
|
-
type: string;
|
|
8412
|
-
};
|
|
8413
|
-
};
|
|
8414
|
-
required: string[];
|
|
8415
|
-
type: string;
|
|
8416
|
-
};
|
|
8417
|
-
};
|
|
8418
|
-
required: string[];
|
|
8419
|
-
type: string;
|
|
7342
|
+
$ref: string;
|
|
8420
7343
|
};
|
|
8421
7344
|
type: string;
|
|
8422
7345
|
};
|
|
@@ -8463,6 +7386,7 @@ declare const _default: {
|
|
|
8463
7386
|
tags: string[];
|
|
8464
7387
|
'x-fern-sdk-group-name': string[];
|
|
8465
7388
|
'x-fern-sdk-method-name': string;
|
|
7389
|
+
'x-fern-sdk-return-value': string;
|
|
8466
7390
|
};
|
|
8467
7391
|
};
|
|
8468
7392
|
'/acs/users/remove_from_access_group': {
|
|
@@ -12327,25 +11251,7 @@ declare const _default: {
|
|
|
12327
11251
|
schema: {
|
|
12328
11252
|
properties: {
|
|
12329
11253
|
network: {
|
|
12330
|
-
|
|
12331
|
-
created_at: {
|
|
12332
|
-
format: string;
|
|
12333
|
-
type: string;
|
|
12334
|
-
};
|
|
12335
|
-
display_name: {
|
|
12336
|
-
type: string;
|
|
12337
|
-
};
|
|
12338
|
-
network_id: {
|
|
12339
|
-
format: string;
|
|
12340
|
-
type: string;
|
|
12341
|
-
};
|
|
12342
|
-
workspace_id: {
|
|
12343
|
-
format: string;
|
|
12344
|
-
type: string;
|
|
12345
|
-
};
|
|
12346
|
-
};
|
|
12347
|
-
required: string[];
|
|
12348
|
-
type: string;
|
|
11254
|
+
$ref: string;
|
|
12349
11255
|
};
|
|
12350
11256
|
ok: {
|
|
12351
11257
|
type: string;
|
|
@@ -12382,6 +11288,7 @@ declare const _default: {
|
|
|
12382
11288
|
tags: string[];
|
|
12383
11289
|
'x-fern-sdk-group-name': string[];
|
|
12384
11290
|
'x-fern-sdk-method-name': string;
|
|
11291
|
+
'x-fern-sdk-return-value': string;
|
|
12385
11292
|
};
|
|
12386
11293
|
};
|
|
12387
11294
|
'/networks/list': {
|
|
@@ -12405,25 +11312,7 @@ declare const _default: {
|
|
|
12405
11312
|
properties: {
|
|
12406
11313
|
networks: {
|
|
12407
11314
|
items: {
|
|
12408
|
-
|
|
12409
|
-
created_at: {
|
|
12410
|
-
format: string;
|
|
12411
|
-
type: string;
|
|
12412
|
-
};
|
|
12413
|
-
display_name: {
|
|
12414
|
-
type: string;
|
|
12415
|
-
};
|
|
12416
|
-
network_id: {
|
|
12417
|
-
format: string;
|
|
12418
|
-
type: string;
|
|
12419
|
-
};
|
|
12420
|
-
workspace_id: {
|
|
12421
|
-
format: string;
|
|
12422
|
-
type: string;
|
|
12423
|
-
};
|
|
12424
|
-
};
|
|
12425
|
-
required: string[];
|
|
12426
|
-
type: string;
|
|
11315
|
+
$ref: string;
|
|
12427
11316
|
};
|
|
12428
11317
|
type: string;
|
|
12429
11318
|
};
|
|
@@ -12462,6 +11351,7 @@ declare const _default: {
|
|
|
12462
11351
|
tags: string[];
|
|
12463
11352
|
'x-fern-sdk-group-name': string[];
|
|
12464
11353
|
'x-fern-sdk-method-name': string;
|
|
11354
|
+
'x-fern-sdk-return-value': string;
|
|
12465
11355
|
};
|
|
12466
11356
|
};
|
|
12467
11357
|
'/noise_sensors/noise_thresholds/create': {
|
|
@@ -15097,45 +13987,7 @@ declare const _default: {
|
|
|
15097
13987
|
type: string;
|
|
15098
13988
|
};
|
|
15099
13989
|
user_identity: {
|
|
15100
|
-
|
|
15101
|
-
created_at: {
|
|
15102
|
-
format: string;
|
|
15103
|
-
type: string;
|
|
15104
|
-
};
|
|
15105
|
-
display_name: {
|
|
15106
|
-
minLength: number;
|
|
15107
|
-
type: string;
|
|
15108
|
-
};
|
|
15109
|
-
email_address: {
|
|
15110
|
-
format: string;
|
|
15111
|
-
nullable: boolean;
|
|
15112
|
-
type: string;
|
|
15113
|
-
};
|
|
15114
|
-
full_name: {
|
|
15115
|
-
minLength: number;
|
|
15116
|
-
nullable: boolean;
|
|
15117
|
-
type: string;
|
|
15118
|
-
};
|
|
15119
|
-
phone_number: {
|
|
15120
|
-
nullable: boolean;
|
|
15121
|
-
type: string;
|
|
15122
|
-
};
|
|
15123
|
-
user_identity_id: {
|
|
15124
|
-
format: string;
|
|
15125
|
-
type: string;
|
|
15126
|
-
};
|
|
15127
|
-
user_identity_key: {
|
|
15128
|
-
minLength: number;
|
|
15129
|
-
nullable: boolean;
|
|
15130
|
-
type: string;
|
|
15131
|
-
};
|
|
15132
|
-
workspace_id: {
|
|
15133
|
-
format: string;
|
|
15134
|
-
type: string;
|
|
15135
|
-
};
|
|
15136
|
-
};
|
|
15137
|
-
required: string[];
|
|
15138
|
-
type: string;
|
|
13990
|
+
$ref: string;
|
|
15139
13991
|
};
|
|
15140
13992
|
};
|
|
15141
13993
|
required: string[];
|
|
@@ -15169,6 +14021,7 @@ declare const _default: {
|
|
|
15169
14021
|
tags: string[];
|
|
15170
14022
|
'x-fern-sdk-group-name': string[];
|
|
15171
14023
|
'x-fern-sdk-method-name': string;
|
|
14024
|
+
'x-fern-sdk-return-value': string;
|
|
15172
14025
|
};
|
|
15173
14026
|
};
|
|
15174
14027
|
'/user_identities/delete': {
|
|
@@ -15366,6 +14219,7 @@ declare const _default: {
|
|
|
15366
14219
|
tags: string[];
|
|
15367
14220
|
'x-fern-sdk-group-name': string[];
|
|
15368
14221
|
'x-fern-sdk-method-name': string;
|
|
14222
|
+
'x-fern-sdk-return-value': string;
|
|
15369
14223
|
};
|
|
15370
14224
|
};
|
|
15371
14225
|
'/user_identities/enrollment_automations/launch': {
|
|
@@ -15473,6 +14327,7 @@ declare const _default: {
|
|
|
15473
14327
|
tags: string[];
|
|
15474
14328
|
'x-fern-sdk-group-name': string[];
|
|
15475
14329
|
'x-fern-sdk-method-name': string;
|
|
14330
|
+
'x-fern-sdk-return-value': string;
|
|
15476
14331
|
};
|
|
15477
14332
|
};
|
|
15478
14333
|
'/user_identities/enrollment_automations/list': {
|
|
@@ -15549,6 +14404,7 @@ declare const _default: {
|
|
|
15549
14404
|
tags: string[];
|
|
15550
14405
|
'x-fern-sdk-group-name': string[];
|
|
15551
14406
|
'x-fern-sdk-method-name': string;
|
|
14407
|
+
'x-fern-sdk-return-value': string;
|
|
15552
14408
|
};
|
|
15553
14409
|
};
|
|
15554
14410
|
'/user_identities/get': {
|
|
@@ -15592,45 +14448,7 @@ declare const _default: {
|
|
|
15592
14448
|
type: string;
|
|
15593
14449
|
};
|
|
15594
14450
|
user_identity: {
|
|
15595
|
-
|
|
15596
|
-
created_at: {
|
|
15597
|
-
format: string;
|
|
15598
|
-
type: string;
|
|
15599
|
-
};
|
|
15600
|
-
display_name: {
|
|
15601
|
-
minLength: number;
|
|
15602
|
-
type: string;
|
|
15603
|
-
};
|
|
15604
|
-
email_address: {
|
|
15605
|
-
format: string;
|
|
15606
|
-
nullable: boolean;
|
|
15607
|
-
type: string;
|
|
15608
|
-
};
|
|
15609
|
-
full_name: {
|
|
15610
|
-
minLength: number;
|
|
15611
|
-
nullable: boolean;
|
|
15612
|
-
type: string;
|
|
15613
|
-
};
|
|
15614
|
-
phone_number: {
|
|
15615
|
-
nullable: boolean;
|
|
15616
|
-
type: string;
|
|
15617
|
-
};
|
|
15618
|
-
user_identity_id: {
|
|
15619
|
-
format: string;
|
|
15620
|
-
type: string;
|
|
15621
|
-
};
|
|
15622
|
-
user_identity_key: {
|
|
15623
|
-
minLength: number;
|
|
15624
|
-
nullable: boolean;
|
|
15625
|
-
type: string;
|
|
15626
|
-
};
|
|
15627
|
-
workspace_id: {
|
|
15628
|
-
format: string;
|
|
15629
|
-
type: string;
|
|
15630
|
-
};
|
|
15631
|
-
};
|
|
15632
|
-
required: string[];
|
|
15633
|
-
type: string;
|
|
14451
|
+
$ref: string;
|
|
15634
14452
|
};
|
|
15635
14453
|
};
|
|
15636
14454
|
required: string[];
|
|
@@ -15664,6 +14482,7 @@ declare const _default: {
|
|
|
15664
14482
|
tags: string[];
|
|
15665
14483
|
'x-fern-sdk-group-name': string[];
|
|
15666
14484
|
'x-fern-sdk-method-name': string;
|
|
14485
|
+
'x-fern-sdk-return-value': string;
|
|
15667
14486
|
};
|
|
15668
14487
|
};
|
|
15669
14488
|
'/user_identities/grant_access_to_device': {
|
|
@@ -15824,45 +14643,7 @@ declare const _default: {
|
|
|
15824
14643
|
};
|
|
15825
14644
|
user_identities: {
|
|
15826
14645
|
items: {
|
|
15827
|
-
|
|
15828
|
-
created_at: {
|
|
15829
|
-
format: string;
|
|
15830
|
-
type: string;
|
|
15831
|
-
};
|
|
15832
|
-
display_name: {
|
|
15833
|
-
minLength: number;
|
|
15834
|
-
type: string;
|
|
15835
|
-
};
|
|
15836
|
-
email_address: {
|
|
15837
|
-
format: string;
|
|
15838
|
-
nullable: boolean;
|
|
15839
|
-
type: string;
|
|
15840
|
-
};
|
|
15841
|
-
full_name: {
|
|
15842
|
-
minLength: number;
|
|
15843
|
-
nullable: boolean;
|
|
15844
|
-
type: string;
|
|
15845
|
-
};
|
|
15846
|
-
phone_number: {
|
|
15847
|
-
nullable: boolean;
|
|
15848
|
-
type: string;
|
|
15849
|
-
};
|
|
15850
|
-
user_identity_id: {
|
|
15851
|
-
format: string;
|
|
15852
|
-
type: string;
|
|
15853
|
-
};
|
|
15854
|
-
user_identity_key: {
|
|
15855
|
-
minLength: number;
|
|
15856
|
-
nullable: boolean;
|
|
15857
|
-
type: string;
|
|
15858
|
-
};
|
|
15859
|
-
workspace_id: {
|
|
15860
|
-
format: string;
|
|
15861
|
-
type: string;
|
|
15862
|
-
};
|
|
15863
|
-
};
|
|
15864
|
-
required: string[];
|
|
15865
|
-
type: string;
|
|
14646
|
+
$ref: string;
|
|
15866
14647
|
};
|
|
15867
14648
|
type: string;
|
|
15868
14649
|
};
|
|
@@ -15935,6 +14716,13 @@ declare const _default: {
|
|
|
15935
14716
|
schema: {
|
|
15936
14717
|
properties: {
|
|
15937
14718
|
accessible_devices: {
|
|
14719
|
+
description: string;
|
|
14720
|
+
items: {
|
|
14721
|
+
$ref: string;
|
|
14722
|
+
};
|
|
14723
|
+
type: string;
|
|
14724
|
+
};
|
|
14725
|
+
devices: {
|
|
15938
14726
|
items: {
|
|
15939
14727
|
$ref: string;
|
|
15940
14728
|
};
|
|
@@ -15975,6 +14763,7 @@ declare const _default: {
|
|
|
15975
14763
|
tags: string[];
|
|
15976
14764
|
'x-fern-sdk-group-name': string[];
|
|
15977
14765
|
'x-fern-sdk-method-name': string;
|
|
14766
|
+
'x-fern-sdk-return-value': string;
|
|
15978
14767
|
};
|
|
15979
14768
|
};
|
|
15980
14769
|
'/user_identities/list_acs_systems': {
|
|
@@ -16051,6 +14840,7 @@ declare const _default: {
|
|
|
16051
14840
|
tags: string[];
|
|
16052
14841
|
'x-fern-sdk-group-name': string[];
|
|
16053
14842
|
'x-fern-sdk-method-name': string;
|
|
14843
|
+
'x-fern-sdk-return-value': string;
|
|
16054
14844
|
};
|
|
16055
14845
|
};
|
|
16056
14846
|
'/user_identities/list_acs_users': {
|
|
@@ -16119,6 +14909,7 @@ declare const _default: {
|
|
|
16119
14909
|
tags: string[];
|
|
16120
14910
|
'x-fern-sdk-group-name': string[];
|
|
16121
14911
|
'x-fern-sdk-method-name': string;
|
|
14912
|
+
'x-fern-sdk-return-value': string;
|
|
16122
14913
|
};
|
|
16123
14914
|
};
|
|
16124
14915
|
'/user_identities/remove_acs_user': {
|
|
@@ -16911,6 +15702,7 @@ declare const _default: {
|
|
|
16911
15702
|
tags: string[];
|
|
16912
15703
|
'x-fern-sdk-group-name': string[];
|
|
16913
15704
|
'x-fern-sdk-method-name': string;
|
|
15705
|
+
'x-fern-sdk-return-value': string;
|
|
16914
15706
|
};
|
|
16915
15707
|
};
|
|
16916
15708
|
'/workspaces/get': {
|
|
@@ -19036,9 +17828,19 @@ interface Routes {
|
|
|
19036
17828
|
url: string;
|
|
19037
17829
|
device_selection_mode: 'none' | 'single' | 'multiple';
|
|
19038
17830
|
accepted_providers: string[];
|
|
17831
|
+
/**
|
|
17832
|
+
---
|
|
17833
|
+
deprecated: Unused. Will be removed.
|
|
17834
|
+
---
|
|
17835
|
+
*/
|
|
19039
17836
|
accepted_devices: string[];
|
|
19040
|
-
|
|
17837
|
+
/**
|
|
17838
|
+
---
|
|
17839
|
+
deprecated: Unused. Will be removed.
|
|
17840
|
+
---
|
|
17841
|
+
*/
|
|
19041
17842
|
any_device_allowed: boolean;
|
|
17843
|
+
any_provider_allowed: boolean;
|
|
19042
17844
|
login_successful: boolean;
|
|
19043
17845
|
status: 'pending' | 'failed' | 'authorized';
|
|
19044
17846
|
custom_redirect_url: string | null;
|
|
@@ -19080,9 +17882,19 @@ interface Routes {
|
|
|
19080
17882
|
url: string;
|
|
19081
17883
|
device_selection_mode: 'none' | 'single' | 'multiple';
|
|
19082
17884
|
accepted_providers: string[];
|
|
17885
|
+
/**
|
|
17886
|
+
---
|
|
17887
|
+
deprecated: Unused. Will be removed.
|
|
17888
|
+
---
|
|
17889
|
+
*/
|
|
19083
17890
|
accepted_devices: string[];
|
|
19084
|
-
|
|
17891
|
+
/**
|
|
17892
|
+
---
|
|
17893
|
+
deprecated: Unused. Will be removed.
|
|
17894
|
+
---
|
|
17895
|
+
*/
|
|
19085
17896
|
any_device_allowed: boolean;
|
|
17897
|
+
any_provider_allowed: boolean;
|
|
19086
17898
|
login_successful: boolean;
|
|
19087
17899
|
status: 'pending' | 'failed' | 'authorized';
|
|
19088
17900
|
custom_redirect_url: string | null;
|
|
@@ -19115,9 +17927,19 @@ interface Routes {
|
|
|
19115
17927
|
url: string;
|
|
19116
17928
|
device_selection_mode: 'none' | 'single' | 'multiple';
|
|
19117
17929
|
accepted_providers: string[];
|
|
17930
|
+
/**
|
|
17931
|
+
---
|
|
17932
|
+
deprecated: Unused. Will be removed.
|
|
17933
|
+
---
|
|
17934
|
+
*/
|
|
19118
17935
|
accepted_devices: string[];
|
|
19119
|
-
|
|
17936
|
+
/**
|
|
17937
|
+
---
|
|
17938
|
+
deprecated: Unused. Will be removed.
|
|
17939
|
+
---
|
|
17940
|
+
*/
|
|
19120
17941
|
any_device_allowed: boolean;
|
|
17942
|
+
any_provider_allowed: boolean;
|
|
19121
17943
|
login_successful: boolean;
|
|
19122
17944
|
status: 'pending' | 'failed' | 'authorized';
|
|
19123
17945
|
custom_redirect_url: string | null;
|
|
@@ -24815,6 +23637,511 @@ interface Routes {
|
|
|
24815
23637
|
};
|
|
24816
23638
|
formData: {};
|
|
24817
23639
|
jsonResponse: {
|
|
23640
|
+
devices: Array<{
|
|
23641
|
+
/** Unique identifier for the device. */
|
|
23642
|
+
device_id: string;
|
|
23643
|
+
/** Type of the device. */
|
|
23644
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
|
|
23645
|
+
/** Optional nickname to describe the device, settable through Seam */
|
|
23646
|
+
nickname?: string | undefined;
|
|
23647
|
+
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
23648
|
+
display_name: string;
|
|
23649
|
+
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
23650
|
+
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
23651
|
+
/** Properties of the device. */
|
|
23652
|
+
properties: (({
|
|
23653
|
+
/** Indicates whether the device is online. */
|
|
23654
|
+
online: boolean;
|
|
23655
|
+
/**
|
|
23656
|
+
---
|
|
23657
|
+
deprecated: use device.display_name instead
|
|
23658
|
+
---
|
|
23659
|
+
Name of the device.
|
|
23660
|
+
*/
|
|
23661
|
+
name: string;
|
|
23662
|
+
/** Represents the accessory keypad state. */
|
|
23663
|
+
accessory_keypad?: {
|
|
23664
|
+
/** Indicates if the accessory_keypad is connected to the device. */
|
|
23665
|
+
is_connected: boolean;
|
|
23666
|
+
} | undefined;
|
|
23667
|
+
appearance: {
|
|
23668
|
+
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
23669
|
+
name: string;
|
|
23670
|
+
};
|
|
23671
|
+
model: {
|
|
23672
|
+
/** Indicates whether the device can connect a accessory keypad. */
|
|
23673
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
23674
|
+
/** Display name of the device model. */
|
|
23675
|
+
display_name: string;
|
|
23676
|
+
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
23677
|
+
manufacturer_display_name: string;
|
|
23678
|
+
/** Indicates whether the device has a built in accessory keypad. */
|
|
23679
|
+
has_built_in_keypad?: boolean | undefined;
|
|
23680
|
+
/** Indicates whether the device supports offline access codes. */
|
|
23681
|
+
offline_access_codes_supported?: boolean | undefined;
|
|
23682
|
+
/** Indicates whether the device supports online access codes. */
|
|
23683
|
+
online_access_codes_supported?: boolean | undefined;
|
|
23684
|
+
/** Indicates whether the device supports an accessory keypad. */
|
|
23685
|
+
accessory_keypad_supported?: boolean | undefined;
|
|
23686
|
+
};
|
|
23687
|
+
/** Indicates whether the device has direct power. */
|
|
23688
|
+
has_direct_power?: boolean | undefined;
|
|
23689
|
+
/** Indicates the battery level of the device as a decimal value between 0 and 1, inclusive. */
|
|
23690
|
+
battery_level?: number | undefined;
|
|
23691
|
+
/** Represents the current status of the battery charge level. Values are "critical," which indicates an extremely low level, suggesting imminent shutdown or an urgent need for charging; "low," which signifies that the battery is under the preferred threshold and should be charged soon; "good," which denotes a satisfactory charge level, adequate for normal use without the immediate need for recharging; and "full," which represents a battery that is fully charged, providing the maximum duration of usage. */
|
|
23692
|
+
battery?: {
|
|
23693
|
+
level: number;
|
|
23694
|
+
status: 'critical' | 'low' | 'good' | 'full';
|
|
23695
|
+
} | undefined;
|
|
23696
|
+
/** Manufacturer of the device. */
|
|
23697
|
+
manufacturer?: string | undefined;
|
|
23698
|
+
/** Image URL for the device. */
|
|
23699
|
+
image_url?: string | undefined;
|
|
23700
|
+
/** Alt text for the device image. */
|
|
23701
|
+
image_alt_text?: string | undefined;
|
|
23702
|
+
/** Serial number of the device. */
|
|
23703
|
+
serial_number?: string | undefined;
|
|
23704
|
+
/** Indicates whether it is currently possible to use online access codes for the device. */
|
|
23705
|
+
online_access_codes_enabled?: boolean | undefined;
|
|
23706
|
+
/** Indicates whether it is currently possible to use offline access codes for the device. */
|
|
23707
|
+
offline_access_codes_enabled?: boolean | undefined;
|
|
23708
|
+
/**
|
|
23709
|
+
---
|
|
23710
|
+
deprecated: use model.accessory_keypad_supported
|
|
23711
|
+
---
|
|
23712
|
+
*/
|
|
23713
|
+
supports_accessory_keypad?: boolean | undefined;
|
|
23714
|
+
/**
|
|
23715
|
+
---
|
|
23716
|
+
deprecated: use offline_access_codes_enabled
|
|
23717
|
+
---
|
|
23718
|
+
*/
|
|
23719
|
+
supports_offline_access_codes?: boolean | undefined;
|
|
23720
|
+
} & {
|
|
23721
|
+
assa_abloy_credential_service_metadata?: ({
|
|
23722
|
+
has_active_endpoint: boolean;
|
|
23723
|
+
endpoints: Array<{
|
|
23724
|
+
endpoint_id: string;
|
|
23725
|
+
is_active: boolean;
|
|
23726
|
+
}>;
|
|
23727
|
+
} | undefined) | undefined;
|
|
23728
|
+
}) & {
|
|
23729
|
+
august_metadata?: {
|
|
23730
|
+
lock_id: string;
|
|
23731
|
+
lock_name: string;
|
|
23732
|
+
house_name: string;
|
|
23733
|
+
has_keypad: boolean;
|
|
23734
|
+
keypad_battery_level?: string | undefined;
|
|
23735
|
+
model?: string | undefined;
|
|
23736
|
+
house_id?: string | undefined;
|
|
23737
|
+
} | undefined;
|
|
23738
|
+
avigilon_alta_metadata?: {
|
|
23739
|
+
entry_name: string;
|
|
23740
|
+
org_name: string;
|
|
23741
|
+
zone_id: number;
|
|
23742
|
+
zone_name: string;
|
|
23743
|
+
site_id: number;
|
|
23744
|
+
site_name: string;
|
|
23745
|
+
} | undefined;
|
|
23746
|
+
schlage_metadata?: {
|
|
23747
|
+
device_id: string;
|
|
23748
|
+
device_name: string;
|
|
23749
|
+
access_code_length: number | null;
|
|
23750
|
+
model?: string | undefined;
|
|
23751
|
+
} | undefined;
|
|
23752
|
+
smartthings_metadata?: {
|
|
23753
|
+
device_id: string;
|
|
23754
|
+
device_name: string;
|
|
23755
|
+
model?: string | undefined;
|
|
23756
|
+
location_id?: string | undefined;
|
|
23757
|
+
} | undefined;
|
|
23758
|
+
lockly_metadata?: {
|
|
23759
|
+
device_id: string;
|
|
23760
|
+
device_name: string;
|
|
23761
|
+
model?: string | undefined;
|
|
23762
|
+
} | undefined;
|
|
23763
|
+
nuki_metadata?: {
|
|
23764
|
+
device_id: string;
|
|
23765
|
+
device_name: string;
|
|
23766
|
+
keypad_battery_critical?: boolean | undefined;
|
|
23767
|
+
} | undefined;
|
|
23768
|
+
kwikset_metadata?: {
|
|
23769
|
+
device_id: string;
|
|
23770
|
+
device_name: string;
|
|
23771
|
+
model_number: string;
|
|
23772
|
+
} | undefined;
|
|
23773
|
+
salto_metadata?: {
|
|
23774
|
+
lock_id: string;
|
|
23775
|
+
customer_reference: string;
|
|
23776
|
+
lock_type: string;
|
|
23777
|
+
battery_level: string;
|
|
23778
|
+
locked_state: string;
|
|
23779
|
+
model?: string | undefined;
|
|
23780
|
+
} | undefined;
|
|
23781
|
+
genie_metadata?: {
|
|
23782
|
+
device_name: string;
|
|
23783
|
+
door_name: string;
|
|
23784
|
+
} | undefined;
|
|
23785
|
+
brivo_metadata?: {
|
|
23786
|
+
device_name: string;
|
|
23787
|
+
} | undefined;
|
|
23788
|
+
igloo_metadata?: {
|
|
23789
|
+
device_id: string;
|
|
23790
|
+
bridge_id: string;
|
|
23791
|
+
model?: string | undefined;
|
|
23792
|
+
} | undefined;
|
|
23793
|
+
noiseaware_metadata?: {
|
|
23794
|
+
device_model: 'indoor' | 'outdoor';
|
|
23795
|
+
noise_level_nrs: number;
|
|
23796
|
+
noise_level_decibel: number;
|
|
23797
|
+
device_name: string;
|
|
23798
|
+
device_id: string;
|
|
23799
|
+
} | undefined;
|
|
23800
|
+
minut_metadata?: {
|
|
23801
|
+
device_id: string;
|
|
23802
|
+
device_name: string;
|
|
23803
|
+
latest_sensor_values: {
|
|
23804
|
+
temperature: {
|
|
23805
|
+
time: string;
|
|
23806
|
+
value: number;
|
|
23807
|
+
};
|
|
23808
|
+
sound: {
|
|
23809
|
+
time: string;
|
|
23810
|
+
value: number;
|
|
23811
|
+
};
|
|
23812
|
+
humidity: {
|
|
23813
|
+
time: string;
|
|
23814
|
+
value: number;
|
|
23815
|
+
};
|
|
23816
|
+
pressure: {
|
|
23817
|
+
time: string;
|
|
23818
|
+
value: number;
|
|
23819
|
+
};
|
|
23820
|
+
accelerometer_z: {
|
|
23821
|
+
time: string;
|
|
23822
|
+
value: number;
|
|
23823
|
+
};
|
|
23824
|
+
};
|
|
23825
|
+
} | undefined;
|
|
23826
|
+
four_suites_metadata?: {
|
|
23827
|
+
device_id: number;
|
|
23828
|
+
device_name: string;
|
|
23829
|
+
reclose_delay_in_seconds: number;
|
|
23830
|
+
} | undefined;
|
|
23831
|
+
two_n_metadata?: {
|
|
23832
|
+
device_id: number;
|
|
23833
|
+
device_name: string;
|
|
23834
|
+
} | undefined;
|
|
23835
|
+
controlbyweb_metadata?: {
|
|
23836
|
+
device_id: string;
|
|
23837
|
+
device_name: string;
|
|
23838
|
+
relay_name: string | null;
|
|
23839
|
+
} | undefined;
|
|
23840
|
+
ttlock_metadata?: {
|
|
23841
|
+
lock_id: number;
|
|
23842
|
+
lock_alias: string;
|
|
23843
|
+
} | undefined;
|
|
23844
|
+
seam_bridge_metadata?: {
|
|
23845
|
+
unlock_method?: ('bridge' | 'doorking') | undefined;
|
|
23846
|
+
device_num: number;
|
|
23847
|
+
name: string;
|
|
23848
|
+
} | undefined;
|
|
23849
|
+
igloohome_metadata?: {
|
|
23850
|
+
device_id: string;
|
|
23851
|
+
device_name: string;
|
|
23852
|
+
bridge_id?: string | undefined;
|
|
23853
|
+
bridge_name?: string | undefined;
|
|
23854
|
+
} | undefined;
|
|
23855
|
+
nest_metadata?: {
|
|
23856
|
+
nest_device_id: string;
|
|
23857
|
+
device_name: string;
|
|
23858
|
+
custom_name: string;
|
|
23859
|
+
} | undefined;
|
|
23860
|
+
ecobee_metadata?: {
|
|
23861
|
+
ecobee_device_id: string;
|
|
23862
|
+
device_name: string;
|
|
23863
|
+
} | undefined;
|
|
23864
|
+
honeywell_resideo_metadata?: {
|
|
23865
|
+
honeywell_resideo_device_id: string;
|
|
23866
|
+
device_name: string;
|
|
23867
|
+
} | undefined;
|
|
23868
|
+
hubitat_metadata?: {
|
|
23869
|
+
device_id: string;
|
|
23870
|
+
device_name: string;
|
|
23871
|
+
device_label: string;
|
|
23872
|
+
} | undefined;
|
|
23873
|
+
dormakaba_oracode_metadata?: {
|
|
23874
|
+
door_id: number;
|
|
23875
|
+
door_name: string;
|
|
23876
|
+
device_id?: number | undefined;
|
|
23877
|
+
site_id: number;
|
|
23878
|
+
site_name: string;
|
|
23879
|
+
iana_timezone?: string | undefined;
|
|
23880
|
+
predefined_time_slots?: Array<{
|
|
23881
|
+
name: string;
|
|
23882
|
+
prefix: number;
|
|
23883
|
+
check_in_time: string;
|
|
23884
|
+
check_out_time: string;
|
|
23885
|
+
is_24_hour: boolean;
|
|
23886
|
+
is_biweekly_mode: boolean;
|
|
23887
|
+
is_one_shot: boolean;
|
|
23888
|
+
is_master: boolean;
|
|
23889
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
23890
|
+
dormakaba_oracode_user_level_id: string;
|
|
23891
|
+
}> | undefined;
|
|
23892
|
+
} | undefined;
|
|
23893
|
+
wyze_metadata?: {
|
|
23894
|
+
device_id: string;
|
|
23895
|
+
device_name: string;
|
|
23896
|
+
product_name: string;
|
|
23897
|
+
product_type: string;
|
|
23898
|
+
product_model: string;
|
|
23899
|
+
device_info_model: string;
|
|
23900
|
+
} | undefined;
|
|
23901
|
+
tedee_metadata?: {
|
|
23902
|
+
device_id: number;
|
|
23903
|
+
serial_number: string;
|
|
23904
|
+
device_name: string;
|
|
23905
|
+
device_model: string;
|
|
23906
|
+
bridge_id: number;
|
|
23907
|
+
bridge_name: string;
|
|
23908
|
+
keypad_id?: number | undefined;
|
|
23909
|
+
} | undefined;
|
|
23910
|
+
}) & ({
|
|
23911
|
+
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
23912
|
+
code_constraints?: (Array<{
|
|
23913
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits';
|
|
23914
|
+
} | {
|
|
23915
|
+
constraint_type: 'name_length';
|
|
23916
|
+
min_length?: number | undefined;
|
|
23917
|
+
max_length?: number | undefined;
|
|
23918
|
+
}> | undefined) | undefined;
|
|
23919
|
+
supported_code_lengths?: (number[] | undefined) | undefined;
|
|
23920
|
+
max_active_codes_supported?: (number | undefined) | undefined;
|
|
23921
|
+
supports_backup_access_code_pool?: (boolean | undefined) | undefined;
|
|
23922
|
+
has_native_entry_events?: (boolean | undefined) | undefined;
|
|
23923
|
+
locked?: (boolean | undefined) | undefined;
|
|
23924
|
+
keypad_battery?: ({
|
|
23925
|
+
level: number;
|
|
23926
|
+
} | undefined) | undefined;
|
|
23927
|
+
door_open?: (boolean | undefined) | undefined;
|
|
23928
|
+
} & ({
|
|
23929
|
+
temperature_fahrenheit?: number | undefined;
|
|
23930
|
+
temperature_celsius?: number | undefined;
|
|
23931
|
+
relative_humidity?: number | undefined;
|
|
23932
|
+
can_enable_automatic_heating?: boolean | undefined;
|
|
23933
|
+
can_enable_automatic_cooling?: boolean | undefined;
|
|
23934
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
23935
|
+
is_heating_available?: true | undefined;
|
|
23936
|
+
is_cooling_available?: true | undefined;
|
|
23937
|
+
is_heating?: boolean | undefined;
|
|
23938
|
+
is_cooling?: boolean | undefined;
|
|
23939
|
+
is_fan_running?: boolean | undefined;
|
|
23940
|
+
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
23941
|
+
is_temporary_manual_override_active?: boolean | undefined;
|
|
23942
|
+
current_climate_setting?: {
|
|
23943
|
+
automatic_heating_enabled: boolean;
|
|
23944
|
+
automatic_cooling_enabled: boolean;
|
|
23945
|
+
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
23946
|
+
cooling_set_point_celsius?: number | undefined;
|
|
23947
|
+
heating_set_point_celsius?: number | undefined;
|
|
23948
|
+
cooling_set_point_fahrenheit?: number | undefined;
|
|
23949
|
+
heating_set_point_fahrenheit?: number | undefined;
|
|
23950
|
+
manual_override_allowed: boolean;
|
|
23951
|
+
} | undefined;
|
|
23952
|
+
default_climate_setting?: ({
|
|
23953
|
+
automatic_heating_enabled: boolean;
|
|
23954
|
+
automatic_cooling_enabled: boolean;
|
|
23955
|
+
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
23956
|
+
cooling_set_point_celsius?: number | undefined;
|
|
23957
|
+
heating_set_point_celsius?: number | undefined;
|
|
23958
|
+
cooling_set_point_fahrenheit?: number | undefined;
|
|
23959
|
+
heating_set_point_fahrenheit?: number | undefined;
|
|
23960
|
+
manual_override_allowed: boolean;
|
|
23961
|
+
} | undefined) | undefined;
|
|
23962
|
+
is_climate_setting_schedule_active?: boolean | undefined;
|
|
23963
|
+
active_climate_setting_schedule?: ({
|
|
23964
|
+
climate_setting_schedule_id: string;
|
|
23965
|
+
schedule_type: 'time_bound';
|
|
23966
|
+
device_id: string;
|
|
23967
|
+
name?: string | undefined;
|
|
23968
|
+
schedule_starts_at: string;
|
|
23969
|
+
schedule_ends_at: string;
|
|
23970
|
+
created_at: string;
|
|
23971
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
23972
|
+
errors?: any;
|
|
23973
|
+
automatic_heating_enabled?: boolean | undefined;
|
|
23974
|
+
automatic_cooling_enabled?: boolean | undefined;
|
|
23975
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
23976
|
+
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
23977
|
+
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
23978
|
+
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
23979
|
+
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
23980
|
+
manual_override_allowed?: boolean | undefined;
|
|
23981
|
+
} | undefined) | undefined;
|
|
23982
|
+
min_cooling_set_point_celsius?: number | undefined;
|
|
23983
|
+
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
23984
|
+
max_cooling_set_point_celsius?: number | undefined;
|
|
23985
|
+
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
23986
|
+
min_heating_set_point_celsius?: number | undefined;
|
|
23987
|
+
min_heating_set_point_fahrenheit?: number | undefined;
|
|
23988
|
+
max_heating_set_point_celsius?: number | undefined;
|
|
23989
|
+
max_heating_set_point_fahrenheit?: number | undefined;
|
|
23990
|
+
min_heating_cooling_delta_celsius?: number | undefined;
|
|
23991
|
+
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
23992
|
+
} | {
|
|
23993
|
+
temperature_fahrenheit?: number | undefined;
|
|
23994
|
+
temperature_celsius?: number | undefined;
|
|
23995
|
+
relative_humidity?: number | undefined;
|
|
23996
|
+
can_enable_automatic_heating?: boolean | undefined;
|
|
23997
|
+
can_enable_automatic_cooling?: boolean | undefined;
|
|
23998
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
23999
|
+
is_heating_available?: true | undefined;
|
|
24000
|
+
is_cooling_available?: false | undefined;
|
|
24001
|
+
is_heating?: boolean | undefined;
|
|
24002
|
+
is_cooling?: boolean | undefined;
|
|
24003
|
+
is_fan_running?: boolean | undefined;
|
|
24004
|
+
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
24005
|
+
is_temporary_manual_override_active?: boolean | undefined;
|
|
24006
|
+
current_climate_setting?: {
|
|
24007
|
+
automatic_heating_enabled: boolean;
|
|
24008
|
+
automatic_cooling_enabled: boolean;
|
|
24009
|
+
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
24010
|
+
cooling_set_point_celsius?: number | undefined;
|
|
24011
|
+
heating_set_point_celsius?: number | undefined;
|
|
24012
|
+
cooling_set_point_fahrenheit?: number | undefined;
|
|
24013
|
+
heating_set_point_fahrenheit?: number | undefined;
|
|
24014
|
+
manual_override_allowed: boolean;
|
|
24015
|
+
} | undefined;
|
|
24016
|
+
default_climate_setting?: ({
|
|
24017
|
+
automatic_heating_enabled: boolean;
|
|
24018
|
+
automatic_cooling_enabled: boolean;
|
|
24019
|
+
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
24020
|
+
cooling_set_point_celsius?: number | undefined;
|
|
24021
|
+
heating_set_point_celsius?: number | undefined;
|
|
24022
|
+
cooling_set_point_fahrenheit?: number | undefined;
|
|
24023
|
+
heating_set_point_fahrenheit?: number | undefined;
|
|
24024
|
+
manual_override_allowed: boolean;
|
|
24025
|
+
} | undefined) | undefined;
|
|
24026
|
+
is_climate_setting_schedule_active?: boolean | undefined;
|
|
24027
|
+
active_climate_setting_schedule?: ({
|
|
24028
|
+
climate_setting_schedule_id: string;
|
|
24029
|
+
schedule_type: 'time_bound';
|
|
24030
|
+
device_id: string;
|
|
24031
|
+
name?: string | undefined;
|
|
24032
|
+
schedule_starts_at: string;
|
|
24033
|
+
schedule_ends_at: string;
|
|
24034
|
+
created_at: string;
|
|
24035
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
24036
|
+
errors?: any;
|
|
24037
|
+
automatic_heating_enabled?: boolean | undefined;
|
|
24038
|
+
automatic_cooling_enabled?: boolean | undefined;
|
|
24039
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
24040
|
+
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
24041
|
+
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
24042
|
+
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
24043
|
+
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
24044
|
+
manual_override_allowed?: boolean | undefined;
|
|
24045
|
+
} | undefined) | undefined;
|
|
24046
|
+
min_heating_set_point_celsius?: number | undefined;
|
|
24047
|
+
min_heating_set_point_fahrenheit?: number | undefined;
|
|
24048
|
+
max_heating_set_point_celsius?: number | undefined;
|
|
24049
|
+
max_heating_set_point_fahrenheit?: number | undefined;
|
|
24050
|
+
} | {
|
|
24051
|
+
temperature_fahrenheit?: number | undefined;
|
|
24052
|
+
temperature_celsius?: number | undefined;
|
|
24053
|
+
relative_humidity?: number | undefined;
|
|
24054
|
+
can_enable_automatic_heating?: boolean | undefined;
|
|
24055
|
+
can_enable_automatic_cooling?: boolean | undefined;
|
|
24056
|
+
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
24057
|
+
is_heating_available?: false | undefined;
|
|
24058
|
+
is_cooling_available?: true | undefined;
|
|
24059
|
+
is_heating?: boolean | undefined;
|
|
24060
|
+
is_cooling?: boolean | undefined;
|
|
24061
|
+
is_fan_running?: boolean | undefined;
|
|
24062
|
+
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
24063
|
+
is_temporary_manual_override_active?: boolean | undefined;
|
|
24064
|
+
current_climate_setting?: {
|
|
24065
|
+
automatic_heating_enabled: boolean;
|
|
24066
|
+
automatic_cooling_enabled: boolean;
|
|
24067
|
+
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
24068
|
+
cooling_set_point_celsius?: number | undefined;
|
|
24069
|
+
heating_set_point_celsius?: number | undefined;
|
|
24070
|
+
cooling_set_point_fahrenheit?: number | undefined;
|
|
24071
|
+
heating_set_point_fahrenheit?: number | undefined;
|
|
24072
|
+
manual_override_allowed: boolean;
|
|
24073
|
+
} | undefined;
|
|
24074
|
+
default_climate_setting?: ({
|
|
24075
|
+
automatic_heating_enabled: boolean;
|
|
24076
|
+
automatic_cooling_enabled: boolean;
|
|
24077
|
+
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
24078
|
+
cooling_set_point_celsius?: number | undefined;
|
|
24079
|
+
heating_set_point_celsius?: number | undefined;
|
|
24080
|
+
cooling_set_point_fahrenheit?: number | undefined;
|
|
24081
|
+
heating_set_point_fahrenheit?: number | undefined;
|
|
24082
|
+
manual_override_allowed: boolean;
|
|
24083
|
+
} | undefined) | undefined;
|
|
24084
|
+
is_climate_setting_schedule_active?: boolean | undefined;
|
|
24085
|
+
active_climate_setting_schedule?: ({
|
|
24086
|
+
climate_setting_schedule_id: string;
|
|
24087
|
+
schedule_type: 'time_bound';
|
|
24088
|
+
device_id: string;
|
|
24089
|
+
name?: string | undefined;
|
|
24090
|
+
schedule_starts_at: string;
|
|
24091
|
+
schedule_ends_at: string;
|
|
24092
|
+
created_at: string;
|
|
24093
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
24094
|
+
errors?: any;
|
|
24095
|
+
automatic_heating_enabled?: boolean | undefined;
|
|
24096
|
+
automatic_cooling_enabled?: boolean | undefined;
|
|
24097
|
+
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
24098
|
+
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
24099
|
+
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
24100
|
+
cooling_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
24101
|
+
heating_set_point_fahrenheit?: (number | undefined) | undefined;
|
|
24102
|
+
manual_override_allowed?: boolean | undefined;
|
|
24103
|
+
} | undefined) | undefined;
|
|
24104
|
+
min_cooling_set_point_celsius?: number | undefined;
|
|
24105
|
+
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
24106
|
+
max_cooling_set_point_celsius?: number | undefined;
|
|
24107
|
+
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
24108
|
+
}));
|
|
24109
|
+
/** Location information for the device. */
|
|
24110
|
+
location: {
|
|
24111
|
+
/** Name of the device location. */
|
|
24112
|
+
location_name?: string | undefined;
|
|
24113
|
+
/** Time zone of the device location. */
|
|
24114
|
+
timezone?: string | undefined;
|
|
24115
|
+
} | null;
|
|
24116
|
+
/** Unique identifier for the account associated with the device. */
|
|
24117
|
+
connected_account_id: string;
|
|
24118
|
+
/** Unique identifier for the Seam workspace associated with the device. */
|
|
24119
|
+
workspace_id: string;
|
|
24120
|
+
/** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
24121
|
+
errors: Array<{
|
|
24122
|
+
error_code: string;
|
|
24123
|
+
message: string;
|
|
24124
|
+
}>;
|
|
24125
|
+
/** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
24126
|
+
warnings: Array<{
|
|
24127
|
+
warning_code: string;
|
|
24128
|
+
message: string;
|
|
24129
|
+
}>;
|
|
24130
|
+
/** Date and time at which the device object was created. */
|
|
24131
|
+
created_at: string;
|
|
24132
|
+
/** Indicates whether Seam manages the device. */
|
|
24133
|
+
is_managed: true;
|
|
24134
|
+
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
24135
|
+
can_remotely_unlock?: boolean | undefined;
|
|
24136
|
+
can_remotely_lock?: boolean | undefined;
|
|
24137
|
+
can_program_online_access_codes?: boolean | undefined;
|
|
24138
|
+
can_simulate_removal?: boolean | undefined;
|
|
24139
|
+
}>;
|
|
24140
|
+
/**
|
|
24141
|
+
---
|
|
24142
|
+
deprecated: use devices.
|
|
24143
|
+
---
|
|
24144
|
+
*/
|
|
24818
24145
|
accessible_devices: Array<{
|
|
24819
24146
|
/** Unique identifier for the device. */
|
|
24820
24147
|
device_id: string;
|