@seamapi/types 1.656.0 → 1.658.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 +148 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +500 -0
- package/dist/index.cjs +148 -11
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +14 -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/devices/device-metadata.d.ts +5 -0
- package/lib/seam/connect/models/devices/device-metadata.js +1 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +7 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -0
- package/lib/seam/connect/openapi.d.ts +187 -0
- package/lib/seam/connect/openapi.js +132 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +287 -0
- package/package.json +2 -2
- package/src/lib/seam/connect/models/batch.ts +35 -32
- package/src/lib/seam/connect/models/devices/device-metadata.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +132 -1
- package/src/lib/seam/connect/route-types.ts +287 -0
package/dist/connect.d.cts
CHANGED
|
@@ -11583,12 +11583,15 @@ declare const batch: z.ZodObject<{
|
|
|
11583
11583
|
ultraloq_metadata: z.ZodOptional<z.ZodObject<{
|
|
11584
11584
|
device_id: z.ZodString;
|
|
11585
11585
|
device_name: z.ZodString;
|
|
11586
|
+
device_type: z.ZodString;
|
|
11586
11587
|
}, "strip", z.ZodTypeAny, {
|
|
11587
11588
|
device_id: string;
|
|
11588
11589
|
device_name: string;
|
|
11590
|
+
device_type: string;
|
|
11589
11591
|
}, {
|
|
11590
11592
|
device_id: string;
|
|
11591
11593
|
device_name: string;
|
|
11594
|
+
device_type: string;
|
|
11592
11595
|
}>>;
|
|
11593
11596
|
}, "strip", z.ZodTypeAny, {
|
|
11594
11597
|
ecobee_metadata?: {
|
|
@@ -11849,6 +11852,7 @@ declare const batch: z.ZodObject<{
|
|
|
11849
11852
|
ultraloq_metadata?: {
|
|
11850
11853
|
device_id: string;
|
|
11851
11854
|
device_name: string;
|
|
11855
|
+
device_type: string;
|
|
11852
11856
|
} | undefined;
|
|
11853
11857
|
}, {
|
|
11854
11858
|
ecobee_metadata?: {
|
|
@@ -12109,6 +12113,7 @@ declare const batch: z.ZodObject<{
|
|
|
12109
12113
|
ultraloq_metadata?: {
|
|
12110
12114
|
device_id: string;
|
|
12111
12115
|
device_name: string;
|
|
12116
|
+
device_type: string;
|
|
12112
12117
|
} | undefined;
|
|
12113
12118
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
12114
12119
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -13910,6 +13915,7 @@ declare const batch: z.ZodObject<{
|
|
|
13910
13915
|
ultraloq_metadata?: {
|
|
13911
13916
|
device_id: string;
|
|
13912
13917
|
device_name: string;
|
|
13918
|
+
device_type: string;
|
|
13913
13919
|
} | undefined;
|
|
13914
13920
|
} & {
|
|
13915
13921
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -14577,6 +14583,7 @@ declare const batch: z.ZodObject<{
|
|
|
14577
14583
|
ultraloq_metadata?: {
|
|
14578
14584
|
device_id: string;
|
|
14579
14585
|
device_name: string;
|
|
14586
|
+
device_type: string;
|
|
14580
14587
|
} | undefined;
|
|
14581
14588
|
} & {
|
|
14582
14589
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -22696,12 +22703,15 @@ declare const batch: z.ZodObject<{
|
|
|
22696
22703
|
ultraloq_metadata: z.ZodOptional<z.ZodObject<{
|
|
22697
22704
|
device_id: z.ZodString;
|
|
22698
22705
|
device_name: z.ZodString;
|
|
22706
|
+
device_type: z.ZodString;
|
|
22699
22707
|
}, "strip", z.ZodTypeAny, {
|
|
22700
22708
|
device_id: string;
|
|
22701
22709
|
device_name: string;
|
|
22710
|
+
device_type: string;
|
|
22702
22711
|
}, {
|
|
22703
22712
|
device_id: string;
|
|
22704
22713
|
device_name: string;
|
|
22714
|
+
device_type: string;
|
|
22705
22715
|
}>>;
|
|
22706
22716
|
}, "strip", z.ZodTypeAny, {
|
|
22707
22717
|
ecobee_metadata?: {
|
|
@@ -22962,6 +22972,7 @@ declare const batch: z.ZodObject<{
|
|
|
22962
22972
|
ultraloq_metadata?: {
|
|
22963
22973
|
device_id: string;
|
|
22964
22974
|
device_name: string;
|
|
22975
|
+
device_type: string;
|
|
22965
22976
|
} | undefined;
|
|
22966
22977
|
}, {
|
|
22967
22978
|
ecobee_metadata?: {
|
|
@@ -23222,6 +23233,7 @@ declare const batch: z.ZodObject<{
|
|
|
23222
23233
|
ultraloq_metadata?: {
|
|
23223
23234
|
device_id: string;
|
|
23224
23235
|
device_name: string;
|
|
23236
|
+
device_type: string;
|
|
23225
23237
|
} | undefined;
|
|
23226
23238
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
23227
23239
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -32243,6 +32255,7 @@ declare const batch: z.ZodObject<{
|
|
|
32243
32255
|
ultraloq_metadata?: {
|
|
32244
32256
|
device_id: string;
|
|
32245
32257
|
device_name: string;
|
|
32258
|
+
device_type: string;
|
|
32246
32259
|
} | undefined;
|
|
32247
32260
|
} & {
|
|
32248
32261
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -36266,6 +36279,7 @@ declare const batch: z.ZodObject<{
|
|
|
36266
36279
|
ultraloq_metadata?: {
|
|
36267
36280
|
device_id: string;
|
|
36268
36281
|
device_name: string;
|
|
36282
|
+
device_type: string;
|
|
36269
36283
|
} | undefined;
|
|
36270
36284
|
} & {
|
|
36271
36285
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -42162,12 +42176,15 @@ declare const device: z.ZodObject<{
|
|
|
42162
42176
|
ultraloq_metadata: z.ZodOptional<z.ZodObject<{
|
|
42163
42177
|
device_id: z.ZodString;
|
|
42164
42178
|
device_name: z.ZodString;
|
|
42179
|
+
device_type: z.ZodString;
|
|
42165
42180
|
}, "strip", z.ZodTypeAny, {
|
|
42166
42181
|
device_id: string;
|
|
42167
42182
|
device_name: string;
|
|
42183
|
+
device_type: string;
|
|
42168
42184
|
}, {
|
|
42169
42185
|
device_id: string;
|
|
42170
42186
|
device_name: string;
|
|
42187
|
+
device_type: string;
|
|
42171
42188
|
}>>;
|
|
42172
42189
|
}, "strip", z.ZodTypeAny, {
|
|
42173
42190
|
ecobee_metadata?: {
|
|
@@ -42428,6 +42445,7 @@ declare const device: z.ZodObject<{
|
|
|
42428
42445
|
ultraloq_metadata?: {
|
|
42429
42446
|
device_id: string;
|
|
42430
42447
|
device_name: string;
|
|
42448
|
+
device_type: string;
|
|
42431
42449
|
} | undefined;
|
|
42432
42450
|
}, {
|
|
42433
42451
|
ecobee_metadata?: {
|
|
@@ -42688,6 +42706,7 @@ declare const device: z.ZodObject<{
|
|
|
42688
42706
|
ultraloq_metadata?: {
|
|
42689
42707
|
device_id: string;
|
|
42690
42708
|
device_name: string;
|
|
42709
|
+
device_type: string;
|
|
42691
42710
|
} | undefined;
|
|
42692
42711
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
42693
42712
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -44489,6 +44508,7 @@ declare const device: z.ZodObject<{
|
|
|
44489
44508
|
ultraloq_metadata?: {
|
|
44490
44509
|
device_id: string;
|
|
44491
44510
|
device_name: string;
|
|
44511
|
+
device_type: string;
|
|
44492
44512
|
} | undefined;
|
|
44493
44513
|
} & {
|
|
44494
44514
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -45156,6 +45176,7 @@ declare const device: z.ZodObject<{
|
|
|
45156
45176
|
ultraloq_metadata?: {
|
|
45157
45177
|
device_id: string;
|
|
45158
45178
|
device_name: string;
|
|
45179
|
+
device_type: string;
|
|
45159
45180
|
} | undefined;
|
|
45160
45181
|
} & {
|
|
45161
45182
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -46496,12 +46517,15 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46496
46517
|
ultraloq_metadata: z.ZodOptional<z.ZodObject<{
|
|
46497
46518
|
device_id: z.ZodString;
|
|
46498
46519
|
device_name: z.ZodString;
|
|
46520
|
+
device_type: z.ZodString;
|
|
46499
46521
|
}, "strip", z.ZodTypeAny, {
|
|
46500
46522
|
device_id: string;
|
|
46501
46523
|
device_name: string;
|
|
46524
|
+
device_type: string;
|
|
46502
46525
|
}, {
|
|
46503
46526
|
device_id: string;
|
|
46504
46527
|
device_name: string;
|
|
46528
|
+
device_type: string;
|
|
46505
46529
|
}>>;
|
|
46506
46530
|
}, "strip", z.ZodTypeAny, {
|
|
46507
46531
|
ecobee_metadata?: {
|
|
@@ -46762,6 +46786,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46762
46786
|
ultraloq_metadata?: {
|
|
46763
46787
|
device_id: string;
|
|
46764
46788
|
device_name: string;
|
|
46789
|
+
device_type: string;
|
|
46765
46790
|
} | undefined;
|
|
46766
46791
|
}, {
|
|
46767
46792
|
ecobee_metadata?: {
|
|
@@ -47022,6 +47047,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
47022
47047
|
ultraloq_metadata?: {
|
|
47023
47048
|
device_id: string;
|
|
47024
47049
|
device_name: string;
|
|
47050
|
+
device_type: string;
|
|
47025
47051
|
} | undefined;
|
|
47026
47052
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
47027
47053
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -56320,6 +56346,181 @@ declare const _default: {
|
|
|
56320
56346
|
})[];
|
|
56321
56347
|
'x-route-path': string;
|
|
56322
56348
|
};
|
|
56349
|
+
batch: {
|
|
56350
|
+
description: string;
|
|
56351
|
+
properties: {
|
|
56352
|
+
access_codes: {
|
|
56353
|
+
items: {
|
|
56354
|
+
$ref: string;
|
|
56355
|
+
};
|
|
56356
|
+
type: string;
|
|
56357
|
+
};
|
|
56358
|
+
access_grants: {
|
|
56359
|
+
items: {
|
|
56360
|
+
$ref: string;
|
|
56361
|
+
};
|
|
56362
|
+
type: string;
|
|
56363
|
+
};
|
|
56364
|
+
access_methods: {
|
|
56365
|
+
items: {
|
|
56366
|
+
$ref: string;
|
|
56367
|
+
};
|
|
56368
|
+
type: string;
|
|
56369
|
+
};
|
|
56370
|
+
acs_access_groups: {
|
|
56371
|
+
items: {
|
|
56372
|
+
$ref: string;
|
|
56373
|
+
};
|
|
56374
|
+
type: string;
|
|
56375
|
+
};
|
|
56376
|
+
acs_credentials: {
|
|
56377
|
+
items: {
|
|
56378
|
+
$ref: string;
|
|
56379
|
+
};
|
|
56380
|
+
type: string;
|
|
56381
|
+
};
|
|
56382
|
+
acs_encoders: {
|
|
56383
|
+
items: {
|
|
56384
|
+
$ref: string;
|
|
56385
|
+
};
|
|
56386
|
+
type: string;
|
|
56387
|
+
};
|
|
56388
|
+
acs_entrances: {
|
|
56389
|
+
items: {
|
|
56390
|
+
$ref: string;
|
|
56391
|
+
};
|
|
56392
|
+
type: string;
|
|
56393
|
+
};
|
|
56394
|
+
acs_systems: {
|
|
56395
|
+
items: {
|
|
56396
|
+
$ref: string;
|
|
56397
|
+
};
|
|
56398
|
+
type: string;
|
|
56399
|
+
};
|
|
56400
|
+
acs_users: {
|
|
56401
|
+
items: {
|
|
56402
|
+
$ref: string;
|
|
56403
|
+
};
|
|
56404
|
+
type: string;
|
|
56405
|
+
};
|
|
56406
|
+
action_attempts: {
|
|
56407
|
+
items: {
|
|
56408
|
+
$ref: string;
|
|
56409
|
+
};
|
|
56410
|
+
type: string;
|
|
56411
|
+
};
|
|
56412
|
+
client_sessions: {
|
|
56413
|
+
items: {
|
|
56414
|
+
$ref: string;
|
|
56415
|
+
};
|
|
56416
|
+
type: string;
|
|
56417
|
+
};
|
|
56418
|
+
connect_webviews: {
|
|
56419
|
+
items: {
|
|
56420
|
+
$ref: string;
|
|
56421
|
+
};
|
|
56422
|
+
type: string;
|
|
56423
|
+
};
|
|
56424
|
+
connected_accounts: {
|
|
56425
|
+
items: {
|
|
56426
|
+
$ref: string;
|
|
56427
|
+
};
|
|
56428
|
+
type: string;
|
|
56429
|
+
};
|
|
56430
|
+
customization_profiles: {
|
|
56431
|
+
items: {
|
|
56432
|
+
$ref: string;
|
|
56433
|
+
};
|
|
56434
|
+
type: string;
|
|
56435
|
+
};
|
|
56436
|
+
devices: {
|
|
56437
|
+
items: {
|
|
56438
|
+
$ref: string;
|
|
56439
|
+
};
|
|
56440
|
+
type: string;
|
|
56441
|
+
};
|
|
56442
|
+
events: {
|
|
56443
|
+
items: {
|
|
56444
|
+
$ref: string;
|
|
56445
|
+
};
|
|
56446
|
+
type: string;
|
|
56447
|
+
};
|
|
56448
|
+
instant_keys: {
|
|
56449
|
+
items: {
|
|
56450
|
+
$ref: string;
|
|
56451
|
+
};
|
|
56452
|
+
type: string;
|
|
56453
|
+
};
|
|
56454
|
+
noise_thresholds: {
|
|
56455
|
+
items: {
|
|
56456
|
+
$ref: string;
|
|
56457
|
+
};
|
|
56458
|
+
type: string;
|
|
56459
|
+
};
|
|
56460
|
+
spaces: {
|
|
56461
|
+
items: {
|
|
56462
|
+
$ref: string;
|
|
56463
|
+
};
|
|
56464
|
+
type: string;
|
|
56465
|
+
};
|
|
56466
|
+
thermostat_daily_programs: {
|
|
56467
|
+
items: {
|
|
56468
|
+
$ref: string;
|
|
56469
|
+
};
|
|
56470
|
+
type: string;
|
|
56471
|
+
};
|
|
56472
|
+
thermostat_schedules: {
|
|
56473
|
+
items: {
|
|
56474
|
+
$ref: string;
|
|
56475
|
+
};
|
|
56476
|
+
type: string;
|
|
56477
|
+
};
|
|
56478
|
+
unmanaged_access_codes: {
|
|
56479
|
+
items: {
|
|
56480
|
+
$ref: string;
|
|
56481
|
+
};
|
|
56482
|
+
type: string;
|
|
56483
|
+
};
|
|
56484
|
+
unmanaged_acs_access_groups: {
|
|
56485
|
+
items: {
|
|
56486
|
+
$ref: string;
|
|
56487
|
+
};
|
|
56488
|
+
type: string;
|
|
56489
|
+
};
|
|
56490
|
+
unmanaged_acs_credentials: {
|
|
56491
|
+
items: {
|
|
56492
|
+
$ref: string;
|
|
56493
|
+
};
|
|
56494
|
+
type: string;
|
|
56495
|
+
};
|
|
56496
|
+
unmanaged_acs_users: {
|
|
56497
|
+
items: {
|
|
56498
|
+
$ref: string;
|
|
56499
|
+
};
|
|
56500
|
+
type: string;
|
|
56501
|
+
};
|
|
56502
|
+
unmanaged_devices: {
|
|
56503
|
+
items: {
|
|
56504
|
+
$ref: string;
|
|
56505
|
+
};
|
|
56506
|
+
type: string;
|
|
56507
|
+
};
|
|
56508
|
+
user_identities: {
|
|
56509
|
+
items: {
|
|
56510
|
+
$ref: string;
|
|
56511
|
+
};
|
|
56512
|
+
type: string;
|
|
56513
|
+
};
|
|
56514
|
+
workspaces: {
|
|
56515
|
+
items: {
|
|
56516
|
+
$ref: string;
|
|
56517
|
+
};
|
|
56518
|
+
type: string;
|
|
56519
|
+
};
|
|
56520
|
+
};
|
|
56521
|
+
type: string;
|
|
56522
|
+
'x-route-path': string;
|
|
56523
|
+
};
|
|
56323
56524
|
bridge_client_session: {
|
|
56324
56525
|
description: string;
|
|
56325
56526
|
properties: {
|
|
@@ -58616,6 +58817,10 @@ declare const _default: {
|
|
|
58616
58817
|
description: string;
|
|
58617
58818
|
type: string;
|
|
58618
58819
|
};
|
|
58820
|
+
device_type: {
|
|
58821
|
+
description: string;
|
|
58822
|
+
type: string;
|
|
58823
|
+
};
|
|
58619
58824
|
};
|
|
58620
58825
|
required: string[];
|
|
58621
58826
|
type: string;
|
|
@@ -71179,6 +71384,7 @@ declare const _default: {
|
|
|
71179
71384
|
};
|
|
71180
71385
|
};
|
|
71181
71386
|
type: string;
|
|
71387
|
+
'x-route-path': string;
|
|
71182
71388
|
};
|
|
71183
71389
|
ok: {
|
|
71184
71390
|
type: string;
|
|
@@ -71311,6 +71517,7 @@ declare const _default: {
|
|
|
71311
71517
|
};
|
|
71312
71518
|
};
|
|
71313
71519
|
type: string;
|
|
71520
|
+
'x-route-path': string;
|
|
71314
71521
|
};
|
|
71315
71522
|
ok: {
|
|
71316
71523
|
type: string;
|
|
@@ -73338,6 +73545,7 @@ declare const _default: {
|
|
|
73338
73545
|
};
|
|
73339
73546
|
};
|
|
73340
73547
|
type: string;
|
|
73548
|
+
'x-route-path': string;
|
|
73341
73549
|
};
|
|
73342
73550
|
ok: {
|
|
73343
73551
|
type: string;
|
|
@@ -73484,6 +73692,7 @@ declare const _default: {
|
|
|
73484
73692
|
};
|
|
73485
73693
|
};
|
|
73486
73694
|
type: string;
|
|
73695
|
+
'x-route-path': string;
|
|
73487
73696
|
};
|
|
73488
73697
|
ok: {
|
|
73489
73698
|
type: string;
|
|
@@ -101247,6 +101456,7 @@ declare const _default: {
|
|
|
101247
101456
|
};
|
|
101248
101457
|
};
|
|
101249
101458
|
type: string;
|
|
101459
|
+
'x-route-path': string;
|
|
101250
101460
|
};
|
|
101251
101461
|
ok: {
|
|
101252
101462
|
type: string;
|
|
@@ -101381,6 +101591,7 @@ declare const _default: {
|
|
|
101381
101591
|
};
|
|
101382
101592
|
};
|
|
101383
101593
|
type: string;
|
|
101594
|
+
'x-route-path': string;
|
|
101384
101595
|
};
|
|
101385
101596
|
ok: {
|
|
101386
101597
|
type: string;
|
|
@@ -111296,6 +111507,7 @@ declare const _default: {
|
|
|
111296
111507
|
};
|
|
111297
111508
|
};
|
|
111298
111509
|
type: string;
|
|
111510
|
+
'x-route-path': string;
|
|
111299
111511
|
};
|
|
111300
111512
|
ok: {
|
|
111301
111513
|
type: string;
|
|
@@ -111536,6 +111748,7 @@ declare const _default: {
|
|
|
111536
111748
|
};
|
|
111537
111749
|
};
|
|
111538
111750
|
type: string;
|
|
111751
|
+
'x-route-path': string;
|
|
111539
111752
|
};
|
|
111540
111753
|
ok: {
|
|
111541
111754
|
type: string;
|
|
@@ -113949,6 +114162,7 @@ type Routes = {
|
|
|
113949
114162
|
is_offline_access_code: boolean;
|
|
113950
114163
|
};
|
|
113951
114164
|
};
|
|
114165
|
+
maxDuration: undefined;
|
|
113952
114166
|
};
|
|
113953
114167
|
'/access_codes/create_multiple': {
|
|
113954
114168
|
route: '/access_codes/create_multiple';
|
|
@@ -114503,6 +114717,7 @@ type Routes = {
|
|
|
114503
114717
|
is_offline_access_code: boolean;
|
|
114504
114718
|
}[];
|
|
114505
114719
|
};
|
|
114720
|
+
maxDuration: undefined;
|
|
114506
114721
|
};
|
|
114507
114722
|
'/access_codes/delete': {
|
|
114508
114723
|
route: '/access_codes/delete';
|
|
@@ -115775,6 +115990,7 @@ type Routes = {
|
|
|
115775
115990
|
};
|
|
115776
115991
|
};
|
|
115777
115992
|
};
|
|
115993
|
+
maxDuration: undefined;
|
|
115778
115994
|
};
|
|
115779
115995
|
'/access_codes/generate_code': {
|
|
115780
115996
|
route: '/access_codes/generate_code';
|
|
@@ -115792,6 +116008,7 @@ type Routes = {
|
|
|
115792
116008
|
code: string;
|
|
115793
116009
|
};
|
|
115794
116010
|
};
|
|
116011
|
+
maxDuration: undefined;
|
|
115795
116012
|
};
|
|
115796
116013
|
'/access_codes/get': {
|
|
115797
116014
|
route: '/access_codes/get';
|
|
@@ -116321,6 +116538,7 @@ type Routes = {
|
|
|
116321
116538
|
is_offline_access_code: boolean;
|
|
116322
116539
|
};
|
|
116323
116540
|
};
|
|
116541
|
+
maxDuration: undefined;
|
|
116324
116542
|
};
|
|
116325
116543
|
'/access_codes/list': {
|
|
116326
116544
|
route: '/access_codes/list';
|
|
@@ -116858,6 +117076,7 @@ type Routes = {
|
|
|
116858
117076
|
next_page_url: string | null;
|
|
116859
117077
|
};
|
|
116860
117078
|
};
|
|
117079
|
+
maxDuration: undefined;
|
|
116861
117080
|
};
|
|
116862
117081
|
'/access_codes/pull_backup_access_code': {
|
|
116863
117082
|
route: '/access_codes/pull_backup_access_code';
|
|
@@ -117895,6 +118114,7 @@ type Routes = {
|
|
|
117895
118114
|
is_offline_access_code: boolean;
|
|
117896
118115
|
};
|
|
117897
118116
|
};
|
|
118117
|
+
maxDuration: undefined;
|
|
117898
118118
|
};
|
|
117899
118119
|
'/access_codes/report_device_constraints': {
|
|
117900
118120
|
route: '/access_codes/report_device_constraints';
|
|
@@ -117913,6 +118133,7 @@ type Routes = {
|
|
|
117913
118133
|
commonParams: {};
|
|
117914
118134
|
formData: {};
|
|
117915
118135
|
jsonResponse: {};
|
|
118136
|
+
maxDuration: undefined;
|
|
117916
118137
|
};
|
|
117917
118138
|
'/access_codes/simulate/create_unmanaged_access_code': {
|
|
117918
118139
|
route: '/access_codes/simulate/create_unmanaged_access_code';
|
|
@@ -118428,6 +118649,7 @@ type Routes = {
|
|
|
118428
118649
|
status: 'set';
|
|
118429
118650
|
};
|
|
118430
118651
|
};
|
|
118652
|
+
maxDuration: undefined;
|
|
118431
118653
|
};
|
|
118432
118654
|
'/access_codes/unmanaged/convert_to_managed': {
|
|
118433
118655
|
route: '/access_codes/unmanaged/convert_to_managed';
|
|
@@ -118448,6 +118670,7 @@ type Routes = {
|
|
|
118448
118670
|
};
|
|
118449
118671
|
formData: {};
|
|
118450
118672
|
jsonResponse: {};
|
|
118673
|
+
maxDuration: undefined;
|
|
118451
118674
|
};
|
|
118452
118675
|
'/access_codes/unmanaged/delete': {
|
|
118453
118676
|
route: '/access_codes/unmanaged/delete';
|
|
@@ -119718,6 +119941,7 @@ type Routes = {
|
|
|
119718
119941
|
};
|
|
119719
119942
|
};
|
|
119720
119943
|
};
|
|
119944
|
+
maxDuration: undefined;
|
|
119721
119945
|
};
|
|
119722
119946
|
'/access_codes/unmanaged/get': {
|
|
119723
119947
|
route: '/access_codes/unmanaged/get';
|
|
@@ -120233,6 +120457,7 @@ type Routes = {
|
|
|
120233
120457
|
status: 'set';
|
|
120234
120458
|
};
|
|
120235
120459
|
};
|
|
120460
|
+
maxDuration: undefined;
|
|
120236
120461
|
};
|
|
120237
120462
|
'/access_codes/unmanaged/list': {
|
|
120238
120463
|
route: '/access_codes/unmanaged/list';
|
|
@@ -120748,6 +120973,7 @@ type Routes = {
|
|
|
120748
120973
|
next_page_url: string | null;
|
|
120749
120974
|
};
|
|
120750
120975
|
};
|
|
120976
|
+
maxDuration: undefined;
|
|
120751
120977
|
};
|
|
120752
120978
|
'/access_codes/unmanaged/update': {
|
|
120753
120979
|
route: '/access_codes/unmanaged/update';
|
|
@@ -120767,6 +120993,7 @@ type Routes = {
|
|
|
120767
120993
|
};
|
|
120768
120994
|
formData: {};
|
|
120769
120995
|
jsonResponse: {};
|
|
120996
|
+
maxDuration: undefined;
|
|
120770
120997
|
};
|
|
120771
120998
|
'/access_codes/update': {
|
|
120772
120999
|
route: '/access_codes/update';
|
|
@@ -122077,6 +122304,7 @@ type Routes = {
|
|
|
122077
122304
|
};
|
|
122078
122305
|
};
|
|
122079
122306
|
};
|
|
122307
|
+
maxDuration: undefined;
|
|
122080
122308
|
};
|
|
122081
122309
|
'/access_codes/update_multiple': {
|
|
122082
122310
|
route: '/access_codes/update_multiple';
|
|
@@ -122101,6 +122329,7 @@ type Routes = {
|
|
|
122101
122329
|
commonParams: {};
|
|
122102
122330
|
formData: {};
|
|
122103
122331
|
jsonResponse: {};
|
|
122332
|
+
maxDuration: undefined;
|
|
122104
122333
|
};
|
|
122105
122334
|
'/access_grants/create': {
|
|
122106
122335
|
route: '/access_grants/create';
|
|
@@ -122224,6 +122453,7 @@ type Routes = {
|
|
|
122224
122453
|
customization_profile_id?: string | undefined;
|
|
122225
122454
|
};
|
|
122226
122455
|
};
|
|
122456
|
+
maxDuration: undefined;
|
|
122227
122457
|
};
|
|
122228
122458
|
'/access_grants/delete': {
|
|
122229
122459
|
route: '/access_grants/delete';
|
|
@@ -122236,6 +122466,7 @@ type Routes = {
|
|
|
122236
122466
|
};
|
|
122237
122467
|
formData: {};
|
|
122238
122468
|
jsonResponse: {};
|
|
122469
|
+
maxDuration: undefined;
|
|
122239
122470
|
};
|
|
122240
122471
|
'/access_grants/get': {
|
|
122241
122472
|
route: '/access_grants/get';
|
|
@@ -122310,6 +122541,7 @@ type Routes = {
|
|
|
122310
122541
|
customization_profile_id?: string | undefined;
|
|
122311
122542
|
};
|
|
122312
122543
|
};
|
|
122544
|
+
maxDuration: undefined;
|
|
122313
122545
|
};
|
|
122314
122546
|
'/access_grants/get_related': {
|
|
122315
122547
|
route: '/access_grants/get_related';
|
|
@@ -122946,6 +123178,8 @@ type Routes = {
|
|
|
122946
123178
|
device_id: string;
|
|
122947
123179
|
/** Device name for an Ultraloq device. */
|
|
122948
123180
|
device_name: string;
|
|
123181
|
+
/** Device type for an Ultraloq device. */
|
|
123182
|
+
device_type: string;
|
|
122949
123183
|
} | undefined;
|
|
122950
123184
|
}) & ({
|
|
122951
123185
|
/** */
|
|
@@ -124017,6 +124251,7 @@ type Routes = {
|
|
|
124017
124251
|
}[] | undefined;
|
|
124018
124252
|
};
|
|
124019
124253
|
};
|
|
124254
|
+
maxDuration: undefined;
|
|
124020
124255
|
};
|
|
124021
124256
|
'/access_grants/list': {
|
|
124022
124257
|
route: '/access_grants/list';
|
|
@@ -124102,6 +124337,7 @@ type Routes = {
|
|
|
124102
124337
|
customization_profile_id?: string | undefined;
|
|
124103
124338
|
}[];
|
|
124104
124339
|
};
|
|
124340
|
+
maxDuration: undefined;
|
|
124105
124341
|
};
|
|
124106
124342
|
'/access_grants/request_access_methods': {
|
|
124107
124343
|
route: '/access_grants/request_access_methods';
|
|
@@ -124180,6 +124416,7 @@ type Routes = {
|
|
|
124180
124416
|
customization_profile_id?: string | undefined;
|
|
124181
124417
|
};
|
|
124182
124418
|
};
|
|
124419
|
+
maxDuration: undefined;
|
|
124183
124420
|
};
|
|
124184
124421
|
'/access_grants/unmanaged/get': {
|
|
124185
124422
|
route: '/access_grants/unmanaged/get';
|
|
@@ -124243,6 +124480,7 @@ type Routes = {
|
|
|
124243
124480
|
user_identity_id?: string | undefined;
|
|
124244
124481
|
};
|
|
124245
124482
|
};
|
|
124483
|
+
maxDuration: undefined;
|
|
124246
124484
|
};
|
|
124247
124485
|
'/access_grants/unmanaged/list': {
|
|
124248
124486
|
route: '/access_grants/unmanaged/list';
|
|
@@ -124311,6 +124549,7 @@ type Routes = {
|
|
|
124311
124549
|
user_identity_id?: string | undefined;
|
|
124312
124550
|
}[];
|
|
124313
124551
|
};
|
|
124552
|
+
maxDuration: undefined;
|
|
124314
124553
|
};
|
|
124315
124554
|
'/access_grants/unmanaged/update': {
|
|
124316
124555
|
route: '/access_grants/unmanaged/update';
|
|
@@ -124327,6 +124566,7 @@ type Routes = {
|
|
|
124327
124566
|
commonParams: {};
|
|
124328
124567
|
formData: {};
|
|
124329
124568
|
jsonResponse: {};
|
|
124569
|
+
maxDuration: undefined;
|
|
124330
124570
|
};
|
|
124331
124571
|
'/access_grants/update': {
|
|
124332
124572
|
route: '/access_grants/update';
|
|
@@ -124345,6 +124585,7 @@ type Routes = {
|
|
|
124345
124585
|
};
|
|
124346
124586
|
formData: {};
|
|
124347
124587
|
jsonResponse: {};
|
|
124588
|
+
maxDuration: undefined;
|
|
124348
124589
|
};
|
|
124349
124590
|
'/access_methods/delete': {
|
|
124350
124591
|
route: '/access_methods/delete';
|
|
@@ -124357,6 +124598,7 @@ type Routes = {
|
|
|
124357
124598
|
};
|
|
124358
124599
|
formData: {};
|
|
124359
124600
|
jsonResponse: {};
|
|
124601
|
+
maxDuration: undefined;
|
|
124360
124602
|
};
|
|
124361
124603
|
'/access_methods/encode': {
|
|
124362
124604
|
route: '/access_methods/encode';
|
|
@@ -125627,6 +125869,7 @@ type Routes = {
|
|
|
125627
125869
|
};
|
|
125628
125870
|
};
|
|
125629
125871
|
};
|
|
125872
|
+
maxDuration: undefined;
|
|
125630
125873
|
};
|
|
125631
125874
|
'/access_methods/get': {
|
|
125632
125875
|
route: '/access_methods/get';
|
|
@@ -125676,6 +125919,7 @@ type Routes = {
|
|
|
125676
125919
|
customization_profile_id?: string | undefined;
|
|
125677
125920
|
};
|
|
125678
125921
|
};
|
|
125922
|
+
maxDuration: undefined;
|
|
125679
125923
|
};
|
|
125680
125924
|
'/access_methods/get_related': {
|
|
125681
125925
|
route: '/access_methods/get_related';
|
|
@@ -126312,6 +126556,8 @@ type Routes = {
|
|
|
126312
126556
|
device_id: string;
|
|
126313
126557
|
/** Device name for an Ultraloq device. */
|
|
126314
126558
|
device_name: string;
|
|
126559
|
+
/** Device type for an Ultraloq device. */
|
|
126560
|
+
device_type: string;
|
|
126315
126561
|
} | undefined;
|
|
126316
126562
|
}) & ({
|
|
126317
126563
|
/** */
|
|
@@ -127334,6 +127580,7 @@ type Routes = {
|
|
|
127334
127580
|
}[] | undefined;
|
|
127335
127581
|
};
|
|
127336
127582
|
};
|
|
127583
|
+
maxDuration: undefined;
|
|
127337
127584
|
};
|
|
127338
127585
|
'/access_methods/list': {
|
|
127339
127586
|
route: '/access_methods/list';
|
|
@@ -127388,6 +127635,7 @@ type Routes = {
|
|
|
127388
127635
|
customization_profile_id?: string | undefined;
|
|
127389
127636
|
}[];
|
|
127390
127637
|
};
|
|
127638
|
+
maxDuration: undefined;
|
|
127391
127639
|
};
|
|
127392
127640
|
'/access_methods/unmanaged/get': {
|
|
127393
127641
|
route: '/access_methods/unmanaged/get';
|
|
@@ -127431,6 +127679,7 @@ type Routes = {
|
|
|
127431
127679
|
}[];
|
|
127432
127680
|
};
|
|
127433
127681
|
};
|
|
127682
|
+
maxDuration: undefined;
|
|
127434
127683
|
};
|
|
127435
127684
|
'/access_methods/unmanaged/list': {
|
|
127436
127685
|
route: '/access_methods/unmanaged/list';
|
|
@@ -127479,6 +127728,7 @@ type Routes = {
|
|
|
127479
127728
|
}[];
|
|
127480
127729
|
}[];
|
|
127481
127730
|
};
|
|
127731
|
+
maxDuration: undefined;
|
|
127482
127732
|
};
|
|
127483
127733
|
'/acs/access_groups/add_user': {
|
|
127484
127734
|
route: '/acs/access_groups/add_user';
|
|
@@ -127495,6 +127745,7 @@ type Routes = {
|
|
|
127495
127745
|
};
|
|
127496
127746
|
formData: {};
|
|
127497
127747
|
jsonResponse: {};
|
|
127748
|
+
maxDuration: undefined;
|
|
127498
127749
|
};
|
|
127499
127750
|
'/acs/access_groups/get': {
|
|
127500
127751
|
route: '/acs/access_groups/get';
|
|
@@ -127548,6 +127799,7 @@ type Routes = {
|
|
|
127548
127799
|
is_managed: true;
|
|
127549
127800
|
};
|
|
127550
127801
|
};
|
|
127802
|
+
maxDuration: undefined;
|
|
127551
127803
|
};
|
|
127552
127804
|
'/acs/access_groups/list': {
|
|
127553
127805
|
route: '/acs/access_groups/list';
|
|
@@ -127600,6 +127852,7 @@ type Routes = {
|
|
|
127600
127852
|
is_managed: true;
|
|
127601
127853
|
}[];
|
|
127602
127854
|
};
|
|
127855
|
+
maxDuration: undefined;
|
|
127603
127856
|
};
|
|
127604
127857
|
'/acs/access_groups/list_accessible_entrances': {
|
|
127605
127858
|
route: '/acs/access_groups/list_accessible_entrances';
|
|
@@ -127734,6 +127987,7 @@ type Routes = {
|
|
|
127734
127987
|
can_belong_to_reservation?: boolean | undefined;
|
|
127735
127988
|
}[];
|
|
127736
127989
|
};
|
|
127990
|
+
maxDuration: undefined;
|
|
127737
127991
|
};
|
|
127738
127992
|
'/acs/access_groups/list_users': {
|
|
127739
127993
|
route: '/acs/access_groups/list_users';
|
|
@@ -127964,6 +128218,7 @@ type Routes = {
|
|
|
127964
128218
|
is_managed: true;
|
|
127965
128219
|
}[];
|
|
127966
128220
|
};
|
|
128221
|
+
maxDuration: undefined;
|
|
127967
128222
|
};
|
|
127968
128223
|
'/acs/access_groups/remove_user': {
|
|
127969
128224
|
route: '/acs/access_groups/remove_user';
|
|
@@ -127980,6 +128235,7 @@ type Routes = {
|
|
|
127980
128235
|
};
|
|
127981
128236
|
formData: {};
|
|
127982
128237
|
jsonResponse: {};
|
|
128238
|
+
maxDuration: undefined;
|
|
127983
128239
|
};
|
|
127984
128240
|
'/acs/access_groups/unmanaged/get': {
|
|
127985
128241
|
route: '/acs/access_groups/unmanaged/get';
|
|
@@ -128029,6 +128285,7 @@ type Routes = {
|
|
|
128029
128285
|
is_managed: false;
|
|
128030
128286
|
};
|
|
128031
128287
|
};
|
|
128288
|
+
maxDuration: undefined;
|
|
128032
128289
|
};
|
|
128033
128290
|
'/acs/access_groups/unmanaged/list': {
|
|
128034
128291
|
route: '/acs/access_groups/unmanaged/list';
|
|
@@ -128079,6 +128336,7 @@ type Routes = {
|
|
|
128079
128336
|
is_managed: false;
|
|
128080
128337
|
}[];
|
|
128081
128338
|
};
|
|
128339
|
+
maxDuration: undefined;
|
|
128082
128340
|
};
|
|
128083
128341
|
'/acs/credential_pools/list': {
|
|
128084
128342
|
route: '/acs/credential_pools/list';
|
|
@@ -128101,6 +128359,7 @@ type Routes = {
|
|
|
128101
128359
|
workspace_id: string;
|
|
128102
128360
|
}[];
|
|
128103
128361
|
};
|
|
128362
|
+
maxDuration: undefined;
|
|
128104
128363
|
};
|
|
128105
128364
|
'/acs/credential_provisioning_automations/launch': {
|
|
128106
128365
|
route: '/acs/credential_provisioning_automations/launch';
|
|
@@ -128131,6 +128390,7 @@ type Routes = {
|
|
|
128131
128390
|
workspace_id: string;
|
|
128132
128391
|
};
|
|
128133
128392
|
};
|
|
128393
|
+
maxDuration: undefined;
|
|
128134
128394
|
};
|
|
128135
128395
|
'/acs/credentials/assign': {
|
|
128136
128396
|
route: '/acs/credentials/assign';
|
|
@@ -128284,6 +128544,7 @@ type Routes = {
|
|
|
128284
128544
|
is_managed: true;
|
|
128285
128545
|
};
|
|
128286
128546
|
};
|
|
128547
|
+
maxDuration: undefined;
|
|
128287
128548
|
};
|
|
128288
128549
|
'/acs/credentials/create': {
|
|
128289
128550
|
route: '/acs/credentials/create';
|
|
@@ -128484,6 +128745,7 @@ type Routes = {
|
|
|
128484
128745
|
is_managed: true;
|
|
128485
128746
|
};
|
|
128486
128747
|
};
|
|
128748
|
+
maxDuration: undefined;
|
|
128487
128749
|
};
|
|
128488
128750
|
'/acs/credentials/create_offline_code': {
|
|
128489
128751
|
route: '/acs/credentials/create_offline_code';
|
|
@@ -128641,6 +128903,7 @@ type Routes = {
|
|
|
128641
128903
|
is_managed: true;
|
|
128642
128904
|
};
|
|
128643
128905
|
};
|
|
128906
|
+
maxDuration: undefined;
|
|
128644
128907
|
};
|
|
128645
128908
|
'/acs/credentials/delete': {
|
|
128646
128909
|
route: '/acs/credentials/delete';
|
|
@@ -128653,6 +128916,7 @@ type Routes = {
|
|
|
128653
128916
|
};
|
|
128654
128917
|
formData: {};
|
|
128655
128918
|
jsonResponse: {};
|
|
128919
|
+
maxDuration: undefined;
|
|
128656
128920
|
};
|
|
128657
128921
|
'/acs/credentials/get': {
|
|
128658
128922
|
route: '/acs/credentials/get';
|
|
@@ -128802,6 +129066,7 @@ type Routes = {
|
|
|
128802
129066
|
is_managed: true;
|
|
128803
129067
|
};
|
|
128804
129068
|
};
|
|
129069
|
+
maxDuration: undefined;
|
|
128805
129070
|
};
|
|
128806
129071
|
'/acs/credentials/list': {
|
|
128807
129072
|
route: '/acs/credentials/list';
|
|
@@ -128977,6 +129242,7 @@ type Routes = {
|
|
|
128977
129242
|
next_page_url: string | null;
|
|
128978
129243
|
};
|
|
128979
129244
|
};
|
|
129245
|
+
maxDuration: undefined;
|
|
128980
129246
|
};
|
|
128981
129247
|
'/acs/credentials/list_accessible_entrances': {
|
|
128982
129248
|
route: '/acs/credentials/list_accessible_entrances';
|
|
@@ -129111,6 +129377,7 @@ type Routes = {
|
|
|
129111
129377
|
can_belong_to_reservation?: boolean | undefined;
|
|
129112
129378
|
}[];
|
|
129113
129379
|
};
|
|
129380
|
+
maxDuration: undefined;
|
|
129114
129381
|
};
|
|
129115
129382
|
'/acs/credentials/unassign': {
|
|
129116
129383
|
route: '/acs/credentials/unassign';
|
|
@@ -129264,6 +129531,7 @@ type Routes = {
|
|
|
129264
129531
|
is_managed: true;
|
|
129265
129532
|
};
|
|
129266
129533
|
};
|
|
129534
|
+
maxDuration: undefined;
|
|
129267
129535
|
};
|
|
129268
129536
|
'/acs/credentials/unmanaged/get': {
|
|
129269
129537
|
route: '/acs/credentials/unmanaged/get';
|
|
@@ -129409,6 +129677,7 @@ type Routes = {
|
|
|
129409
129677
|
is_managed: false;
|
|
129410
129678
|
};
|
|
129411
129679
|
};
|
|
129680
|
+
maxDuration: undefined;
|
|
129412
129681
|
};
|
|
129413
129682
|
'/acs/credentials/unmanaged/list': {
|
|
129414
129683
|
route: '/acs/credentials/unmanaged/list';
|
|
@@ -129564,6 +129833,7 @@ type Routes = {
|
|
|
129564
129833
|
is_managed: false;
|
|
129565
129834
|
}[];
|
|
129566
129835
|
};
|
|
129836
|
+
maxDuration: undefined;
|
|
129567
129837
|
};
|
|
129568
129838
|
'/acs/credentials/update': {
|
|
129569
129839
|
route: '/acs/credentials/update';
|
|
@@ -129717,6 +129987,7 @@ type Routes = {
|
|
|
129717
129987
|
is_managed: true;
|
|
129718
129988
|
};
|
|
129719
129989
|
};
|
|
129990
|
+
maxDuration: undefined;
|
|
129720
129991
|
};
|
|
129721
129992
|
'/acs/encoders/encode_credential': {
|
|
129722
129993
|
route: '/acs/encoders/encode_credential';
|
|
@@ -130989,6 +131260,7 @@ type Routes = {
|
|
|
130989
131260
|
};
|
|
130990
131261
|
};
|
|
130991
131262
|
};
|
|
131263
|
+
maxDuration: undefined;
|
|
130992
131264
|
};
|
|
130993
131265
|
'/acs/encoders/get': {
|
|
130994
131266
|
route: '/acs/encoders/get';
|
|
@@ -131039,6 +131311,7 @@ type Routes = {
|
|
|
131039
131311
|
display_name: string;
|
|
131040
131312
|
};
|
|
131041
131313
|
};
|
|
131314
|
+
maxDuration: undefined;
|
|
131042
131315
|
};
|
|
131043
131316
|
'/acs/encoders/list': {
|
|
131044
131317
|
route: '/acs/encoders/list';
|
|
@@ -131095,6 +131368,7 @@ type Routes = {
|
|
|
131095
131368
|
next_page_url: string | null;
|
|
131096
131369
|
};
|
|
131097
131370
|
};
|
|
131371
|
+
maxDuration: undefined;
|
|
131098
131372
|
};
|
|
131099
131373
|
'/acs/encoders/scan_credential': {
|
|
131100
131374
|
route: '/acs/encoders/scan_credential';
|
|
@@ -132363,6 +132637,7 @@ type Routes = {
|
|
|
132363
132637
|
};
|
|
132364
132638
|
};
|
|
132365
132639
|
};
|
|
132640
|
+
maxDuration: undefined;
|
|
132366
132641
|
};
|
|
132367
132642
|
'/acs/encoders/simulate/next_credential_encode_will_fail': {
|
|
132368
132643
|
route: '/acs/encoders/simulate/next_credential_encode_will_fail';
|
|
@@ -132384,6 +132659,7 @@ type Routes = {
|
|
|
132384
132659
|
commonParams: {};
|
|
132385
132660
|
formData: {};
|
|
132386
132661
|
jsonResponse: {};
|
|
132662
|
+
maxDuration: undefined;
|
|
132387
132663
|
};
|
|
132388
132664
|
'/acs/encoders/simulate/next_credential_encode_will_succeed': {
|
|
132389
132665
|
route: '/acs/encoders/simulate/next_credential_encode_will_succeed';
|
|
@@ -132398,6 +132674,7 @@ type Routes = {
|
|
|
132398
132674
|
commonParams: {};
|
|
132399
132675
|
formData: {};
|
|
132400
132676
|
jsonResponse: {};
|
|
132677
|
+
maxDuration: undefined;
|
|
132401
132678
|
};
|
|
132402
132679
|
'/acs/encoders/simulate/next_credential_scan_will_fail': {
|
|
132403
132680
|
route: '/acs/encoders/simulate/next_credential_scan_will_fail';
|
|
@@ -132416,6 +132693,7 @@ type Routes = {
|
|
|
132416
132693
|
commonParams: {};
|
|
132417
132694
|
formData: {};
|
|
132418
132695
|
jsonResponse: {};
|
|
132696
|
+
maxDuration: undefined;
|
|
132419
132697
|
};
|
|
132420
132698
|
'/acs/encoders/simulate/next_credential_scan_will_succeed': {
|
|
132421
132699
|
route: '/acs/encoders/simulate/next_credential_scan_will_succeed';
|
|
@@ -132442,6 +132720,7 @@ type Routes = {
|
|
|
132442
132720
|
commonParams: {};
|
|
132443
132721
|
formData: {};
|
|
132444
132722
|
jsonResponse: {};
|
|
132723
|
+
maxDuration: undefined;
|
|
132445
132724
|
};
|
|
132446
132725
|
'/acs/entrances/get': {
|
|
132447
132726
|
route: '/acs/entrances/get';
|
|
@@ -132579,6 +132858,7 @@ type Routes = {
|
|
|
132579
132858
|
can_belong_to_reservation?: boolean | undefined;
|
|
132580
132859
|
};
|
|
132581
132860
|
};
|
|
132861
|
+
maxDuration: undefined;
|
|
132582
132862
|
};
|
|
132583
132863
|
'/acs/entrances/grant_access': {
|
|
132584
132864
|
route: '/acs/entrances/grant_access';
|
|
@@ -132595,6 +132875,7 @@ type Routes = {
|
|
|
132595
132875
|
commonParams: {};
|
|
132596
132876
|
formData: {};
|
|
132597
132877
|
jsonResponse: {};
|
|
132878
|
+
maxDuration: undefined;
|
|
132598
132879
|
};
|
|
132599
132880
|
'/acs/entrances/list': {
|
|
132600
132881
|
route: '/acs/entrances/list';
|
|
@@ -132757,6 +133038,7 @@ type Routes = {
|
|
|
132757
133038
|
next_page_url: string | null;
|
|
132758
133039
|
};
|
|
132759
133040
|
};
|
|
133041
|
+
maxDuration: undefined;
|
|
132760
133042
|
};
|
|
132761
133043
|
'/acs/entrances/list_credentials_with_access': {
|
|
132762
133044
|
route: '/acs/entrances/list_credentials_with_access';
|
|
@@ -132903,6 +133185,7 @@ type Routes = {
|
|
|
132903
133185
|
is_managed: true;
|
|
132904
133186
|
}[];
|
|
132905
133187
|
};
|
|
133188
|
+
maxDuration: undefined;
|
|
132906
133189
|
};
|
|
132907
133190
|
'/acs/systems/get': {
|
|
132908
133191
|
route: '/acs/systems/get';
|
|
@@ -133039,6 +133322,7 @@ type Routes = {
|
|
|
133039
133322
|
})[];
|
|
133040
133323
|
};
|
|
133041
133324
|
};
|
|
133325
|
+
maxDuration: undefined;
|
|
133042
133326
|
};
|
|
133043
133327
|
'/acs/systems/list': {
|
|
133044
133328
|
route: '/acs/systems/list';
|
|
@@ -133172,6 +133456,7 @@ type Routes = {
|
|
|
133172
133456
|
})[];
|
|
133173
133457
|
}[];
|
|
133174
133458
|
};
|
|
133459
|
+
maxDuration: undefined;
|
|
133175
133460
|
};
|
|
133176
133461
|
'/acs/systems/list_compatible_credential_manager_acs_systems': {
|
|
133177
133462
|
route: '/acs/systems/list_compatible_credential_manager_acs_systems';
|
|
@@ -133303,6 +133588,7 @@ type Routes = {
|
|
|
133303
133588
|
})[];
|
|
133304
133589
|
}[];
|
|
133305
133590
|
};
|
|
133591
|
+
maxDuration: undefined;
|
|
133306
133592
|
};
|
|
133307
133593
|
'/acs/systems/report_devices': {
|
|
133308
133594
|
route: '/acs/systems/report_devices';
|
|
@@ -133338,6 +133624,7 @@ type Routes = {
|
|
|
133338
133624
|
};
|
|
133339
133625
|
formData: {};
|
|
133340
133626
|
jsonResponse: {};
|
|
133627
|
+
maxDuration: undefined;
|
|
133341
133628
|
};
|
|
133342
133629
|
'/acs/users/add_to_access_group': {
|
|
133343
133630
|
route: '/acs/users/add_to_access_group';
|
|
@@ -133352,6 +133639,7 @@ type Routes = {
|
|
|
133352
133639
|
};
|
|
133353
133640
|
formData: {};
|
|
133354
133641
|
jsonResponse: {};
|
|
133642
|
+
maxDuration: undefined;
|
|
133355
133643
|
};
|
|
133356
133644
|
'/acs/users/create': {
|
|
133357
133645
|
route: '/acs/users/create';
|
|
@@ -133607,6 +133895,7 @@ type Routes = {
|
|
|
133607
133895
|
is_managed: true;
|
|
133608
133896
|
};
|
|
133609
133897
|
};
|
|
133898
|
+
maxDuration: undefined;
|
|
133610
133899
|
};
|
|
133611
133900
|
'/acs/users/delete': {
|
|
133612
133901
|
route: '/acs/users/delete';
|
|
@@ -133623,6 +133912,7 @@ type Routes = {
|
|
|
133623
133912
|
};
|
|
133624
133913
|
formData: {};
|
|
133625
133914
|
jsonResponse: {};
|
|
133915
|
+
maxDuration: undefined;
|
|
133626
133916
|
};
|
|
133627
133917
|
'/acs/users/get': {
|
|
133628
133918
|
route: '/acs/users/get';
|
|
@@ -133862,6 +134152,7 @@ type Routes = {
|
|
|
133862
134152
|
is_managed: true;
|
|
133863
134153
|
};
|
|
133864
134154
|
};
|
|
134155
|
+
maxDuration: undefined;
|
|
133865
134156
|
};
|
|
133866
134157
|
'/acs/users/list': {
|
|
133867
134158
|
route: '/acs/users/list';
|
|
@@ -134115,6 +134406,7 @@ type Routes = {
|
|
|
134115
134406
|
next_page_url: string | null;
|
|
134116
134407
|
};
|
|
134117
134408
|
};
|
|
134409
|
+
maxDuration: undefined;
|
|
134118
134410
|
};
|
|
134119
134411
|
'/acs/users/list_accessible_entrances': {
|
|
134120
134412
|
route: '/acs/users/list_accessible_entrances';
|
|
@@ -134253,6 +134545,7 @@ type Routes = {
|
|
|
134253
134545
|
can_belong_to_reservation?: boolean | undefined;
|
|
134254
134546
|
}[];
|
|
134255
134547
|
};
|
|
134548
|
+
maxDuration: undefined;
|
|
134256
134549
|
};
|
|
134257
134550
|
'/acs/users/remove_from_access_group': {
|
|
134258
134551
|
route: '/acs/users/remove_from_access_group';
|
|
@@ -134269,6 +134562,7 @@ type Routes = {
|
|
|
134269
134562
|
};
|
|
134270
134563
|
formData: {};
|
|
134271
134564
|
jsonResponse: {};
|
|
134565
|
+
maxDuration: undefined;
|
|
134272
134566
|
};
|
|
134273
134567
|
'/acs/users/revoke_access_to_all_entrances': {
|
|
134274
134568
|
route: '/acs/users/revoke_access_to_all_entrances';
|
|
@@ -134285,6 +134579,7 @@ type Routes = {
|
|
|
134285
134579
|
commonParams: {};
|
|
134286
134580
|
formData: {};
|
|
134287
134581
|
jsonResponse: {};
|
|
134582
|
+
maxDuration: undefined;
|
|
134288
134583
|
};
|
|
134289
134584
|
'/acs/users/suspend': {
|
|
134290
134585
|
route: '/acs/users/suspend';
|
|
@@ -134301,6 +134596,7 @@ type Routes = {
|
|
|
134301
134596
|
};
|
|
134302
134597
|
formData: {};
|
|
134303
134598
|
jsonResponse: {};
|
|
134599
|
+
maxDuration: undefined;
|
|
134304
134600
|
};
|
|
134305
134601
|
'/acs/users/unmanaged/get': {
|
|
134306
134602
|
route: '/acs/users/unmanaged/get';
|
|
@@ -134532,6 +134828,7 @@ type Routes = {
|
|
|
134532
134828
|
is_managed: false;
|
|
134533
134829
|
};
|
|
134534
134830
|
};
|
|
134831
|
+
maxDuration: undefined;
|
|
134535
134832
|
};
|
|
134536
134833
|
'/acs/users/unmanaged/list': {
|
|
134537
134834
|
route: '/acs/users/unmanaged/list';
|
|
@@ -134770,6 +135067,7 @@ type Routes = {
|
|
|
134770
135067
|
is_managed: false;
|
|
134771
135068
|
}[];
|
|
134772
135069
|
};
|
|
135070
|
+
maxDuration: undefined;
|
|
134773
135071
|
};
|
|
134774
135072
|
'/acs/users/unsuspend': {
|
|
134775
135073
|
route: '/acs/users/unsuspend';
|
|
@@ -134786,6 +135084,7 @@ type Routes = {
|
|
|
134786
135084
|
};
|
|
134787
135085
|
formData: {};
|
|
134788
135086
|
jsonResponse: {};
|
|
135087
|
+
maxDuration: undefined;
|
|
134789
135088
|
};
|
|
134790
135089
|
'/acs/users/update': {
|
|
134791
135090
|
route: '/acs/users/update';
|
|
@@ -134819,6 +135118,7 @@ type Routes = {
|
|
|
134819
135118
|
commonParams: {};
|
|
134820
135119
|
formData: {};
|
|
134821
135120
|
jsonResponse: {};
|
|
135121
|
+
maxDuration: undefined;
|
|
134822
135122
|
};
|
|
134823
135123
|
'/action_attempts/get': {
|
|
134824
135124
|
route: '/action_attempts/get';
|
|
@@ -136087,6 +136387,7 @@ type Routes = {
|
|
|
136087
136387
|
};
|
|
136088
136388
|
};
|
|
136089
136389
|
};
|
|
136390
|
+
maxDuration: undefined;
|
|
136090
136391
|
};
|
|
136091
136392
|
'/action_attempts/list': {
|
|
136092
136393
|
route: '/action_attempts/list';
|
|
@@ -137350,6 +137651,7 @@ type Routes = {
|
|
|
137350
137651
|
};
|
|
137351
137652
|
})[];
|
|
137352
137653
|
};
|
|
137654
|
+
maxDuration: undefined;
|
|
137353
137655
|
};
|
|
137354
137656
|
'/bridges/get': {
|
|
137355
137657
|
route: '/bridges/get';
|
|
@@ -137372,6 +137674,7 @@ type Routes = {
|
|
|
137372
137674
|
created_at: string;
|
|
137373
137675
|
};
|
|
137374
137676
|
};
|
|
137677
|
+
maxDuration: undefined;
|
|
137375
137678
|
};
|
|
137376
137679
|
'/bridges/list': {
|
|
137377
137680
|
route: '/bridges/list';
|
|
@@ -137390,6 +137693,7 @@ type Routes = {
|
|
|
137390
137693
|
created_at: string;
|
|
137391
137694
|
}[];
|
|
137392
137695
|
};
|
|
137696
|
+
maxDuration: undefined;
|
|
137393
137697
|
};
|
|
137394
137698
|
'/client_sessions/create': {
|
|
137395
137699
|
route: '/client_sessions/create';
|
|
@@ -137454,6 +137758,7 @@ type Routes = {
|
|
|
137454
137758
|
user_identity_id?: string | undefined;
|
|
137455
137759
|
};
|
|
137456
137760
|
};
|
|
137761
|
+
maxDuration: undefined;
|
|
137457
137762
|
};
|
|
137458
137763
|
'/client_sessions/delete': {
|
|
137459
137764
|
route: '/client_sessions/delete';
|
|
@@ -137466,6 +137771,7 @@ type Routes = {
|
|
|
137466
137771
|
};
|
|
137467
137772
|
formData: {};
|
|
137468
137773
|
jsonResponse: {};
|
|
137774
|
+
maxDuration: undefined;
|
|
137469
137775
|
};
|
|
137470
137776
|
'/client_sessions/get': {
|
|
137471
137777
|
route: '/client_sessions/get';
|
|
@@ -137517,6 +137823,7 @@ type Routes = {
|
|
|
137517
137823
|
user_identity_id?: string | undefined;
|
|
137518
137824
|
};
|
|
137519
137825
|
};
|
|
137826
|
+
maxDuration: undefined;
|
|
137520
137827
|
};
|
|
137521
137828
|
'/client_sessions/get_or_create': {
|
|
137522
137829
|
route: '/client_sessions/get_or_create';
|
|
@@ -137577,6 +137884,7 @@ type Routes = {
|
|
|
137577
137884
|
user_identity_id?: string | undefined;
|
|
137578
137885
|
};
|
|
137579
137886
|
};
|
|
137887
|
+
maxDuration: undefined;
|
|
137580
137888
|
};
|
|
137581
137889
|
'/client_sessions/grant_access': {
|
|
137582
137890
|
route: '/client_sessions/grant_access';
|
|
@@ -137637,6 +137945,7 @@ type Routes = {
|
|
|
137637
137945
|
user_identity_id?: string | undefined;
|
|
137638
137946
|
};
|
|
137639
137947
|
};
|
|
137948
|
+
maxDuration: undefined;
|
|
137640
137949
|
};
|
|
137641
137950
|
'/client_sessions/list': {
|
|
137642
137951
|
route: '/client_sessions/list';
|
|
@@ -137685,6 +137994,7 @@ type Routes = {
|
|
|
137685
137994
|
user_identity_id?: string | undefined;
|
|
137686
137995
|
}[];
|
|
137687
137996
|
};
|
|
137997
|
+
maxDuration: undefined;
|
|
137688
137998
|
};
|
|
137689
137999
|
'/client_sessions/revoke': {
|
|
137690
138000
|
route: '/client_sessions/revoke';
|
|
@@ -137697,6 +138007,7 @@ type Routes = {
|
|
|
137697
138007
|
};
|
|
137698
138008
|
formData: {};
|
|
137699
138009
|
jsonResponse: {};
|
|
138010
|
+
maxDuration: undefined;
|
|
137700
138011
|
};
|
|
137701
138012
|
'/connect_webviews/create': {
|
|
137702
138013
|
route: '/connect_webviews/create';
|
|
@@ -137790,6 +138101,7 @@ type Routes = {
|
|
|
137790
138101
|
customer_key?: string | undefined;
|
|
137791
138102
|
};
|
|
137792
138103
|
};
|
|
138104
|
+
maxDuration: undefined;
|
|
137793
138105
|
};
|
|
137794
138106
|
'/connect_webviews/delete': {
|
|
137795
138107
|
route: '/connect_webviews/delete';
|
|
@@ -137802,6 +138114,7 @@ type Routes = {
|
|
|
137802
138114
|
commonParams: {};
|
|
137803
138115
|
formData: {};
|
|
137804
138116
|
jsonResponse: {};
|
|
138117
|
+
maxDuration: undefined;
|
|
137805
138118
|
};
|
|
137806
138119
|
'/connect_webviews/get': {
|
|
137807
138120
|
route: '/connect_webviews/get';
|
|
@@ -137873,6 +138186,7 @@ type Routes = {
|
|
|
137873
138186
|
customer_key?: string | undefined;
|
|
137874
138187
|
};
|
|
137875
138188
|
};
|
|
138189
|
+
maxDuration: undefined;
|
|
137876
138190
|
};
|
|
137877
138191
|
'/connect_webviews/list': {
|
|
137878
138192
|
route: '/connect_webviews/list';
|
|
@@ -137952,6 +138266,7 @@ type Routes = {
|
|
|
137952
138266
|
next_page_url: string | null;
|
|
137953
138267
|
};
|
|
137954
138268
|
};
|
|
138269
|
+
maxDuration: undefined;
|
|
137955
138270
|
};
|
|
137956
138271
|
'/connected_accounts/delete': {
|
|
137957
138272
|
route: '/connected_accounts/delete';
|
|
@@ -137966,6 +138281,7 @@ type Routes = {
|
|
|
137966
138281
|
commonParams: {};
|
|
137967
138282
|
formData: {};
|
|
137968
138283
|
jsonResponse: {};
|
|
138284
|
+
maxDuration: undefined;
|
|
137969
138285
|
};
|
|
137970
138286
|
'/connected_accounts/get': {
|
|
137971
138287
|
route: '/connected_accounts/get';
|
|
@@ -138109,6 +138425,7 @@ type Routes = {
|
|
|
138109
138425
|
accepted_capabilities: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control')[];
|
|
138110
138426
|
};
|
|
138111
138427
|
};
|
|
138428
|
+
maxDuration: undefined;
|
|
138112
138429
|
};
|
|
138113
138430
|
'/connected_accounts/list': {
|
|
138114
138431
|
route: '/connected_accounts/list';
|
|
@@ -138269,6 +138586,7 @@ type Routes = {
|
|
|
138269
138586
|
next_page_url: string | null;
|
|
138270
138587
|
};
|
|
138271
138588
|
};
|
|
138589
|
+
maxDuration: undefined;
|
|
138272
138590
|
};
|
|
138273
138591
|
'/connected_accounts/simulate/disconnect': {
|
|
138274
138592
|
route: '/connected_accounts/simulate/disconnect';
|
|
@@ -138280,6 +138598,7 @@ type Routes = {
|
|
|
138280
138598
|
commonParams: {};
|
|
138281
138599
|
formData: {};
|
|
138282
138600
|
jsonResponse: {};
|
|
138601
|
+
maxDuration: undefined;
|
|
138283
138602
|
};
|
|
138284
138603
|
'/connected_accounts/sync': {
|
|
138285
138604
|
route: '/connected_accounts/sync';
|
|
@@ -138292,6 +138611,7 @@ type Routes = {
|
|
|
138292
138611
|
commonParams: {};
|
|
138293
138612
|
formData: {};
|
|
138294
138613
|
jsonResponse: {};
|
|
138614
|
+
maxDuration: undefined;
|
|
138295
138615
|
};
|
|
138296
138616
|
'/connected_accounts/update': {
|
|
138297
138617
|
route: '/connected_accounts/update';
|
|
@@ -138442,6 +138762,7 @@ type Routes = {
|
|
|
138442
138762
|
accepted_capabilities: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control')[];
|
|
138443
138763
|
};
|
|
138444
138764
|
};
|
|
138765
|
+
maxDuration: undefined;
|
|
138445
138766
|
};
|
|
138446
138767
|
'/customers/create_portal': {
|
|
138447
138768
|
route: '/customers/create_portal';
|
|
@@ -138832,6 +139153,7 @@ type Routes = {
|
|
|
138832
139153
|
created_at: string;
|
|
138833
139154
|
};
|
|
138834
139155
|
};
|
|
139156
|
+
maxDuration: undefined;
|
|
138835
139157
|
};
|
|
138836
139158
|
'/customers/delete_data': {
|
|
138837
139159
|
route: '/customers/delete_data';
|
|
@@ -138880,6 +139202,7 @@ type Routes = {
|
|
|
138880
139202
|
};
|
|
138881
139203
|
formData: {};
|
|
138882
139204
|
jsonResponse: {};
|
|
139205
|
+
maxDuration: undefined;
|
|
138883
139206
|
};
|
|
138884
139207
|
'/customers/push_data': {
|
|
138885
139208
|
route: '/customers/push_data';
|
|
@@ -139171,6 +139494,7 @@ type Routes = {
|
|
|
139171
139494
|
};
|
|
139172
139495
|
formData: {};
|
|
139173
139496
|
jsonResponse: {};
|
|
139497
|
+
maxDuration: undefined;
|
|
139174
139498
|
};
|
|
139175
139499
|
'/devices/delete': {
|
|
139176
139500
|
route: '/devices/delete';
|
|
@@ -139183,6 +139507,7 @@ type Routes = {
|
|
|
139183
139507
|
};
|
|
139184
139508
|
formData: {};
|
|
139185
139509
|
jsonResponse: {};
|
|
139510
|
+
maxDuration: undefined;
|
|
139186
139511
|
};
|
|
139187
139512
|
'/devices/get': {
|
|
139188
139513
|
route: '/devices/get';
|
|
@@ -139796,6 +140121,8 @@ type Routes = {
|
|
|
139796
140121
|
device_id: string;
|
|
139797
140122
|
/** Device name for an Ultraloq device. */
|
|
139798
140123
|
device_name: string;
|
|
140124
|
+
/** Device type for an Ultraloq device. */
|
|
140125
|
+
device_type: string;
|
|
139799
140126
|
} | undefined;
|
|
139800
140127
|
}) & ({
|
|
139801
140128
|
/** */
|
|
@@ -140419,6 +140746,7 @@ type Routes = {
|
|
|
140419
140746
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
140420
140747
|
};
|
|
140421
140748
|
};
|
|
140749
|
+
maxDuration: undefined;
|
|
140422
140750
|
};
|
|
140423
140751
|
'/devices/list': {
|
|
140424
140752
|
route: '/devices/list';
|
|
@@ -141066,6 +141394,8 @@ type Routes = {
|
|
|
141066
141394
|
device_id: string;
|
|
141067
141395
|
/** Device name for an Ultraloq device. */
|
|
141068
141396
|
device_name: string;
|
|
141397
|
+
/** Device type for an Ultraloq device. */
|
|
141398
|
+
device_type: string;
|
|
141069
141399
|
} | undefined;
|
|
141070
141400
|
}) & ({
|
|
141071
141401
|
/** */
|
|
@@ -141698,6 +142028,7 @@ type Routes = {
|
|
|
141698
142028
|
next_page_url: string | null;
|
|
141699
142029
|
};
|
|
141700
142030
|
};
|
|
142031
|
+
maxDuration: undefined;
|
|
141701
142032
|
};
|
|
141702
142033
|
'/devices/list_device_providers': {
|
|
141703
142034
|
route: '/devices/list_device_providers';
|
|
@@ -141736,6 +142067,7 @@ type Routes = {
|
|
|
141736
142067
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
141737
142068
|
}[];
|
|
141738
142069
|
};
|
|
142070
|
+
maxDuration: undefined;
|
|
141739
142071
|
};
|
|
141740
142072
|
'/devices/simulate/connect': {
|
|
141741
142073
|
route: '/devices/simulate/connect';
|
|
@@ -141748,6 +142080,7 @@ type Routes = {
|
|
|
141748
142080
|
commonParams: {};
|
|
141749
142081
|
formData: {};
|
|
141750
142082
|
jsonResponse: {};
|
|
142083
|
+
maxDuration: undefined;
|
|
141751
142084
|
};
|
|
141752
142085
|
'/devices/simulate/connect_to_hub': {
|
|
141753
142086
|
route: '/devices/simulate/connect_to_hub';
|
|
@@ -141760,6 +142093,7 @@ type Routes = {
|
|
|
141760
142093
|
commonParams: {};
|
|
141761
142094
|
formData: {};
|
|
141762
142095
|
jsonResponse: {};
|
|
142096
|
+
maxDuration: undefined;
|
|
141763
142097
|
};
|
|
141764
142098
|
'/devices/simulate/disconnect': {
|
|
141765
142099
|
route: '/devices/simulate/disconnect';
|
|
@@ -141772,6 +142106,7 @@ type Routes = {
|
|
|
141772
142106
|
commonParams: {};
|
|
141773
142107
|
formData: {};
|
|
141774
142108
|
jsonResponse: {};
|
|
142109
|
+
maxDuration: undefined;
|
|
141775
142110
|
};
|
|
141776
142111
|
'/devices/simulate/disconnect_from_hub': {
|
|
141777
142112
|
route: '/devices/simulate/disconnect_from_hub';
|
|
@@ -141784,6 +142119,7 @@ type Routes = {
|
|
|
141784
142119
|
commonParams: {};
|
|
141785
142120
|
formData: {};
|
|
141786
142121
|
jsonResponse: {};
|
|
142122
|
+
maxDuration: undefined;
|
|
141787
142123
|
};
|
|
141788
142124
|
'/devices/simulate/paid_subscription': {
|
|
141789
142125
|
route: '/devices/simulate/paid_subscription';
|
|
@@ -141796,6 +142132,7 @@ type Routes = {
|
|
|
141796
142132
|
commonParams: {};
|
|
141797
142133
|
formData: {};
|
|
141798
142134
|
jsonResponse: {};
|
|
142135
|
+
maxDuration: undefined;
|
|
141799
142136
|
};
|
|
141800
142137
|
'/devices/simulate/remove': {
|
|
141801
142138
|
route: '/devices/simulate/remove';
|
|
@@ -141808,6 +142145,7 @@ type Routes = {
|
|
|
141808
142145
|
commonParams: {};
|
|
141809
142146
|
formData: {};
|
|
141810
142147
|
jsonResponse: {};
|
|
142148
|
+
maxDuration: undefined;
|
|
141811
142149
|
};
|
|
141812
142150
|
'/devices/unmanaged/get': {
|
|
141813
142151
|
route: '/devices/unmanaged/get';
|
|
@@ -142214,6 +142552,7 @@ type Routes = {
|
|
|
142214
142552
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
142215
142553
|
};
|
|
142216
142554
|
};
|
|
142555
|
+
maxDuration: undefined;
|
|
142217
142556
|
};
|
|
142218
142557
|
'/devices/unmanaged/list': {
|
|
142219
142558
|
route: '/devices/unmanaged/list';
|
|
@@ -142663,6 +143002,7 @@ type Routes = {
|
|
|
142663
143002
|
next_page_url: string | null;
|
|
142664
143003
|
};
|
|
142665
143004
|
};
|
|
143005
|
+
maxDuration: undefined;
|
|
142666
143006
|
};
|
|
142667
143007
|
'/devices/unmanaged/update': {
|
|
142668
143008
|
route: '/devices/unmanaged/update';
|
|
@@ -142681,6 +143021,7 @@ type Routes = {
|
|
|
142681
143021
|
};
|
|
142682
143022
|
formData: {};
|
|
142683
143023
|
jsonResponse: {};
|
|
143024
|
+
maxDuration: undefined;
|
|
142684
143025
|
};
|
|
142685
143026
|
'/devices/update': {
|
|
142686
143027
|
route: '/devices/update';
|
|
@@ -142705,6 +143046,7 @@ type Routes = {
|
|
|
142705
143046
|
};
|
|
142706
143047
|
formData: {};
|
|
142707
143048
|
jsonResponse: {};
|
|
143049
|
+
maxDuration: undefined;
|
|
142708
143050
|
};
|
|
142709
143051
|
'/events/get': {
|
|
142710
143052
|
route: '/events/get';
|
|
@@ -144641,6 +144983,7 @@ type Routes = {
|
|
|
144641
144983
|
}) | undefined;
|
|
144642
144984
|
message?: string | undefined;
|
|
144643
144985
|
};
|
|
144986
|
+
maxDuration: undefined;
|
|
144644
144987
|
};
|
|
144645
144988
|
'/events/list': {
|
|
144646
144989
|
route: '/events/list';
|
|
@@ -146599,6 +146942,7 @@ type Routes = {
|
|
|
146599
146942
|
acs_entrance_ids: string[];
|
|
146600
146943
|
})[];
|
|
146601
146944
|
};
|
|
146945
|
+
maxDuration: undefined;
|
|
146602
146946
|
};
|
|
146603
146947
|
'/instant_keys/delete': {
|
|
146604
146948
|
route: '/instant_keys/delete';
|
|
@@ -146611,6 +146955,7 @@ type Routes = {
|
|
|
146611
146955
|
};
|
|
146612
146956
|
formData: {};
|
|
146613
146957
|
jsonResponse: {};
|
|
146958
|
+
maxDuration: undefined;
|
|
146614
146959
|
};
|
|
146615
146960
|
'/instant_keys/get': {
|
|
146616
146961
|
route: '/instant_keys/get';
|
|
@@ -146656,6 +147001,7 @@ type Routes = {
|
|
|
146656
147001
|
} | undefined;
|
|
146657
147002
|
};
|
|
146658
147003
|
};
|
|
147004
|
+
maxDuration: undefined;
|
|
146659
147005
|
};
|
|
146660
147006
|
'/instant_keys/list': {
|
|
146661
147007
|
route: '/instant_keys/list';
|
|
@@ -146696,6 +147042,7 @@ type Routes = {
|
|
|
146696
147042
|
} | undefined;
|
|
146697
147043
|
}[];
|
|
146698
147044
|
};
|
|
147045
|
+
maxDuration: undefined;
|
|
146699
147046
|
};
|
|
146700
147047
|
'/locks/get': {
|
|
146701
147048
|
route: '/locks/get';
|
|
@@ -147309,6 +147656,8 @@ type Routes = {
|
|
|
147309
147656
|
device_id: string;
|
|
147310
147657
|
/** Device name for an Ultraloq device. */
|
|
147311
147658
|
device_name: string;
|
|
147659
|
+
/** Device type for an Ultraloq device. */
|
|
147660
|
+
device_type: string;
|
|
147312
147661
|
} | undefined;
|
|
147313
147662
|
}) & ({
|
|
147314
147663
|
/** */
|
|
@@ -148530,6 +148879,8 @@ type Routes = {
|
|
|
148530
148879
|
device_id: string;
|
|
148531
148880
|
/** Device name for an Ultraloq device. */
|
|
148532
148881
|
device_name: string;
|
|
148882
|
+
/** Device type for an Ultraloq device. */
|
|
148883
|
+
device_type: string;
|
|
148533
148884
|
} | undefined;
|
|
148534
148885
|
}) & ({
|
|
148535
148886
|
/** */
|
|
@@ -149153,6 +149504,7 @@ type Routes = {
|
|
|
149153
149504
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
149154
149505
|
};
|
|
149155
149506
|
};
|
|
149507
|
+
maxDuration: undefined;
|
|
149156
149508
|
};
|
|
149157
149509
|
'/locks/list': {
|
|
149158
149510
|
route: '/locks/list';
|
|
@@ -149800,6 +150152,8 @@ type Routes = {
|
|
|
149800
150152
|
device_id: string;
|
|
149801
150153
|
/** Device name for an Ultraloq device. */
|
|
149802
150154
|
device_name: string;
|
|
150155
|
+
/** Device type for an Ultraloq device. */
|
|
150156
|
+
device_type: string;
|
|
149803
150157
|
} | undefined;
|
|
149804
150158
|
}) & ({
|
|
149805
150159
|
/** */
|
|
@@ -151020,6 +151374,8 @@ type Routes = {
|
|
|
151020
151374
|
device_id: string;
|
|
151021
151375
|
/** Device name for an Ultraloq device. */
|
|
151022
151376
|
device_name: string;
|
|
151377
|
+
/** Device type for an Ultraloq device. */
|
|
151378
|
+
device_type: string;
|
|
151023
151379
|
} | undefined;
|
|
151024
151380
|
}) & ({
|
|
151025
151381
|
/** */
|
|
@@ -151643,6 +151999,7 @@ type Routes = {
|
|
|
151643
151999
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
151644
152000
|
}[];
|
|
151645
152001
|
};
|
|
152002
|
+
maxDuration: undefined;
|
|
151646
152003
|
};
|
|
151647
152004
|
'/locks/lock_door': {
|
|
151648
152005
|
route: '/locks/lock_door';
|
|
@@ -152913,6 +153270,7 @@ type Routes = {
|
|
|
152913
153270
|
};
|
|
152914
153271
|
};
|
|
152915
153272
|
};
|
|
153273
|
+
maxDuration: undefined;
|
|
152916
153274
|
};
|
|
152917
153275
|
'/locks/simulate/keypad_code_entry': {
|
|
152918
153276
|
route: '/locks/simulate/keypad_code_entry';
|
|
@@ -154183,6 +154541,7 @@ type Routes = {
|
|
|
154183
154541
|
};
|
|
154184
154542
|
};
|
|
154185
154543
|
};
|
|
154544
|
+
maxDuration: undefined;
|
|
154186
154545
|
};
|
|
154187
154546
|
'/locks/simulate/manual_lock_via_keypad': {
|
|
154188
154547
|
route: '/locks/simulate/manual_lock_via_keypad';
|
|
@@ -155451,6 +155810,7 @@ type Routes = {
|
|
|
155451
155810
|
};
|
|
155452
155811
|
};
|
|
155453
155812
|
};
|
|
155813
|
+
maxDuration: undefined;
|
|
155454
155814
|
};
|
|
155455
155815
|
'/locks/unlock_door': {
|
|
155456
155816
|
route: '/locks/unlock_door';
|
|
@@ -156721,6 +157081,7 @@ type Routes = {
|
|
|
156721
157081
|
};
|
|
156722
157082
|
};
|
|
156723
157083
|
};
|
|
157084
|
+
maxDuration: undefined;
|
|
156724
157085
|
};
|
|
156725
157086
|
'/noise_sensors/list': {
|
|
156726
157087
|
route: '/noise_sensors/list';
|
|
@@ -157368,6 +157729,8 @@ type Routes = {
|
|
|
157368
157729
|
device_id: string;
|
|
157369
157730
|
/** Device name for an Ultraloq device. */
|
|
157370
157731
|
device_name: string;
|
|
157732
|
+
/** Device type for an Ultraloq device. */
|
|
157733
|
+
device_type: string;
|
|
157371
157734
|
} | undefined;
|
|
157372
157735
|
}) & ({
|
|
157373
157736
|
/** */
|
|
@@ -158588,6 +158951,8 @@ type Routes = {
|
|
|
158588
158951
|
device_id: string;
|
|
158589
158952
|
/** Device name for an Ultraloq device. */
|
|
158590
158953
|
device_name: string;
|
|
158954
|
+
/** Device type for an Ultraloq device. */
|
|
158955
|
+
device_type: string;
|
|
158591
158956
|
} | undefined;
|
|
158592
158957
|
}) & ({
|
|
158593
158958
|
/** */
|
|
@@ -159211,6 +159576,7 @@ type Routes = {
|
|
|
159211
159576
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
159212
159577
|
}[];
|
|
159213
159578
|
};
|
|
159579
|
+
maxDuration: undefined;
|
|
159214
159580
|
};
|
|
159215
159581
|
'/noise_sensors/noise_thresholds/create': {
|
|
159216
159582
|
route: '/noise_sensors/noise_thresholds/create';
|
|
@@ -160508,6 +160874,7 @@ type Routes = {
|
|
|
160508
160874
|
noise_threshold_decibels: number;
|
|
160509
160875
|
};
|
|
160510
160876
|
};
|
|
160877
|
+
maxDuration: undefined;
|
|
160511
160878
|
};
|
|
160512
160879
|
'/noise_sensors/noise_thresholds/delete': {
|
|
160513
160880
|
route: '/noise_sensors/noise_thresholds/delete';
|
|
@@ -161780,6 +162147,7 @@ type Routes = {
|
|
|
161780
162147
|
};
|
|
161781
162148
|
};
|
|
161782
162149
|
};
|
|
162150
|
+
maxDuration: undefined;
|
|
161783
162151
|
};
|
|
161784
162152
|
'/noise_sensors/noise_thresholds/get': {
|
|
161785
162153
|
route: '/noise_sensors/noise_thresholds/get';
|
|
@@ -161810,6 +162178,7 @@ type Routes = {
|
|
|
161810
162178
|
noise_threshold_decibels: number;
|
|
161811
162179
|
};
|
|
161812
162180
|
};
|
|
162181
|
+
maxDuration: undefined;
|
|
161813
162182
|
};
|
|
161814
162183
|
'/noise_sensors/noise_thresholds/list': {
|
|
161815
162184
|
route: '/noise_sensors/noise_thresholds/list';
|
|
@@ -161841,6 +162210,7 @@ type Routes = {
|
|
|
161841
162210
|
noise_threshold_decibels: number;
|
|
161842
162211
|
}[];
|
|
161843
162212
|
};
|
|
162213
|
+
maxDuration: undefined;
|
|
161844
162214
|
};
|
|
161845
162215
|
'/noise_sensors/noise_thresholds/update': {
|
|
161846
162216
|
route: '/noise_sensors/noise_thresholds/update';
|
|
@@ -163123,6 +163493,7 @@ type Routes = {
|
|
|
163123
163493
|
};
|
|
163124
163494
|
};
|
|
163125
163495
|
};
|
|
163496
|
+
maxDuration: undefined;
|
|
163126
163497
|
};
|
|
163127
163498
|
'/noise_sensors/simulate/trigger_noise_threshold': {
|
|
163128
163499
|
route: '/noise_sensors/simulate/trigger_noise_threshold';
|
|
@@ -163135,6 +163506,7 @@ type Routes = {
|
|
|
163135
163506
|
commonParams: {};
|
|
163136
163507
|
formData: {};
|
|
163137
163508
|
jsonResponse: {};
|
|
163509
|
+
maxDuration: undefined;
|
|
163138
163510
|
};
|
|
163139
163511
|
'/phones/deactivate': {
|
|
163140
163512
|
route: '/phones/deactivate';
|
|
@@ -163147,6 +163519,7 @@ type Routes = {
|
|
|
163147
163519
|
commonParams: {};
|
|
163148
163520
|
formData: {};
|
|
163149
163521
|
jsonResponse: {};
|
|
163522
|
+
maxDuration: undefined;
|
|
163150
163523
|
};
|
|
163151
163524
|
'/phones/get': {
|
|
163152
163525
|
route: '/phones/get';
|
|
@@ -163218,6 +163591,7 @@ type Routes = {
|
|
|
163218
163591
|
};
|
|
163219
163592
|
};
|
|
163220
163593
|
};
|
|
163594
|
+
maxDuration: undefined;
|
|
163221
163595
|
};
|
|
163222
163596
|
'/phones/list': {
|
|
163223
163597
|
route: '/phones/list';
|
|
@@ -163290,6 +163664,7 @@ type Routes = {
|
|
|
163290
163664
|
};
|
|
163291
163665
|
}[];
|
|
163292
163666
|
};
|
|
163667
|
+
maxDuration: undefined;
|
|
163293
163668
|
};
|
|
163294
163669
|
'/phones/simulate/create_sandbox_phone': {
|
|
163295
163670
|
route: '/phones/simulate/create_sandbox_phone';
|
|
@@ -163389,6 +163764,7 @@ type Routes = {
|
|
|
163389
163764
|
};
|
|
163390
163765
|
};
|
|
163391
163766
|
};
|
|
163767
|
+
maxDuration: undefined;
|
|
163392
163768
|
};
|
|
163393
163769
|
'/seam/bridge/v1/bridge_client_sessions/create': {
|
|
163394
163770
|
route: '/seam/bridge/v1/bridge_client_sessions/create';
|
|
@@ -163461,6 +163837,7 @@ type Routes = {
|
|
|
163461
163837
|
telemetry_url: string | null;
|
|
163462
163838
|
};
|
|
163463
163839
|
};
|
|
163840
|
+
maxDuration: undefined;
|
|
163464
163841
|
};
|
|
163465
163842
|
'/seam/bridge/v1/bridge_client_sessions/get': {
|
|
163466
163843
|
route: '/seam/bridge/v1/bridge_client_sessions/get';
|
|
@@ -163526,6 +163903,7 @@ type Routes = {
|
|
|
163526
163903
|
telemetry_url: string | null;
|
|
163527
163904
|
};
|
|
163528
163905
|
};
|
|
163906
|
+
maxDuration: undefined;
|
|
163529
163907
|
};
|
|
163530
163908
|
'/seam/bridge/v1/bridge_client_sessions/refresh_telemetry_token': {
|
|
163531
163909
|
route: '/seam/bridge/v1/bridge_client_sessions/refresh_telemetry_token';
|
|
@@ -163591,6 +163969,7 @@ type Routes = {
|
|
|
163591
163969
|
telemetry_url: string | null;
|
|
163592
163970
|
};
|
|
163593
163971
|
};
|
|
163972
|
+
maxDuration: undefined;
|
|
163594
163973
|
};
|
|
163595
163974
|
'/seam/bridge/v1/bridge_client_sessions/regenerate_pairing_code': {
|
|
163596
163975
|
route: '/seam/bridge/v1/bridge_client_sessions/regenerate_pairing_code';
|
|
@@ -163656,6 +164035,7 @@ type Routes = {
|
|
|
163656
164035
|
telemetry_url: string | null;
|
|
163657
164036
|
};
|
|
163658
164037
|
};
|
|
164038
|
+
maxDuration: undefined;
|
|
163659
164039
|
};
|
|
163660
164040
|
'/seam/bridge/v1/bridge_client_sessions/report_status': {
|
|
163661
164041
|
route: '/seam/bridge/v1/bridge_client_sessions/report_status';
|
|
@@ -163670,6 +164050,7 @@ type Routes = {
|
|
|
163670
164050
|
commonParams: {};
|
|
163671
164051
|
formData: {};
|
|
163672
164052
|
jsonResponse: {};
|
|
164053
|
+
maxDuration: undefined;
|
|
163673
164054
|
};
|
|
163674
164055
|
'/seam/bridge/v1/bridge_connected_systems/list': {
|
|
163675
164056
|
route: '/seam/bridge/v1/bridge_connected_systems/list';
|
|
@@ -163698,6 +164079,7 @@ type Routes = {
|
|
|
163698
164079
|
workspace_display_name: string;
|
|
163699
164080
|
}[];
|
|
163700
164081
|
};
|
|
164082
|
+
maxDuration: undefined;
|
|
163701
164083
|
};
|
|
163702
164084
|
'/seam/console/v1/get_resource_locator': {
|
|
163703
164085
|
route: '/seam/console/v1/get_resource_locator';
|
|
@@ -163715,6 +164097,7 @@ type Routes = {
|
|
|
163715
164097
|
device_id?: string | undefined;
|
|
163716
164098
|
};
|
|
163717
164099
|
};
|
|
164100
|
+
maxDuration: undefined;
|
|
163718
164101
|
};
|
|
163719
164102
|
'/seam/console/v1/timelines/get': {
|
|
163720
164103
|
route: '/seam/console/v1/timelines/get';
|
|
@@ -163795,6 +164178,7 @@ type Routes = {
|
|
|
163795
164178
|
next_page_url: string | null;
|
|
163796
164179
|
};
|
|
163797
164180
|
};
|
|
164181
|
+
maxDuration: undefined;
|
|
163798
164182
|
};
|
|
163799
164183
|
'/seam/customer/v1/access_grants/list': {
|
|
163800
164184
|
route: '/seam/customer/v1/access_grants/list';
|
|
@@ -163862,6 +164246,7 @@ type Routes = {
|
|
|
163862
164246
|
customization_profile_id?: string | undefined;
|
|
163863
164247
|
}[];
|
|
163864
164248
|
};
|
|
164249
|
+
maxDuration: undefined;
|
|
163865
164250
|
};
|
|
163866
164251
|
'/seam/customer/v1/automation_runs/list': {
|
|
163867
164252
|
route: '/seam/customer/v1/automation_runs/list';
|
|
@@ -163916,6 +164301,7 @@ type Routes = {
|
|
|
163916
164301
|
next_page_url: string | null;
|
|
163917
164302
|
};
|
|
163918
164303
|
};
|
|
164304
|
+
maxDuration: undefined;
|
|
163919
164305
|
};
|
|
163920
164306
|
'/seam/customer/v1/automations/delete': {
|
|
163921
164307
|
route: '/seam/customer/v1/automations/delete';
|
|
@@ -163925,6 +164311,7 @@ type Routes = {
|
|
|
163925
164311
|
commonParams: {};
|
|
163926
164312
|
formData: {};
|
|
163927
164313
|
jsonResponse: {};
|
|
164314
|
+
maxDuration: undefined;
|
|
163928
164315
|
};
|
|
163929
164316
|
'/seam/customer/v1/automations/get': {
|
|
163930
164317
|
route: '/seam/customer/v1/automations/get';
|
|
@@ -163998,6 +164385,7 @@ type Routes = {
|
|
|
163998
164385
|
};
|
|
163999
164386
|
} | undefined;
|
|
164000
164387
|
};
|
|
164388
|
+
maxDuration: undefined;
|
|
164001
164389
|
};
|
|
164002
164390
|
'/seam/customer/v1/automations/update': {
|
|
164003
164391
|
route: '/seam/customer/v1/automations/update';
|
|
@@ -164073,6 +164461,7 @@ type Routes = {
|
|
|
164073
164461
|
commonParams: {};
|
|
164074
164462
|
formData: {};
|
|
164075
164463
|
jsonResponse: {};
|
|
164464
|
+
maxDuration: undefined;
|
|
164076
164465
|
};
|
|
164077
164466
|
'/seam/customer/v1/connectors/connector_types': {
|
|
164078
164467
|
route: '/seam/customer/v1/connectors/connector_types';
|
|
@@ -164095,6 +164484,7 @@ type Routes = {
|
|
|
164095
164484
|
}[];
|
|
164096
164485
|
}[];
|
|
164097
164486
|
};
|
|
164487
|
+
maxDuration: undefined;
|
|
164098
164488
|
};
|
|
164099
164489
|
'/seam/customer/v1/connectors/create': {
|
|
164100
164490
|
route: '/seam/customer/v1/connectors/create';
|
|
@@ -164126,6 +164516,7 @@ type Routes = {
|
|
|
164126
164516
|
error?: string | undefined;
|
|
164127
164517
|
};
|
|
164128
164518
|
};
|
|
164519
|
+
maxDuration: undefined;
|
|
164129
164520
|
};
|
|
164130
164521
|
'/seam/customer/v1/connectors/delete': {
|
|
164131
164522
|
route: '/seam/customer/v1/connectors/delete';
|
|
@@ -164144,6 +164535,7 @@ type Routes = {
|
|
|
164144
164535
|
status: 'deleted';
|
|
164145
164536
|
};
|
|
164146
164537
|
};
|
|
164538
|
+
maxDuration: undefined;
|
|
164147
164539
|
};
|
|
164148
164540
|
'/seam/customer/v1/connectors/list': {
|
|
164149
164541
|
route: '/seam/customer/v1/connectors/list';
|
|
@@ -164164,6 +164556,7 @@ type Routes = {
|
|
|
164164
164556
|
updated_at: string;
|
|
164165
164557
|
}[];
|
|
164166
164558
|
};
|
|
164559
|
+
maxDuration: undefined;
|
|
164167
164560
|
};
|
|
164168
164561
|
'/seam/customer/v1/connectors/sync': {
|
|
164169
164562
|
route: '/seam/customer/v1/connectors/sync';
|
|
@@ -164182,6 +164575,7 @@ type Routes = {
|
|
|
164182
164575
|
message: string;
|
|
164183
164576
|
};
|
|
164184
164577
|
};
|
|
164578
|
+
maxDuration: undefined;
|
|
164185
164579
|
};
|
|
164186
164580
|
'/seam/customer/v1/connectors/update': {
|
|
164187
164581
|
route: '/seam/customer/v1/connectors/update';
|
|
@@ -164225,6 +164619,7 @@ type Routes = {
|
|
|
164225
164619
|
error?: string | undefined;
|
|
164226
164620
|
};
|
|
164227
164621
|
};
|
|
164622
|
+
maxDuration: undefined;
|
|
164228
164623
|
};
|
|
164229
164624
|
'/seam/customer/v1/events/list': {
|
|
164230
164625
|
route: '/seam/customer/v1/events/list';
|
|
@@ -166163,6 +166558,7 @@ type Routes = {
|
|
|
166163
166558
|
acs_entrance_ids: string[];
|
|
166164
166559
|
})[];
|
|
166165
166560
|
};
|
|
166561
|
+
maxDuration: undefined;
|
|
166166
166562
|
};
|
|
166167
166563
|
'/seam/customer/v1/portals/get': {
|
|
166168
166564
|
route: '/seam/customer/v1/portals/get';
|
|
@@ -166258,6 +166654,7 @@ type Routes = {
|
|
|
166258
166654
|
business_vertical?: ('short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
|
|
166259
166655
|
};
|
|
166260
166656
|
};
|
|
166657
|
+
maxDuration: undefined;
|
|
166261
166658
|
};
|
|
166262
166659
|
'/seam/customer/v1/reservations/get': {
|
|
166263
166660
|
route: '/seam/customer/v1/reservations/get';
|
|
@@ -166294,6 +166691,7 @@ type Routes = {
|
|
|
166294
166691
|
}[];
|
|
166295
166692
|
};
|
|
166296
166693
|
};
|
|
166694
|
+
maxDuration: undefined;
|
|
166297
166695
|
};
|
|
166298
166696
|
'/seam/customer/v1/reservations/list': {
|
|
166299
166697
|
route: '/seam/customer/v1/reservations/list';
|
|
@@ -166345,6 +166743,7 @@ type Routes = {
|
|
|
166345
166743
|
next_page_url: string | null;
|
|
166346
166744
|
};
|
|
166347
166745
|
};
|
|
166746
|
+
maxDuration: undefined;
|
|
166348
166747
|
};
|
|
166349
166748
|
'/seam/customer/v1/settings/get': {
|
|
166350
166749
|
route: '/seam/customer/v1/settings/get';
|
|
@@ -166357,6 +166756,7 @@ type Routes = {
|
|
|
166357
166756
|
/** Business vertical of the customer portal. */
|
|
166358
166757
|
business_vertical?: ('short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
|
|
166359
166758
|
};
|
|
166759
|
+
maxDuration: undefined;
|
|
166360
166760
|
};
|
|
166361
166761
|
'/seam/customer/v1/settings/update': {
|
|
166362
166762
|
route: '/seam/customer/v1/settings/update';
|
|
@@ -166369,6 +166769,7 @@ type Routes = {
|
|
|
166369
166769
|
commonParams: {};
|
|
166370
166770
|
formData: {};
|
|
166371
166771
|
jsonResponse: {};
|
|
166772
|
+
maxDuration: undefined;
|
|
166372
166773
|
};
|
|
166373
166774
|
'/seam/customer/v1/spaces/create': {
|
|
166374
166775
|
route: '/seam/customer/v1/spaces/create';
|
|
@@ -166415,6 +166816,7 @@ type Routes = {
|
|
|
166415
166816
|
parent_space_key?: string | undefined;
|
|
166416
166817
|
};
|
|
166417
166818
|
};
|
|
166819
|
+
maxDuration: undefined;
|
|
166418
166820
|
};
|
|
166419
166821
|
'/seam/customer/v1/spaces/list': {
|
|
166420
166822
|
route: '/seam/customer/v1/spaces/list';
|
|
@@ -166454,6 +166856,7 @@ type Routes = {
|
|
|
166454
166856
|
parent_space_key?: string | undefined;
|
|
166455
166857
|
}[];
|
|
166456
166858
|
};
|
|
166859
|
+
maxDuration: undefined;
|
|
166457
166860
|
};
|
|
166458
166861
|
'/seam/customer/v1/staff_members/get': {
|
|
166459
166862
|
route: '/seam/customer/v1/staff_members/get';
|
|
@@ -166543,6 +166946,7 @@ type Routes = {
|
|
|
166543
166946
|
user_identity_id?: string | undefined;
|
|
166544
166947
|
};
|
|
166545
166948
|
};
|
|
166949
|
+
maxDuration: undefined;
|
|
166546
166950
|
};
|
|
166547
166951
|
'/seam/customer/v1/staff_members/list': {
|
|
166548
166952
|
route: '/seam/customer/v1/staff_members/list';
|
|
@@ -166586,6 +166990,7 @@ type Routes = {
|
|
|
166586
166990
|
next_page_url: string | null;
|
|
166587
166991
|
};
|
|
166588
166992
|
};
|
|
166993
|
+
maxDuration: undefined;
|
|
166589
166994
|
};
|
|
166590
166995
|
'/seam/instant_key/v1/client_sessions/exchange_short_code': {
|
|
166591
166996
|
route: '/seam/instant_key/v1/client_sessions/exchange_short_code';
|
|
@@ -166635,6 +167040,7 @@ type Routes = {
|
|
|
166635
167040
|
user_identity_id?: string | undefined;
|
|
166636
167041
|
};
|
|
166637
167042
|
};
|
|
167043
|
+
maxDuration: undefined;
|
|
166638
167044
|
};
|
|
166639
167045
|
'/seam/instant_key/v1/preview/get': {
|
|
166640
167046
|
route: '/seam/instant_key/v1/preview/get';
|
|
@@ -166686,6 +167092,7 @@ type Routes = {
|
|
|
166686
167092
|
expires_at: string;
|
|
166687
167093
|
};
|
|
166688
167094
|
};
|
|
167095
|
+
maxDuration: undefined;
|
|
166689
167096
|
};
|
|
166690
167097
|
'/seam/mobile_sdk/v1/acs/credentials/list': {
|
|
166691
167098
|
route: '/seam/mobile_sdk/v1/acs/credentials/list';
|
|
@@ -166827,6 +167234,7 @@ type Routes = {
|
|
|
166827
167234
|
is_managed: true;
|
|
166828
167235
|
}[];
|
|
166829
167236
|
};
|
|
167237
|
+
maxDuration: undefined;
|
|
166830
167238
|
};
|
|
166831
167239
|
'/seam/mobile_sdk/v1/phone_sessions/get_or_create': {
|
|
166832
167240
|
route: '/seam/mobile_sdk/v1/phone_sessions/get_or_create';
|
|
@@ -167167,6 +167575,7 @@ type Routes = {
|
|
|
167167
167575
|
workspace_id: string;
|
|
167168
167576
|
};
|
|
167169
167577
|
};
|
|
167578
|
+
maxDuration: undefined;
|
|
167170
167579
|
};
|
|
167171
167580
|
'/seam/mobile_sdk/v1/report_salto_space_audit_trail': {
|
|
167172
167581
|
route: '/seam/mobile_sdk/v1/report_salto_space_audit_trail';
|
|
@@ -167181,6 +167590,7 @@ type Routes = {
|
|
|
167181
167590
|
commonParams: {};
|
|
167182
167591
|
formData: {};
|
|
167183
167592
|
jsonResponse: {};
|
|
167593
|
+
maxDuration: undefined;
|
|
167184
167594
|
};
|
|
167185
167595
|
'/seam/partner/v1/building_blocks/spaces/auto_map': {
|
|
167186
167596
|
route: '/seam/partner/v1/building_blocks/spaces/auto_map';
|
|
@@ -167210,6 +167620,7 @@ type Routes = {
|
|
|
167210
167620
|
is_draft?: boolean | undefined;
|
|
167211
167621
|
}[];
|
|
167212
167622
|
};
|
|
167623
|
+
maxDuration: undefined;
|
|
167213
167624
|
};
|
|
167214
167625
|
'/spaces/add_acs_entrances': {
|
|
167215
167626
|
route: '/spaces/add_acs_entrances';
|
|
@@ -167224,6 +167635,7 @@ type Routes = {
|
|
|
167224
167635
|
commonParams: {};
|
|
167225
167636
|
formData: {};
|
|
167226
167637
|
jsonResponse: {};
|
|
167638
|
+
maxDuration: undefined;
|
|
167227
167639
|
};
|
|
167228
167640
|
'/spaces/add_devices': {
|
|
167229
167641
|
route: '/spaces/add_devices';
|
|
@@ -167238,6 +167650,7 @@ type Routes = {
|
|
|
167238
167650
|
commonParams: {};
|
|
167239
167651
|
formData: {};
|
|
167240
167652
|
jsonResponse: {};
|
|
167653
|
+
maxDuration: undefined;
|
|
167241
167654
|
};
|
|
167242
167655
|
'/spaces/create': {
|
|
167243
167656
|
route: '/spaces/create';
|
|
@@ -167282,6 +167695,7 @@ type Routes = {
|
|
|
167282
167695
|
parent_space_key?: string | undefined;
|
|
167283
167696
|
};
|
|
167284
167697
|
};
|
|
167698
|
+
maxDuration: undefined;
|
|
167285
167699
|
};
|
|
167286
167700
|
'/spaces/delete': {
|
|
167287
167701
|
route: '/spaces/delete';
|
|
@@ -167294,6 +167708,7 @@ type Routes = {
|
|
|
167294
167708
|
commonParams: {};
|
|
167295
167709
|
formData: {};
|
|
167296
167710
|
jsonResponse: {};
|
|
167711
|
+
maxDuration: undefined;
|
|
167297
167712
|
};
|
|
167298
167713
|
'/spaces/get': {
|
|
167299
167714
|
route: '/spaces/get';
|
|
@@ -167333,6 +167748,7 @@ type Routes = {
|
|
|
167333
167748
|
parent_space_key?: string | undefined;
|
|
167334
167749
|
};
|
|
167335
167750
|
};
|
|
167751
|
+
maxDuration: undefined;
|
|
167336
167752
|
};
|
|
167337
167753
|
'/spaces/get_related': {
|
|
167338
167754
|
route: '/spaces/get_related';
|
|
@@ -167971,6 +168387,8 @@ type Routes = {
|
|
|
167971
168387
|
device_id: string;
|
|
167972
168388
|
/** Device name for an Ultraloq device. */
|
|
167973
168389
|
device_name: string;
|
|
168390
|
+
/** Device type for an Ultraloq device. */
|
|
168391
|
+
device_type: string;
|
|
167974
168392
|
} | undefined;
|
|
167975
168393
|
}) & ({
|
|
167976
168394
|
/** */
|
|
@@ -168960,6 +169378,7 @@ type Routes = {
|
|
|
168960
169378
|
}[] | undefined;
|
|
168961
169379
|
};
|
|
168962
169380
|
};
|
|
169381
|
+
maxDuration: undefined;
|
|
168963
169382
|
};
|
|
168964
169383
|
'/spaces/list': {
|
|
168965
169384
|
route: '/spaces/list';
|
|
@@ -169001,6 +169420,7 @@ type Routes = {
|
|
|
169001
169420
|
parent_space_key?: string | undefined;
|
|
169002
169421
|
}[];
|
|
169003
169422
|
};
|
|
169423
|
+
maxDuration: undefined;
|
|
169004
169424
|
};
|
|
169005
169425
|
'/spaces/remove_acs_entrances': {
|
|
169006
169426
|
route: '/spaces/remove_acs_entrances';
|
|
@@ -169015,6 +169435,7 @@ type Routes = {
|
|
|
169015
169435
|
};
|
|
169016
169436
|
formData: {};
|
|
169017
169437
|
jsonResponse: {};
|
|
169438
|
+
maxDuration: undefined;
|
|
169018
169439
|
};
|
|
169019
169440
|
'/spaces/remove_devices': {
|
|
169020
169441
|
route: '/spaces/remove_devices';
|
|
@@ -169029,6 +169450,7 @@ type Routes = {
|
|
|
169029
169450
|
};
|
|
169030
169451
|
formData: {};
|
|
169031
169452
|
jsonResponse: {};
|
|
169453
|
+
maxDuration: undefined;
|
|
169032
169454
|
};
|
|
169033
169455
|
'/spaces/update': {
|
|
169034
169456
|
route: '/spaces/update';
|
|
@@ -169075,6 +169497,7 @@ type Routes = {
|
|
|
169075
169497
|
parent_space_key?: string | undefined;
|
|
169076
169498
|
};
|
|
169077
169499
|
};
|
|
169500
|
+
maxDuration: undefined;
|
|
169078
169501
|
};
|
|
169079
169502
|
'/thermostats/activate_climate_preset': {
|
|
169080
169503
|
route: '/thermostats/activate_climate_preset';
|
|
@@ -170345,6 +170768,7 @@ type Routes = {
|
|
|
170345
170768
|
};
|
|
170346
170769
|
};
|
|
170347
170770
|
};
|
|
170771
|
+
maxDuration: undefined;
|
|
170348
170772
|
};
|
|
170349
170773
|
'/thermostats/cool': {
|
|
170350
170774
|
route: '/thermostats/cool';
|
|
@@ -171619,6 +172043,7 @@ type Routes = {
|
|
|
171619
172043
|
};
|
|
171620
172044
|
};
|
|
171621
172045
|
};
|
|
172046
|
+
maxDuration: undefined;
|
|
171622
172047
|
};
|
|
171623
172048
|
'/thermostats/create_climate_preset': {
|
|
171624
172049
|
route: '/thermostats/create_climate_preset';
|
|
@@ -171665,6 +172090,7 @@ type Routes = {
|
|
|
171665
172090
|
commonParams: {};
|
|
171666
172091
|
formData: {};
|
|
171667
172092
|
jsonResponse: {};
|
|
172093
|
+
maxDuration: undefined;
|
|
171668
172094
|
};
|
|
171669
172095
|
'/thermostats/daily_programs/create': {
|
|
171670
172096
|
route: '/thermostats/daily_programs/create';
|
|
@@ -171707,6 +172133,7 @@ type Routes = {
|
|
|
171707
172133
|
created_at: string;
|
|
171708
172134
|
};
|
|
171709
172135
|
};
|
|
172136
|
+
maxDuration: undefined;
|
|
171710
172137
|
};
|
|
171711
172138
|
'/thermostats/daily_programs/delete': {
|
|
171712
172139
|
route: '/thermostats/daily_programs/delete';
|
|
@@ -171719,6 +172146,7 @@ type Routes = {
|
|
|
171719
172146
|
};
|
|
171720
172147
|
formData: {};
|
|
171721
172148
|
jsonResponse: {};
|
|
172149
|
+
maxDuration: undefined;
|
|
171722
172150
|
};
|
|
171723
172151
|
'/thermostats/daily_programs/update': {
|
|
171724
172152
|
route: '/thermostats/daily_programs/update';
|
|
@@ -172996,6 +173424,7 @@ type Routes = {
|
|
|
172996
173424
|
};
|
|
172997
173425
|
};
|
|
172998
173426
|
};
|
|
173427
|
+
maxDuration: undefined;
|
|
172999
173428
|
};
|
|
173000
173429
|
'/thermostats/delete_climate_preset': {
|
|
173001
173430
|
route: '/thermostats/delete_climate_preset';
|
|
@@ -173010,6 +173439,7 @@ type Routes = {
|
|
|
173010
173439
|
commonParams: {};
|
|
173011
173440
|
formData: {};
|
|
173012
173441
|
jsonResponse: {};
|
|
173442
|
+
maxDuration: undefined;
|
|
173013
173443
|
};
|
|
173014
173444
|
'/thermostats/get': {
|
|
173015
173445
|
route: '/thermostats/get';
|
|
@@ -173623,6 +174053,8 @@ type Routes = {
|
|
|
173623
174053
|
device_id: string;
|
|
173624
174054
|
/** Device name for an Ultraloq device. */
|
|
173625
174055
|
device_name: string;
|
|
174056
|
+
/** Device type for an Ultraloq device. */
|
|
174057
|
+
device_type: string;
|
|
173626
174058
|
} | undefined;
|
|
173627
174059
|
}) & ({
|
|
173628
174060
|
/** */
|
|
@@ -174246,6 +174678,7 @@ type Routes = {
|
|
|
174246
174678
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
174247
174679
|
};
|
|
174248
174680
|
};
|
|
174681
|
+
maxDuration: undefined;
|
|
174249
174682
|
};
|
|
174250
174683
|
'/thermostats/heat': {
|
|
174251
174684
|
route: '/thermostats/heat';
|
|
@@ -175520,6 +175953,7 @@ type Routes = {
|
|
|
175520
175953
|
};
|
|
175521
175954
|
};
|
|
175522
175955
|
};
|
|
175956
|
+
maxDuration: undefined;
|
|
175523
175957
|
};
|
|
175524
175958
|
'/thermostats/heat_cool': {
|
|
175525
175959
|
route: '/thermostats/heat_cool';
|
|
@@ -176798,6 +177232,7 @@ type Routes = {
|
|
|
176798
177232
|
};
|
|
176799
177233
|
};
|
|
176800
177234
|
};
|
|
177235
|
+
maxDuration: undefined;
|
|
176801
177236
|
};
|
|
176802
177237
|
'/thermostats/list': {
|
|
176803
177238
|
route: '/thermostats/list';
|
|
@@ -177445,6 +177880,8 @@ type Routes = {
|
|
|
177445
177880
|
device_id: string;
|
|
177446
177881
|
/** Device name for an Ultraloq device. */
|
|
177447
177882
|
device_name: string;
|
|
177883
|
+
/** Device type for an Ultraloq device. */
|
|
177884
|
+
device_type: string;
|
|
177448
177885
|
} | undefined;
|
|
177449
177886
|
}) & ({
|
|
177450
177887
|
/** */
|
|
@@ -178665,6 +179102,8 @@ type Routes = {
|
|
|
178665
179102
|
device_id: string;
|
|
178666
179103
|
/** Device name for an Ultraloq device. */
|
|
178667
179104
|
device_name: string;
|
|
179105
|
+
/** Device type for an Ultraloq device. */
|
|
179106
|
+
device_type: string;
|
|
178668
179107
|
} | undefined;
|
|
178669
179108
|
}) & ({
|
|
178670
179109
|
/** */
|
|
@@ -179288,6 +179727,7 @@ type Routes = {
|
|
|
179288
179727
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
179289
179728
|
}[];
|
|
179290
179729
|
};
|
|
179730
|
+
maxDuration: undefined;
|
|
179291
179731
|
};
|
|
179292
179732
|
'/thermostats/off': {
|
|
179293
179733
|
route: '/thermostats/off';
|
|
@@ -180558,6 +180998,7 @@ type Routes = {
|
|
|
180558
180998
|
};
|
|
180559
180999
|
};
|
|
180560
181000
|
};
|
|
181001
|
+
maxDuration: undefined;
|
|
180561
181002
|
};
|
|
180562
181003
|
'/thermostats/schedules/create': {
|
|
180563
181004
|
route: '/thermostats/schedules/create';
|
|
@@ -180613,6 +181054,7 @@ type Routes = {
|
|
|
180613
181054
|
}[];
|
|
180614
181055
|
};
|
|
180615
181056
|
};
|
|
181057
|
+
maxDuration: undefined;
|
|
180616
181058
|
};
|
|
180617
181059
|
'/thermostats/schedules/delete': {
|
|
180618
181060
|
route: '/thermostats/schedules/delete';
|
|
@@ -180625,6 +181067,7 @@ type Routes = {
|
|
|
180625
181067
|
};
|
|
180626
181068
|
formData: {};
|
|
180627
181069
|
jsonResponse: {};
|
|
181070
|
+
maxDuration: undefined;
|
|
180628
181071
|
};
|
|
180629
181072
|
'/thermostats/schedules/get': {
|
|
180630
181073
|
route: '/thermostats/schedules/get';
|
|
@@ -180668,6 +181111,7 @@ type Routes = {
|
|
|
180668
181111
|
}[];
|
|
180669
181112
|
};
|
|
180670
181113
|
};
|
|
181114
|
+
maxDuration: undefined;
|
|
180671
181115
|
};
|
|
180672
181116
|
'/thermostats/schedules/list': {
|
|
180673
181117
|
route: '/thermostats/schedules/list';
|
|
@@ -180712,6 +181156,7 @@ type Routes = {
|
|
|
180712
181156
|
}[];
|
|
180713
181157
|
}[];
|
|
180714
181158
|
};
|
|
181159
|
+
maxDuration: undefined;
|
|
180715
181160
|
};
|
|
180716
181161
|
'/thermostats/schedules/update': {
|
|
180717
181162
|
route: '/thermostats/schedules/update';
|
|
@@ -180736,6 +181181,7 @@ type Routes = {
|
|
|
180736
181181
|
commonParams: {};
|
|
180737
181182
|
formData: {};
|
|
180738
181183
|
jsonResponse: {};
|
|
181184
|
+
maxDuration: undefined;
|
|
180739
181185
|
};
|
|
180740
181186
|
'/thermostats/set_fallback_climate_preset': {
|
|
180741
181187
|
route: '/thermostats/set_fallback_climate_preset';
|
|
@@ -180750,6 +181196,7 @@ type Routes = {
|
|
|
180750
181196
|
commonParams: {};
|
|
180751
181197
|
formData: {};
|
|
180752
181198
|
jsonResponse: {};
|
|
181199
|
+
maxDuration: undefined;
|
|
180753
181200
|
};
|
|
180754
181201
|
'/thermostats/set_fan_mode': {
|
|
180755
181202
|
route: '/thermostats/set_fan_mode';
|
|
@@ -182025,6 +182472,7 @@ type Routes = {
|
|
|
182025
182472
|
};
|
|
182026
182473
|
};
|
|
182027
182474
|
};
|
|
182475
|
+
maxDuration: undefined;
|
|
182028
182476
|
};
|
|
182029
182477
|
'/thermostats/set_hvac_mode': {
|
|
182030
182478
|
route: '/thermostats/set_hvac_mode';
|
|
@@ -183326,6 +183774,7 @@ type Routes = {
|
|
|
183326
183774
|
};
|
|
183327
183775
|
};
|
|
183328
183776
|
};
|
|
183777
|
+
maxDuration: undefined;
|
|
183329
183778
|
};
|
|
183330
183779
|
'/thermostats/set_temperature_threshold': {
|
|
183331
183780
|
route: '/thermostats/set_temperature_threshold';
|
|
@@ -183346,6 +183795,7 @@ type Routes = {
|
|
|
183346
183795
|
commonParams: {};
|
|
183347
183796
|
formData: {};
|
|
183348
183797
|
jsonResponse: {};
|
|
183798
|
+
maxDuration: undefined;
|
|
183349
183799
|
};
|
|
183350
183800
|
'/thermostats/simulate/hvac_mode_adjusted': {
|
|
183351
183801
|
route: '/thermostats/simulate/hvac_mode_adjusted';
|
|
@@ -183391,6 +183841,7 @@ type Routes = {
|
|
|
183391
183841
|
commonParams: {};
|
|
183392
183842
|
formData: {};
|
|
183393
183843
|
jsonResponse: {};
|
|
183844
|
+
maxDuration: undefined;
|
|
183394
183845
|
};
|
|
183395
183846
|
'/thermostats/simulate/temperature_reached': {
|
|
183396
183847
|
route: '/thermostats/simulate/temperature_reached';
|
|
@@ -183407,6 +183858,7 @@ type Routes = {
|
|
|
183407
183858
|
commonParams: {};
|
|
183408
183859
|
formData: {};
|
|
183409
183860
|
jsonResponse: {};
|
|
183861
|
+
maxDuration: undefined;
|
|
183410
183862
|
};
|
|
183411
183863
|
'/thermostats/update_climate_preset': {
|
|
183412
183864
|
route: '/thermostats/update_climate_preset';
|
|
@@ -183453,6 +183905,7 @@ type Routes = {
|
|
|
183453
183905
|
commonParams: {};
|
|
183454
183906
|
formData: {};
|
|
183455
183907
|
jsonResponse: {};
|
|
183908
|
+
maxDuration: undefined;
|
|
183456
183909
|
};
|
|
183457
183910
|
'/thermostats/update_weekly_program': {
|
|
183458
183911
|
route: '/thermostats/update_weekly_program';
|
|
@@ -184735,6 +185188,7 @@ type Routes = {
|
|
|
184735
185188
|
};
|
|
184736
185189
|
};
|
|
184737
185190
|
};
|
|
185191
|
+
maxDuration: undefined;
|
|
184738
185192
|
};
|
|
184739
185193
|
'/unstable_partner/building_blocks/connect_accounts': {
|
|
184740
185194
|
route: '/unstable_partner/building_blocks/connect_accounts';
|
|
@@ -184765,6 +185219,7 @@ type Routes = {
|
|
|
184765
185219
|
created_at: string;
|
|
184766
185220
|
};
|
|
184767
185221
|
};
|
|
185222
|
+
maxDuration: undefined;
|
|
184768
185223
|
};
|
|
184769
185224
|
'/unstable_partner/building_blocks/generate_magic_link': {
|
|
184770
185225
|
route: '/unstable_partner/building_blocks/generate_magic_link';
|
|
@@ -184804,6 +185259,7 @@ type Routes = {
|
|
|
184804
185259
|
created_at: string;
|
|
184805
185260
|
};
|
|
184806
185261
|
};
|
|
185262
|
+
maxDuration: undefined;
|
|
184807
185263
|
};
|
|
184808
185264
|
'/unstable_partner/building_blocks/manage_devices': {
|
|
184809
185265
|
route: '/unstable_partner/building_blocks/manage_devices';
|
|
@@ -184834,6 +185290,7 @@ type Routes = {
|
|
|
184834
185290
|
created_at: string;
|
|
184835
185291
|
};
|
|
184836
185292
|
};
|
|
185293
|
+
maxDuration: undefined;
|
|
184837
185294
|
};
|
|
184838
185295
|
'/unstable_partner/building_blocks/organize_spaces': {
|
|
184839
185296
|
route: '/unstable_partner/building_blocks/organize_spaces';
|
|
@@ -184871,6 +185328,7 @@ type Routes = {
|
|
|
184871
185328
|
created_at: string;
|
|
184872
185329
|
};
|
|
184873
185330
|
};
|
|
185331
|
+
maxDuration: undefined;
|
|
184874
185332
|
};
|
|
184875
185333
|
'/user_identities/add_acs_user': {
|
|
184876
185334
|
route: '/user_identities/add_acs_user';
|
|
@@ -184887,6 +185345,7 @@ type Routes = {
|
|
|
184887
185345
|
};
|
|
184888
185346
|
formData: {};
|
|
184889
185347
|
jsonResponse: {};
|
|
185348
|
+
maxDuration: undefined;
|
|
184890
185349
|
};
|
|
184891
185350
|
'/user_identities/create': {
|
|
184892
185351
|
route: '/user_identities/create';
|
|
@@ -184956,6 +185415,7 @@ type Routes = {
|
|
|
184956
185415
|
acs_user_ids: string[];
|
|
184957
185416
|
};
|
|
184958
185417
|
};
|
|
185418
|
+
maxDuration: undefined;
|
|
184959
185419
|
};
|
|
184960
185420
|
'/user_identities/delete': {
|
|
184961
185421
|
route: '/user_identities/delete';
|
|
@@ -184968,6 +185428,7 @@ type Routes = {
|
|
|
184968
185428
|
};
|
|
184969
185429
|
formData: {};
|
|
184970
185430
|
jsonResponse: {};
|
|
185431
|
+
maxDuration: undefined;
|
|
184971
185432
|
};
|
|
184972
185433
|
'/user_identities/enrollment_automations/delete': {
|
|
184973
185434
|
route: '/user_identities/enrollment_automations/delete';
|
|
@@ -184980,6 +185441,7 @@ type Routes = {
|
|
|
184980
185441
|
};
|
|
184981
185442
|
formData: {};
|
|
184982
185443
|
jsonResponse: {};
|
|
185444
|
+
maxDuration: undefined;
|
|
184983
185445
|
};
|
|
184984
185446
|
'/user_identities/enrollment_automations/get': {
|
|
184985
185447
|
route: '/user_identities/enrollment_automations/get';
|
|
@@ -185006,6 +185468,7 @@ type Routes = {
|
|
|
185006
185468
|
workspace_id: string;
|
|
185007
185469
|
};
|
|
185008
185470
|
};
|
|
185471
|
+
maxDuration: undefined;
|
|
185009
185472
|
};
|
|
185010
185473
|
'/user_identities/enrollment_automations/launch': {
|
|
185011
185474
|
route: '/user_identities/enrollment_automations/launch';
|
|
@@ -185040,6 +185503,7 @@ type Routes = {
|
|
|
185040
185503
|
workspace_id: string;
|
|
185041
185504
|
};
|
|
185042
185505
|
};
|
|
185506
|
+
maxDuration: undefined;
|
|
185043
185507
|
};
|
|
185044
185508
|
'/user_identities/enrollment_automations/list': {
|
|
185045
185509
|
route: '/user_identities/enrollment_automations/list';
|
|
@@ -185065,6 +185529,7 @@ type Routes = {
|
|
|
185065
185529
|
workspace_id: string;
|
|
185066
185530
|
}[];
|
|
185067
185531
|
};
|
|
185532
|
+
maxDuration: undefined;
|
|
185068
185533
|
};
|
|
185069
185534
|
'/user_identities/generate_instant_key': {
|
|
185070
185535
|
route: '/user_identities/generate_instant_key';
|
|
@@ -185111,6 +185576,7 @@ type Routes = {
|
|
|
185111
185576
|
} | undefined;
|
|
185112
185577
|
};
|
|
185113
185578
|
};
|
|
185579
|
+
maxDuration: undefined;
|
|
185114
185580
|
};
|
|
185115
185581
|
'/user_identities/get': {
|
|
185116
185582
|
route: '/user_identities/get';
|
|
@@ -185174,6 +185640,7 @@ type Routes = {
|
|
|
185174
185640
|
acs_user_ids: string[];
|
|
185175
185641
|
};
|
|
185176
185642
|
};
|
|
185643
|
+
maxDuration: undefined;
|
|
185177
185644
|
};
|
|
185178
185645
|
'/user_identities/grant_access_to_device': {
|
|
185179
185646
|
route: '/user_identities/grant_access_to_device';
|
|
@@ -185188,6 +185655,7 @@ type Routes = {
|
|
|
185188
185655
|
};
|
|
185189
185656
|
formData: {};
|
|
185190
185657
|
jsonResponse: {};
|
|
185658
|
+
maxDuration: undefined;
|
|
185191
185659
|
};
|
|
185192
185660
|
'/user_identities/list': {
|
|
185193
185661
|
route: '/user_identities/list';
|
|
@@ -185265,6 +185733,7 @@ type Routes = {
|
|
|
185265
185733
|
next_page_url: string | null;
|
|
185266
185734
|
};
|
|
185267
185735
|
};
|
|
185736
|
+
maxDuration: undefined;
|
|
185268
185737
|
};
|
|
185269
185738
|
'/user_identities/list_accessible_devices': {
|
|
185270
185739
|
route: '/user_identities/list_accessible_devices';
|
|
@@ -185875,6 +186344,8 @@ type Routes = {
|
|
|
185875
186344
|
device_id: string;
|
|
185876
186345
|
/** Device name for an Ultraloq device. */
|
|
185877
186346
|
device_name: string;
|
|
186347
|
+
/** Device type for an Ultraloq device. */
|
|
186348
|
+
device_type: string;
|
|
185878
186349
|
} | undefined;
|
|
185879
186350
|
}) & ({
|
|
185880
186351
|
/** */
|
|
@@ -187097,6 +187568,8 @@ type Routes = {
|
|
|
187097
187568
|
device_id: string;
|
|
187098
187569
|
/** Device name for an Ultraloq device. */
|
|
187099
187570
|
device_name: string;
|
|
187571
|
+
/** Device type for an Ultraloq device. */
|
|
187572
|
+
device_type: string;
|
|
187100
187573
|
} | undefined;
|
|
187101
187574
|
}) & ({
|
|
187102
187575
|
/** */
|
|
@@ -187720,6 +188193,7 @@ type Routes = {
|
|
|
187720
188193
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
187721
188194
|
}[];
|
|
187722
188195
|
};
|
|
188196
|
+
maxDuration: undefined;
|
|
187723
188197
|
};
|
|
187724
188198
|
'/user_identities/list_acs_systems': {
|
|
187725
188199
|
route: '/user_identities/list_acs_systems';
|
|
@@ -187851,6 +188325,7 @@ type Routes = {
|
|
|
187851
188325
|
})[];
|
|
187852
188326
|
}[];
|
|
187853
188327
|
};
|
|
188328
|
+
maxDuration: undefined;
|
|
187854
188329
|
};
|
|
187855
188330
|
'/user_identities/list_acs_users': {
|
|
187856
188331
|
route: '/user_identities/list_acs_users';
|
|
@@ -188081,6 +188556,7 @@ type Routes = {
|
|
|
188081
188556
|
is_managed: true;
|
|
188082
188557
|
}[];
|
|
188083
188558
|
};
|
|
188559
|
+
maxDuration: undefined;
|
|
188084
188560
|
};
|
|
188085
188561
|
'/user_identities/remove_acs_user': {
|
|
188086
188562
|
route: '/user_identities/remove_acs_user';
|
|
@@ -188095,6 +188571,7 @@ type Routes = {
|
|
|
188095
188571
|
};
|
|
188096
188572
|
formData: {};
|
|
188097
188573
|
jsonResponse: {};
|
|
188574
|
+
maxDuration: undefined;
|
|
188098
188575
|
};
|
|
188099
188576
|
'/user_identities/revoke_access_to_device': {
|
|
188100
188577
|
route: '/user_identities/revoke_access_to_device';
|
|
@@ -188109,6 +188586,7 @@ type Routes = {
|
|
|
188109
188586
|
};
|
|
188110
188587
|
formData: {};
|
|
188111
188588
|
jsonResponse: {};
|
|
188589
|
+
maxDuration: undefined;
|
|
188112
188590
|
};
|
|
188113
188591
|
'/user_identities/unmanaged/get': {
|
|
188114
188592
|
route: '/user_identities/unmanaged/get';
|
|
@@ -188168,6 +188646,7 @@ type Routes = {
|
|
|
188168
188646
|
acs_user_ids: string[];
|
|
188169
188647
|
};
|
|
188170
188648
|
};
|
|
188649
|
+
maxDuration: undefined;
|
|
188171
188650
|
};
|
|
188172
188651
|
'/user_identities/unmanaged/list': {
|
|
188173
188652
|
route: '/user_identities/unmanaged/list';
|
|
@@ -188241,6 +188720,7 @@ type Routes = {
|
|
|
188241
188720
|
next_page_url: string | null;
|
|
188242
188721
|
};
|
|
188243
188722
|
};
|
|
188723
|
+
maxDuration: undefined;
|
|
188244
188724
|
};
|
|
188245
188725
|
'/user_identities/unmanaged/update': {
|
|
188246
188726
|
route: '/user_identities/unmanaged/update';
|
|
@@ -188257,6 +188737,7 @@ type Routes = {
|
|
|
188257
188737
|
commonParams: {};
|
|
188258
188738
|
formData: {};
|
|
188259
188739
|
jsonResponse: {};
|
|
188740
|
+
maxDuration: undefined;
|
|
188260
188741
|
};
|
|
188261
188742
|
'/user_identities/update': {
|
|
188262
188743
|
route: '/user_identities/update';
|
|
@@ -188277,6 +188758,7 @@ type Routes = {
|
|
|
188277
188758
|
commonParams: {};
|
|
188278
188759
|
formData: {};
|
|
188279
188760
|
jsonResponse: {};
|
|
188761
|
+
maxDuration: undefined;
|
|
188280
188762
|
};
|
|
188281
188763
|
'/webhooks/create': {
|
|
188282
188764
|
route: '/webhooks/create';
|
|
@@ -188303,6 +188785,7 @@ type Routes = {
|
|
|
188303
188785
|
secret?: string | undefined;
|
|
188304
188786
|
};
|
|
188305
188787
|
};
|
|
188788
|
+
maxDuration: undefined;
|
|
188306
188789
|
};
|
|
188307
188790
|
'/webhooks/delete': {
|
|
188308
188791
|
route: '/webhooks/delete';
|
|
@@ -188315,6 +188798,7 @@ type Routes = {
|
|
|
188315
188798
|
};
|
|
188316
188799
|
formData: {};
|
|
188317
188800
|
jsonResponse: {};
|
|
188801
|
+
maxDuration: undefined;
|
|
188318
188802
|
};
|
|
188319
188803
|
'/webhooks/get': {
|
|
188320
188804
|
route: '/webhooks/get';
|
|
@@ -188339,6 +188823,7 @@ type Routes = {
|
|
|
188339
188823
|
secret?: string | undefined;
|
|
188340
188824
|
};
|
|
188341
188825
|
};
|
|
188826
|
+
maxDuration: undefined;
|
|
188342
188827
|
};
|
|
188343
188828
|
'/webhooks/list': {
|
|
188344
188829
|
route: '/webhooks/list';
|
|
@@ -188359,6 +188844,7 @@ type Routes = {
|
|
|
188359
188844
|
secret?: string | undefined;
|
|
188360
188845
|
}[];
|
|
188361
188846
|
};
|
|
188847
|
+
maxDuration: undefined;
|
|
188362
188848
|
};
|
|
188363
188849
|
'/webhooks/update': {
|
|
188364
188850
|
route: '/webhooks/update';
|
|
@@ -188373,6 +188859,7 @@ type Routes = {
|
|
|
188373
188859
|
commonParams: {};
|
|
188374
188860
|
formData: {};
|
|
188375
188861
|
jsonResponse: {};
|
|
188862
|
+
maxDuration: undefined;
|
|
188376
188863
|
};
|
|
188377
188864
|
'/workspaces/create': {
|
|
188378
188865
|
route: '/workspaces/create';
|
|
@@ -188447,6 +188934,7 @@ type Routes = {
|
|
|
188447
188934
|
is_publishable_key_auth_enabled: boolean;
|
|
188448
188935
|
};
|
|
188449
188936
|
};
|
|
188937
|
+
maxDuration: undefined;
|
|
188450
188938
|
};
|
|
188451
188939
|
'/workspaces/customization_profiles/create': {
|
|
188452
188940
|
route: '/workspaces/customization_profiles/create';
|
|
@@ -188483,6 +188971,7 @@ type Routes = {
|
|
|
188483
188971
|
} | undefined;
|
|
188484
188972
|
};
|
|
188485
188973
|
};
|
|
188974
|
+
maxDuration: undefined;
|
|
188486
188975
|
};
|
|
188487
188976
|
'/workspaces/customization_profiles/get': {
|
|
188488
188977
|
route: '/workspaces/customization_profiles/get';
|
|
@@ -188511,6 +189000,7 @@ type Routes = {
|
|
|
188511
189000
|
} | undefined;
|
|
188512
189001
|
};
|
|
188513
189002
|
};
|
|
189003
|
+
maxDuration: undefined;
|
|
188514
189004
|
};
|
|
188515
189005
|
'/workspaces/customization_profiles/list': {
|
|
188516
189006
|
route: '/workspaces/customization_profiles/list';
|
|
@@ -188539,6 +189029,7 @@ type Routes = {
|
|
|
188539
189029
|
} | undefined;
|
|
188540
189030
|
}[];
|
|
188541
189031
|
};
|
|
189032
|
+
maxDuration: undefined;
|
|
188542
189033
|
};
|
|
188543
189034
|
'/workspaces/customization_profiles/update': {
|
|
188544
189035
|
route: '/workspaces/customization_profiles/update';
|
|
@@ -188559,6 +189050,7 @@ type Routes = {
|
|
|
188559
189050
|
commonParams: {};
|
|
188560
189051
|
formData: {};
|
|
188561
189052
|
jsonResponse: {};
|
|
189053
|
+
maxDuration: undefined;
|
|
188562
189054
|
};
|
|
188563
189055
|
'/workspaces/customization_profiles/upload_images': {
|
|
188564
189056
|
route: '/workspaces/customization_profiles/upload_images';
|
|
@@ -188568,6 +189060,7 @@ type Routes = {
|
|
|
188568
189060
|
commonParams: {};
|
|
188569
189061
|
formData: {};
|
|
188570
189062
|
jsonResponse: {};
|
|
189063
|
+
maxDuration: undefined;
|
|
188571
189064
|
};
|
|
188572
189065
|
'/workspaces/find_anything': {
|
|
188573
189066
|
route: '/workspaces/find_anything';
|
|
@@ -189257,6 +189750,8 @@ type Routes = {
|
|
|
189257
189750
|
device_id: string;
|
|
189258
189751
|
/** Device name for an Ultraloq device. */
|
|
189259
189752
|
device_name: string;
|
|
189753
|
+
/** Device type for an Ultraloq device. */
|
|
189754
|
+
device_type: string;
|
|
189260
189755
|
} | undefined;
|
|
189261
189756
|
}) & ({
|
|
189262
189757
|
/** */
|
|
@@ -195876,6 +196371,7 @@ type Routes = {
|
|
|
195876
196371
|
}[] | undefined;
|
|
195877
196372
|
};
|
|
195878
196373
|
};
|
|
196374
|
+
maxDuration: undefined;
|
|
195879
196375
|
};
|
|
195880
196376
|
'/workspaces/get': {
|
|
195881
196377
|
route: '/workspaces/get';
|
|
@@ -195918,6 +196414,7 @@ type Routes = {
|
|
|
195918
196414
|
is_publishable_key_auth_enabled: boolean;
|
|
195919
196415
|
};
|
|
195920
196416
|
};
|
|
196417
|
+
maxDuration: undefined;
|
|
195921
196418
|
};
|
|
195922
196419
|
'/workspaces/list': {
|
|
195923
196420
|
route: '/workspaces/list';
|
|
@@ -195959,6 +196456,7 @@ type Routes = {
|
|
|
195959
196456
|
is_publishable_key_auth_enabled: boolean;
|
|
195960
196457
|
}[];
|
|
195961
196458
|
};
|
|
196459
|
+
maxDuration: undefined;
|
|
195962
196460
|
};
|
|
195963
196461
|
'/workspaces/reset_sandbox': {
|
|
195964
196462
|
route: '/workspaces/reset_sandbox';
|
|
@@ -197224,6 +197722,7 @@ type Routes = {
|
|
|
197224
197722
|
};
|
|
197225
197723
|
};
|
|
197226
197724
|
};
|
|
197725
|
+
maxDuration: undefined;
|
|
197227
197726
|
};
|
|
197228
197727
|
'/workspaces/update': {
|
|
197229
197728
|
route: '/workspaces/update';
|
|
@@ -197253,6 +197752,7 @@ type Routes = {
|
|
|
197253
197752
|
commonParams: {};
|
|
197254
197753
|
formData: {};
|
|
197255
197754
|
jsonResponse: {};
|
|
197755
|
+
maxDuration: undefined;
|
|
197256
197756
|
};
|
|
197257
197757
|
};
|
|
197258
197758
|
type RouteResponse<Path extends keyof Routes> = Routes[Path]['jsonResponse'];
|