@composio/client 0.1.0-alpha.61 → 0.1.0-alpha.62
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/CHANGELOG.md +17 -0
- package/package.json +12 -1
- package/resources/auth-configs.d.mts +16 -0
- package/resources/auth-configs.d.mts.map +1 -1
- package/resources/auth-configs.d.ts +16 -0
- package/resources/auth-configs.d.ts.map +1 -1
- package/resources/connected-accounts.d.mts +890 -174
- package/resources/connected-accounts.d.mts.map +1 -1
- package/resources/connected-accounts.d.ts +890 -174
- package/resources/connected-accounts.d.ts.map +1 -1
- package/resources/link.d.mts +168 -1
- package/resources/link.d.mts.map +1 -1
- package/resources/link.d.ts +168 -1
- package/resources/link.d.ts.map +1 -1
- package/resources/tool-router/index.d.mts +1 -1
- package/resources/tool-router/index.d.mts.map +1 -1
- package/resources/tool-router/index.d.ts +1 -1
- package/resources/tool-router/index.d.ts.map +1 -1
- package/resources/tool-router/index.js.map +1 -1
- package/resources/tool-router/index.mjs.map +1 -1
- package/resources/tool-router/session/index.d.mts +1 -1
- package/resources/tool-router/session/index.d.mts.map +1 -1
- package/resources/tool-router/session/index.d.ts +1 -1
- package/resources/tool-router/session/index.d.ts.map +1 -1
- package/resources/tool-router/session/index.js.map +1 -1
- package/resources/tool-router/session/index.mjs.map +1 -1
- package/resources/tool-router/session/session.d.mts +793 -4
- package/resources/tool-router/session/session.d.mts.map +1 -1
- package/resources/tool-router/session/session.d.ts +793 -4
- package/resources/tool-router/session/session.d.ts.map +1 -1
- package/resources/tool-router/session/session.js +28 -0
- package/resources/tool-router/session/session.js.map +1 -1
- package/resources/tool-router/session/session.mjs +28 -0
- package/resources/tool-router/session/session.mjs.map +1 -1
- package/resources/tool-router/tool-router.d.mts +2 -2
- package/resources/tool-router/tool-router.d.mts.map +1 -1
- package/resources/tool-router/tool-router.d.ts +2 -2
- package/resources/tool-router/tool-router.d.ts.map +1 -1
- package/resources/tool-router/tool-router.js.map +1 -1
- package/resources/tool-router/tool-router.mjs.map +1 -1
- package/resources/toolkits.d.mts +13 -0
- package/resources/toolkits.d.mts.map +1 -1
- package/resources/toolkits.d.ts +13 -0
- package/resources/toolkits.d.ts.map +1 -1
- package/resources/tools.d.mts +80 -2
- package/resources/tools.d.mts.map +1 -1
- package/resources/tools.d.ts +80 -2
- package/resources/tools.d.ts.map +1 -1
- package/resources/trigger-instances/trigger-instances.d.mts +4 -0
- package/resources/trigger-instances/trigger-instances.d.mts.map +1 -1
- package/resources/trigger-instances/trigger-instances.d.ts +4 -0
- package/resources/trigger-instances/trigger-instances.d.ts.map +1 -1
- package/resources/trigger-instances/trigger-instances.js.map +1 -1
- package/resources/trigger-instances/trigger-instances.mjs.map +1 -1
- package/src/resources/auth-configs.ts +20 -0
- package/src/resources/connected-accounts.ts +3140 -1744
- package/src/resources/link.ts +329 -1
- package/src/resources/tool-router/index.ts +2 -0
- package/src/resources/tool-router/session/index.ts +2 -0
- package/src/resources/tool-router/session/session.ts +1207 -3
- package/src/resources/tool-router/tool-router.ts +4 -0
- package/src/resources/toolkits.ts +16 -0
- package/src/resources/tools.ts +148 -2
- package/src/resources/trigger-instances/trigger-instances.ts +5 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -77,6 +77,29 @@ export declare class Session extends APIResource {
|
|
|
77
77
|
* ```
|
|
78
78
|
*/
|
|
79
79
|
link(sessionID: string, body: SessionLinkParams, options?: RequestOptions): APIPromise<SessionLinkResponse>;
|
|
80
|
+
/**
|
|
81
|
+
* Execute any native API call on a toolkit with authentication automatically
|
|
82
|
+
* injected from Composio. This endpoint proxies HTTP requests to third-party APIs
|
|
83
|
+
* using connected account credentials resolved from the session context. Provide
|
|
84
|
+
* the toolkit slug, API endpoint, and HTTP method — Composio handles
|
|
85
|
+
* authentication injection, abstracting away credential management. Supports all
|
|
86
|
+
* HTTP methods, custom headers/query parameters, and binary request/response
|
|
87
|
+
* bodies.
|
|
88
|
+
*
|
|
89
|
+
* @example
|
|
90
|
+
* ```ts
|
|
91
|
+
* const response =
|
|
92
|
+
* await client.toolRouter.session.proxyExecute(
|
|
93
|
+
* 'trs_LX9uJKBinWWr',
|
|
94
|
+
* {
|
|
95
|
+
* endpoint: '/api/v1/resources',
|
|
96
|
+
* method: 'GET',
|
|
97
|
+
* toolkit_slug: 'gmail',
|
|
98
|
+
* },
|
|
99
|
+
* );
|
|
100
|
+
* ```
|
|
101
|
+
*/
|
|
102
|
+
proxyExecute(sessionID: string, body: SessionProxyExecuteParams, options?: RequestOptions): APIPromise<SessionProxyExecuteResponse>;
|
|
80
103
|
/**
|
|
81
104
|
* Search for tools matching a given use case query within a tool router session.
|
|
82
105
|
* Returns matching tool slugs, full tool schemas, toolkit connection statuses, and
|
|
@@ -258,6 +281,11 @@ export declare namespace SessionCreateResponse {
|
|
|
258
281
|
* workbench. Default is 20k.
|
|
259
282
|
*/
|
|
260
283
|
auto_offload_threshold?: number;
|
|
284
|
+
/**
|
|
285
|
+
* Whether the workbench (code execution sandbox) is enabled. When false,
|
|
286
|
+
* COMPOSIO_REMOTE_WORKBENCH and COMPOSIO_REMOTE_BASH_TOOL are not exposed.
|
|
287
|
+
*/
|
|
288
|
+
enable?: boolean;
|
|
261
289
|
/**
|
|
262
290
|
* Whether proxy execution is enabled in the workbench
|
|
263
291
|
*/
|
|
@@ -280,10 +308,64 @@ export declare namespace SessionCreateResponse {
|
|
|
280
308
|
*/
|
|
281
309
|
interface Experimental {
|
|
282
310
|
/**
|
|
283
|
-
* The assistive system prompt
|
|
284
|
-
|
|
311
|
+
* The assistive system prompt for the tool router session
|
|
312
|
+
*/
|
|
313
|
+
assistive_prompt?: string;
|
|
314
|
+
/**
|
|
315
|
+
* User-defined custom toolkits with grouped tools (no-auth)
|
|
316
|
+
*/
|
|
317
|
+
custom_toolkits?: Array<Experimental.CustomToolkit>;
|
|
318
|
+
/**
|
|
319
|
+
* Custom tools — standalone or extending Composio toolkits
|
|
285
320
|
*/
|
|
286
|
-
|
|
321
|
+
custom_tools?: Array<Experimental.CustomTool>;
|
|
322
|
+
}
|
|
323
|
+
namespace Experimental {
|
|
324
|
+
interface CustomToolkit {
|
|
325
|
+
description: string;
|
|
326
|
+
name: string;
|
|
327
|
+
slug: string;
|
|
328
|
+
tools: Array<CustomToolkit.Tool>;
|
|
329
|
+
}
|
|
330
|
+
namespace CustomToolkit {
|
|
331
|
+
interface Tool {
|
|
332
|
+
description: string;
|
|
333
|
+
input_schema: {
|
|
334
|
+
[key: string]: unknown;
|
|
335
|
+
};
|
|
336
|
+
name: string;
|
|
337
|
+
/**
|
|
338
|
+
* Original tool slug as provided by the user
|
|
339
|
+
*/
|
|
340
|
+
original_slug: string;
|
|
341
|
+
/**
|
|
342
|
+
* Prefixed tool slug (e.g. LOCAL_CRM_FIND_CUSTOMER)
|
|
343
|
+
*/
|
|
344
|
+
slug: string;
|
|
345
|
+
output_schema?: {
|
|
346
|
+
[key: string]: unknown;
|
|
347
|
+
};
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
interface CustomTool {
|
|
351
|
+
description: string;
|
|
352
|
+
input_schema: {
|
|
353
|
+
[key: string]: unknown;
|
|
354
|
+
};
|
|
355
|
+
name: string;
|
|
356
|
+
/**
|
|
357
|
+
* Original tool slug as provided by the user
|
|
358
|
+
*/
|
|
359
|
+
original_slug: string;
|
|
360
|
+
/**
|
|
361
|
+
* Prefixed tool slug (e.g. LOCAL_GMAIL_GET_IMPORTANT_EMAILS)
|
|
362
|
+
*/
|
|
363
|
+
slug: string;
|
|
364
|
+
extends_toolkit?: string;
|
|
365
|
+
output_schema?: {
|
|
366
|
+
[key: string]: unknown;
|
|
367
|
+
};
|
|
368
|
+
}
|
|
287
369
|
}
|
|
288
370
|
}
|
|
289
371
|
export interface SessionRetrieveResponse {
|
|
@@ -300,6 +382,10 @@ export interface SessionRetrieveResponse {
|
|
|
300
382
|
* List of available tools in this session
|
|
301
383
|
*/
|
|
302
384
|
tool_router_tools: Array<string>;
|
|
385
|
+
/**
|
|
386
|
+
* Experimental features
|
|
387
|
+
*/
|
|
388
|
+
experimental?: SessionRetrieveResponse.Experimental;
|
|
303
389
|
}
|
|
304
390
|
export declare namespace SessionRetrieveResponse {
|
|
305
391
|
/**
|
|
@@ -417,6 +503,11 @@ export declare namespace SessionRetrieveResponse {
|
|
|
417
503
|
* workbench. Default is 20k.
|
|
418
504
|
*/
|
|
419
505
|
auto_offload_threshold?: number;
|
|
506
|
+
/**
|
|
507
|
+
* Whether the workbench (code execution sandbox) is enabled. When false,
|
|
508
|
+
* COMPOSIO_REMOTE_WORKBENCH and COMPOSIO_REMOTE_BASH_TOOL are not exposed.
|
|
509
|
+
*/
|
|
510
|
+
enable?: boolean;
|
|
420
511
|
/**
|
|
421
512
|
* Whether proxy execution is enabled in the workbench
|
|
422
513
|
*/
|
|
@@ -433,6 +524,70 @@ export declare namespace SessionRetrieveResponse {
|
|
|
433
524
|
*/
|
|
434
525
|
url: string;
|
|
435
526
|
}
|
|
527
|
+
/**
|
|
528
|
+
* Experimental features
|
|
529
|
+
*/
|
|
530
|
+
interface Experimental {
|
|
531
|
+
/**
|
|
532
|
+
* The assistive system prompt for the tool router session
|
|
533
|
+
*/
|
|
534
|
+
assistive_prompt?: string;
|
|
535
|
+
/**
|
|
536
|
+
* User-defined custom toolkits with grouped tools (no-auth)
|
|
537
|
+
*/
|
|
538
|
+
custom_toolkits?: Array<Experimental.CustomToolkit>;
|
|
539
|
+
/**
|
|
540
|
+
* Custom tools — standalone or extending Composio toolkits
|
|
541
|
+
*/
|
|
542
|
+
custom_tools?: Array<Experimental.CustomTool>;
|
|
543
|
+
}
|
|
544
|
+
namespace Experimental {
|
|
545
|
+
interface CustomToolkit {
|
|
546
|
+
description: string;
|
|
547
|
+
name: string;
|
|
548
|
+
slug: string;
|
|
549
|
+
tools: Array<CustomToolkit.Tool>;
|
|
550
|
+
}
|
|
551
|
+
namespace CustomToolkit {
|
|
552
|
+
interface Tool {
|
|
553
|
+
description: string;
|
|
554
|
+
input_schema: {
|
|
555
|
+
[key: string]: unknown;
|
|
556
|
+
};
|
|
557
|
+
name: string;
|
|
558
|
+
/**
|
|
559
|
+
* Original tool slug as provided by the user
|
|
560
|
+
*/
|
|
561
|
+
original_slug: string;
|
|
562
|
+
/**
|
|
563
|
+
* Prefixed tool slug (e.g. LOCAL_CRM_FIND_CUSTOMER)
|
|
564
|
+
*/
|
|
565
|
+
slug: string;
|
|
566
|
+
output_schema?: {
|
|
567
|
+
[key: string]: unknown;
|
|
568
|
+
};
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
interface CustomTool {
|
|
572
|
+
description: string;
|
|
573
|
+
input_schema: {
|
|
574
|
+
[key: string]: unknown;
|
|
575
|
+
};
|
|
576
|
+
name: string;
|
|
577
|
+
/**
|
|
578
|
+
* Original tool slug as provided by the user
|
|
579
|
+
*/
|
|
580
|
+
original_slug: string;
|
|
581
|
+
/**
|
|
582
|
+
* Prefixed tool slug (e.g. LOCAL_GMAIL_GET_IMPORTANT_EMAILS)
|
|
583
|
+
*/
|
|
584
|
+
slug: string;
|
|
585
|
+
extends_toolkit?: string;
|
|
586
|
+
output_schema?: {
|
|
587
|
+
[key: string]: unknown;
|
|
588
|
+
};
|
|
589
|
+
}
|
|
590
|
+
}
|
|
436
591
|
}
|
|
437
592
|
export interface SessionExecuteResponse {
|
|
438
593
|
/**
|
|
@@ -480,6 +635,49 @@ export interface SessionLinkResponse {
|
|
|
480
635
|
*/
|
|
481
636
|
redirect_url: string;
|
|
482
637
|
}
|
|
638
|
+
export interface SessionProxyExecuteResponse {
|
|
639
|
+
/**
|
|
640
|
+
* The HTTP status code returned from the proxied API
|
|
641
|
+
*/
|
|
642
|
+
status: number;
|
|
643
|
+
/**
|
|
644
|
+
* Binary body response data. Present when the response is a binary file.
|
|
645
|
+
*/
|
|
646
|
+
binary_data?: SessionProxyExecuteResponse.BinaryData;
|
|
647
|
+
/**
|
|
648
|
+
* The response data returned from the proxied API
|
|
649
|
+
*/
|
|
650
|
+
data?: unknown;
|
|
651
|
+
/**
|
|
652
|
+
* The HTTP headers returned from the proxied API
|
|
653
|
+
*/
|
|
654
|
+
headers?: {
|
|
655
|
+
[key: string]: string;
|
|
656
|
+
};
|
|
657
|
+
}
|
|
658
|
+
export declare namespace SessionProxyExecuteResponse {
|
|
659
|
+
/**
|
|
660
|
+
* Binary body response data. Present when the response is a binary file.
|
|
661
|
+
*/
|
|
662
|
+
interface BinaryData {
|
|
663
|
+
/**
|
|
664
|
+
* Content-Type of the binary data
|
|
665
|
+
*/
|
|
666
|
+
content_type: string;
|
|
667
|
+
/**
|
|
668
|
+
* File size in bytes
|
|
669
|
+
*/
|
|
670
|
+
size: number;
|
|
671
|
+
/**
|
|
672
|
+
* URL to download binary content
|
|
673
|
+
*/
|
|
674
|
+
url: string;
|
|
675
|
+
/**
|
|
676
|
+
* ISO 8601 timestamp when the URL expires
|
|
677
|
+
*/
|
|
678
|
+
expires_at?: string;
|
|
679
|
+
}
|
|
680
|
+
}
|
|
483
681
|
export interface SessionSearchResponse {
|
|
484
682
|
/**
|
|
485
683
|
* Error message if any searches failed, null if all succeeded. Format: "X out of Y
|
|
@@ -994,6 +1192,16 @@ export declare namespace SessionCreateParams {
|
|
|
994
1192
|
* Customize assistive prompt generation (e.g., timezone).
|
|
995
1193
|
*/
|
|
996
1194
|
assistive_prompt_config?: Experimental.AssistivePromptConfig;
|
|
1195
|
+
/**
|
|
1196
|
+
* Custom toolkits with grouped tools. Toolkit slugs must not conflict with
|
|
1197
|
+
* existing Composio toolkits. All tools are no-auth.
|
|
1198
|
+
*/
|
|
1199
|
+
custom_toolkits?: Array<Experimental.CustomToolkit>;
|
|
1200
|
+
/**
|
|
1201
|
+
* Custom tools to include in search. Standalone tools need no auth. Tools with
|
|
1202
|
+
* extends_toolkit inherit the Composio toolkit's connection.
|
|
1203
|
+
*/
|
|
1204
|
+
custom_tools?: Array<Experimental.CustomTool>;
|
|
997
1205
|
}
|
|
998
1206
|
namespace Experimental {
|
|
999
1207
|
/**
|
|
@@ -1006,6 +1214,86 @@ export declare namespace SessionCreateParams {
|
|
|
1006
1214
|
*/
|
|
1007
1215
|
user_timezone?: string;
|
|
1008
1216
|
}
|
|
1217
|
+
interface CustomToolkit {
|
|
1218
|
+
/**
|
|
1219
|
+
* Used for BM25 search matching and shown in toolkit connection statuses.
|
|
1220
|
+
*/
|
|
1221
|
+
description: string;
|
|
1222
|
+
/**
|
|
1223
|
+
* Display name shown to the LLM and in search results.
|
|
1224
|
+
*/
|
|
1225
|
+
name: string;
|
|
1226
|
+
/**
|
|
1227
|
+
* Unique slug for the toolkit. Must not conflict with existing Composio toolkit
|
|
1228
|
+
* slugs. Alphanumeric, underscores, and hyphens only.
|
|
1229
|
+
*/
|
|
1230
|
+
slug: string;
|
|
1231
|
+
/**
|
|
1232
|
+
* Tools in this custom toolkit
|
|
1233
|
+
*/
|
|
1234
|
+
tools: Array<CustomToolkit.Tool>;
|
|
1235
|
+
}
|
|
1236
|
+
namespace CustomToolkit {
|
|
1237
|
+
interface Tool {
|
|
1238
|
+
/**
|
|
1239
|
+
* Used for BM25 search matching and shown to the LLM.
|
|
1240
|
+
*/
|
|
1241
|
+
description: string;
|
|
1242
|
+
/**
|
|
1243
|
+
* Must have type: "object" and a properties field.
|
|
1244
|
+
*/
|
|
1245
|
+
input_schema: {
|
|
1246
|
+
[key: string]: unknown;
|
|
1247
|
+
};
|
|
1248
|
+
/**
|
|
1249
|
+
* Human-readable display name
|
|
1250
|
+
*/
|
|
1251
|
+
name: string;
|
|
1252
|
+
/**
|
|
1253
|
+
* Tool slug. Combined with toolkit slug to form LOCAL*<TOOLKIT>*<TOOL> (max 60
|
|
1254
|
+
* chars total).
|
|
1255
|
+
*/
|
|
1256
|
+
slug: string;
|
|
1257
|
+
/**
|
|
1258
|
+
* Optional output schema for the tool response.
|
|
1259
|
+
*/
|
|
1260
|
+
output_schema?: {
|
|
1261
|
+
[key: string]: unknown;
|
|
1262
|
+
};
|
|
1263
|
+
}
|
|
1264
|
+
}
|
|
1265
|
+
interface CustomTool {
|
|
1266
|
+
/**
|
|
1267
|
+
* Used for BM25 search matching and shown to the LLM.
|
|
1268
|
+
*/
|
|
1269
|
+
description: string;
|
|
1270
|
+
/**
|
|
1271
|
+
* Must have type: "object" and a properties field.
|
|
1272
|
+
*/
|
|
1273
|
+
input_schema: {
|
|
1274
|
+
[key: string]: unknown;
|
|
1275
|
+
};
|
|
1276
|
+
/**
|
|
1277
|
+
* Human-readable display name
|
|
1278
|
+
*/
|
|
1279
|
+
name: string;
|
|
1280
|
+
/**
|
|
1281
|
+
* Tool slug. Forms LOCAL*<TOOL> (standalone) or LOCAL*<TOOLKIT>\_<TOOL>
|
|
1282
|
+
* (extending). Max 60 chars total.
|
|
1283
|
+
*/
|
|
1284
|
+
slug: string;
|
|
1285
|
+
/**
|
|
1286
|
+
* If set, must be a valid Composio toolkit slug. The tool inherits that toolkit's
|
|
1287
|
+
* auth/connection status. If omitted, the tool is standalone (no-auth).
|
|
1288
|
+
*/
|
|
1289
|
+
extends_toolkit?: string;
|
|
1290
|
+
/**
|
|
1291
|
+
* JSON Schema describing tool output (optional)
|
|
1292
|
+
*/
|
|
1293
|
+
output_schema?: {
|
|
1294
|
+
[key: string]: unknown;
|
|
1295
|
+
};
|
|
1296
|
+
}
|
|
1009
1297
|
}
|
|
1010
1298
|
/**
|
|
1011
1299
|
* Configuration for connection management settings
|
|
@@ -1099,6 +1387,11 @@ export declare namespace SessionCreateParams {
|
|
|
1099
1387
|
* automatically based on the response size.
|
|
1100
1388
|
*/
|
|
1101
1389
|
auto_offload_threshold?: number;
|
|
1390
|
+
/**
|
|
1391
|
+
* Set to false to disable the workbench entirely. When disabled, no code execution
|
|
1392
|
+
* tools are available in the session.
|
|
1393
|
+
*/
|
|
1394
|
+
enable?: boolean;
|
|
1102
1395
|
/**
|
|
1103
1396
|
* Whether proxy execution is enabled. When enabled, workbench can call URLs and
|
|
1104
1397
|
* APIs directly.
|
|
@@ -1140,6 +1433,502 @@ export interface SessionLinkParams {
|
|
|
1140
1433
|
*/
|
|
1141
1434
|
callback_url?: string;
|
|
1142
1435
|
}
|
|
1436
|
+
export interface SessionProxyExecuteParams {
|
|
1437
|
+
/**
|
|
1438
|
+
* The API endpoint to call (absolute URL or path relative to base URL of the
|
|
1439
|
+
* connected account)
|
|
1440
|
+
*/
|
|
1441
|
+
endpoint: string;
|
|
1442
|
+
/**
|
|
1443
|
+
* The HTTP method to use for the request
|
|
1444
|
+
*/
|
|
1445
|
+
method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD';
|
|
1446
|
+
/**
|
|
1447
|
+
* The slug of the toolkit to use for the request
|
|
1448
|
+
*/
|
|
1449
|
+
toolkit_slug: string;
|
|
1450
|
+
/**
|
|
1451
|
+
* Binary body to send. For binary upload via URL: use {url: "https://...",
|
|
1452
|
+
* content_type?: "..."}. For binary upload via base64: use {base64: "...",
|
|
1453
|
+
* content_type?: "..."}.
|
|
1454
|
+
*/
|
|
1455
|
+
binary_body?: SessionProxyExecuteParams.UnionMember0 | SessionProxyExecuteParams.UnionMember1;
|
|
1456
|
+
/**
|
|
1457
|
+
* The request body (for POST, PUT, and PATCH requests)
|
|
1458
|
+
*/
|
|
1459
|
+
body?: unknown;
|
|
1460
|
+
custom_connection_data?: SessionProxyExecuteParams.UnionMember0 | SessionProxyExecuteParams.UnionMember1 | SessionProxyExecuteParams.UnionMember2 | SessionProxyExecuteParams.UnionMember3 | SessionProxyExecuteParams.UnionMember4 | SessionProxyExecuteParams.UnionMember5 | SessionProxyExecuteParams.UnionMember6 | SessionProxyExecuteParams.UnionMember7 | SessionProxyExecuteParams.UnionMember8 | SessionProxyExecuteParams.UnionMember9 | SessionProxyExecuteParams.UnionMember10;
|
|
1461
|
+
/**
|
|
1462
|
+
* Additional HTTP headers or query parameters to include in the request
|
|
1463
|
+
*/
|
|
1464
|
+
parameters?: Array<SessionProxyExecuteParams.Parameter>;
|
|
1465
|
+
}
|
|
1466
|
+
export declare namespace SessionProxyExecuteParams {
|
|
1467
|
+
interface UnionMember0 {
|
|
1468
|
+
/**
|
|
1469
|
+
* URL to fetch binary content from
|
|
1470
|
+
*/
|
|
1471
|
+
url: string;
|
|
1472
|
+
/**
|
|
1473
|
+
* Content-Type header to use for the request
|
|
1474
|
+
*/
|
|
1475
|
+
content_type?: string;
|
|
1476
|
+
}
|
|
1477
|
+
interface UnionMember1 {
|
|
1478
|
+
/**
|
|
1479
|
+
* Base64-encoded binary data
|
|
1480
|
+
*/
|
|
1481
|
+
base64: string;
|
|
1482
|
+
/**
|
|
1483
|
+
* Content-Type header to use for the request
|
|
1484
|
+
*/
|
|
1485
|
+
content_type?: string;
|
|
1486
|
+
}
|
|
1487
|
+
interface UnionMember0 {
|
|
1488
|
+
authScheme: 'OAUTH2';
|
|
1489
|
+
toolkitSlug: string;
|
|
1490
|
+
val: UnionMember0.Val;
|
|
1491
|
+
}
|
|
1492
|
+
namespace UnionMember0 {
|
|
1493
|
+
interface Val {
|
|
1494
|
+
access_token: string;
|
|
1495
|
+
account_id?: string;
|
|
1496
|
+
account_url?: string;
|
|
1497
|
+
api_url?: string;
|
|
1498
|
+
/**
|
|
1499
|
+
* for slack user scopes
|
|
1500
|
+
*/
|
|
1501
|
+
authed_user?: Val.AuthedUser;
|
|
1502
|
+
base_url?: string;
|
|
1503
|
+
borneo_dashboard_url?: string;
|
|
1504
|
+
COMPANYDOMAIN?: string;
|
|
1505
|
+
dc?: string;
|
|
1506
|
+
domain?: string;
|
|
1507
|
+
expires_in?: number | string | null;
|
|
1508
|
+
extension?: string;
|
|
1509
|
+
form_api_base_url?: string;
|
|
1510
|
+
id_token?: string;
|
|
1511
|
+
instanceEndpoint?: string;
|
|
1512
|
+
instanceName?: string;
|
|
1513
|
+
/**
|
|
1514
|
+
* Whether to return the redirect url without shortening
|
|
1515
|
+
*/
|
|
1516
|
+
long_redirect_url?: boolean;
|
|
1517
|
+
proxy_password?: string;
|
|
1518
|
+
proxy_username?: string;
|
|
1519
|
+
refresh_token?: string | null;
|
|
1520
|
+
region?: string;
|
|
1521
|
+
scope?: string | Array<string> | null;
|
|
1522
|
+
server_location?: string;
|
|
1523
|
+
shop?: string;
|
|
1524
|
+
site_name?: string;
|
|
1525
|
+
/**
|
|
1526
|
+
* The oauth2 state prefix for the connection
|
|
1527
|
+
*/
|
|
1528
|
+
state_prefix?: string;
|
|
1529
|
+
subdomain?: string;
|
|
1530
|
+
token_type?: string;
|
|
1531
|
+
version?: string;
|
|
1532
|
+
webhook_signature?: string;
|
|
1533
|
+
your_server?: string;
|
|
1534
|
+
'your-domain'?: string;
|
|
1535
|
+
[k: string]: unknown;
|
|
1536
|
+
}
|
|
1537
|
+
namespace Val {
|
|
1538
|
+
/**
|
|
1539
|
+
* for slack user scopes
|
|
1540
|
+
*/
|
|
1541
|
+
interface AuthedUser {
|
|
1542
|
+
access_token?: string;
|
|
1543
|
+
scope?: string;
|
|
1544
|
+
}
|
|
1545
|
+
}
|
|
1546
|
+
}
|
|
1547
|
+
interface UnionMember1 {
|
|
1548
|
+
authScheme: 'DCR_OAUTH';
|
|
1549
|
+
toolkitSlug: string;
|
|
1550
|
+
val: UnionMember1.Val;
|
|
1551
|
+
}
|
|
1552
|
+
namespace UnionMember1 {
|
|
1553
|
+
interface Val {
|
|
1554
|
+
access_token: string;
|
|
1555
|
+
/**
|
|
1556
|
+
* Dynamically registered client ID
|
|
1557
|
+
*/
|
|
1558
|
+
client_id: string;
|
|
1559
|
+
account_id?: string;
|
|
1560
|
+
account_url?: string;
|
|
1561
|
+
api_url?: string;
|
|
1562
|
+
base_url?: string;
|
|
1563
|
+
borneo_dashboard_url?: string;
|
|
1564
|
+
client_id_issued_at?: number;
|
|
1565
|
+
/**
|
|
1566
|
+
* Dynamically registered client secret
|
|
1567
|
+
*/
|
|
1568
|
+
client_secret?: string;
|
|
1569
|
+
client_secret_expires_at?: number;
|
|
1570
|
+
COMPANYDOMAIN?: string;
|
|
1571
|
+
dc?: string;
|
|
1572
|
+
domain?: string;
|
|
1573
|
+
expires_in?: number | string | null;
|
|
1574
|
+
extension?: string;
|
|
1575
|
+
form_api_base_url?: string;
|
|
1576
|
+
id_token?: string;
|
|
1577
|
+
instanceEndpoint?: string;
|
|
1578
|
+
instanceName?: string;
|
|
1579
|
+
/**
|
|
1580
|
+
* Whether to return the redirect url without shortening
|
|
1581
|
+
*/
|
|
1582
|
+
long_redirect_url?: boolean;
|
|
1583
|
+
proxy_password?: string;
|
|
1584
|
+
proxy_username?: string;
|
|
1585
|
+
refresh_token?: string | null;
|
|
1586
|
+
region?: string;
|
|
1587
|
+
scope?: string | Array<string> | null;
|
|
1588
|
+
server_location?: string;
|
|
1589
|
+
shop?: string;
|
|
1590
|
+
site_name?: string;
|
|
1591
|
+
/**
|
|
1592
|
+
* The oauth2 state prefix for the connection
|
|
1593
|
+
*/
|
|
1594
|
+
state_prefix?: string;
|
|
1595
|
+
subdomain?: string;
|
|
1596
|
+
token_type?: string;
|
|
1597
|
+
version?: string;
|
|
1598
|
+
your_server?: string;
|
|
1599
|
+
'your-domain'?: string;
|
|
1600
|
+
[k: string]: unknown;
|
|
1601
|
+
}
|
|
1602
|
+
}
|
|
1603
|
+
interface UnionMember2 {
|
|
1604
|
+
authScheme: 'API_KEY';
|
|
1605
|
+
toolkitSlug: string;
|
|
1606
|
+
val: UnionMember2.Val;
|
|
1607
|
+
}
|
|
1608
|
+
namespace UnionMember2 {
|
|
1609
|
+
interface Val {
|
|
1610
|
+
account_id?: string;
|
|
1611
|
+
account_url?: string;
|
|
1612
|
+
api_key?: string;
|
|
1613
|
+
api_url?: string;
|
|
1614
|
+
base_url?: string;
|
|
1615
|
+
basic_encoded?: string;
|
|
1616
|
+
bearer_token?: string;
|
|
1617
|
+
borneo_dashboard_url?: string;
|
|
1618
|
+
COMPANYDOMAIN?: string;
|
|
1619
|
+
dc?: string;
|
|
1620
|
+
domain?: string;
|
|
1621
|
+
extension?: string;
|
|
1622
|
+
form_api_base_url?: string;
|
|
1623
|
+
generic_api_key?: string;
|
|
1624
|
+
instanceEndpoint?: string;
|
|
1625
|
+
instanceName?: string;
|
|
1626
|
+
proxy_password?: string;
|
|
1627
|
+
proxy_username?: string;
|
|
1628
|
+
region?: string;
|
|
1629
|
+
server_location?: string;
|
|
1630
|
+
shop?: string;
|
|
1631
|
+
site_name?: string;
|
|
1632
|
+
subdomain?: string;
|
|
1633
|
+
version?: string;
|
|
1634
|
+
your_server?: string;
|
|
1635
|
+
'your-domain'?: string;
|
|
1636
|
+
[k: string]: unknown;
|
|
1637
|
+
}
|
|
1638
|
+
}
|
|
1639
|
+
interface UnionMember3 {
|
|
1640
|
+
authScheme: 'BASIC_WITH_JWT';
|
|
1641
|
+
toolkitSlug: string;
|
|
1642
|
+
val: UnionMember3.Val;
|
|
1643
|
+
}
|
|
1644
|
+
namespace UnionMember3 {
|
|
1645
|
+
interface Val {
|
|
1646
|
+
password: string;
|
|
1647
|
+
username: string;
|
|
1648
|
+
account_id?: string;
|
|
1649
|
+
account_url?: string;
|
|
1650
|
+
api_url?: string;
|
|
1651
|
+
base_url?: string;
|
|
1652
|
+
borneo_dashboard_url?: string;
|
|
1653
|
+
COMPANYDOMAIN?: string;
|
|
1654
|
+
dc?: string;
|
|
1655
|
+
domain?: string;
|
|
1656
|
+
extension?: string;
|
|
1657
|
+
form_api_base_url?: string;
|
|
1658
|
+
instanceEndpoint?: string;
|
|
1659
|
+
instanceName?: string;
|
|
1660
|
+
proxy_password?: string;
|
|
1661
|
+
proxy_username?: string;
|
|
1662
|
+
region?: string;
|
|
1663
|
+
server_location?: string;
|
|
1664
|
+
shop?: string;
|
|
1665
|
+
site_name?: string;
|
|
1666
|
+
subdomain?: string;
|
|
1667
|
+
version?: string;
|
|
1668
|
+
your_server?: string;
|
|
1669
|
+
'your-domain'?: string;
|
|
1670
|
+
[k: string]: unknown;
|
|
1671
|
+
}
|
|
1672
|
+
}
|
|
1673
|
+
interface UnionMember4 {
|
|
1674
|
+
authScheme: 'BASIC';
|
|
1675
|
+
toolkitSlug: string;
|
|
1676
|
+
val: UnionMember4.Val;
|
|
1677
|
+
}
|
|
1678
|
+
namespace UnionMember4 {
|
|
1679
|
+
interface Val {
|
|
1680
|
+
username: string;
|
|
1681
|
+
account_id?: string;
|
|
1682
|
+
account_url?: string;
|
|
1683
|
+
api_url?: string;
|
|
1684
|
+
base_url?: string;
|
|
1685
|
+
borneo_dashboard_url?: string;
|
|
1686
|
+
COMPANYDOMAIN?: string;
|
|
1687
|
+
dc?: string;
|
|
1688
|
+
domain?: string;
|
|
1689
|
+
extension?: string;
|
|
1690
|
+
form_api_base_url?: string;
|
|
1691
|
+
instanceEndpoint?: string;
|
|
1692
|
+
instanceName?: string;
|
|
1693
|
+
password?: string;
|
|
1694
|
+
proxy_password?: string;
|
|
1695
|
+
proxy_username?: string;
|
|
1696
|
+
region?: string;
|
|
1697
|
+
server_location?: string;
|
|
1698
|
+
shop?: string;
|
|
1699
|
+
site_name?: string;
|
|
1700
|
+
subdomain?: string;
|
|
1701
|
+
version?: string;
|
|
1702
|
+
your_server?: string;
|
|
1703
|
+
'your-domain'?: string;
|
|
1704
|
+
[k: string]: unknown;
|
|
1705
|
+
}
|
|
1706
|
+
}
|
|
1707
|
+
interface UnionMember5 {
|
|
1708
|
+
authScheme: 'BEARER_TOKEN';
|
|
1709
|
+
toolkitSlug: string;
|
|
1710
|
+
val: UnionMember5.Val;
|
|
1711
|
+
}
|
|
1712
|
+
namespace UnionMember5 {
|
|
1713
|
+
interface Val {
|
|
1714
|
+
token: string;
|
|
1715
|
+
account_id?: string;
|
|
1716
|
+
account_url?: string;
|
|
1717
|
+
api_url?: string;
|
|
1718
|
+
base_url?: string;
|
|
1719
|
+
borneo_dashboard_url?: string;
|
|
1720
|
+
COMPANYDOMAIN?: string;
|
|
1721
|
+
dc?: string;
|
|
1722
|
+
domain?: string;
|
|
1723
|
+
extension?: string;
|
|
1724
|
+
form_api_base_url?: string;
|
|
1725
|
+
instanceEndpoint?: string;
|
|
1726
|
+
instanceName?: string;
|
|
1727
|
+
proxy_password?: string;
|
|
1728
|
+
proxy_username?: string;
|
|
1729
|
+
region?: string;
|
|
1730
|
+
server_location?: string;
|
|
1731
|
+
shop?: string;
|
|
1732
|
+
site_name?: string;
|
|
1733
|
+
subdomain?: string;
|
|
1734
|
+
version?: string;
|
|
1735
|
+
your_server?: string;
|
|
1736
|
+
'your-domain'?: string;
|
|
1737
|
+
[k: string]: unknown;
|
|
1738
|
+
}
|
|
1739
|
+
}
|
|
1740
|
+
interface UnionMember6 {
|
|
1741
|
+
authScheme: 'OAUTH1';
|
|
1742
|
+
toolkitSlug: string;
|
|
1743
|
+
val: UnionMember6.Val;
|
|
1744
|
+
}
|
|
1745
|
+
namespace UnionMember6 {
|
|
1746
|
+
interface Val {
|
|
1747
|
+
oauth_token: string;
|
|
1748
|
+
oauth_token_secret: string;
|
|
1749
|
+
account_id?: string;
|
|
1750
|
+
account_url?: string;
|
|
1751
|
+
api_url?: string;
|
|
1752
|
+
base_url?: string;
|
|
1753
|
+
borneo_dashboard_url?: string;
|
|
1754
|
+
callback_url?: string;
|
|
1755
|
+
COMPANYDOMAIN?: string;
|
|
1756
|
+
consumer_key?: string;
|
|
1757
|
+
dc?: string;
|
|
1758
|
+
domain?: string;
|
|
1759
|
+
extension?: string;
|
|
1760
|
+
form_api_base_url?: string;
|
|
1761
|
+
instanceEndpoint?: string;
|
|
1762
|
+
instanceName?: string;
|
|
1763
|
+
oauth_verifier?: string;
|
|
1764
|
+
proxy_password?: string;
|
|
1765
|
+
proxy_username?: string;
|
|
1766
|
+
redirectUrl?: string;
|
|
1767
|
+
region?: string;
|
|
1768
|
+
server_location?: string;
|
|
1769
|
+
shop?: string;
|
|
1770
|
+
site_name?: string;
|
|
1771
|
+
subdomain?: string;
|
|
1772
|
+
version?: string;
|
|
1773
|
+
your_server?: string;
|
|
1774
|
+
'your-domain'?: string;
|
|
1775
|
+
[k: string]: unknown;
|
|
1776
|
+
}
|
|
1777
|
+
}
|
|
1778
|
+
interface UnionMember7 {
|
|
1779
|
+
authScheme: 'NO_AUTH';
|
|
1780
|
+
toolkitSlug: string;
|
|
1781
|
+
val: UnionMember7.Val;
|
|
1782
|
+
}
|
|
1783
|
+
namespace UnionMember7 {
|
|
1784
|
+
interface Val {
|
|
1785
|
+
account_id?: string;
|
|
1786
|
+
account_url?: string;
|
|
1787
|
+
api_url?: string;
|
|
1788
|
+
base_url?: string;
|
|
1789
|
+
borneo_dashboard_url?: string;
|
|
1790
|
+
COMPANYDOMAIN?: string;
|
|
1791
|
+
dc?: string;
|
|
1792
|
+
domain?: string;
|
|
1793
|
+
extension?: string;
|
|
1794
|
+
form_api_base_url?: string;
|
|
1795
|
+
instanceEndpoint?: string;
|
|
1796
|
+
instanceName?: string;
|
|
1797
|
+
proxy_password?: string;
|
|
1798
|
+
proxy_username?: string;
|
|
1799
|
+
region?: string;
|
|
1800
|
+
server_location?: string;
|
|
1801
|
+
shop?: string;
|
|
1802
|
+
site_name?: string;
|
|
1803
|
+
subdomain?: string;
|
|
1804
|
+
version?: string;
|
|
1805
|
+
your_server?: string;
|
|
1806
|
+
'your-domain'?: string;
|
|
1807
|
+
[k: string]: unknown;
|
|
1808
|
+
}
|
|
1809
|
+
}
|
|
1810
|
+
interface UnionMember8 {
|
|
1811
|
+
authScheme: 'SERVICE_ACCOUNT';
|
|
1812
|
+
toolkitSlug: string;
|
|
1813
|
+
val: UnionMember8.Val;
|
|
1814
|
+
}
|
|
1815
|
+
namespace UnionMember8 {
|
|
1816
|
+
interface Val {
|
|
1817
|
+
application_id: string;
|
|
1818
|
+
installation_id: string;
|
|
1819
|
+
private_key: string;
|
|
1820
|
+
account_id?: string;
|
|
1821
|
+
account_url?: string;
|
|
1822
|
+
api_url?: string;
|
|
1823
|
+
base_url?: string;
|
|
1824
|
+
borneo_dashboard_url?: string;
|
|
1825
|
+
COMPANYDOMAIN?: string;
|
|
1826
|
+
dc?: string;
|
|
1827
|
+
domain?: string;
|
|
1828
|
+
extension?: string;
|
|
1829
|
+
form_api_base_url?: string;
|
|
1830
|
+
instanceEndpoint?: string;
|
|
1831
|
+
instanceName?: string;
|
|
1832
|
+
proxy_password?: string;
|
|
1833
|
+
proxy_username?: string;
|
|
1834
|
+
region?: string;
|
|
1835
|
+
server_location?: string;
|
|
1836
|
+
shop?: string;
|
|
1837
|
+
site_name?: string;
|
|
1838
|
+
subdomain?: string;
|
|
1839
|
+
version?: string;
|
|
1840
|
+
your_server?: string;
|
|
1841
|
+
'your-domain'?: string;
|
|
1842
|
+
[k: string]: unknown;
|
|
1843
|
+
}
|
|
1844
|
+
}
|
|
1845
|
+
interface UnionMember9 {
|
|
1846
|
+
authScheme: 'GOOGLE_SERVICE_ACCOUNT';
|
|
1847
|
+
toolkitSlug: string;
|
|
1848
|
+
val: UnionMember9.Val;
|
|
1849
|
+
}
|
|
1850
|
+
namespace UnionMember9 {
|
|
1851
|
+
interface Val {
|
|
1852
|
+
credentials_json: string;
|
|
1853
|
+
account_id?: string;
|
|
1854
|
+
account_url?: string;
|
|
1855
|
+
api_url?: string;
|
|
1856
|
+
base_url?: string;
|
|
1857
|
+
borneo_dashboard_url?: string;
|
|
1858
|
+
COMPANYDOMAIN?: string;
|
|
1859
|
+
dc?: string;
|
|
1860
|
+
domain?: string;
|
|
1861
|
+
extension?: string;
|
|
1862
|
+
form_api_base_url?: string;
|
|
1863
|
+
instanceEndpoint?: string;
|
|
1864
|
+
instanceName?: string;
|
|
1865
|
+
proxy_password?: string;
|
|
1866
|
+
proxy_username?: string;
|
|
1867
|
+
region?: string;
|
|
1868
|
+
server_location?: string;
|
|
1869
|
+
shop?: string;
|
|
1870
|
+
site_name?: string;
|
|
1871
|
+
subdomain?: string;
|
|
1872
|
+
version?: string;
|
|
1873
|
+
your_server?: string;
|
|
1874
|
+
'your-domain'?: string;
|
|
1875
|
+
[k: string]: unknown;
|
|
1876
|
+
}
|
|
1877
|
+
}
|
|
1878
|
+
interface UnionMember10 {
|
|
1879
|
+
authScheme: 'S2S_OAUTH2';
|
|
1880
|
+
toolkitSlug: string;
|
|
1881
|
+
val: UnionMember10.Val;
|
|
1882
|
+
}
|
|
1883
|
+
namespace UnionMember10 {
|
|
1884
|
+
interface Val {
|
|
1885
|
+
access_token: string;
|
|
1886
|
+
client_id: string;
|
|
1887
|
+
client_secret: string;
|
|
1888
|
+
account_id?: string;
|
|
1889
|
+
account_url?: string;
|
|
1890
|
+
api_url?: string;
|
|
1891
|
+
base_url?: string;
|
|
1892
|
+
borneo_dashboard_url?: string;
|
|
1893
|
+
COMPANYDOMAIN?: string;
|
|
1894
|
+
dc?: string;
|
|
1895
|
+
domain?: string;
|
|
1896
|
+
expires_at?: string;
|
|
1897
|
+
expires_in?: number | string | null;
|
|
1898
|
+
extension?: string;
|
|
1899
|
+
form_api_base_url?: string;
|
|
1900
|
+
instanceEndpoint?: string;
|
|
1901
|
+
instanceName?: string;
|
|
1902
|
+
proxy_password?: string;
|
|
1903
|
+
proxy_username?: string;
|
|
1904
|
+
region?: string;
|
|
1905
|
+
scope?: string | Array<string> | null;
|
|
1906
|
+
server_location?: string;
|
|
1907
|
+
shop?: string;
|
|
1908
|
+
site_name?: string;
|
|
1909
|
+
subdomain?: string;
|
|
1910
|
+
token_type?: string;
|
|
1911
|
+
version?: string;
|
|
1912
|
+
your_server?: string;
|
|
1913
|
+
'your-domain'?: string;
|
|
1914
|
+
[k: string]: unknown;
|
|
1915
|
+
}
|
|
1916
|
+
}
|
|
1917
|
+
interface Parameter {
|
|
1918
|
+
/**
|
|
1919
|
+
* Parameter name
|
|
1920
|
+
*/
|
|
1921
|
+
name: string;
|
|
1922
|
+
/**
|
|
1923
|
+
* Parameter type (header or query)
|
|
1924
|
+
*/
|
|
1925
|
+
type: 'header' | 'query';
|
|
1926
|
+
/**
|
|
1927
|
+
* Parameter value
|
|
1928
|
+
*/
|
|
1929
|
+
value: string;
|
|
1930
|
+
}
|
|
1931
|
+
}
|
|
1143
1932
|
export interface SessionSearchParams {
|
|
1144
1933
|
/**
|
|
1145
1934
|
* List of search queries to execute in parallel. Up to 7 queries supported.
|
|
@@ -1195,7 +1984,7 @@ export interface SessionToolkitsParams {
|
|
|
1195
1984
|
export interface SessionToolsParams {
|
|
1196
1985
|
}
|
|
1197
1986
|
export declare namespace Session {
|
|
1198
|
-
export { type SessionCreateResponse as SessionCreateResponse, type SessionRetrieveResponse as SessionRetrieveResponse, type SessionExecuteResponse as SessionExecuteResponse, type SessionExecuteMetaResponse as SessionExecuteMetaResponse, type SessionLinkResponse as SessionLinkResponse, type SessionSearchResponse as SessionSearchResponse, type SessionToolkitsResponse as SessionToolkitsResponse, type SessionToolsResponse as SessionToolsResponse, type SessionCreateParams as SessionCreateParams, type SessionExecuteParams as SessionExecuteParams, type SessionExecuteMetaParams as SessionExecuteMetaParams, type SessionLinkParams as SessionLinkParams, type SessionSearchParams as SessionSearchParams, type SessionToolkitsParams as SessionToolkitsParams, type SessionToolsParams as SessionToolsParams, };
|
|
1987
|
+
export { type SessionCreateResponse as SessionCreateResponse, type SessionRetrieveResponse as SessionRetrieveResponse, type SessionExecuteResponse as SessionExecuteResponse, type SessionExecuteMetaResponse as SessionExecuteMetaResponse, type SessionLinkResponse as SessionLinkResponse, type SessionProxyExecuteResponse as SessionProxyExecuteResponse, type SessionSearchResponse as SessionSearchResponse, type SessionToolkitsResponse as SessionToolkitsResponse, type SessionToolsResponse as SessionToolsResponse, type SessionCreateParams as SessionCreateParams, type SessionExecuteParams as SessionExecuteParams, type SessionExecuteMetaParams as SessionExecuteMetaParams, type SessionLinkParams as SessionLinkParams, type SessionProxyExecuteParams as SessionProxyExecuteParams, type SessionSearchParams as SessionSearchParams, type SessionToolkitsParams as SessionToolkitsParams, type SessionToolsParams as SessionToolsParams, };
|
|
1199
1988
|
export { Files as Files, type FileListResponse as FileListResponse, type FileDeleteResponse as FileDeleteResponse, type FileCreateDownloadURLResponse as FileCreateDownloadURLResponse, type FileCreateUploadURLResponse as FileCreateUploadURLResponse, type FileListParams as FileListParams, type FileDeleteParams as FileDeleteParams, type FileCreateDownloadURLParams as FileCreateDownloadURLParams, type FileCreateUploadURLParams as FileCreateUploadURLParams, };
|
|
1200
1989
|
}
|
|
1201
1990
|
//# sourceMappingURL=session.d.mts.map
|