@seamapi/types 1.399.0 → 1.399.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +877 -295
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +835 -178
- package/lib/seam/connect/models/access-codes/managed-access-code.js +8 -2
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.js +4 -0
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.js.map +1 -1
- package/lib/seam/connect/models/client-sessions/client-session.js +9 -0
- package/lib/seam/connect/models/client-sessions/client-session.js.map +1 -1
- package/lib/seam/connect/models/connect-webviews/connect-webview.js +13 -0
- package/lib/seam/connect/models/connect-webviews/connect-webview.js.map +1 -1
- package/lib/seam/connect/models/connected-accounts/connected-account.js +1 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/capability-properties/access-code.js +4 -1
- package/lib/seam/connect/models/devices/capability-properties/access-code.js.map +1 -1
- package/lib/seam/connect/models/devices/device.js +5 -1
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.js +1 -0
- package/lib/seam/connect/models/devices/unmanaged-device.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.js +3 -0
- package/lib/seam/connect/models/events/seam-event.js.map +1 -1
- package/lib/seam/connect/models/user-identities/user-identity.js +1 -1
- package/lib/seam/connect/models/workspaces/workspace.js +1 -0
- package/lib/seam/connect/models/workspaces/workspace.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +371 -0
- package/lib/seam/connect/openapi.js +795 -256
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +464 -178
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +8 -2
- package/src/lib/seam/connect/models/access-codes/unmanaged-access-code.ts +4 -0
- package/src/lib/seam/connect/models/client-sessions/client-session.ts +9 -0
- package/src/lib/seam/connect/models/connect-webviews/connect-webview.ts +13 -0
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +1 -0
- package/src/lib/seam/connect/models/devices/capability-properties/access-code.ts +6 -1
- package/src/lib/seam/connect/models/devices/device.ts +7 -1
- package/src/lib/seam/connect/models/devices/unmanaged-device.ts +1 -0
- package/src/lib/seam/connect/models/events/seam-event.ts +3 -0
- package/src/lib/seam/connect/models/user-identities/user-identity.ts +1 -1
- package/src/lib/seam/connect/models/workspaces/workspace.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +996 -256
- package/src/lib/seam/connect/route-types.ts +466 -178
|
@@ -2857,6 +2857,7 @@ declare const _default: {
|
|
|
2857
2857
|
'x-route-path': string;
|
|
2858
2858
|
};
|
|
2859
2859
|
client_session: {
|
|
2860
|
+
description: string;
|
|
2860
2861
|
properties: {
|
|
2861
2862
|
client_session_id: {
|
|
2862
2863
|
format: string;
|
|
@@ -2912,6 +2913,7 @@ declare const _default: {
|
|
|
2912
2913
|
'x-route-path': string;
|
|
2913
2914
|
};
|
|
2914
2915
|
connect_webview: {
|
|
2916
|
+
description: string;
|
|
2915
2917
|
properties: {
|
|
2916
2918
|
accepted_devices: {
|
|
2917
2919
|
deprecated: boolean;
|
|
@@ -2920,6 +2922,7 @@ declare const _default: {
|
|
|
2920
2922
|
};
|
|
2921
2923
|
type: string;
|
|
2922
2924
|
'x-deprecated': string;
|
|
2925
|
+
'x-undocumented': string;
|
|
2923
2926
|
};
|
|
2924
2927
|
accepted_providers: {
|
|
2925
2928
|
items: {
|
|
@@ -2931,6 +2934,7 @@ declare const _default: {
|
|
|
2931
2934
|
deprecated: boolean;
|
|
2932
2935
|
type: string;
|
|
2933
2936
|
'x-deprecated': string;
|
|
2937
|
+
'x-undocumented': string;
|
|
2934
2938
|
};
|
|
2935
2939
|
any_provider_allowed: {
|
|
2936
2940
|
type: string;
|
|
@@ -3006,6 +3010,7 @@ declare const _default: {
|
|
|
3006
3010
|
'x-route-path': string;
|
|
3007
3011
|
};
|
|
3008
3012
|
connected_account: {
|
|
3013
|
+
description: string;
|
|
3009
3014
|
properties: {
|
|
3010
3015
|
account_type: {
|
|
3011
3016
|
type: string;
|
|
@@ -3225,6 +3230,7 @@ declare const _default: {
|
|
|
3225
3230
|
'x-route-path': string;
|
|
3226
3231
|
};
|
|
3227
3232
|
device: {
|
|
3233
|
+
description: string;
|
|
3228
3234
|
properties: {
|
|
3229
3235
|
can_hvac_cool: {
|
|
3230
3236
|
type: string;
|
|
@@ -4405,6 +4411,7 @@ declare const _default: {
|
|
|
4405
4411
|
type: string;
|
|
4406
4412
|
};
|
|
4407
4413
|
code_constraints: {
|
|
4414
|
+
description: string;
|
|
4408
4415
|
items: {
|
|
4409
4416
|
oneOf: ({
|
|
4410
4417
|
properties: {
|
|
@@ -5160,6 +5167,7 @@ declare const _default: {
|
|
|
5160
5167
|
'x-route-path': string;
|
|
5161
5168
|
};
|
|
5162
5169
|
event: {
|
|
5170
|
+
description: string;
|
|
5163
5171
|
discriminator: {
|
|
5164
5172
|
propertyName: string;
|
|
5165
5173
|
};
|
|
@@ -9525,6 +9533,7 @@ declare const _default: {
|
|
|
9525
9533
|
'x-route-path': string;
|
|
9526
9534
|
};
|
|
9527
9535
|
unmanaged_device: {
|
|
9536
|
+
description: string;
|
|
9528
9537
|
properties: {
|
|
9529
9538
|
can_hvac_cool: {
|
|
9530
9539
|
type: string;
|
|
@@ -9933,6 +9942,7 @@ declare const _default: {
|
|
|
9933
9942
|
'x-route-path': string;
|
|
9934
9943
|
};
|
|
9935
9944
|
workspace: {
|
|
9945
|
+
description: string;
|
|
9936
9946
|
properties: {
|
|
9937
9947
|
company_name: {
|
|
9938
9948
|
type: string;
|
|
@@ -10598,6 +10608,7 @@ declare const _default: {
|
|
|
10598
10608
|
};
|
|
10599
10609
|
'/access_codes/generate_code': {
|
|
10600
10610
|
post: {
|
|
10611
|
+
description: string;
|
|
10601
10612
|
operationId: string;
|
|
10602
10613
|
requestBody: {
|
|
10603
10614
|
content: {
|
|
@@ -10605,6 +10616,7 @@ declare const _default: {
|
|
|
10605
10616
|
schema: {
|
|
10606
10617
|
properties: {
|
|
10607
10618
|
device_id: {
|
|
10619
|
+
description: string;
|
|
10608
10620
|
format: string;
|
|
10609
10621
|
type: string;
|
|
10610
10622
|
};
|
|
@@ -10669,6 +10681,7 @@ declare const _default: {
|
|
|
10669
10681
|
'x-fern-sdk-method-name': string;
|
|
10670
10682
|
'x-fern-sdk-return-value': string;
|
|
10671
10683
|
'x-response-key': string;
|
|
10684
|
+
'x-title': string;
|
|
10672
10685
|
};
|
|
10673
10686
|
};
|
|
10674
10687
|
'/access_codes/get': {
|
|
@@ -12954,6 +12967,7 @@ declare const _default: {
|
|
|
12954
12967
|
'x-fern-sdk-method-name': string;
|
|
12955
12968
|
'x-fern-sdk-return-value': string;
|
|
12956
12969
|
'x-response-key': string;
|
|
12970
|
+
'x-title': string;
|
|
12957
12971
|
'x-undocumented': string;
|
|
12958
12972
|
};
|
|
12959
12973
|
};
|
|
@@ -13031,11 +13045,13 @@ declare const _default: {
|
|
|
13031
13045
|
'x-fern-sdk-method-name': string;
|
|
13032
13046
|
'x-fern-sdk-return-value': string;
|
|
13033
13047
|
'x-response-key': string;
|
|
13048
|
+
'x-title': string;
|
|
13034
13049
|
'x-undocumented': string;
|
|
13035
13050
|
};
|
|
13036
13051
|
};
|
|
13037
13052
|
'/acs/credential_pools/list': {
|
|
13038
13053
|
post: {
|
|
13054
|
+
description: string;
|
|
13039
13055
|
operationId: string;
|
|
13040
13056
|
requestBody: {
|
|
13041
13057
|
content: {
|
|
@@ -13043,6 +13059,7 @@ declare const _default: {
|
|
|
13043
13059
|
schema: {
|
|
13044
13060
|
properties: {
|
|
13045
13061
|
acs_system_id: {
|
|
13062
|
+
description: string;
|
|
13046
13063
|
format: string;
|
|
13047
13064
|
type: string;
|
|
13048
13065
|
};
|
|
@@ -13103,11 +13120,13 @@ declare const _default: {
|
|
|
13103
13120
|
'x-fern-sdk-method-name': string;
|
|
13104
13121
|
'x-fern-sdk-return-value': string;
|
|
13105
13122
|
'x-response-key': string;
|
|
13123
|
+
'x-title': string;
|
|
13106
13124
|
'x-undocumented': string;
|
|
13107
13125
|
};
|
|
13108
13126
|
};
|
|
13109
13127
|
'/acs/credential_provisioning_automations/launch': {
|
|
13110
13128
|
post: {
|
|
13129
|
+
description: string;
|
|
13111
13130
|
operationId: string;
|
|
13112
13131
|
requestBody: {
|
|
13113
13132
|
content: {
|
|
@@ -13115,21 +13134,26 @@ declare const _default: {
|
|
|
13115
13134
|
schema: {
|
|
13116
13135
|
properties: {
|
|
13117
13136
|
acs_credential_pool_id: {
|
|
13137
|
+
description: string;
|
|
13118
13138
|
format: string;
|
|
13119
13139
|
type: string;
|
|
13120
13140
|
};
|
|
13121
13141
|
create_credential_manager_user: {
|
|
13142
|
+
description: string;
|
|
13122
13143
|
type: string;
|
|
13123
13144
|
};
|
|
13124
13145
|
credential_manager_acs_system_id: {
|
|
13146
|
+
description: string;
|
|
13125
13147
|
format: string;
|
|
13126
13148
|
type: string;
|
|
13127
13149
|
};
|
|
13128
13150
|
credential_manager_acs_user_id: {
|
|
13151
|
+
description: string;
|
|
13129
13152
|
format: string;
|
|
13130
13153
|
type: string;
|
|
13131
13154
|
};
|
|
13132
13155
|
user_identity_id: {
|
|
13156
|
+
description: string;
|
|
13133
13157
|
format: string;
|
|
13134
13158
|
type: string;
|
|
13135
13159
|
};
|
|
@@ -13187,6 +13211,7 @@ declare const _default: {
|
|
|
13187
13211
|
'x-fern-sdk-method-name': string;
|
|
13188
13212
|
'x-fern-sdk-return-value': string;
|
|
13189
13213
|
'x-response-key': string;
|
|
13214
|
+
'x-title': string;
|
|
13190
13215
|
'x-undocumented': string;
|
|
13191
13216
|
};
|
|
13192
13217
|
};
|
|
@@ -13414,9 +13439,11 @@ declare const _default: {
|
|
|
13414
13439
|
description: string;
|
|
13415
13440
|
properties: {
|
|
13416
13441
|
assign_new_key: {
|
|
13442
|
+
description: string;
|
|
13417
13443
|
type: string;
|
|
13418
13444
|
};
|
|
13419
13445
|
update_current_key: {
|
|
13446
|
+
description: string;
|
|
13420
13447
|
type: string;
|
|
13421
13448
|
};
|
|
13422
13449
|
};
|
|
@@ -14211,6 +14238,7 @@ declare const _default: {
|
|
|
14211
14238
|
'application/json': {
|
|
14212
14239
|
schema: {
|
|
14213
14240
|
oneOf: ({
|
|
14241
|
+
description: string;
|
|
14214
14242
|
properties: {
|
|
14215
14243
|
acs_user_id: {
|
|
14216
14244
|
description: string;
|
|
@@ -14223,6 +14251,7 @@ declare const _default: {
|
|
|
14223
14251
|
required: string[];
|
|
14224
14252
|
type: string;
|
|
14225
14253
|
} | {
|
|
14254
|
+
description: string;
|
|
14226
14255
|
properties: {
|
|
14227
14256
|
acs_system_id: {
|
|
14228
14257
|
description: string;
|
|
@@ -14235,6 +14264,7 @@ declare const _default: {
|
|
|
14235
14264
|
required: string[];
|
|
14236
14265
|
type: string;
|
|
14237
14266
|
} | {
|
|
14267
|
+
description: string;
|
|
14238
14268
|
properties: {
|
|
14239
14269
|
acs_system_id: {
|
|
14240
14270
|
description: string;
|
|
@@ -14251,6 +14281,7 @@ declare const _default: {
|
|
|
14251
14281
|
required: string[];
|
|
14252
14282
|
type: string;
|
|
14253
14283
|
} | {
|
|
14284
|
+
description: string;
|
|
14254
14285
|
properties: {
|
|
14255
14286
|
user_identity_id: {
|
|
14256
14287
|
description: string;
|
|
@@ -15265,6 +15296,7 @@ declare const _default: {
|
|
|
15265
15296
|
schema: {
|
|
15266
15297
|
properties: {
|
|
15267
15298
|
acs_entrance_id: {
|
|
15299
|
+
description: string;
|
|
15268
15300
|
format: string;
|
|
15269
15301
|
type: string;
|
|
15270
15302
|
};
|
|
@@ -15334,6 +15366,7 @@ declare const _default: {
|
|
|
15334
15366
|
};
|
|
15335
15367
|
'/acs/entrances/grant_access': {
|
|
15336
15368
|
post: {
|
|
15369
|
+
description: string;
|
|
15337
15370
|
operationId: string;
|
|
15338
15371
|
requestBody: {
|
|
15339
15372
|
content: {
|
|
@@ -15341,10 +15374,12 @@ declare const _default: {
|
|
|
15341
15374
|
schema: {
|
|
15342
15375
|
properties: {
|
|
15343
15376
|
acs_entrance_id: {
|
|
15377
|
+
description: string;
|
|
15344
15378
|
format: string;
|
|
15345
15379
|
type: string;
|
|
15346
15380
|
};
|
|
15347
15381
|
acs_user_id: {
|
|
15382
|
+
description: string;
|
|
15348
15383
|
format: string;
|
|
15349
15384
|
type: string;
|
|
15350
15385
|
};
|
|
@@ -15410,14 +15445,17 @@ declare const _default: {
|
|
|
15410
15445
|
schema: {
|
|
15411
15446
|
properties: {
|
|
15412
15447
|
acs_credential_id: {
|
|
15448
|
+
description: string;
|
|
15413
15449
|
format: string;
|
|
15414
15450
|
type: string;
|
|
15415
15451
|
};
|
|
15416
15452
|
acs_system_id: {
|
|
15453
|
+
description: string;
|
|
15417
15454
|
format: string;
|
|
15418
15455
|
type: string;
|
|
15419
15456
|
};
|
|
15420
15457
|
location_id: {
|
|
15458
|
+
description: string;
|
|
15421
15459
|
format: string;
|
|
15422
15460
|
nullable: boolean;
|
|
15423
15461
|
type: string;
|
|
@@ -15499,10 +15537,12 @@ declare const _default: {
|
|
|
15499
15537
|
schema: {
|
|
15500
15538
|
properties: {
|
|
15501
15539
|
acs_entrance_id: {
|
|
15540
|
+
description: string;
|
|
15502
15541
|
format: string;
|
|
15503
15542
|
type: string;
|
|
15504
15543
|
};
|
|
15505
15544
|
include_if: {
|
|
15545
|
+
description: string;
|
|
15506
15546
|
items: {
|
|
15507
15547
|
enum: string[];
|
|
15508
15548
|
type: string;
|
|
@@ -15951,11 +15991,13 @@ declare const _default: {
|
|
|
15951
15991
|
description: string;
|
|
15952
15992
|
properties: {
|
|
15953
15993
|
ends_at: {
|
|
15994
|
+
description: string;
|
|
15954
15995
|
format: string;
|
|
15955
15996
|
nullable: boolean;
|
|
15956
15997
|
type: string;
|
|
15957
15998
|
};
|
|
15958
15999
|
starts_at: {
|
|
16000
|
+
description: string;
|
|
15959
16001
|
format: string;
|
|
15960
16002
|
type: string;
|
|
15961
16003
|
};
|
|
@@ -16207,6 +16249,7 @@ declare const _default: {
|
|
|
16207
16249
|
type: string;
|
|
16208
16250
|
};
|
|
16209
16251
|
created_before: {
|
|
16252
|
+
description: string;
|
|
16210
16253
|
format: string;
|
|
16211
16254
|
type: string;
|
|
16212
16255
|
};
|
|
@@ -16595,6 +16638,7 @@ declare const _default: {
|
|
|
16595
16638
|
};
|
|
16596
16639
|
'/acs/users/unmanaged/get': {
|
|
16597
16640
|
post: {
|
|
16641
|
+
description: string;
|
|
16598
16642
|
operationId: string;
|
|
16599
16643
|
requestBody: {
|
|
16600
16644
|
content: {
|
|
@@ -16602,6 +16646,7 @@ declare const _default: {
|
|
|
16602
16646
|
schema: {
|
|
16603
16647
|
properties: {
|
|
16604
16648
|
acs_user_id: {
|
|
16649
|
+
description: string;
|
|
16605
16650
|
format: string;
|
|
16606
16651
|
type: string;
|
|
16607
16652
|
};
|
|
@@ -16658,11 +16703,13 @@ declare const _default: {
|
|
|
16658
16703
|
'x-fern-sdk-method-name': string;
|
|
16659
16704
|
'x-fern-sdk-return-value': string;
|
|
16660
16705
|
'x-response-key': string;
|
|
16706
|
+
'x-title': string;
|
|
16661
16707
|
'x-undocumented': string;
|
|
16662
16708
|
};
|
|
16663
16709
|
};
|
|
16664
16710
|
'/acs/users/unmanaged/list': {
|
|
16665
16711
|
post: {
|
|
16712
|
+
description: string;
|
|
16666
16713
|
operationId: string;
|
|
16667
16714
|
requestBody: {
|
|
16668
16715
|
content: {
|
|
@@ -16670,22 +16717,27 @@ declare const _default: {
|
|
|
16670
16717
|
schema: {
|
|
16671
16718
|
properties: {
|
|
16672
16719
|
acs_system_id: {
|
|
16720
|
+
description: string;
|
|
16673
16721
|
format: string;
|
|
16674
16722
|
type: string;
|
|
16675
16723
|
};
|
|
16676
16724
|
limit: {
|
|
16677
16725
|
default: number;
|
|
16726
|
+
description: string;
|
|
16678
16727
|
format: string;
|
|
16679
16728
|
type: string;
|
|
16680
16729
|
};
|
|
16681
16730
|
user_identity_email_address: {
|
|
16731
|
+
description: string;
|
|
16682
16732
|
type: string;
|
|
16683
16733
|
};
|
|
16684
16734
|
user_identity_id: {
|
|
16735
|
+
description: string;
|
|
16685
16736
|
format: string;
|
|
16686
16737
|
type: string;
|
|
16687
16738
|
};
|
|
16688
16739
|
user_identity_phone_number: {
|
|
16740
|
+
description: string;
|
|
16689
16741
|
type: string;
|
|
16690
16742
|
};
|
|
16691
16743
|
};
|
|
@@ -16743,6 +16795,7 @@ declare const _default: {
|
|
|
16743
16795
|
'x-fern-sdk-method-name': string;
|
|
16744
16796
|
'x-fern-sdk-return-value': string;
|
|
16745
16797
|
'x-response-key': string;
|
|
16798
|
+
'x-title': string;
|
|
16746
16799
|
'x-undocumented': string;
|
|
16747
16800
|
};
|
|
16748
16801
|
};
|
|
@@ -16826,10 +16879,12 @@ declare const _default: {
|
|
|
16826
16879
|
nullable: boolean;
|
|
16827
16880
|
properties: {
|
|
16828
16881
|
ends_at: {
|
|
16882
|
+
description: string;
|
|
16829
16883
|
format: string;
|
|
16830
16884
|
type: string;
|
|
16831
16885
|
};
|
|
16832
16886
|
starts_at: {
|
|
16887
|
+
description: string;
|
|
16833
16888
|
format: string;
|
|
16834
16889
|
type: string;
|
|
16835
16890
|
};
|
|
@@ -16929,10 +16984,12 @@ declare const _default: {
|
|
|
16929
16984
|
nullable: boolean;
|
|
16930
16985
|
properties: {
|
|
16931
16986
|
ends_at: {
|
|
16987
|
+
description: string;
|
|
16932
16988
|
format: string;
|
|
16933
16989
|
type: string;
|
|
16934
16990
|
};
|
|
16935
16991
|
starts_at: {
|
|
16992
|
+
description: string;
|
|
16936
16993
|
format: string;
|
|
16937
16994
|
type: string;
|
|
16938
16995
|
};
|
|
@@ -17023,6 +17080,7 @@ declare const _default: {
|
|
|
17023
17080
|
};
|
|
17024
17081
|
'/action_attempts/get': {
|
|
17025
17082
|
post: {
|
|
17083
|
+
description: string;
|
|
17026
17084
|
operationId: string;
|
|
17027
17085
|
requestBody: {
|
|
17028
17086
|
content: {
|
|
@@ -17030,6 +17088,7 @@ declare const _default: {
|
|
|
17030
17088
|
schema: {
|
|
17031
17089
|
properties: {
|
|
17032
17090
|
action_attempt_id: {
|
|
17091
|
+
description: string;
|
|
17033
17092
|
format: string;
|
|
17034
17093
|
type: string;
|
|
17035
17094
|
};
|
|
@@ -17094,10 +17153,12 @@ declare const _default: {
|
|
|
17094
17153
|
'x-fern-sdk-method-name': string;
|
|
17095
17154
|
'x-fern-sdk-return-value': string;
|
|
17096
17155
|
'x-response-key': string;
|
|
17156
|
+
'x-title': string;
|
|
17097
17157
|
};
|
|
17098
17158
|
};
|
|
17099
17159
|
'/action_attempts/list': {
|
|
17100
17160
|
post: {
|
|
17161
|
+
description: string;
|
|
17101
17162
|
operationId: string;
|
|
17102
17163
|
requestBody: {
|
|
17103
17164
|
content: {
|
|
@@ -17105,6 +17166,7 @@ declare const _default: {
|
|
|
17105
17166
|
schema: {
|
|
17106
17167
|
properties: {
|
|
17107
17168
|
action_attempt_ids: {
|
|
17169
|
+
description: string;
|
|
17108
17170
|
items: {
|
|
17109
17171
|
format: string;
|
|
17110
17172
|
type: string;
|
|
@@ -17167,10 +17229,12 @@ declare const _default: {
|
|
|
17167
17229
|
'x-fern-sdk-method-name': string;
|
|
17168
17230
|
'x-fern-sdk-return-value': string;
|
|
17169
17231
|
'x-response-key': string;
|
|
17232
|
+
'x-title': string;
|
|
17170
17233
|
};
|
|
17171
17234
|
};
|
|
17172
17235
|
'/bridges/get': {
|
|
17173
17236
|
post: {
|
|
17237
|
+
description: string;
|
|
17174
17238
|
operationId: string;
|
|
17175
17239
|
requestBody: {
|
|
17176
17240
|
content: {
|
|
@@ -17178,6 +17242,7 @@ declare const _default: {
|
|
|
17178
17242
|
schema: {
|
|
17179
17243
|
properties: {
|
|
17180
17244
|
bridge_id: {
|
|
17245
|
+
description: string;
|
|
17181
17246
|
format: string;
|
|
17182
17247
|
type: string;
|
|
17183
17248
|
};
|
|
@@ -17251,10 +17316,13 @@ declare const _default: {
|
|
|
17251
17316
|
'x-fern-sdk-method-name': string;
|
|
17252
17317
|
'x-fern-sdk-return-value': string;
|
|
17253
17318
|
'x-response-key': string;
|
|
17319
|
+
'x-title': string;
|
|
17320
|
+
'x-undocumented': string;
|
|
17254
17321
|
};
|
|
17255
17322
|
};
|
|
17256
17323
|
'/bridges/list': {
|
|
17257
17324
|
post: {
|
|
17325
|
+
description: string;
|
|
17258
17326
|
operationId: string;
|
|
17259
17327
|
requestBody: {
|
|
17260
17328
|
content: {
|
|
@@ -17332,10 +17400,13 @@ declare const _default: {
|
|
|
17332
17400
|
'x-fern-sdk-method-name': string;
|
|
17333
17401
|
'x-fern-sdk-return-value': string;
|
|
17334
17402
|
'x-response-key': string;
|
|
17403
|
+
'x-title': string;
|
|
17404
|
+
'x-undocumented': string;
|
|
17335
17405
|
};
|
|
17336
17406
|
};
|
|
17337
17407
|
'/client_sessions/create': {
|
|
17338
17408
|
post: {
|
|
17409
|
+
description: string;
|
|
17339
17410
|
operationId: string;
|
|
17340
17411
|
requestBody: {
|
|
17341
17412
|
content: {
|
|
@@ -17343,26 +17414,31 @@ declare const _default: {
|
|
|
17343
17414
|
schema: {
|
|
17344
17415
|
properties: {
|
|
17345
17416
|
connect_webview_ids: {
|
|
17417
|
+
description: string;
|
|
17346
17418
|
items: {
|
|
17347
17419
|
type: string;
|
|
17348
17420
|
};
|
|
17349
17421
|
type: string;
|
|
17350
17422
|
};
|
|
17351
17423
|
connected_account_ids: {
|
|
17424
|
+
description: string;
|
|
17352
17425
|
items: {
|
|
17353
17426
|
type: string;
|
|
17354
17427
|
};
|
|
17355
17428
|
type: string;
|
|
17356
17429
|
};
|
|
17357
17430
|
expires_at: {
|
|
17431
|
+
description: string;
|
|
17358
17432
|
format: string;
|
|
17359
17433
|
type: string;
|
|
17360
17434
|
};
|
|
17361
17435
|
user_identifier_key: {
|
|
17436
|
+
description: string;
|
|
17362
17437
|
minLength: number;
|
|
17363
17438
|
type: string;
|
|
17364
17439
|
};
|
|
17365
17440
|
user_identity_ids: {
|
|
17441
|
+
description: string;
|
|
17366
17442
|
items: {
|
|
17367
17443
|
type: string;
|
|
17368
17444
|
};
|
|
@@ -17428,8 +17504,10 @@ declare const _default: {
|
|
|
17428
17504
|
'x-fern-sdk-method-name': string;
|
|
17429
17505
|
'x-fern-sdk-return-value': string;
|
|
17430
17506
|
'x-response-key': string;
|
|
17507
|
+
'x-title': string;
|
|
17431
17508
|
};
|
|
17432
17509
|
put: {
|
|
17510
|
+
description: string;
|
|
17433
17511
|
operationId: string;
|
|
17434
17512
|
requestBody: {
|
|
17435
17513
|
content: {
|
|
@@ -17437,26 +17515,31 @@ declare const _default: {
|
|
|
17437
17515
|
schema: {
|
|
17438
17516
|
properties: {
|
|
17439
17517
|
connect_webview_ids: {
|
|
17518
|
+
description: string;
|
|
17440
17519
|
items: {
|
|
17441
17520
|
type: string;
|
|
17442
17521
|
};
|
|
17443
17522
|
type: string;
|
|
17444
17523
|
};
|
|
17445
17524
|
connected_account_ids: {
|
|
17525
|
+
description: string;
|
|
17446
17526
|
items: {
|
|
17447
17527
|
type: string;
|
|
17448
17528
|
};
|
|
17449
17529
|
type: string;
|
|
17450
17530
|
};
|
|
17451
17531
|
expires_at: {
|
|
17532
|
+
description: string;
|
|
17452
17533
|
format: string;
|
|
17453
17534
|
type: string;
|
|
17454
17535
|
};
|
|
17455
17536
|
user_identifier_key: {
|
|
17537
|
+
description: string;
|
|
17456
17538
|
minLength: number;
|
|
17457
17539
|
type: string;
|
|
17458
17540
|
};
|
|
17459
17541
|
user_identity_ids: {
|
|
17542
|
+
description: string;
|
|
17460
17543
|
items: {
|
|
17461
17544
|
type: string;
|
|
17462
17545
|
};
|
|
@@ -17520,10 +17603,12 @@ declare const _default: {
|
|
|
17520
17603
|
tags: string[];
|
|
17521
17604
|
'x-fern-ignore': boolean;
|
|
17522
17605
|
'x-response-key': string;
|
|
17606
|
+
'x-title': string;
|
|
17523
17607
|
};
|
|
17524
17608
|
};
|
|
17525
17609
|
'/client_sessions/delete': {
|
|
17526
17610
|
post: {
|
|
17611
|
+
description: string;
|
|
17527
17612
|
operationId: string;
|
|
17528
17613
|
requestBody: {
|
|
17529
17614
|
content: {
|
|
@@ -17531,6 +17616,7 @@ declare const _default: {
|
|
|
17531
17616
|
schema: {
|
|
17532
17617
|
properties: {
|
|
17533
17618
|
client_session_id: {
|
|
17619
|
+
description: string;
|
|
17534
17620
|
format: string;
|
|
17535
17621
|
type: string;
|
|
17536
17622
|
};
|
|
@@ -17583,10 +17669,12 @@ declare const _default: {
|
|
|
17583
17669
|
'x-fern-sdk-group-name': string[];
|
|
17584
17670
|
'x-fern-sdk-method-name': string;
|
|
17585
17671
|
'x-response-key': null;
|
|
17672
|
+
'x-title': string;
|
|
17586
17673
|
};
|
|
17587
17674
|
};
|
|
17588
17675
|
'/client_sessions/get': {
|
|
17589
17676
|
post: {
|
|
17677
|
+
description: string;
|
|
17590
17678
|
operationId: string;
|
|
17591
17679
|
requestBody: {
|
|
17592
17680
|
content: {
|
|
@@ -17594,9 +17682,11 @@ declare const _default: {
|
|
|
17594
17682
|
schema: {
|
|
17595
17683
|
properties: {
|
|
17596
17684
|
client_session_id: {
|
|
17685
|
+
description: string;
|
|
17597
17686
|
type: string;
|
|
17598
17687
|
};
|
|
17599
17688
|
user_identifier_key: {
|
|
17689
|
+
description: string;
|
|
17600
17690
|
type: string;
|
|
17601
17691
|
};
|
|
17602
17692
|
};
|
|
@@ -17659,10 +17749,12 @@ declare const _default: {
|
|
|
17659
17749
|
'x-fern-sdk-method-name': string;
|
|
17660
17750
|
'x-fern-sdk-return-value': string;
|
|
17661
17751
|
'x-response-key': string;
|
|
17752
|
+
'x-title': string;
|
|
17662
17753
|
};
|
|
17663
17754
|
};
|
|
17664
17755
|
'/client_sessions/get_or_create': {
|
|
17665
17756
|
post: {
|
|
17757
|
+
description: string;
|
|
17666
17758
|
operationId: string;
|
|
17667
17759
|
requestBody: {
|
|
17668
17760
|
content: {
|
|
@@ -17670,26 +17762,31 @@ declare const _default: {
|
|
|
17670
17762
|
schema: {
|
|
17671
17763
|
properties: {
|
|
17672
17764
|
connect_webview_ids: {
|
|
17765
|
+
description: string;
|
|
17673
17766
|
items: {
|
|
17674
17767
|
type: string;
|
|
17675
17768
|
};
|
|
17676
17769
|
type: string;
|
|
17677
17770
|
};
|
|
17678
17771
|
connected_account_ids: {
|
|
17772
|
+
description: string;
|
|
17679
17773
|
items: {
|
|
17680
17774
|
type: string;
|
|
17681
17775
|
};
|
|
17682
17776
|
type: string;
|
|
17683
17777
|
};
|
|
17684
17778
|
expires_at: {
|
|
17779
|
+
description: string;
|
|
17685
17780
|
format: string;
|
|
17686
17781
|
type: string;
|
|
17687
17782
|
};
|
|
17688
17783
|
user_identifier_key: {
|
|
17784
|
+
description: string;
|
|
17689
17785
|
minLength: number;
|
|
17690
17786
|
type: string;
|
|
17691
17787
|
};
|
|
17692
17788
|
user_identity_ids: {
|
|
17789
|
+
description: string;
|
|
17693
17790
|
items: {
|
|
17694
17791
|
type: string;
|
|
17695
17792
|
};
|
|
@@ -17755,10 +17852,12 @@ declare const _default: {
|
|
|
17755
17852
|
'x-fern-sdk-method-name': string;
|
|
17756
17853
|
'x-fern-sdk-return-value': string;
|
|
17757
17854
|
'x-response-key': string;
|
|
17855
|
+
'x-title': string;
|
|
17758
17856
|
};
|
|
17759
17857
|
};
|
|
17760
17858
|
'/client_sessions/grant_access': {
|
|
17761
17859
|
patch: {
|
|
17860
|
+
description: string;
|
|
17762
17861
|
operationId: string;
|
|
17763
17862
|
requestBody: {
|
|
17764
17863
|
content: {
|
|
@@ -17766,24 +17865,29 @@ declare const _default: {
|
|
|
17766
17865
|
schema: {
|
|
17767
17866
|
properties: {
|
|
17768
17867
|
client_session_id: {
|
|
17868
|
+
description: string;
|
|
17769
17869
|
type: string;
|
|
17770
17870
|
};
|
|
17771
17871
|
connect_webview_ids: {
|
|
17872
|
+
description: string;
|
|
17772
17873
|
items: {
|
|
17773
17874
|
type: string;
|
|
17774
17875
|
};
|
|
17775
17876
|
type: string;
|
|
17776
17877
|
};
|
|
17777
17878
|
connected_account_ids: {
|
|
17879
|
+
description: string;
|
|
17778
17880
|
items: {
|
|
17779
17881
|
type: string;
|
|
17780
17882
|
};
|
|
17781
17883
|
type: string;
|
|
17782
17884
|
};
|
|
17783
17885
|
user_identifier_key: {
|
|
17886
|
+
description: string;
|
|
17784
17887
|
type: string;
|
|
17785
17888
|
};
|
|
17786
17889
|
user_identity_ids: {
|
|
17890
|
+
description: string;
|
|
17787
17891
|
items: {
|
|
17788
17892
|
type: string;
|
|
17789
17893
|
};
|
|
@@ -17839,8 +17943,10 @@ declare const _default: {
|
|
|
17839
17943
|
tags: string[];
|
|
17840
17944
|
'x-fern-ignore': boolean;
|
|
17841
17945
|
'x-response-key': null;
|
|
17946
|
+
'x-title': string;
|
|
17842
17947
|
};
|
|
17843
17948
|
post: {
|
|
17949
|
+
description: string;
|
|
17844
17950
|
operationId: string;
|
|
17845
17951
|
requestBody: {
|
|
17846
17952
|
content: {
|
|
@@ -17848,24 +17954,29 @@ declare const _default: {
|
|
|
17848
17954
|
schema: {
|
|
17849
17955
|
properties: {
|
|
17850
17956
|
client_session_id: {
|
|
17957
|
+
description: string;
|
|
17851
17958
|
type: string;
|
|
17852
17959
|
};
|
|
17853
17960
|
connect_webview_ids: {
|
|
17961
|
+
description: string;
|
|
17854
17962
|
items: {
|
|
17855
17963
|
type: string;
|
|
17856
17964
|
};
|
|
17857
17965
|
type: string;
|
|
17858
17966
|
};
|
|
17859
17967
|
connected_account_ids: {
|
|
17968
|
+
description: string;
|
|
17860
17969
|
items: {
|
|
17861
17970
|
type: string;
|
|
17862
17971
|
};
|
|
17863
17972
|
type: string;
|
|
17864
17973
|
};
|
|
17865
17974
|
user_identifier_key: {
|
|
17975
|
+
description: string;
|
|
17866
17976
|
type: string;
|
|
17867
17977
|
};
|
|
17868
17978
|
user_identity_ids: {
|
|
17979
|
+
description: string;
|
|
17869
17980
|
items: {
|
|
17870
17981
|
type: string;
|
|
17871
17982
|
};
|
|
@@ -17922,10 +18033,12 @@ declare const _default: {
|
|
|
17922
18033
|
'x-fern-sdk-group-name': string[];
|
|
17923
18034
|
'x-fern-sdk-method-name': string;
|
|
17924
18035
|
'x-response-key': null;
|
|
18036
|
+
'x-title': string;
|
|
17925
18037
|
};
|
|
17926
18038
|
};
|
|
17927
18039
|
'/client_sessions/list': {
|
|
17928
18040
|
post: {
|
|
18041
|
+
description: string;
|
|
17929
18042
|
operationId: string;
|
|
17930
18043
|
requestBody: {
|
|
17931
18044
|
content: {
|
|
@@ -17933,18 +18046,23 @@ declare const _default: {
|
|
|
17933
18046
|
schema: {
|
|
17934
18047
|
properties: {
|
|
17935
18048
|
client_session_id: {
|
|
18049
|
+
description: string;
|
|
17936
18050
|
type: string;
|
|
17937
18051
|
};
|
|
17938
18052
|
connect_webview_id: {
|
|
18053
|
+
description: string;
|
|
17939
18054
|
type: string;
|
|
17940
18055
|
};
|
|
17941
18056
|
user_identifier_key: {
|
|
18057
|
+
description: string;
|
|
17942
18058
|
type: string;
|
|
17943
18059
|
};
|
|
17944
18060
|
user_identity_id: {
|
|
18061
|
+
description: string;
|
|
17945
18062
|
type: string;
|
|
17946
18063
|
};
|
|
17947
18064
|
without_user_identifier_key: {
|
|
18065
|
+
description: string;
|
|
17948
18066
|
type: string;
|
|
17949
18067
|
};
|
|
17950
18068
|
};
|
|
@@ -18002,10 +18120,12 @@ declare const _default: {
|
|
|
18002
18120
|
'x-fern-sdk-method-name': string;
|
|
18003
18121
|
'x-fern-sdk-return-value': string;
|
|
18004
18122
|
'x-response-key': string;
|
|
18123
|
+
'x-title': string;
|
|
18005
18124
|
};
|
|
18006
18125
|
};
|
|
18007
18126
|
'/client_sessions/revoke': {
|
|
18008
18127
|
post: {
|
|
18128
|
+
description: string;
|
|
18009
18129
|
operationId: string;
|
|
18010
18130
|
requestBody: {
|
|
18011
18131
|
content: {
|
|
@@ -18013,6 +18133,7 @@ declare const _default: {
|
|
|
18013
18133
|
schema: {
|
|
18014
18134
|
properties: {
|
|
18015
18135
|
client_session_id: {
|
|
18136
|
+
description: string;
|
|
18016
18137
|
format: string;
|
|
18017
18138
|
type: string;
|
|
18018
18139
|
};
|
|
@@ -18065,10 +18186,12 @@ declare const _default: {
|
|
|
18065
18186
|
'x-fern-sdk-group-name': string[];
|
|
18066
18187
|
'x-fern-sdk-method-name': string;
|
|
18067
18188
|
'x-response-key': null;
|
|
18189
|
+
'x-title': string;
|
|
18068
18190
|
};
|
|
18069
18191
|
};
|
|
18070
18192
|
'/connect_webviews/create': {
|
|
18071
18193
|
post: {
|
|
18194
|
+
description: string;
|
|
18072
18195
|
operationId: string;
|
|
18073
18196
|
requestBody: {
|
|
18074
18197
|
content: {
|
|
@@ -18076,6 +18199,7 @@ declare const _default: {
|
|
|
18076
18199
|
schema: {
|
|
18077
18200
|
properties: {
|
|
18078
18201
|
accepted_providers: {
|
|
18202
|
+
description: string;
|
|
18079
18203
|
items: {
|
|
18080
18204
|
enum: string[];
|
|
18081
18205
|
type: string;
|
|
@@ -18084,6 +18208,7 @@ declare const _default: {
|
|
|
18084
18208
|
};
|
|
18085
18209
|
automatically_manage_new_devices: {
|
|
18086
18210
|
default: boolean;
|
|
18211
|
+
description: string;
|
|
18087
18212
|
type: string;
|
|
18088
18213
|
};
|
|
18089
18214
|
custom_metadata: {
|
|
@@ -18097,24 +18222,30 @@ declare const _default: {
|
|
|
18097
18222
|
maxLength?: never;
|
|
18098
18223
|
})[];
|
|
18099
18224
|
};
|
|
18225
|
+
description: string;
|
|
18100
18226
|
type: string;
|
|
18101
18227
|
};
|
|
18102
18228
|
custom_redirect_failure_url: {
|
|
18229
|
+
description: string;
|
|
18103
18230
|
type: string;
|
|
18104
18231
|
};
|
|
18105
18232
|
custom_redirect_url: {
|
|
18233
|
+
description: string;
|
|
18106
18234
|
type: string;
|
|
18107
18235
|
};
|
|
18108
18236
|
device_selection_mode: {
|
|
18109
18237
|
enum: string[];
|
|
18110
18238
|
type: string;
|
|
18239
|
+
'x-undocumented': string;
|
|
18111
18240
|
};
|
|
18112
18241
|
provider_category: {
|
|
18242
|
+
description: string;
|
|
18113
18243
|
enum: string[];
|
|
18114
18244
|
type: string;
|
|
18115
18245
|
};
|
|
18116
18246
|
wait_for_device_creation: {
|
|
18117
18247
|
default: boolean;
|
|
18248
|
+
description: string;
|
|
18118
18249
|
type: string;
|
|
18119
18250
|
};
|
|
18120
18251
|
};
|
|
@@ -18177,10 +18308,12 @@ declare const _default: {
|
|
|
18177
18308
|
'x-fern-sdk-method-name': string;
|
|
18178
18309
|
'x-fern-sdk-return-value': string;
|
|
18179
18310
|
'x-response-key': string;
|
|
18311
|
+
'x-title': string;
|
|
18180
18312
|
};
|
|
18181
18313
|
};
|
|
18182
18314
|
'/connect_webviews/delete': {
|
|
18183
18315
|
post: {
|
|
18316
|
+
description: string;
|
|
18184
18317
|
operationId: string;
|
|
18185
18318
|
requestBody: {
|
|
18186
18319
|
content: {
|
|
@@ -18188,6 +18321,7 @@ declare const _default: {
|
|
|
18188
18321
|
schema: {
|
|
18189
18322
|
properties: {
|
|
18190
18323
|
connect_webview_id: {
|
|
18324
|
+
description: string;
|
|
18191
18325
|
format: string;
|
|
18192
18326
|
type: string;
|
|
18193
18327
|
};
|
|
@@ -18240,10 +18374,12 @@ declare const _default: {
|
|
|
18240
18374
|
'x-fern-sdk-group-name': string[];
|
|
18241
18375
|
'x-fern-sdk-method-name': string;
|
|
18242
18376
|
'x-response-key': null;
|
|
18377
|
+
'x-title': string;
|
|
18243
18378
|
};
|
|
18244
18379
|
};
|
|
18245
18380
|
'/connect_webviews/get': {
|
|
18246
18381
|
post: {
|
|
18382
|
+
description: string;
|
|
18247
18383
|
operationId: string;
|
|
18248
18384
|
requestBody: {
|
|
18249
18385
|
content: {
|
|
@@ -18251,6 +18387,7 @@ declare const _default: {
|
|
|
18251
18387
|
schema: {
|
|
18252
18388
|
properties: {
|
|
18253
18389
|
connect_webview_id: {
|
|
18390
|
+
description: string;
|
|
18254
18391
|
format: string;
|
|
18255
18392
|
type: string;
|
|
18256
18393
|
};
|
|
@@ -18315,10 +18452,12 @@ declare const _default: {
|
|
|
18315
18452
|
'x-fern-sdk-method-name': string;
|
|
18316
18453
|
'x-fern-sdk-return-value': string;
|
|
18317
18454
|
'x-response-key': string;
|
|
18455
|
+
'x-title': string;
|
|
18318
18456
|
};
|
|
18319
18457
|
};
|
|
18320
18458
|
'/connect_webviews/list': {
|
|
18321
18459
|
post: {
|
|
18460
|
+
description: string;
|
|
18322
18461
|
operationId: string;
|
|
18323
18462
|
requestBody: {
|
|
18324
18463
|
content: {
|
|
@@ -18336,6 +18475,7 @@ declare const _default: {
|
|
|
18336
18475
|
};
|
|
18337
18476
|
limit: {
|
|
18338
18477
|
default: number;
|
|
18478
|
+
description: string;
|
|
18339
18479
|
format: string;
|
|
18340
18480
|
type: string;
|
|
18341
18481
|
};
|
|
@@ -18406,10 +18546,12 @@ declare const _default: {
|
|
|
18406
18546
|
'x-fern-sdk-method-name': string;
|
|
18407
18547
|
'x-fern-sdk-return-value': string;
|
|
18408
18548
|
'x-response-key': string;
|
|
18549
|
+
'x-title': string;
|
|
18409
18550
|
};
|
|
18410
18551
|
};
|
|
18411
18552
|
'/connected_accounts/delete': {
|
|
18412
18553
|
post: {
|
|
18554
|
+
description: string;
|
|
18413
18555
|
operationId: string;
|
|
18414
18556
|
requestBody: {
|
|
18415
18557
|
content: {
|
|
@@ -18417,12 +18559,14 @@ declare const _default: {
|
|
|
18417
18559
|
schema: {
|
|
18418
18560
|
properties: {
|
|
18419
18561
|
connected_account_id: {
|
|
18562
|
+
description: string;
|
|
18420
18563
|
format: string;
|
|
18421
18564
|
type: string;
|
|
18422
18565
|
};
|
|
18423
18566
|
sync: {
|
|
18424
18567
|
default: boolean;
|
|
18425
18568
|
type: string;
|
|
18569
|
+
'x-undocumented': string;
|
|
18426
18570
|
};
|
|
18427
18571
|
};
|
|
18428
18572
|
required: string[];
|
|
@@ -18478,6 +18622,7 @@ declare const _default: {
|
|
|
18478
18622
|
};
|
|
18479
18623
|
'/connected_accounts/get': {
|
|
18480
18624
|
post: {
|
|
18625
|
+
description: string;
|
|
18481
18626
|
operationId: string;
|
|
18482
18627
|
requestBody: {
|
|
18483
18628
|
content: {
|
|
@@ -18486,6 +18631,7 @@ declare const _default: {
|
|
|
18486
18631
|
oneOf: ({
|
|
18487
18632
|
properties: {
|
|
18488
18633
|
connected_account_id: {
|
|
18634
|
+
description: string;
|
|
18489
18635
|
format: string;
|
|
18490
18636
|
type: string;
|
|
18491
18637
|
};
|
|
@@ -18496,6 +18642,7 @@ declare const _default: {
|
|
|
18496
18642
|
} | {
|
|
18497
18643
|
properties: {
|
|
18498
18644
|
email: {
|
|
18645
|
+
description: string;
|
|
18499
18646
|
format: string;
|
|
18500
18647
|
type: string;
|
|
18501
18648
|
};
|
|
@@ -18567,6 +18714,7 @@ declare const _default: {
|
|
|
18567
18714
|
};
|
|
18568
18715
|
'/connected_accounts/list': {
|
|
18569
18716
|
post: {
|
|
18717
|
+
description: string;
|
|
18570
18718
|
operationId: string;
|
|
18571
18719
|
requestBody: {
|
|
18572
18720
|
content: {
|
|
@@ -18668,6 +18816,7 @@ declare const _default: {
|
|
|
18668
18816
|
};
|
|
18669
18817
|
'/connected_accounts/update': {
|
|
18670
18818
|
post: {
|
|
18819
|
+
description: string;
|
|
18671
18820
|
operationId: string;
|
|
18672
18821
|
requestBody: {
|
|
18673
18822
|
content: {
|
|
@@ -18675,9 +18824,11 @@ declare const _default: {
|
|
|
18675
18824
|
schema: {
|
|
18676
18825
|
properties: {
|
|
18677
18826
|
automatically_manage_new_devices: {
|
|
18827
|
+
description: string;
|
|
18678
18828
|
type: string;
|
|
18679
18829
|
};
|
|
18680
18830
|
connected_account_id: {
|
|
18831
|
+
description: string;
|
|
18681
18832
|
format: string;
|
|
18682
18833
|
type: string;
|
|
18683
18834
|
};
|
|
@@ -18692,6 +18843,7 @@ declare const _default: {
|
|
|
18692
18843
|
maxLength?: never;
|
|
18693
18844
|
})[];
|
|
18694
18845
|
};
|
|
18846
|
+
description: string;
|
|
18695
18847
|
type: string;
|
|
18696
18848
|
};
|
|
18697
18849
|
};
|
|
@@ -18751,6 +18903,7 @@ declare const _default: {
|
|
|
18751
18903
|
};
|
|
18752
18904
|
'/devices/delete': {
|
|
18753
18905
|
post: {
|
|
18906
|
+
description: string;
|
|
18754
18907
|
operationId: string;
|
|
18755
18908
|
requestBody: {
|
|
18756
18909
|
content: {
|
|
@@ -18758,6 +18911,7 @@ declare const _default: {
|
|
|
18758
18911
|
schema: {
|
|
18759
18912
|
properties: {
|
|
18760
18913
|
device_id: {
|
|
18914
|
+
description: string;
|
|
18761
18915
|
format: string;
|
|
18762
18916
|
type: string;
|
|
18763
18917
|
};
|
|
@@ -18811,11 +18965,13 @@ declare const _default: {
|
|
|
18811
18965
|
'x-fern-sdk-group-name': string[];
|
|
18812
18966
|
'x-fern-sdk-method-name': string;
|
|
18813
18967
|
'x-response-key': null;
|
|
18968
|
+
'x-title': string;
|
|
18814
18969
|
'x-undocumented': string;
|
|
18815
18970
|
};
|
|
18816
18971
|
};
|
|
18817
18972
|
'/devices/get': {
|
|
18818
18973
|
post: {
|
|
18974
|
+
description: string;
|
|
18819
18975
|
operationId: string;
|
|
18820
18976
|
requestBody: {
|
|
18821
18977
|
content: {
|
|
@@ -18823,10 +18979,12 @@ declare const _default: {
|
|
|
18823
18979
|
schema: {
|
|
18824
18980
|
properties: {
|
|
18825
18981
|
device_id: {
|
|
18982
|
+
description: string;
|
|
18826
18983
|
format: string;
|
|
18827
18984
|
type: string;
|
|
18828
18985
|
};
|
|
18829
18986
|
name: {
|
|
18987
|
+
description: string;
|
|
18830
18988
|
type: string;
|
|
18831
18989
|
};
|
|
18832
18990
|
};
|
|
@@ -18889,6 +19047,7 @@ declare const _default: {
|
|
|
18889
19047
|
'x-fern-sdk-method-name': string;
|
|
18890
19048
|
'x-fern-sdk-return-value': string;
|
|
18891
19049
|
'x-response-key': string;
|
|
19050
|
+
'x-title': string;
|
|
18892
19051
|
};
|
|
18893
19052
|
};
|
|
18894
19053
|
'/devices/list': {
|
|
@@ -19007,6 +19166,7 @@ declare const _default: {
|
|
|
19007
19166
|
type: string;
|
|
19008
19167
|
};
|
|
19009
19168
|
unstable_location_id: {
|
|
19169
|
+
description: string;
|
|
19010
19170
|
format: string;
|
|
19011
19171
|
nullable: boolean;
|
|
19012
19172
|
type: string;
|
|
@@ -19087,6 +19247,7 @@ declare const _default: {
|
|
|
19087
19247
|
};
|
|
19088
19248
|
'/devices/list_device_providers': {
|
|
19089
19249
|
post: {
|
|
19250
|
+
description: string;
|
|
19090
19251
|
operationId: string;
|
|
19091
19252
|
requestBody: {
|
|
19092
19253
|
content: {
|
|
@@ -19094,6 +19255,7 @@ declare const _default: {
|
|
|
19094
19255
|
schema: {
|
|
19095
19256
|
properties: {
|
|
19096
19257
|
provider_category: {
|
|
19258
|
+
description: string;
|
|
19097
19259
|
enum: string[];
|
|
19098
19260
|
type: string;
|
|
19099
19261
|
};
|
|
@@ -19160,10 +19322,12 @@ declare const _default: {
|
|
|
19160
19322
|
'x-fern-sdk-method-name': string;
|
|
19161
19323
|
'x-fern-sdk-return-value': string;
|
|
19162
19324
|
'x-response-key': string;
|
|
19325
|
+
'x-title': string;
|
|
19163
19326
|
};
|
|
19164
19327
|
};
|
|
19165
19328
|
'/devices/simulate/connect': {
|
|
19166
19329
|
post: {
|
|
19330
|
+
description: string;
|
|
19167
19331
|
operationId: string;
|
|
19168
19332
|
requestBody: {
|
|
19169
19333
|
content: {
|
|
@@ -19171,6 +19335,7 @@ declare const _default: {
|
|
|
19171
19335
|
schema: {
|
|
19172
19336
|
properties: {
|
|
19173
19337
|
device_id: {
|
|
19338
|
+
description: string;
|
|
19174
19339
|
format: string;
|
|
19175
19340
|
type: string;
|
|
19176
19341
|
};
|
|
@@ -19223,10 +19388,12 @@ declare const _default: {
|
|
|
19223
19388
|
'x-fern-sdk-group-name': string[];
|
|
19224
19389
|
'x-fern-sdk-method-name': string;
|
|
19225
19390
|
'x-response-key': null;
|
|
19391
|
+
'x-title': string;
|
|
19226
19392
|
};
|
|
19227
19393
|
};
|
|
19228
19394
|
'/devices/simulate/disconnect': {
|
|
19229
19395
|
post: {
|
|
19396
|
+
description: string;
|
|
19230
19397
|
operationId: string;
|
|
19231
19398
|
requestBody: {
|
|
19232
19399
|
content: {
|
|
@@ -19234,6 +19401,7 @@ declare const _default: {
|
|
|
19234
19401
|
schema: {
|
|
19235
19402
|
properties: {
|
|
19236
19403
|
device_id: {
|
|
19404
|
+
description: string;
|
|
19237
19405
|
format: string;
|
|
19238
19406
|
type: string;
|
|
19239
19407
|
};
|
|
@@ -19286,10 +19454,12 @@ declare const _default: {
|
|
|
19286
19454
|
'x-fern-sdk-group-name': string[];
|
|
19287
19455
|
'x-fern-sdk-method-name': string;
|
|
19288
19456
|
'x-response-key': null;
|
|
19457
|
+
'x-title': string;
|
|
19289
19458
|
};
|
|
19290
19459
|
};
|
|
19291
19460
|
'/devices/simulate/remove': {
|
|
19292
19461
|
post: {
|
|
19462
|
+
description: string;
|
|
19293
19463
|
operationId: string;
|
|
19294
19464
|
requestBody: {
|
|
19295
19465
|
content: {
|
|
@@ -19297,6 +19467,7 @@ declare const _default: {
|
|
|
19297
19467
|
schema: {
|
|
19298
19468
|
properties: {
|
|
19299
19469
|
device_id: {
|
|
19470
|
+
description: string;
|
|
19300
19471
|
format: string;
|
|
19301
19472
|
type: string;
|
|
19302
19473
|
};
|
|
@@ -19349,10 +19520,12 @@ declare const _default: {
|
|
|
19349
19520
|
'x-fern-sdk-group-name': string[];
|
|
19350
19521
|
'x-fern-sdk-method-name': string;
|
|
19351
19522
|
'x-response-key': null;
|
|
19523
|
+
'x-title': string;
|
|
19352
19524
|
};
|
|
19353
19525
|
};
|
|
19354
19526
|
'/devices/unmanaged/get': {
|
|
19355
19527
|
post: {
|
|
19528
|
+
description: string;
|
|
19356
19529
|
operationId: string;
|
|
19357
19530
|
requestBody: {
|
|
19358
19531
|
content: {
|
|
@@ -19360,10 +19533,12 @@ declare const _default: {
|
|
|
19360
19533
|
schema: {
|
|
19361
19534
|
properties: {
|
|
19362
19535
|
device_id: {
|
|
19536
|
+
description: string;
|
|
19363
19537
|
format: string;
|
|
19364
19538
|
type: string;
|
|
19365
19539
|
};
|
|
19366
19540
|
name: {
|
|
19541
|
+
description: string;
|
|
19367
19542
|
type: string;
|
|
19368
19543
|
};
|
|
19369
19544
|
};
|
|
@@ -19426,10 +19601,12 @@ declare const _default: {
|
|
|
19426
19601
|
'x-fern-sdk-method-name': string;
|
|
19427
19602
|
'x-fern-sdk-return-value': string;
|
|
19428
19603
|
'x-response-key': string;
|
|
19604
|
+
'x-title': string;
|
|
19429
19605
|
};
|
|
19430
19606
|
};
|
|
19431
19607
|
'/devices/unmanaged/list': {
|
|
19432
19608
|
post: {
|
|
19609
|
+
description: string;
|
|
19433
19610
|
operationId: string;
|
|
19434
19611
|
requestBody: {
|
|
19435
19612
|
content: {
|
|
@@ -19543,6 +19720,7 @@ declare const _default: {
|
|
|
19543
19720
|
type: string;
|
|
19544
19721
|
};
|
|
19545
19722
|
unstable_location_id: {
|
|
19723
|
+
description: string;
|
|
19546
19724
|
format: string;
|
|
19547
19725
|
nullable: boolean;
|
|
19548
19726
|
type: string;
|
|
@@ -19607,10 +19785,12 @@ declare const _default: {
|
|
|
19607
19785
|
'x-fern-sdk-method-name': string;
|
|
19608
19786
|
'x-fern-sdk-return-value': string;
|
|
19609
19787
|
'x-response-key': string;
|
|
19788
|
+
'x-title': string;
|
|
19610
19789
|
};
|
|
19611
19790
|
};
|
|
19612
19791
|
'/devices/unmanaged/update': {
|
|
19613
19792
|
patch: {
|
|
19793
|
+
description: string;
|
|
19614
19794
|
operationId: string;
|
|
19615
19795
|
requestBody: {
|
|
19616
19796
|
content: {
|
|
@@ -19618,10 +19798,12 @@ declare const _default: {
|
|
|
19618
19798
|
schema: {
|
|
19619
19799
|
properties: {
|
|
19620
19800
|
device_id: {
|
|
19801
|
+
description: string;
|
|
19621
19802
|
format: string;
|
|
19622
19803
|
type: string;
|
|
19623
19804
|
};
|
|
19624
19805
|
is_managed: {
|
|
19806
|
+
description: string;
|
|
19625
19807
|
enum: boolean[];
|
|
19626
19808
|
type: string;
|
|
19627
19809
|
};
|
|
@@ -19673,8 +19855,10 @@ declare const _default: {
|
|
|
19673
19855
|
tags: string[];
|
|
19674
19856
|
'x-fern-ignore': boolean;
|
|
19675
19857
|
'x-response-key': null;
|
|
19858
|
+
'x-title': string;
|
|
19676
19859
|
};
|
|
19677
19860
|
post: {
|
|
19861
|
+
description: string;
|
|
19678
19862
|
operationId: string;
|
|
19679
19863
|
requestBody: {
|
|
19680
19864
|
content: {
|
|
@@ -19682,10 +19866,12 @@ declare const _default: {
|
|
|
19682
19866
|
schema: {
|
|
19683
19867
|
properties: {
|
|
19684
19868
|
device_id: {
|
|
19869
|
+
description: string;
|
|
19685
19870
|
format: string;
|
|
19686
19871
|
type: string;
|
|
19687
19872
|
};
|
|
19688
19873
|
is_managed: {
|
|
19874
|
+
description: string;
|
|
19689
19875
|
enum: boolean[];
|
|
19690
19876
|
type: string;
|
|
19691
19877
|
};
|
|
@@ -19738,10 +19924,12 @@ declare const _default: {
|
|
|
19738
19924
|
'x-fern-sdk-group-name': string[];
|
|
19739
19925
|
'x-fern-sdk-method-name': string;
|
|
19740
19926
|
'x-response-key': null;
|
|
19927
|
+
'x-title': string;
|
|
19741
19928
|
};
|
|
19742
19929
|
};
|
|
19743
19930
|
'/devices/update': {
|
|
19744
19931
|
patch: {
|
|
19932
|
+
description: string;
|
|
19745
19933
|
operationId: string;
|
|
19746
19934
|
requestBody: {
|
|
19747
19935
|
content: {
|
|
@@ -19759,23 +19947,28 @@ declare const _default: {
|
|
|
19759
19947
|
maxLength?: never;
|
|
19760
19948
|
})[];
|
|
19761
19949
|
};
|
|
19950
|
+
description: string;
|
|
19762
19951
|
type: string;
|
|
19763
19952
|
};
|
|
19764
19953
|
device_id: {
|
|
19954
|
+
description: string;
|
|
19765
19955
|
format: string;
|
|
19766
19956
|
type: string;
|
|
19767
19957
|
};
|
|
19768
19958
|
is_managed: {
|
|
19769
19959
|
default: boolean;
|
|
19960
|
+
description: string;
|
|
19770
19961
|
type: string;
|
|
19771
19962
|
};
|
|
19772
19963
|
name: {
|
|
19964
|
+
description: string;
|
|
19773
19965
|
nullable: boolean;
|
|
19774
19966
|
type: string;
|
|
19775
19967
|
};
|
|
19776
19968
|
properties: {
|
|
19777
19969
|
properties: {
|
|
19778
19970
|
name: {
|
|
19971
|
+
description: string;
|
|
19779
19972
|
nullable: boolean;
|
|
19780
19973
|
type: string;
|
|
19781
19974
|
};
|
|
@@ -19838,8 +20031,10 @@ declare const _default: {
|
|
|
19838
20031
|
tags: string[];
|
|
19839
20032
|
'x-fern-ignore': boolean;
|
|
19840
20033
|
'x-response-key': null;
|
|
20034
|
+
'x-title': string;
|
|
19841
20035
|
};
|
|
19842
20036
|
post: {
|
|
20037
|
+
description: string;
|
|
19843
20038
|
operationId: string;
|
|
19844
20039
|
requestBody: {
|
|
19845
20040
|
content: {
|
|
@@ -19857,23 +20052,28 @@ declare const _default: {
|
|
|
19857
20052
|
maxLength?: never;
|
|
19858
20053
|
})[];
|
|
19859
20054
|
};
|
|
20055
|
+
description: string;
|
|
19860
20056
|
type: string;
|
|
19861
20057
|
};
|
|
19862
20058
|
device_id: {
|
|
20059
|
+
description: string;
|
|
19863
20060
|
format: string;
|
|
19864
20061
|
type: string;
|
|
19865
20062
|
};
|
|
19866
20063
|
is_managed: {
|
|
19867
20064
|
default: boolean;
|
|
20065
|
+
description: string;
|
|
19868
20066
|
type: string;
|
|
19869
20067
|
};
|
|
19870
20068
|
name: {
|
|
20069
|
+
description: string;
|
|
19871
20070
|
nullable: boolean;
|
|
19872
20071
|
type: string;
|
|
19873
20072
|
};
|
|
19874
20073
|
properties: {
|
|
19875
20074
|
properties: {
|
|
19876
20075
|
name: {
|
|
20076
|
+
description: string;
|
|
19877
20077
|
nullable: boolean;
|
|
19878
20078
|
type: string;
|
|
19879
20079
|
};
|
|
@@ -19937,10 +20137,12 @@ declare const _default: {
|
|
|
19937
20137
|
'x-fern-sdk-group-name': string[];
|
|
19938
20138
|
'x-fern-sdk-method-name': string;
|
|
19939
20139
|
'x-response-key': null;
|
|
20140
|
+
'x-title': string;
|
|
19940
20141
|
};
|
|
19941
20142
|
};
|
|
19942
20143
|
'/events/get': {
|
|
19943
20144
|
post: {
|
|
20145
|
+
description: string;
|
|
19944
20146
|
operationId: string;
|
|
19945
20147
|
requestBody: {
|
|
19946
20148
|
content: {
|
|
@@ -20021,10 +20223,12 @@ declare const _default: {
|
|
|
20021
20223
|
'x-fern-sdk-method-name': string;
|
|
20022
20224
|
'x-fern-sdk-return-value': string;
|
|
20023
20225
|
'x-response-key': string;
|
|
20226
|
+
'x-title': string;
|
|
20024
20227
|
};
|
|
20025
20228
|
};
|
|
20026
20229
|
'/events/list': {
|
|
20027
20230
|
post: {
|
|
20231
|
+
description: string;
|
|
20028
20232
|
operationId: string;
|
|
20029
20233
|
requestBody: {
|
|
20030
20234
|
content: {
|
|
@@ -20186,6 +20390,7 @@ declare const _default: {
|
|
|
20186
20390
|
'x-fern-sdk-method-name': string;
|
|
20187
20391
|
'x-fern-sdk-return-value': string;
|
|
20188
20392
|
'x-response-key': string;
|
|
20393
|
+
'x-title': string;
|
|
20189
20394
|
};
|
|
20190
20395
|
};
|
|
20191
20396
|
'/locks/get': {
|
|
@@ -20370,6 +20575,7 @@ declare const _default: {
|
|
|
20370
20575
|
type: string;
|
|
20371
20576
|
};
|
|
20372
20577
|
unstable_location_id: {
|
|
20578
|
+
description: string;
|
|
20373
20579
|
format: string;
|
|
20374
20580
|
nullable: boolean;
|
|
20375
20581
|
type: string;
|
|
@@ -20983,6 +21189,7 @@ declare const _default: {
|
|
|
20983
21189
|
type: string;
|
|
20984
21190
|
};
|
|
20985
21191
|
unstable_location_id: {
|
|
21192
|
+
description: string;
|
|
20986
21193
|
format: string;
|
|
20987
21194
|
nullable: boolean;
|
|
20988
21195
|
type: string;
|
|
@@ -24474,6 +24681,7 @@ declare const _default: {
|
|
|
24474
24681
|
type: string;
|
|
24475
24682
|
};
|
|
24476
24683
|
unstable_location_id: {
|
|
24684
|
+
description: string;
|
|
24477
24685
|
format: string;
|
|
24478
24686
|
nullable: boolean;
|
|
24479
24687
|
type: string;
|
|
@@ -28328,6 +28536,168 @@ declare const _default: {
|
|
|
28328
28536
|
'x-undocumented': string;
|
|
28329
28537
|
};
|
|
28330
28538
|
};
|
|
28539
|
+
'/unstable_partner/resources/push': {
|
|
28540
|
+
post: {
|
|
28541
|
+
description: string;
|
|
28542
|
+
operationId: string;
|
|
28543
|
+
requestBody: {
|
|
28544
|
+
content: {
|
|
28545
|
+
'application/json': {
|
|
28546
|
+
schema: {
|
|
28547
|
+
oneOf: ({
|
|
28548
|
+
items: {
|
|
28549
|
+
properties: {
|
|
28550
|
+
custom_metadata: {
|
|
28551
|
+
additionalProperties: {
|
|
28552
|
+
type: string;
|
|
28553
|
+
};
|
|
28554
|
+
type: string;
|
|
28555
|
+
};
|
|
28556
|
+
customer_key: {
|
|
28557
|
+
type: string;
|
|
28558
|
+
};
|
|
28559
|
+
description: {
|
|
28560
|
+
type: string;
|
|
28561
|
+
};
|
|
28562
|
+
email_address: {
|
|
28563
|
+
type: string;
|
|
28564
|
+
};
|
|
28565
|
+
ends_at: {
|
|
28566
|
+
type: string;
|
|
28567
|
+
};
|
|
28568
|
+
icon_url: {
|
|
28569
|
+
type: string;
|
|
28570
|
+
};
|
|
28571
|
+
location_keys: {
|
|
28572
|
+
items: {
|
|
28573
|
+
type: string;
|
|
28574
|
+
};
|
|
28575
|
+
type: string;
|
|
28576
|
+
};
|
|
28577
|
+
name: {
|
|
28578
|
+
type: string;
|
|
28579
|
+
};
|
|
28580
|
+
partner_resource_key: {
|
|
28581
|
+
type: string;
|
|
28582
|
+
};
|
|
28583
|
+
partner_resource_type: {
|
|
28584
|
+
type: string;
|
|
28585
|
+
};
|
|
28586
|
+
phone_number: {
|
|
28587
|
+
type: string;
|
|
28588
|
+
};
|
|
28589
|
+
starts_at: {
|
|
28590
|
+
type: string;
|
|
28591
|
+
};
|
|
28592
|
+
user_identity_key: {
|
|
28593
|
+
type: string;
|
|
28594
|
+
};
|
|
28595
|
+
};
|
|
28596
|
+
type: string;
|
|
28597
|
+
};
|
|
28598
|
+
type: string;
|
|
28599
|
+
properties?: never;
|
|
28600
|
+
} | {
|
|
28601
|
+
properties: {
|
|
28602
|
+
custom_metadata: {
|
|
28603
|
+
additionalProperties: {
|
|
28604
|
+
type: string;
|
|
28605
|
+
};
|
|
28606
|
+
type: string;
|
|
28607
|
+
};
|
|
28608
|
+
customer_key: {
|
|
28609
|
+
type: string;
|
|
28610
|
+
};
|
|
28611
|
+
description: {
|
|
28612
|
+
type: string;
|
|
28613
|
+
};
|
|
28614
|
+
email_address: {
|
|
28615
|
+
type: string;
|
|
28616
|
+
};
|
|
28617
|
+
ends_at: {
|
|
28618
|
+
type: string;
|
|
28619
|
+
};
|
|
28620
|
+
icon_url: {
|
|
28621
|
+
type: string;
|
|
28622
|
+
};
|
|
28623
|
+
location_keys: {
|
|
28624
|
+
items: {
|
|
28625
|
+
type: string;
|
|
28626
|
+
};
|
|
28627
|
+
type: string;
|
|
28628
|
+
};
|
|
28629
|
+
name: {
|
|
28630
|
+
type: string;
|
|
28631
|
+
};
|
|
28632
|
+
partner_resource_key: {
|
|
28633
|
+
type: string;
|
|
28634
|
+
};
|
|
28635
|
+
partner_resource_type: {
|
|
28636
|
+
type: string;
|
|
28637
|
+
};
|
|
28638
|
+
phone_number: {
|
|
28639
|
+
type: string;
|
|
28640
|
+
};
|
|
28641
|
+
starts_at: {
|
|
28642
|
+
type: string;
|
|
28643
|
+
};
|
|
28644
|
+
user_identity_key: {
|
|
28645
|
+
type: string;
|
|
28646
|
+
};
|
|
28647
|
+
};
|
|
28648
|
+
type: string;
|
|
28649
|
+
items?: never;
|
|
28650
|
+
})[];
|
|
28651
|
+
};
|
|
28652
|
+
};
|
|
28653
|
+
};
|
|
28654
|
+
};
|
|
28655
|
+
responses: {
|
|
28656
|
+
200: {
|
|
28657
|
+
content: {
|
|
28658
|
+
'application/json': {
|
|
28659
|
+
schema: {
|
|
28660
|
+
properties: {
|
|
28661
|
+
ok: {
|
|
28662
|
+
type: string;
|
|
28663
|
+
};
|
|
28664
|
+
};
|
|
28665
|
+
required: string[];
|
|
28666
|
+
type: string;
|
|
28667
|
+
};
|
|
28668
|
+
};
|
|
28669
|
+
};
|
|
28670
|
+
description: string;
|
|
28671
|
+
};
|
|
28672
|
+
400: {
|
|
28673
|
+
description: string;
|
|
28674
|
+
};
|
|
28675
|
+
401: {
|
|
28676
|
+
description: string;
|
|
28677
|
+
};
|
|
28678
|
+
};
|
|
28679
|
+
security: ({
|
|
28680
|
+
pat_with_workspace: never[];
|
|
28681
|
+
console_session_with_workspace?: never;
|
|
28682
|
+
api_key?: never;
|
|
28683
|
+
} | {
|
|
28684
|
+
console_session_with_workspace: never[];
|
|
28685
|
+
pat_with_workspace?: never;
|
|
28686
|
+
api_key?: never;
|
|
28687
|
+
} | {
|
|
28688
|
+
api_key: never[];
|
|
28689
|
+
pat_with_workspace?: never;
|
|
28690
|
+
console_session_with_workspace?: never;
|
|
28691
|
+
})[];
|
|
28692
|
+
summary: string;
|
|
28693
|
+
tags: never[];
|
|
28694
|
+
'x-fern-sdk-group-name': string[];
|
|
28695
|
+
'x-fern-sdk-method-name': string;
|
|
28696
|
+
'x-response-key': null;
|
|
28697
|
+
'x-title': string;
|
|
28698
|
+
'x-undocumented': string;
|
|
28699
|
+
};
|
|
28700
|
+
};
|
|
28331
28701
|
'/user_identities/add_acs_user': {
|
|
28332
28702
|
post: {
|
|
28333
28703
|
description: string;
|
|
@@ -30734,6 +31104,7 @@ declare const _default: {
|
|
|
30734
31104
|
};
|
|
30735
31105
|
'/workspaces/reset_sandbox': {
|
|
30736
31106
|
post: {
|
|
31107
|
+
description: string;
|
|
30737
31108
|
operationId: string;
|
|
30738
31109
|
responses: {
|
|
30739
31110
|
200: {
|