@seamapi/types 1.399.0 → 1.400.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +889 -297
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +848 -179
- 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 +807 -258
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +467 -179
- 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 +1010 -258
- package/src/lib/seam/connect/route-types.ts +469 -179
|
@@ -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': {
|
|
@@ -12393,6 +12406,11 @@ declare const _default: {
|
|
|
12393
12406
|
format: string;
|
|
12394
12407
|
type: string;
|
|
12395
12408
|
};
|
|
12409
|
+
user_identity_id: {
|
|
12410
|
+
description: string;
|
|
12411
|
+
format: string;
|
|
12412
|
+
type: string;
|
|
12413
|
+
};
|
|
12396
12414
|
};
|
|
12397
12415
|
required: string[];
|
|
12398
12416
|
type: string;
|
|
@@ -12462,6 +12480,11 @@ declare const _default: {
|
|
|
12462
12480
|
format: string;
|
|
12463
12481
|
type: string;
|
|
12464
12482
|
};
|
|
12483
|
+
user_identity_id: {
|
|
12484
|
+
description: string;
|
|
12485
|
+
format: string;
|
|
12486
|
+
type: string;
|
|
12487
|
+
};
|
|
12465
12488
|
};
|
|
12466
12489
|
required: string[];
|
|
12467
12490
|
type: string;
|
|
@@ -12954,6 +12977,7 @@ declare const _default: {
|
|
|
12954
12977
|
'x-fern-sdk-method-name': string;
|
|
12955
12978
|
'x-fern-sdk-return-value': string;
|
|
12956
12979
|
'x-response-key': string;
|
|
12980
|
+
'x-title': string;
|
|
12957
12981
|
'x-undocumented': string;
|
|
12958
12982
|
};
|
|
12959
12983
|
};
|
|
@@ -13031,11 +13055,13 @@ declare const _default: {
|
|
|
13031
13055
|
'x-fern-sdk-method-name': string;
|
|
13032
13056
|
'x-fern-sdk-return-value': string;
|
|
13033
13057
|
'x-response-key': string;
|
|
13058
|
+
'x-title': string;
|
|
13034
13059
|
'x-undocumented': string;
|
|
13035
13060
|
};
|
|
13036
13061
|
};
|
|
13037
13062
|
'/acs/credential_pools/list': {
|
|
13038
13063
|
post: {
|
|
13064
|
+
description: string;
|
|
13039
13065
|
operationId: string;
|
|
13040
13066
|
requestBody: {
|
|
13041
13067
|
content: {
|
|
@@ -13043,6 +13069,7 @@ declare const _default: {
|
|
|
13043
13069
|
schema: {
|
|
13044
13070
|
properties: {
|
|
13045
13071
|
acs_system_id: {
|
|
13072
|
+
description: string;
|
|
13046
13073
|
format: string;
|
|
13047
13074
|
type: string;
|
|
13048
13075
|
};
|
|
@@ -13103,11 +13130,13 @@ declare const _default: {
|
|
|
13103
13130
|
'x-fern-sdk-method-name': string;
|
|
13104
13131
|
'x-fern-sdk-return-value': string;
|
|
13105
13132
|
'x-response-key': string;
|
|
13133
|
+
'x-title': string;
|
|
13106
13134
|
'x-undocumented': string;
|
|
13107
13135
|
};
|
|
13108
13136
|
};
|
|
13109
13137
|
'/acs/credential_provisioning_automations/launch': {
|
|
13110
13138
|
post: {
|
|
13139
|
+
description: string;
|
|
13111
13140
|
operationId: string;
|
|
13112
13141
|
requestBody: {
|
|
13113
13142
|
content: {
|
|
@@ -13115,21 +13144,26 @@ declare const _default: {
|
|
|
13115
13144
|
schema: {
|
|
13116
13145
|
properties: {
|
|
13117
13146
|
acs_credential_pool_id: {
|
|
13147
|
+
description: string;
|
|
13118
13148
|
format: string;
|
|
13119
13149
|
type: string;
|
|
13120
13150
|
};
|
|
13121
13151
|
create_credential_manager_user: {
|
|
13152
|
+
description: string;
|
|
13122
13153
|
type: string;
|
|
13123
13154
|
};
|
|
13124
13155
|
credential_manager_acs_system_id: {
|
|
13156
|
+
description: string;
|
|
13125
13157
|
format: string;
|
|
13126
13158
|
type: string;
|
|
13127
13159
|
};
|
|
13128
13160
|
credential_manager_acs_user_id: {
|
|
13161
|
+
description: string;
|
|
13129
13162
|
format: string;
|
|
13130
13163
|
type: string;
|
|
13131
13164
|
};
|
|
13132
13165
|
user_identity_id: {
|
|
13166
|
+
description: string;
|
|
13133
13167
|
format: string;
|
|
13134
13168
|
type: string;
|
|
13135
13169
|
};
|
|
@@ -13187,6 +13221,7 @@ declare const _default: {
|
|
|
13187
13221
|
'x-fern-sdk-method-name': string;
|
|
13188
13222
|
'x-fern-sdk-return-value': string;
|
|
13189
13223
|
'x-response-key': string;
|
|
13224
|
+
'x-title': string;
|
|
13190
13225
|
'x-undocumented': string;
|
|
13191
13226
|
};
|
|
13192
13227
|
};
|
|
@@ -13414,9 +13449,11 @@ declare const _default: {
|
|
|
13414
13449
|
description: string;
|
|
13415
13450
|
properties: {
|
|
13416
13451
|
assign_new_key: {
|
|
13452
|
+
description: string;
|
|
13417
13453
|
type: string;
|
|
13418
13454
|
};
|
|
13419
13455
|
update_current_key: {
|
|
13456
|
+
description: string;
|
|
13420
13457
|
type: string;
|
|
13421
13458
|
};
|
|
13422
13459
|
};
|
|
@@ -14211,6 +14248,7 @@ declare const _default: {
|
|
|
14211
14248
|
'application/json': {
|
|
14212
14249
|
schema: {
|
|
14213
14250
|
oneOf: ({
|
|
14251
|
+
description: string;
|
|
14214
14252
|
properties: {
|
|
14215
14253
|
acs_user_id: {
|
|
14216
14254
|
description: string;
|
|
@@ -14223,6 +14261,7 @@ declare const _default: {
|
|
|
14223
14261
|
required: string[];
|
|
14224
14262
|
type: string;
|
|
14225
14263
|
} | {
|
|
14264
|
+
description: string;
|
|
14226
14265
|
properties: {
|
|
14227
14266
|
acs_system_id: {
|
|
14228
14267
|
description: string;
|
|
@@ -14235,6 +14274,7 @@ declare const _default: {
|
|
|
14235
14274
|
required: string[];
|
|
14236
14275
|
type: string;
|
|
14237
14276
|
} | {
|
|
14277
|
+
description: string;
|
|
14238
14278
|
properties: {
|
|
14239
14279
|
acs_system_id: {
|
|
14240
14280
|
description: string;
|
|
@@ -14251,6 +14291,7 @@ declare const _default: {
|
|
|
14251
14291
|
required: string[];
|
|
14252
14292
|
type: string;
|
|
14253
14293
|
} | {
|
|
14294
|
+
description: string;
|
|
14254
14295
|
properties: {
|
|
14255
14296
|
user_identity_id: {
|
|
14256
14297
|
description: string;
|
|
@@ -15265,6 +15306,7 @@ declare const _default: {
|
|
|
15265
15306
|
schema: {
|
|
15266
15307
|
properties: {
|
|
15267
15308
|
acs_entrance_id: {
|
|
15309
|
+
description: string;
|
|
15268
15310
|
format: string;
|
|
15269
15311
|
type: string;
|
|
15270
15312
|
};
|
|
@@ -15334,6 +15376,7 @@ declare const _default: {
|
|
|
15334
15376
|
};
|
|
15335
15377
|
'/acs/entrances/grant_access': {
|
|
15336
15378
|
post: {
|
|
15379
|
+
description: string;
|
|
15337
15380
|
operationId: string;
|
|
15338
15381
|
requestBody: {
|
|
15339
15382
|
content: {
|
|
@@ -15341,10 +15384,12 @@ declare const _default: {
|
|
|
15341
15384
|
schema: {
|
|
15342
15385
|
properties: {
|
|
15343
15386
|
acs_entrance_id: {
|
|
15387
|
+
description: string;
|
|
15344
15388
|
format: string;
|
|
15345
15389
|
type: string;
|
|
15346
15390
|
};
|
|
15347
15391
|
acs_user_id: {
|
|
15392
|
+
description: string;
|
|
15348
15393
|
format: string;
|
|
15349
15394
|
type: string;
|
|
15350
15395
|
};
|
|
@@ -15410,14 +15455,17 @@ declare const _default: {
|
|
|
15410
15455
|
schema: {
|
|
15411
15456
|
properties: {
|
|
15412
15457
|
acs_credential_id: {
|
|
15458
|
+
description: string;
|
|
15413
15459
|
format: string;
|
|
15414
15460
|
type: string;
|
|
15415
15461
|
};
|
|
15416
15462
|
acs_system_id: {
|
|
15463
|
+
description: string;
|
|
15417
15464
|
format: string;
|
|
15418
15465
|
type: string;
|
|
15419
15466
|
};
|
|
15420
15467
|
location_id: {
|
|
15468
|
+
description: string;
|
|
15421
15469
|
format: string;
|
|
15422
15470
|
nullable: boolean;
|
|
15423
15471
|
type: string;
|
|
@@ -15499,10 +15547,12 @@ declare const _default: {
|
|
|
15499
15547
|
schema: {
|
|
15500
15548
|
properties: {
|
|
15501
15549
|
acs_entrance_id: {
|
|
15550
|
+
description: string;
|
|
15502
15551
|
format: string;
|
|
15503
15552
|
type: string;
|
|
15504
15553
|
};
|
|
15505
15554
|
include_if: {
|
|
15555
|
+
description: string;
|
|
15506
15556
|
items: {
|
|
15507
15557
|
enum: string[];
|
|
15508
15558
|
type: string;
|
|
@@ -15951,11 +16001,13 @@ declare const _default: {
|
|
|
15951
16001
|
description: string;
|
|
15952
16002
|
properties: {
|
|
15953
16003
|
ends_at: {
|
|
16004
|
+
description: string;
|
|
15954
16005
|
format: string;
|
|
15955
16006
|
nullable: boolean;
|
|
15956
16007
|
type: string;
|
|
15957
16008
|
};
|
|
15958
16009
|
starts_at: {
|
|
16010
|
+
description: string;
|
|
15959
16011
|
format: string;
|
|
15960
16012
|
type: string;
|
|
15961
16013
|
};
|
|
@@ -16207,6 +16259,7 @@ declare const _default: {
|
|
|
16207
16259
|
type: string;
|
|
16208
16260
|
};
|
|
16209
16261
|
created_before: {
|
|
16262
|
+
description: string;
|
|
16210
16263
|
format: string;
|
|
16211
16264
|
type: string;
|
|
16212
16265
|
};
|
|
@@ -16595,6 +16648,7 @@ declare const _default: {
|
|
|
16595
16648
|
};
|
|
16596
16649
|
'/acs/users/unmanaged/get': {
|
|
16597
16650
|
post: {
|
|
16651
|
+
description: string;
|
|
16598
16652
|
operationId: string;
|
|
16599
16653
|
requestBody: {
|
|
16600
16654
|
content: {
|
|
@@ -16602,6 +16656,7 @@ declare const _default: {
|
|
|
16602
16656
|
schema: {
|
|
16603
16657
|
properties: {
|
|
16604
16658
|
acs_user_id: {
|
|
16659
|
+
description: string;
|
|
16605
16660
|
format: string;
|
|
16606
16661
|
type: string;
|
|
16607
16662
|
};
|
|
@@ -16658,11 +16713,13 @@ declare const _default: {
|
|
|
16658
16713
|
'x-fern-sdk-method-name': string;
|
|
16659
16714
|
'x-fern-sdk-return-value': string;
|
|
16660
16715
|
'x-response-key': string;
|
|
16716
|
+
'x-title': string;
|
|
16661
16717
|
'x-undocumented': string;
|
|
16662
16718
|
};
|
|
16663
16719
|
};
|
|
16664
16720
|
'/acs/users/unmanaged/list': {
|
|
16665
16721
|
post: {
|
|
16722
|
+
description: string;
|
|
16666
16723
|
operationId: string;
|
|
16667
16724
|
requestBody: {
|
|
16668
16725
|
content: {
|
|
@@ -16670,22 +16727,27 @@ declare const _default: {
|
|
|
16670
16727
|
schema: {
|
|
16671
16728
|
properties: {
|
|
16672
16729
|
acs_system_id: {
|
|
16730
|
+
description: string;
|
|
16673
16731
|
format: string;
|
|
16674
16732
|
type: string;
|
|
16675
16733
|
};
|
|
16676
16734
|
limit: {
|
|
16677
16735
|
default: number;
|
|
16736
|
+
description: string;
|
|
16678
16737
|
format: string;
|
|
16679
16738
|
type: string;
|
|
16680
16739
|
};
|
|
16681
16740
|
user_identity_email_address: {
|
|
16741
|
+
description: string;
|
|
16682
16742
|
type: string;
|
|
16683
16743
|
};
|
|
16684
16744
|
user_identity_id: {
|
|
16745
|
+
description: string;
|
|
16685
16746
|
format: string;
|
|
16686
16747
|
type: string;
|
|
16687
16748
|
};
|
|
16688
16749
|
user_identity_phone_number: {
|
|
16750
|
+
description: string;
|
|
16689
16751
|
type: string;
|
|
16690
16752
|
};
|
|
16691
16753
|
};
|
|
@@ -16743,6 +16805,7 @@ declare const _default: {
|
|
|
16743
16805
|
'x-fern-sdk-method-name': string;
|
|
16744
16806
|
'x-fern-sdk-return-value': string;
|
|
16745
16807
|
'x-response-key': string;
|
|
16808
|
+
'x-title': string;
|
|
16746
16809
|
'x-undocumented': string;
|
|
16747
16810
|
};
|
|
16748
16811
|
};
|
|
@@ -16826,10 +16889,12 @@ declare const _default: {
|
|
|
16826
16889
|
nullable: boolean;
|
|
16827
16890
|
properties: {
|
|
16828
16891
|
ends_at: {
|
|
16892
|
+
description: string;
|
|
16829
16893
|
format: string;
|
|
16830
16894
|
type: string;
|
|
16831
16895
|
};
|
|
16832
16896
|
starts_at: {
|
|
16897
|
+
description: string;
|
|
16833
16898
|
format: string;
|
|
16834
16899
|
type: string;
|
|
16835
16900
|
};
|
|
@@ -16929,10 +16994,12 @@ declare const _default: {
|
|
|
16929
16994
|
nullable: boolean;
|
|
16930
16995
|
properties: {
|
|
16931
16996
|
ends_at: {
|
|
16997
|
+
description: string;
|
|
16932
16998
|
format: string;
|
|
16933
16999
|
type: string;
|
|
16934
17000
|
};
|
|
16935
17001
|
starts_at: {
|
|
17002
|
+
description: string;
|
|
16936
17003
|
format: string;
|
|
16937
17004
|
type: string;
|
|
16938
17005
|
};
|
|
@@ -17023,6 +17090,7 @@ declare const _default: {
|
|
|
17023
17090
|
};
|
|
17024
17091
|
'/action_attempts/get': {
|
|
17025
17092
|
post: {
|
|
17093
|
+
description: string;
|
|
17026
17094
|
operationId: string;
|
|
17027
17095
|
requestBody: {
|
|
17028
17096
|
content: {
|
|
@@ -17030,6 +17098,7 @@ declare const _default: {
|
|
|
17030
17098
|
schema: {
|
|
17031
17099
|
properties: {
|
|
17032
17100
|
action_attempt_id: {
|
|
17101
|
+
description: string;
|
|
17033
17102
|
format: string;
|
|
17034
17103
|
type: string;
|
|
17035
17104
|
};
|
|
@@ -17094,10 +17163,12 @@ declare const _default: {
|
|
|
17094
17163
|
'x-fern-sdk-method-name': string;
|
|
17095
17164
|
'x-fern-sdk-return-value': string;
|
|
17096
17165
|
'x-response-key': string;
|
|
17166
|
+
'x-title': string;
|
|
17097
17167
|
};
|
|
17098
17168
|
};
|
|
17099
17169
|
'/action_attempts/list': {
|
|
17100
17170
|
post: {
|
|
17171
|
+
description: string;
|
|
17101
17172
|
operationId: string;
|
|
17102
17173
|
requestBody: {
|
|
17103
17174
|
content: {
|
|
@@ -17105,6 +17176,7 @@ declare const _default: {
|
|
|
17105
17176
|
schema: {
|
|
17106
17177
|
properties: {
|
|
17107
17178
|
action_attempt_ids: {
|
|
17179
|
+
description: string;
|
|
17108
17180
|
items: {
|
|
17109
17181
|
format: string;
|
|
17110
17182
|
type: string;
|
|
@@ -17167,10 +17239,12 @@ declare const _default: {
|
|
|
17167
17239
|
'x-fern-sdk-method-name': string;
|
|
17168
17240
|
'x-fern-sdk-return-value': string;
|
|
17169
17241
|
'x-response-key': string;
|
|
17242
|
+
'x-title': string;
|
|
17170
17243
|
};
|
|
17171
17244
|
};
|
|
17172
17245
|
'/bridges/get': {
|
|
17173
17246
|
post: {
|
|
17247
|
+
description: string;
|
|
17174
17248
|
operationId: string;
|
|
17175
17249
|
requestBody: {
|
|
17176
17250
|
content: {
|
|
@@ -17178,6 +17252,7 @@ declare const _default: {
|
|
|
17178
17252
|
schema: {
|
|
17179
17253
|
properties: {
|
|
17180
17254
|
bridge_id: {
|
|
17255
|
+
description: string;
|
|
17181
17256
|
format: string;
|
|
17182
17257
|
type: string;
|
|
17183
17258
|
};
|
|
@@ -17251,10 +17326,13 @@ declare const _default: {
|
|
|
17251
17326
|
'x-fern-sdk-method-name': string;
|
|
17252
17327
|
'x-fern-sdk-return-value': string;
|
|
17253
17328
|
'x-response-key': string;
|
|
17329
|
+
'x-title': string;
|
|
17330
|
+
'x-undocumented': string;
|
|
17254
17331
|
};
|
|
17255
17332
|
};
|
|
17256
17333
|
'/bridges/list': {
|
|
17257
17334
|
post: {
|
|
17335
|
+
description: string;
|
|
17258
17336
|
operationId: string;
|
|
17259
17337
|
requestBody: {
|
|
17260
17338
|
content: {
|
|
@@ -17332,10 +17410,13 @@ declare const _default: {
|
|
|
17332
17410
|
'x-fern-sdk-method-name': string;
|
|
17333
17411
|
'x-fern-sdk-return-value': string;
|
|
17334
17412
|
'x-response-key': string;
|
|
17413
|
+
'x-title': string;
|
|
17414
|
+
'x-undocumented': string;
|
|
17335
17415
|
};
|
|
17336
17416
|
};
|
|
17337
17417
|
'/client_sessions/create': {
|
|
17338
17418
|
post: {
|
|
17419
|
+
description: string;
|
|
17339
17420
|
operationId: string;
|
|
17340
17421
|
requestBody: {
|
|
17341
17422
|
content: {
|
|
@@ -17343,26 +17424,31 @@ declare const _default: {
|
|
|
17343
17424
|
schema: {
|
|
17344
17425
|
properties: {
|
|
17345
17426
|
connect_webview_ids: {
|
|
17427
|
+
description: string;
|
|
17346
17428
|
items: {
|
|
17347
17429
|
type: string;
|
|
17348
17430
|
};
|
|
17349
17431
|
type: string;
|
|
17350
17432
|
};
|
|
17351
17433
|
connected_account_ids: {
|
|
17434
|
+
description: string;
|
|
17352
17435
|
items: {
|
|
17353
17436
|
type: string;
|
|
17354
17437
|
};
|
|
17355
17438
|
type: string;
|
|
17356
17439
|
};
|
|
17357
17440
|
expires_at: {
|
|
17441
|
+
description: string;
|
|
17358
17442
|
format: string;
|
|
17359
17443
|
type: string;
|
|
17360
17444
|
};
|
|
17361
17445
|
user_identifier_key: {
|
|
17446
|
+
description: string;
|
|
17362
17447
|
minLength: number;
|
|
17363
17448
|
type: string;
|
|
17364
17449
|
};
|
|
17365
17450
|
user_identity_ids: {
|
|
17451
|
+
description: string;
|
|
17366
17452
|
items: {
|
|
17367
17453
|
type: string;
|
|
17368
17454
|
};
|
|
@@ -17428,8 +17514,10 @@ declare const _default: {
|
|
|
17428
17514
|
'x-fern-sdk-method-name': string;
|
|
17429
17515
|
'x-fern-sdk-return-value': string;
|
|
17430
17516
|
'x-response-key': string;
|
|
17517
|
+
'x-title': string;
|
|
17431
17518
|
};
|
|
17432
17519
|
put: {
|
|
17520
|
+
description: string;
|
|
17433
17521
|
operationId: string;
|
|
17434
17522
|
requestBody: {
|
|
17435
17523
|
content: {
|
|
@@ -17437,26 +17525,31 @@ declare const _default: {
|
|
|
17437
17525
|
schema: {
|
|
17438
17526
|
properties: {
|
|
17439
17527
|
connect_webview_ids: {
|
|
17528
|
+
description: string;
|
|
17440
17529
|
items: {
|
|
17441
17530
|
type: string;
|
|
17442
17531
|
};
|
|
17443
17532
|
type: string;
|
|
17444
17533
|
};
|
|
17445
17534
|
connected_account_ids: {
|
|
17535
|
+
description: string;
|
|
17446
17536
|
items: {
|
|
17447
17537
|
type: string;
|
|
17448
17538
|
};
|
|
17449
17539
|
type: string;
|
|
17450
17540
|
};
|
|
17451
17541
|
expires_at: {
|
|
17542
|
+
description: string;
|
|
17452
17543
|
format: string;
|
|
17453
17544
|
type: string;
|
|
17454
17545
|
};
|
|
17455
17546
|
user_identifier_key: {
|
|
17547
|
+
description: string;
|
|
17456
17548
|
minLength: number;
|
|
17457
17549
|
type: string;
|
|
17458
17550
|
};
|
|
17459
17551
|
user_identity_ids: {
|
|
17552
|
+
description: string;
|
|
17460
17553
|
items: {
|
|
17461
17554
|
type: string;
|
|
17462
17555
|
};
|
|
@@ -17520,10 +17613,12 @@ declare const _default: {
|
|
|
17520
17613
|
tags: string[];
|
|
17521
17614
|
'x-fern-ignore': boolean;
|
|
17522
17615
|
'x-response-key': string;
|
|
17616
|
+
'x-title': string;
|
|
17523
17617
|
};
|
|
17524
17618
|
};
|
|
17525
17619
|
'/client_sessions/delete': {
|
|
17526
17620
|
post: {
|
|
17621
|
+
description: string;
|
|
17527
17622
|
operationId: string;
|
|
17528
17623
|
requestBody: {
|
|
17529
17624
|
content: {
|
|
@@ -17531,6 +17626,7 @@ declare const _default: {
|
|
|
17531
17626
|
schema: {
|
|
17532
17627
|
properties: {
|
|
17533
17628
|
client_session_id: {
|
|
17629
|
+
description: string;
|
|
17534
17630
|
format: string;
|
|
17535
17631
|
type: string;
|
|
17536
17632
|
};
|
|
@@ -17583,10 +17679,12 @@ declare const _default: {
|
|
|
17583
17679
|
'x-fern-sdk-group-name': string[];
|
|
17584
17680
|
'x-fern-sdk-method-name': string;
|
|
17585
17681
|
'x-response-key': null;
|
|
17682
|
+
'x-title': string;
|
|
17586
17683
|
};
|
|
17587
17684
|
};
|
|
17588
17685
|
'/client_sessions/get': {
|
|
17589
17686
|
post: {
|
|
17687
|
+
description: string;
|
|
17590
17688
|
operationId: string;
|
|
17591
17689
|
requestBody: {
|
|
17592
17690
|
content: {
|
|
@@ -17594,9 +17692,11 @@ declare const _default: {
|
|
|
17594
17692
|
schema: {
|
|
17595
17693
|
properties: {
|
|
17596
17694
|
client_session_id: {
|
|
17695
|
+
description: string;
|
|
17597
17696
|
type: string;
|
|
17598
17697
|
};
|
|
17599
17698
|
user_identifier_key: {
|
|
17699
|
+
description: string;
|
|
17600
17700
|
type: string;
|
|
17601
17701
|
};
|
|
17602
17702
|
};
|
|
@@ -17659,10 +17759,12 @@ declare const _default: {
|
|
|
17659
17759
|
'x-fern-sdk-method-name': string;
|
|
17660
17760
|
'x-fern-sdk-return-value': string;
|
|
17661
17761
|
'x-response-key': string;
|
|
17762
|
+
'x-title': string;
|
|
17662
17763
|
};
|
|
17663
17764
|
};
|
|
17664
17765
|
'/client_sessions/get_or_create': {
|
|
17665
17766
|
post: {
|
|
17767
|
+
description: string;
|
|
17666
17768
|
operationId: string;
|
|
17667
17769
|
requestBody: {
|
|
17668
17770
|
content: {
|
|
@@ -17670,26 +17772,31 @@ declare const _default: {
|
|
|
17670
17772
|
schema: {
|
|
17671
17773
|
properties: {
|
|
17672
17774
|
connect_webview_ids: {
|
|
17775
|
+
description: string;
|
|
17673
17776
|
items: {
|
|
17674
17777
|
type: string;
|
|
17675
17778
|
};
|
|
17676
17779
|
type: string;
|
|
17677
17780
|
};
|
|
17678
17781
|
connected_account_ids: {
|
|
17782
|
+
description: string;
|
|
17679
17783
|
items: {
|
|
17680
17784
|
type: string;
|
|
17681
17785
|
};
|
|
17682
17786
|
type: string;
|
|
17683
17787
|
};
|
|
17684
17788
|
expires_at: {
|
|
17789
|
+
description: string;
|
|
17685
17790
|
format: string;
|
|
17686
17791
|
type: string;
|
|
17687
17792
|
};
|
|
17688
17793
|
user_identifier_key: {
|
|
17794
|
+
description: string;
|
|
17689
17795
|
minLength: number;
|
|
17690
17796
|
type: string;
|
|
17691
17797
|
};
|
|
17692
17798
|
user_identity_ids: {
|
|
17799
|
+
description: string;
|
|
17693
17800
|
items: {
|
|
17694
17801
|
type: string;
|
|
17695
17802
|
};
|
|
@@ -17755,10 +17862,12 @@ declare const _default: {
|
|
|
17755
17862
|
'x-fern-sdk-method-name': string;
|
|
17756
17863
|
'x-fern-sdk-return-value': string;
|
|
17757
17864
|
'x-response-key': string;
|
|
17865
|
+
'x-title': string;
|
|
17758
17866
|
};
|
|
17759
17867
|
};
|
|
17760
17868
|
'/client_sessions/grant_access': {
|
|
17761
17869
|
patch: {
|
|
17870
|
+
description: string;
|
|
17762
17871
|
operationId: string;
|
|
17763
17872
|
requestBody: {
|
|
17764
17873
|
content: {
|
|
@@ -17766,24 +17875,29 @@ declare const _default: {
|
|
|
17766
17875
|
schema: {
|
|
17767
17876
|
properties: {
|
|
17768
17877
|
client_session_id: {
|
|
17878
|
+
description: string;
|
|
17769
17879
|
type: string;
|
|
17770
17880
|
};
|
|
17771
17881
|
connect_webview_ids: {
|
|
17882
|
+
description: string;
|
|
17772
17883
|
items: {
|
|
17773
17884
|
type: string;
|
|
17774
17885
|
};
|
|
17775
17886
|
type: string;
|
|
17776
17887
|
};
|
|
17777
17888
|
connected_account_ids: {
|
|
17889
|
+
description: string;
|
|
17778
17890
|
items: {
|
|
17779
17891
|
type: string;
|
|
17780
17892
|
};
|
|
17781
17893
|
type: string;
|
|
17782
17894
|
};
|
|
17783
17895
|
user_identifier_key: {
|
|
17896
|
+
description: string;
|
|
17784
17897
|
type: string;
|
|
17785
17898
|
};
|
|
17786
17899
|
user_identity_ids: {
|
|
17900
|
+
description: string;
|
|
17787
17901
|
items: {
|
|
17788
17902
|
type: string;
|
|
17789
17903
|
};
|
|
@@ -17839,8 +17953,10 @@ declare const _default: {
|
|
|
17839
17953
|
tags: string[];
|
|
17840
17954
|
'x-fern-ignore': boolean;
|
|
17841
17955
|
'x-response-key': null;
|
|
17956
|
+
'x-title': string;
|
|
17842
17957
|
};
|
|
17843
17958
|
post: {
|
|
17959
|
+
description: string;
|
|
17844
17960
|
operationId: string;
|
|
17845
17961
|
requestBody: {
|
|
17846
17962
|
content: {
|
|
@@ -17848,24 +17964,29 @@ declare const _default: {
|
|
|
17848
17964
|
schema: {
|
|
17849
17965
|
properties: {
|
|
17850
17966
|
client_session_id: {
|
|
17967
|
+
description: string;
|
|
17851
17968
|
type: string;
|
|
17852
17969
|
};
|
|
17853
17970
|
connect_webview_ids: {
|
|
17971
|
+
description: string;
|
|
17854
17972
|
items: {
|
|
17855
17973
|
type: string;
|
|
17856
17974
|
};
|
|
17857
17975
|
type: string;
|
|
17858
17976
|
};
|
|
17859
17977
|
connected_account_ids: {
|
|
17978
|
+
description: string;
|
|
17860
17979
|
items: {
|
|
17861
17980
|
type: string;
|
|
17862
17981
|
};
|
|
17863
17982
|
type: string;
|
|
17864
17983
|
};
|
|
17865
17984
|
user_identifier_key: {
|
|
17985
|
+
description: string;
|
|
17866
17986
|
type: string;
|
|
17867
17987
|
};
|
|
17868
17988
|
user_identity_ids: {
|
|
17989
|
+
description: string;
|
|
17869
17990
|
items: {
|
|
17870
17991
|
type: string;
|
|
17871
17992
|
};
|
|
@@ -17922,10 +18043,12 @@ declare const _default: {
|
|
|
17922
18043
|
'x-fern-sdk-group-name': string[];
|
|
17923
18044
|
'x-fern-sdk-method-name': string;
|
|
17924
18045
|
'x-response-key': null;
|
|
18046
|
+
'x-title': string;
|
|
17925
18047
|
};
|
|
17926
18048
|
};
|
|
17927
18049
|
'/client_sessions/list': {
|
|
17928
18050
|
post: {
|
|
18051
|
+
description: string;
|
|
17929
18052
|
operationId: string;
|
|
17930
18053
|
requestBody: {
|
|
17931
18054
|
content: {
|
|
@@ -17933,18 +18056,23 @@ declare const _default: {
|
|
|
17933
18056
|
schema: {
|
|
17934
18057
|
properties: {
|
|
17935
18058
|
client_session_id: {
|
|
18059
|
+
description: string;
|
|
17936
18060
|
type: string;
|
|
17937
18061
|
};
|
|
17938
18062
|
connect_webview_id: {
|
|
18063
|
+
description: string;
|
|
17939
18064
|
type: string;
|
|
17940
18065
|
};
|
|
17941
18066
|
user_identifier_key: {
|
|
18067
|
+
description: string;
|
|
17942
18068
|
type: string;
|
|
17943
18069
|
};
|
|
17944
18070
|
user_identity_id: {
|
|
18071
|
+
description: string;
|
|
17945
18072
|
type: string;
|
|
17946
18073
|
};
|
|
17947
18074
|
without_user_identifier_key: {
|
|
18075
|
+
description: string;
|
|
17948
18076
|
type: string;
|
|
17949
18077
|
};
|
|
17950
18078
|
};
|
|
@@ -18002,10 +18130,12 @@ declare const _default: {
|
|
|
18002
18130
|
'x-fern-sdk-method-name': string;
|
|
18003
18131
|
'x-fern-sdk-return-value': string;
|
|
18004
18132
|
'x-response-key': string;
|
|
18133
|
+
'x-title': string;
|
|
18005
18134
|
};
|
|
18006
18135
|
};
|
|
18007
18136
|
'/client_sessions/revoke': {
|
|
18008
18137
|
post: {
|
|
18138
|
+
description: string;
|
|
18009
18139
|
operationId: string;
|
|
18010
18140
|
requestBody: {
|
|
18011
18141
|
content: {
|
|
@@ -18013,6 +18143,7 @@ declare const _default: {
|
|
|
18013
18143
|
schema: {
|
|
18014
18144
|
properties: {
|
|
18015
18145
|
client_session_id: {
|
|
18146
|
+
description: string;
|
|
18016
18147
|
format: string;
|
|
18017
18148
|
type: string;
|
|
18018
18149
|
};
|
|
@@ -18065,10 +18196,12 @@ declare const _default: {
|
|
|
18065
18196
|
'x-fern-sdk-group-name': string[];
|
|
18066
18197
|
'x-fern-sdk-method-name': string;
|
|
18067
18198
|
'x-response-key': null;
|
|
18199
|
+
'x-title': string;
|
|
18068
18200
|
};
|
|
18069
18201
|
};
|
|
18070
18202
|
'/connect_webviews/create': {
|
|
18071
18203
|
post: {
|
|
18204
|
+
description: string;
|
|
18072
18205
|
operationId: string;
|
|
18073
18206
|
requestBody: {
|
|
18074
18207
|
content: {
|
|
@@ -18076,6 +18209,7 @@ declare const _default: {
|
|
|
18076
18209
|
schema: {
|
|
18077
18210
|
properties: {
|
|
18078
18211
|
accepted_providers: {
|
|
18212
|
+
description: string;
|
|
18079
18213
|
items: {
|
|
18080
18214
|
enum: string[];
|
|
18081
18215
|
type: string;
|
|
@@ -18084,6 +18218,7 @@ declare const _default: {
|
|
|
18084
18218
|
};
|
|
18085
18219
|
automatically_manage_new_devices: {
|
|
18086
18220
|
default: boolean;
|
|
18221
|
+
description: string;
|
|
18087
18222
|
type: string;
|
|
18088
18223
|
};
|
|
18089
18224
|
custom_metadata: {
|
|
@@ -18097,24 +18232,30 @@ declare const _default: {
|
|
|
18097
18232
|
maxLength?: never;
|
|
18098
18233
|
})[];
|
|
18099
18234
|
};
|
|
18235
|
+
description: string;
|
|
18100
18236
|
type: string;
|
|
18101
18237
|
};
|
|
18102
18238
|
custom_redirect_failure_url: {
|
|
18239
|
+
description: string;
|
|
18103
18240
|
type: string;
|
|
18104
18241
|
};
|
|
18105
18242
|
custom_redirect_url: {
|
|
18243
|
+
description: string;
|
|
18106
18244
|
type: string;
|
|
18107
18245
|
};
|
|
18108
18246
|
device_selection_mode: {
|
|
18109
18247
|
enum: string[];
|
|
18110
18248
|
type: string;
|
|
18249
|
+
'x-undocumented': string;
|
|
18111
18250
|
};
|
|
18112
18251
|
provider_category: {
|
|
18252
|
+
description: string;
|
|
18113
18253
|
enum: string[];
|
|
18114
18254
|
type: string;
|
|
18115
18255
|
};
|
|
18116
18256
|
wait_for_device_creation: {
|
|
18117
18257
|
default: boolean;
|
|
18258
|
+
description: string;
|
|
18118
18259
|
type: string;
|
|
18119
18260
|
};
|
|
18120
18261
|
};
|
|
@@ -18177,10 +18318,12 @@ declare const _default: {
|
|
|
18177
18318
|
'x-fern-sdk-method-name': string;
|
|
18178
18319
|
'x-fern-sdk-return-value': string;
|
|
18179
18320
|
'x-response-key': string;
|
|
18321
|
+
'x-title': string;
|
|
18180
18322
|
};
|
|
18181
18323
|
};
|
|
18182
18324
|
'/connect_webviews/delete': {
|
|
18183
18325
|
post: {
|
|
18326
|
+
description: string;
|
|
18184
18327
|
operationId: string;
|
|
18185
18328
|
requestBody: {
|
|
18186
18329
|
content: {
|
|
@@ -18188,6 +18331,7 @@ declare const _default: {
|
|
|
18188
18331
|
schema: {
|
|
18189
18332
|
properties: {
|
|
18190
18333
|
connect_webview_id: {
|
|
18334
|
+
description: string;
|
|
18191
18335
|
format: string;
|
|
18192
18336
|
type: string;
|
|
18193
18337
|
};
|
|
@@ -18240,10 +18384,12 @@ declare const _default: {
|
|
|
18240
18384
|
'x-fern-sdk-group-name': string[];
|
|
18241
18385
|
'x-fern-sdk-method-name': string;
|
|
18242
18386
|
'x-response-key': null;
|
|
18387
|
+
'x-title': string;
|
|
18243
18388
|
};
|
|
18244
18389
|
};
|
|
18245
18390
|
'/connect_webviews/get': {
|
|
18246
18391
|
post: {
|
|
18392
|
+
description: string;
|
|
18247
18393
|
operationId: string;
|
|
18248
18394
|
requestBody: {
|
|
18249
18395
|
content: {
|
|
@@ -18251,6 +18397,7 @@ declare const _default: {
|
|
|
18251
18397
|
schema: {
|
|
18252
18398
|
properties: {
|
|
18253
18399
|
connect_webview_id: {
|
|
18400
|
+
description: string;
|
|
18254
18401
|
format: string;
|
|
18255
18402
|
type: string;
|
|
18256
18403
|
};
|
|
@@ -18315,10 +18462,12 @@ declare const _default: {
|
|
|
18315
18462
|
'x-fern-sdk-method-name': string;
|
|
18316
18463
|
'x-fern-sdk-return-value': string;
|
|
18317
18464
|
'x-response-key': string;
|
|
18465
|
+
'x-title': string;
|
|
18318
18466
|
};
|
|
18319
18467
|
};
|
|
18320
18468
|
'/connect_webviews/list': {
|
|
18321
18469
|
post: {
|
|
18470
|
+
description: string;
|
|
18322
18471
|
operationId: string;
|
|
18323
18472
|
requestBody: {
|
|
18324
18473
|
content: {
|
|
@@ -18336,6 +18485,7 @@ declare const _default: {
|
|
|
18336
18485
|
};
|
|
18337
18486
|
limit: {
|
|
18338
18487
|
default: number;
|
|
18488
|
+
description: string;
|
|
18339
18489
|
format: string;
|
|
18340
18490
|
type: string;
|
|
18341
18491
|
};
|
|
@@ -18406,10 +18556,12 @@ declare const _default: {
|
|
|
18406
18556
|
'x-fern-sdk-method-name': string;
|
|
18407
18557
|
'x-fern-sdk-return-value': string;
|
|
18408
18558
|
'x-response-key': string;
|
|
18559
|
+
'x-title': string;
|
|
18409
18560
|
};
|
|
18410
18561
|
};
|
|
18411
18562
|
'/connected_accounts/delete': {
|
|
18412
18563
|
post: {
|
|
18564
|
+
description: string;
|
|
18413
18565
|
operationId: string;
|
|
18414
18566
|
requestBody: {
|
|
18415
18567
|
content: {
|
|
@@ -18417,12 +18569,14 @@ declare const _default: {
|
|
|
18417
18569
|
schema: {
|
|
18418
18570
|
properties: {
|
|
18419
18571
|
connected_account_id: {
|
|
18572
|
+
description: string;
|
|
18420
18573
|
format: string;
|
|
18421
18574
|
type: string;
|
|
18422
18575
|
};
|
|
18423
18576
|
sync: {
|
|
18424
18577
|
default: boolean;
|
|
18425
18578
|
type: string;
|
|
18579
|
+
'x-undocumented': string;
|
|
18426
18580
|
};
|
|
18427
18581
|
};
|
|
18428
18582
|
required: string[];
|
|
@@ -18478,6 +18632,7 @@ declare const _default: {
|
|
|
18478
18632
|
};
|
|
18479
18633
|
'/connected_accounts/get': {
|
|
18480
18634
|
post: {
|
|
18635
|
+
description: string;
|
|
18481
18636
|
operationId: string;
|
|
18482
18637
|
requestBody: {
|
|
18483
18638
|
content: {
|
|
@@ -18486,6 +18641,7 @@ declare const _default: {
|
|
|
18486
18641
|
oneOf: ({
|
|
18487
18642
|
properties: {
|
|
18488
18643
|
connected_account_id: {
|
|
18644
|
+
description: string;
|
|
18489
18645
|
format: string;
|
|
18490
18646
|
type: string;
|
|
18491
18647
|
};
|
|
@@ -18496,6 +18652,7 @@ declare const _default: {
|
|
|
18496
18652
|
} | {
|
|
18497
18653
|
properties: {
|
|
18498
18654
|
email: {
|
|
18655
|
+
description: string;
|
|
18499
18656
|
format: string;
|
|
18500
18657
|
type: string;
|
|
18501
18658
|
};
|
|
@@ -18567,6 +18724,7 @@ declare const _default: {
|
|
|
18567
18724
|
};
|
|
18568
18725
|
'/connected_accounts/list': {
|
|
18569
18726
|
post: {
|
|
18727
|
+
description: string;
|
|
18570
18728
|
operationId: string;
|
|
18571
18729
|
requestBody: {
|
|
18572
18730
|
content: {
|
|
@@ -18668,6 +18826,7 @@ declare const _default: {
|
|
|
18668
18826
|
};
|
|
18669
18827
|
'/connected_accounts/update': {
|
|
18670
18828
|
post: {
|
|
18829
|
+
description: string;
|
|
18671
18830
|
operationId: string;
|
|
18672
18831
|
requestBody: {
|
|
18673
18832
|
content: {
|
|
@@ -18675,9 +18834,11 @@ declare const _default: {
|
|
|
18675
18834
|
schema: {
|
|
18676
18835
|
properties: {
|
|
18677
18836
|
automatically_manage_new_devices: {
|
|
18837
|
+
description: string;
|
|
18678
18838
|
type: string;
|
|
18679
18839
|
};
|
|
18680
18840
|
connected_account_id: {
|
|
18841
|
+
description: string;
|
|
18681
18842
|
format: string;
|
|
18682
18843
|
type: string;
|
|
18683
18844
|
};
|
|
@@ -18692,6 +18853,7 @@ declare const _default: {
|
|
|
18692
18853
|
maxLength?: never;
|
|
18693
18854
|
})[];
|
|
18694
18855
|
};
|
|
18856
|
+
description: string;
|
|
18695
18857
|
type: string;
|
|
18696
18858
|
};
|
|
18697
18859
|
};
|
|
@@ -18751,6 +18913,7 @@ declare const _default: {
|
|
|
18751
18913
|
};
|
|
18752
18914
|
'/devices/delete': {
|
|
18753
18915
|
post: {
|
|
18916
|
+
description: string;
|
|
18754
18917
|
operationId: string;
|
|
18755
18918
|
requestBody: {
|
|
18756
18919
|
content: {
|
|
@@ -18758,6 +18921,7 @@ declare const _default: {
|
|
|
18758
18921
|
schema: {
|
|
18759
18922
|
properties: {
|
|
18760
18923
|
device_id: {
|
|
18924
|
+
description: string;
|
|
18761
18925
|
format: string;
|
|
18762
18926
|
type: string;
|
|
18763
18927
|
};
|
|
@@ -18811,11 +18975,13 @@ declare const _default: {
|
|
|
18811
18975
|
'x-fern-sdk-group-name': string[];
|
|
18812
18976
|
'x-fern-sdk-method-name': string;
|
|
18813
18977
|
'x-response-key': null;
|
|
18978
|
+
'x-title': string;
|
|
18814
18979
|
'x-undocumented': string;
|
|
18815
18980
|
};
|
|
18816
18981
|
};
|
|
18817
18982
|
'/devices/get': {
|
|
18818
18983
|
post: {
|
|
18984
|
+
description: string;
|
|
18819
18985
|
operationId: string;
|
|
18820
18986
|
requestBody: {
|
|
18821
18987
|
content: {
|
|
@@ -18823,10 +18989,12 @@ declare const _default: {
|
|
|
18823
18989
|
schema: {
|
|
18824
18990
|
properties: {
|
|
18825
18991
|
device_id: {
|
|
18992
|
+
description: string;
|
|
18826
18993
|
format: string;
|
|
18827
18994
|
type: string;
|
|
18828
18995
|
};
|
|
18829
18996
|
name: {
|
|
18997
|
+
description: string;
|
|
18830
18998
|
type: string;
|
|
18831
18999
|
};
|
|
18832
19000
|
};
|
|
@@ -18889,6 +19057,7 @@ declare const _default: {
|
|
|
18889
19057
|
'x-fern-sdk-method-name': string;
|
|
18890
19058
|
'x-fern-sdk-return-value': string;
|
|
18891
19059
|
'x-response-key': string;
|
|
19060
|
+
'x-title': string;
|
|
18892
19061
|
};
|
|
18893
19062
|
};
|
|
18894
19063
|
'/devices/list': {
|
|
@@ -19007,6 +19176,7 @@ declare const _default: {
|
|
|
19007
19176
|
type: string;
|
|
19008
19177
|
};
|
|
19009
19178
|
unstable_location_id: {
|
|
19179
|
+
description: string;
|
|
19010
19180
|
format: string;
|
|
19011
19181
|
nullable: boolean;
|
|
19012
19182
|
type: string;
|
|
@@ -19087,6 +19257,7 @@ declare const _default: {
|
|
|
19087
19257
|
};
|
|
19088
19258
|
'/devices/list_device_providers': {
|
|
19089
19259
|
post: {
|
|
19260
|
+
description: string;
|
|
19090
19261
|
operationId: string;
|
|
19091
19262
|
requestBody: {
|
|
19092
19263
|
content: {
|
|
@@ -19094,6 +19265,7 @@ declare const _default: {
|
|
|
19094
19265
|
schema: {
|
|
19095
19266
|
properties: {
|
|
19096
19267
|
provider_category: {
|
|
19268
|
+
description: string;
|
|
19097
19269
|
enum: string[];
|
|
19098
19270
|
type: string;
|
|
19099
19271
|
};
|
|
@@ -19160,10 +19332,12 @@ declare const _default: {
|
|
|
19160
19332
|
'x-fern-sdk-method-name': string;
|
|
19161
19333
|
'x-fern-sdk-return-value': string;
|
|
19162
19334
|
'x-response-key': string;
|
|
19335
|
+
'x-title': string;
|
|
19163
19336
|
};
|
|
19164
19337
|
};
|
|
19165
19338
|
'/devices/simulate/connect': {
|
|
19166
19339
|
post: {
|
|
19340
|
+
description: string;
|
|
19167
19341
|
operationId: string;
|
|
19168
19342
|
requestBody: {
|
|
19169
19343
|
content: {
|
|
@@ -19171,6 +19345,7 @@ declare const _default: {
|
|
|
19171
19345
|
schema: {
|
|
19172
19346
|
properties: {
|
|
19173
19347
|
device_id: {
|
|
19348
|
+
description: string;
|
|
19174
19349
|
format: string;
|
|
19175
19350
|
type: string;
|
|
19176
19351
|
};
|
|
@@ -19223,10 +19398,12 @@ declare const _default: {
|
|
|
19223
19398
|
'x-fern-sdk-group-name': string[];
|
|
19224
19399
|
'x-fern-sdk-method-name': string;
|
|
19225
19400
|
'x-response-key': null;
|
|
19401
|
+
'x-title': string;
|
|
19226
19402
|
};
|
|
19227
19403
|
};
|
|
19228
19404
|
'/devices/simulate/disconnect': {
|
|
19229
19405
|
post: {
|
|
19406
|
+
description: string;
|
|
19230
19407
|
operationId: string;
|
|
19231
19408
|
requestBody: {
|
|
19232
19409
|
content: {
|
|
@@ -19234,6 +19411,7 @@ declare const _default: {
|
|
|
19234
19411
|
schema: {
|
|
19235
19412
|
properties: {
|
|
19236
19413
|
device_id: {
|
|
19414
|
+
description: string;
|
|
19237
19415
|
format: string;
|
|
19238
19416
|
type: string;
|
|
19239
19417
|
};
|
|
@@ -19286,10 +19464,12 @@ declare const _default: {
|
|
|
19286
19464
|
'x-fern-sdk-group-name': string[];
|
|
19287
19465
|
'x-fern-sdk-method-name': string;
|
|
19288
19466
|
'x-response-key': null;
|
|
19467
|
+
'x-title': string;
|
|
19289
19468
|
};
|
|
19290
19469
|
};
|
|
19291
19470
|
'/devices/simulate/remove': {
|
|
19292
19471
|
post: {
|
|
19472
|
+
description: string;
|
|
19293
19473
|
operationId: string;
|
|
19294
19474
|
requestBody: {
|
|
19295
19475
|
content: {
|
|
@@ -19297,6 +19477,7 @@ declare const _default: {
|
|
|
19297
19477
|
schema: {
|
|
19298
19478
|
properties: {
|
|
19299
19479
|
device_id: {
|
|
19480
|
+
description: string;
|
|
19300
19481
|
format: string;
|
|
19301
19482
|
type: string;
|
|
19302
19483
|
};
|
|
@@ -19349,10 +19530,12 @@ declare const _default: {
|
|
|
19349
19530
|
'x-fern-sdk-group-name': string[];
|
|
19350
19531
|
'x-fern-sdk-method-name': string;
|
|
19351
19532
|
'x-response-key': null;
|
|
19533
|
+
'x-title': string;
|
|
19352
19534
|
};
|
|
19353
19535
|
};
|
|
19354
19536
|
'/devices/unmanaged/get': {
|
|
19355
19537
|
post: {
|
|
19538
|
+
description: string;
|
|
19356
19539
|
operationId: string;
|
|
19357
19540
|
requestBody: {
|
|
19358
19541
|
content: {
|
|
@@ -19360,10 +19543,12 @@ declare const _default: {
|
|
|
19360
19543
|
schema: {
|
|
19361
19544
|
properties: {
|
|
19362
19545
|
device_id: {
|
|
19546
|
+
description: string;
|
|
19363
19547
|
format: string;
|
|
19364
19548
|
type: string;
|
|
19365
19549
|
};
|
|
19366
19550
|
name: {
|
|
19551
|
+
description: string;
|
|
19367
19552
|
type: string;
|
|
19368
19553
|
};
|
|
19369
19554
|
};
|
|
@@ -19426,10 +19611,12 @@ declare const _default: {
|
|
|
19426
19611
|
'x-fern-sdk-method-name': string;
|
|
19427
19612
|
'x-fern-sdk-return-value': string;
|
|
19428
19613
|
'x-response-key': string;
|
|
19614
|
+
'x-title': string;
|
|
19429
19615
|
};
|
|
19430
19616
|
};
|
|
19431
19617
|
'/devices/unmanaged/list': {
|
|
19432
19618
|
post: {
|
|
19619
|
+
description: string;
|
|
19433
19620
|
operationId: string;
|
|
19434
19621
|
requestBody: {
|
|
19435
19622
|
content: {
|
|
@@ -19543,6 +19730,7 @@ declare const _default: {
|
|
|
19543
19730
|
type: string;
|
|
19544
19731
|
};
|
|
19545
19732
|
unstable_location_id: {
|
|
19733
|
+
description: string;
|
|
19546
19734
|
format: string;
|
|
19547
19735
|
nullable: boolean;
|
|
19548
19736
|
type: string;
|
|
@@ -19607,10 +19795,12 @@ declare const _default: {
|
|
|
19607
19795
|
'x-fern-sdk-method-name': string;
|
|
19608
19796
|
'x-fern-sdk-return-value': string;
|
|
19609
19797
|
'x-response-key': string;
|
|
19798
|
+
'x-title': string;
|
|
19610
19799
|
};
|
|
19611
19800
|
};
|
|
19612
19801
|
'/devices/unmanaged/update': {
|
|
19613
19802
|
patch: {
|
|
19803
|
+
description: string;
|
|
19614
19804
|
operationId: string;
|
|
19615
19805
|
requestBody: {
|
|
19616
19806
|
content: {
|
|
@@ -19618,10 +19808,12 @@ declare const _default: {
|
|
|
19618
19808
|
schema: {
|
|
19619
19809
|
properties: {
|
|
19620
19810
|
device_id: {
|
|
19811
|
+
description: string;
|
|
19621
19812
|
format: string;
|
|
19622
19813
|
type: string;
|
|
19623
19814
|
};
|
|
19624
19815
|
is_managed: {
|
|
19816
|
+
description: string;
|
|
19625
19817
|
enum: boolean[];
|
|
19626
19818
|
type: string;
|
|
19627
19819
|
};
|
|
@@ -19673,8 +19865,10 @@ declare const _default: {
|
|
|
19673
19865
|
tags: string[];
|
|
19674
19866
|
'x-fern-ignore': boolean;
|
|
19675
19867
|
'x-response-key': null;
|
|
19868
|
+
'x-title': string;
|
|
19676
19869
|
};
|
|
19677
19870
|
post: {
|
|
19871
|
+
description: string;
|
|
19678
19872
|
operationId: string;
|
|
19679
19873
|
requestBody: {
|
|
19680
19874
|
content: {
|
|
@@ -19682,10 +19876,12 @@ declare const _default: {
|
|
|
19682
19876
|
schema: {
|
|
19683
19877
|
properties: {
|
|
19684
19878
|
device_id: {
|
|
19879
|
+
description: string;
|
|
19685
19880
|
format: string;
|
|
19686
19881
|
type: string;
|
|
19687
19882
|
};
|
|
19688
19883
|
is_managed: {
|
|
19884
|
+
description: string;
|
|
19689
19885
|
enum: boolean[];
|
|
19690
19886
|
type: string;
|
|
19691
19887
|
};
|
|
@@ -19738,10 +19934,12 @@ declare const _default: {
|
|
|
19738
19934
|
'x-fern-sdk-group-name': string[];
|
|
19739
19935
|
'x-fern-sdk-method-name': string;
|
|
19740
19936
|
'x-response-key': null;
|
|
19937
|
+
'x-title': string;
|
|
19741
19938
|
};
|
|
19742
19939
|
};
|
|
19743
19940
|
'/devices/update': {
|
|
19744
19941
|
patch: {
|
|
19942
|
+
description: string;
|
|
19745
19943
|
operationId: string;
|
|
19746
19944
|
requestBody: {
|
|
19747
19945
|
content: {
|
|
@@ -19759,23 +19957,28 @@ declare const _default: {
|
|
|
19759
19957
|
maxLength?: never;
|
|
19760
19958
|
})[];
|
|
19761
19959
|
};
|
|
19960
|
+
description: string;
|
|
19762
19961
|
type: string;
|
|
19763
19962
|
};
|
|
19764
19963
|
device_id: {
|
|
19964
|
+
description: string;
|
|
19765
19965
|
format: string;
|
|
19766
19966
|
type: string;
|
|
19767
19967
|
};
|
|
19768
19968
|
is_managed: {
|
|
19769
19969
|
default: boolean;
|
|
19970
|
+
description: string;
|
|
19770
19971
|
type: string;
|
|
19771
19972
|
};
|
|
19772
19973
|
name: {
|
|
19974
|
+
description: string;
|
|
19773
19975
|
nullable: boolean;
|
|
19774
19976
|
type: string;
|
|
19775
19977
|
};
|
|
19776
19978
|
properties: {
|
|
19777
19979
|
properties: {
|
|
19778
19980
|
name: {
|
|
19981
|
+
description: string;
|
|
19779
19982
|
nullable: boolean;
|
|
19780
19983
|
type: string;
|
|
19781
19984
|
};
|
|
@@ -19838,8 +20041,10 @@ declare const _default: {
|
|
|
19838
20041
|
tags: string[];
|
|
19839
20042
|
'x-fern-ignore': boolean;
|
|
19840
20043
|
'x-response-key': null;
|
|
20044
|
+
'x-title': string;
|
|
19841
20045
|
};
|
|
19842
20046
|
post: {
|
|
20047
|
+
description: string;
|
|
19843
20048
|
operationId: string;
|
|
19844
20049
|
requestBody: {
|
|
19845
20050
|
content: {
|
|
@@ -19857,23 +20062,28 @@ declare const _default: {
|
|
|
19857
20062
|
maxLength?: never;
|
|
19858
20063
|
})[];
|
|
19859
20064
|
};
|
|
20065
|
+
description: string;
|
|
19860
20066
|
type: string;
|
|
19861
20067
|
};
|
|
19862
20068
|
device_id: {
|
|
20069
|
+
description: string;
|
|
19863
20070
|
format: string;
|
|
19864
20071
|
type: string;
|
|
19865
20072
|
};
|
|
19866
20073
|
is_managed: {
|
|
19867
20074
|
default: boolean;
|
|
20075
|
+
description: string;
|
|
19868
20076
|
type: string;
|
|
19869
20077
|
};
|
|
19870
20078
|
name: {
|
|
20079
|
+
description: string;
|
|
19871
20080
|
nullable: boolean;
|
|
19872
20081
|
type: string;
|
|
19873
20082
|
};
|
|
19874
20083
|
properties: {
|
|
19875
20084
|
properties: {
|
|
19876
20085
|
name: {
|
|
20086
|
+
description: string;
|
|
19877
20087
|
nullable: boolean;
|
|
19878
20088
|
type: string;
|
|
19879
20089
|
};
|
|
@@ -19937,10 +20147,12 @@ declare const _default: {
|
|
|
19937
20147
|
'x-fern-sdk-group-name': string[];
|
|
19938
20148
|
'x-fern-sdk-method-name': string;
|
|
19939
20149
|
'x-response-key': null;
|
|
20150
|
+
'x-title': string;
|
|
19940
20151
|
};
|
|
19941
20152
|
};
|
|
19942
20153
|
'/events/get': {
|
|
19943
20154
|
post: {
|
|
20155
|
+
description: string;
|
|
19944
20156
|
operationId: string;
|
|
19945
20157
|
requestBody: {
|
|
19946
20158
|
content: {
|
|
@@ -20021,10 +20233,12 @@ declare const _default: {
|
|
|
20021
20233
|
'x-fern-sdk-method-name': string;
|
|
20022
20234
|
'x-fern-sdk-return-value': string;
|
|
20023
20235
|
'x-response-key': string;
|
|
20236
|
+
'x-title': string;
|
|
20024
20237
|
};
|
|
20025
20238
|
};
|
|
20026
20239
|
'/events/list': {
|
|
20027
20240
|
post: {
|
|
20241
|
+
description: string;
|
|
20028
20242
|
operationId: string;
|
|
20029
20243
|
requestBody: {
|
|
20030
20244
|
content: {
|
|
@@ -20186,6 +20400,7 @@ declare const _default: {
|
|
|
20186
20400
|
'x-fern-sdk-method-name': string;
|
|
20187
20401
|
'x-fern-sdk-return-value': string;
|
|
20188
20402
|
'x-response-key': string;
|
|
20403
|
+
'x-title': string;
|
|
20189
20404
|
};
|
|
20190
20405
|
};
|
|
20191
20406
|
'/locks/get': {
|
|
@@ -20370,6 +20585,7 @@ declare const _default: {
|
|
|
20370
20585
|
type: string;
|
|
20371
20586
|
};
|
|
20372
20587
|
unstable_location_id: {
|
|
20588
|
+
description: string;
|
|
20373
20589
|
format: string;
|
|
20374
20590
|
nullable: boolean;
|
|
20375
20591
|
type: string;
|
|
@@ -20983,6 +21199,7 @@ declare const _default: {
|
|
|
20983
21199
|
type: string;
|
|
20984
21200
|
};
|
|
20985
21201
|
unstable_location_id: {
|
|
21202
|
+
description: string;
|
|
20986
21203
|
format: string;
|
|
20987
21204
|
nullable: boolean;
|
|
20988
21205
|
type: string;
|
|
@@ -24474,6 +24691,7 @@ declare const _default: {
|
|
|
24474
24691
|
type: string;
|
|
24475
24692
|
};
|
|
24476
24693
|
unstable_location_id: {
|
|
24694
|
+
description: string;
|
|
24477
24695
|
format: string;
|
|
24478
24696
|
nullable: boolean;
|
|
24479
24697
|
type: string;
|
|
@@ -28328,6 +28546,168 @@ declare const _default: {
|
|
|
28328
28546
|
'x-undocumented': string;
|
|
28329
28547
|
};
|
|
28330
28548
|
};
|
|
28549
|
+
'/unstable_partner/resources/push': {
|
|
28550
|
+
post: {
|
|
28551
|
+
description: string;
|
|
28552
|
+
operationId: string;
|
|
28553
|
+
requestBody: {
|
|
28554
|
+
content: {
|
|
28555
|
+
'application/json': {
|
|
28556
|
+
schema: {
|
|
28557
|
+
oneOf: ({
|
|
28558
|
+
items: {
|
|
28559
|
+
properties: {
|
|
28560
|
+
custom_metadata: {
|
|
28561
|
+
additionalProperties: {
|
|
28562
|
+
type: string;
|
|
28563
|
+
};
|
|
28564
|
+
type: string;
|
|
28565
|
+
};
|
|
28566
|
+
customer_key: {
|
|
28567
|
+
type: string;
|
|
28568
|
+
};
|
|
28569
|
+
description: {
|
|
28570
|
+
type: string;
|
|
28571
|
+
};
|
|
28572
|
+
email_address: {
|
|
28573
|
+
type: string;
|
|
28574
|
+
};
|
|
28575
|
+
ends_at: {
|
|
28576
|
+
type: string;
|
|
28577
|
+
};
|
|
28578
|
+
icon_url: {
|
|
28579
|
+
type: string;
|
|
28580
|
+
};
|
|
28581
|
+
location_keys: {
|
|
28582
|
+
items: {
|
|
28583
|
+
type: string;
|
|
28584
|
+
};
|
|
28585
|
+
type: string;
|
|
28586
|
+
};
|
|
28587
|
+
name: {
|
|
28588
|
+
type: string;
|
|
28589
|
+
};
|
|
28590
|
+
partner_resource_key: {
|
|
28591
|
+
type: string;
|
|
28592
|
+
};
|
|
28593
|
+
partner_resource_type: {
|
|
28594
|
+
type: string;
|
|
28595
|
+
};
|
|
28596
|
+
phone_number: {
|
|
28597
|
+
type: string;
|
|
28598
|
+
};
|
|
28599
|
+
starts_at: {
|
|
28600
|
+
type: string;
|
|
28601
|
+
};
|
|
28602
|
+
user_identity_key: {
|
|
28603
|
+
type: string;
|
|
28604
|
+
};
|
|
28605
|
+
};
|
|
28606
|
+
type: string;
|
|
28607
|
+
};
|
|
28608
|
+
type: string;
|
|
28609
|
+
properties?: never;
|
|
28610
|
+
} | {
|
|
28611
|
+
properties: {
|
|
28612
|
+
custom_metadata: {
|
|
28613
|
+
additionalProperties: {
|
|
28614
|
+
type: string;
|
|
28615
|
+
};
|
|
28616
|
+
type: string;
|
|
28617
|
+
};
|
|
28618
|
+
customer_key: {
|
|
28619
|
+
type: string;
|
|
28620
|
+
};
|
|
28621
|
+
description: {
|
|
28622
|
+
type: string;
|
|
28623
|
+
};
|
|
28624
|
+
email_address: {
|
|
28625
|
+
type: string;
|
|
28626
|
+
};
|
|
28627
|
+
ends_at: {
|
|
28628
|
+
type: string;
|
|
28629
|
+
};
|
|
28630
|
+
icon_url: {
|
|
28631
|
+
type: string;
|
|
28632
|
+
};
|
|
28633
|
+
location_keys: {
|
|
28634
|
+
items: {
|
|
28635
|
+
type: string;
|
|
28636
|
+
};
|
|
28637
|
+
type: string;
|
|
28638
|
+
};
|
|
28639
|
+
name: {
|
|
28640
|
+
type: string;
|
|
28641
|
+
};
|
|
28642
|
+
partner_resource_key: {
|
|
28643
|
+
type: string;
|
|
28644
|
+
};
|
|
28645
|
+
partner_resource_type: {
|
|
28646
|
+
type: string;
|
|
28647
|
+
};
|
|
28648
|
+
phone_number: {
|
|
28649
|
+
type: string;
|
|
28650
|
+
};
|
|
28651
|
+
starts_at: {
|
|
28652
|
+
type: string;
|
|
28653
|
+
};
|
|
28654
|
+
user_identity_key: {
|
|
28655
|
+
type: string;
|
|
28656
|
+
};
|
|
28657
|
+
};
|
|
28658
|
+
type: string;
|
|
28659
|
+
items?: never;
|
|
28660
|
+
})[];
|
|
28661
|
+
};
|
|
28662
|
+
};
|
|
28663
|
+
};
|
|
28664
|
+
};
|
|
28665
|
+
responses: {
|
|
28666
|
+
200: {
|
|
28667
|
+
content: {
|
|
28668
|
+
'application/json': {
|
|
28669
|
+
schema: {
|
|
28670
|
+
properties: {
|
|
28671
|
+
ok: {
|
|
28672
|
+
type: string;
|
|
28673
|
+
};
|
|
28674
|
+
};
|
|
28675
|
+
required: string[];
|
|
28676
|
+
type: string;
|
|
28677
|
+
};
|
|
28678
|
+
};
|
|
28679
|
+
};
|
|
28680
|
+
description: string;
|
|
28681
|
+
};
|
|
28682
|
+
400: {
|
|
28683
|
+
description: string;
|
|
28684
|
+
};
|
|
28685
|
+
401: {
|
|
28686
|
+
description: string;
|
|
28687
|
+
};
|
|
28688
|
+
};
|
|
28689
|
+
security: ({
|
|
28690
|
+
pat_with_workspace: never[];
|
|
28691
|
+
console_session_with_workspace?: never;
|
|
28692
|
+
api_key?: never;
|
|
28693
|
+
} | {
|
|
28694
|
+
console_session_with_workspace: never[];
|
|
28695
|
+
pat_with_workspace?: never;
|
|
28696
|
+
api_key?: never;
|
|
28697
|
+
} | {
|
|
28698
|
+
api_key: never[];
|
|
28699
|
+
pat_with_workspace?: never;
|
|
28700
|
+
console_session_with_workspace?: never;
|
|
28701
|
+
})[];
|
|
28702
|
+
summary: string;
|
|
28703
|
+
tags: never[];
|
|
28704
|
+
'x-fern-sdk-group-name': string[];
|
|
28705
|
+
'x-fern-sdk-method-name': string;
|
|
28706
|
+
'x-response-key': null;
|
|
28707
|
+
'x-title': string;
|
|
28708
|
+
'x-undocumented': string;
|
|
28709
|
+
};
|
|
28710
|
+
};
|
|
28331
28711
|
'/user_identities/add_acs_user': {
|
|
28332
28712
|
post: {
|
|
28333
28713
|
description: string;
|
|
@@ -30734,6 +31114,7 @@ declare const _default: {
|
|
|
30734
31114
|
};
|
|
30735
31115
|
'/workspaces/reset_sandbox': {
|
|
30736
31116
|
post: {
|
|
31117
|
+
description: string;
|
|
30737
31118
|
operationId: string;
|
|
30738
31119
|
responses: {
|
|
30739
31120
|
200: {
|