@seamapi/types 1.657.0 → 1.659.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +152 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +476 -0
- package/dist/index.cjs +152 -9
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +5 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.d.ts +3 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.js +3 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +7 -0
- package/lib/seam/connect/models/batch.js +7 -4
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +20 -0
- package/lib/seam/connect/openapi.d.ts +191 -0
- package/lib/seam/connect/openapi.js +135 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +273 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/metadata/salto-space.ts +5 -0
- package/src/lib/seam/connect/models/batch.ts +35 -32
- package/src/lib/seam/connect/openapi.ts +137 -0
- package/src/lib/seam/connect/route-types.ts +273 -0
package/dist/connect.d.cts
CHANGED
|
@@ -4724,6 +4724,7 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4724
4724
|
door_id: z.ZodOptional<z.ZodString>;
|
|
4725
4725
|
door_name: z.ZodOptional<z.ZodString>;
|
|
4726
4726
|
door_description: z.ZodOptional<z.ZodString>;
|
|
4727
|
+
audit_on_keys: z.ZodOptional<z.ZodBoolean>;
|
|
4727
4728
|
room_name: z.ZodOptional<z.ZodString>;
|
|
4728
4729
|
room_description: z.ZodOptional<z.ZodString>;
|
|
4729
4730
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4731,6 +4732,7 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4731
4732
|
door_id?: string | undefined;
|
|
4732
4733
|
ext_door_id?: string | undefined;
|
|
4733
4734
|
door_description?: string | undefined;
|
|
4735
|
+
audit_on_keys?: boolean | undefined;
|
|
4734
4736
|
room_name?: string | undefined;
|
|
4735
4737
|
room_description?: string | undefined;
|
|
4736
4738
|
}, {
|
|
@@ -4738,6 +4740,7 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4738
4740
|
door_id?: string | undefined;
|
|
4739
4741
|
ext_door_id?: string | undefined;
|
|
4740
4742
|
door_description?: string | undefined;
|
|
4743
|
+
audit_on_keys?: boolean | undefined;
|
|
4741
4744
|
room_name?: string | undefined;
|
|
4742
4745
|
room_description?: string | undefined;
|
|
4743
4746
|
}>>;
|
|
@@ -4812,6 +4815,7 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4812
4815
|
door_id?: string | undefined;
|
|
4813
4816
|
ext_door_id?: string | undefined;
|
|
4814
4817
|
door_description?: string | undefined;
|
|
4818
|
+
audit_on_keys?: boolean | undefined;
|
|
4815
4819
|
room_name?: string | undefined;
|
|
4816
4820
|
room_description?: string | undefined;
|
|
4817
4821
|
} | undefined;
|
|
@@ -4877,6 +4881,7 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4877
4881
|
door_id?: string | undefined;
|
|
4878
4882
|
ext_door_id?: string | undefined;
|
|
4879
4883
|
door_description?: string | undefined;
|
|
4884
|
+
audit_on_keys?: boolean | undefined;
|
|
4880
4885
|
room_name?: string | undefined;
|
|
4881
4886
|
room_description?: string | undefined;
|
|
4882
4887
|
} | undefined;
|
|
@@ -15268,6 +15273,7 @@ declare const batch: z.ZodObject<{
|
|
|
15268
15273
|
door_id: z.ZodOptional<z.ZodString>;
|
|
15269
15274
|
door_name: z.ZodOptional<z.ZodString>;
|
|
15270
15275
|
door_description: z.ZodOptional<z.ZodString>;
|
|
15276
|
+
audit_on_keys: z.ZodOptional<z.ZodBoolean>;
|
|
15271
15277
|
room_name: z.ZodOptional<z.ZodString>;
|
|
15272
15278
|
room_description: z.ZodOptional<z.ZodString>;
|
|
15273
15279
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -15275,6 +15281,7 @@ declare const batch: z.ZodObject<{
|
|
|
15275
15281
|
door_id?: string | undefined;
|
|
15276
15282
|
ext_door_id?: string | undefined;
|
|
15277
15283
|
door_description?: string | undefined;
|
|
15284
|
+
audit_on_keys?: boolean | undefined;
|
|
15278
15285
|
room_name?: string | undefined;
|
|
15279
15286
|
room_description?: string | undefined;
|
|
15280
15287
|
}, {
|
|
@@ -15282,6 +15289,7 @@ declare const batch: z.ZodObject<{
|
|
|
15282
15289
|
door_id?: string | undefined;
|
|
15283
15290
|
ext_door_id?: string | undefined;
|
|
15284
15291
|
door_description?: string | undefined;
|
|
15292
|
+
audit_on_keys?: boolean | undefined;
|
|
15285
15293
|
room_name?: string | undefined;
|
|
15286
15294
|
room_description?: string | undefined;
|
|
15287
15295
|
}>>;
|
|
@@ -15356,6 +15364,7 @@ declare const batch: z.ZodObject<{
|
|
|
15356
15364
|
door_id?: string | undefined;
|
|
15357
15365
|
ext_door_id?: string | undefined;
|
|
15358
15366
|
door_description?: string | undefined;
|
|
15367
|
+
audit_on_keys?: boolean | undefined;
|
|
15359
15368
|
room_name?: string | undefined;
|
|
15360
15369
|
room_description?: string | undefined;
|
|
15361
15370
|
} | undefined;
|
|
@@ -15421,6 +15430,7 @@ declare const batch: z.ZodObject<{
|
|
|
15421
15430
|
door_id?: string | undefined;
|
|
15422
15431
|
ext_door_id?: string | undefined;
|
|
15423
15432
|
door_description?: string | undefined;
|
|
15433
|
+
audit_on_keys?: boolean | undefined;
|
|
15424
15434
|
room_name?: string | undefined;
|
|
15425
15435
|
room_description?: string | undefined;
|
|
15426
15436
|
} | undefined;
|
|
@@ -32563,6 +32573,7 @@ declare const batch: z.ZodObject<{
|
|
|
32563
32573
|
door_id?: string | undefined;
|
|
32564
32574
|
ext_door_id?: string | undefined;
|
|
32565
32575
|
door_description?: string | undefined;
|
|
32576
|
+
audit_on_keys?: boolean | undefined;
|
|
32566
32577
|
room_name?: string | undefined;
|
|
32567
32578
|
room_description?: string | undefined;
|
|
32568
32579
|
} | undefined;
|
|
@@ -36587,6 +36598,7 @@ declare const batch: z.ZodObject<{
|
|
|
36587
36598
|
door_id?: string | undefined;
|
|
36588
36599
|
ext_door_id?: string | undefined;
|
|
36589
36600
|
door_description?: string | undefined;
|
|
36601
|
+
audit_on_keys?: boolean | undefined;
|
|
36590
36602
|
room_name?: string | undefined;
|
|
36591
36603
|
room_description?: string | undefined;
|
|
36592
36604
|
} | undefined;
|
|
@@ -53919,6 +53931,10 @@ declare const _default: {
|
|
|
53919
53931
|
salto_space_metadata: {
|
|
53920
53932
|
description: string;
|
|
53921
53933
|
properties: {
|
|
53934
|
+
audit_on_keys: {
|
|
53935
|
+
description: string;
|
|
53936
|
+
type: string;
|
|
53937
|
+
};
|
|
53922
53938
|
door_description: {
|
|
53923
53939
|
description: string;
|
|
53924
53940
|
type: string;
|
|
@@ -56346,6 +56362,181 @@ declare const _default: {
|
|
|
56346
56362
|
})[];
|
|
56347
56363
|
'x-route-path': string;
|
|
56348
56364
|
};
|
|
56365
|
+
batch: {
|
|
56366
|
+
description: string;
|
|
56367
|
+
properties: {
|
|
56368
|
+
access_codes: {
|
|
56369
|
+
items: {
|
|
56370
|
+
$ref: string;
|
|
56371
|
+
};
|
|
56372
|
+
type: string;
|
|
56373
|
+
};
|
|
56374
|
+
access_grants: {
|
|
56375
|
+
items: {
|
|
56376
|
+
$ref: string;
|
|
56377
|
+
};
|
|
56378
|
+
type: string;
|
|
56379
|
+
};
|
|
56380
|
+
access_methods: {
|
|
56381
|
+
items: {
|
|
56382
|
+
$ref: string;
|
|
56383
|
+
};
|
|
56384
|
+
type: string;
|
|
56385
|
+
};
|
|
56386
|
+
acs_access_groups: {
|
|
56387
|
+
items: {
|
|
56388
|
+
$ref: string;
|
|
56389
|
+
};
|
|
56390
|
+
type: string;
|
|
56391
|
+
};
|
|
56392
|
+
acs_credentials: {
|
|
56393
|
+
items: {
|
|
56394
|
+
$ref: string;
|
|
56395
|
+
};
|
|
56396
|
+
type: string;
|
|
56397
|
+
};
|
|
56398
|
+
acs_encoders: {
|
|
56399
|
+
items: {
|
|
56400
|
+
$ref: string;
|
|
56401
|
+
};
|
|
56402
|
+
type: string;
|
|
56403
|
+
};
|
|
56404
|
+
acs_entrances: {
|
|
56405
|
+
items: {
|
|
56406
|
+
$ref: string;
|
|
56407
|
+
};
|
|
56408
|
+
type: string;
|
|
56409
|
+
};
|
|
56410
|
+
acs_systems: {
|
|
56411
|
+
items: {
|
|
56412
|
+
$ref: string;
|
|
56413
|
+
};
|
|
56414
|
+
type: string;
|
|
56415
|
+
};
|
|
56416
|
+
acs_users: {
|
|
56417
|
+
items: {
|
|
56418
|
+
$ref: string;
|
|
56419
|
+
};
|
|
56420
|
+
type: string;
|
|
56421
|
+
};
|
|
56422
|
+
action_attempts: {
|
|
56423
|
+
items: {
|
|
56424
|
+
$ref: string;
|
|
56425
|
+
};
|
|
56426
|
+
type: string;
|
|
56427
|
+
};
|
|
56428
|
+
client_sessions: {
|
|
56429
|
+
items: {
|
|
56430
|
+
$ref: string;
|
|
56431
|
+
};
|
|
56432
|
+
type: string;
|
|
56433
|
+
};
|
|
56434
|
+
connect_webviews: {
|
|
56435
|
+
items: {
|
|
56436
|
+
$ref: string;
|
|
56437
|
+
};
|
|
56438
|
+
type: string;
|
|
56439
|
+
};
|
|
56440
|
+
connected_accounts: {
|
|
56441
|
+
items: {
|
|
56442
|
+
$ref: string;
|
|
56443
|
+
};
|
|
56444
|
+
type: string;
|
|
56445
|
+
};
|
|
56446
|
+
customization_profiles: {
|
|
56447
|
+
items: {
|
|
56448
|
+
$ref: string;
|
|
56449
|
+
};
|
|
56450
|
+
type: string;
|
|
56451
|
+
};
|
|
56452
|
+
devices: {
|
|
56453
|
+
items: {
|
|
56454
|
+
$ref: string;
|
|
56455
|
+
};
|
|
56456
|
+
type: string;
|
|
56457
|
+
};
|
|
56458
|
+
events: {
|
|
56459
|
+
items: {
|
|
56460
|
+
$ref: string;
|
|
56461
|
+
};
|
|
56462
|
+
type: string;
|
|
56463
|
+
};
|
|
56464
|
+
instant_keys: {
|
|
56465
|
+
items: {
|
|
56466
|
+
$ref: string;
|
|
56467
|
+
};
|
|
56468
|
+
type: string;
|
|
56469
|
+
};
|
|
56470
|
+
noise_thresholds: {
|
|
56471
|
+
items: {
|
|
56472
|
+
$ref: string;
|
|
56473
|
+
};
|
|
56474
|
+
type: string;
|
|
56475
|
+
};
|
|
56476
|
+
spaces: {
|
|
56477
|
+
items: {
|
|
56478
|
+
$ref: string;
|
|
56479
|
+
};
|
|
56480
|
+
type: string;
|
|
56481
|
+
};
|
|
56482
|
+
thermostat_daily_programs: {
|
|
56483
|
+
items: {
|
|
56484
|
+
$ref: string;
|
|
56485
|
+
};
|
|
56486
|
+
type: string;
|
|
56487
|
+
};
|
|
56488
|
+
thermostat_schedules: {
|
|
56489
|
+
items: {
|
|
56490
|
+
$ref: string;
|
|
56491
|
+
};
|
|
56492
|
+
type: string;
|
|
56493
|
+
};
|
|
56494
|
+
unmanaged_access_codes: {
|
|
56495
|
+
items: {
|
|
56496
|
+
$ref: string;
|
|
56497
|
+
};
|
|
56498
|
+
type: string;
|
|
56499
|
+
};
|
|
56500
|
+
unmanaged_acs_access_groups: {
|
|
56501
|
+
items: {
|
|
56502
|
+
$ref: string;
|
|
56503
|
+
};
|
|
56504
|
+
type: string;
|
|
56505
|
+
};
|
|
56506
|
+
unmanaged_acs_credentials: {
|
|
56507
|
+
items: {
|
|
56508
|
+
$ref: string;
|
|
56509
|
+
};
|
|
56510
|
+
type: string;
|
|
56511
|
+
};
|
|
56512
|
+
unmanaged_acs_users: {
|
|
56513
|
+
items: {
|
|
56514
|
+
$ref: string;
|
|
56515
|
+
};
|
|
56516
|
+
type: string;
|
|
56517
|
+
};
|
|
56518
|
+
unmanaged_devices: {
|
|
56519
|
+
items: {
|
|
56520
|
+
$ref: string;
|
|
56521
|
+
};
|
|
56522
|
+
type: string;
|
|
56523
|
+
};
|
|
56524
|
+
user_identities: {
|
|
56525
|
+
items: {
|
|
56526
|
+
$ref: string;
|
|
56527
|
+
};
|
|
56528
|
+
type: string;
|
|
56529
|
+
};
|
|
56530
|
+
workspaces: {
|
|
56531
|
+
items: {
|
|
56532
|
+
$ref: string;
|
|
56533
|
+
};
|
|
56534
|
+
type: string;
|
|
56535
|
+
};
|
|
56536
|
+
};
|
|
56537
|
+
type: string;
|
|
56538
|
+
'x-route-path': string;
|
|
56539
|
+
};
|
|
56349
56540
|
bridge_client_session: {
|
|
56350
56541
|
description: string;
|
|
56351
56542
|
properties: {
|
|
@@ -64627,6 +64818,10 @@ declare const _default: {
|
|
|
64627
64818
|
salto_space_metadata: {
|
|
64628
64819
|
description: string;
|
|
64629
64820
|
properties: {
|
|
64821
|
+
audit_on_keys: {
|
|
64822
|
+
description: string;
|
|
64823
|
+
type: string;
|
|
64824
|
+
};
|
|
64630
64825
|
door_description: {
|
|
64631
64826
|
description: string;
|
|
64632
64827
|
type: string;
|
|
@@ -71209,6 +71404,7 @@ declare const _default: {
|
|
|
71209
71404
|
};
|
|
71210
71405
|
};
|
|
71211
71406
|
type: string;
|
|
71407
|
+
'x-route-path': string;
|
|
71212
71408
|
};
|
|
71213
71409
|
ok: {
|
|
71214
71410
|
type: string;
|
|
@@ -71341,6 +71537,7 @@ declare const _default: {
|
|
|
71341
71537
|
};
|
|
71342
71538
|
};
|
|
71343
71539
|
type: string;
|
|
71540
|
+
'x-route-path': string;
|
|
71344
71541
|
};
|
|
71345
71542
|
ok: {
|
|
71346
71543
|
type: string;
|
|
@@ -73368,6 +73565,7 @@ declare const _default: {
|
|
|
73368
73565
|
};
|
|
73369
73566
|
};
|
|
73370
73567
|
type: string;
|
|
73568
|
+
'x-route-path': string;
|
|
73371
73569
|
};
|
|
73372
73570
|
ok: {
|
|
73373
73571
|
type: string;
|
|
@@ -73514,6 +73712,7 @@ declare const _default: {
|
|
|
73514
73712
|
};
|
|
73515
73713
|
};
|
|
73516
73714
|
type: string;
|
|
73715
|
+
'x-route-path': string;
|
|
73517
73716
|
};
|
|
73518
73717
|
ok: {
|
|
73519
73718
|
type: string;
|
|
@@ -101277,6 +101476,7 @@ declare const _default: {
|
|
|
101277
101476
|
};
|
|
101278
101477
|
};
|
|
101279
101478
|
type: string;
|
|
101479
|
+
'x-route-path': string;
|
|
101280
101480
|
};
|
|
101281
101481
|
ok: {
|
|
101282
101482
|
type: string;
|
|
@@ -101411,6 +101611,7 @@ declare const _default: {
|
|
|
101411
101611
|
};
|
|
101412
101612
|
};
|
|
101413
101613
|
type: string;
|
|
101614
|
+
'x-route-path': string;
|
|
101414
101615
|
};
|
|
101415
101616
|
ok: {
|
|
101416
101617
|
type: string;
|
|
@@ -111326,6 +111527,7 @@ declare const _default: {
|
|
|
111326
111527
|
};
|
|
111327
111528
|
};
|
|
111328
111529
|
type: string;
|
|
111530
|
+
'x-route-path': string;
|
|
111329
111531
|
};
|
|
111330
111532
|
ok: {
|
|
111331
111533
|
type: string;
|
|
@@ -111566,6 +111768,7 @@ declare const _default: {
|
|
|
111566
111768
|
};
|
|
111567
111769
|
};
|
|
111568
111770
|
type: string;
|
|
111771
|
+
'x-route-path': string;
|
|
111569
111772
|
};
|
|
111570
111773
|
ok: {
|
|
111571
111774
|
type: string;
|
|
@@ -113979,6 +114182,7 @@ type Routes = {
|
|
|
113979
114182
|
is_offline_access_code: boolean;
|
|
113980
114183
|
};
|
|
113981
114184
|
};
|
|
114185
|
+
maxDuration: undefined;
|
|
113982
114186
|
};
|
|
113983
114187
|
'/access_codes/create_multiple': {
|
|
113984
114188
|
route: '/access_codes/create_multiple';
|
|
@@ -114533,6 +114737,7 @@ type Routes = {
|
|
|
114533
114737
|
is_offline_access_code: boolean;
|
|
114534
114738
|
}[];
|
|
114535
114739
|
};
|
|
114740
|
+
maxDuration: undefined;
|
|
114536
114741
|
};
|
|
114537
114742
|
'/access_codes/delete': {
|
|
114538
114743
|
route: '/access_codes/delete';
|
|
@@ -115805,6 +116010,7 @@ type Routes = {
|
|
|
115805
116010
|
};
|
|
115806
116011
|
};
|
|
115807
116012
|
};
|
|
116013
|
+
maxDuration: undefined;
|
|
115808
116014
|
};
|
|
115809
116015
|
'/access_codes/generate_code': {
|
|
115810
116016
|
route: '/access_codes/generate_code';
|
|
@@ -115822,6 +116028,7 @@ type Routes = {
|
|
|
115822
116028
|
code: string;
|
|
115823
116029
|
};
|
|
115824
116030
|
};
|
|
116031
|
+
maxDuration: undefined;
|
|
115825
116032
|
};
|
|
115826
116033
|
'/access_codes/get': {
|
|
115827
116034
|
route: '/access_codes/get';
|
|
@@ -116351,6 +116558,7 @@ type Routes = {
|
|
|
116351
116558
|
is_offline_access_code: boolean;
|
|
116352
116559
|
};
|
|
116353
116560
|
};
|
|
116561
|
+
maxDuration: undefined;
|
|
116354
116562
|
};
|
|
116355
116563
|
'/access_codes/list': {
|
|
116356
116564
|
route: '/access_codes/list';
|
|
@@ -116888,6 +117096,7 @@ type Routes = {
|
|
|
116888
117096
|
next_page_url: string | null;
|
|
116889
117097
|
};
|
|
116890
117098
|
};
|
|
117099
|
+
maxDuration: undefined;
|
|
116891
117100
|
};
|
|
116892
117101
|
'/access_codes/pull_backup_access_code': {
|
|
116893
117102
|
route: '/access_codes/pull_backup_access_code';
|
|
@@ -117925,6 +118134,7 @@ type Routes = {
|
|
|
117925
118134
|
is_offline_access_code: boolean;
|
|
117926
118135
|
};
|
|
117927
118136
|
};
|
|
118137
|
+
maxDuration: undefined;
|
|
117928
118138
|
};
|
|
117929
118139
|
'/access_codes/report_device_constraints': {
|
|
117930
118140
|
route: '/access_codes/report_device_constraints';
|
|
@@ -117943,6 +118153,7 @@ type Routes = {
|
|
|
117943
118153
|
commonParams: {};
|
|
117944
118154
|
formData: {};
|
|
117945
118155
|
jsonResponse: {};
|
|
118156
|
+
maxDuration: undefined;
|
|
117946
118157
|
};
|
|
117947
118158
|
'/access_codes/simulate/create_unmanaged_access_code': {
|
|
117948
118159
|
route: '/access_codes/simulate/create_unmanaged_access_code';
|
|
@@ -118458,6 +118669,7 @@ type Routes = {
|
|
|
118458
118669
|
status: 'set';
|
|
118459
118670
|
};
|
|
118460
118671
|
};
|
|
118672
|
+
maxDuration: undefined;
|
|
118461
118673
|
};
|
|
118462
118674
|
'/access_codes/unmanaged/convert_to_managed': {
|
|
118463
118675
|
route: '/access_codes/unmanaged/convert_to_managed';
|
|
@@ -118478,6 +118690,7 @@ type Routes = {
|
|
|
118478
118690
|
};
|
|
118479
118691
|
formData: {};
|
|
118480
118692
|
jsonResponse: {};
|
|
118693
|
+
maxDuration: undefined;
|
|
118481
118694
|
};
|
|
118482
118695
|
'/access_codes/unmanaged/delete': {
|
|
118483
118696
|
route: '/access_codes/unmanaged/delete';
|
|
@@ -119748,6 +119961,7 @@ type Routes = {
|
|
|
119748
119961
|
};
|
|
119749
119962
|
};
|
|
119750
119963
|
};
|
|
119964
|
+
maxDuration: undefined;
|
|
119751
119965
|
};
|
|
119752
119966
|
'/access_codes/unmanaged/get': {
|
|
119753
119967
|
route: '/access_codes/unmanaged/get';
|
|
@@ -120263,6 +120477,7 @@ type Routes = {
|
|
|
120263
120477
|
status: 'set';
|
|
120264
120478
|
};
|
|
120265
120479
|
};
|
|
120480
|
+
maxDuration: undefined;
|
|
120266
120481
|
};
|
|
120267
120482
|
'/access_codes/unmanaged/list': {
|
|
120268
120483
|
route: '/access_codes/unmanaged/list';
|
|
@@ -120778,6 +120993,7 @@ type Routes = {
|
|
|
120778
120993
|
next_page_url: string | null;
|
|
120779
120994
|
};
|
|
120780
120995
|
};
|
|
120996
|
+
maxDuration: undefined;
|
|
120781
120997
|
};
|
|
120782
120998
|
'/access_codes/unmanaged/update': {
|
|
120783
120999
|
route: '/access_codes/unmanaged/update';
|
|
@@ -120797,6 +121013,7 @@ type Routes = {
|
|
|
120797
121013
|
};
|
|
120798
121014
|
formData: {};
|
|
120799
121015
|
jsonResponse: {};
|
|
121016
|
+
maxDuration: undefined;
|
|
120800
121017
|
};
|
|
120801
121018
|
'/access_codes/update': {
|
|
120802
121019
|
route: '/access_codes/update';
|
|
@@ -122107,6 +122324,7 @@ type Routes = {
|
|
|
122107
122324
|
};
|
|
122108
122325
|
};
|
|
122109
122326
|
};
|
|
122327
|
+
maxDuration: undefined;
|
|
122110
122328
|
};
|
|
122111
122329
|
'/access_codes/update_multiple': {
|
|
122112
122330
|
route: '/access_codes/update_multiple';
|
|
@@ -122131,6 +122349,7 @@ type Routes = {
|
|
|
122131
122349
|
commonParams: {};
|
|
122132
122350
|
formData: {};
|
|
122133
122351
|
jsonResponse: {};
|
|
122352
|
+
maxDuration: undefined;
|
|
122134
122353
|
};
|
|
122135
122354
|
'/access_grants/create': {
|
|
122136
122355
|
route: '/access_grants/create';
|
|
@@ -122254,6 +122473,7 @@ type Routes = {
|
|
|
122254
122473
|
customization_profile_id?: string | undefined;
|
|
122255
122474
|
};
|
|
122256
122475
|
};
|
|
122476
|
+
maxDuration: undefined;
|
|
122257
122477
|
};
|
|
122258
122478
|
'/access_grants/delete': {
|
|
122259
122479
|
route: '/access_grants/delete';
|
|
@@ -122266,6 +122486,7 @@ type Routes = {
|
|
|
122266
122486
|
};
|
|
122267
122487
|
formData: {};
|
|
122268
122488
|
jsonResponse: {};
|
|
122489
|
+
maxDuration: undefined;
|
|
122269
122490
|
};
|
|
122270
122491
|
'/access_grants/get': {
|
|
122271
122492
|
route: '/access_grants/get';
|
|
@@ -122340,6 +122561,7 @@ type Routes = {
|
|
|
122340
122561
|
customization_profile_id?: string | undefined;
|
|
122341
122562
|
};
|
|
122342
122563
|
};
|
|
122564
|
+
maxDuration: undefined;
|
|
122343
122565
|
};
|
|
122344
122566
|
'/access_grants/get_related': {
|
|
122345
122567
|
route: '/access_grants/get_related';
|
|
@@ -123702,6 +123924,8 @@ type Routes = {
|
|
|
123702
123924
|
door_name?: string | undefined;
|
|
123703
123925
|
/** Description of the door in the Salto Space access system. */
|
|
123704
123926
|
door_description?: string | undefined;
|
|
123927
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
123928
|
+
audit_on_keys?: boolean | undefined;
|
|
123705
123929
|
/** Name of the room in the Salto Space access system. */
|
|
123706
123930
|
room_name?: string | undefined;
|
|
123707
123931
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -124049,6 +124273,7 @@ type Routes = {
|
|
|
124049
124273
|
}[] | undefined;
|
|
124050
124274
|
};
|
|
124051
124275
|
};
|
|
124276
|
+
maxDuration: undefined;
|
|
124052
124277
|
};
|
|
124053
124278
|
'/access_grants/list': {
|
|
124054
124279
|
route: '/access_grants/list';
|
|
@@ -124134,6 +124359,7 @@ type Routes = {
|
|
|
124134
124359
|
customization_profile_id?: string | undefined;
|
|
124135
124360
|
}[];
|
|
124136
124361
|
};
|
|
124362
|
+
maxDuration: undefined;
|
|
124137
124363
|
};
|
|
124138
124364
|
'/access_grants/request_access_methods': {
|
|
124139
124365
|
route: '/access_grants/request_access_methods';
|
|
@@ -124212,6 +124438,7 @@ type Routes = {
|
|
|
124212
124438
|
customization_profile_id?: string | undefined;
|
|
124213
124439
|
};
|
|
124214
124440
|
};
|
|
124441
|
+
maxDuration: undefined;
|
|
124215
124442
|
};
|
|
124216
124443
|
'/access_grants/unmanaged/get': {
|
|
124217
124444
|
route: '/access_grants/unmanaged/get';
|
|
@@ -124275,6 +124502,7 @@ type Routes = {
|
|
|
124275
124502
|
user_identity_id?: string | undefined;
|
|
124276
124503
|
};
|
|
124277
124504
|
};
|
|
124505
|
+
maxDuration: undefined;
|
|
124278
124506
|
};
|
|
124279
124507
|
'/access_grants/unmanaged/list': {
|
|
124280
124508
|
route: '/access_grants/unmanaged/list';
|
|
@@ -124343,6 +124571,7 @@ type Routes = {
|
|
|
124343
124571
|
user_identity_id?: string | undefined;
|
|
124344
124572
|
}[];
|
|
124345
124573
|
};
|
|
124574
|
+
maxDuration: undefined;
|
|
124346
124575
|
};
|
|
124347
124576
|
'/access_grants/unmanaged/update': {
|
|
124348
124577
|
route: '/access_grants/unmanaged/update';
|
|
@@ -124359,6 +124588,7 @@ type Routes = {
|
|
|
124359
124588
|
commonParams: {};
|
|
124360
124589
|
formData: {};
|
|
124361
124590
|
jsonResponse: {};
|
|
124591
|
+
maxDuration: undefined;
|
|
124362
124592
|
};
|
|
124363
124593
|
'/access_grants/update': {
|
|
124364
124594
|
route: '/access_grants/update';
|
|
@@ -124377,6 +124607,7 @@ type Routes = {
|
|
|
124377
124607
|
};
|
|
124378
124608
|
formData: {};
|
|
124379
124609
|
jsonResponse: {};
|
|
124610
|
+
maxDuration: undefined;
|
|
124380
124611
|
};
|
|
124381
124612
|
'/access_methods/delete': {
|
|
124382
124613
|
route: '/access_methods/delete';
|
|
@@ -124389,6 +124620,7 @@ type Routes = {
|
|
|
124389
124620
|
};
|
|
124390
124621
|
formData: {};
|
|
124391
124622
|
jsonResponse: {};
|
|
124623
|
+
maxDuration: undefined;
|
|
124392
124624
|
};
|
|
124393
124625
|
'/access_methods/encode': {
|
|
124394
124626
|
route: '/access_methods/encode';
|
|
@@ -125659,6 +125891,7 @@ type Routes = {
|
|
|
125659
125891
|
};
|
|
125660
125892
|
};
|
|
125661
125893
|
};
|
|
125894
|
+
maxDuration: undefined;
|
|
125662
125895
|
};
|
|
125663
125896
|
'/access_methods/get': {
|
|
125664
125897
|
route: '/access_methods/get';
|
|
@@ -125708,6 +125941,7 @@ type Routes = {
|
|
|
125708
125941
|
customization_profile_id?: string | undefined;
|
|
125709
125942
|
};
|
|
125710
125943
|
};
|
|
125944
|
+
maxDuration: undefined;
|
|
125711
125945
|
};
|
|
125712
125946
|
'/access_methods/get_related': {
|
|
125713
125947
|
route: '/access_methods/get_related';
|
|
@@ -127070,6 +127304,8 @@ type Routes = {
|
|
|
127070
127304
|
door_name?: string | undefined;
|
|
127071
127305
|
/** Description of the door in the Salto Space access system. */
|
|
127072
127306
|
door_description?: string | undefined;
|
|
127307
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
127308
|
+
audit_on_keys?: boolean | undefined;
|
|
127073
127309
|
/** Name of the room in the Salto Space access system. */
|
|
127074
127310
|
room_name?: string | undefined;
|
|
127075
127311
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -127368,6 +127604,7 @@ type Routes = {
|
|
|
127368
127604
|
}[] | undefined;
|
|
127369
127605
|
};
|
|
127370
127606
|
};
|
|
127607
|
+
maxDuration: undefined;
|
|
127371
127608
|
};
|
|
127372
127609
|
'/access_methods/list': {
|
|
127373
127610
|
route: '/access_methods/list';
|
|
@@ -127422,6 +127659,7 @@ type Routes = {
|
|
|
127422
127659
|
customization_profile_id?: string | undefined;
|
|
127423
127660
|
}[];
|
|
127424
127661
|
};
|
|
127662
|
+
maxDuration: undefined;
|
|
127425
127663
|
};
|
|
127426
127664
|
'/access_methods/unmanaged/get': {
|
|
127427
127665
|
route: '/access_methods/unmanaged/get';
|
|
@@ -127465,6 +127703,7 @@ type Routes = {
|
|
|
127465
127703
|
}[];
|
|
127466
127704
|
};
|
|
127467
127705
|
};
|
|
127706
|
+
maxDuration: undefined;
|
|
127468
127707
|
};
|
|
127469
127708
|
'/access_methods/unmanaged/list': {
|
|
127470
127709
|
route: '/access_methods/unmanaged/list';
|
|
@@ -127513,6 +127752,7 @@ type Routes = {
|
|
|
127513
127752
|
}[];
|
|
127514
127753
|
}[];
|
|
127515
127754
|
};
|
|
127755
|
+
maxDuration: undefined;
|
|
127516
127756
|
};
|
|
127517
127757
|
'/acs/access_groups/add_user': {
|
|
127518
127758
|
route: '/acs/access_groups/add_user';
|
|
@@ -127529,6 +127769,7 @@ type Routes = {
|
|
|
127529
127769
|
};
|
|
127530
127770
|
formData: {};
|
|
127531
127771
|
jsonResponse: {};
|
|
127772
|
+
maxDuration: undefined;
|
|
127532
127773
|
};
|
|
127533
127774
|
'/acs/access_groups/get': {
|
|
127534
127775
|
route: '/acs/access_groups/get';
|
|
@@ -127582,6 +127823,7 @@ type Routes = {
|
|
|
127582
127823
|
is_managed: true;
|
|
127583
127824
|
};
|
|
127584
127825
|
};
|
|
127826
|
+
maxDuration: undefined;
|
|
127585
127827
|
};
|
|
127586
127828
|
'/acs/access_groups/list': {
|
|
127587
127829
|
route: '/acs/access_groups/list';
|
|
@@ -127634,6 +127876,7 @@ type Routes = {
|
|
|
127634
127876
|
is_managed: true;
|
|
127635
127877
|
}[];
|
|
127636
127878
|
};
|
|
127879
|
+
maxDuration: undefined;
|
|
127637
127880
|
};
|
|
127638
127881
|
'/acs/access_groups/list_accessible_entrances': {
|
|
127639
127882
|
route: '/acs/access_groups/list_accessible_entrances';
|
|
@@ -127748,6 +127991,8 @@ type Routes = {
|
|
|
127748
127991
|
door_name?: string | undefined;
|
|
127749
127992
|
/** Description of the door in the Salto Space access system. */
|
|
127750
127993
|
door_description?: string | undefined;
|
|
127994
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
127995
|
+
audit_on_keys?: boolean | undefined;
|
|
127751
127996
|
/** Name of the room in the Salto Space access system. */
|
|
127752
127997
|
room_name?: string | undefined;
|
|
127753
127998
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -127768,6 +128013,7 @@ type Routes = {
|
|
|
127768
128013
|
can_belong_to_reservation?: boolean | undefined;
|
|
127769
128014
|
}[];
|
|
127770
128015
|
};
|
|
128016
|
+
maxDuration: undefined;
|
|
127771
128017
|
};
|
|
127772
128018
|
'/acs/access_groups/list_users': {
|
|
127773
128019
|
route: '/acs/access_groups/list_users';
|
|
@@ -127998,6 +128244,7 @@ type Routes = {
|
|
|
127998
128244
|
is_managed: true;
|
|
127999
128245
|
}[];
|
|
128000
128246
|
};
|
|
128247
|
+
maxDuration: undefined;
|
|
128001
128248
|
};
|
|
128002
128249
|
'/acs/access_groups/remove_user': {
|
|
128003
128250
|
route: '/acs/access_groups/remove_user';
|
|
@@ -128014,6 +128261,7 @@ type Routes = {
|
|
|
128014
128261
|
};
|
|
128015
128262
|
formData: {};
|
|
128016
128263
|
jsonResponse: {};
|
|
128264
|
+
maxDuration: undefined;
|
|
128017
128265
|
};
|
|
128018
128266
|
'/acs/access_groups/unmanaged/get': {
|
|
128019
128267
|
route: '/acs/access_groups/unmanaged/get';
|
|
@@ -128063,6 +128311,7 @@ type Routes = {
|
|
|
128063
128311
|
is_managed: false;
|
|
128064
128312
|
};
|
|
128065
128313
|
};
|
|
128314
|
+
maxDuration: undefined;
|
|
128066
128315
|
};
|
|
128067
128316
|
'/acs/access_groups/unmanaged/list': {
|
|
128068
128317
|
route: '/acs/access_groups/unmanaged/list';
|
|
@@ -128113,6 +128362,7 @@ type Routes = {
|
|
|
128113
128362
|
is_managed: false;
|
|
128114
128363
|
}[];
|
|
128115
128364
|
};
|
|
128365
|
+
maxDuration: undefined;
|
|
128116
128366
|
};
|
|
128117
128367
|
'/acs/credential_pools/list': {
|
|
128118
128368
|
route: '/acs/credential_pools/list';
|
|
@@ -128135,6 +128385,7 @@ type Routes = {
|
|
|
128135
128385
|
workspace_id: string;
|
|
128136
128386
|
}[];
|
|
128137
128387
|
};
|
|
128388
|
+
maxDuration: undefined;
|
|
128138
128389
|
};
|
|
128139
128390
|
'/acs/credential_provisioning_automations/launch': {
|
|
128140
128391
|
route: '/acs/credential_provisioning_automations/launch';
|
|
@@ -128165,6 +128416,7 @@ type Routes = {
|
|
|
128165
128416
|
workspace_id: string;
|
|
128166
128417
|
};
|
|
128167
128418
|
};
|
|
128419
|
+
maxDuration: undefined;
|
|
128168
128420
|
};
|
|
128169
128421
|
'/acs/credentials/assign': {
|
|
128170
128422
|
route: '/acs/credentials/assign';
|
|
@@ -128318,6 +128570,7 @@ type Routes = {
|
|
|
128318
128570
|
is_managed: true;
|
|
128319
128571
|
};
|
|
128320
128572
|
};
|
|
128573
|
+
maxDuration: undefined;
|
|
128321
128574
|
};
|
|
128322
128575
|
'/acs/credentials/create': {
|
|
128323
128576
|
route: '/acs/credentials/create';
|
|
@@ -128518,6 +128771,7 @@ type Routes = {
|
|
|
128518
128771
|
is_managed: true;
|
|
128519
128772
|
};
|
|
128520
128773
|
};
|
|
128774
|
+
maxDuration: undefined;
|
|
128521
128775
|
};
|
|
128522
128776
|
'/acs/credentials/create_offline_code': {
|
|
128523
128777
|
route: '/acs/credentials/create_offline_code';
|
|
@@ -128675,6 +128929,7 @@ type Routes = {
|
|
|
128675
128929
|
is_managed: true;
|
|
128676
128930
|
};
|
|
128677
128931
|
};
|
|
128932
|
+
maxDuration: undefined;
|
|
128678
128933
|
};
|
|
128679
128934
|
'/acs/credentials/delete': {
|
|
128680
128935
|
route: '/acs/credentials/delete';
|
|
@@ -128687,6 +128942,7 @@ type Routes = {
|
|
|
128687
128942
|
};
|
|
128688
128943
|
formData: {};
|
|
128689
128944
|
jsonResponse: {};
|
|
128945
|
+
maxDuration: undefined;
|
|
128690
128946
|
};
|
|
128691
128947
|
'/acs/credentials/get': {
|
|
128692
128948
|
route: '/acs/credentials/get';
|
|
@@ -128836,6 +129092,7 @@ type Routes = {
|
|
|
128836
129092
|
is_managed: true;
|
|
128837
129093
|
};
|
|
128838
129094
|
};
|
|
129095
|
+
maxDuration: undefined;
|
|
128839
129096
|
};
|
|
128840
129097
|
'/acs/credentials/list': {
|
|
128841
129098
|
route: '/acs/credentials/list';
|
|
@@ -129011,6 +129268,7 @@ type Routes = {
|
|
|
129011
129268
|
next_page_url: string | null;
|
|
129012
129269
|
};
|
|
129013
129270
|
};
|
|
129271
|
+
maxDuration: undefined;
|
|
129014
129272
|
};
|
|
129015
129273
|
'/acs/credentials/list_accessible_entrances': {
|
|
129016
129274
|
route: '/acs/credentials/list_accessible_entrances';
|
|
@@ -129125,6 +129383,8 @@ type Routes = {
|
|
|
129125
129383
|
door_name?: string | undefined;
|
|
129126
129384
|
/** Description of the door in the Salto Space access system. */
|
|
129127
129385
|
door_description?: string | undefined;
|
|
129386
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
129387
|
+
audit_on_keys?: boolean | undefined;
|
|
129128
129388
|
/** Name of the room in the Salto Space access system. */
|
|
129129
129389
|
room_name?: string | undefined;
|
|
129130
129390
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -129145,6 +129405,7 @@ type Routes = {
|
|
|
129145
129405
|
can_belong_to_reservation?: boolean | undefined;
|
|
129146
129406
|
}[];
|
|
129147
129407
|
};
|
|
129408
|
+
maxDuration: undefined;
|
|
129148
129409
|
};
|
|
129149
129410
|
'/acs/credentials/unassign': {
|
|
129150
129411
|
route: '/acs/credentials/unassign';
|
|
@@ -129298,6 +129559,7 @@ type Routes = {
|
|
|
129298
129559
|
is_managed: true;
|
|
129299
129560
|
};
|
|
129300
129561
|
};
|
|
129562
|
+
maxDuration: undefined;
|
|
129301
129563
|
};
|
|
129302
129564
|
'/acs/credentials/unmanaged/get': {
|
|
129303
129565
|
route: '/acs/credentials/unmanaged/get';
|
|
@@ -129443,6 +129705,7 @@ type Routes = {
|
|
|
129443
129705
|
is_managed: false;
|
|
129444
129706
|
};
|
|
129445
129707
|
};
|
|
129708
|
+
maxDuration: undefined;
|
|
129446
129709
|
};
|
|
129447
129710
|
'/acs/credentials/unmanaged/list': {
|
|
129448
129711
|
route: '/acs/credentials/unmanaged/list';
|
|
@@ -129598,6 +129861,7 @@ type Routes = {
|
|
|
129598
129861
|
is_managed: false;
|
|
129599
129862
|
}[];
|
|
129600
129863
|
};
|
|
129864
|
+
maxDuration: undefined;
|
|
129601
129865
|
};
|
|
129602
129866
|
'/acs/credentials/update': {
|
|
129603
129867
|
route: '/acs/credentials/update';
|
|
@@ -129751,6 +130015,7 @@ type Routes = {
|
|
|
129751
130015
|
is_managed: true;
|
|
129752
130016
|
};
|
|
129753
130017
|
};
|
|
130018
|
+
maxDuration: undefined;
|
|
129754
130019
|
};
|
|
129755
130020
|
'/acs/encoders/encode_credential': {
|
|
129756
130021
|
route: '/acs/encoders/encode_credential';
|
|
@@ -131023,6 +131288,7 @@ type Routes = {
|
|
|
131023
131288
|
};
|
|
131024
131289
|
};
|
|
131025
131290
|
};
|
|
131291
|
+
maxDuration: undefined;
|
|
131026
131292
|
};
|
|
131027
131293
|
'/acs/encoders/get': {
|
|
131028
131294
|
route: '/acs/encoders/get';
|
|
@@ -131073,6 +131339,7 @@ type Routes = {
|
|
|
131073
131339
|
display_name: string;
|
|
131074
131340
|
};
|
|
131075
131341
|
};
|
|
131342
|
+
maxDuration: undefined;
|
|
131076
131343
|
};
|
|
131077
131344
|
'/acs/encoders/list': {
|
|
131078
131345
|
route: '/acs/encoders/list';
|
|
@@ -131129,6 +131396,7 @@ type Routes = {
|
|
|
131129
131396
|
next_page_url: string | null;
|
|
131130
131397
|
};
|
|
131131
131398
|
};
|
|
131399
|
+
maxDuration: undefined;
|
|
131132
131400
|
};
|
|
131133
131401
|
'/acs/encoders/scan_credential': {
|
|
131134
131402
|
route: '/acs/encoders/scan_credential';
|
|
@@ -132397,6 +132665,7 @@ type Routes = {
|
|
|
132397
132665
|
};
|
|
132398
132666
|
};
|
|
132399
132667
|
};
|
|
132668
|
+
maxDuration: undefined;
|
|
132400
132669
|
};
|
|
132401
132670
|
'/acs/encoders/simulate/next_credential_encode_will_fail': {
|
|
132402
132671
|
route: '/acs/encoders/simulate/next_credential_encode_will_fail';
|
|
@@ -132418,6 +132687,7 @@ type Routes = {
|
|
|
132418
132687
|
commonParams: {};
|
|
132419
132688
|
formData: {};
|
|
132420
132689
|
jsonResponse: {};
|
|
132690
|
+
maxDuration: undefined;
|
|
132421
132691
|
};
|
|
132422
132692
|
'/acs/encoders/simulate/next_credential_encode_will_succeed': {
|
|
132423
132693
|
route: '/acs/encoders/simulate/next_credential_encode_will_succeed';
|
|
@@ -132432,6 +132702,7 @@ type Routes = {
|
|
|
132432
132702
|
commonParams: {};
|
|
132433
132703
|
formData: {};
|
|
132434
132704
|
jsonResponse: {};
|
|
132705
|
+
maxDuration: undefined;
|
|
132435
132706
|
};
|
|
132436
132707
|
'/acs/encoders/simulate/next_credential_scan_will_fail': {
|
|
132437
132708
|
route: '/acs/encoders/simulate/next_credential_scan_will_fail';
|
|
@@ -132450,6 +132721,7 @@ type Routes = {
|
|
|
132450
132721
|
commonParams: {};
|
|
132451
132722
|
formData: {};
|
|
132452
132723
|
jsonResponse: {};
|
|
132724
|
+
maxDuration: undefined;
|
|
132453
132725
|
};
|
|
132454
132726
|
'/acs/encoders/simulate/next_credential_scan_will_succeed': {
|
|
132455
132727
|
route: '/acs/encoders/simulate/next_credential_scan_will_succeed';
|
|
@@ -132476,6 +132748,7 @@ type Routes = {
|
|
|
132476
132748
|
commonParams: {};
|
|
132477
132749
|
formData: {};
|
|
132478
132750
|
jsonResponse: {};
|
|
132751
|
+
maxDuration: undefined;
|
|
132479
132752
|
};
|
|
132480
132753
|
'/acs/entrances/get': {
|
|
132481
132754
|
route: '/acs/entrances/get';
|
|
@@ -132593,6 +132866,8 @@ type Routes = {
|
|
|
132593
132866
|
door_name?: string | undefined;
|
|
132594
132867
|
/** Description of the door in the Salto Space access system. */
|
|
132595
132868
|
door_description?: string | undefined;
|
|
132869
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
132870
|
+
audit_on_keys?: boolean | undefined;
|
|
132596
132871
|
/** Name of the room in the Salto Space access system. */
|
|
132597
132872
|
room_name?: string | undefined;
|
|
132598
132873
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -132613,6 +132888,7 @@ type Routes = {
|
|
|
132613
132888
|
can_belong_to_reservation?: boolean | undefined;
|
|
132614
132889
|
};
|
|
132615
132890
|
};
|
|
132891
|
+
maxDuration: undefined;
|
|
132616
132892
|
};
|
|
132617
132893
|
'/acs/entrances/grant_access': {
|
|
132618
132894
|
route: '/acs/entrances/grant_access';
|
|
@@ -132629,6 +132905,7 @@ type Routes = {
|
|
|
132629
132905
|
commonParams: {};
|
|
132630
132906
|
formData: {};
|
|
132631
132907
|
jsonResponse: {};
|
|
132908
|
+
maxDuration: undefined;
|
|
132632
132909
|
};
|
|
132633
132910
|
'/acs/entrances/list': {
|
|
132634
132911
|
route: '/acs/entrances/list';
|
|
@@ -132762,6 +133039,8 @@ type Routes = {
|
|
|
132762
133039
|
door_name?: string | undefined;
|
|
132763
133040
|
/** Description of the door in the Salto Space access system. */
|
|
132764
133041
|
door_description?: string | undefined;
|
|
133042
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
133043
|
+
audit_on_keys?: boolean | undefined;
|
|
132765
133044
|
/** Name of the room in the Salto Space access system. */
|
|
132766
133045
|
room_name?: string | undefined;
|
|
132767
133046
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -132791,6 +133070,7 @@ type Routes = {
|
|
|
132791
133070
|
next_page_url: string | null;
|
|
132792
133071
|
};
|
|
132793
133072
|
};
|
|
133073
|
+
maxDuration: undefined;
|
|
132794
133074
|
};
|
|
132795
133075
|
'/acs/entrances/list_credentials_with_access': {
|
|
132796
133076
|
route: '/acs/entrances/list_credentials_with_access';
|
|
@@ -132937,6 +133217,7 @@ type Routes = {
|
|
|
132937
133217
|
is_managed: true;
|
|
132938
133218
|
}[];
|
|
132939
133219
|
};
|
|
133220
|
+
maxDuration: undefined;
|
|
132940
133221
|
};
|
|
132941
133222
|
'/acs/systems/get': {
|
|
132942
133223
|
route: '/acs/systems/get';
|
|
@@ -133073,6 +133354,7 @@ type Routes = {
|
|
|
133073
133354
|
})[];
|
|
133074
133355
|
};
|
|
133075
133356
|
};
|
|
133357
|
+
maxDuration: undefined;
|
|
133076
133358
|
};
|
|
133077
133359
|
'/acs/systems/list': {
|
|
133078
133360
|
route: '/acs/systems/list';
|
|
@@ -133206,6 +133488,7 @@ type Routes = {
|
|
|
133206
133488
|
})[];
|
|
133207
133489
|
}[];
|
|
133208
133490
|
};
|
|
133491
|
+
maxDuration: undefined;
|
|
133209
133492
|
};
|
|
133210
133493
|
'/acs/systems/list_compatible_credential_manager_acs_systems': {
|
|
133211
133494
|
route: '/acs/systems/list_compatible_credential_manager_acs_systems';
|
|
@@ -133337,6 +133620,7 @@ type Routes = {
|
|
|
133337
133620
|
})[];
|
|
133338
133621
|
}[];
|
|
133339
133622
|
};
|
|
133623
|
+
maxDuration: undefined;
|
|
133340
133624
|
};
|
|
133341
133625
|
'/acs/systems/report_devices': {
|
|
133342
133626
|
route: '/acs/systems/report_devices';
|
|
@@ -133372,6 +133656,7 @@ type Routes = {
|
|
|
133372
133656
|
};
|
|
133373
133657
|
formData: {};
|
|
133374
133658
|
jsonResponse: {};
|
|
133659
|
+
maxDuration: undefined;
|
|
133375
133660
|
};
|
|
133376
133661
|
'/acs/users/add_to_access_group': {
|
|
133377
133662
|
route: '/acs/users/add_to_access_group';
|
|
@@ -133386,6 +133671,7 @@ type Routes = {
|
|
|
133386
133671
|
};
|
|
133387
133672
|
formData: {};
|
|
133388
133673
|
jsonResponse: {};
|
|
133674
|
+
maxDuration: undefined;
|
|
133389
133675
|
};
|
|
133390
133676
|
'/acs/users/create': {
|
|
133391
133677
|
route: '/acs/users/create';
|
|
@@ -133641,6 +133927,7 @@ type Routes = {
|
|
|
133641
133927
|
is_managed: true;
|
|
133642
133928
|
};
|
|
133643
133929
|
};
|
|
133930
|
+
maxDuration: undefined;
|
|
133644
133931
|
};
|
|
133645
133932
|
'/acs/users/delete': {
|
|
133646
133933
|
route: '/acs/users/delete';
|
|
@@ -133657,6 +133944,7 @@ type Routes = {
|
|
|
133657
133944
|
};
|
|
133658
133945
|
formData: {};
|
|
133659
133946
|
jsonResponse: {};
|
|
133947
|
+
maxDuration: undefined;
|
|
133660
133948
|
};
|
|
133661
133949
|
'/acs/users/get': {
|
|
133662
133950
|
route: '/acs/users/get';
|
|
@@ -133896,6 +134184,7 @@ type Routes = {
|
|
|
133896
134184
|
is_managed: true;
|
|
133897
134185
|
};
|
|
133898
134186
|
};
|
|
134187
|
+
maxDuration: undefined;
|
|
133899
134188
|
};
|
|
133900
134189
|
'/acs/users/list': {
|
|
133901
134190
|
route: '/acs/users/list';
|
|
@@ -134149,6 +134438,7 @@ type Routes = {
|
|
|
134149
134438
|
next_page_url: string | null;
|
|
134150
134439
|
};
|
|
134151
134440
|
};
|
|
134441
|
+
maxDuration: undefined;
|
|
134152
134442
|
};
|
|
134153
134443
|
'/acs/users/list_accessible_entrances': {
|
|
134154
134444
|
route: '/acs/users/list_accessible_entrances';
|
|
@@ -134267,6 +134557,8 @@ type Routes = {
|
|
|
134267
134557
|
door_name?: string | undefined;
|
|
134268
134558
|
/** Description of the door in the Salto Space access system. */
|
|
134269
134559
|
door_description?: string | undefined;
|
|
134560
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
134561
|
+
audit_on_keys?: boolean | undefined;
|
|
134270
134562
|
/** Name of the room in the Salto Space access system. */
|
|
134271
134563
|
room_name?: string | undefined;
|
|
134272
134564
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -134287,6 +134579,7 @@ type Routes = {
|
|
|
134287
134579
|
can_belong_to_reservation?: boolean | undefined;
|
|
134288
134580
|
}[];
|
|
134289
134581
|
};
|
|
134582
|
+
maxDuration: undefined;
|
|
134290
134583
|
};
|
|
134291
134584
|
'/acs/users/remove_from_access_group': {
|
|
134292
134585
|
route: '/acs/users/remove_from_access_group';
|
|
@@ -134303,6 +134596,7 @@ type Routes = {
|
|
|
134303
134596
|
};
|
|
134304
134597
|
formData: {};
|
|
134305
134598
|
jsonResponse: {};
|
|
134599
|
+
maxDuration: undefined;
|
|
134306
134600
|
};
|
|
134307
134601
|
'/acs/users/revoke_access_to_all_entrances': {
|
|
134308
134602
|
route: '/acs/users/revoke_access_to_all_entrances';
|
|
@@ -134319,6 +134613,7 @@ type Routes = {
|
|
|
134319
134613
|
commonParams: {};
|
|
134320
134614
|
formData: {};
|
|
134321
134615
|
jsonResponse: {};
|
|
134616
|
+
maxDuration: undefined;
|
|
134322
134617
|
};
|
|
134323
134618
|
'/acs/users/suspend': {
|
|
134324
134619
|
route: '/acs/users/suspend';
|
|
@@ -134335,6 +134630,7 @@ type Routes = {
|
|
|
134335
134630
|
};
|
|
134336
134631
|
formData: {};
|
|
134337
134632
|
jsonResponse: {};
|
|
134633
|
+
maxDuration: undefined;
|
|
134338
134634
|
};
|
|
134339
134635
|
'/acs/users/unmanaged/get': {
|
|
134340
134636
|
route: '/acs/users/unmanaged/get';
|
|
@@ -134566,6 +134862,7 @@ type Routes = {
|
|
|
134566
134862
|
is_managed: false;
|
|
134567
134863
|
};
|
|
134568
134864
|
};
|
|
134865
|
+
maxDuration: undefined;
|
|
134569
134866
|
};
|
|
134570
134867
|
'/acs/users/unmanaged/list': {
|
|
134571
134868
|
route: '/acs/users/unmanaged/list';
|
|
@@ -134804,6 +135101,7 @@ type Routes = {
|
|
|
134804
135101
|
is_managed: false;
|
|
134805
135102
|
}[];
|
|
134806
135103
|
};
|
|
135104
|
+
maxDuration: undefined;
|
|
134807
135105
|
};
|
|
134808
135106
|
'/acs/users/unsuspend': {
|
|
134809
135107
|
route: '/acs/users/unsuspend';
|
|
@@ -134820,6 +135118,7 @@ type Routes = {
|
|
|
134820
135118
|
};
|
|
134821
135119
|
formData: {};
|
|
134822
135120
|
jsonResponse: {};
|
|
135121
|
+
maxDuration: undefined;
|
|
134823
135122
|
};
|
|
134824
135123
|
'/acs/users/update': {
|
|
134825
135124
|
route: '/acs/users/update';
|
|
@@ -134853,6 +135152,7 @@ type Routes = {
|
|
|
134853
135152
|
commonParams: {};
|
|
134854
135153
|
formData: {};
|
|
134855
135154
|
jsonResponse: {};
|
|
135155
|
+
maxDuration: undefined;
|
|
134856
135156
|
};
|
|
134857
135157
|
'/action_attempts/get': {
|
|
134858
135158
|
route: '/action_attempts/get';
|
|
@@ -136121,6 +136421,7 @@ type Routes = {
|
|
|
136121
136421
|
};
|
|
136122
136422
|
};
|
|
136123
136423
|
};
|
|
136424
|
+
maxDuration: undefined;
|
|
136124
136425
|
};
|
|
136125
136426
|
'/action_attempts/list': {
|
|
136126
136427
|
route: '/action_attempts/list';
|
|
@@ -137384,6 +137685,7 @@ type Routes = {
|
|
|
137384
137685
|
};
|
|
137385
137686
|
})[];
|
|
137386
137687
|
};
|
|
137688
|
+
maxDuration: undefined;
|
|
137387
137689
|
};
|
|
137388
137690
|
'/bridges/get': {
|
|
137389
137691
|
route: '/bridges/get';
|
|
@@ -137406,6 +137708,7 @@ type Routes = {
|
|
|
137406
137708
|
created_at: string;
|
|
137407
137709
|
};
|
|
137408
137710
|
};
|
|
137711
|
+
maxDuration: undefined;
|
|
137409
137712
|
};
|
|
137410
137713
|
'/bridges/list': {
|
|
137411
137714
|
route: '/bridges/list';
|
|
@@ -137424,6 +137727,7 @@ type Routes = {
|
|
|
137424
137727
|
created_at: string;
|
|
137425
137728
|
}[];
|
|
137426
137729
|
};
|
|
137730
|
+
maxDuration: undefined;
|
|
137427
137731
|
};
|
|
137428
137732
|
'/client_sessions/create': {
|
|
137429
137733
|
route: '/client_sessions/create';
|
|
@@ -137488,6 +137792,7 @@ type Routes = {
|
|
|
137488
137792
|
user_identity_id?: string | undefined;
|
|
137489
137793
|
};
|
|
137490
137794
|
};
|
|
137795
|
+
maxDuration: undefined;
|
|
137491
137796
|
};
|
|
137492
137797
|
'/client_sessions/delete': {
|
|
137493
137798
|
route: '/client_sessions/delete';
|
|
@@ -137500,6 +137805,7 @@ type Routes = {
|
|
|
137500
137805
|
};
|
|
137501
137806
|
formData: {};
|
|
137502
137807
|
jsonResponse: {};
|
|
137808
|
+
maxDuration: undefined;
|
|
137503
137809
|
};
|
|
137504
137810
|
'/client_sessions/get': {
|
|
137505
137811
|
route: '/client_sessions/get';
|
|
@@ -137551,6 +137857,7 @@ type Routes = {
|
|
|
137551
137857
|
user_identity_id?: string | undefined;
|
|
137552
137858
|
};
|
|
137553
137859
|
};
|
|
137860
|
+
maxDuration: undefined;
|
|
137554
137861
|
};
|
|
137555
137862
|
'/client_sessions/get_or_create': {
|
|
137556
137863
|
route: '/client_sessions/get_or_create';
|
|
@@ -137611,6 +137918,7 @@ type Routes = {
|
|
|
137611
137918
|
user_identity_id?: string | undefined;
|
|
137612
137919
|
};
|
|
137613
137920
|
};
|
|
137921
|
+
maxDuration: undefined;
|
|
137614
137922
|
};
|
|
137615
137923
|
'/client_sessions/grant_access': {
|
|
137616
137924
|
route: '/client_sessions/grant_access';
|
|
@@ -137671,6 +137979,7 @@ type Routes = {
|
|
|
137671
137979
|
user_identity_id?: string | undefined;
|
|
137672
137980
|
};
|
|
137673
137981
|
};
|
|
137982
|
+
maxDuration: undefined;
|
|
137674
137983
|
};
|
|
137675
137984
|
'/client_sessions/list': {
|
|
137676
137985
|
route: '/client_sessions/list';
|
|
@@ -137719,6 +138028,7 @@ type Routes = {
|
|
|
137719
138028
|
user_identity_id?: string | undefined;
|
|
137720
138029
|
}[];
|
|
137721
138030
|
};
|
|
138031
|
+
maxDuration: undefined;
|
|
137722
138032
|
};
|
|
137723
138033
|
'/client_sessions/revoke': {
|
|
137724
138034
|
route: '/client_sessions/revoke';
|
|
@@ -137731,6 +138041,7 @@ type Routes = {
|
|
|
137731
138041
|
};
|
|
137732
138042
|
formData: {};
|
|
137733
138043
|
jsonResponse: {};
|
|
138044
|
+
maxDuration: undefined;
|
|
137734
138045
|
};
|
|
137735
138046
|
'/connect_webviews/create': {
|
|
137736
138047
|
route: '/connect_webviews/create';
|
|
@@ -137824,6 +138135,7 @@ type Routes = {
|
|
|
137824
138135
|
customer_key?: string | undefined;
|
|
137825
138136
|
};
|
|
137826
138137
|
};
|
|
138138
|
+
maxDuration: undefined;
|
|
137827
138139
|
};
|
|
137828
138140
|
'/connect_webviews/delete': {
|
|
137829
138141
|
route: '/connect_webviews/delete';
|
|
@@ -137836,6 +138148,7 @@ type Routes = {
|
|
|
137836
138148
|
commonParams: {};
|
|
137837
138149
|
formData: {};
|
|
137838
138150
|
jsonResponse: {};
|
|
138151
|
+
maxDuration: undefined;
|
|
137839
138152
|
};
|
|
137840
138153
|
'/connect_webviews/get': {
|
|
137841
138154
|
route: '/connect_webviews/get';
|
|
@@ -137907,6 +138220,7 @@ type Routes = {
|
|
|
137907
138220
|
customer_key?: string | undefined;
|
|
137908
138221
|
};
|
|
137909
138222
|
};
|
|
138223
|
+
maxDuration: undefined;
|
|
137910
138224
|
};
|
|
137911
138225
|
'/connect_webviews/list': {
|
|
137912
138226
|
route: '/connect_webviews/list';
|
|
@@ -137986,6 +138300,7 @@ type Routes = {
|
|
|
137986
138300
|
next_page_url: string | null;
|
|
137987
138301
|
};
|
|
137988
138302
|
};
|
|
138303
|
+
maxDuration: undefined;
|
|
137989
138304
|
};
|
|
137990
138305
|
'/connected_accounts/delete': {
|
|
137991
138306
|
route: '/connected_accounts/delete';
|
|
@@ -138000,6 +138315,7 @@ type Routes = {
|
|
|
138000
138315
|
commonParams: {};
|
|
138001
138316
|
formData: {};
|
|
138002
138317
|
jsonResponse: {};
|
|
138318
|
+
maxDuration: undefined;
|
|
138003
138319
|
};
|
|
138004
138320
|
'/connected_accounts/get': {
|
|
138005
138321
|
route: '/connected_accounts/get';
|
|
@@ -138143,6 +138459,7 @@ type Routes = {
|
|
|
138143
138459
|
accepted_capabilities: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control')[];
|
|
138144
138460
|
};
|
|
138145
138461
|
};
|
|
138462
|
+
maxDuration: undefined;
|
|
138146
138463
|
};
|
|
138147
138464
|
'/connected_accounts/list': {
|
|
138148
138465
|
route: '/connected_accounts/list';
|
|
@@ -138303,6 +138620,7 @@ type Routes = {
|
|
|
138303
138620
|
next_page_url: string | null;
|
|
138304
138621
|
};
|
|
138305
138622
|
};
|
|
138623
|
+
maxDuration: undefined;
|
|
138306
138624
|
};
|
|
138307
138625
|
'/connected_accounts/simulate/disconnect': {
|
|
138308
138626
|
route: '/connected_accounts/simulate/disconnect';
|
|
@@ -138314,6 +138632,7 @@ type Routes = {
|
|
|
138314
138632
|
commonParams: {};
|
|
138315
138633
|
formData: {};
|
|
138316
138634
|
jsonResponse: {};
|
|
138635
|
+
maxDuration: undefined;
|
|
138317
138636
|
};
|
|
138318
138637
|
'/connected_accounts/sync': {
|
|
138319
138638
|
route: '/connected_accounts/sync';
|
|
@@ -138326,6 +138645,7 @@ type Routes = {
|
|
|
138326
138645
|
commonParams: {};
|
|
138327
138646
|
formData: {};
|
|
138328
138647
|
jsonResponse: {};
|
|
138648
|
+
maxDuration: undefined;
|
|
138329
138649
|
};
|
|
138330
138650
|
'/connected_accounts/update': {
|
|
138331
138651
|
route: '/connected_accounts/update';
|
|
@@ -138476,6 +138796,7 @@ type Routes = {
|
|
|
138476
138796
|
accepted_capabilities: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control')[];
|
|
138477
138797
|
};
|
|
138478
138798
|
};
|
|
138799
|
+
maxDuration: undefined;
|
|
138479
138800
|
};
|
|
138480
138801
|
'/customers/create_portal': {
|
|
138481
138802
|
route: '/customers/create_portal';
|
|
@@ -138866,6 +139187,7 @@ type Routes = {
|
|
|
138866
139187
|
created_at: string;
|
|
138867
139188
|
};
|
|
138868
139189
|
};
|
|
139190
|
+
maxDuration: undefined;
|
|
138869
139191
|
};
|
|
138870
139192
|
'/customers/delete_data': {
|
|
138871
139193
|
route: '/customers/delete_data';
|
|
@@ -138914,6 +139236,7 @@ type Routes = {
|
|
|
138914
139236
|
};
|
|
138915
139237
|
formData: {};
|
|
138916
139238
|
jsonResponse: {};
|
|
139239
|
+
maxDuration: undefined;
|
|
138917
139240
|
};
|
|
138918
139241
|
'/customers/push_data': {
|
|
138919
139242
|
route: '/customers/push_data';
|
|
@@ -139205,6 +139528,7 @@ type Routes = {
|
|
|
139205
139528
|
};
|
|
139206
139529
|
formData: {};
|
|
139207
139530
|
jsonResponse: {};
|
|
139531
|
+
maxDuration: undefined;
|
|
139208
139532
|
};
|
|
139209
139533
|
'/devices/delete': {
|
|
139210
139534
|
route: '/devices/delete';
|
|
@@ -139217,6 +139541,7 @@ type Routes = {
|
|
|
139217
139541
|
};
|
|
139218
139542
|
formData: {};
|
|
139219
139543
|
jsonResponse: {};
|
|
139544
|
+
maxDuration: undefined;
|
|
139220
139545
|
};
|
|
139221
139546
|
'/devices/get': {
|
|
139222
139547
|
route: '/devices/get';
|
|
@@ -140455,6 +140780,7 @@ type Routes = {
|
|
|
140455
140780
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
140456
140781
|
};
|
|
140457
140782
|
};
|
|
140783
|
+
maxDuration: undefined;
|
|
140458
140784
|
};
|
|
140459
140785
|
'/devices/list': {
|
|
140460
140786
|
route: '/devices/list';
|
|
@@ -141736,6 +142062,7 @@ type Routes = {
|
|
|
141736
142062
|
next_page_url: string | null;
|
|
141737
142063
|
};
|
|
141738
142064
|
};
|
|
142065
|
+
maxDuration: undefined;
|
|
141739
142066
|
};
|
|
141740
142067
|
'/devices/list_device_providers': {
|
|
141741
142068
|
route: '/devices/list_device_providers';
|
|
@@ -141774,6 +142101,7 @@ type Routes = {
|
|
|
141774
142101
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
141775
142102
|
}[];
|
|
141776
142103
|
};
|
|
142104
|
+
maxDuration: undefined;
|
|
141777
142105
|
};
|
|
141778
142106
|
'/devices/simulate/connect': {
|
|
141779
142107
|
route: '/devices/simulate/connect';
|
|
@@ -141786,6 +142114,7 @@ type Routes = {
|
|
|
141786
142114
|
commonParams: {};
|
|
141787
142115
|
formData: {};
|
|
141788
142116
|
jsonResponse: {};
|
|
142117
|
+
maxDuration: undefined;
|
|
141789
142118
|
};
|
|
141790
142119
|
'/devices/simulate/connect_to_hub': {
|
|
141791
142120
|
route: '/devices/simulate/connect_to_hub';
|
|
@@ -141798,6 +142127,7 @@ type Routes = {
|
|
|
141798
142127
|
commonParams: {};
|
|
141799
142128
|
formData: {};
|
|
141800
142129
|
jsonResponse: {};
|
|
142130
|
+
maxDuration: undefined;
|
|
141801
142131
|
};
|
|
141802
142132
|
'/devices/simulate/disconnect': {
|
|
141803
142133
|
route: '/devices/simulate/disconnect';
|
|
@@ -141810,6 +142140,7 @@ type Routes = {
|
|
|
141810
142140
|
commonParams: {};
|
|
141811
142141
|
formData: {};
|
|
141812
142142
|
jsonResponse: {};
|
|
142143
|
+
maxDuration: undefined;
|
|
141813
142144
|
};
|
|
141814
142145
|
'/devices/simulate/disconnect_from_hub': {
|
|
141815
142146
|
route: '/devices/simulate/disconnect_from_hub';
|
|
@@ -141822,6 +142153,7 @@ type Routes = {
|
|
|
141822
142153
|
commonParams: {};
|
|
141823
142154
|
formData: {};
|
|
141824
142155
|
jsonResponse: {};
|
|
142156
|
+
maxDuration: undefined;
|
|
141825
142157
|
};
|
|
141826
142158
|
'/devices/simulate/paid_subscription': {
|
|
141827
142159
|
route: '/devices/simulate/paid_subscription';
|
|
@@ -141834,6 +142166,7 @@ type Routes = {
|
|
|
141834
142166
|
commonParams: {};
|
|
141835
142167
|
formData: {};
|
|
141836
142168
|
jsonResponse: {};
|
|
142169
|
+
maxDuration: undefined;
|
|
141837
142170
|
};
|
|
141838
142171
|
'/devices/simulate/remove': {
|
|
141839
142172
|
route: '/devices/simulate/remove';
|
|
@@ -141846,6 +142179,7 @@ type Routes = {
|
|
|
141846
142179
|
commonParams: {};
|
|
141847
142180
|
formData: {};
|
|
141848
142181
|
jsonResponse: {};
|
|
142182
|
+
maxDuration: undefined;
|
|
141849
142183
|
};
|
|
141850
142184
|
'/devices/unmanaged/get': {
|
|
141851
142185
|
route: '/devices/unmanaged/get';
|
|
@@ -142252,6 +142586,7 @@ type Routes = {
|
|
|
142252
142586
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
142253
142587
|
};
|
|
142254
142588
|
};
|
|
142589
|
+
maxDuration: undefined;
|
|
142255
142590
|
};
|
|
142256
142591
|
'/devices/unmanaged/list': {
|
|
142257
142592
|
route: '/devices/unmanaged/list';
|
|
@@ -142701,6 +143036,7 @@ type Routes = {
|
|
|
142701
143036
|
next_page_url: string | null;
|
|
142702
143037
|
};
|
|
142703
143038
|
};
|
|
143039
|
+
maxDuration: undefined;
|
|
142704
143040
|
};
|
|
142705
143041
|
'/devices/unmanaged/update': {
|
|
142706
143042
|
route: '/devices/unmanaged/update';
|
|
@@ -142719,6 +143055,7 @@ type Routes = {
|
|
|
142719
143055
|
};
|
|
142720
143056
|
formData: {};
|
|
142721
143057
|
jsonResponse: {};
|
|
143058
|
+
maxDuration: undefined;
|
|
142722
143059
|
};
|
|
142723
143060
|
'/devices/update': {
|
|
142724
143061
|
route: '/devices/update';
|
|
@@ -142743,6 +143080,7 @@ type Routes = {
|
|
|
142743
143080
|
};
|
|
142744
143081
|
formData: {};
|
|
142745
143082
|
jsonResponse: {};
|
|
143083
|
+
maxDuration: undefined;
|
|
142746
143084
|
};
|
|
142747
143085
|
'/events/get': {
|
|
142748
143086
|
route: '/events/get';
|
|
@@ -144679,6 +145017,7 @@ type Routes = {
|
|
|
144679
145017
|
}) | undefined;
|
|
144680
145018
|
message?: string | undefined;
|
|
144681
145019
|
};
|
|
145020
|
+
maxDuration: undefined;
|
|
144682
145021
|
};
|
|
144683
145022
|
'/events/list': {
|
|
144684
145023
|
route: '/events/list';
|
|
@@ -146637,6 +146976,7 @@ type Routes = {
|
|
|
146637
146976
|
acs_entrance_ids: string[];
|
|
146638
146977
|
})[];
|
|
146639
146978
|
};
|
|
146979
|
+
maxDuration: undefined;
|
|
146640
146980
|
};
|
|
146641
146981
|
'/instant_keys/delete': {
|
|
146642
146982
|
route: '/instant_keys/delete';
|
|
@@ -146649,6 +146989,7 @@ type Routes = {
|
|
|
146649
146989
|
};
|
|
146650
146990
|
formData: {};
|
|
146651
146991
|
jsonResponse: {};
|
|
146992
|
+
maxDuration: undefined;
|
|
146652
146993
|
};
|
|
146653
146994
|
'/instant_keys/get': {
|
|
146654
146995
|
route: '/instant_keys/get';
|
|
@@ -146694,6 +147035,7 @@ type Routes = {
|
|
|
146694
147035
|
} | undefined;
|
|
146695
147036
|
};
|
|
146696
147037
|
};
|
|
147038
|
+
maxDuration: undefined;
|
|
146697
147039
|
};
|
|
146698
147040
|
'/instant_keys/list': {
|
|
146699
147041
|
route: '/instant_keys/list';
|
|
@@ -146734,6 +147076,7 @@ type Routes = {
|
|
|
146734
147076
|
} | undefined;
|
|
146735
147077
|
}[];
|
|
146736
147078
|
};
|
|
147079
|
+
maxDuration: undefined;
|
|
146737
147080
|
};
|
|
146738
147081
|
'/locks/get': {
|
|
146739
147082
|
route: '/locks/get';
|
|
@@ -149195,6 +149538,7 @@ type Routes = {
|
|
|
149195
149538
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
149196
149539
|
};
|
|
149197
149540
|
};
|
|
149541
|
+
maxDuration: undefined;
|
|
149198
149542
|
};
|
|
149199
149543
|
'/locks/list': {
|
|
149200
149544
|
route: '/locks/list';
|
|
@@ -151689,6 +152033,7 @@ type Routes = {
|
|
|
151689
152033
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
151690
152034
|
}[];
|
|
151691
152035
|
};
|
|
152036
|
+
maxDuration: undefined;
|
|
151692
152037
|
};
|
|
151693
152038
|
'/locks/lock_door': {
|
|
151694
152039
|
route: '/locks/lock_door';
|
|
@@ -152959,6 +153304,7 @@ type Routes = {
|
|
|
152959
153304
|
};
|
|
152960
153305
|
};
|
|
152961
153306
|
};
|
|
153307
|
+
maxDuration: undefined;
|
|
152962
153308
|
};
|
|
152963
153309
|
'/locks/simulate/keypad_code_entry': {
|
|
152964
153310
|
route: '/locks/simulate/keypad_code_entry';
|
|
@@ -154229,6 +154575,7 @@ type Routes = {
|
|
|
154229
154575
|
};
|
|
154230
154576
|
};
|
|
154231
154577
|
};
|
|
154578
|
+
maxDuration: undefined;
|
|
154232
154579
|
};
|
|
154233
154580
|
'/locks/simulate/manual_lock_via_keypad': {
|
|
154234
154581
|
route: '/locks/simulate/manual_lock_via_keypad';
|
|
@@ -155497,6 +155844,7 @@ type Routes = {
|
|
|
155497
155844
|
};
|
|
155498
155845
|
};
|
|
155499
155846
|
};
|
|
155847
|
+
maxDuration: undefined;
|
|
155500
155848
|
};
|
|
155501
155849
|
'/locks/unlock_door': {
|
|
155502
155850
|
route: '/locks/unlock_door';
|
|
@@ -156767,6 +157115,7 @@ type Routes = {
|
|
|
156767
157115
|
};
|
|
156768
157116
|
};
|
|
156769
157117
|
};
|
|
157118
|
+
maxDuration: undefined;
|
|
156770
157119
|
};
|
|
156771
157120
|
'/noise_sensors/list': {
|
|
156772
157121
|
route: '/noise_sensors/list';
|
|
@@ -159261,6 +159610,7 @@ type Routes = {
|
|
|
159261
159610
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
159262
159611
|
}[];
|
|
159263
159612
|
};
|
|
159613
|
+
maxDuration: undefined;
|
|
159264
159614
|
};
|
|
159265
159615
|
'/noise_sensors/noise_thresholds/create': {
|
|
159266
159616
|
route: '/noise_sensors/noise_thresholds/create';
|
|
@@ -160558,6 +160908,7 @@ type Routes = {
|
|
|
160558
160908
|
noise_threshold_decibels: number;
|
|
160559
160909
|
};
|
|
160560
160910
|
};
|
|
160911
|
+
maxDuration: undefined;
|
|
160561
160912
|
};
|
|
160562
160913
|
'/noise_sensors/noise_thresholds/delete': {
|
|
160563
160914
|
route: '/noise_sensors/noise_thresholds/delete';
|
|
@@ -161830,6 +162181,7 @@ type Routes = {
|
|
|
161830
162181
|
};
|
|
161831
162182
|
};
|
|
161832
162183
|
};
|
|
162184
|
+
maxDuration: undefined;
|
|
161833
162185
|
};
|
|
161834
162186
|
'/noise_sensors/noise_thresholds/get': {
|
|
161835
162187
|
route: '/noise_sensors/noise_thresholds/get';
|
|
@@ -161860,6 +162212,7 @@ type Routes = {
|
|
|
161860
162212
|
noise_threshold_decibels: number;
|
|
161861
162213
|
};
|
|
161862
162214
|
};
|
|
162215
|
+
maxDuration: undefined;
|
|
161863
162216
|
};
|
|
161864
162217
|
'/noise_sensors/noise_thresholds/list': {
|
|
161865
162218
|
route: '/noise_sensors/noise_thresholds/list';
|
|
@@ -161891,6 +162244,7 @@ type Routes = {
|
|
|
161891
162244
|
noise_threshold_decibels: number;
|
|
161892
162245
|
}[];
|
|
161893
162246
|
};
|
|
162247
|
+
maxDuration: undefined;
|
|
161894
162248
|
};
|
|
161895
162249
|
'/noise_sensors/noise_thresholds/update': {
|
|
161896
162250
|
route: '/noise_sensors/noise_thresholds/update';
|
|
@@ -163173,6 +163527,7 @@ type Routes = {
|
|
|
163173
163527
|
};
|
|
163174
163528
|
};
|
|
163175
163529
|
};
|
|
163530
|
+
maxDuration: undefined;
|
|
163176
163531
|
};
|
|
163177
163532
|
'/noise_sensors/simulate/trigger_noise_threshold': {
|
|
163178
163533
|
route: '/noise_sensors/simulate/trigger_noise_threshold';
|
|
@@ -163185,6 +163540,7 @@ type Routes = {
|
|
|
163185
163540
|
commonParams: {};
|
|
163186
163541
|
formData: {};
|
|
163187
163542
|
jsonResponse: {};
|
|
163543
|
+
maxDuration: undefined;
|
|
163188
163544
|
};
|
|
163189
163545
|
'/phones/deactivate': {
|
|
163190
163546
|
route: '/phones/deactivate';
|
|
@@ -163197,6 +163553,7 @@ type Routes = {
|
|
|
163197
163553
|
commonParams: {};
|
|
163198
163554
|
formData: {};
|
|
163199
163555
|
jsonResponse: {};
|
|
163556
|
+
maxDuration: undefined;
|
|
163200
163557
|
};
|
|
163201
163558
|
'/phones/get': {
|
|
163202
163559
|
route: '/phones/get';
|
|
@@ -163268,6 +163625,7 @@ type Routes = {
|
|
|
163268
163625
|
};
|
|
163269
163626
|
};
|
|
163270
163627
|
};
|
|
163628
|
+
maxDuration: undefined;
|
|
163271
163629
|
};
|
|
163272
163630
|
'/phones/list': {
|
|
163273
163631
|
route: '/phones/list';
|
|
@@ -163340,6 +163698,7 @@ type Routes = {
|
|
|
163340
163698
|
};
|
|
163341
163699
|
}[];
|
|
163342
163700
|
};
|
|
163701
|
+
maxDuration: undefined;
|
|
163343
163702
|
};
|
|
163344
163703
|
'/phones/simulate/create_sandbox_phone': {
|
|
163345
163704
|
route: '/phones/simulate/create_sandbox_phone';
|
|
@@ -163439,6 +163798,7 @@ type Routes = {
|
|
|
163439
163798
|
};
|
|
163440
163799
|
};
|
|
163441
163800
|
};
|
|
163801
|
+
maxDuration: undefined;
|
|
163442
163802
|
};
|
|
163443
163803
|
'/seam/bridge/v1/bridge_client_sessions/create': {
|
|
163444
163804
|
route: '/seam/bridge/v1/bridge_client_sessions/create';
|
|
@@ -163511,6 +163871,7 @@ type Routes = {
|
|
|
163511
163871
|
telemetry_url: string | null;
|
|
163512
163872
|
};
|
|
163513
163873
|
};
|
|
163874
|
+
maxDuration: undefined;
|
|
163514
163875
|
};
|
|
163515
163876
|
'/seam/bridge/v1/bridge_client_sessions/get': {
|
|
163516
163877
|
route: '/seam/bridge/v1/bridge_client_sessions/get';
|
|
@@ -163576,6 +163937,7 @@ type Routes = {
|
|
|
163576
163937
|
telemetry_url: string | null;
|
|
163577
163938
|
};
|
|
163578
163939
|
};
|
|
163940
|
+
maxDuration: undefined;
|
|
163579
163941
|
};
|
|
163580
163942
|
'/seam/bridge/v1/bridge_client_sessions/refresh_telemetry_token': {
|
|
163581
163943
|
route: '/seam/bridge/v1/bridge_client_sessions/refresh_telemetry_token';
|
|
@@ -163641,6 +164003,7 @@ type Routes = {
|
|
|
163641
164003
|
telemetry_url: string | null;
|
|
163642
164004
|
};
|
|
163643
164005
|
};
|
|
164006
|
+
maxDuration: undefined;
|
|
163644
164007
|
};
|
|
163645
164008
|
'/seam/bridge/v1/bridge_client_sessions/regenerate_pairing_code': {
|
|
163646
164009
|
route: '/seam/bridge/v1/bridge_client_sessions/regenerate_pairing_code';
|
|
@@ -163706,6 +164069,7 @@ type Routes = {
|
|
|
163706
164069
|
telemetry_url: string | null;
|
|
163707
164070
|
};
|
|
163708
164071
|
};
|
|
164072
|
+
maxDuration: undefined;
|
|
163709
164073
|
};
|
|
163710
164074
|
'/seam/bridge/v1/bridge_client_sessions/report_status': {
|
|
163711
164075
|
route: '/seam/bridge/v1/bridge_client_sessions/report_status';
|
|
@@ -163720,6 +164084,7 @@ type Routes = {
|
|
|
163720
164084
|
commonParams: {};
|
|
163721
164085
|
formData: {};
|
|
163722
164086
|
jsonResponse: {};
|
|
164087
|
+
maxDuration: undefined;
|
|
163723
164088
|
};
|
|
163724
164089
|
'/seam/bridge/v1/bridge_connected_systems/list': {
|
|
163725
164090
|
route: '/seam/bridge/v1/bridge_connected_systems/list';
|
|
@@ -163748,6 +164113,7 @@ type Routes = {
|
|
|
163748
164113
|
workspace_display_name: string;
|
|
163749
164114
|
}[];
|
|
163750
164115
|
};
|
|
164116
|
+
maxDuration: undefined;
|
|
163751
164117
|
};
|
|
163752
164118
|
'/seam/console/v1/get_resource_locator': {
|
|
163753
164119
|
route: '/seam/console/v1/get_resource_locator';
|
|
@@ -163765,6 +164131,7 @@ type Routes = {
|
|
|
163765
164131
|
device_id?: string | undefined;
|
|
163766
164132
|
};
|
|
163767
164133
|
};
|
|
164134
|
+
maxDuration: undefined;
|
|
163768
164135
|
};
|
|
163769
164136
|
'/seam/console/v1/timelines/get': {
|
|
163770
164137
|
route: '/seam/console/v1/timelines/get';
|
|
@@ -163845,6 +164212,7 @@ type Routes = {
|
|
|
163845
164212
|
next_page_url: string | null;
|
|
163846
164213
|
};
|
|
163847
164214
|
};
|
|
164215
|
+
maxDuration: undefined;
|
|
163848
164216
|
};
|
|
163849
164217
|
'/seam/customer/v1/access_grants/list': {
|
|
163850
164218
|
route: '/seam/customer/v1/access_grants/list';
|
|
@@ -163912,6 +164280,7 @@ type Routes = {
|
|
|
163912
164280
|
customization_profile_id?: string | undefined;
|
|
163913
164281
|
}[];
|
|
163914
164282
|
};
|
|
164283
|
+
maxDuration: undefined;
|
|
163915
164284
|
};
|
|
163916
164285
|
'/seam/customer/v1/automation_runs/list': {
|
|
163917
164286
|
route: '/seam/customer/v1/automation_runs/list';
|
|
@@ -163966,6 +164335,7 @@ type Routes = {
|
|
|
163966
164335
|
next_page_url: string | null;
|
|
163967
164336
|
};
|
|
163968
164337
|
};
|
|
164338
|
+
maxDuration: undefined;
|
|
163969
164339
|
};
|
|
163970
164340
|
'/seam/customer/v1/automations/delete': {
|
|
163971
164341
|
route: '/seam/customer/v1/automations/delete';
|
|
@@ -163975,6 +164345,7 @@ type Routes = {
|
|
|
163975
164345
|
commonParams: {};
|
|
163976
164346
|
formData: {};
|
|
163977
164347
|
jsonResponse: {};
|
|
164348
|
+
maxDuration: undefined;
|
|
163978
164349
|
};
|
|
163979
164350
|
'/seam/customer/v1/automations/get': {
|
|
163980
164351
|
route: '/seam/customer/v1/automations/get';
|
|
@@ -164048,6 +164419,7 @@ type Routes = {
|
|
|
164048
164419
|
};
|
|
164049
164420
|
} | undefined;
|
|
164050
164421
|
};
|
|
164422
|
+
maxDuration: undefined;
|
|
164051
164423
|
};
|
|
164052
164424
|
'/seam/customer/v1/automations/update': {
|
|
164053
164425
|
route: '/seam/customer/v1/automations/update';
|
|
@@ -164123,6 +164495,7 @@ type Routes = {
|
|
|
164123
164495
|
commonParams: {};
|
|
164124
164496
|
formData: {};
|
|
164125
164497
|
jsonResponse: {};
|
|
164498
|
+
maxDuration: undefined;
|
|
164126
164499
|
};
|
|
164127
164500
|
'/seam/customer/v1/connectors/connector_types': {
|
|
164128
164501
|
route: '/seam/customer/v1/connectors/connector_types';
|
|
@@ -164145,6 +164518,7 @@ type Routes = {
|
|
|
164145
164518
|
}[];
|
|
164146
164519
|
}[];
|
|
164147
164520
|
};
|
|
164521
|
+
maxDuration: undefined;
|
|
164148
164522
|
};
|
|
164149
164523
|
'/seam/customer/v1/connectors/create': {
|
|
164150
164524
|
route: '/seam/customer/v1/connectors/create';
|
|
@@ -164176,6 +164550,7 @@ type Routes = {
|
|
|
164176
164550
|
error?: string | undefined;
|
|
164177
164551
|
};
|
|
164178
164552
|
};
|
|
164553
|
+
maxDuration: undefined;
|
|
164179
164554
|
};
|
|
164180
164555
|
'/seam/customer/v1/connectors/delete': {
|
|
164181
164556
|
route: '/seam/customer/v1/connectors/delete';
|
|
@@ -164194,6 +164569,7 @@ type Routes = {
|
|
|
164194
164569
|
status: 'deleted';
|
|
164195
164570
|
};
|
|
164196
164571
|
};
|
|
164572
|
+
maxDuration: undefined;
|
|
164197
164573
|
};
|
|
164198
164574
|
'/seam/customer/v1/connectors/list': {
|
|
164199
164575
|
route: '/seam/customer/v1/connectors/list';
|
|
@@ -164214,6 +164590,7 @@ type Routes = {
|
|
|
164214
164590
|
updated_at: string;
|
|
164215
164591
|
}[];
|
|
164216
164592
|
};
|
|
164593
|
+
maxDuration: undefined;
|
|
164217
164594
|
};
|
|
164218
164595
|
'/seam/customer/v1/connectors/sync': {
|
|
164219
164596
|
route: '/seam/customer/v1/connectors/sync';
|
|
@@ -164232,6 +164609,7 @@ type Routes = {
|
|
|
164232
164609
|
message: string;
|
|
164233
164610
|
};
|
|
164234
164611
|
};
|
|
164612
|
+
maxDuration: undefined;
|
|
164235
164613
|
};
|
|
164236
164614
|
'/seam/customer/v1/connectors/update': {
|
|
164237
164615
|
route: '/seam/customer/v1/connectors/update';
|
|
@@ -164275,6 +164653,7 @@ type Routes = {
|
|
|
164275
164653
|
error?: string | undefined;
|
|
164276
164654
|
};
|
|
164277
164655
|
};
|
|
164656
|
+
maxDuration: undefined;
|
|
164278
164657
|
};
|
|
164279
164658
|
'/seam/customer/v1/events/list': {
|
|
164280
164659
|
route: '/seam/customer/v1/events/list';
|
|
@@ -166213,6 +166592,7 @@ type Routes = {
|
|
|
166213
166592
|
acs_entrance_ids: string[];
|
|
166214
166593
|
})[];
|
|
166215
166594
|
};
|
|
166595
|
+
maxDuration: undefined;
|
|
166216
166596
|
};
|
|
166217
166597
|
'/seam/customer/v1/portals/get': {
|
|
166218
166598
|
route: '/seam/customer/v1/portals/get';
|
|
@@ -166308,6 +166688,7 @@ type Routes = {
|
|
|
166308
166688
|
business_vertical?: ('short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
|
|
166309
166689
|
};
|
|
166310
166690
|
};
|
|
166691
|
+
maxDuration: undefined;
|
|
166311
166692
|
};
|
|
166312
166693
|
'/seam/customer/v1/reservations/get': {
|
|
166313
166694
|
route: '/seam/customer/v1/reservations/get';
|
|
@@ -166344,6 +166725,7 @@ type Routes = {
|
|
|
166344
166725
|
}[];
|
|
166345
166726
|
};
|
|
166346
166727
|
};
|
|
166728
|
+
maxDuration: undefined;
|
|
166347
166729
|
};
|
|
166348
166730
|
'/seam/customer/v1/reservations/list': {
|
|
166349
166731
|
route: '/seam/customer/v1/reservations/list';
|
|
@@ -166395,6 +166777,7 @@ type Routes = {
|
|
|
166395
166777
|
next_page_url: string | null;
|
|
166396
166778
|
};
|
|
166397
166779
|
};
|
|
166780
|
+
maxDuration: undefined;
|
|
166398
166781
|
};
|
|
166399
166782
|
'/seam/customer/v1/settings/get': {
|
|
166400
166783
|
route: '/seam/customer/v1/settings/get';
|
|
@@ -166407,6 +166790,7 @@ type Routes = {
|
|
|
166407
166790
|
/** Business vertical of the customer portal. */
|
|
166408
166791
|
business_vertical?: ('short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
|
|
166409
166792
|
};
|
|
166793
|
+
maxDuration: undefined;
|
|
166410
166794
|
};
|
|
166411
166795
|
'/seam/customer/v1/settings/update': {
|
|
166412
166796
|
route: '/seam/customer/v1/settings/update';
|
|
@@ -166419,6 +166803,7 @@ type Routes = {
|
|
|
166419
166803
|
commonParams: {};
|
|
166420
166804
|
formData: {};
|
|
166421
166805
|
jsonResponse: {};
|
|
166806
|
+
maxDuration: undefined;
|
|
166422
166807
|
};
|
|
166423
166808
|
'/seam/customer/v1/spaces/create': {
|
|
166424
166809
|
route: '/seam/customer/v1/spaces/create';
|
|
@@ -166465,6 +166850,7 @@ type Routes = {
|
|
|
166465
166850
|
parent_space_key?: string | undefined;
|
|
166466
166851
|
};
|
|
166467
166852
|
};
|
|
166853
|
+
maxDuration: undefined;
|
|
166468
166854
|
};
|
|
166469
166855
|
'/seam/customer/v1/spaces/list': {
|
|
166470
166856
|
route: '/seam/customer/v1/spaces/list';
|
|
@@ -166504,6 +166890,7 @@ type Routes = {
|
|
|
166504
166890
|
parent_space_key?: string | undefined;
|
|
166505
166891
|
}[];
|
|
166506
166892
|
};
|
|
166893
|
+
maxDuration: undefined;
|
|
166507
166894
|
};
|
|
166508
166895
|
'/seam/customer/v1/staff_members/get': {
|
|
166509
166896
|
route: '/seam/customer/v1/staff_members/get';
|
|
@@ -166593,6 +166980,7 @@ type Routes = {
|
|
|
166593
166980
|
user_identity_id?: string | undefined;
|
|
166594
166981
|
};
|
|
166595
166982
|
};
|
|
166983
|
+
maxDuration: undefined;
|
|
166596
166984
|
};
|
|
166597
166985
|
'/seam/customer/v1/staff_members/list': {
|
|
166598
166986
|
route: '/seam/customer/v1/staff_members/list';
|
|
@@ -166636,6 +167024,7 @@ type Routes = {
|
|
|
166636
167024
|
next_page_url: string | null;
|
|
166637
167025
|
};
|
|
166638
167026
|
};
|
|
167027
|
+
maxDuration: undefined;
|
|
166639
167028
|
};
|
|
166640
167029
|
'/seam/instant_key/v1/client_sessions/exchange_short_code': {
|
|
166641
167030
|
route: '/seam/instant_key/v1/client_sessions/exchange_short_code';
|
|
@@ -166685,6 +167074,7 @@ type Routes = {
|
|
|
166685
167074
|
user_identity_id?: string | undefined;
|
|
166686
167075
|
};
|
|
166687
167076
|
};
|
|
167077
|
+
maxDuration: undefined;
|
|
166688
167078
|
};
|
|
166689
167079
|
'/seam/instant_key/v1/preview/get': {
|
|
166690
167080
|
route: '/seam/instant_key/v1/preview/get';
|
|
@@ -166736,6 +167126,7 @@ type Routes = {
|
|
|
166736
167126
|
expires_at: string;
|
|
166737
167127
|
};
|
|
166738
167128
|
};
|
|
167129
|
+
maxDuration: undefined;
|
|
166739
167130
|
};
|
|
166740
167131
|
'/seam/mobile_sdk/v1/acs/credentials/list': {
|
|
166741
167132
|
route: '/seam/mobile_sdk/v1/acs/credentials/list';
|
|
@@ -166877,6 +167268,7 @@ type Routes = {
|
|
|
166877
167268
|
is_managed: true;
|
|
166878
167269
|
}[];
|
|
166879
167270
|
};
|
|
167271
|
+
maxDuration: undefined;
|
|
166880
167272
|
};
|
|
166881
167273
|
'/seam/mobile_sdk/v1/phone_sessions/get_or_create': {
|
|
166882
167274
|
route: '/seam/mobile_sdk/v1/phone_sessions/get_or_create';
|
|
@@ -167144,6 +167536,8 @@ type Routes = {
|
|
|
167144
167536
|
door_name?: string | undefined;
|
|
167145
167537
|
/** Description of the door in the Salto Space access system. */
|
|
167146
167538
|
door_description?: string | undefined;
|
|
167539
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
167540
|
+
audit_on_keys?: boolean | undefined;
|
|
167147
167541
|
/** Name of the room in the Salto Space access system. */
|
|
167148
167542
|
room_name?: string | undefined;
|
|
167149
167543
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -167217,6 +167611,7 @@ type Routes = {
|
|
|
167217
167611
|
workspace_id: string;
|
|
167218
167612
|
};
|
|
167219
167613
|
};
|
|
167614
|
+
maxDuration: undefined;
|
|
167220
167615
|
};
|
|
167221
167616
|
'/seam/mobile_sdk/v1/report_salto_space_audit_trail': {
|
|
167222
167617
|
route: '/seam/mobile_sdk/v1/report_salto_space_audit_trail';
|
|
@@ -167231,6 +167626,7 @@ type Routes = {
|
|
|
167231
167626
|
commonParams: {};
|
|
167232
167627
|
formData: {};
|
|
167233
167628
|
jsonResponse: {};
|
|
167629
|
+
maxDuration: undefined;
|
|
167234
167630
|
};
|
|
167235
167631
|
'/seam/partner/v1/building_blocks/spaces/auto_map': {
|
|
167236
167632
|
route: '/seam/partner/v1/building_blocks/spaces/auto_map';
|
|
@@ -167260,6 +167656,7 @@ type Routes = {
|
|
|
167260
167656
|
is_draft?: boolean | undefined;
|
|
167261
167657
|
}[];
|
|
167262
167658
|
};
|
|
167659
|
+
maxDuration: undefined;
|
|
167263
167660
|
};
|
|
167264
167661
|
'/spaces/add_acs_entrances': {
|
|
167265
167662
|
route: '/spaces/add_acs_entrances';
|
|
@@ -167274,6 +167671,7 @@ type Routes = {
|
|
|
167274
167671
|
commonParams: {};
|
|
167275
167672
|
formData: {};
|
|
167276
167673
|
jsonResponse: {};
|
|
167674
|
+
maxDuration: undefined;
|
|
167277
167675
|
};
|
|
167278
167676
|
'/spaces/add_devices': {
|
|
167279
167677
|
route: '/spaces/add_devices';
|
|
@@ -167288,6 +167686,7 @@ type Routes = {
|
|
|
167288
167686
|
commonParams: {};
|
|
167289
167687
|
formData: {};
|
|
167290
167688
|
jsonResponse: {};
|
|
167689
|
+
maxDuration: undefined;
|
|
167291
167690
|
};
|
|
167292
167691
|
'/spaces/create': {
|
|
167293
167692
|
route: '/spaces/create';
|
|
@@ -167332,6 +167731,7 @@ type Routes = {
|
|
|
167332
167731
|
parent_space_key?: string | undefined;
|
|
167333
167732
|
};
|
|
167334
167733
|
};
|
|
167734
|
+
maxDuration: undefined;
|
|
167335
167735
|
};
|
|
167336
167736
|
'/spaces/delete': {
|
|
167337
167737
|
route: '/spaces/delete';
|
|
@@ -167344,6 +167744,7 @@ type Routes = {
|
|
|
167344
167744
|
commonParams: {};
|
|
167345
167745
|
formData: {};
|
|
167346
167746
|
jsonResponse: {};
|
|
167747
|
+
maxDuration: undefined;
|
|
167347
167748
|
};
|
|
167348
167749
|
'/spaces/get': {
|
|
167349
167750
|
route: '/spaces/get';
|
|
@@ -167383,6 +167784,7 @@ type Routes = {
|
|
|
167383
167784
|
parent_space_key?: string | undefined;
|
|
167384
167785
|
};
|
|
167385
167786
|
};
|
|
167787
|
+
maxDuration: undefined;
|
|
167386
167788
|
};
|
|
167387
167789
|
'/spaces/get_related': {
|
|
167388
167790
|
route: '/spaces/get_related';
|
|
@@ -168747,6 +169149,8 @@ type Routes = {
|
|
|
168747
169149
|
door_name?: string | undefined;
|
|
168748
169150
|
/** Description of the door in the Salto Space access system. */
|
|
168749
169151
|
door_description?: string | undefined;
|
|
169152
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
169153
|
+
audit_on_keys?: boolean | undefined;
|
|
168750
169154
|
/** Name of the room in the Salto Space access system. */
|
|
168751
169155
|
room_name?: string | undefined;
|
|
168752
169156
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -169012,6 +169416,7 @@ type Routes = {
|
|
|
169012
169416
|
}[] | undefined;
|
|
169013
169417
|
};
|
|
169014
169418
|
};
|
|
169419
|
+
maxDuration: undefined;
|
|
169015
169420
|
};
|
|
169016
169421
|
'/spaces/list': {
|
|
169017
169422
|
route: '/spaces/list';
|
|
@@ -169053,6 +169458,7 @@ type Routes = {
|
|
|
169053
169458
|
parent_space_key?: string | undefined;
|
|
169054
169459
|
}[];
|
|
169055
169460
|
};
|
|
169461
|
+
maxDuration: undefined;
|
|
169056
169462
|
};
|
|
169057
169463
|
'/spaces/remove_acs_entrances': {
|
|
169058
169464
|
route: '/spaces/remove_acs_entrances';
|
|
@@ -169067,6 +169473,7 @@ type Routes = {
|
|
|
169067
169473
|
};
|
|
169068
169474
|
formData: {};
|
|
169069
169475
|
jsonResponse: {};
|
|
169476
|
+
maxDuration: undefined;
|
|
169070
169477
|
};
|
|
169071
169478
|
'/spaces/remove_devices': {
|
|
169072
169479
|
route: '/spaces/remove_devices';
|
|
@@ -169081,6 +169488,7 @@ type Routes = {
|
|
|
169081
169488
|
};
|
|
169082
169489
|
formData: {};
|
|
169083
169490
|
jsonResponse: {};
|
|
169491
|
+
maxDuration: undefined;
|
|
169084
169492
|
};
|
|
169085
169493
|
'/spaces/update': {
|
|
169086
169494
|
route: '/spaces/update';
|
|
@@ -169127,6 +169535,7 @@ type Routes = {
|
|
|
169127
169535
|
parent_space_key?: string | undefined;
|
|
169128
169536
|
};
|
|
169129
169537
|
};
|
|
169538
|
+
maxDuration: undefined;
|
|
169130
169539
|
};
|
|
169131
169540
|
'/thermostats/activate_climate_preset': {
|
|
169132
169541
|
route: '/thermostats/activate_climate_preset';
|
|
@@ -170397,6 +170806,7 @@ type Routes = {
|
|
|
170397
170806
|
};
|
|
170398
170807
|
};
|
|
170399
170808
|
};
|
|
170809
|
+
maxDuration: undefined;
|
|
170400
170810
|
};
|
|
170401
170811
|
'/thermostats/cool': {
|
|
170402
170812
|
route: '/thermostats/cool';
|
|
@@ -171671,6 +172081,7 @@ type Routes = {
|
|
|
171671
172081
|
};
|
|
171672
172082
|
};
|
|
171673
172083
|
};
|
|
172084
|
+
maxDuration: undefined;
|
|
171674
172085
|
};
|
|
171675
172086
|
'/thermostats/create_climate_preset': {
|
|
171676
172087
|
route: '/thermostats/create_climate_preset';
|
|
@@ -171717,6 +172128,7 @@ type Routes = {
|
|
|
171717
172128
|
commonParams: {};
|
|
171718
172129
|
formData: {};
|
|
171719
172130
|
jsonResponse: {};
|
|
172131
|
+
maxDuration: undefined;
|
|
171720
172132
|
};
|
|
171721
172133
|
'/thermostats/daily_programs/create': {
|
|
171722
172134
|
route: '/thermostats/daily_programs/create';
|
|
@@ -171759,6 +172171,7 @@ type Routes = {
|
|
|
171759
172171
|
created_at: string;
|
|
171760
172172
|
};
|
|
171761
172173
|
};
|
|
172174
|
+
maxDuration: undefined;
|
|
171762
172175
|
};
|
|
171763
172176
|
'/thermostats/daily_programs/delete': {
|
|
171764
172177
|
route: '/thermostats/daily_programs/delete';
|
|
@@ -171771,6 +172184,7 @@ type Routes = {
|
|
|
171771
172184
|
};
|
|
171772
172185
|
formData: {};
|
|
171773
172186
|
jsonResponse: {};
|
|
172187
|
+
maxDuration: undefined;
|
|
171774
172188
|
};
|
|
171775
172189
|
'/thermostats/daily_programs/update': {
|
|
171776
172190
|
route: '/thermostats/daily_programs/update';
|
|
@@ -173048,6 +173462,7 @@ type Routes = {
|
|
|
173048
173462
|
};
|
|
173049
173463
|
};
|
|
173050
173464
|
};
|
|
173465
|
+
maxDuration: undefined;
|
|
173051
173466
|
};
|
|
173052
173467
|
'/thermostats/delete_climate_preset': {
|
|
173053
173468
|
route: '/thermostats/delete_climate_preset';
|
|
@@ -173062,6 +173477,7 @@ type Routes = {
|
|
|
173062
173477
|
commonParams: {};
|
|
173063
173478
|
formData: {};
|
|
173064
173479
|
jsonResponse: {};
|
|
173480
|
+
maxDuration: undefined;
|
|
173065
173481
|
};
|
|
173066
173482
|
'/thermostats/get': {
|
|
173067
173483
|
route: '/thermostats/get';
|
|
@@ -174300,6 +174716,7 @@ type Routes = {
|
|
|
174300
174716
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
174301
174717
|
};
|
|
174302
174718
|
};
|
|
174719
|
+
maxDuration: undefined;
|
|
174303
174720
|
};
|
|
174304
174721
|
'/thermostats/heat': {
|
|
174305
174722
|
route: '/thermostats/heat';
|
|
@@ -175574,6 +175991,7 @@ type Routes = {
|
|
|
175574
175991
|
};
|
|
175575
175992
|
};
|
|
175576
175993
|
};
|
|
175994
|
+
maxDuration: undefined;
|
|
175577
175995
|
};
|
|
175578
175996
|
'/thermostats/heat_cool': {
|
|
175579
175997
|
route: '/thermostats/heat_cool';
|
|
@@ -176852,6 +177270,7 @@ type Routes = {
|
|
|
176852
177270
|
};
|
|
176853
177271
|
};
|
|
176854
177272
|
};
|
|
177273
|
+
maxDuration: undefined;
|
|
176855
177274
|
};
|
|
176856
177275
|
'/thermostats/list': {
|
|
176857
177276
|
route: '/thermostats/list';
|
|
@@ -179346,6 +179765,7 @@ type Routes = {
|
|
|
179346
179765
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
179347
179766
|
}[];
|
|
179348
179767
|
};
|
|
179768
|
+
maxDuration: undefined;
|
|
179349
179769
|
};
|
|
179350
179770
|
'/thermostats/off': {
|
|
179351
179771
|
route: '/thermostats/off';
|
|
@@ -180616,6 +181036,7 @@ type Routes = {
|
|
|
180616
181036
|
};
|
|
180617
181037
|
};
|
|
180618
181038
|
};
|
|
181039
|
+
maxDuration: undefined;
|
|
180619
181040
|
};
|
|
180620
181041
|
'/thermostats/schedules/create': {
|
|
180621
181042
|
route: '/thermostats/schedules/create';
|
|
@@ -180671,6 +181092,7 @@ type Routes = {
|
|
|
180671
181092
|
}[];
|
|
180672
181093
|
};
|
|
180673
181094
|
};
|
|
181095
|
+
maxDuration: undefined;
|
|
180674
181096
|
};
|
|
180675
181097
|
'/thermostats/schedules/delete': {
|
|
180676
181098
|
route: '/thermostats/schedules/delete';
|
|
@@ -180683,6 +181105,7 @@ type Routes = {
|
|
|
180683
181105
|
};
|
|
180684
181106
|
formData: {};
|
|
180685
181107
|
jsonResponse: {};
|
|
181108
|
+
maxDuration: undefined;
|
|
180686
181109
|
};
|
|
180687
181110
|
'/thermostats/schedules/get': {
|
|
180688
181111
|
route: '/thermostats/schedules/get';
|
|
@@ -180726,6 +181149,7 @@ type Routes = {
|
|
|
180726
181149
|
}[];
|
|
180727
181150
|
};
|
|
180728
181151
|
};
|
|
181152
|
+
maxDuration: undefined;
|
|
180729
181153
|
};
|
|
180730
181154
|
'/thermostats/schedules/list': {
|
|
180731
181155
|
route: '/thermostats/schedules/list';
|
|
@@ -180770,6 +181194,7 @@ type Routes = {
|
|
|
180770
181194
|
}[];
|
|
180771
181195
|
}[];
|
|
180772
181196
|
};
|
|
181197
|
+
maxDuration: undefined;
|
|
180773
181198
|
};
|
|
180774
181199
|
'/thermostats/schedules/update': {
|
|
180775
181200
|
route: '/thermostats/schedules/update';
|
|
@@ -180794,6 +181219,7 @@ type Routes = {
|
|
|
180794
181219
|
commonParams: {};
|
|
180795
181220
|
formData: {};
|
|
180796
181221
|
jsonResponse: {};
|
|
181222
|
+
maxDuration: undefined;
|
|
180797
181223
|
};
|
|
180798
181224
|
'/thermostats/set_fallback_climate_preset': {
|
|
180799
181225
|
route: '/thermostats/set_fallback_climate_preset';
|
|
@@ -180808,6 +181234,7 @@ type Routes = {
|
|
|
180808
181234
|
commonParams: {};
|
|
180809
181235
|
formData: {};
|
|
180810
181236
|
jsonResponse: {};
|
|
181237
|
+
maxDuration: undefined;
|
|
180811
181238
|
};
|
|
180812
181239
|
'/thermostats/set_fan_mode': {
|
|
180813
181240
|
route: '/thermostats/set_fan_mode';
|
|
@@ -182083,6 +182510,7 @@ type Routes = {
|
|
|
182083
182510
|
};
|
|
182084
182511
|
};
|
|
182085
182512
|
};
|
|
182513
|
+
maxDuration: undefined;
|
|
182086
182514
|
};
|
|
182087
182515
|
'/thermostats/set_hvac_mode': {
|
|
182088
182516
|
route: '/thermostats/set_hvac_mode';
|
|
@@ -183384,6 +183812,7 @@ type Routes = {
|
|
|
183384
183812
|
};
|
|
183385
183813
|
};
|
|
183386
183814
|
};
|
|
183815
|
+
maxDuration: undefined;
|
|
183387
183816
|
};
|
|
183388
183817
|
'/thermostats/set_temperature_threshold': {
|
|
183389
183818
|
route: '/thermostats/set_temperature_threshold';
|
|
@@ -183404,6 +183833,7 @@ type Routes = {
|
|
|
183404
183833
|
commonParams: {};
|
|
183405
183834
|
formData: {};
|
|
183406
183835
|
jsonResponse: {};
|
|
183836
|
+
maxDuration: undefined;
|
|
183407
183837
|
};
|
|
183408
183838
|
'/thermostats/simulate/hvac_mode_adjusted': {
|
|
183409
183839
|
route: '/thermostats/simulate/hvac_mode_adjusted';
|
|
@@ -183449,6 +183879,7 @@ type Routes = {
|
|
|
183449
183879
|
commonParams: {};
|
|
183450
183880
|
formData: {};
|
|
183451
183881
|
jsonResponse: {};
|
|
183882
|
+
maxDuration: undefined;
|
|
183452
183883
|
};
|
|
183453
183884
|
'/thermostats/simulate/temperature_reached': {
|
|
183454
183885
|
route: '/thermostats/simulate/temperature_reached';
|
|
@@ -183465,6 +183896,7 @@ type Routes = {
|
|
|
183465
183896
|
commonParams: {};
|
|
183466
183897
|
formData: {};
|
|
183467
183898
|
jsonResponse: {};
|
|
183899
|
+
maxDuration: undefined;
|
|
183468
183900
|
};
|
|
183469
183901
|
'/thermostats/update_climate_preset': {
|
|
183470
183902
|
route: '/thermostats/update_climate_preset';
|
|
@@ -183511,6 +183943,7 @@ type Routes = {
|
|
|
183511
183943
|
commonParams: {};
|
|
183512
183944
|
formData: {};
|
|
183513
183945
|
jsonResponse: {};
|
|
183946
|
+
maxDuration: undefined;
|
|
183514
183947
|
};
|
|
183515
183948
|
'/thermostats/update_weekly_program': {
|
|
183516
183949
|
route: '/thermostats/update_weekly_program';
|
|
@@ -184793,6 +185226,7 @@ type Routes = {
|
|
|
184793
185226
|
};
|
|
184794
185227
|
};
|
|
184795
185228
|
};
|
|
185229
|
+
maxDuration: undefined;
|
|
184796
185230
|
};
|
|
184797
185231
|
'/unstable_partner/building_blocks/connect_accounts': {
|
|
184798
185232
|
route: '/unstable_partner/building_blocks/connect_accounts';
|
|
@@ -184823,6 +185257,7 @@ type Routes = {
|
|
|
184823
185257
|
created_at: string;
|
|
184824
185258
|
};
|
|
184825
185259
|
};
|
|
185260
|
+
maxDuration: undefined;
|
|
184826
185261
|
};
|
|
184827
185262
|
'/unstable_partner/building_blocks/generate_magic_link': {
|
|
184828
185263
|
route: '/unstable_partner/building_blocks/generate_magic_link';
|
|
@@ -184862,6 +185297,7 @@ type Routes = {
|
|
|
184862
185297
|
created_at: string;
|
|
184863
185298
|
};
|
|
184864
185299
|
};
|
|
185300
|
+
maxDuration: undefined;
|
|
184865
185301
|
};
|
|
184866
185302
|
'/unstable_partner/building_blocks/manage_devices': {
|
|
184867
185303
|
route: '/unstable_partner/building_blocks/manage_devices';
|
|
@@ -184892,6 +185328,7 @@ type Routes = {
|
|
|
184892
185328
|
created_at: string;
|
|
184893
185329
|
};
|
|
184894
185330
|
};
|
|
185331
|
+
maxDuration: undefined;
|
|
184895
185332
|
};
|
|
184896
185333
|
'/unstable_partner/building_blocks/organize_spaces': {
|
|
184897
185334
|
route: '/unstable_partner/building_blocks/organize_spaces';
|
|
@@ -184929,6 +185366,7 @@ type Routes = {
|
|
|
184929
185366
|
created_at: string;
|
|
184930
185367
|
};
|
|
184931
185368
|
};
|
|
185369
|
+
maxDuration: undefined;
|
|
184932
185370
|
};
|
|
184933
185371
|
'/user_identities/add_acs_user': {
|
|
184934
185372
|
route: '/user_identities/add_acs_user';
|
|
@@ -184945,6 +185383,7 @@ type Routes = {
|
|
|
184945
185383
|
};
|
|
184946
185384
|
formData: {};
|
|
184947
185385
|
jsonResponse: {};
|
|
185386
|
+
maxDuration: undefined;
|
|
184948
185387
|
};
|
|
184949
185388
|
'/user_identities/create': {
|
|
184950
185389
|
route: '/user_identities/create';
|
|
@@ -185014,6 +185453,7 @@ type Routes = {
|
|
|
185014
185453
|
acs_user_ids: string[];
|
|
185015
185454
|
};
|
|
185016
185455
|
};
|
|
185456
|
+
maxDuration: undefined;
|
|
185017
185457
|
};
|
|
185018
185458
|
'/user_identities/delete': {
|
|
185019
185459
|
route: '/user_identities/delete';
|
|
@@ -185026,6 +185466,7 @@ type Routes = {
|
|
|
185026
185466
|
};
|
|
185027
185467
|
formData: {};
|
|
185028
185468
|
jsonResponse: {};
|
|
185469
|
+
maxDuration: undefined;
|
|
185029
185470
|
};
|
|
185030
185471
|
'/user_identities/enrollment_automations/delete': {
|
|
185031
185472
|
route: '/user_identities/enrollment_automations/delete';
|
|
@@ -185038,6 +185479,7 @@ type Routes = {
|
|
|
185038
185479
|
};
|
|
185039
185480
|
formData: {};
|
|
185040
185481
|
jsonResponse: {};
|
|
185482
|
+
maxDuration: undefined;
|
|
185041
185483
|
};
|
|
185042
185484
|
'/user_identities/enrollment_automations/get': {
|
|
185043
185485
|
route: '/user_identities/enrollment_automations/get';
|
|
@@ -185064,6 +185506,7 @@ type Routes = {
|
|
|
185064
185506
|
workspace_id: string;
|
|
185065
185507
|
};
|
|
185066
185508
|
};
|
|
185509
|
+
maxDuration: undefined;
|
|
185067
185510
|
};
|
|
185068
185511
|
'/user_identities/enrollment_automations/launch': {
|
|
185069
185512
|
route: '/user_identities/enrollment_automations/launch';
|
|
@@ -185098,6 +185541,7 @@ type Routes = {
|
|
|
185098
185541
|
workspace_id: string;
|
|
185099
185542
|
};
|
|
185100
185543
|
};
|
|
185544
|
+
maxDuration: undefined;
|
|
185101
185545
|
};
|
|
185102
185546
|
'/user_identities/enrollment_automations/list': {
|
|
185103
185547
|
route: '/user_identities/enrollment_automations/list';
|
|
@@ -185123,6 +185567,7 @@ type Routes = {
|
|
|
185123
185567
|
workspace_id: string;
|
|
185124
185568
|
}[];
|
|
185125
185569
|
};
|
|
185570
|
+
maxDuration: undefined;
|
|
185126
185571
|
};
|
|
185127
185572
|
'/user_identities/generate_instant_key': {
|
|
185128
185573
|
route: '/user_identities/generate_instant_key';
|
|
@@ -185169,6 +185614,7 @@ type Routes = {
|
|
|
185169
185614
|
} | undefined;
|
|
185170
185615
|
};
|
|
185171
185616
|
};
|
|
185617
|
+
maxDuration: undefined;
|
|
185172
185618
|
};
|
|
185173
185619
|
'/user_identities/get': {
|
|
185174
185620
|
route: '/user_identities/get';
|
|
@@ -185232,6 +185678,7 @@ type Routes = {
|
|
|
185232
185678
|
acs_user_ids: string[];
|
|
185233
185679
|
};
|
|
185234
185680
|
};
|
|
185681
|
+
maxDuration: undefined;
|
|
185235
185682
|
};
|
|
185236
185683
|
'/user_identities/grant_access_to_device': {
|
|
185237
185684
|
route: '/user_identities/grant_access_to_device';
|
|
@@ -185246,6 +185693,7 @@ type Routes = {
|
|
|
185246
185693
|
};
|
|
185247
185694
|
formData: {};
|
|
185248
185695
|
jsonResponse: {};
|
|
185696
|
+
maxDuration: undefined;
|
|
185249
185697
|
};
|
|
185250
185698
|
'/user_identities/list': {
|
|
185251
185699
|
route: '/user_identities/list';
|
|
@@ -185323,6 +185771,7 @@ type Routes = {
|
|
|
185323
185771
|
next_page_url: string | null;
|
|
185324
185772
|
};
|
|
185325
185773
|
};
|
|
185774
|
+
maxDuration: undefined;
|
|
185326
185775
|
};
|
|
185327
185776
|
'/user_identities/list_accessible_devices': {
|
|
185328
185777
|
route: '/user_identities/list_accessible_devices';
|
|
@@ -187782,6 +188231,7 @@ type Routes = {
|
|
|
187782
188231
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
187783
188232
|
}[];
|
|
187784
188233
|
};
|
|
188234
|
+
maxDuration: undefined;
|
|
187785
188235
|
};
|
|
187786
188236
|
'/user_identities/list_acs_systems': {
|
|
187787
188237
|
route: '/user_identities/list_acs_systems';
|
|
@@ -187913,6 +188363,7 @@ type Routes = {
|
|
|
187913
188363
|
})[];
|
|
187914
188364
|
}[];
|
|
187915
188365
|
};
|
|
188366
|
+
maxDuration: undefined;
|
|
187916
188367
|
};
|
|
187917
188368
|
'/user_identities/list_acs_users': {
|
|
187918
188369
|
route: '/user_identities/list_acs_users';
|
|
@@ -188143,6 +188594,7 @@ type Routes = {
|
|
|
188143
188594
|
is_managed: true;
|
|
188144
188595
|
}[];
|
|
188145
188596
|
};
|
|
188597
|
+
maxDuration: undefined;
|
|
188146
188598
|
};
|
|
188147
188599
|
'/user_identities/remove_acs_user': {
|
|
188148
188600
|
route: '/user_identities/remove_acs_user';
|
|
@@ -188157,6 +188609,7 @@ type Routes = {
|
|
|
188157
188609
|
};
|
|
188158
188610
|
formData: {};
|
|
188159
188611
|
jsonResponse: {};
|
|
188612
|
+
maxDuration: undefined;
|
|
188160
188613
|
};
|
|
188161
188614
|
'/user_identities/revoke_access_to_device': {
|
|
188162
188615
|
route: '/user_identities/revoke_access_to_device';
|
|
@@ -188171,6 +188624,7 @@ type Routes = {
|
|
|
188171
188624
|
};
|
|
188172
188625
|
formData: {};
|
|
188173
188626
|
jsonResponse: {};
|
|
188627
|
+
maxDuration: undefined;
|
|
188174
188628
|
};
|
|
188175
188629
|
'/user_identities/unmanaged/get': {
|
|
188176
188630
|
route: '/user_identities/unmanaged/get';
|
|
@@ -188230,6 +188684,7 @@ type Routes = {
|
|
|
188230
188684
|
acs_user_ids: string[];
|
|
188231
188685
|
};
|
|
188232
188686
|
};
|
|
188687
|
+
maxDuration: undefined;
|
|
188233
188688
|
};
|
|
188234
188689
|
'/user_identities/unmanaged/list': {
|
|
188235
188690
|
route: '/user_identities/unmanaged/list';
|
|
@@ -188303,6 +188758,7 @@ type Routes = {
|
|
|
188303
188758
|
next_page_url: string | null;
|
|
188304
188759
|
};
|
|
188305
188760
|
};
|
|
188761
|
+
maxDuration: undefined;
|
|
188306
188762
|
};
|
|
188307
188763
|
'/user_identities/unmanaged/update': {
|
|
188308
188764
|
route: '/user_identities/unmanaged/update';
|
|
@@ -188319,6 +188775,7 @@ type Routes = {
|
|
|
188319
188775
|
commonParams: {};
|
|
188320
188776
|
formData: {};
|
|
188321
188777
|
jsonResponse: {};
|
|
188778
|
+
maxDuration: undefined;
|
|
188322
188779
|
};
|
|
188323
188780
|
'/user_identities/update': {
|
|
188324
188781
|
route: '/user_identities/update';
|
|
@@ -188339,6 +188796,7 @@ type Routes = {
|
|
|
188339
188796
|
commonParams: {};
|
|
188340
188797
|
formData: {};
|
|
188341
188798
|
jsonResponse: {};
|
|
188799
|
+
maxDuration: undefined;
|
|
188342
188800
|
};
|
|
188343
188801
|
'/webhooks/create': {
|
|
188344
188802
|
route: '/webhooks/create';
|
|
@@ -188365,6 +188823,7 @@ type Routes = {
|
|
|
188365
188823
|
secret?: string | undefined;
|
|
188366
188824
|
};
|
|
188367
188825
|
};
|
|
188826
|
+
maxDuration: undefined;
|
|
188368
188827
|
};
|
|
188369
188828
|
'/webhooks/delete': {
|
|
188370
188829
|
route: '/webhooks/delete';
|
|
@@ -188377,6 +188836,7 @@ type Routes = {
|
|
|
188377
188836
|
};
|
|
188378
188837
|
formData: {};
|
|
188379
188838
|
jsonResponse: {};
|
|
188839
|
+
maxDuration: undefined;
|
|
188380
188840
|
};
|
|
188381
188841
|
'/webhooks/get': {
|
|
188382
188842
|
route: '/webhooks/get';
|
|
@@ -188401,6 +188861,7 @@ type Routes = {
|
|
|
188401
188861
|
secret?: string | undefined;
|
|
188402
188862
|
};
|
|
188403
188863
|
};
|
|
188864
|
+
maxDuration: undefined;
|
|
188404
188865
|
};
|
|
188405
188866
|
'/webhooks/list': {
|
|
188406
188867
|
route: '/webhooks/list';
|
|
@@ -188421,6 +188882,7 @@ type Routes = {
|
|
|
188421
188882
|
secret?: string | undefined;
|
|
188422
188883
|
}[];
|
|
188423
188884
|
};
|
|
188885
|
+
maxDuration: undefined;
|
|
188424
188886
|
};
|
|
188425
188887
|
'/webhooks/update': {
|
|
188426
188888
|
route: '/webhooks/update';
|
|
@@ -188435,6 +188897,7 @@ type Routes = {
|
|
|
188435
188897
|
commonParams: {};
|
|
188436
188898
|
formData: {};
|
|
188437
188899
|
jsonResponse: {};
|
|
188900
|
+
maxDuration: undefined;
|
|
188438
188901
|
};
|
|
188439
188902
|
'/workspaces/create': {
|
|
188440
188903
|
route: '/workspaces/create';
|
|
@@ -188509,6 +188972,7 @@ type Routes = {
|
|
|
188509
188972
|
is_publishable_key_auth_enabled: boolean;
|
|
188510
188973
|
};
|
|
188511
188974
|
};
|
|
188975
|
+
maxDuration: undefined;
|
|
188512
188976
|
};
|
|
188513
188977
|
'/workspaces/customization_profiles/create': {
|
|
188514
188978
|
route: '/workspaces/customization_profiles/create';
|
|
@@ -188545,6 +189009,7 @@ type Routes = {
|
|
|
188545
189009
|
} | undefined;
|
|
188546
189010
|
};
|
|
188547
189011
|
};
|
|
189012
|
+
maxDuration: undefined;
|
|
188548
189013
|
};
|
|
188549
189014
|
'/workspaces/customization_profiles/get': {
|
|
188550
189015
|
route: '/workspaces/customization_profiles/get';
|
|
@@ -188573,6 +189038,7 @@ type Routes = {
|
|
|
188573
189038
|
} | undefined;
|
|
188574
189039
|
};
|
|
188575
189040
|
};
|
|
189041
|
+
maxDuration: undefined;
|
|
188576
189042
|
};
|
|
188577
189043
|
'/workspaces/customization_profiles/list': {
|
|
188578
189044
|
route: '/workspaces/customization_profiles/list';
|
|
@@ -188601,6 +189067,7 @@ type Routes = {
|
|
|
188601
189067
|
} | undefined;
|
|
188602
189068
|
}[];
|
|
188603
189069
|
};
|
|
189070
|
+
maxDuration: undefined;
|
|
188604
189071
|
};
|
|
188605
189072
|
'/workspaces/customization_profiles/update': {
|
|
188606
189073
|
route: '/workspaces/customization_profiles/update';
|
|
@@ -188621,6 +189088,7 @@ type Routes = {
|
|
|
188621
189088
|
commonParams: {};
|
|
188622
189089
|
formData: {};
|
|
188623
189090
|
jsonResponse: {};
|
|
189091
|
+
maxDuration: undefined;
|
|
188624
189092
|
};
|
|
188625
189093
|
'/workspaces/customization_profiles/upload_images': {
|
|
188626
189094
|
route: '/workspaces/customization_profiles/upload_images';
|
|
@@ -188630,6 +189098,7 @@ type Routes = {
|
|
|
188630
189098
|
commonParams: {};
|
|
188631
189099
|
formData: {};
|
|
188632
189100
|
jsonResponse: {};
|
|
189101
|
+
maxDuration: undefined;
|
|
188633
189102
|
};
|
|
188634
189103
|
'/workspaces/find_anything': {
|
|
188635
189104
|
route: '/workspaces/find_anything';
|
|
@@ -190045,6 +190514,8 @@ type Routes = {
|
|
|
190045
190514
|
door_name?: string | undefined;
|
|
190046
190515
|
/** Description of the door in the Salto Space access system. */
|
|
190047
190516
|
door_description?: string | undefined;
|
|
190517
|
+
/** Indicates whether AuditOnKeys is enabled for the door in the Salto Space access system. */
|
|
190518
|
+
audit_on_keys?: boolean | undefined;
|
|
190048
190519
|
/** Name of the room in the Salto Space access system. */
|
|
190049
190520
|
room_name?: string | undefined;
|
|
190050
190521
|
/** Description of the room in the Salto Space access system. */
|
|
@@ -195940,6 +196411,7 @@ type Routes = {
|
|
|
195940
196411
|
}[] | undefined;
|
|
195941
196412
|
};
|
|
195942
196413
|
};
|
|
196414
|
+
maxDuration: undefined;
|
|
195943
196415
|
};
|
|
195944
196416
|
'/workspaces/get': {
|
|
195945
196417
|
route: '/workspaces/get';
|
|
@@ -195982,6 +196454,7 @@ type Routes = {
|
|
|
195982
196454
|
is_publishable_key_auth_enabled: boolean;
|
|
195983
196455
|
};
|
|
195984
196456
|
};
|
|
196457
|
+
maxDuration: undefined;
|
|
195985
196458
|
};
|
|
195986
196459
|
'/workspaces/list': {
|
|
195987
196460
|
route: '/workspaces/list';
|
|
@@ -196023,6 +196496,7 @@ type Routes = {
|
|
|
196023
196496
|
is_publishable_key_auth_enabled: boolean;
|
|
196024
196497
|
}[];
|
|
196025
196498
|
};
|
|
196499
|
+
maxDuration: undefined;
|
|
196026
196500
|
};
|
|
196027
196501
|
'/workspaces/reset_sandbox': {
|
|
196028
196502
|
route: '/workspaces/reset_sandbox';
|
|
@@ -197288,6 +197762,7 @@ type Routes = {
|
|
|
197288
197762
|
};
|
|
197289
197763
|
};
|
|
197290
197764
|
};
|
|
197765
|
+
maxDuration: undefined;
|
|
197291
197766
|
};
|
|
197292
197767
|
'/workspaces/update': {
|
|
197293
197768
|
route: '/workspaces/update';
|
|
@@ -197317,6 +197792,7 @@ type Routes = {
|
|
|
197317
197792
|
commonParams: {};
|
|
197318
197793
|
formData: {};
|
|
197319
197794
|
jsonResponse: {};
|
|
197795
|
+
maxDuration: undefined;
|
|
197320
197796
|
};
|
|
197321
197797
|
};
|
|
197322
197798
|
type RouteResponse<Path extends keyof Routes> = Routes[Path]['jsonResponse'];
|