@seamapi/types 1.657.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 +141 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +436 -0
- package/dist/index.cjs +141 -9
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.js +7 -4
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +183 -0
- package/lib/seam/connect/openapi.js +127 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +253 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/batch.ts +35 -32
- package/src/lib/seam/connect/openapi.ts +127 -0
- package/src/lib/seam/connect/route-types.ts +253 -0
|
@@ -2062,6 +2062,7 @@ export type Routes = {
|
|
|
2062
2062
|
is_offline_access_code: boolean
|
|
2063
2063
|
}
|
|
2064
2064
|
}
|
|
2065
|
+
maxDuration: undefined
|
|
2065
2066
|
}
|
|
2066
2067
|
'/access_codes/create_multiple': {
|
|
2067
2068
|
route: '/access_codes/create_multiple'
|
|
@@ -2671,6 +2672,7 @@ export type Routes = {
|
|
|
2671
2672
|
is_offline_access_code: boolean
|
|
2672
2673
|
}[]
|
|
2673
2674
|
}
|
|
2675
|
+
maxDuration: undefined
|
|
2674
2676
|
}
|
|
2675
2677
|
'/access_codes/delete': {
|
|
2676
2678
|
route: '/access_codes/delete'
|
|
@@ -4134,6 +4136,7 @@ export type Routes = {
|
|
|
4134
4136
|
}
|
|
4135
4137
|
}
|
|
4136
4138
|
}
|
|
4139
|
+
maxDuration: undefined
|
|
4137
4140
|
}
|
|
4138
4141
|
'/access_codes/generate_code': {
|
|
4139
4142
|
route: '/access_codes/generate_code'
|
|
@@ -4151,6 +4154,7 @@ export type Routes = {
|
|
|
4151
4154
|
code: string
|
|
4152
4155
|
}
|
|
4153
4156
|
}
|
|
4157
|
+
maxDuration: undefined
|
|
4154
4158
|
}
|
|
4155
4159
|
'/access_codes/get': {
|
|
4156
4160
|
route: '/access_codes/get'
|
|
@@ -4735,6 +4739,7 @@ export type Routes = {
|
|
|
4735
4739
|
is_offline_access_code: boolean
|
|
4736
4740
|
}
|
|
4737
4741
|
}
|
|
4742
|
+
maxDuration: undefined
|
|
4738
4743
|
}
|
|
4739
4744
|
'/access_codes/list': {
|
|
4740
4745
|
route: '/access_codes/list'
|
|
@@ -5327,6 +5332,7 @@ export type Routes = {
|
|
|
5327
5332
|
next_page_url: string | null
|
|
5328
5333
|
}
|
|
5329
5334
|
}
|
|
5335
|
+
maxDuration: undefined
|
|
5330
5336
|
}
|
|
5331
5337
|
'/access_codes/pull_backup_access_code': {
|
|
5332
5338
|
route: '/access_codes/pull_backup_access_code'
|
|
@@ -6474,6 +6480,7 @@ export type Routes = {
|
|
|
6474
6480
|
is_offline_access_code: boolean
|
|
6475
6481
|
}
|
|
6476
6482
|
}
|
|
6483
|
+
maxDuration: undefined
|
|
6477
6484
|
}
|
|
6478
6485
|
'/access_codes/report_device_constraints': {
|
|
6479
6486
|
route: '/access_codes/report_device_constraints'
|
|
@@ -6492,6 +6499,7 @@ export type Routes = {
|
|
|
6492
6499
|
commonParams: {}
|
|
6493
6500
|
formData: {}
|
|
6494
6501
|
jsonResponse: {}
|
|
6502
|
+
maxDuration: undefined
|
|
6495
6503
|
}
|
|
6496
6504
|
'/access_codes/simulate/create_unmanaged_access_code': {
|
|
6497
6505
|
route: '/access_codes/simulate/create_unmanaged_access_code'
|
|
@@ -7062,6 +7070,7 @@ export type Routes = {
|
|
|
7062
7070
|
status: 'set'
|
|
7063
7071
|
}
|
|
7064
7072
|
}
|
|
7073
|
+
maxDuration: undefined
|
|
7065
7074
|
}
|
|
7066
7075
|
'/access_codes/unmanaged/convert_to_managed': {
|
|
7067
7076
|
route: '/access_codes/unmanaged/convert_to_managed'
|
|
@@ -7082,6 +7091,7 @@ export type Routes = {
|
|
|
7082
7091
|
}
|
|
7083
7092
|
formData: {}
|
|
7084
7093
|
jsonResponse: {}
|
|
7094
|
+
maxDuration: undefined
|
|
7085
7095
|
}
|
|
7086
7096
|
'/access_codes/unmanaged/delete': {
|
|
7087
7097
|
route: '/access_codes/unmanaged/delete'
|
|
@@ -8543,6 +8553,7 @@ export type Routes = {
|
|
|
8543
8553
|
}
|
|
8544
8554
|
}
|
|
8545
8555
|
}
|
|
8556
|
+
maxDuration: undefined
|
|
8546
8557
|
}
|
|
8547
8558
|
'/access_codes/unmanaged/get': {
|
|
8548
8559
|
route: '/access_codes/unmanaged/get'
|
|
@@ -9113,6 +9124,7 @@ export type Routes = {
|
|
|
9113
9124
|
status: 'set'
|
|
9114
9125
|
}
|
|
9115
9126
|
}
|
|
9127
|
+
maxDuration: undefined
|
|
9116
9128
|
}
|
|
9117
9129
|
'/access_codes/unmanaged/list': {
|
|
9118
9130
|
route: '/access_codes/unmanaged/list'
|
|
@@ -9683,6 +9695,7 @@ export type Routes = {
|
|
|
9683
9695
|
next_page_url: string | null
|
|
9684
9696
|
}
|
|
9685
9697
|
}
|
|
9698
|
+
maxDuration: undefined
|
|
9686
9699
|
}
|
|
9687
9700
|
'/access_codes/unmanaged/update': {
|
|
9688
9701
|
route: '/access_codes/unmanaged/update'
|
|
@@ -9702,6 +9715,7 @@ export type Routes = {
|
|
|
9702
9715
|
}
|
|
9703
9716
|
formData: {}
|
|
9704
9717
|
jsonResponse: {}
|
|
9718
|
+
maxDuration: undefined
|
|
9705
9719
|
}
|
|
9706
9720
|
'/access_codes/update': {
|
|
9707
9721
|
route: '/access_codes/update'
|
|
@@ -11203,6 +11217,7 @@ export type Routes = {
|
|
|
11203
11217
|
}
|
|
11204
11218
|
}
|
|
11205
11219
|
}
|
|
11220
|
+
maxDuration: undefined
|
|
11206
11221
|
}
|
|
11207
11222
|
'/access_codes/update_multiple': {
|
|
11208
11223
|
route: '/access_codes/update_multiple'
|
|
@@ -11227,6 +11242,7 @@ export type Routes = {
|
|
|
11227
11242
|
commonParams: {}
|
|
11228
11243
|
formData: {}
|
|
11229
11244
|
jsonResponse: {}
|
|
11245
|
+
maxDuration: undefined
|
|
11230
11246
|
}
|
|
11231
11247
|
'/access_grants/create': {
|
|
11232
11248
|
route: '/access_grants/create'
|
|
@@ -11355,6 +11371,7 @@ export type Routes = {
|
|
|
11355
11371
|
customization_profile_id?: string | undefined
|
|
11356
11372
|
}
|
|
11357
11373
|
}
|
|
11374
|
+
maxDuration: undefined
|
|
11358
11375
|
}
|
|
11359
11376
|
'/access_grants/delete': {
|
|
11360
11377
|
route: '/access_grants/delete'
|
|
@@ -11367,6 +11384,7 @@ export type Routes = {
|
|
|
11367
11384
|
}
|
|
11368
11385
|
formData: {}
|
|
11369
11386
|
jsonResponse: {}
|
|
11387
|
+
maxDuration: undefined
|
|
11370
11388
|
}
|
|
11371
11389
|
'/access_grants/get': {
|
|
11372
11390
|
route: '/access_grants/get'
|
|
@@ -11443,6 +11461,7 @@ export type Routes = {
|
|
|
11443
11461
|
customization_profile_id?: string | undefined
|
|
11444
11462
|
}
|
|
11445
11463
|
}
|
|
11464
|
+
maxDuration: undefined
|
|
11446
11465
|
}
|
|
11447
11466
|
'/access_grants/get_related': {
|
|
11448
11467
|
route: '/access_grants/get_related'
|
|
@@ -13635,6 +13654,7 @@ export type Routes = {
|
|
|
13635
13654
|
| undefined
|
|
13636
13655
|
}
|
|
13637
13656
|
}
|
|
13657
|
+
maxDuration: undefined
|
|
13638
13658
|
}
|
|
13639
13659
|
'/access_grants/list': {
|
|
13640
13660
|
route: '/access_grants/list'
|
|
@@ -13720,6 +13740,7 @@ export type Routes = {
|
|
|
13720
13740
|
customization_profile_id?: string | undefined
|
|
13721
13741
|
}[]
|
|
13722
13742
|
}
|
|
13743
|
+
maxDuration: undefined
|
|
13723
13744
|
}
|
|
13724
13745
|
'/access_grants/request_access_methods': {
|
|
13725
13746
|
route: '/access_grants/request_access_methods'
|
|
@@ -13798,6 +13819,7 @@ export type Routes = {
|
|
|
13798
13819
|
customization_profile_id?: string | undefined
|
|
13799
13820
|
}
|
|
13800
13821
|
}
|
|
13822
|
+
maxDuration: undefined
|
|
13801
13823
|
}
|
|
13802
13824
|
'/access_grants/unmanaged/get': {
|
|
13803
13825
|
route: '/access_grants/unmanaged/get'
|
|
@@ -13861,6 +13883,7 @@ export type Routes = {
|
|
|
13861
13883
|
user_identity_id?: string | undefined
|
|
13862
13884
|
}
|
|
13863
13885
|
}
|
|
13886
|
+
maxDuration: undefined
|
|
13864
13887
|
}
|
|
13865
13888
|
'/access_grants/unmanaged/list': {
|
|
13866
13889
|
route: '/access_grants/unmanaged/list'
|
|
@@ -13929,6 +13952,7 @@ export type Routes = {
|
|
|
13929
13952
|
user_identity_id?: string | undefined
|
|
13930
13953
|
}[]
|
|
13931
13954
|
}
|
|
13955
|
+
maxDuration: undefined
|
|
13932
13956
|
}
|
|
13933
13957
|
'/access_grants/unmanaged/update': {
|
|
13934
13958
|
route: '/access_grants/unmanaged/update'
|
|
@@ -13945,6 +13969,7 @@ export type Routes = {
|
|
|
13945
13969
|
commonParams: {}
|
|
13946
13970
|
formData: {}
|
|
13947
13971
|
jsonResponse: {}
|
|
13972
|
+
maxDuration: undefined
|
|
13948
13973
|
}
|
|
13949
13974
|
'/access_grants/update': {
|
|
13950
13975
|
route: '/access_grants/update'
|
|
@@ -13963,6 +13988,7 @@ export type Routes = {
|
|
|
13963
13988
|
}
|
|
13964
13989
|
formData: {}
|
|
13965
13990
|
jsonResponse: {}
|
|
13991
|
+
maxDuration: undefined
|
|
13966
13992
|
}
|
|
13967
13993
|
'/access_methods/delete': {
|
|
13968
13994
|
route: '/access_methods/delete'
|
|
@@ -13975,6 +14001,7 @@ export type Routes = {
|
|
|
13975
14001
|
}
|
|
13976
14002
|
formData: {}
|
|
13977
14003
|
jsonResponse: {}
|
|
14004
|
+
maxDuration: undefined
|
|
13978
14005
|
}
|
|
13979
14006
|
'/access_methods/encode': {
|
|
13980
14007
|
route: '/access_methods/encode'
|
|
@@ -15436,6 +15463,7 @@ export type Routes = {
|
|
|
15436
15463
|
}
|
|
15437
15464
|
}
|
|
15438
15465
|
}
|
|
15466
|
+
maxDuration: undefined
|
|
15439
15467
|
}
|
|
15440
15468
|
'/access_methods/get': {
|
|
15441
15469
|
route: '/access_methods/get'
|
|
@@ -15485,6 +15513,7 @@ export type Routes = {
|
|
|
15485
15513
|
customization_profile_id?: string | undefined
|
|
15486
15514
|
}
|
|
15487
15515
|
}
|
|
15516
|
+
maxDuration: undefined
|
|
15488
15517
|
}
|
|
15489
15518
|
'/access_methods/get_related': {
|
|
15490
15519
|
route: '/access_methods/get_related'
|
|
@@ -17578,6 +17607,7 @@ export type Routes = {
|
|
|
17578
17607
|
| undefined
|
|
17579
17608
|
}
|
|
17580
17609
|
}
|
|
17610
|
+
maxDuration: undefined
|
|
17581
17611
|
}
|
|
17582
17612
|
'/access_methods/list': {
|
|
17583
17613
|
route: '/access_methods/list'
|
|
@@ -17632,6 +17662,7 @@ export type Routes = {
|
|
|
17632
17662
|
customization_profile_id?: string | undefined
|
|
17633
17663
|
}[]
|
|
17634
17664
|
}
|
|
17665
|
+
maxDuration: undefined
|
|
17635
17666
|
}
|
|
17636
17667
|
'/access_methods/unmanaged/get': {
|
|
17637
17668
|
route: '/access_methods/unmanaged/get'
|
|
@@ -17675,6 +17706,7 @@ export type Routes = {
|
|
|
17675
17706
|
}[]
|
|
17676
17707
|
}
|
|
17677
17708
|
}
|
|
17709
|
+
maxDuration: undefined
|
|
17678
17710
|
}
|
|
17679
17711
|
'/access_methods/unmanaged/list': {
|
|
17680
17712
|
route: '/access_methods/unmanaged/list'
|
|
@@ -17723,6 +17755,7 @@ export type Routes = {
|
|
|
17723
17755
|
}[]
|
|
17724
17756
|
}[]
|
|
17725
17757
|
}
|
|
17758
|
+
maxDuration: undefined
|
|
17726
17759
|
}
|
|
17727
17760
|
'/acs/access_groups/add_user': {
|
|
17728
17761
|
route: '/acs/access_groups/add_user'
|
|
@@ -17739,6 +17772,7 @@ export type Routes = {
|
|
|
17739
17772
|
}
|
|
17740
17773
|
formData: {}
|
|
17741
17774
|
jsonResponse: {}
|
|
17775
|
+
maxDuration: undefined
|
|
17742
17776
|
}
|
|
17743
17777
|
'/acs/access_groups/get': {
|
|
17744
17778
|
route: '/acs/access_groups/get'
|
|
@@ -17806,6 +17840,7 @@ export type Routes = {
|
|
|
17806
17840
|
is_managed: true
|
|
17807
17841
|
}
|
|
17808
17842
|
}
|
|
17843
|
+
maxDuration: undefined
|
|
17809
17844
|
}
|
|
17810
17845
|
'/acs/access_groups/list': {
|
|
17811
17846
|
route: '/acs/access_groups/list'
|
|
@@ -17872,6 +17907,7 @@ export type Routes = {
|
|
|
17872
17907
|
is_managed: true
|
|
17873
17908
|
}[]
|
|
17874
17909
|
}
|
|
17910
|
+
maxDuration: undefined
|
|
17875
17911
|
}
|
|
17876
17912
|
'/acs/access_groups/list_accessible_entrances': {
|
|
17877
17913
|
route: '/acs/access_groups/list_accessible_entrances'
|
|
@@ -18033,6 +18069,7 @@ export type Routes = {
|
|
|
18033
18069
|
can_belong_to_reservation?: boolean | undefined
|
|
18034
18070
|
}[]
|
|
18035
18071
|
}
|
|
18072
|
+
maxDuration: undefined
|
|
18036
18073
|
}
|
|
18037
18074
|
'/acs/access_groups/list_users': {
|
|
18038
18075
|
route: '/acs/access_groups/list_users'
|
|
@@ -18297,6 +18334,7 @@ export type Routes = {
|
|
|
18297
18334
|
is_managed: true
|
|
18298
18335
|
}[]
|
|
18299
18336
|
}
|
|
18337
|
+
maxDuration: undefined
|
|
18300
18338
|
}
|
|
18301
18339
|
'/acs/access_groups/remove_user': {
|
|
18302
18340
|
route: '/acs/access_groups/remove_user'
|
|
@@ -18313,6 +18351,7 @@ export type Routes = {
|
|
|
18313
18351
|
}
|
|
18314
18352
|
formData: {}
|
|
18315
18353
|
jsonResponse: {}
|
|
18354
|
+
maxDuration: undefined
|
|
18316
18355
|
}
|
|
18317
18356
|
'/acs/access_groups/unmanaged/get': {
|
|
18318
18357
|
route: '/acs/access_groups/unmanaged/get'
|
|
@@ -18376,6 +18415,7 @@ export type Routes = {
|
|
|
18376
18415
|
is_managed: false
|
|
18377
18416
|
}
|
|
18378
18417
|
}
|
|
18418
|
+
maxDuration: undefined
|
|
18379
18419
|
}
|
|
18380
18420
|
'/acs/access_groups/unmanaged/list': {
|
|
18381
18421
|
route: '/acs/access_groups/unmanaged/list'
|
|
@@ -18440,6 +18480,7 @@ export type Routes = {
|
|
|
18440
18480
|
is_managed: false
|
|
18441
18481
|
}[]
|
|
18442
18482
|
}
|
|
18483
|
+
maxDuration: undefined
|
|
18443
18484
|
}
|
|
18444
18485
|
'/acs/credential_pools/list': {
|
|
18445
18486
|
route: '/acs/credential_pools/list'
|
|
@@ -18462,6 +18503,7 @@ export type Routes = {
|
|
|
18462
18503
|
workspace_id: string
|
|
18463
18504
|
}[]
|
|
18464
18505
|
}
|
|
18506
|
+
maxDuration: undefined
|
|
18465
18507
|
}
|
|
18466
18508
|
'/acs/credential_provisioning_automations/launch': {
|
|
18467
18509
|
route: '/acs/credential_provisioning_automations/launch'
|
|
@@ -18492,6 +18534,7 @@ export type Routes = {
|
|
|
18492
18534
|
workspace_id: string
|
|
18493
18535
|
}
|
|
18494
18536
|
}
|
|
18537
|
+
maxDuration: undefined
|
|
18495
18538
|
}
|
|
18496
18539
|
'/acs/credentials/assign': {
|
|
18497
18540
|
route: '/acs/credentials/assign'
|
|
@@ -18673,6 +18716,7 @@ export type Routes = {
|
|
|
18673
18716
|
is_managed: true
|
|
18674
18717
|
}
|
|
18675
18718
|
}
|
|
18719
|
+
maxDuration: undefined
|
|
18676
18720
|
}
|
|
18677
18721
|
'/acs/credentials/create': {
|
|
18678
18722
|
route: '/acs/credentials/create'
|
|
@@ -18911,6 +18955,7 @@ export type Routes = {
|
|
|
18911
18955
|
is_managed: true
|
|
18912
18956
|
}
|
|
18913
18957
|
}
|
|
18958
|
+
maxDuration: undefined
|
|
18914
18959
|
}
|
|
18915
18960
|
'/acs/credentials/create_offline_code': {
|
|
18916
18961
|
route: '/acs/credentials/create_offline_code'
|
|
@@ -19096,6 +19141,7 @@ export type Routes = {
|
|
|
19096
19141
|
is_managed: true
|
|
19097
19142
|
}
|
|
19098
19143
|
}
|
|
19144
|
+
maxDuration: undefined
|
|
19099
19145
|
}
|
|
19100
19146
|
'/acs/credentials/delete': {
|
|
19101
19147
|
route: '/acs/credentials/delete'
|
|
@@ -19108,6 +19154,7 @@ export type Routes = {
|
|
|
19108
19154
|
}
|
|
19109
19155
|
formData: {}
|
|
19110
19156
|
jsonResponse: {}
|
|
19157
|
+
maxDuration: undefined
|
|
19111
19158
|
}
|
|
19112
19159
|
'/acs/credentials/get': {
|
|
19113
19160
|
route: '/acs/credentials/get'
|
|
@@ -19285,6 +19332,7 @@ export type Routes = {
|
|
|
19285
19332
|
is_managed: true
|
|
19286
19333
|
}
|
|
19287
19334
|
}
|
|
19335
|
+
maxDuration: undefined
|
|
19288
19336
|
}
|
|
19289
19337
|
'/acs/credentials/list': {
|
|
19290
19338
|
route: '/acs/credentials/list'
|
|
@@ -19494,6 +19542,7 @@ export type Routes = {
|
|
|
19494
19542
|
next_page_url: string | null
|
|
19495
19543
|
}
|
|
19496
19544
|
}
|
|
19545
|
+
maxDuration: undefined
|
|
19497
19546
|
}
|
|
19498
19547
|
'/acs/credentials/list_accessible_entrances': {
|
|
19499
19548
|
route: '/acs/credentials/list_accessible_entrances'
|
|
@@ -19655,6 +19704,7 @@ export type Routes = {
|
|
|
19655
19704
|
can_belong_to_reservation?: boolean | undefined
|
|
19656
19705
|
}[]
|
|
19657
19706
|
}
|
|
19707
|
+
maxDuration: undefined
|
|
19658
19708
|
}
|
|
19659
19709
|
'/acs/credentials/unassign': {
|
|
19660
19710
|
route: '/acs/credentials/unassign'
|
|
@@ -19836,6 +19886,7 @@ export type Routes = {
|
|
|
19836
19886
|
is_managed: true
|
|
19837
19887
|
}
|
|
19838
19888
|
}
|
|
19889
|
+
maxDuration: undefined
|
|
19839
19890
|
}
|
|
19840
19891
|
'/acs/credentials/unmanaged/get': {
|
|
19841
19892
|
route: '/acs/credentials/unmanaged/get'
|
|
@@ -20009,6 +20060,7 @@ export type Routes = {
|
|
|
20009
20060
|
is_managed: false
|
|
20010
20061
|
}
|
|
20011
20062
|
}
|
|
20063
|
+
maxDuration: undefined
|
|
20012
20064
|
}
|
|
20013
20065
|
'/acs/credentials/unmanaged/list': {
|
|
20014
20066
|
route: '/acs/credentials/unmanaged/list'
|
|
@@ -20196,6 +20248,7 @@ export type Routes = {
|
|
|
20196
20248
|
is_managed: false
|
|
20197
20249
|
}[]
|
|
20198
20250
|
}
|
|
20251
|
+
maxDuration: undefined
|
|
20199
20252
|
}
|
|
20200
20253
|
'/acs/credentials/update': {
|
|
20201
20254
|
route: '/acs/credentials/update'
|
|
@@ -20377,6 +20430,7 @@ export type Routes = {
|
|
|
20377
20430
|
is_managed: true
|
|
20378
20431
|
}
|
|
20379
20432
|
}
|
|
20433
|
+
maxDuration: undefined
|
|
20380
20434
|
}
|
|
20381
20435
|
'/acs/encoders/encode_credential': {
|
|
20382
20436
|
route: '/acs/encoders/encode_credential'
|
|
@@ -21840,6 +21894,7 @@ export type Routes = {
|
|
|
21840
21894
|
}
|
|
21841
21895
|
}
|
|
21842
21896
|
}
|
|
21897
|
+
maxDuration: undefined
|
|
21843
21898
|
}
|
|
21844
21899
|
'/acs/encoders/get': {
|
|
21845
21900
|
route: '/acs/encoders/get'
|
|
@@ -21890,6 +21945,7 @@ export type Routes = {
|
|
|
21890
21945
|
display_name: string
|
|
21891
21946
|
}
|
|
21892
21947
|
}
|
|
21948
|
+
maxDuration: undefined
|
|
21893
21949
|
}
|
|
21894
21950
|
'/acs/encoders/list': {
|
|
21895
21951
|
route: '/acs/encoders/list'
|
|
@@ -21950,6 +22006,7 @@ export type Routes = {
|
|
|
21950
22006
|
next_page_url: string | null
|
|
21951
22007
|
}
|
|
21952
22008
|
}
|
|
22009
|
+
maxDuration: undefined
|
|
21953
22010
|
}
|
|
21954
22011
|
'/acs/encoders/scan_credential': {
|
|
21955
22012
|
route: '/acs/encoders/scan_credential'
|
|
@@ -23409,6 +23466,7 @@ export type Routes = {
|
|
|
23409
23466
|
}
|
|
23410
23467
|
}
|
|
23411
23468
|
}
|
|
23469
|
+
maxDuration: undefined
|
|
23412
23470
|
}
|
|
23413
23471
|
'/acs/encoders/simulate/next_credential_encode_will_fail': {
|
|
23414
23472
|
route: '/acs/encoders/simulate/next_credential_encode_will_fail'
|
|
@@ -23432,6 +23490,7 @@ export type Routes = {
|
|
|
23432
23490
|
commonParams: {}
|
|
23433
23491
|
formData: {}
|
|
23434
23492
|
jsonResponse: {}
|
|
23493
|
+
maxDuration: undefined
|
|
23435
23494
|
}
|
|
23436
23495
|
'/acs/encoders/simulate/next_credential_encode_will_succeed': {
|
|
23437
23496
|
route: '/acs/encoders/simulate/next_credential_encode_will_succeed'
|
|
@@ -23446,6 +23505,7 @@ export type Routes = {
|
|
|
23446
23505
|
commonParams: {}
|
|
23447
23506
|
formData: {}
|
|
23448
23507
|
jsonResponse: {}
|
|
23508
|
+
maxDuration: undefined
|
|
23449
23509
|
}
|
|
23450
23510
|
'/acs/encoders/simulate/next_credential_scan_will_fail': {
|
|
23451
23511
|
route: '/acs/encoders/simulate/next_credential_scan_will_fail'
|
|
@@ -23466,6 +23526,7 @@ export type Routes = {
|
|
|
23466
23526
|
commonParams: {}
|
|
23467
23527
|
formData: {}
|
|
23468
23528
|
jsonResponse: {}
|
|
23529
|
+
maxDuration: undefined
|
|
23469
23530
|
}
|
|
23470
23531
|
'/acs/encoders/simulate/next_credential_scan_will_succeed': {
|
|
23471
23532
|
route: '/acs/encoders/simulate/next_credential_scan_will_succeed'
|
|
@@ -23497,6 +23558,7 @@ export type Routes = {
|
|
|
23497
23558
|
commonParams: {}
|
|
23498
23559
|
formData: {}
|
|
23499
23560
|
jsonResponse: {}
|
|
23561
|
+
maxDuration: undefined
|
|
23500
23562
|
}
|
|
23501
23563
|
'/acs/entrances/get': {
|
|
23502
23564
|
route: '/acs/entrances/get'
|
|
@@ -23661,6 +23723,7 @@ export type Routes = {
|
|
|
23661
23723
|
can_belong_to_reservation?: boolean | undefined
|
|
23662
23724
|
}
|
|
23663
23725
|
}
|
|
23726
|
+
maxDuration: undefined
|
|
23664
23727
|
}
|
|
23665
23728
|
'/acs/entrances/grant_access': {
|
|
23666
23729
|
route: '/acs/entrances/grant_access'
|
|
@@ -23677,6 +23740,7 @@ export type Routes = {
|
|
|
23677
23740
|
commonParams: {}
|
|
23678
23741
|
formData: {}
|
|
23679
23742
|
jsonResponse: {}
|
|
23743
|
+
maxDuration: undefined
|
|
23680
23744
|
}
|
|
23681
23745
|
'/acs/entrances/list': {
|
|
23682
23746
|
route: '/acs/entrances/list'
|
|
@@ -23866,6 +23930,7 @@ export type Routes = {
|
|
|
23866
23930
|
next_page_url: string | null
|
|
23867
23931
|
}
|
|
23868
23932
|
}
|
|
23933
|
+
maxDuration: undefined
|
|
23869
23934
|
}
|
|
23870
23935
|
'/acs/entrances/list_credentials_with_access': {
|
|
23871
23936
|
route: '/acs/entrances/list_credentials_with_access'
|
|
@@ -24040,6 +24105,7 @@ export type Routes = {
|
|
|
24040
24105
|
is_managed: true
|
|
24041
24106
|
}[]
|
|
24042
24107
|
}
|
|
24108
|
+
maxDuration: undefined
|
|
24043
24109
|
}
|
|
24044
24110
|
'/acs/systems/get': {
|
|
24045
24111
|
route: '/acs/systems/get'
|
|
@@ -24225,6 +24291,7 @@ export type Routes = {
|
|
|
24225
24291
|
)[]
|
|
24226
24292
|
}
|
|
24227
24293
|
}
|
|
24294
|
+
maxDuration: undefined
|
|
24228
24295
|
}
|
|
24229
24296
|
'/acs/systems/list': {
|
|
24230
24297
|
route: '/acs/systems/list'
|
|
@@ -24407,6 +24474,7 @@ export type Routes = {
|
|
|
24407
24474
|
)[]
|
|
24408
24475
|
}[]
|
|
24409
24476
|
}
|
|
24477
|
+
maxDuration: undefined
|
|
24410
24478
|
}
|
|
24411
24479
|
'/acs/systems/list_compatible_credential_manager_acs_systems': {
|
|
24412
24480
|
route: '/acs/systems/list_compatible_credential_manager_acs_systems'
|
|
@@ -24587,6 +24655,7 @@ export type Routes = {
|
|
|
24587
24655
|
)[]
|
|
24588
24656
|
}[]
|
|
24589
24657
|
}
|
|
24658
|
+
maxDuration: undefined
|
|
24590
24659
|
}
|
|
24591
24660
|
'/acs/systems/report_devices': {
|
|
24592
24661
|
route: '/acs/systems/report_devices'
|
|
@@ -24626,6 +24695,7 @@ export type Routes = {
|
|
|
24626
24695
|
}
|
|
24627
24696
|
formData: {}
|
|
24628
24697
|
jsonResponse: {}
|
|
24698
|
+
maxDuration: undefined
|
|
24629
24699
|
}
|
|
24630
24700
|
'/acs/users/add_to_access_group': {
|
|
24631
24701
|
route: '/acs/users/add_to_access_group'
|
|
@@ -24640,6 +24710,7 @@ export type Routes = {
|
|
|
24640
24710
|
}
|
|
24641
24711
|
formData: {}
|
|
24642
24712
|
jsonResponse: {}
|
|
24713
|
+
maxDuration: undefined
|
|
24643
24714
|
}
|
|
24644
24715
|
'/acs/users/create': {
|
|
24645
24716
|
route: '/acs/users/create'
|
|
@@ -24931,6 +25002,7 @@ export type Routes = {
|
|
|
24931
25002
|
is_managed: true
|
|
24932
25003
|
}
|
|
24933
25004
|
}
|
|
25005
|
+
maxDuration: undefined
|
|
24934
25006
|
}
|
|
24935
25007
|
'/acs/users/delete': {
|
|
24936
25008
|
route: '/acs/users/delete'
|
|
@@ -24947,6 +25019,7 @@ export type Routes = {
|
|
|
24947
25019
|
}
|
|
24948
25020
|
formData: {}
|
|
24949
25021
|
jsonResponse: {}
|
|
25022
|
+
maxDuration: undefined
|
|
24950
25023
|
}
|
|
24951
25024
|
'/acs/users/get': {
|
|
24952
25025
|
route: '/acs/users/get'
|
|
@@ -25220,6 +25293,7 @@ export type Routes = {
|
|
|
25220
25293
|
is_managed: true
|
|
25221
25294
|
}
|
|
25222
25295
|
}
|
|
25296
|
+
maxDuration: undefined
|
|
25223
25297
|
}
|
|
25224
25298
|
'/acs/users/list': {
|
|
25225
25299
|
route: '/acs/users/list'
|
|
@@ -25507,6 +25581,7 @@ export type Routes = {
|
|
|
25507
25581
|
next_page_url: string | null
|
|
25508
25582
|
}
|
|
25509
25583
|
}
|
|
25584
|
+
maxDuration: undefined
|
|
25510
25585
|
}
|
|
25511
25586
|
'/acs/users/list_accessible_entrances': {
|
|
25512
25587
|
route: '/acs/users/list_accessible_entrances'
|
|
@@ -25672,6 +25747,7 @@ export type Routes = {
|
|
|
25672
25747
|
can_belong_to_reservation?: boolean | undefined
|
|
25673
25748
|
}[]
|
|
25674
25749
|
}
|
|
25750
|
+
maxDuration: undefined
|
|
25675
25751
|
}
|
|
25676
25752
|
'/acs/users/remove_from_access_group': {
|
|
25677
25753
|
route: '/acs/users/remove_from_access_group'
|
|
@@ -25688,6 +25764,7 @@ export type Routes = {
|
|
|
25688
25764
|
}
|
|
25689
25765
|
formData: {}
|
|
25690
25766
|
jsonResponse: {}
|
|
25767
|
+
maxDuration: undefined
|
|
25691
25768
|
}
|
|
25692
25769
|
'/acs/users/revoke_access_to_all_entrances': {
|
|
25693
25770
|
route: '/acs/users/revoke_access_to_all_entrances'
|
|
@@ -25704,6 +25781,7 @@ export type Routes = {
|
|
|
25704
25781
|
commonParams: {}
|
|
25705
25782
|
formData: {}
|
|
25706
25783
|
jsonResponse: {}
|
|
25784
|
+
maxDuration: undefined
|
|
25707
25785
|
}
|
|
25708
25786
|
'/acs/users/suspend': {
|
|
25709
25787
|
route: '/acs/users/suspend'
|
|
@@ -25720,6 +25798,7 @@ export type Routes = {
|
|
|
25720
25798
|
}
|
|
25721
25799
|
formData: {}
|
|
25722
25800
|
jsonResponse: {}
|
|
25801
|
+
maxDuration: undefined
|
|
25723
25802
|
}
|
|
25724
25803
|
'/acs/users/unmanaged/get': {
|
|
25725
25804
|
route: '/acs/users/unmanaged/get'
|
|
@@ -25985,6 +26064,7 @@ export type Routes = {
|
|
|
25985
26064
|
is_managed: false
|
|
25986
26065
|
}
|
|
25987
26066
|
}
|
|
26067
|
+
maxDuration: undefined
|
|
25988
26068
|
}
|
|
25989
26069
|
'/acs/users/unmanaged/list': {
|
|
25990
26070
|
route: '/acs/users/unmanaged/list'
|
|
@@ -26257,6 +26337,7 @@ export type Routes = {
|
|
|
26257
26337
|
is_managed: false
|
|
26258
26338
|
}[]
|
|
26259
26339
|
}
|
|
26340
|
+
maxDuration: undefined
|
|
26260
26341
|
}
|
|
26261
26342
|
'/acs/users/unsuspend': {
|
|
26262
26343
|
route: '/acs/users/unsuspend'
|
|
@@ -26273,6 +26354,7 @@ export type Routes = {
|
|
|
26273
26354
|
}
|
|
26274
26355
|
formData: {}
|
|
26275
26356
|
jsonResponse: {}
|
|
26357
|
+
maxDuration: undefined
|
|
26276
26358
|
}
|
|
26277
26359
|
'/acs/users/update': {
|
|
26278
26360
|
route: '/acs/users/update'
|
|
@@ -26308,6 +26390,7 @@ export type Routes = {
|
|
|
26308
26390
|
commonParams: {}
|
|
26309
26391
|
formData: {}
|
|
26310
26392
|
jsonResponse: {}
|
|
26393
|
+
maxDuration: undefined
|
|
26311
26394
|
}
|
|
26312
26395
|
'/action_attempts/get': {
|
|
26313
26396
|
route: '/action_attempts/get'
|
|
@@ -27767,6 +27850,7 @@ export type Routes = {
|
|
|
27767
27850
|
}
|
|
27768
27851
|
}
|
|
27769
27852
|
}
|
|
27853
|
+
maxDuration: undefined
|
|
27770
27854
|
}
|
|
27771
27855
|
'/action_attempts/list': {
|
|
27772
27856
|
route: '/action_attempts/list'
|
|
@@ -29222,6 +29306,7 @@ export type Routes = {
|
|
|
29222
29306
|
}
|
|
29223
29307
|
)[]
|
|
29224
29308
|
}
|
|
29309
|
+
maxDuration: undefined
|
|
29225
29310
|
}
|
|
29226
29311
|
'/bridges/get': {
|
|
29227
29312
|
route: '/bridges/get'
|
|
@@ -29244,6 +29329,7 @@ export type Routes = {
|
|
|
29244
29329
|
created_at: string
|
|
29245
29330
|
}
|
|
29246
29331
|
}
|
|
29332
|
+
maxDuration: undefined
|
|
29247
29333
|
}
|
|
29248
29334
|
'/bridges/list': {
|
|
29249
29335
|
route: '/bridges/list'
|
|
@@ -29262,6 +29348,7 @@ export type Routes = {
|
|
|
29262
29348
|
created_at: string
|
|
29263
29349
|
}[]
|
|
29264
29350
|
}
|
|
29351
|
+
maxDuration: undefined
|
|
29265
29352
|
}
|
|
29266
29353
|
'/client_sessions/create': {
|
|
29267
29354
|
route: '/client_sessions/create'
|
|
@@ -29326,6 +29413,7 @@ export type Routes = {
|
|
|
29326
29413
|
user_identity_id?: string | undefined
|
|
29327
29414
|
}
|
|
29328
29415
|
}
|
|
29416
|
+
maxDuration: undefined
|
|
29329
29417
|
}
|
|
29330
29418
|
'/client_sessions/delete': {
|
|
29331
29419
|
route: '/client_sessions/delete'
|
|
@@ -29338,6 +29426,7 @@ export type Routes = {
|
|
|
29338
29426
|
}
|
|
29339
29427
|
formData: {}
|
|
29340
29428
|
jsonResponse: {}
|
|
29429
|
+
maxDuration: undefined
|
|
29341
29430
|
}
|
|
29342
29431
|
'/client_sessions/get': {
|
|
29343
29432
|
route: '/client_sessions/get'
|
|
@@ -29389,6 +29478,7 @@ export type Routes = {
|
|
|
29389
29478
|
user_identity_id?: string | undefined
|
|
29390
29479
|
}
|
|
29391
29480
|
}
|
|
29481
|
+
maxDuration: undefined
|
|
29392
29482
|
}
|
|
29393
29483
|
'/client_sessions/get_or_create': {
|
|
29394
29484
|
route: '/client_sessions/get_or_create'
|
|
@@ -29449,6 +29539,7 @@ export type Routes = {
|
|
|
29449
29539
|
user_identity_id?: string | undefined
|
|
29450
29540
|
}
|
|
29451
29541
|
}
|
|
29542
|
+
maxDuration: undefined
|
|
29452
29543
|
}
|
|
29453
29544
|
'/client_sessions/grant_access': {
|
|
29454
29545
|
route: '/client_sessions/grant_access'
|
|
@@ -29509,6 +29600,7 @@ export type Routes = {
|
|
|
29509
29600
|
user_identity_id?: string | undefined
|
|
29510
29601
|
}
|
|
29511
29602
|
}
|
|
29603
|
+
maxDuration: undefined
|
|
29512
29604
|
}
|
|
29513
29605
|
'/client_sessions/list': {
|
|
29514
29606
|
route: '/client_sessions/list'
|
|
@@ -29557,6 +29649,7 @@ export type Routes = {
|
|
|
29557
29649
|
user_identity_id?: string | undefined
|
|
29558
29650
|
}[]
|
|
29559
29651
|
}
|
|
29652
|
+
maxDuration: undefined
|
|
29560
29653
|
}
|
|
29561
29654
|
'/client_sessions/revoke': {
|
|
29562
29655
|
route: '/client_sessions/revoke'
|
|
@@ -29569,6 +29662,7 @@ export type Routes = {
|
|
|
29569
29662
|
}
|
|
29570
29663
|
formData: {}
|
|
29571
29664
|
jsonResponse: {}
|
|
29665
|
+
maxDuration: undefined
|
|
29572
29666
|
}
|
|
29573
29667
|
'/connect_webviews/create': {
|
|
29574
29668
|
route: '/connect_webviews/create'
|
|
@@ -29736,6 +29830,7 @@ export type Routes = {
|
|
|
29736
29830
|
customer_key?: string | undefined
|
|
29737
29831
|
}
|
|
29738
29832
|
}
|
|
29833
|
+
maxDuration: undefined
|
|
29739
29834
|
}
|
|
29740
29835
|
'/connect_webviews/delete': {
|
|
29741
29836
|
route: '/connect_webviews/delete'
|
|
@@ -29748,6 +29843,7 @@ export type Routes = {
|
|
|
29748
29843
|
commonParams: {}
|
|
29749
29844
|
formData: {}
|
|
29750
29845
|
jsonResponse: {}
|
|
29846
|
+
maxDuration: undefined
|
|
29751
29847
|
}
|
|
29752
29848
|
'/connect_webviews/get': {
|
|
29753
29849
|
route: '/connect_webviews/get'
|
|
@@ -29824,6 +29920,7 @@ export type Routes = {
|
|
|
29824
29920
|
customer_key?: string | undefined
|
|
29825
29921
|
}
|
|
29826
29922
|
}
|
|
29923
|
+
maxDuration: undefined
|
|
29827
29924
|
}
|
|
29828
29925
|
'/connect_webviews/list': {
|
|
29829
29926
|
route: '/connect_webviews/list'
|
|
@@ -29910,6 +30007,7 @@ export type Routes = {
|
|
|
29910
30007
|
next_page_url: string | null
|
|
29911
30008
|
}
|
|
29912
30009
|
}
|
|
30010
|
+
maxDuration: undefined
|
|
29913
30011
|
}
|
|
29914
30012
|
'/connected_accounts/delete': {
|
|
29915
30013
|
route: '/connected_accounts/delete'
|
|
@@ -29924,6 +30022,7 @@ export type Routes = {
|
|
|
29924
30022
|
commonParams: {}
|
|
29925
30023
|
formData: {}
|
|
29926
30024
|
jsonResponse: {}
|
|
30025
|
+
maxDuration: undefined
|
|
29927
30026
|
}
|
|
29928
30027
|
'/connected_accounts/get': {
|
|
29929
30028
|
route: '/connected_accounts/get'
|
|
@@ -30085,6 +30184,7 @@ export type Routes = {
|
|
|
30085
30184
|
)[]
|
|
30086
30185
|
}
|
|
30087
30186
|
}
|
|
30187
|
+
maxDuration: undefined
|
|
30088
30188
|
}
|
|
30089
30189
|
'/connected_accounts/list': {
|
|
30090
30190
|
route: '/connected_accounts/list'
|
|
@@ -30263,6 +30363,7 @@ export type Routes = {
|
|
|
30263
30363
|
next_page_url: string | null
|
|
30264
30364
|
}
|
|
30265
30365
|
}
|
|
30366
|
+
maxDuration: undefined
|
|
30266
30367
|
}
|
|
30267
30368
|
'/connected_accounts/simulate/disconnect': {
|
|
30268
30369
|
route: '/connected_accounts/simulate/disconnect'
|
|
@@ -30274,6 +30375,7 @@ export type Routes = {
|
|
|
30274
30375
|
commonParams: {}
|
|
30275
30376
|
formData: {}
|
|
30276
30377
|
jsonResponse: {}
|
|
30378
|
+
maxDuration: undefined
|
|
30277
30379
|
}
|
|
30278
30380
|
'/connected_accounts/sync': {
|
|
30279
30381
|
route: '/connected_accounts/sync'
|
|
@@ -30286,6 +30388,7 @@ export type Routes = {
|
|
|
30286
30388
|
commonParams: {}
|
|
30287
30389
|
formData: {}
|
|
30288
30390
|
jsonResponse: {}
|
|
30391
|
+
maxDuration: undefined
|
|
30289
30392
|
}
|
|
30290
30393
|
'/connected_accounts/update': {
|
|
30291
30394
|
route: '/connected_accounts/update'
|
|
@@ -30456,6 +30559,7 @@ export type Routes = {
|
|
|
30456
30559
|
)[]
|
|
30457
30560
|
}
|
|
30458
30561
|
}
|
|
30562
|
+
maxDuration: undefined
|
|
30459
30563
|
}
|
|
30460
30564
|
'/customers/create_portal': {
|
|
30461
30565
|
route: '/customers/create_portal'
|
|
@@ -30908,6 +31012,7 @@ export type Routes = {
|
|
|
30908
31012
|
created_at: string
|
|
30909
31013
|
}
|
|
30910
31014
|
}
|
|
31015
|
+
maxDuration: undefined
|
|
30911
31016
|
}
|
|
30912
31017
|
'/customers/delete_data': {
|
|
30913
31018
|
route: '/customers/delete_data'
|
|
@@ -30956,6 +31061,7 @@ export type Routes = {
|
|
|
30956
31061
|
}
|
|
30957
31062
|
formData: {}
|
|
30958
31063
|
jsonResponse: {}
|
|
31064
|
+
maxDuration: undefined
|
|
30959
31065
|
}
|
|
30960
31066
|
'/customers/push_data': {
|
|
30961
31067
|
route: '/customers/push_data'
|
|
@@ -31285,6 +31391,7 @@ export type Routes = {
|
|
|
31285
31391
|
}
|
|
31286
31392
|
formData: {}
|
|
31287
31393
|
jsonResponse: {}
|
|
31394
|
+
maxDuration: undefined
|
|
31288
31395
|
}
|
|
31289
31396
|
'/devices/delete': {
|
|
31290
31397
|
route: '/devices/delete'
|
|
@@ -31297,6 +31404,7 @@ export type Routes = {
|
|
|
31297
31404
|
}
|
|
31298
31405
|
formData: {}
|
|
31299
31406
|
jsonResponse: {}
|
|
31407
|
+
maxDuration: undefined
|
|
31300
31408
|
}
|
|
31301
31409
|
'/devices/get': {
|
|
31302
31410
|
route: '/devices/get'
|
|
@@ -32846,6 +32954,7 @@ export type Routes = {
|
|
|
32846
32954
|
can_simulate_paid_subscription?: boolean | undefined
|
|
32847
32955
|
}
|
|
32848
32956
|
}
|
|
32957
|
+
maxDuration: undefined
|
|
32849
32958
|
}
|
|
32850
32959
|
'/devices/list': {
|
|
32851
32960
|
route: '/devices/list'
|
|
@@ -34616,6 +34725,7 @@ export type Routes = {
|
|
|
34616
34725
|
next_page_url: string | null
|
|
34617
34726
|
}
|
|
34618
34727
|
}
|
|
34728
|
+
maxDuration: undefined
|
|
34619
34729
|
}
|
|
34620
34730
|
'/devices/list_device_providers': {
|
|
34621
34731
|
route: '/devices/list_device_providers'
|
|
@@ -34720,6 +34830,7 @@ export type Routes = {
|
|
|
34720
34830
|
can_simulate_paid_subscription?: boolean | undefined
|
|
34721
34831
|
}[]
|
|
34722
34832
|
}
|
|
34833
|
+
maxDuration: undefined
|
|
34723
34834
|
}
|
|
34724
34835
|
'/devices/simulate/connect': {
|
|
34725
34836
|
route: '/devices/simulate/connect'
|
|
@@ -34732,6 +34843,7 @@ export type Routes = {
|
|
|
34732
34843
|
commonParams: {}
|
|
34733
34844
|
formData: {}
|
|
34734
34845
|
jsonResponse: {}
|
|
34846
|
+
maxDuration: undefined
|
|
34735
34847
|
}
|
|
34736
34848
|
'/devices/simulate/connect_to_hub': {
|
|
34737
34849
|
route: '/devices/simulate/connect_to_hub'
|
|
@@ -34744,6 +34856,7 @@ export type Routes = {
|
|
|
34744
34856
|
commonParams: {}
|
|
34745
34857
|
formData: {}
|
|
34746
34858
|
jsonResponse: {}
|
|
34859
|
+
maxDuration: undefined
|
|
34747
34860
|
}
|
|
34748
34861
|
'/devices/simulate/disconnect': {
|
|
34749
34862
|
route: '/devices/simulate/disconnect'
|
|
@@ -34756,6 +34869,7 @@ export type Routes = {
|
|
|
34756
34869
|
commonParams: {}
|
|
34757
34870
|
formData: {}
|
|
34758
34871
|
jsonResponse: {}
|
|
34872
|
+
maxDuration: undefined
|
|
34759
34873
|
}
|
|
34760
34874
|
'/devices/simulate/disconnect_from_hub': {
|
|
34761
34875
|
route: '/devices/simulate/disconnect_from_hub'
|
|
@@ -34768,6 +34882,7 @@ export type Routes = {
|
|
|
34768
34882
|
commonParams: {}
|
|
34769
34883
|
formData: {}
|
|
34770
34884
|
jsonResponse: {}
|
|
34885
|
+
maxDuration: undefined
|
|
34771
34886
|
}
|
|
34772
34887
|
'/devices/simulate/paid_subscription': {
|
|
34773
34888
|
route: '/devices/simulate/paid_subscription'
|
|
@@ -34780,6 +34895,7 @@ export type Routes = {
|
|
|
34780
34895
|
commonParams: {}
|
|
34781
34896
|
formData: {}
|
|
34782
34897
|
jsonResponse: {}
|
|
34898
|
+
maxDuration: undefined
|
|
34783
34899
|
}
|
|
34784
34900
|
'/devices/simulate/remove': {
|
|
34785
34901
|
route: '/devices/simulate/remove'
|
|
@@ -34792,6 +34908,7 @@ export type Routes = {
|
|
|
34792
34908
|
commonParams: {}
|
|
34793
34909
|
formData: {}
|
|
34794
34910
|
jsonResponse: {}
|
|
34911
|
+
maxDuration: undefined
|
|
34795
34912
|
}
|
|
34796
34913
|
'/devices/unmanaged/get': {
|
|
34797
34914
|
route: '/devices/unmanaged/get'
|
|
@@ -35289,6 +35406,7 @@ export type Routes = {
|
|
|
35289
35406
|
can_simulate_paid_subscription?: boolean | undefined
|
|
35290
35407
|
}
|
|
35291
35408
|
}
|
|
35409
|
+
maxDuration: undefined
|
|
35292
35410
|
}
|
|
35293
35411
|
'/devices/unmanaged/list': {
|
|
35294
35412
|
route: '/devices/unmanaged/list'
|
|
@@ -36007,6 +36125,7 @@ export type Routes = {
|
|
|
36007
36125
|
next_page_url: string | null
|
|
36008
36126
|
}
|
|
36009
36127
|
}
|
|
36128
|
+
maxDuration: undefined
|
|
36010
36129
|
}
|
|
36011
36130
|
'/devices/unmanaged/update': {
|
|
36012
36131
|
route: '/devices/unmanaged/update'
|
|
@@ -36027,6 +36146,7 @@ export type Routes = {
|
|
|
36027
36146
|
}
|
|
36028
36147
|
formData: {}
|
|
36029
36148
|
jsonResponse: {}
|
|
36149
|
+
maxDuration: undefined
|
|
36030
36150
|
}
|
|
36031
36151
|
'/devices/update': {
|
|
36032
36152
|
route: '/devices/update'
|
|
@@ -36055,6 +36175,7 @@ export type Routes = {
|
|
|
36055
36175
|
}
|
|
36056
36176
|
formData: {}
|
|
36057
36177
|
jsonResponse: {}
|
|
36178
|
+
maxDuration: undefined
|
|
36058
36179
|
}
|
|
36059
36180
|
'/events/get': {
|
|
36060
36181
|
route: '/events/get'
|
|
@@ -38334,6 +38455,7 @@ export type Routes = {
|
|
|
38334
38455
|
| undefined
|
|
38335
38456
|
message?: string | undefined
|
|
38336
38457
|
}
|
|
38458
|
+
maxDuration: undefined
|
|
38337
38459
|
}
|
|
38338
38460
|
'/events/list': {
|
|
38339
38461
|
route: '/events/list'
|
|
@@ -40812,6 +40934,7 @@ export type Routes = {
|
|
|
40812
40934
|
}
|
|
40813
40935
|
)[]
|
|
40814
40936
|
}
|
|
40937
|
+
maxDuration: undefined
|
|
40815
40938
|
}
|
|
40816
40939
|
'/instant_keys/delete': {
|
|
40817
40940
|
route: '/instant_keys/delete'
|
|
@@ -40824,6 +40947,7 @@ export type Routes = {
|
|
|
40824
40947
|
}
|
|
40825
40948
|
formData: {}
|
|
40826
40949
|
jsonResponse: {}
|
|
40950
|
+
maxDuration: undefined
|
|
40827
40951
|
}
|
|
40828
40952
|
'/instant_keys/get': {
|
|
40829
40953
|
route: '/instant_keys/get'
|
|
@@ -40871,6 +40995,7 @@ export type Routes = {
|
|
|
40871
40995
|
| undefined
|
|
40872
40996
|
}
|
|
40873
40997
|
}
|
|
40998
|
+
maxDuration: undefined
|
|
40874
40999
|
}
|
|
40875
41000
|
'/instant_keys/list': {
|
|
40876
41001
|
route: '/instant_keys/list'
|
|
@@ -40913,6 +41038,7 @@ export type Routes = {
|
|
|
40913
41038
|
| undefined
|
|
40914
41039
|
}[]
|
|
40915
41040
|
}
|
|
41041
|
+
maxDuration: undefined
|
|
40916
41042
|
}
|
|
40917
41043
|
'/locks/get': {
|
|
40918
41044
|
route: '/locks/get'
|
|
@@ -43996,6 +44122,7 @@ export type Routes = {
|
|
|
43996
44122
|
can_simulate_paid_subscription?: boolean | undefined
|
|
43997
44123
|
}
|
|
43998
44124
|
}
|
|
44125
|
+
maxDuration: undefined
|
|
43999
44126
|
}
|
|
44000
44127
|
'/locks/list': {
|
|
44001
44128
|
route: '/locks/list'
|
|
@@ -47252,6 +47379,7 @@ export type Routes = {
|
|
|
47252
47379
|
can_simulate_paid_subscription?: boolean | undefined
|
|
47253
47380
|
}[]
|
|
47254
47381
|
}
|
|
47382
|
+
maxDuration: undefined
|
|
47255
47383
|
}
|
|
47256
47384
|
'/locks/lock_door': {
|
|
47257
47385
|
route: '/locks/lock_door'
|
|
@@ -48713,6 +48841,7 @@ export type Routes = {
|
|
|
48713
48841
|
}
|
|
48714
48842
|
}
|
|
48715
48843
|
}
|
|
48844
|
+
maxDuration: undefined
|
|
48716
48845
|
}
|
|
48717
48846
|
'/locks/simulate/keypad_code_entry': {
|
|
48718
48847
|
route: '/locks/simulate/keypad_code_entry'
|
|
@@ -50174,6 +50303,7 @@ export type Routes = {
|
|
|
50174
50303
|
}
|
|
50175
50304
|
}
|
|
50176
50305
|
}
|
|
50306
|
+
maxDuration: undefined
|
|
50177
50307
|
}
|
|
50178
50308
|
'/locks/simulate/manual_lock_via_keypad': {
|
|
50179
50309
|
route: '/locks/simulate/manual_lock_via_keypad'
|
|
@@ -51633,6 +51763,7 @@ export type Routes = {
|
|
|
51633
51763
|
}
|
|
51634
51764
|
}
|
|
51635
51765
|
}
|
|
51766
|
+
maxDuration: undefined
|
|
51636
51767
|
}
|
|
51637
51768
|
'/locks/unlock_door': {
|
|
51638
51769
|
route: '/locks/unlock_door'
|
|
@@ -53094,6 +53225,7 @@ export type Routes = {
|
|
|
53094
53225
|
}
|
|
53095
53226
|
}
|
|
53096
53227
|
}
|
|
53228
|
+
maxDuration: undefined
|
|
53097
53229
|
}
|
|
53098
53230
|
'/noise_sensors/list': {
|
|
53099
53231
|
route: '/noise_sensors/list'
|
|
@@ -56256,6 +56388,7 @@ export type Routes = {
|
|
|
56256
56388
|
can_simulate_paid_subscription?: boolean | undefined
|
|
56257
56389
|
}[]
|
|
56258
56390
|
}
|
|
56391
|
+
maxDuration: undefined
|
|
56259
56392
|
}
|
|
56260
56393
|
'/noise_sensors/noise_thresholds/create': {
|
|
56261
56394
|
route: '/noise_sensors/noise_thresholds/create'
|
|
@@ -57744,6 +57877,7 @@ export type Routes = {
|
|
|
57744
57877
|
noise_threshold_decibels: number
|
|
57745
57878
|
}
|
|
57746
57879
|
}
|
|
57880
|
+
maxDuration: undefined
|
|
57747
57881
|
}
|
|
57748
57882
|
'/noise_sensors/noise_thresholds/delete': {
|
|
57749
57883
|
route: '/noise_sensors/noise_thresholds/delete'
|
|
@@ -59207,6 +59341,7 @@ export type Routes = {
|
|
|
59207
59341
|
}
|
|
59208
59342
|
}
|
|
59209
59343
|
}
|
|
59344
|
+
maxDuration: undefined
|
|
59210
59345
|
}
|
|
59211
59346
|
'/noise_sensors/noise_thresholds/get': {
|
|
59212
59347
|
route: '/noise_sensors/noise_thresholds/get'
|
|
@@ -59237,6 +59372,7 @@ export type Routes = {
|
|
|
59237
59372
|
noise_threshold_decibels: number
|
|
59238
59373
|
}
|
|
59239
59374
|
}
|
|
59375
|
+
maxDuration: undefined
|
|
59240
59376
|
}
|
|
59241
59377
|
'/noise_sensors/noise_thresholds/list': {
|
|
59242
59378
|
route: '/noise_sensors/noise_thresholds/list'
|
|
@@ -59268,6 +59404,7 @@ export type Routes = {
|
|
|
59268
59404
|
noise_threshold_decibels: number
|
|
59269
59405
|
}[]
|
|
59270
59406
|
}
|
|
59407
|
+
maxDuration: undefined
|
|
59271
59408
|
}
|
|
59272
59409
|
'/noise_sensors/noise_thresholds/update': {
|
|
59273
59410
|
route: '/noise_sensors/noise_thresholds/update'
|
|
@@ -60741,6 +60878,7 @@ export type Routes = {
|
|
|
60741
60878
|
}
|
|
60742
60879
|
}
|
|
60743
60880
|
}
|
|
60881
|
+
maxDuration: undefined
|
|
60744
60882
|
}
|
|
60745
60883
|
'/noise_sensors/simulate/trigger_noise_threshold': {
|
|
60746
60884
|
route: '/noise_sensors/simulate/trigger_noise_threshold'
|
|
@@ -60753,6 +60891,7 @@ export type Routes = {
|
|
|
60753
60891
|
commonParams: {}
|
|
60754
60892
|
formData: {}
|
|
60755
60893
|
jsonResponse: {}
|
|
60894
|
+
maxDuration: undefined
|
|
60756
60895
|
}
|
|
60757
60896
|
'/phones/deactivate': {
|
|
60758
60897
|
route: '/phones/deactivate'
|
|
@@ -60765,6 +60904,7 @@ export type Routes = {
|
|
|
60765
60904
|
commonParams: {}
|
|
60766
60905
|
formData: {}
|
|
60767
60906
|
jsonResponse: {}
|
|
60907
|
+
maxDuration: undefined
|
|
60768
60908
|
}
|
|
60769
60909
|
'/phones/get': {
|
|
60770
60910
|
route: '/phones/get'
|
|
@@ -60840,6 +60980,7 @@ export type Routes = {
|
|
|
60840
60980
|
}
|
|
60841
60981
|
}
|
|
60842
60982
|
}
|
|
60983
|
+
maxDuration: undefined
|
|
60843
60984
|
}
|
|
60844
60985
|
'/phones/list': {
|
|
60845
60986
|
route: '/phones/list'
|
|
@@ -60916,6 +61057,7 @@ export type Routes = {
|
|
|
60916
61057
|
}
|
|
60917
61058
|
}[]
|
|
60918
61059
|
}
|
|
61060
|
+
maxDuration: undefined
|
|
60919
61061
|
}
|
|
60920
61062
|
'/phones/simulate/create_sandbox_phone': {
|
|
60921
61063
|
route: '/phones/simulate/create_sandbox_phone'
|
|
@@ -61019,6 +61161,7 @@ export type Routes = {
|
|
|
61019
61161
|
}
|
|
61020
61162
|
}
|
|
61021
61163
|
}
|
|
61164
|
+
maxDuration: undefined
|
|
61022
61165
|
}
|
|
61023
61166
|
'/seam/bridge/v1/bridge_client_sessions/create': {
|
|
61024
61167
|
route: '/seam/bridge/v1/bridge_client_sessions/create'
|
|
@@ -61094,6 +61237,7 @@ export type Routes = {
|
|
|
61094
61237
|
telemetry_url: string | null
|
|
61095
61238
|
}
|
|
61096
61239
|
}
|
|
61240
|
+
maxDuration: undefined
|
|
61097
61241
|
}
|
|
61098
61242
|
'/seam/bridge/v1/bridge_client_sessions/get': {
|
|
61099
61243
|
route: '/seam/bridge/v1/bridge_client_sessions/get'
|
|
@@ -61162,6 +61306,7 @@ export type Routes = {
|
|
|
61162
61306
|
telemetry_url: string | null
|
|
61163
61307
|
}
|
|
61164
61308
|
}
|
|
61309
|
+
maxDuration: undefined
|
|
61165
61310
|
}
|
|
61166
61311
|
'/seam/bridge/v1/bridge_client_sessions/refresh_telemetry_token': {
|
|
61167
61312
|
route: '/seam/bridge/v1/bridge_client_sessions/refresh_telemetry_token'
|
|
@@ -61230,6 +61375,7 @@ export type Routes = {
|
|
|
61230
61375
|
telemetry_url: string | null
|
|
61231
61376
|
}
|
|
61232
61377
|
}
|
|
61378
|
+
maxDuration: undefined
|
|
61233
61379
|
}
|
|
61234
61380
|
'/seam/bridge/v1/bridge_client_sessions/regenerate_pairing_code': {
|
|
61235
61381
|
route: '/seam/bridge/v1/bridge_client_sessions/regenerate_pairing_code'
|
|
@@ -61298,6 +61444,7 @@ export type Routes = {
|
|
|
61298
61444
|
telemetry_url: string | null
|
|
61299
61445
|
}
|
|
61300
61446
|
}
|
|
61447
|
+
maxDuration: undefined
|
|
61301
61448
|
}
|
|
61302
61449
|
'/seam/bridge/v1/bridge_client_sessions/report_status': {
|
|
61303
61450
|
route: '/seam/bridge/v1/bridge_client_sessions/report_status'
|
|
@@ -61312,6 +61459,7 @@ export type Routes = {
|
|
|
61312
61459
|
commonParams: {}
|
|
61313
61460
|
formData: {}
|
|
61314
61461
|
jsonResponse: {}
|
|
61462
|
+
maxDuration: undefined
|
|
61315
61463
|
}
|
|
61316
61464
|
'/seam/bridge/v1/bridge_connected_systems/list': {
|
|
61317
61465
|
route: '/seam/bridge/v1/bridge_connected_systems/list'
|
|
@@ -61340,6 +61488,7 @@ export type Routes = {
|
|
|
61340
61488
|
workspace_display_name: string
|
|
61341
61489
|
}[]
|
|
61342
61490
|
}
|
|
61491
|
+
maxDuration: undefined
|
|
61343
61492
|
}
|
|
61344
61493
|
'/seam/console/v1/get_resource_locator': {
|
|
61345
61494
|
route: '/seam/console/v1/get_resource_locator'
|
|
@@ -61357,6 +61506,7 @@ export type Routes = {
|
|
|
61357
61506
|
device_id?: string | undefined
|
|
61358
61507
|
}
|
|
61359
61508
|
}
|
|
61509
|
+
maxDuration: undefined
|
|
61360
61510
|
}
|
|
61361
61511
|
'/seam/console/v1/timelines/get': {
|
|
61362
61512
|
route: '/seam/console/v1/timelines/get'
|
|
@@ -61448,6 +61598,7 @@ export type Routes = {
|
|
|
61448
61598
|
next_page_url: string | null
|
|
61449
61599
|
}
|
|
61450
61600
|
}
|
|
61601
|
+
maxDuration: undefined
|
|
61451
61602
|
}
|
|
61452
61603
|
'/seam/customer/v1/access_grants/list': {
|
|
61453
61604
|
route: '/seam/customer/v1/access_grants/list'
|
|
@@ -61515,6 +61666,7 @@ export type Routes = {
|
|
|
61515
61666
|
customization_profile_id?: string | undefined
|
|
61516
61667
|
}[]
|
|
61517
61668
|
}
|
|
61669
|
+
maxDuration: undefined
|
|
61518
61670
|
}
|
|
61519
61671
|
'/seam/customer/v1/automation_runs/list': {
|
|
61520
61672
|
route: '/seam/customer/v1/automation_runs/list'
|
|
@@ -61581,6 +61733,7 @@ export type Routes = {
|
|
|
61581
61733
|
next_page_url: string | null
|
|
61582
61734
|
}
|
|
61583
61735
|
}
|
|
61736
|
+
maxDuration: undefined
|
|
61584
61737
|
}
|
|
61585
61738
|
'/seam/customer/v1/automations/delete': {
|
|
61586
61739
|
route: '/seam/customer/v1/automations/delete'
|
|
@@ -61590,6 +61743,7 @@ export type Routes = {
|
|
|
61590
61743
|
commonParams: {}
|
|
61591
61744
|
formData: {}
|
|
61592
61745
|
jsonResponse: {}
|
|
61746
|
+
maxDuration: undefined
|
|
61593
61747
|
}
|
|
61594
61748
|
'/seam/customer/v1/automations/get': {
|
|
61595
61749
|
route: '/seam/customer/v1/automations/get'
|
|
@@ -61690,6 +61844,7 @@ export type Routes = {
|
|
|
61690
61844
|
}
|
|
61691
61845
|
| undefined
|
|
61692
61846
|
}
|
|
61847
|
+
maxDuration: undefined
|
|
61693
61848
|
}
|
|
61694
61849
|
'/seam/customer/v1/automations/update': {
|
|
61695
61850
|
route: '/seam/customer/v1/automations/update'
|
|
@@ -61794,6 +61949,7 @@ export type Routes = {
|
|
|
61794
61949
|
commonParams: {}
|
|
61795
61950
|
formData: {}
|
|
61796
61951
|
jsonResponse: {}
|
|
61952
|
+
maxDuration: undefined
|
|
61797
61953
|
}
|
|
61798
61954
|
'/seam/customer/v1/connectors/connector_types': {
|
|
61799
61955
|
route: '/seam/customer/v1/connectors/connector_types'
|
|
@@ -61816,6 +61972,7 @@ export type Routes = {
|
|
|
61816
61972
|
}[]
|
|
61817
61973
|
}[]
|
|
61818
61974
|
}
|
|
61975
|
+
maxDuration: undefined
|
|
61819
61976
|
}
|
|
61820
61977
|
'/seam/customer/v1/connectors/create': {
|
|
61821
61978
|
route: '/seam/customer/v1/connectors/create'
|
|
@@ -61849,6 +62006,7 @@ export type Routes = {
|
|
|
61849
62006
|
error?: string | undefined
|
|
61850
62007
|
}
|
|
61851
62008
|
}
|
|
62009
|
+
maxDuration: undefined
|
|
61852
62010
|
}
|
|
61853
62011
|
'/seam/customer/v1/connectors/delete': {
|
|
61854
62012
|
route: '/seam/customer/v1/connectors/delete'
|
|
@@ -61867,6 +62025,7 @@ export type Routes = {
|
|
|
61867
62025
|
status: 'deleted'
|
|
61868
62026
|
}
|
|
61869
62027
|
}
|
|
62028
|
+
maxDuration: undefined
|
|
61870
62029
|
}
|
|
61871
62030
|
'/seam/customer/v1/connectors/list': {
|
|
61872
62031
|
route: '/seam/customer/v1/connectors/list'
|
|
@@ -61887,6 +62046,7 @@ export type Routes = {
|
|
|
61887
62046
|
updated_at: string
|
|
61888
62047
|
}[]
|
|
61889
62048
|
}
|
|
62049
|
+
maxDuration: undefined
|
|
61890
62050
|
}
|
|
61891
62051
|
'/seam/customer/v1/connectors/sync': {
|
|
61892
62052
|
route: '/seam/customer/v1/connectors/sync'
|
|
@@ -61905,6 +62065,7 @@ export type Routes = {
|
|
|
61905
62065
|
message: string
|
|
61906
62066
|
}
|
|
61907
62067
|
}
|
|
62068
|
+
maxDuration: undefined
|
|
61908
62069
|
}
|
|
61909
62070
|
'/seam/customer/v1/connectors/update': {
|
|
61910
62071
|
route: '/seam/customer/v1/connectors/update'
|
|
@@ -61953,6 +62114,7 @@ export type Routes = {
|
|
|
61953
62114
|
error?: string | undefined
|
|
61954
62115
|
}
|
|
61955
62116
|
}
|
|
62117
|
+
maxDuration: undefined
|
|
61956
62118
|
}
|
|
61957
62119
|
'/seam/customer/v1/events/list': {
|
|
61958
62120
|
route: '/seam/customer/v1/events/list'
|
|
@@ -64411,6 +64573,7 @@ export type Routes = {
|
|
|
64411
64573
|
}
|
|
64412
64574
|
)[]
|
|
64413
64575
|
}
|
|
64576
|
+
maxDuration: undefined
|
|
64414
64577
|
}
|
|
64415
64578
|
'/seam/customer/v1/portals/get': {
|
|
64416
64579
|
route: '/seam/customer/v1/portals/get'
|
|
@@ -64536,6 +64699,7 @@ export type Routes = {
|
|
|
64536
64699
|
| undefined
|
|
64537
64700
|
}
|
|
64538
64701
|
}
|
|
64702
|
+
maxDuration: undefined
|
|
64539
64703
|
}
|
|
64540
64704
|
'/seam/customer/v1/reservations/get': {
|
|
64541
64705
|
route: '/seam/customer/v1/reservations/get'
|
|
@@ -64572,6 +64736,7 @@ export type Routes = {
|
|
|
64572
64736
|
}[]
|
|
64573
64737
|
}
|
|
64574
64738
|
}
|
|
64739
|
+
maxDuration: undefined
|
|
64575
64740
|
}
|
|
64576
64741
|
'/seam/customer/v1/reservations/list': {
|
|
64577
64742
|
route: '/seam/customer/v1/reservations/list'
|
|
@@ -64623,6 +64788,7 @@ export type Routes = {
|
|
|
64623
64788
|
next_page_url: string | null
|
|
64624
64789
|
}
|
|
64625
64790
|
}
|
|
64791
|
+
maxDuration: undefined
|
|
64626
64792
|
}
|
|
64627
64793
|
'/seam/customer/v1/settings/get': {
|
|
64628
64794
|
route: '/seam/customer/v1/settings/get'
|
|
@@ -64643,6 +64809,7 @@ export type Routes = {
|
|
|
64643
64809
|
)
|
|
64644
64810
|
| undefined
|
|
64645
64811
|
}
|
|
64812
|
+
maxDuration: undefined
|
|
64646
64813
|
}
|
|
64647
64814
|
'/seam/customer/v1/settings/update': {
|
|
64648
64815
|
route: '/seam/customer/v1/settings/update'
|
|
@@ -64663,6 +64830,7 @@ export type Routes = {
|
|
|
64663
64830
|
commonParams: {}
|
|
64664
64831
|
formData: {}
|
|
64665
64832
|
jsonResponse: {}
|
|
64833
|
+
maxDuration: undefined
|
|
64666
64834
|
}
|
|
64667
64835
|
'/seam/customer/v1/spaces/create': {
|
|
64668
64836
|
route: '/seam/customer/v1/spaces/create'
|
|
@@ -64709,6 +64877,7 @@ export type Routes = {
|
|
|
64709
64877
|
parent_space_key?: string | undefined
|
|
64710
64878
|
}
|
|
64711
64879
|
}
|
|
64880
|
+
maxDuration: undefined
|
|
64712
64881
|
}
|
|
64713
64882
|
'/seam/customer/v1/spaces/list': {
|
|
64714
64883
|
route: '/seam/customer/v1/spaces/list'
|
|
@@ -64748,6 +64917,7 @@ export type Routes = {
|
|
|
64748
64917
|
parent_space_key?: string | undefined
|
|
64749
64918
|
}[]
|
|
64750
64919
|
}
|
|
64920
|
+
maxDuration: undefined
|
|
64751
64921
|
}
|
|
64752
64922
|
'/seam/customer/v1/staff_members/get': {
|
|
64753
64923
|
route: '/seam/customer/v1/staff_members/get'
|
|
@@ -64837,6 +65007,7 @@ export type Routes = {
|
|
|
64837
65007
|
user_identity_id?: string | undefined
|
|
64838
65008
|
}
|
|
64839
65009
|
}
|
|
65010
|
+
maxDuration: undefined
|
|
64840
65011
|
}
|
|
64841
65012
|
'/seam/customer/v1/staff_members/list': {
|
|
64842
65013
|
route: '/seam/customer/v1/staff_members/list'
|
|
@@ -64880,6 +65051,7 @@ export type Routes = {
|
|
|
64880
65051
|
next_page_url: string | null
|
|
64881
65052
|
}
|
|
64882
65053
|
}
|
|
65054
|
+
maxDuration: undefined
|
|
64883
65055
|
}
|
|
64884
65056
|
'/seam/instant_key/v1/client_sessions/exchange_short_code': {
|
|
64885
65057
|
route: '/seam/instant_key/v1/client_sessions/exchange_short_code'
|
|
@@ -64929,6 +65101,7 @@ export type Routes = {
|
|
|
64929
65101
|
user_identity_id?: string | undefined
|
|
64930
65102
|
}
|
|
64931
65103
|
}
|
|
65104
|
+
maxDuration: undefined
|
|
64932
65105
|
}
|
|
64933
65106
|
'/seam/instant_key/v1/preview/get': {
|
|
64934
65107
|
route: '/seam/instant_key/v1/preview/get'
|
|
@@ -64980,6 +65153,7 @@ export type Routes = {
|
|
|
64980
65153
|
expires_at: string
|
|
64981
65154
|
}
|
|
64982
65155
|
}
|
|
65156
|
+
maxDuration: undefined
|
|
64983
65157
|
}
|
|
64984
65158
|
'/seam/mobile_sdk/v1/acs/credentials/list': {
|
|
64985
65159
|
route: '/seam/mobile_sdk/v1/acs/credentials/list'
|
|
@@ -65149,6 +65323,7 @@ export type Routes = {
|
|
|
65149
65323
|
is_managed: true
|
|
65150
65324
|
}[]
|
|
65151
65325
|
}
|
|
65326
|
+
maxDuration: undefined
|
|
65152
65327
|
}
|
|
65153
65328
|
'/seam/mobile_sdk/v1/phone_sessions/get_or_create': {
|
|
65154
65329
|
route: '/seam/mobile_sdk/v1/phone_sessions/get_or_create'
|
|
@@ -65552,6 +65727,7 @@ export type Routes = {
|
|
|
65552
65727
|
workspace_id: string
|
|
65553
65728
|
}
|
|
65554
65729
|
}
|
|
65730
|
+
maxDuration: undefined
|
|
65555
65731
|
}
|
|
65556
65732
|
'/seam/mobile_sdk/v1/report_salto_space_audit_trail': {
|
|
65557
65733
|
route: '/seam/mobile_sdk/v1/report_salto_space_audit_trail'
|
|
@@ -65566,6 +65742,7 @@ export type Routes = {
|
|
|
65566
65742
|
commonParams: {}
|
|
65567
65743
|
formData: {}
|
|
65568
65744
|
jsonResponse: {}
|
|
65745
|
+
maxDuration: undefined
|
|
65569
65746
|
}
|
|
65570
65747
|
'/seam/partner/v1/building_blocks/spaces/auto_map': {
|
|
65571
65748
|
route: '/seam/partner/v1/building_blocks/spaces/auto_map'
|
|
@@ -65595,6 +65772,7 @@ export type Routes = {
|
|
|
65595
65772
|
is_draft?: boolean | undefined
|
|
65596
65773
|
}[]
|
|
65597
65774
|
}
|
|
65775
|
+
maxDuration: undefined
|
|
65598
65776
|
}
|
|
65599
65777
|
'/spaces/add_acs_entrances': {
|
|
65600
65778
|
route: '/spaces/add_acs_entrances'
|
|
@@ -65609,6 +65787,7 @@ export type Routes = {
|
|
|
65609
65787
|
commonParams: {}
|
|
65610
65788
|
formData: {}
|
|
65611
65789
|
jsonResponse: {}
|
|
65790
|
+
maxDuration: undefined
|
|
65612
65791
|
}
|
|
65613
65792
|
'/spaces/add_devices': {
|
|
65614
65793
|
route: '/spaces/add_devices'
|
|
@@ -65623,6 +65802,7 @@ export type Routes = {
|
|
|
65623
65802
|
commonParams: {}
|
|
65624
65803
|
formData: {}
|
|
65625
65804
|
jsonResponse: {}
|
|
65805
|
+
maxDuration: undefined
|
|
65626
65806
|
}
|
|
65627
65807
|
'/spaces/create': {
|
|
65628
65808
|
route: '/spaces/create'
|
|
@@ -65667,6 +65847,7 @@ export type Routes = {
|
|
|
65667
65847
|
parent_space_key?: string | undefined
|
|
65668
65848
|
}
|
|
65669
65849
|
}
|
|
65850
|
+
maxDuration: undefined
|
|
65670
65851
|
}
|
|
65671
65852
|
'/spaces/delete': {
|
|
65672
65853
|
route: '/spaces/delete'
|
|
@@ -65679,6 +65860,7 @@ export type Routes = {
|
|
|
65679
65860
|
commonParams: {}
|
|
65680
65861
|
formData: {}
|
|
65681
65862
|
jsonResponse: {}
|
|
65863
|
+
maxDuration: undefined
|
|
65682
65864
|
}
|
|
65683
65865
|
'/spaces/get': {
|
|
65684
65866
|
route: '/spaces/get'
|
|
@@ -65720,6 +65902,7 @@ export type Routes = {
|
|
|
65720
65902
|
parent_space_key?: string | undefined
|
|
65721
65903
|
}
|
|
65722
65904
|
}
|
|
65905
|
+
maxDuration: undefined
|
|
65723
65906
|
}
|
|
65724
65907
|
'/spaces/get_related': {
|
|
65725
65908
|
route: '/spaces/get_related'
|
|
@@ -67807,6 +67990,7 @@ export type Routes = {
|
|
|
67807
67990
|
| undefined
|
|
67808
67991
|
}
|
|
67809
67992
|
}
|
|
67993
|
+
maxDuration: undefined
|
|
67810
67994
|
}
|
|
67811
67995
|
'/spaces/list': {
|
|
67812
67996
|
route: '/spaces/list'
|
|
@@ -67848,6 +68032,7 @@ export type Routes = {
|
|
|
67848
68032
|
parent_space_key?: string | undefined
|
|
67849
68033
|
}[]
|
|
67850
68034
|
}
|
|
68035
|
+
maxDuration: undefined
|
|
67851
68036
|
}
|
|
67852
68037
|
'/spaces/remove_acs_entrances': {
|
|
67853
68038
|
route: '/spaces/remove_acs_entrances'
|
|
@@ -67862,6 +68047,7 @@ export type Routes = {
|
|
|
67862
68047
|
}
|
|
67863
68048
|
formData: {}
|
|
67864
68049
|
jsonResponse: {}
|
|
68050
|
+
maxDuration: undefined
|
|
67865
68051
|
}
|
|
67866
68052
|
'/spaces/remove_devices': {
|
|
67867
68053
|
route: '/spaces/remove_devices'
|
|
@@ -67876,6 +68062,7 @@ export type Routes = {
|
|
|
67876
68062
|
}
|
|
67877
68063
|
formData: {}
|
|
67878
68064
|
jsonResponse: {}
|
|
68065
|
+
maxDuration: undefined
|
|
67879
68066
|
}
|
|
67880
68067
|
'/spaces/update': {
|
|
67881
68068
|
route: '/spaces/update'
|
|
@@ -67922,6 +68109,7 @@ export type Routes = {
|
|
|
67922
68109
|
parent_space_key?: string | undefined
|
|
67923
68110
|
}
|
|
67924
68111
|
}
|
|
68112
|
+
maxDuration: undefined
|
|
67925
68113
|
}
|
|
67926
68114
|
'/thermostats/activate_climate_preset': {
|
|
67927
68115
|
route: '/thermostats/activate_climate_preset'
|
|
@@ -69383,6 +69571,7 @@ export type Routes = {
|
|
|
69383
69571
|
}
|
|
69384
69572
|
}
|
|
69385
69573
|
}
|
|
69574
|
+
maxDuration: undefined
|
|
69386
69575
|
}
|
|
69387
69576
|
'/thermostats/cool': {
|
|
69388
69577
|
route: '/thermostats/cool'
|
|
@@ -70848,6 +71037,7 @@ export type Routes = {
|
|
|
70848
71037
|
}
|
|
70849
71038
|
}
|
|
70850
71039
|
}
|
|
71040
|
+
maxDuration: undefined
|
|
70851
71041
|
}
|
|
70852
71042
|
'/thermostats/create_climate_preset': {
|
|
70853
71043
|
route: '/thermostats/create_climate_preset'
|
|
@@ -70900,6 +71090,7 @@ export type Routes = {
|
|
|
70900
71090
|
commonParams: {}
|
|
70901
71091
|
formData: {}
|
|
70902
71092
|
jsonResponse: {}
|
|
71093
|
+
maxDuration: undefined
|
|
70903
71094
|
}
|
|
70904
71095
|
'/thermostats/daily_programs/create': {
|
|
70905
71096
|
route: '/thermostats/daily_programs/create'
|
|
@@ -70942,6 +71133,7 @@ export type Routes = {
|
|
|
70942
71133
|
created_at: string
|
|
70943
71134
|
}
|
|
70944
71135
|
}
|
|
71136
|
+
maxDuration: undefined
|
|
70945
71137
|
}
|
|
70946
71138
|
'/thermostats/daily_programs/delete': {
|
|
70947
71139
|
route: '/thermostats/daily_programs/delete'
|
|
@@ -70954,6 +71146,7 @@ export type Routes = {
|
|
|
70954
71146
|
}
|
|
70955
71147
|
formData: {}
|
|
70956
71148
|
jsonResponse: {}
|
|
71149
|
+
maxDuration: undefined
|
|
70957
71150
|
}
|
|
70958
71151
|
'/thermostats/daily_programs/update': {
|
|
70959
71152
|
route: '/thermostats/daily_programs/update'
|
|
@@ -72422,6 +72615,7 @@ export type Routes = {
|
|
|
72422
72615
|
}
|
|
72423
72616
|
}
|
|
72424
72617
|
}
|
|
72618
|
+
maxDuration: undefined
|
|
72425
72619
|
}
|
|
72426
72620
|
'/thermostats/delete_climate_preset': {
|
|
72427
72621
|
route: '/thermostats/delete_climate_preset'
|
|
@@ -72436,6 +72630,7 @@ export type Routes = {
|
|
|
72436
72630
|
commonParams: {}
|
|
72437
72631
|
formData: {}
|
|
72438
72632
|
jsonResponse: {}
|
|
72633
|
+
maxDuration: undefined
|
|
72439
72634
|
}
|
|
72440
72635
|
'/thermostats/get': {
|
|
72441
72636
|
route: '/thermostats/get'
|
|
@@ -73985,6 +74180,7 @@ export type Routes = {
|
|
|
73985
74180
|
can_simulate_paid_subscription?: boolean | undefined
|
|
73986
74181
|
}
|
|
73987
74182
|
}
|
|
74183
|
+
maxDuration: undefined
|
|
73988
74184
|
}
|
|
73989
74185
|
'/thermostats/heat': {
|
|
73990
74186
|
route: '/thermostats/heat'
|
|
@@ -75450,6 +75646,7 @@ export type Routes = {
|
|
|
75450
75646
|
}
|
|
75451
75647
|
}
|
|
75452
75648
|
}
|
|
75649
|
+
maxDuration: undefined
|
|
75453
75650
|
}
|
|
75454
75651
|
'/thermostats/heat_cool': {
|
|
75455
75652
|
route: '/thermostats/heat_cool'
|
|
@@ -76919,6 +77116,7 @@ export type Routes = {
|
|
|
76919
77116
|
}
|
|
76920
77117
|
}
|
|
76921
77118
|
}
|
|
77119
|
+
maxDuration: undefined
|
|
76922
77120
|
}
|
|
76923
77121
|
'/thermostats/list': {
|
|
76924
77122
|
route: '/thermostats/list'
|
|
@@ -80108,6 +80306,7 @@ export type Routes = {
|
|
|
80108
80306
|
can_simulate_paid_subscription?: boolean | undefined
|
|
80109
80307
|
}[]
|
|
80110
80308
|
}
|
|
80309
|
+
maxDuration: undefined
|
|
80111
80310
|
}
|
|
80112
80311
|
'/thermostats/off': {
|
|
80113
80312
|
route: '/thermostats/off'
|
|
@@ -81569,6 +81768,7 @@ export type Routes = {
|
|
|
81569
81768
|
}
|
|
81570
81769
|
}
|
|
81571
81770
|
}
|
|
81771
|
+
maxDuration: undefined
|
|
81572
81772
|
}
|
|
81573
81773
|
'/thermostats/schedules/create': {
|
|
81574
81774
|
route: '/thermostats/schedules/create'
|
|
@@ -81624,6 +81824,7 @@ export type Routes = {
|
|
|
81624
81824
|
}[]
|
|
81625
81825
|
}
|
|
81626
81826
|
}
|
|
81827
|
+
maxDuration: undefined
|
|
81627
81828
|
}
|
|
81628
81829
|
'/thermostats/schedules/delete': {
|
|
81629
81830
|
route: '/thermostats/schedules/delete'
|
|
@@ -81636,6 +81837,7 @@ export type Routes = {
|
|
|
81636
81837
|
}
|
|
81637
81838
|
formData: {}
|
|
81638
81839
|
jsonResponse: {}
|
|
81840
|
+
maxDuration: undefined
|
|
81639
81841
|
}
|
|
81640
81842
|
'/thermostats/schedules/get': {
|
|
81641
81843
|
route: '/thermostats/schedules/get'
|
|
@@ -81679,6 +81881,7 @@ export type Routes = {
|
|
|
81679
81881
|
}[]
|
|
81680
81882
|
}
|
|
81681
81883
|
}
|
|
81884
|
+
maxDuration: undefined
|
|
81682
81885
|
}
|
|
81683
81886
|
'/thermostats/schedules/list': {
|
|
81684
81887
|
route: '/thermostats/schedules/list'
|
|
@@ -81723,6 +81926,7 @@ export type Routes = {
|
|
|
81723
81926
|
}[]
|
|
81724
81927
|
}[]
|
|
81725
81928
|
}
|
|
81929
|
+
maxDuration: undefined
|
|
81726
81930
|
}
|
|
81727
81931
|
'/thermostats/schedules/update': {
|
|
81728
81932
|
route: '/thermostats/schedules/update'
|
|
@@ -81747,6 +81951,7 @@ export type Routes = {
|
|
|
81747
81951
|
commonParams: {}
|
|
81748
81952
|
formData: {}
|
|
81749
81953
|
jsonResponse: {}
|
|
81954
|
+
maxDuration: undefined
|
|
81750
81955
|
}
|
|
81751
81956
|
'/thermostats/set_fallback_climate_preset': {
|
|
81752
81957
|
route: '/thermostats/set_fallback_climate_preset'
|
|
@@ -81761,6 +81966,7 @@ export type Routes = {
|
|
|
81761
81966
|
commonParams: {}
|
|
81762
81967
|
formData: {}
|
|
81763
81968
|
jsonResponse: {}
|
|
81969
|
+
maxDuration: undefined
|
|
81764
81970
|
}
|
|
81765
81971
|
'/thermostats/set_fan_mode': {
|
|
81766
81972
|
route: '/thermostats/set_fan_mode'
|
|
@@ -83227,6 +83433,7 @@ export type Routes = {
|
|
|
83227
83433
|
}
|
|
83228
83434
|
}
|
|
83229
83435
|
}
|
|
83436
|
+
maxDuration: undefined
|
|
83230
83437
|
}
|
|
83231
83438
|
'/thermostats/set_hvac_mode': {
|
|
83232
83439
|
route: '/thermostats/set_hvac_mode'
|
|
@@ -84724,6 +84931,7 @@ export type Routes = {
|
|
|
84724
84931
|
}
|
|
84725
84932
|
}
|
|
84726
84933
|
}
|
|
84934
|
+
maxDuration: undefined
|
|
84727
84935
|
}
|
|
84728
84936
|
'/thermostats/set_temperature_threshold': {
|
|
84729
84937
|
route: '/thermostats/set_temperature_threshold'
|
|
@@ -84744,6 +84952,7 @@ export type Routes = {
|
|
|
84744
84952
|
commonParams: {}
|
|
84745
84953
|
formData: {}
|
|
84746
84954
|
jsonResponse: {}
|
|
84955
|
+
maxDuration: undefined
|
|
84747
84956
|
}
|
|
84748
84957
|
'/thermostats/simulate/hvac_mode_adjusted': {
|
|
84749
84958
|
route: '/thermostats/simulate/hvac_mode_adjusted'
|
|
@@ -84793,6 +85002,7 @@ export type Routes = {
|
|
|
84793
85002
|
commonParams: {}
|
|
84794
85003
|
formData: {}
|
|
84795
85004
|
jsonResponse: {}
|
|
85005
|
+
maxDuration: undefined
|
|
84796
85006
|
}
|
|
84797
85007
|
'/thermostats/simulate/temperature_reached': {
|
|
84798
85008
|
route: '/thermostats/simulate/temperature_reached'
|
|
@@ -84809,6 +85019,7 @@ export type Routes = {
|
|
|
84809
85019
|
commonParams: {}
|
|
84810
85020
|
formData: {}
|
|
84811
85021
|
jsonResponse: {}
|
|
85022
|
+
maxDuration: undefined
|
|
84812
85023
|
}
|
|
84813
85024
|
'/thermostats/update_climate_preset': {
|
|
84814
85025
|
route: '/thermostats/update_climate_preset'
|
|
@@ -84861,6 +85072,7 @@ export type Routes = {
|
|
|
84861
85072
|
commonParams: {}
|
|
84862
85073
|
formData: {}
|
|
84863
85074
|
jsonResponse: {}
|
|
85075
|
+
maxDuration: undefined
|
|
84864
85076
|
}
|
|
84865
85077
|
'/thermostats/update_weekly_program': {
|
|
84866
85078
|
route: '/thermostats/update_weekly_program'
|
|
@@ -86334,6 +86546,7 @@ export type Routes = {
|
|
|
86334
86546
|
}
|
|
86335
86547
|
}
|
|
86336
86548
|
}
|
|
86549
|
+
maxDuration: undefined
|
|
86337
86550
|
}
|
|
86338
86551
|
'/unstable_partner/building_blocks/connect_accounts': {
|
|
86339
86552
|
route: '/unstable_partner/building_blocks/connect_accounts'
|
|
@@ -86364,6 +86577,7 @@ export type Routes = {
|
|
|
86364
86577
|
created_at: string
|
|
86365
86578
|
}
|
|
86366
86579
|
}
|
|
86580
|
+
maxDuration: undefined
|
|
86367
86581
|
}
|
|
86368
86582
|
'/unstable_partner/building_blocks/generate_magic_link': {
|
|
86369
86583
|
route: '/unstable_partner/building_blocks/generate_magic_link'
|
|
@@ -86409,6 +86623,7 @@ export type Routes = {
|
|
|
86409
86623
|
created_at: string
|
|
86410
86624
|
}
|
|
86411
86625
|
}
|
|
86626
|
+
maxDuration: undefined
|
|
86412
86627
|
}
|
|
86413
86628
|
'/unstable_partner/building_blocks/manage_devices': {
|
|
86414
86629
|
route: '/unstable_partner/building_blocks/manage_devices'
|
|
@@ -86439,6 +86654,7 @@ export type Routes = {
|
|
|
86439
86654
|
created_at: string
|
|
86440
86655
|
}
|
|
86441
86656
|
}
|
|
86657
|
+
maxDuration: undefined
|
|
86442
86658
|
}
|
|
86443
86659
|
'/unstable_partner/building_blocks/organize_spaces': {
|
|
86444
86660
|
route: '/unstable_partner/building_blocks/organize_spaces'
|
|
@@ -86478,6 +86694,7 @@ export type Routes = {
|
|
|
86478
86694
|
created_at: string
|
|
86479
86695
|
}
|
|
86480
86696
|
}
|
|
86697
|
+
maxDuration: undefined
|
|
86481
86698
|
}
|
|
86482
86699
|
'/user_identities/add_acs_user': {
|
|
86483
86700
|
route: '/user_identities/add_acs_user'
|
|
@@ -86494,6 +86711,7 @@ export type Routes = {
|
|
|
86494
86711
|
}
|
|
86495
86712
|
formData: {}
|
|
86496
86713
|
jsonResponse: {}
|
|
86714
|
+
maxDuration: undefined
|
|
86497
86715
|
}
|
|
86498
86716
|
'/user_identities/create': {
|
|
86499
86717
|
route: '/user_identities/create'
|
|
@@ -86566,6 +86784,7 @@ export type Routes = {
|
|
|
86566
86784
|
acs_user_ids: string[]
|
|
86567
86785
|
}
|
|
86568
86786
|
}
|
|
86787
|
+
maxDuration: undefined
|
|
86569
86788
|
}
|
|
86570
86789
|
'/user_identities/delete': {
|
|
86571
86790
|
route: '/user_identities/delete'
|
|
@@ -86578,6 +86797,7 @@ export type Routes = {
|
|
|
86578
86797
|
}
|
|
86579
86798
|
formData: {}
|
|
86580
86799
|
jsonResponse: {}
|
|
86800
|
+
maxDuration: undefined
|
|
86581
86801
|
}
|
|
86582
86802
|
'/user_identities/enrollment_automations/delete': {
|
|
86583
86803
|
route: '/user_identities/enrollment_automations/delete'
|
|
@@ -86590,6 +86810,7 @@ export type Routes = {
|
|
|
86590
86810
|
}
|
|
86591
86811
|
formData: {}
|
|
86592
86812
|
jsonResponse: {}
|
|
86813
|
+
maxDuration: undefined
|
|
86593
86814
|
}
|
|
86594
86815
|
'/user_identities/enrollment_automations/get': {
|
|
86595
86816
|
route: '/user_identities/enrollment_automations/get'
|
|
@@ -86616,6 +86837,7 @@ export type Routes = {
|
|
|
86616
86837
|
workspace_id: string
|
|
86617
86838
|
}
|
|
86618
86839
|
}
|
|
86840
|
+
maxDuration: undefined
|
|
86619
86841
|
}
|
|
86620
86842
|
'/user_identities/enrollment_automations/launch': {
|
|
86621
86843
|
route: '/user_identities/enrollment_automations/launch'
|
|
@@ -86650,6 +86872,7 @@ export type Routes = {
|
|
|
86650
86872
|
workspace_id: string
|
|
86651
86873
|
}
|
|
86652
86874
|
}
|
|
86875
|
+
maxDuration: undefined
|
|
86653
86876
|
}
|
|
86654
86877
|
'/user_identities/enrollment_automations/list': {
|
|
86655
86878
|
route: '/user_identities/enrollment_automations/list'
|
|
@@ -86675,6 +86898,7 @@ export type Routes = {
|
|
|
86675
86898
|
workspace_id: string
|
|
86676
86899
|
}[]
|
|
86677
86900
|
}
|
|
86901
|
+
maxDuration: undefined
|
|
86678
86902
|
}
|
|
86679
86903
|
'/user_identities/generate_instant_key': {
|
|
86680
86904
|
route: '/user_identities/generate_instant_key'
|
|
@@ -86723,6 +86947,7 @@ export type Routes = {
|
|
|
86723
86947
|
| undefined
|
|
86724
86948
|
}
|
|
86725
86949
|
}
|
|
86950
|
+
maxDuration: undefined
|
|
86726
86951
|
}
|
|
86727
86952
|
'/user_identities/get': {
|
|
86728
86953
|
route: '/user_identities/get'
|
|
@@ -86791,6 +87016,7 @@ export type Routes = {
|
|
|
86791
87016
|
acs_user_ids: string[]
|
|
86792
87017
|
}
|
|
86793
87018
|
}
|
|
87019
|
+
maxDuration: undefined
|
|
86794
87020
|
}
|
|
86795
87021
|
'/user_identities/grant_access_to_device': {
|
|
86796
87022
|
route: '/user_identities/grant_access_to_device'
|
|
@@ -86805,6 +87031,7 @@ export type Routes = {
|
|
|
86805
87031
|
}
|
|
86806
87032
|
formData: {}
|
|
86807
87033
|
jsonResponse: {}
|
|
87034
|
+
maxDuration: undefined
|
|
86808
87035
|
}
|
|
86809
87036
|
'/user_identities/list': {
|
|
86810
87037
|
route: '/user_identities/list'
|
|
@@ -86885,6 +87112,7 @@ export type Routes = {
|
|
|
86885
87112
|
next_page_url: string | null
|
|
86886
87113
|
}
|
|
86887
87114
|
}
|
|
87115
|
+
maxDuration: undefined
|
|
86888
87116
|
}
|
|
86889
87117
|
'/user_identities/list_accessible_devices': {
|
|
86890
87118
|
route: '/user_identities/list_accessible_devices'
|
|
@@ -89966,6 +90194,7 @@ export type Routes = {
|
|
|
89966
90194
|
can_simulate_paid_subscription?: boolean | undefined
|
|
89967
90195
|
}[]
|
|
89968
90196
|
}
|
|
90197
|
+
maxDuration: undefined
|
|
89969
90198
|
}
|
|
89970
90199
|
'/user_identities/list_acs_systems': {
|
|
89971
90200
|
route: '/user_identities/list_acs_systems'
|
|
@@ -90146,6 +90375,7 @@ export type Routes = {
|
|
|
90146
90375
|
)[]
|
|
90147
90376
|
}[]
|
|
90148
90377
|
}
|
|
90378
|
+
maxDuration: undefined
|
|
90149
90379
|
}
|
|
90150
90380
|
'/user_identities/list_acs_users': {
|
|
90151
90381
|
route: '/user_identities/list_acs_users'
|
|
@@ -90410,6 +90640,7 @@ export type Routes = {
|
|
|
90410
90640
|
is_managed: true
|
|
90411
90641
|
}[]
|
|
90412
90642
|
}
|
|
90643
|
+
maxDuration: undefined
|
|
90413
90644
|
}
|
|
90414
90645
|
'/user_identities/remove_acs_user': {
|
|
90415
90646
|
route: '/user_identities/remove_acs_user'
|
|
@@ -90424,6 +90655,7 @@ export type Routes = {
|
|
|
90424
90655
|
}
|
|
90425
90656
|
formData: {}
|
|
90426
90657
|
jsonResponse: {}
|
|
90658
|
+
maxDuration: undefined
|
|
90427
90659
|
}
|
|
90428
90660
|
'/user_identities/revoke_access_to_device': {
|
|
90429
90661
|
route: '/user_identities/revoke_access_to_device'
|
|
@@ -90438,6 +90670,7 @@ export type Routes = {
|
|
|
90438
90670
|
}
|
|
90439
90671
|
formData: {}
|
|
90440
90672
|
jsonResponse: {}
|
|
90673
|
+
maxDuration: undefined
|
|
90441
90674
|
}
|
|
90442
90675
|
'/user_identities/unmanaged/get': {
|
|
90443
90676
|
route: '/user_identities/unmanaged/get'
|
|
@@ -90500,6 +90733,7 @@ export type Routes = {
|
|
|
90500
90733
|
acs_user_ids: string[]
|
|
90501
90734
|
}
|
|
90502
90735
|
}
|
|
90736
|
+
maxDuration: undefined
|
|
90503
90737
|
}
|
|
90504
90738
|
'/user_identities/unmanaged/list': {
|
|
90505
90739
|
route: '/user_identities/unmanaged/list'
|
|
@@ -90576,6 +90810,7 @@ export type Routes = {
|
|
|
90576
90810
|
next_page_url: string | null
|
|
90577
90811
|
}
|
|
90578
90812
|
}
|
|
90813
|
+
maxDuration: undefined
|
|
90579
90814
|
}
|
|
90580
90815
|
'/user_identities/unmanaged/update': {
|
|
90581
90816
|
route: '/user_identities/unmanaged/update'
|
|
@@ -90592,6 +90827,7 @@ export type Routes = {
|
|
|
90592
90827
|
commonParams: {}
|
|
90593
90828
|
formData: {}
|
|
90594
90829
|
jsonResponse: {}
|
|
90830
|
+
maxDuration: undefined
|
|
90595
90831
|
}
|
|
90596
90832
|
'/user_identities/update': {
|
|
90597
90833
|
route: '/user_identities/update'
|
|
@@ -90612,6 +90848,7 @@ export type Routes = {
|
|
|
90612
90848
|
commonParams: {}
|
|
90613
90849
|
formData: {}
|
|
90614
90850
|
jsonResponse: {}
|
|
90851
|
+
maxDuration: undefined
|
|
90615
90852
|
}
|
|
90616
90853
|
'/webhooks/create': {
|
|
90617
90854
|
route: '/webhooks/create'
|
|
@@ -90638,6 +90875,7 @@ export type Routes = {
|
|
|
90638
90875
|
secret?: string | undefined
|
|
90639
90876
|
}
|
|
90640
90877
|
}
|
|
90878
|
+
maxDuration: undefined
|
|
90641
90879
|
}
|
|
90642
90880
|
'/webhooks/delete': {
|
|
90643
90881
|
route: '/webhooks/delete'
|
|
@@ -90650,6 +90888,7 @@ export type Routes = {
|
|
|
90650
90888
|
}
|
|
90651
90889
|
formData: {}
|
|
90652
90890
|
jsonResponse: {}
|
|
90891
|
+
maxDuration: undefined
|
|
90653
90892
|
}
|
|
90654
90893
|
'/webhooks/get': {
|
|
90655
90894
|
route: '/webhooks/get'
|
|
@@ -90674,6 +90913,7 @@ export type Routes = {
|
|
|
90674
90913
|
secret?: string | undefined
|
|
90675
90914
|
}
|
|
90676
90915
|
}
|
|
90916
|
+
maxDuration: undefined
|
|
90677
90917
|
}
|
|
90678
90918
|
'/webhooks/list': {
|
|
90679
90919
|
route: '/webhooks/list'
|
|
@@ -90694,6 +90934,7 @@ export type Routes = {
|
|
|
90694
90934
|
secret?: string | undefined
|
|
90695
90935
|
}[]
|
|
90696
90936
|
}
|
|
90937
|
+
maxDuration: undefined
|
|
90697
90938
|
}
|
|
90698
90939
|
'/webhooks/update': {
|
|
90699
90940
|
route: '/webhooks/update'
|
|
@@ -90708,6 +90949,7 @@ export type Routes = {
|
|
|
90708
90949
|
commonParams: {}
|
|
90709
90950
|
formData: {}
|
|
90710
90951
|
jsonResponse: {}
|
|
90952
|
+
maxDuration: undefined
|
|
90711
90953
|
}
|
|
90712
90954
|
'/workspaces/create': {
|
|
90713
90955
|
route: '/workspaces/create'
|
|
@@ -90784,6 +91026,7 @@ export type Routes = {
|
|
|
90784
91026
|
is_publishable_key_auth_enabled: boolean
|
|
90785
91027
|
}
|
|
90786
91028
|
}
|
|
91029
|
+
maxDuration: undefined
|
|
90787
91030
|
}
|
|
90788
91031
|
'/workspaces/customization_profiles/create': {
|
|
90789
91032
|
route: '/workspaces/customization_profiles/create'
|
|
@@ -90824,6 +91067,7 @@ export type Routes = {
|
|
|
90824
91067
|
| undefined
|
|
90825
91068
|
}
|
|
90826
91069
|
}
|
|
91070
|
+
maxDuration: undefined
|
|
90827
91071
|
}
|
|
90828
91072
|
'/workspaces/customization_profiles/get': {
|
|
90829
91073
|
route: '/workspaces/customization_profiles/get'
|
|
@@ -90854,6 +91098,7 @@ export type Routes = {
|
|
|
90854
91098
|
| undefined
|
|
90855
91099
|
}
|
|
90856
91100
|
}
|
|
91101
|
+
maxDuration: undefined
|
|
90857
91102
|
}
|
|
90858
91103
|
'/workspaces/customization_profiles/list': {
|
|
90859
91104
|
route: '/workspaces/customization_profiles/list'
|
|
@@ -90884,6 +91129,7 @@ export type Routes = {
|
|
|
90884
91129
|
| undefined
|
|
90885
91130
|
}[]
|
|
90886
91131
|
}
|
|
91132
|
+
maxDuration: undefined
|
|
90887
91133
|
}
|
|
90888
91134
|
'/workspaces/customization_profiles/update': {
|
|
90889
91135
|
route: '/workspaces/customization_profiles/update'
|
|
@@ -90909,6 +91155,7 @@ export type Routes = {
|
|
|
90909
91155
|
commonParams: {}
|
|
90910
91156
|
formData: {}
|
|
90911
91157
|
jsonResponse: {}
|
|
91158
|
+
maxDuration: undefined
|
|
90912
91159
|
}
|
|
90913
91160
|
'/workspaces/customization_profiles/upload_images': {
|
|
90914
91161
|
route: '/workspaces/customization_profiles/upload_images'
|
|
@@ -90918,6 +91165,7 @@ export type Routes = {
|
|
|
90918
91165
|
commonParams: {}
|
|
90919
91166
|
formData: {}
|
|
90920
91167
|
jsonResponse: {}
|
|
91168
|
+
maxDuration: undefined
|
|
90921
91169
|
}
|
|
90922
91170
|
'/workspaces/find_anything': {
|
|
90923
91171
|
route: '/workspaces/find_anything'
|
|
@@ -99650,6 +99898,7 @@ export type Routes = {
|
|
|
99650
99898
|
| undefined
|
|
99651
99899
|
}
|
|
99652
99900
|
}
|
|
99901
|
+
maxDuration: undefined
|
|
99653
99902
|
}
|
|
99654
99903
|
'/workspaces/get': {
|
|
99655
99904
|
route: '/workspaces/get'
|
|
@@ -99692,6 +99941,7 @@ export type Routes = {
|
|
|
99692
99941
|
is_publishable_key_auth_enabled: boolean
|
|
99693
99942
|
}
|
|
99694
99943
|
}
|
|
99944
|
+
maxDuration: undefined
|
|
99695
99945
|
}
|
|
99696
99946
|
'/workspaces/list': {
|
|
99697
99947
|
route: '/workspaces/list'
|
|
@@ -99733,6 +99983,7 @@ export type Routes = {
|
|
|
99733
99983
|
is_publishable_key_auth_enabled: boolean
|
|
99734
99984
|
}[]
|
|
99735
99985
|
}
|
|
99986
|
+
maxDuration: undefined
|
|
99736
99987
|
}
|
|
99737
99988
|
'/workspaces/reset_sandbox': {
|
|
99738
99989
|
route: '/workspaces/reset_sandbox'
|
|
@@ -101189,6 +101440,7 @@ export type Routes = {
|
|
|
101189
101440
|
}
|
|
101190
101441
|
}
|
|
101191
101442
|
}
|
|
101443
|
+
maxDuration: undefined
|
|
101192
101444
|
}
|
|
101193
101445
|
'/workspaces/update': {
|
|
101194
101446
|
route: '/workspaces/update'
|
|
@@ -101220,6 +101472,7 @@ export type Routes = {
|
|
|
101220
101472
|
commonParams: {}
|
|
101221
101473
|
formData: {}
|
|
101222
101474
|
jsonResponse: {}
|
|
101475
|
+
maxDuration: undefined
|
|
101223
101476
|
}
|
|
101224
101477
|
}
|
|
101225
101478
|
|