@seamapi/types 1.398.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 +886 -294
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +848 -177
- 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 +381 -0
- package/lib/seam/connect/openapi.js +804 -255
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +467 -177
- 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 +1007 -255
- package/src/lib/seam/connect/route-types.ts +469 -177
|
@@ -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
|
};
|
|
@@ -13349,6 +13374,11 @@ declare const _default: {
|
|
|
13349
13374
|
enum: string[];
|
|
13350
13375
|
type: string;
|
|
13351
13376
|
};
|
|
13377
|
+
acs_system_id: {
|
|
13378
|
+
description: string;
|
|
13379
|
+
format: string;
|
|
13380
|
+
type: string;
|
|
13381
|
+
};
|
|
13352
13382
|
acs_user_id: {
|
|
13353
13383
|
description: string;
|
|
13354
13384
|
format: string;
|
|
@@ -13409,9 +13439,11 @@ declare const _default: {
|
|
|
13409
13439
|
description: string;
|
|
13410
13440
|
properties: {
|
|
13411
13441
|
assign_new_key: {
|
|
13442
|
+
description: string;
|
|
13412
13443
|
type: string;
|
|
13413
13444
|
};
|
|
13414
13445
|
update_current_key: {
|
|
13446
|
+
description: string;
|
|
13415
13447
|
type: string;
|
|
13416
13448
|
};
|
|
13417
13449
|
};
|
|
@@ -13422,6 +13454,11 @@ declare const _default: {
|
|
|
13422
13454
|
format: string;
|
|
13423
13455
|
type: string;
|
|
13424
13456
|
};
|
|
13457
|
+
user_identity_id: {
|
|
13458
|
+
description: string;
|
|
13459
|
+
format: string;
|
|
13460
|
+
type: string;
|
|
13461
|
+
};
|
|
13425
13462
|
visionline_metadata: {
|
|
13426
13463
|
description: string;
|
|
13427
13464
|
properties: {
|
|
@@ -14201,6 +14238,7 @@ declare const _default: {
|
|
|
14201
14238
|
'application/json': {
|
|
14202
14239
|
schema: {
|
|
14203
14240
|
oneOf: ({
|
|
14241
|
+
description: string;
|
|
14204
14242
|
properties: {
|
|
14205
14243
|
acs_user_id: {
|
|
14206
14244
|
description: string;
|
|
@@ -14213,6 +14251,7 @@ declare const _default: {
|
|
|
14213
14251
|
required: string[];
|
|
14214
14252
|
type: string;
|
|
14215
14253
|
} | {
|
|
14254
|
+
description: string;
|
|
14216
14255
|
properties: {
|
|
14217
14256
|
acs_system_id: {
|
|
14218
14257
|
description: string;
|
|
@@ -14225,6 +14264,7 @@ declare const _default: {
|
|
|
14225
14264
|
required: string[];
|
|
14226
14265
|
type: string;
|
|
14227
14266
|
} | {
|
|
14267
|
+
description: string;
|
|
14228
14268
|
properties: {
|
|
14229
14269
|
acs_system_id: {
|
|
14230
14270
|
description: string;
|
|
@@ -14241,6 +14281,7 @@ declare const _default: {
|
|
|
14241
14281
|
required: string[];
|
|
14242
14282
|
type: string;
|
|
14243
14283
|
} | {
|
|
14284
|
+
description: string;
|
|
14244
14285
|
properties: {
|
|
14245
14286
|
user_identity_id: {
|
|
14246
14287
|
description: string;
|
|
@@ -15255,6 +15296,7 @@ declare const _default: {
|
|
|
15255
15296
|
schema: {
|
|
15256
15297
|
properties: {
|
|
15257
15298
|
acs_entrance_id: {
|
|
15299
|
+
description: string;
|
|
15258
15300
|
format: string;
|
|
15259
15301
|
type: string;
|
|
15260
15302
|
};
|
|
@@ -15324,6 +15366,7 @@ declare const _default: {
|
|
|
15324
15366
|
};
|
|
15325
15367
|
'/acs/entrances/grant_access': {
|
|
15326
15368
|
post: {
|
|
15369
|
+
description: string;
|
|
15327
15370
|
operationId: string;
|
|
15328
15371
|
requestBody: {
|
|
15329
15372
|
content: {
|
|
@@ -15331,10 +15374,12 @@ declare const _default: {
|
|
|
15331
15374
|
schema: {
|
|
15332
15375
|
properties: {
|
|
15333
15376
|
acs_entrance_id: {
|
|
15377
|
+
description: string;
|
|
15334
15378
|
format: string;
|
|
15335
15379
|
type: string;
|
|
15336
15380
|
};
|
|
15337
15381
|
acs_user_id: {
|
|
15382
|
+
description: string;
|
|
15338
15383
|
format: string;
|
|
15339
15384
|
type: string;
|
|
15340
15385
|
};
|
|
@@ -15400,14 +15445,17 @@ declare const _default: {
|
|
|
15400
15445
|
schema: {
|
|
15401
15446
|
properties: {
|
|
15402
15447
|
acs_credential_id: {
|
|
15448
|
+
description: string;
|
|
15403
15449
|
format: string;
|
|
15404
15450
|
type: string;
|
|
15405
15451
|
};
|
|
15406
15452
|
acs_system_id: {
|
|
15453
|
+
description: string;
|
|
15407
15454
|
format: string;
|
|
15408
15455
|
type: string;
|
|
15409
15456
|
};
|
|
15410
15457
|
location_id: {
|
|
15458
|
+
description: string;
|
|
15411
15459
|
format: string;
|
|
15412
15460
|
nullable: boolean;
|
|
15413
15461
|
type: string;
|
|
@@ -15489,10 +15537,12 @@ declare const _default: {
|
|
|
15489
15537
|
schema: {
|
|
15490
15538
|
properties: {
|
|
15491
15539
|
acs_entrance_id: {
|
|
15540
|
+
description: string;
|
|
15492
15541
|
format: string;
|
|
15493
15542
|
type: string;
|
|
15494
15543
|
};
|
|
15495
15544
|
include_if: {
|
|
15545
|
+
description: string;
|
|
15496
15546
|
items: {
|
|
15497
15547
|
enum: string[];
|
|
15498
15548
|
type: string;
|
|
@@ -15941,11 +15991,13 @@ declare const _default: {
|
|
|
15941
15991
|
description: string;
|
|
15942
15992
|
properties: {
|
|
15943
15993
|
ends_at: {
|
|
15994
|
+
description: string;
|
|
15944
15995
|
format: string;
|
|
15945
15996
|
nullable: boolean;
|
|
15946
15997
|
type: string;
|
|
15947
15998
|
};
|
|
15948
15999
|
starts_at: {
|
|
16000
|
+
description: string;
|
|
15949
16001
|
format: string;
|
|
15950
16002
|
type: string;
|
|
15951
16003
|
};
|
|
@@ -16197,6 +16249,7 @@ declare const _default: {
|
|
|
16197
16249
|
type: string;
|
|
16198
16250
|
};
|
|
16199
16251
|
created_before: {
|
|
16252
|
+
description: string;
|
|
16200
16253
|
format: string;
|
|
16201
16254
|
type: string;
|
|
16202
16255
|
};
|
|
@@ -16585,6 +16638,7 @@ declare const _default: {
|
|
|
16585
16638
|
};
|
|
16586
16639
|
'/acs/users/unmanaged/get': {
|
|
16587
16640
|
post: {
|
|
16641
|
+
description: string;
|
|
16588
16642
|
operationId: string;
|
|
16589
16643
|
requestBody: {
|
|
16590
16644
|
content: {
|
|
@@ -16592,6 +16646,7 @@ declare const _default: {
|
|
|
16592
16646
|
schema: {
|
|
16593
16647
|
properties: {
|
|
16594
16648
|
acs_user_id: {
|
|
16649
|
+
description: string;
|
|
16595
16650
|
format: string;
|
|
16596
16651
|
type: string;
|
|
16597
16652
|
};
|
|
@@ -16648,11 +16703,13 @@ declare const _default: {
|
|
|
16648
16703
|
'x-fern-sdk-method-name': string;
|
|
16649
16704
|
'x-fern-sdk-return-value': string;
|
|
16650
16705
|
'x-response-key': string;
|
|
16706
|
+
'x-title': string;
|
|
16651
16707
|
'x-undocumented': string;
|
|
16652
16708
|
};
|
|
16653
16709
|
};
|
|
16654
16710
|
'/acs/users/unmanaged/list': {
|
|
16655
16711
|
post: {
|
|
16712
|
+
description: string;
|
|
16656
16713
|
operationId: string;
|
|
16657
16714
|
requestBody: {
|
|
16658
16715
|
content: {
|
|
@@ -16660,22 +16717,27 @@ declare const _default: {
|
|
|
16660
16717
|
schema: {
|
|
16661
16718
|
properties: {
|
|
16662
16719
|
acs_system_id: {
|
|
16720
|
+
description: string;
|
|
16663
16721
|
format: string;
|
|
16664
16722
|
type: string;
|
|
16665
16723
|
};
|
|
16666
16724
|
limit: {
|
|
16667
16725
|
default: number;
|
|
16726
|
+
description: string;
|
|
16668
16727
|
format: string;
|
|
16669
16728
|
type: string;
|
|
16670
16729
|
};
|
|
16671
16730
|
user_identity_email_address: {
|
|
16731
|
+
description: string;
|
|
16672
16732
|
type: string;
|
|
16673
16733
|
};
|
|
16674
16734
|
user_identity_id: {
|
|
16735
|
+
description: string;
|
|
16675
16736
|
format: string;
|
|
16676
16737
|
type: string;
|
|
16677
16738
|
};
|
|
16678
16739
|
user_identity_phone_number: {
|
|
16740
|
+
description: string;
|
|
16679
16741
|
type: string;
|
|
16680
16742
|
};
|
|
16681
16743
|
};
|
|
@@ -16733,6 +16795,7 @@ declare const _default: {
|
|
|
16733
16795
|
'x-fern-sdk-method-name': string;
|
|
16734
16796
|
'x-fern-sdk-return-value': string;
|
|
16735
16797
|
'x-response-key': string;
|
|
16798
|
+
'x-title': string;
|
|
16736
16799
|
'x-undocumented': string;
|
|
16737
16800
|
};
|
|
16738
16801
|
};
|
|
@@ -16816,10 +16879,12 @@ declare const _default: {
|
|
|
16816
16879
|
nullable: boolean;
|
|
16817
16880
|
properties: {
|
|
16818
16881
|
ends_at: {
|
|
16882
|
+
description: string;
|
|
16819
16883
|
format: string;
|
|
16820
16884
|
type: string;
|
|
16821
16885
|
};
|
|
16822
16886
|
starts_at: {
|
|
16887
|
+
description: string;
|
|
16823
16888
|
format: string;
|
|
16824
16889
|
type: string;
|
|
16825
16890
|
};
|
|
@@ -16919,10 +16984,12 @@ declare const _default: {
|
|
|
16919
16984
|
nullable: boolean;
|
|
16920
16985
|
properties: {
|
|
16921
16986
|
ends_at: {
|
|
16987
|
+
description: string;
|
|
16922
16988
|
format: string;
|
|
16923
16989
|
type: string;
|
|
16924
16990
|
};
|
|
16925
16991
|
starts_at: {
|
|
16992
|
+
description: string;
|
|
16926
16993
|
format: string;
|
|
16927
16994
|
type: string;
|
|
16928
16995
|
};
|
|
@@ -17013,6 +17080,7 @@ declare const _default: {
|
|
|
17013
17080
|
};
|
|
17014
17081
|
'/action_attempts/get': {
|
|
17015
17082
|
post: {
|
|
17083
|
+
description: string;
|
|
17016
17084
|
operationId: string;
|
|
17017
17085
|
requestBody: {
|
|
17018
17086
|
content: {
|
|
@@ -17020,6 +17088,7 @@ declare const _default: {
|
|
|
17020
17088
|
schema: {
|
|
17021
17089
|
properties: {
|
|
17022
17090
|
action_attempt_id: {
|
|
17091
|
+
description: string;
|
|
17023
17092
|
format: string;
|
|
17024
17093
|
type: string;
|
|
17025
17094
|
};
|
|
@@ -17084,10 +17153,12 @@ declare const _default: {
|
|
|
17084
17153
|
'x-fern-sdk-method-name': string;
|
|
17085
17154
|
'x-fern-sdk-return-value': string;
|
|
17086
17155
|
'x-response-key': string;
|
|
17156
|
+
'x-title': string;
|
|
17087
17157
|
};
|
|
17088
17158
|
};
|
|
17089
17159
|
'/action_attempts/list': {
|
|
17090
17160
|
post: {
|
|
17161
|
+
description: string;
|
|
17091
17162
|
operationId: string;
|
|
17092
17163
|
requestBody: {
|
|
17093
17164
|
content: {
|
|
@@ -17095,6 +17166,7 @@ declare const _default: {
|
|
|
17095
17166
|
schema: {
|
|
17096
17167
|
properties: {
|
|
17097
17168
|
action_attempt_ids: {
|
|
17169
|
+
description: string;
|
|
17098
17170
|
items: {
|
|
17099
17171
|
format: string;
|
|
17100
17172
|
type: string;
|
|
@@ -17157,10 +17229,12 @@ declare const _default: {
|
|
|
17157
17229
|
'x-fern-sdk-method-name': string;
|
|
17158
17230
|
'x-fern-sdk-return-value': string;
|
|
17159
17231
|
'x-response-key': string;
|
|
17232
|
+
'x-title': string;
|
|
17160
17233
|
};
|
|
17161
17234
|
};
|
|
17162
17235
|
'/bridges/get': {
|
|
17163
17236
|
post: {
|
|
17237
|
+
description: string;
|
|
17164
17238
|
operationId: string;
|
|
17165
17239
|
requestBody: {
|
|
17166
17240
|
content: {
|
|
@@ -17168,6 +17242,7 @@ declare const _default: {
|
|
|
17168
17242
|
schema: {
|
|
17169
17243
|
properties: {
|
|
17170
17244
|
bridge_id: {
|
|
17245
|
+
description: string;
|
|
17171
17246
|
format: string;
|
|
17172
17247
|
type: string;
|
|
17173
17248
|
};
|
|
@@ -17241,10 +17316,13 @@ declare const _default: {
|
|
|
17241
17316
|
'x-fern-sdk-method-name': string;
|
|
17242
17317
|
'x-fern-sdk-return-value': string;
|
|
17243
17318
|
'x-response-key': string;
|
|
17319
|
+
'x-title': string;
|
|
17320
|
+
'x-undocumented': string;
|
|
17244
17321
|
};
|
|
17245
17322
|
};
|
|
17246
17323
|
'/bridges/list': {
|
|
17247
17324
|
post: {
|
|
17325
|
+
description: string;
|
|
17248
17326
|
operationId: string;
|
|
17249
17327
|
requestBody: {
|
|
17250
17328
|
content: {
|
|
@@ -17322,10 +17400,13 @@ declare const _default: {
|
|
|
17322
17400
|
'x-fern-sdk-method-name': string;
|
|
17323
17401
|
'x-fern-sdk-return-value': string;
|
|
17324
17402
|
'x-response-key': string;
|
|
17403
|
+
'x-title': string;
|
|
17404
|
+
'x-undocumented': string;
|
|
17325
17405
|
};
|
|
17326
17406
|
};
|
|
17327
17407
|
'/client_sessions/create': {
|
|
17328
17408
|
post: {
|
|
17409
|
+
description: string;
|
|
17329
17410
|
operationId: string;
|
|
17330
17411
|
requestBody: {
|
|
17331
17412
|
content: {
|
|
@@ -17333,26 +17414,31 @@ declare const _default: {
|
|
|
17333
17414
|
schema: {
|
|
17334
17415
|
properties: {
|
|
17335
17416
|
connect_webview_ids: {
|
|
17417
|
+
description: string;
|
|
17336
17418
|
items: {
|
|
17337
17419
|
type: string;
|
|
17338
17420
|
};
|
|
17339
17421
|
type: string;
|
|
17340
17422
|
};
|
|
17341
17423
|
connected_account_ids: {
|
|
17424
|
+
description: string;
|
|
17342
17425
|
items: {
|
|
17343
17426
|
type: string;
|
|
17344
17427
|
};
|
|
17345
17428
|
type: string;
|
|
17346
17429
|
};
|
|
17347
17430
|
expires_at: {
|
|
17431
|
+
description: string;
|
|
17348
17432
|
format: string;
|
|
17349
17433
|
type: string;
|
|
17350
17434
|
};
|
|
17351
17435
|
user_identifier_key: {
|
|
17436
|
+
description: string;
|
|
17352
17437
|
minLength: number;
|
|
17353
17438
|
type: string;
|
|
17354
17439
|
};
|
|
17355
17440
|
user_identity_ids: {
|
|
17441
|
+
description: string;
|
|
17356
17442
|
items: {
|
|
17357
17443
|
type: string;
|
|
17358
17444
|
};
|
|
@@ -17418,8 +17504,10 @@ declare const _default: {
|
|
|
17418
17504
|
'x-fern-sdk-method-name': string;
|
|
17419
17505
|
'x-fern-sdk-return-value': string;
|
|
17420
17506
|
'x-response-key': string;
|
|
17507
|
+
'x-title': string;
|
|
17421
17508
|
};
|
|
17422
17509
|
put: {
|
|
17510
|
+
description: string;
|
|
17423
17511
|
operationId: string;
|
|
17424
17512
|
requestBody: {
|
|
17425
17513
|
content: {
|
|
@@ -17427,26 +17515,31 @@ declare const _default: {
|
|
|
17427
17515
|
schema: {
|
|
17428
17516
|
properties: {
|
|
17429
17517
|
connect_webview_ids: {
|
|
17518
|
+
description: string;
|
|
17430
17519
|
items: {
|
|
17431
17520
|
type: string;
|
|
17432
17521
|
};
|
|
17433
17522
|
type: string;
|
|
17434
17523
|
};
|
|
17435
17524
|
connected_account_ids: {
|
|
17525
|
+
description: string;
|
|
17436
17526
|
items: {
|
|
17437
17527
|
type: string;
|
|
17438
17528
|
};
|
|
17439
17529
|
type: string;
|
|
17440
17530
|
};
|
|
17441
17531
|
expires_at: {
|
|
17532
|
+
description: string;
|
|
17442
17533
|
format: string;
|
|
17443
17534
|
type: string;
|
|
17444
17535
|
};
|
|
17445
17536
|
user_identifier_key: {
|
|
17537
|
+
description: string;
|
|
17446
17538
|
minLength: number;
|
|
17447
17539
|
type: string;
|
|
17448
17540
|
};
|
|
17449
17541
|
user_identity_ids: {
|
|
17542
|
+
description: string;
|
|
17450
17543
|
items: {
|
|
17451
17544
|
type: string;
|
|
17452
17545
|
};
|
|
@@ -17510,10 +17603,12 @@ declare const _default: {
|
|
|
17510
17603
|
tags: string[];
|
|
17511
17604
|
'x-fern-ignore': boolean;
|
|
17512
17605
|
'x-response-key': string;
|
|
17606
|
+
'x-title': string;
|
|
17513
17607
|
};
|
|
17514
17608
|
};
|
|
17515
17609
|
'/client_sessions/delete': {
|
|
17516
17610
|
post: {
|
|
17611
|
+
description: string;
|
|
17517
17612
|
operationId: string;
|
|
17518
17613
|
requestBody: {
|
|
17519
17614
|
content: {
|
|
@@ -17521,6 +17616,7 @@ declare const _default: {
|
|
|
17521
17616
|
schema: {
|
|
17522
17617
|
properties: {
|
|
17523
17618
|
client_session_id: {
|
|
17619
|
+
description: string;
|
|
17524
17620
|
format: string;
|
|
17525
17621
|
type: string;
|
|
17526
17622
|
};
|
|
@@ -17573,10 +17669,12 @@ declare const _default: {
|
|
|
17573
17669
|
'x-fern-sdk-group-name': string[];
|
|
17574
17670
|
'x-fern-sdk-method-name': string;
|
|
17575
17671
|
'x-response-key': null;
|
|
17672
|
+
'x-title': string;
|
|
17576
17673
|
};
|
|
17577
17674
|
};
|
|
17578
17675
|
'/client_sessions/get': {
|
|
17579
17676
|
post: {
|
|
17677
|
+
description: string;
|
|
17580
17678
|
operationId: string;
|
|
17581
17679
|
requestBody: {
|
|
17582
17680
|
content: {
|
|
@@ -17584,9 +17682,11 @@ declare const _default: {
|
|
|
17584
17682
|
schema: {
|
|
17585
17683
|
properties: {
|
|
17586
17684
|
client_session_id: {
|
|
17685
|
+
description: string;
|
|
17587
17686
|
type: string;
|
|
17588
17687
|
};
|
|
17589
17688
|
user_identifier_key: {
|
|
17689
|
+
description: string;
|
|
17590
17690
|
type: string;
|
|
17591
17691
|
};
|
|
17592
17692
|
};
|
|
@@ -17649,10 +17749,12 @@ declare const _default: {
|
|
|
17649
17749
|
'x-fern-sdk-method-name': string;
|
|
17650
17750
|
'x-fern-sdk-return-value': string;
|
|
17651
17751
|
'x-response-key': string;
|
|
17752
|
+
'x-title': string;
|
|
17652
17753
|
};
|
|
17653
17754
|
};
|
|
17654
17755
|
'/client_sessions/get_or_create': {
|
|
17655
17756
|
post: {
|
|
17757
|
+
description: string;
|
|
17656
17758
|
operationId: string;
|
|
17657
17759
|
requestBody: {
|
|
17658
17760
|
content: {
|
|
@@ -17660,26 +17762,31 @@ declare const _default: {
|
|
|
17660
17762
|
schema: {
|
|
17661
17763
|
properties: {
|
|
17662
17764
|
connect_webview_ids: {
|
|
17765
|
+
description: string;
|
|
17663
17766
|
items: {
|
|
17664
17767
|
type: string;
|
|
17665
17768
|
};
|
|
17666
17769
|
type: string;
|
|
17667
17770
|
};
|
|
17668
17771
|
connected_account_ids: {
|
|
17772
|
+
description: string;
|
|
17669
17773
|
items: {
|
|
17670
17774
|
type: string;
|
|
17671
17775
|
};
|
|
17672
17776
|
type: string;
|
|
17673
17777
|
};
|
|
17674
17778
|
expires_at: {
|
|
17779
|
+
description: string;
|
|
17675
17780
|
format: string;
|
|
17676
17781
|
type: string;
|
|
17677
17782
|
};
|
|
17678
17783
|
user_identifier_key: {
|
|
17784
|
+
description: string;
|
|
17679
17785
|
minLength: number;
|
|
17680
17786
|
type: string;
|
|
17681
17787
|
};
|
|
17682
17788
|
user_identity_ids: {
|
|
17789
|
+
description: string;
|
|
17683
17790
|
items: {
|
|
17684
17791
|
type: string;
|
|
17685
17792
|
};
|
|
@@ -17745,10 +17852,12 @@ declare const _default: {
|
|
|
17745
17852
|
'x-fern-sdk-method-name': string;
|
|
17746
17853
|
'x-fern-sdk-return-value': string;
|
|
17747
17854
|
'x-response-key': string;
|
|
17855
|
+
'x-title': string;
|
|
17748
17856
|
};
|
|
17749
17857
|
};
|
|
17750
17858
|
'/client_sessions/grant_access': {
|
|
17751
17859
|
patch: {
|
|
17860
|
+
description: string;
|
|
17752
17861
|
operationId: string;
|
|
17753
17862
|
requestBody: {
|
|
17754
17863
|
content: {
|
|
@@ -17756,24 +17865,29 @@ declare const _default: {
|
|
|
17756
17865
|
schema: {
|
|
17757
17866
|
properties: {
|
|
17758
17867
|
client_session_id: {
|
|
17868
|
+
description: string;
|
|
17759
17869
|
type: string;
|
|
17760
17870
|
};
|
|
17761
17871
|
connect_webview_ids: {
|
|
17872
|
+
description: string;
|
|
17762
17873
|
items: {
|
|
17763
17874
|
type: string;
|
|
17764
17875
|
};
|
|
17765
17876
|
type: string;
|
|
17766
17877
|
};
|
|
17767
17878
|
connected_account_ids: {
|
|
17879
|
+
description: string;
|
|
17768
17880
|
items: {
|
|
17769
17881
|
type: string;
|
|
17770
17882
|
};
|
|
17771
17883
|
type: string;
|
|
17772
17884
|
};
|
|
17773
17885
|
user_identifier_key: {
|
|
17886
|
+
description: string;
|
|
17774
17887
|
type: string;
|
|
17775
17888
|
};
|
|
17776
17889
|
user_identity_ids: {
|
|
17890
|
+
description: string;
|
|
17777
17891
|
items: {
|
|
17778
17892
|
type: string;
|
|
17779
17893
|
};
|
|
@@ -17829,8 +17943,10 @@ declare const _default: {
|
|
|
17829
17943
|
tags: string[];
|
|
17830
17944
|
'x-fern-ignore': boolean;
|
|
17831
17945
|
'x-response-key': null;
|
|
17946
|
+
'x-title': string;
|
|
17832
17947
|
};
|
|
17833
17948
|
post: {
|
|
17949
|
+
description: string;
|
|
17834
17950
|
operationId: string;
|
|
17835
17951
|
requestBody: {
|
|
17836
17952
|
content: {
|
|
@@ -17838,24 +17954,29 @@ declare const _default: {
|
|
|
17838
17954
|
schema: {
|
|
17839
17955
|
properties: {
|
|
17840
17956
|
client_session_id: {
|
|
17957
|
+
description: string;
|
|
17841
17958
|
type: string;
|
|
17842
17959
|
};
|
|
17843
17960
|
connect_webview_ids: {
|
|
17961
|
+
description: string;
|
|
17844
17962
|
items: {
|
|
17845
17963
|
type: string;
|
|
17846
17964
|
};
|
|
17847
17965
|
type: string;
|
|
17848
17966
|
};
|
|
17849
17967
|
connected_account_ids: {
|
|
17968
|
+
description: string;
|
|
17850
17969
|
items: {
|
|
17851
17970
|
type: string;
|
|
17852
17971
|
};
|
|
17853
17972
|
type: string;
|
|
17854
17973
|
};
|
|
17855
17974
|
user_identifier_key: {
|
|
17975
|
+
description: string;
|
|
17856
17976
|
type: string;
|
|
17857
17977
|
};
|
|
17858
17978
|
user_identity_ids: {
|
|
17979
|
+
description: string;
|
|
17859
17980
|
items: {
|
|
17860
17981
|
type: string;
|
|
17861
17982
|
};
|
|
@@ -17912,10 +18033,12 @@ declare const _default: {
|
|
|
17912
18033
|
'x-fern-sdk-group-name': string[];
|
|
17913
18034
|
'x-fern-sdk-method-name': string;
|
|
17914
18035
|
'x-response-key': null;
|
|
18036
|
+
'x-title': string;
|
|
17915
18037
|
};
|
|
17916
18038
|
};
|
|
17917
18039
|
'/client_sessions/list': {
|
|
17918
18040
|
post: {
|
|
18041
|
+
description: string;
|
|
17919
18042
|
operationId: string;
|
|
17920
18043
|
requestBody: {
|
|
17921
18044
|
content: {
|
|
@@ -17923,18 +18046,23 @@ declare const _default: {
|
|
|
17923
18046
|
schema: {
|
|
17924
18047
|
properties: {
|
|
17925
18048
|
client_session_id: {
|
|
18049
|
+
description: string;
|
|
17926
18050
|
type: string;
|
|
17927
18051
|
};
|
|
17928
18052
|
connect_webview_id: {
|
|
18053
|
+
description: string;
|
|
17929
18054
|
type: string;
|
|
17930
18055
|
};
|
|
17931
18056
|
user_identifier_key: {
|
|
18057
|
+
description: string;
|
|
17932
18058
|
type: string;
|
|
17933
18059
|
};
|
|
17934
18060
|
user_identity_id: {
|
|
18061
|
+
description: string;
|
|
17935
18062
|
type: string;
|
|
17936
18063
|
};
|
|
17937
18064
|
without_user_identifier_key: {
|
|
18065
|
+
description: string;
|
|
17938
18066
|
type: string;
|
|
17939
18067
|
};
|
|
17940
18068
|
};
|
|
@@ -17992,10 +18120,12 @@ declare const _default: {
|
|
|
17992
18120
|
'x-fern-sdk-method-name': string;
|
|
17993
18121
|
'x-fern-sdk-return-value': string;
|
|
17994
18122
|
'x-response-key': string;
|
|
18123
|
+
'x-title': string;
|
|
17995
18124
|
};
|
|
17996
18125
|
};
|
|
17997
18126
|
'/client_sessions/revoke': {
|
|
17998
18127
|
post: {
|
|
18128
|
+
description: string;
|
|
17999
18129
|
operationId: string;
|
|
18000
18130
|
requestBody: {
|
|
18001
18131
|
content: {
|
|
@@ -18003,6 +18133,7 @@ declare const _default: {
|
|
|
18003
18133
|
schema: {
|
|
18004
18134
|
properties: {
|
|
18005
18135
|
client_session_id: {
|
|
18136
|
+
description: string;
|
|
18006
18137
|
format: string;
|
|
18007
18138
|
type: string;
|
|
18008
18139
|
};
|
|
@@ -18055,10 +18186,12 @@ declare const _default: {
|
|
|
18055
18186
|
'x-fern-sdk-group-name': string[];
|
|
18056
18187
|
'x-fern-sdk-method-name': string;
|
|
18057
18188
|
'x-response-key': null;
|
|
18189
|
+
'x-title': string;
|
|
18058
18190
|
};
|
|
18059
18191
|
};
|
|
18060
18192
|
'/connect_webviews/create': {
|
|
18061
18193
|
post: {
|
|
18194
|
+
description: string;
|
|
18062
18195
|
operationId: string;
|
|
18063
18196
|
requestBody: {
|
|
18064
18197
|
content: {
|
|
@@ -18066,6 +18199,7 @@ declare const _default: {
|
|
|
18066
18199
|
schema: {
|
|
18067
18200
|
properties: {
|
|
18068
18201
|
accepted_providers: {
|
|
18202
|
+
description: string;
|
|
18069
18203
|
items: {
|
|
18070
18204
|
enum: string[];
|
|
18071
18205
|
type: string;
|
|
@@ -18074,6 +18208,7 @@ declare const _default: {
|
|
|
18074
18208
|
};
|
|
18075
18209
|
automatically_manage_new_devices: {
|
|
18076
18210
|
default: boolean;
|
|
18211
|
+
description: string;
|
|
18077
18212
|
type: string;
|
|
18078
18213
|
};
|
|
18079
18214
|
custom_metadata: {
|
|
@@ -18087,24 +18222,30 @@ declare const _default: {
|
|
|
18087
18222
|
maxLength?: never;
|
|
18088
18223
|
})[];
|
|
18089
18224
|
};
|
|
18225
|
+
description: string;
|
|
18090
18226
|
type: string;
|
|
18091
18227
|
};
|
|
18092
18228
|
custom_redirect_failure_url: {
|
|
18229
|
+
description: string;
|
|
18093
18230
|
type: string;
|
|
18094
18231
|
};
|
|
18095
18232
|
custom_redirect_url: {
|
|
18233
|
+
description: string;
|
|
18096
18234
|
type: string;
|
|
18097
18235
|
};
|
|
18098
18236
|
device_selection_mode: {
|
|
18099
18237
|
enum: string[];
|
|
18100
18238
|
type: string;
|
|
18239
|
+
'x-undocumented': string;
|
|
18101
18240
|
};
|
|
18102
18241
|
provider_category: {
|
|
18242
|
+
description: string;
|
|
18103
18243
|
enum: string[];
|
|
18104
18244
|
type: string;
|
|
18105
18245
|
};
|
|
18106
18246
|
wait_for_device_creation: {
|
|
18107
18247
|
default: boolean;
|
|
18248
|
+
description: string;
|
|
18108
18249
|
type: string;
|
|
18109
18250
|
};
|
|
18110
18251
|
};
|
|
@@ -18167,10 +18308,12 @@ declare const _default: {
|
|
|
18167
18308
|
'x-fern-sdk-method-name': string;
|
|
18168
18309
|
'x-fern-sdk-return-value': string;
|
|
18169
18310
|
'x-response-key': string;
|
|
18311
|
+
'x-title': string;
|
|
18170
18312
|
};
|
|
18171
18313
|
};
|
|
18172
18314
|
'/connect_webviews/delete': {
|
|
18173
18315
|
post: {
|
|
18316
|
+
description: string;
|
|
18174
18317
|
operationId: string;
|
|
18175
18318
|
requestBody: {
|
|
18176
18319
|
content: {
|
|
@@ -18178,6 +18321,7 @@ declare const _default: {
|
|
|
18178
18321
|
schema: {
|
|
18179
18322
|
properties: {
|
|
18180
18323
|
connect_webview_id: {
|
|
18324
|
+
description: string;
|
|
18181
18325
|
format: string;
|
|
18182
18326
|
type: string;
|
|
18183
18327
|
};
|
|
@@ -18230,10 +18374,12 @@ declare const _default: {
|
|
|
18230
18374
|
'x-fern-sdk-group-name': string[];
|
|
18231
18375
|
'x-fern-sdk-method-name': string;
|
|
18232
18376
|
'x-response-key': null;
|
|
18377
|
+
'x-title': string;
|
|
18233
18378
|
};
|
|
18234
18379
|
};
|
|
18235
18380
|
'/connect_webviews/get': {
|
|
18236
18381
|
post: {
|
|
18382
|
+
description: string;
|
|
18237
18383
|
operationId: string;
|
|
18238
18384
|
requestBody: {
|
|
18239
18385
|
content: {
|
|
@@ -18241,6 +18387,7 @@ declare const _default: {
|
|
|
18241
18387
|
schema: {
|
|
18242
18388
|
properties: {
|
|
18243
18389
|
connect_webview_id: {
|
|
18390
|
+
description: string;
|
|
18244
18391
|
format: string;
|
|
18245
18392
|
type: string;
|
|
18246
18393
|
};
|
|
@@ -18305,10 +18452,12 @@ declare const _default: {
|
|
|
18305
18452
|
'x-fern-sdk-method-name': string;
|
|
18306
18453
|
'x-fern-sdk-return-value': string;
|
|
18307
18454
|
'x-response-key': string;
|
|
18455
|
+
'x-title': string;
|
|
18308
18456
|
};
|
|
18309
18457
|
};
|
|
18310
18458
|
'/connect_webviews/list': {
|
|
18311
18459
|
post: {
|
|
18460
|
+
description: string;
|
|
18312
18461
|
operationId: string;
|
|
18313
18462
|
requestBody: {
|
|
18314
18463
|
content: {
|
|
@@ -18326,6 +18475,7 @@ declare const _default: {
|
|
|
18326
18475
|
};
|
|
18327
18476
|
limit: {
|
|
18328
18477
|
default: number;
|
|
18478
|
+
description: string;
|
|
18329
18479
|
format: string;
|
|
18330
18480
|
type: string;
|
|
18331
18481
|
};
|
|
@@ -18396,10 +18546,12 @@ declare const _default: {
|
|
|
18396
18546
|
'x-fern-sdk-method-name': string;
|
|
18397
18547
|
'x-fern-sdk-return-value': string;
|
|
18398
18548
|
'x-response-key': string;
|
|
18549
|
+
'x-title': string;
|
|
18399
18550
|
};
|
|
18400
18551
|
};
|
|
18401
18552
|
'/connected_accounts/delete': {
|
|
18402
18553
|
post: {
|
|
18554
|
+
description: string;
|
|
18403
18555
|
operationId: string;
|
|
18404
18556
|
requestBody: {
|
|
18405
18557
|
content: {
|
|
@@ -18407,12 +18559,14 @@ declare const _default: {
|
|
|
18407
18559
|
schema: {
|
|
18408
18560
|
properties: {
|
|
18409
18561
|
connected_account_id: {
|
|
18562
|
+
description: string;
|
|
18410
18563
|
format: string;
|
|
18411
18564
|
type: string;
|
|
18412
18565
|
};
|
|
18413
18566
|
sync: {
|
|
18414
18567
|
default: boolean;
|
|
18415
18568
|
type: string;
|
|
18569
|
+
'x-undocumented': string;
|
|
18416
18570
|
};
|
|
18417
18571
|
};
|
|
18418
18572
|
required: string[];
|
|
@@ -18468,6 +18622,7 @@ declare const _default: {
|
|
|
18468
18622
|
};
|
|
18469
18623
|
'/connected_accounts/get': {
|
|
18470
18624
|
post: {
|
|
18625
|
+
description: string;
|
|
18471
18626
|
operationId: string;
|
|
18472
18627
|
requestBody: {
|
|
18473
18628
|
content: {
|
|
@@ -18476,6 +18631,7 @@ declare const _default: {
|
|
|
18476
18631
|
oneOf: ({
|
|
18477
18632
|
properties: {
|
|
18478
18633
|
connected_account_id: {
|
|
18634
|
+
description: string;
|
|
18479
18635
|
format: string;
|
|
18480
18636
|
type: string;
|
|
18481
18637
|
};
|
|
@@ -18486,6 +18642,7 @@ declare const _default: {
|
|
|
18486
18642
|
} | {
|
|
18487
18643
|
properties: {
|
|
18488
18644
|
email: {
|
|
18645
|
+
description: string;
|
|
18489
18646
|
format: string;
|
|
18490
18647
|
type: string;
|
|
18491
18648
|
};
|
|
@@ -18557,6 +18714,7 @@ declare const _default: {
|
|
|
18557
18714
|
};
|
|
18558
18715
|
'/connected_accounts/list': {
|
|
18559
18716
|
post: {
|
|
18717
|
+
description: string;
|
|
18560
18718
|
operationId: string;
|
|
18561
18719
|
requestBody: {
|
|
18562
18720
|
content: {
|
|
@@ -18658,6 +18816,7 @@ declare const _default: {
|
|
|
18658
18816
|
};
|
|
18659
18817
|
'/connected_accounts/update': {
|
|
18660
18818
|
post: {
|
|
18819
|
+
description: string;
|
|
18661
18820
|
operationId: string;
|
|
18662
18821
|
requestBody: {
|
|
18663
18822
|
content: {
|
|
@@ -18665,9 +18824,11 @@ declare const _default: {
|
|
|
18665
18824
|
schema: {
|
|
18666
18825
|
properties: {
|
|
18667
18826
|
automatically_manage_new_devices: {
|
|
18827
|
+
description: string;
|
|
18668
18828
|
type: string;
|
|
18669
18829
|
};
|
|
18670
18830
|
connected_account_id: {
|
|
18831
|
+
description: string;
|
|
18671
18832
|
format: string;
|
|
18672
18833
|
type: string;
|
|
18673
18834
|
};
|
|
@@ -18682,6 +18843,7 @@ declare const _default: {
|
|
|
18682
18843
|
maxLength?: never;
|
|
18683
18844
|
})[];
|
|
18684
18845
|
};
|
|
18846
|
+
description: string;
|
|
18685
18847
|
type: string;
|
|
18686
18848
|
};
|
|
18687
18849
|
};
|
|
@@ -18741,6 +18903,7 @@ declare const _default: {
|
|
|
18741
18903
|
};
|
|
18742
18904
|
'/devices/delete': {
|
|
18743
18905
|
post: {
|
|
18906
|
+
description: string;
|
|
18744
18907
|
operationId: string;
|
|
18745
18908
|
requestBody: {
|
|
18746
18909
|
content: {
|
|
@@ -18748,6 +18911,7 @@ declare const _default: {
|
|
|
18748
18911
|
schema: {
|
|
18749
18912
|
properties: {
|
|
18750
18913
|
device_id: {
|
|
18914
|
+
description: string;
|
|
18751
18915
|
format: string;
|
|
18752
18916
|
type: string;
|
|
18753
18917
|
};
|
|
@@ -18801,11 +18965,13 @@ declare const _default: {
|
|
|
18801
18965
|
'x-fern-sdk-group-name': string[];
|
|
18802
18966
|
'x-fern-sdk-method-name': string;
|
|
18803
18967
|
'x-response-key': null;
|
|
18968
|
+
'x-title': string;
|
|
18804
18969
|
'x-undocumented': string;
|
|
18805
18970
|
};
|
|
18806
18971
|
};
|
|
18807
18972
|
'/devices/get': {
|
|
18808
18973
|
post: {
|
|
18974
|
+
description: string;
|
|
18809
18975
|
operationId: string;
|
|
18810
18976
|
requestBody: {
|
|
18811
18977
|
content: {
|
|
@@ -18813,10 +18979,12 @@ declare const _default: {
|
|
|
18813
18979
|
schema: {
|
|
18814
18980
|
properties: {
|
|
18815
18981
|
device_id: {
|
|
18982
|
+
description: string;
|
|
18816
18983
|
format: string;
|
|
18817
18984
|
type: string;
|
|
18818
18985
|
};
|
|
18819
18986
|
name: {
|
|
18987
|
+
description: string;
|
|
18820
18988
|
type: string;
|
|
18821
18989
|
};
|
|
18822
18990
|
};
|
|
@@ -18879,6 +19047,7 @@ declare const _default: {
|
|
|
18879
19047
|
'x-fern-sdk-method-name': string;
|
|
18880
19048
|
'x-fern-sdk-return-value': string;
|
|
18881
19049
|
'x-response-key': string;
|
|
19050
|
+
'x-title': string;
|
|
18882
19051
|
};
|
|
18883
19052
|
};
|
|
18884
19053
|
'/devices/list': {
|
|
@@ -18997,6 +19166,7 @@ declare const _default: {
|
|
|
18997
19166
|
type: string;
|
|
18998
19167
|
};
|
|
18999
19168
|
unstable_location_id: {
|
|
19169
|
+
description: string;
|
|
19000
19170
|
format: string;
|
|
19001
19171
|
nullable: boolean;
|
|
19002
19172
|
type: string;
|
|
@@ -19077,6 +19247,7 @@ declare const _default: {
|
|
|
19077
19247
|
};
|
|
19078
19248
|
'/devices/list_device_providers': {
|
|
19079
19249
|
post: {
|
|
19250
|
+
description: string;
|
|
19080
19251
|
operationId: string;
|
|
19081
19252
|
requestBody: {
|
|
19082
19253
|
content: {
|
|
@@ -19084,6 +19255,7 @@ declare const _default: {
|
|
|
19084
19255
|
schema: {
|
|
19085
19256
|
properties: {
|
|
19086
19257
|
provider_category: {
|
|
19258
|
+
description: string;
|
|
19087
19259
|
enum: string[];
|
|
19088
19260
|
type: string;
|
|
19089
19261
|
};
|
|
@@ -19150,10 +19322,12 @@ declare const _default: {
|
|
|
19150
19322
|
'x-fern-sdk-method-name': string;
|
|
19151
19323
|
'x-fern-sdk-return-value': string;
|
|
19152
19324
|
'x-response-key': string;
|
|
19325
|
+
'x-title': string;
|
|
19153
19326
|
};
|
|
19154
19327
|
};
|
|
19155
19328
|
'/devices/simulate/connect': {
|
|
19156
19329
|
post: {
|
|
19330
|
+
description: string;
|
|
19157
19331
|
operationId: string;
|
|
19158
19332
|
requestBody: {
|
|
19159
19333
|
content: {
|
|
@@ -19161,6 +19335,7 @@ declare const _default: {
|
|
|
19161
19335
|
schema: {
|
|
19162
19336
|
properties: {
|
|
19163
19337
|
device_id: {
|
|
19338
|
+
description: string;
|
|
19164
19339
|
format: string;
|
|
19165
19340
|
type: string;
|
|
19166
19341
|
};
|
|
@@ -19213,10 +19388,12 @@ declare const _default: {
|
|
|
19213
19388
|
'x-fern-sdk-group-name': string[];
|
|
19214
19389
|
'x-fern-sdk-method-name': string;
|
|
19215
19390
|
'x-response-key': null;
|
|
19391
|
+
'x-title': string;
|
|
19216
19392
|
};
|
|
19217
19393
|
};
|
|
19218
19394
|
'/devices/simulate/disconnect': {
|
|
19219
19395
|
post: {
|
|
19396
|
+
description: string;
|
|
19220
19397
|
operationId: string;
|
|
19221
19398
|
requestBody: {
|
|
19222
19399
|
content: {
|
|
@@ -19224,6 +19401,7 @@ declare const _default: {
|
|
|
19224
19401
|
schema: {
|
|
19225
19402
|
properties: {
|
|
19226
19403
|
device_id: {
|
|
19404
|
+
description: string;
|
|
19227
19405
|
format: string;
|
|
19228
19406
|
type: string;
|
|
19229
19407
|
};
|
|
@@ -19276,10 +19454,12 @@ declare const _default: {
|
|
|
19276
19454
|
'x-fern-sdk-group-name': string[];
|
|
19277
19455
|
'x-fern-sdk-method-name': string;
|
|
19278
19456
|
'x-response-key': null;
|
|
19457
|
+
'x-title': string;
|
|
19279
19458
|
};
|
|
19280
19459
|
};
|
|
19281
19460
|
'/devices/simulate/remove': {
|
|
19282
19461
|
post: {
|
|
19462
|
+
description: string;
|
|
19283
19463
|
operationId: string;
|
|
19284
19464
|
requestBody: {
|
|
19285
19465
|
content: {
|
|
@@ -19287,6 +19467,7 @@ declare const _default: {
|
|
|
19287
19467
|
schema: {
|
|
19288
19468
|
properties: {
|
|
19289
19469
|
device_id: {
|
|
19470
|
+
description: string;
|
|
19290
19471
|
format: string;
|
|
19291
19472
|
type: string;
|
|
19292
19473
|
};
|
|
@@ -19339,10 +19520,12 @@ declare const _default: {
|
|
|
19339
19520
|
'x-fern-sdk-group-name': string[];
|
|
19340
19521
|
'x-fern-sdk-method-name': string;
|
|
19341
19522
|
'x-response-key': null;
|
|
19523
|
+
'x-title': string;
|
|
19342
19524
|
};
|
|
19343
19525
|
};
|
|
19344
19526
|
'/devices/unmanaged/get': {
|
|
19345
19527
|
post: {
|
|
19528
|
+
description: string;
|
|
19346
19529
|
operationId: string;
|
|
19347
19530
|
requestBody: {
|
|
19348
19531
|
content: {
|
|
@@ -19350,10 +19533,12 @@ declare const _default: {
|
|
|
19350
19533
|
schema: {
|
|
19351
19534
|
properties: {
|
|
19352
19535
|
device_id: {
|
|
19536
|
+
description: string;
|
|
19353
19537
|
format: string;
|
|
19354
19538
|
type: string;
|
|
19355
19539
|
};
|
|
19356
19540
|
name: {
|
|
19541
|
+
description: string;
|
|
19357
19542
|
type: string;
|
|
19358
19543
|
};
|
|
19359
19544
|
};
|
|
@@ -19416,10 +19601,12 @@ declare const _default: {
|
|
|
19416
19601
|
'x-fern-sdk-method-name': string;
|
|
19417
19602
|
'x-fern-sdk-return-value': string;
|
|
19418
19603
|
'x-response-key': string;
|
|
19604
|
+
'x-title': string;
|
|
19419
19605
|
};
|
|
19420
19606
|
};
|
|
19421
19607
|
'/devices/unmanaged/list': {
|
|
19422
19608
|
post: {
|
|
19609
|
+
description: string;
|
|
19423
19610
|
operationId: string;
|
|
19424
19611
|
requestBody: {
|
|
19425
19612
|
content: {
|
|
@@ -19533,6 +19720,7 @@ declare const _default: {
|
|
|
19533
19720
|
type: string;
|
|
19534
19721
|
};
|
|
19535
19722
|
unstable_location_id: {
|
|
19723
|
+
description: string;
|
|
19536
19724
|
format: string;
|
|
19537
19725
|
nullable: boolean;
|
|
19538
19726
|
type: string;
|
|
@@ -19597,10 +19785,12 @@ declare const _default: {
|
|
|
19597
19785
|
'x-fern-sdk-method-name': string;
|
|
19598
19786
|
'x-fern-sdk-return-value': string;
|
|
19599
19787
|
'x-response-key': string;
|
|
19788
|
+
'x-title': string;
|
|
19600
19789
|
};
|
|
19601
19790
|
};
|
|
19602
19791
|
'/devices/unmanaged/update': {
|
|
19603
19792
|
patch: {
|
|
19793
|
+
description: string;
|
|
19604
19794
|
operationId: string;
|
|
19605
19795
|
requestBody: {
|
|
19606
19796
|
content: {
|
|
@@ -19608,10 +19798,12 @@ declare const _default: {
|
|
|
19608
19798
|
schema: {
|
|
19609
19799
|
properties: {
|
|
19610
19800
|
device_id: {
|
|
19801
|
+
description: string;
|
|
19611
19802
|
format: string;
|
|
19612
19803
|
type: string;
|
|
19613
19804
|
};
|
|
19614
19805
|
is_managed: {
|
|
19806
|
+
description: string;
|
|
19615
19807
|
enum: boolean[];
|
|
19616
19808
|
type: string;
|
|
19617
19809
|
};
|
|
@@ -19663,8 +19855,10 @@ declare const _default: {
|
|
|
19663
19855
|
tags: string[];
|
|
19664
19856
|
'x-fern-ignore': boolean;
|
|
19665
19857
|
'x-response-key': null;
|
|
19858
|
+
'x-title': string;
|
|
19666
19859
|
};
|
|
19667
19860
|
post: {
|
|
19861
|
+
description: string;
|
|
19668
19862
|
operationId: string;
|
|
19669
19863
|
requestBody: {
|
|
19670
19864
|
content: {
|
|
@@ -19672,10 +19866,12 @@ declare const _default: {
|
|
|
19672
19866
|
schema: {
|
|
19673
19867
|
properties: {
|
|
19674
19868
|
device_id: {
|
|
19869
|
+
description: string;
|
|
19675
19870
|
format: string;
|
|
19676
19871
|
type: string;
|
|
19677
19872
|
};
|
|
19678
19873
|
is_managed: {
|
|
19874
|
+
description: string;
|
|
19679
19875
|
enum: boolean[];
|
|
19680
19876
|
type: string;
|
|
19681
19877
|
};
|
|
@@ -19728,10 +19924,12 @@ declare const _default: {
|
|
|
19728
19924
|
'x-fern-sdk-group-name': string[];
|
|
19729
19925
|
'x-fern-sdk-method-name': string;
|
|
19730
19926
|
'x-response-key': null;
|
|
19927
|
+
'x-title': string;
|
|
19731
19928
|
};
|
|
19732
19929
|
};
|
|
19733
19930
|
'/devices/update': {
|
|
19734
19931
|
patch: {
|
|
19932
|
+
description: string;
|
|
19735
19933
|
operationId: string;
|
|
19736
19934
|
requestBody: {
|
|
19737
19935
|
content: {
|
|
@@ -19749,23 +19947,28 @@ declare const _default: {
|
|
|
19749
19947
|
maxLength?: never;
|
|
19750
19948
|
})[];
|
|
19751
19949
|
};
|
|
19950
|
+
description: string;
|
|
19752
19951
|
type: string;
|
|
19753
19952
|
};
|
|
19754
19953
|
device_id: {
|
|
19954
|
+
description: string;
|
|
19755
19955
|
format: string;
|
|
19756
19956
|
type: string;
|
|
19757
19957
|
};
|
|
19758
19958
|
is_managed: {
|
|
19759
19959
|
default: boolean;
|
|
19960
|
+
description: string;
|
|
19760
19961
|
type: string;
|
|
19761
19962
|
};
|
|
19762
19963
|
name: {
|
|
19964
|
+
description: string;
|
|
19763
19965
|
nullable: boolean;
|
|
19764
19966
|
type: string;
|
|
19765
19967
|
};
|
|
19766
19968
|
properties: {
|
|
19767
19969
|
properties: {
|
|
19768
19970
|
name: {
|
|
19971
|
+
description: string;
|
|
19769
19972
|
nullable: boolean;
|
|
19770
19973
|
type: string;
|
|
19771
19974
|
};
|
|
@@ -19828,8 +20031,10 @@ declare const _default: {
|
|
|
19828
20031
|
tags: string[];
|
|
19829
20032
|
'x-fern-ignore': boolean;
|
|
19830
20033
|
'x-response-key': null;
|
|
20034
|
+
'x-title': string;
|
|
19831
20035
|
};
|
|
19832
20036
|
post: {
|
|
20037
|
+
description: string;
|
|
19833
20038
|
operationId: string;
|
|
19834
20039
|
requestBody: {
|
|
19835
20040
|
content: {
|
|
@@ -19847,23 +20052,28 @@ declare const _default: {
|
|
|
19847
20052
|
maxLength?: never;
|
|
19848
20053
|
})[];
|
|
19849
20054
|
};
|
|
20055
|
+
description: string;
|
|
19850
20056
|
type: string;
|
|
19851
20057
|
};
|
|
19852
20058
|
device_id: {
|
|
20059
|
+
description: string;
|
|
19853
20060
|
format: string;
|
|
19854
20061
|
type: string;
|
|
19855
20062
|
};
|
|
19856
20063
|
is_managed: {
|
|
19857
20064
|
default: boolean;
|
|
20065
|
+
description: string;
|
|
19858
20066
|
type: string;
|
|
19859
20067
|
};
|
|
19860
20068
|
name: {
|
|
20069
|
+
description: string;
|
|
19861
20070
|
nullable: boolean;
|
|
19862
20071
|
type: string;
|
|
19863
20072
|
};
|
|
19864
20073
|
properties: {
|
|
19865
20074
|
properties: {
|
|
19866
20075
|
name: {
|
|
20076
|
+
description: string;
|
|
19867
20077
|
nullable: boolean;
|
|
19868
20078
|
type: string;
|
|
19869
20079
|
};
|
|
@@ -19927,10 +20137,12 @@ declare const _default: {
|
|
|
19927
20137
|
'x-fern-sdk-group-name': string[];
|
|
19928
20138
|
'x-fern-sdk-method-name': string;
|
|
19929
20139
|
'x-response-key': null;
|
|
20140
|
+
'x-title': string;
|
|
19930
20141
|
};
|
|
19931
20142
|
};
|
|
19932
20143
|
'/events/get': {
|
|
19933
20144
|
post: {
|
|
20145
|
+
description: string;
|
|
19934
20146
|
operationId: string;
|
|
19935
20147
|
requestBody: {
|
|
19936
20148
|
content: {
|
|
@@ -20011,10 +20223,12 @@ declare const _default: {
|
|
|
20011
20223
|
'x-fern-sdk-method-name': string;
|
|
20012
20224
|
'x-fern-sdk-return-value': string;
|
|
20013
20225
|
'x-response-key': string;
|
|
20226
|
+
'x-title': string;
|
|
20014
20227
|
};
|
|
20015
20228
|
};
|
|
20016
20229
|
'/events/list': {
|
|
20017
20230
|
post: {
|
|
20231
|
+
description: string;
|
|
20018
20232
|
operationId: string;
|
|
20019
20233
|
requestBody: {
|
|
20020
20234
|
content: {
|
|
@@ -20176,6 +20390,7 @@ declare const _default: {
|
|
|
20176
20390
|
'x-fern-sdk-method-name': string;
|
|
20177
20391
|
'x-fern-sdk-return-value': string;
|
|
20178
20392
|
'x-response-key': string;
|
|
20393
|
+
'x-title': string;
|
|
20179
20394
|
};
|
|
20180
20395
|
};
|
|
20181
20396
|
'/locks/get': {
|
|
@@ -20360,6 +20575,7 @@ declare const _default: {
|
|
|
20360
20575
|
type: string;
|
|
20361
20576
|
};
|
|
20362
20577
|
unstable_location_id: {
|
|
20578
|
+
description: string;
|
|
20363
20579
|
format: string;
|
|
20364
20580
|
nullable: boolean;
|
|
20365
20581
|
type: string;
|
|
@@ -20973,6 +21189,7 @@ declare const _default: {
|
|
|
20973
21189
|
type: string;
|
|
20974
21190
|
};
|
|
20975
21191
|
unstable_location_id: {
|
|
21192
|
+
description: string;
|
|
20976
21193
|
format: string;
|
|
20977
21194
|
nullable: boolean;
|
|
20978
21195
|
type: string;
|
|
@@ -24464,6 +24681,7 @@ declare const _default: {
|
|
|
24464
24681
|
type: string;
|
|
24465
24682
|
};
|
|
24466
24683
|
unstable_location_id: {
|
|
24684
|
+
description: string;
|
|
24467
24685
|
format: string;
|
|
24468
24686
|
nullable: boolean;
|
|
24469
24687
|
type: string;
|
|
@@ -28318,6 +28536,168 @@ declare const _default: {
|
|
|
28318
28536
|
'x-undocumented': string;
|
|
28319
28537
|
};
|
|
28320
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
|
+
};
|
|
28321
28701
|
'/user_identities/add_acs_user': {
|
|
28322
28702
|
post: {
|
|
28323
28703
|
description: string;
|
|
@@ -30724,6 +31104,7 @@ declare const _default: {
|
|
|
30724
31104
|
};
|
|
30725
31105
|
'/workspaces/reset_sandbox': {
|
|
30726
31106
|
post: {
|
|
31107
|
+
description: string;
|
|
30727
31108
|
operationId: string;
|
|
30728
31109
|
responses: {
|
|
30729
31110
|
200: {
|