@onkernel/sdk 0.1.0-alpha.1 → 0.1.0-alpha.11
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 +84 -0
- package/README.md +34 -45
- package/client.d.mts +28 -6
- package/client.d.mts.map +1 -1
- package/client.d.ts +28 -6
- package/client.d.ts.map +1 -1
- package/client.js +28 -8
- package/client.js.map +1 -1
- package/client.mjs +28 -8
- package/client.mjs.map +1 -1
- package/core/app-framework.d.mts +49 -0
- package/core/app-framework.d.mts.map +1 -0
- package/core/app-framework.d.ts +49 -0
- package/core/app-framework.d.ts.map +1 -0
- package/core/app-framework.js +105 -0
- package/core/app-framework.js.map +1 -0
- package/core/app-framework.mjs +101 -0
- package/core/app-framework.mjs.map +1 -0
- package/index.d.mts +1 -0
- package/index.d.mts.map +1 -1
- package/index.d.ts +1 -0
- package/index.d.ts.map +1 -1
- package/index.js +3 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -0
- package/index.mjs.map +1 -1
- package/internal/headers.js +1 -1
- package/internal/headers.js.map +1 -1
- package/internal/headers.mjs +1 -1
- package/internal/headers.mjs.map +1 -1
- package/internal/tslib.js +17 -17
- package/package.json +1 -4
- package/resources/apps/apps.d.mts +14 -0
- package/resources/apps/apps.d.mts.map +1 -0
- package/resources/apps/apps.d.ts +14 -0
- package/resources/apps/apps.d.ts.map +1 -0
- package/resources/apps/apps.js +21 -0
- package/resources/apps/apps.js.map +1 -0
- package/resources/apps/apps.mjs +16 -0
- package/resources/apps/apps.mjs.map +1 -0
- package/resources/apps/deployments.d.mts +82 -0
- package/resources/apps/deployments.d.mts.map +1 -0
- package/resources/apps/deployments.d.ts +82 -0
- package/resources/apps/deployments.d.ts.map +1 -0
- package/resources/apps/deployments.js +24 -0
- package/resources/apps/deployments.js.map +1 -0
- package/resources/apps/deployments.mjs +20 -0
- package/resources/apps/deployments.mjs.map +1 -0
- package/resources/apps/index.d.mts +4 -0
- package/resources/apps/index.d.mts.map +1 -0
- package/resources/apps/index.d.ts +4 -0
- package/resources/apps/index.d.ts.map +1 -0
- package/resources/apps/index.js +11 -0
- package/resources/apps/index.js.map +1 -0
- package/resources/apps/index.mjs +5 -0
- package/resources/apps/index.mjs.map +1 -0
- package/resources/apps/invocations.d.mts +110 -0
- package/resources/apps/invocations.d.mts.map +1 -0
- package/resources/apps/invocations.d.ts +110 -0
- package/resources/apps/invocations.d.ts.map +1 -0
- package/resources/apps/invocations.js +38 -0
- package/resources/apps/invocations.js.map +1 -0
- package/resources/apps/invocations.mjs +34 -0
- package/resources/apps/invocations.mjs.map +1 -0
- package/resources/apps.d.mts +1 -111
- package/resources/apps.d.mts.map +1 -1
- package/resources/apps.d.ts +1 -111
- package/resources/apps.d.ts.map +1 -1
- package/resources/apps.js +2 -50
- package/resources/apps.js.map +1 -1
- package/resources/apps.mjs +1 -48
- package/resources/apps.mjs.map +1 -1
- package/resources/browsers.d.mts +65 -0
- package/resources/browsers.d.mts.map +1 -0
- package/resources/browsers.d.ts +65 -0
- package/resources/browsers.d.ts.map +1 -0
- package/resources/browsers.js +36 -0
- package/resources/browsers.js.map +1 -0
- package/resources/browsers.mjs +32 -0
- package/resources/browsers.mjs.map +1 -0
- package/resources/index.d.mts +2 -2
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +2 -2
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js +4 -4
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +2 -2
- package/resources/index.mjs.map +1 -1
- package/src/client.ts +53 -22
- package/src/core/app-framework.ts +137 -0
- package/src/index.ts +2 -0
- package/src/internal/headers.ts +1 -1
- package/src/resources/apps/apps.ts +35 -0
- package/src/resources/apps/deployments.ts +103 -0
- package/src/resources/apps/index.ts +10 -0
- package/src/resources/apps/invocations.ts +140 -0
- package/src/resources/apps.ts +1 -148
- package/src/resources/browsers.ts +85 -0
- package/src/resources/index.ts +6 -8
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.mts.map +1 -1
- package/version.d.ts +1 -1
- package/version.d.ts.map +1 -1
- package/version.js +1 -1
- package/version.js.map +1 -1
- package/version.mjs +1 -1
- package/version.mjs.map +1 -1
- package/resources/browser.d.mts +0 -27
- package/resources/browser.d.mts.map +0 -1
- package/resources/browser.d.ts +0 -27
- package/resources/browser.d.ts.map +0 -1
- package/resources/browser.js +0 -15
- package/resources/browser.js.map +0 -1
- package/resources/browser.mjs +0 -11
- package/resources/browser.mjs.map +0 -1
- package/src/resources/browser.ts +0 -35
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"invocations.d.ts","sourceRoot":"","sources":["../../src/resources/apps/invocations.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,EAAE,UAAU,EAAE;OACd,EAAE,cAAc,EAAE;AAGzB,qBAAa,WAAY,SAAQ,WAAW;IAC1C;;;;;;;;;;;OAWG;IACH,MAAM,CAAC,IAAI,EAAE,sBAAsB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,wBAAwB,CAAC;IAIpG;;;;;;;;;OASG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,0BAA0B,CAAC;CAGvF;AAED,MAAM,WAAW,wBAAwB;IACvC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,MAAM,EAAE,QAAQ,GAAG,SAAS,GAAG,WAAW,GAAG,QAAQ,CAAC;IAEtD;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,WAAW,0BAA0B;IACzC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,MAAM,EAAE,QAAQ,GAAG,SAAS,GAAG,WAAW,GAAG,QAAQ,CAAC;IAEtD;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE5B;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,WAAW,sBAAsB;IACrC;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,CAAC,OAAO,WAAW,WAAW,CAAC;IACnC,OAAO,EACL,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,0BAA0B,IAAI,0BAA0B,EAC7D,KAAK,sBAAsB,IAAI,sBAAsB,GACtD,CAAC;CACH"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.Invocations = void 0;
|
|
5
|
+
const resource_1 = require("../../core/resource.js");
|
|
6
|
+
const path_1 = require("../../internal/utils/path.js");
|
|
7
|
+
class Invocations extends resource_1.APIResource {
|
|
8
|
+
/**
|
|
9
|
+
* Invoke an application
|
|
10
|
+
*
|
|
11
|
+
* @example
|
|
12
|
+
* ```ts
|
|
13
|
+
* const invocation = await client.apps.invocations.create({
|
|
14
|
+
* action_name: 'analyze',
|
|
15
|
+
* app_name: 'my-app',
|
|
16
|
+
* version: '1.0.0',
|
|
17
|
+
* });
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
create(body, options) {
|
|
21
|
+
return this._client.post('/invocations', { body, ...options });
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Get an app invocation by id
|
|
25
|
+
*
|
|
26
|
+
* @example
|
|
27
|
+
* ```ts
|
|
28
|
+
* const invocation = await client.apps.invocations.retrieve(
|
|
29
|
+
* 'ckqwer3o20000jb9s7abcdef',
|
|
30
|
+
* );
|
|
31
|
+
* ```
|
|
32
|
+
*/
|
|
33
|
+
retrieve(id, options) {
|
|
34
|
+
return this._client.get((0, path_1.path) `/invocations/${id}`, options);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
exports.Invocations = Invocations;
|
|
38
|
+
//# sourceMappingURL=invocations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"invocations.js","sourceRoot":"","sources":["../../src/resources/apps/invocations.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,qDAAkD;AAGlD,uDAAiD;AAEjD,MAAa,WAAY,SAAQ,sBAAW;IAC1C;;;;;;;;;;;OAWG;IACH,MAAM,CAAC,IAA4B,EAAE,OAAwB;QAC3D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,cAAc,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACjE,CAAC;IAED;;;;;;;;;OASG;IACH,QAAQ,CAAC,EAAU,EAAE,OAAwB;QAC3C,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAA,WAAI,EAAA,gBAAgB,EAAE,EAAE,EAAE,OAAO,CAAC,CAAC;IAC7D,CAAC;CACF;AA9BD,kCA8BC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
import { APIResource } from "../../core/resource.mjs";
|
|
3
|
+
import { path } from "../../internal/utils/path.mjs";
|
|
4
|
+
export class Invocations extends APIResource {
|
|
5
|
+
/**
|
|
6
|
+
* Invoke an application
|
|
7
|
+
*
|
|
8
|
+
* @example
|
|
9
|
+
* ```ts
|
|
10
|
+
* const invocation = await client.apps.invocations.create({
|
|
11
|
+
* action_name: 'analyze',
|
|
12
|
+
* app_name: 'my-app',
|
|
13
|
+
* version: '1.0.0',
|
|
14
|
+
* });
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
create(body, options) {
|
|
18
|
+
return this._client.post('/invocations', { body, ...options });
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Get an app invocation by id
|
|
22
|
+
*
|
|
23
|
+
* @example
|
|
24
|
+
* ```ts
|
|
25
|
+
* const invocation = await client.apps.invocations.retrieve(
|
|
26
|
+
* 'ckqwer3o20000jb9s7abcdef',
|
|
27
|
+
* );
|
|
28
|
+
* ```
|
|
29
|
+
*/
|
|
30
|
+
retrieve(id, options) {
|
|
31
|
+
return this._client.get(path `/invocations/${id}`, options);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
//# sourceMappingURL=invocations.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"invocations.mjs","sourceRoot":"","sources":["../../src/resources/apps/invocations.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OAGf,EAAE,IAAI,EAAE;AAEf,MAAM,OAAO,WAAY,SAAQ,WAAW;IAC1C;;;;;;;;;;;OAWG;IACH,MAAM,CAAC,IAA4B,EAAE,OAAwB;QAC3D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,cAAc,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACjE,CAAC;IAED;;;;;;;;;OASG;IACH,QAAQ,CAAC,EAAU,EAAE,OAAwB;QAC3C,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAA,gBAAgB,EAAE,EAAE,EAAE,OAAO,CAAC,CAAC;IAC7D,CAAC;CACF"}
|
package/resources/apps.d.mts
CHANGED
|
@@ -1,112 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
import { APIPromise } from "../core/api-promise.mjs";
|
|
3
|
-
import { type Uploadable } from "../core/uploads.mjs";
|
|
4
|
-
import { RequestOptions } from "../internal/request-options.mjs";
|
|
5
|
-
export declare class Apps extends APIResource {
|
|
6
|
-
/**
|
|
7
|
-
* Deploy a new application
|
|
8
|
-
*
|
|
9
|
-
* @example
|
|
10
|
-
* ```ts
|
|
11
|
-
* const response = await client.apps.deploy({
|
|
12
|
-
* appName: 'my-awesome-app',
|
|
13
|
-
* file: fs.createReadStream('path/to/file'),
|
|
14
|
-
* version: '1.0.0',
|
|
15
|
-
* });
|
|
16
|
-
* ```
|
|
17
|
-
*/
|
|
18
|
-
deploy(body: AppDeployParams, options?: RequestOptions): APIPromise<AppDeployResponse>;
|
|
19
|
-
/**
|
|
20
|
-
* Invoke an application
|
|
21
|
-
*
|
|
22
|
-
* @example
|
|
23
|
-
* ```ts
|
|
24
|
-
* const response = await client.apps.invoke({
|
|
25
|
-
* appName: 'my-awesome-app',
|
|
26
|
-
* payload: '{ "data": "example input" }',
|
|
27
|
-
* version: '1.0.0',
|
|
28
|
-
* });
|
|
29
|
-
* ```
|
|
30
|
-
*/
|
|
31
|
-
invoke(body: AppInvokeParams, options?: RequestOptions): APIPromise<AppInvokeResponse>;
|
|
32
|
-
/**
|
|
33
|
-
* Get an app invocation by id
|
|
34
|
-
*
|
|
35
|
-
* @example
|
|
36
|
-
* ```ts
|
|
37
|
-
* const response = await client.apps.retrieveInvocation(
|
|
38
|
-
* 'ckqwer3o20000jb9s7abcdef',
|
|
39
|
-
* );
|
|
40
|
-
* ```
|
|
41
|
-
*/
|
|
42
|
-
retrieveInvocation(id: string, options?: RequestOptions): APIPromise<AppRetrieveInvocationResponse>;
|
|
43
|
-
}
|
|
44
|
-
export interface AppDeployResponse {
|
|
45
|
-
/**
|
|
46
|
-
* ID of the deployed app version
|
|
47
|
-
*/
|
|
48
|
-
id: string;
|
|
49
|
-
/**
|
|
50
|
-
* Success message
|
|
51
|
-
*/
|
|
52
|
-
message: string;
|
|
53
|
-
/**
|
|
54
|
-
* Status of the deployment
|
|
55
|
-
*/
|
|
56
|
-
success: boolean;
|
|
57
|
-
}
|
|
58
|
-
export interface AppInvokeResponse {
|
|
59
|
-
/**
|
|
60
|
-
* ID of the invocation
|
|
61
|
-
*/
|
|
62
|
-
id: string;
|
|
63
|
-
/**
|
|
64
|
-
* Status of the invocation
|
|
65
|
-
*/
|
|
66
|
-
status: string;
|
|
67
|
-
}
|
|
68
|
-
export interface AppRetrieveInvocationResponse {
|
|
69
|
-
id: string;
|
|
70
|
-
appName: string;
|
|
71
|
-
finishedAt: string | null;
|
|
72
|
-
input: string;
|
|
73
|
-
output: string;
|
|
74
|
-
startedAt: string;
|
|
75
|
-
status: string;
|
|
76
|
-
}
|
|
77
|
-
export interface AppDeployParams {
|
|
78
|
-
/**
|
|
79
|
-
* Name of the application
|
|
80
|
-
*/
|
|
81
|
-
appName: string;
|
|
82
|
-
/**
|
|
83
|
-
* ZIP file containing the application
|
|
84
|
-
*/
|
|
85
|
-
file: Uploadable;
|
|
86
|
-
/**
|
|
87
|
-
* Version of the application
|
|
88
|
-
*/
|
|
89
|
-
version: string;
|
|
90
|
-
/**
|
|
91
|
-
* AWS region for deployment (e.g. "aws.us-east-1a")
|
|
92
|
-
*/
|
|
93
|
-
region?: string;
|
|
94
|
-
}
|
|
95
|
-
export interface AppInvokeParams {
|
|
96
|
-
/**
|
|
97
|
-
* Name of the application
|
|
98
|
-
*/
|
|
99
|
-
appName: string;
|
|
100
|
-
/**
|
|
101
|
-
* Input data for the application
|
|
102
|
-
*/
|
|
103
|
-
payload: unknown;
|
|
104
|
-
/**
|
|
105
|
-
* Version of the application
|
|
106
|
-
*/
|
|
107
|
-
version: string;
|
|
108
|
-
}
|
|
109
|
-
export declare namespace Apps {
|
|
110
|
-
export { type AppDeployResponse as AppDeployResponse, type AppInvokeResponse as AppInvokeResponse, type AppRetrieveInvocationResponse as AppRetrieveInvocationResponse, type AppDeployParams as AppDeployParams, type AppInvokeParams as AppInvokeParams, };
|
|
111
|
-
}
|
|
1
|
+
export * from "./apps/index.mjs";
|
|
112
2
|
//# sourceMappingURL=apps.d.mts.map
|
package/resources/apps.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"apps.d.mts","sourceRoot":"","sources":["../src/resources/apps.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"apps.d.mts","sourceRoot":"","sources":["../src/resources/apps.ts"],"names":[],"mappings":""}
|
package/resources/apps.d.ts
CHANGED
|
@@ -1,112 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
import { APIPromise } from "../core/api-promise.js";
|
|
3
|
-
import { type Uploadable } from "../core/uploads.js";
|
|
4
|
-
import { RequestOptions } from "../internal/request-options.js";
|
|
5
|
-
export declare class Apps extends APIResource {
|
|
6
|
-
/**
|
|
7
|
-
* Deploy a new application
|
|
8
|
-
*
|
|
9
|
-
* @example
|
|
10
|
-
* ```ts
|
|
11
|
-
* const response = await client.apps.deploy({
|
|
12
|
-
* appName: 'my-awesome-app',
|
|
13
|
-
* file: fs.createReadStream('path/to/file'),
|
|
14
|
-
* version: '1.0.0',
|
|
15
|
-
* });
|
|
16
|
-
* ```
|
|
17
|
-
*/
|
|
18
|
-
deploy(body: AppDeployParams, options?: RequestOptions): APIPromise<AppDeployResponse>;
|
|
19
|
-
/**
|
|
20
|
-
* Invoke an application
|
|
21
|
-
*
|
|
22
|
-
* @example
|
|
23
|
-
* ```ts
|
|
24
|
-
* const response = await client.apps.invoke({
|
|
25
|
-
* appName: 'my-awesome-app',
|
|
26
|
-
* payload: '{ "data": "example input" }',
|
|
27
|
-
* version: '1.0.0',
|
|
28
|
-
* });
|
|
29
|
-
* ```
|
|
30
|
-
*/
|
|
31
|
-
invoke(body: AppInvokeParams, options?: RequestOptions): APIPromise<AppInvokeResponse>;
|
|
32
|
-
/**
|
|
33
|
-
* Get an app invocation by id
|
|
34
|
-
*
|
|
35
|
-
* @example
|
|
36
|
-
* ```ts
|
|
37
|
-
* const response = await client.apps.retrieveInvocation(
|
|
38
|
-
* 'ckqwer3o20000jb9s7abcdef',
|
|
39
|
-
* );
|
|
40
|
-
* ```
|
|
41
|
-
*/
|
|
42
|
-
retrieveInvocation(id: string, options?: RequestOptions): APIPromise<AppRetrieveInvocationResponse>;
|
|
43
|
-
}
|
|
44
|
-
export interface AppDeployResponse {
|
|
45
|
-
/**
|
|
46
|
-
* ID of the deployed app version
|
|
47
|
-
*/
|
|
48
|
-
id: string;
|
|
49
|
-
/**
|
|
50
|
-
* Success message
|
|
51
|
-
*/
|
|
52
|
-
message: string;
|
|
53
|
-
/**
|
|
54
|
-
* Status of the deployment
|
|
55
|
-
*/
|
|
56
|
-
success: boolean;
|
|
57
|
-
}
|
|
58
|
-
export interface AppInvokeResponse {
|
|
59
|
-
/**
|
|
60
|
-
* ID of the invocation
|
|
61
|
-
*/
|
|
62
|
-
id: string;
|
|
63
|
-
/**
|
|
64
|
-
* Status of the invocation
|
|
65
|
-
*/
|
|
66
|
-
status: string;
|
|
67
|
-
}
|
|
68
|
-
export interface AppRetrieveInvocationResponse {
|
|
69
|
-
id: string;
|
|
70
|
-
appName: string;
|
|
71
|
-
finishedAt: string | null;
|
|
72
|
-
input: string;
|
|
73
|
-
output: string;
|
|
74
|
-
startedAt: string;
|
|
75
|
-
status: string;
|
|
76
|
-
}
|
|
77
|
-
export interface AppDeployParams {
|
|
78
|
-
/**
|
|
79
|
-
* Name of the application
|
|
80
|
-
*/
|
|
81
|
-
appName: string;
|
|
82
|
-
/**
|
|
83
|
-
* ZIP file containing the application
|
|
84
|
-
*/
|
|
85
|
-
file: Uploadable;
|
|
86
|
-
/**
|
|
87
|
-
* Version of the application
|
|
88
|
-
*/
|
|
89
|
-
version: string;
|
|
90
|
-
/**
|
|
91
|
-
* AWS region for deployment (e.g. "aws.us-east-1a")
|
|
92
|
-
*/
|
|
93
|
-
region?: string;
|
|
94
|
-
}
|
|
95
|
-
export interface AppInvokeParams {
|
|
96
|
-
/**
|
|
97
|
-
* Name of the application
|
|
98
|
-
*/
|
|
99
|
-
appName: string;
|
|
100
|
-
/**
|
|
101
|
-
* Input data for the application
|
|
102
|
-
*/
|
|
103
|
-
payload: unknown;
|
|
104
|
-
/**
|
|
105
|
-
* Version of the application
|
|
106
|
-
*/
|
|
107
|
-
version: string;
|
|
108
|
-
}
|
|
109
|
-
export declare namespace Apps {
|
|
110
|
-
export { type AppDeployResponse as AppDeployResponse, type AppInvokeResponse as AppInvokeResponse, type AppRetrieveInvocationResponse as AppRetrieveInvocationResponse, type AppDeployParams as AppDeployParams, type AppInvokeParams as AppInvokeParams, };
|
|
111
|
-
}
|
|
1
|
+
export * from "./apps/index.js";
|
|
112
2
|
//# sourceMappingURL=apps.d.ts.map
|
package/resources/apps.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"apps.d.ts","sourceRoot":"","sources":["../src/resources/apps.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"apps.d.ts","sourceRoot":"","sources":["../src/resources/apps.ts"],"names":[],"mappings":""}
|
package/resources/apps.js
CHANGED
|
@@ -1,54 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
const uploads_1 = require("../internal/uploads.js");
|
|
7
|
-
const path_1 = require("../internal/utils/path.js");
|
|
8
|
-
class Apps extends resource_1.APIResource {
|
|
9
|
-
/**
|
|
10
|
-
* Deploy a new application
|
|
11
|
-
*
|
|
12
|
-
* @example
|
|
13
|
-
* ```ts
|
|
14
|
-
* const response = await client.apps.deploy({
|
|
15
|
-
* appName: 'my-awesome-app',
|
|
16
|
-
* file: fs.createReadStream('path/to/file'),
|
|
17
|
-
* version: '1.0.0',
|
|
18
|
-
* });
|
|
19
|
-
* ```
|
|
20
|
-
*/
|
|
21
|
-
deploy(body, options) {
|
|
22
|
-
return this._client.post('/apps/deploy', (0, uploads_1.multipartFormRequestOptions)({ body, ...options }, this._client));
|
|
23
|
-
}
|
|
24
|
-
/**
|
|
25
|
-
* Invoke an application
|
|
26
|
-
*
|
|
27
|
-
* @example
|
|
28
|
-
* ```ts
|
|
29
|
-
* const response = await client.apps.invoke({
|
|
30
|
-
* appName: 'my-awesome-app',
|
|
31
|
-
* payload: '{ "data": "example input" }',
|
|
32
|
-
* version: '1.0.0',
|
|
33
|
-
* });
|
|
34
|
-
* ```
|
|
35
|
-
*/
|
|
36
|
-
invoke(body, options) {
|
|
37
|
-
return this._client.post('/apps/invoke', { body, ...options });
|
|
38
|
-
}
|
|
39
|
-
/**
|
|
40
|
-
* Get an app invocation by id
|
|
41
|
-
*
|
|
42
|
-
* @example
|
|
43
|
-
* ```ts
|
|
44
|
-
* const response = await client.apps.retrieveInvocation(
|
|
45
|
-
* 'ckqwer3o20000jb9s7abcdef',
|
|
46
|
-
* );
|
|
47
|
-
* ```
|
|
48
|
-
*/
|
|
49
|
-
retrieveInvocation(id, options) {
|
|
50
|
-
return this._client.get((0, path_1.path) `/apps/invocations/${id}`, options);
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
exports.Apps = Apps;
|
|
4
|
+
const tslib_1 = require("../internal/tslib.js");
|
|
5
|
+
tslib_1.__exportStar(require("./apps/index.js"), exports);
|
|
54
6
|
//# sourceMappingURL=apps.js.map
|
package/resources/apps.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"apps.js","sourceRoot":"","sources":["../src/resources/apps.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,
|
|
1
|
+
{"version":3,"file":"apps.js","sourceRoot":"","sources":["../src/resources/apps.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,0DAA6B"}
|
package/resources/apps.mjs
CHANGED
|
@@ -1,50 +1,3 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
-
|
|
3
|
-
import { multipartFormRequestOptions } from "../internal/uploads.mjs";
|
|
4
|
-
import { path } from "../internal/utils/path.mjs";
|
|
5
|
-
export class Apps extends APIResource {
|
|
6
|
-
/**
|
|
7
|
-
* Deploy a new application
|
|
8
|
-
*
|
|
9
|
-
* @example
|
|
10
|
-
* ```ts
|
|
11
|
-
* const response = await client.apps.deploy({
|
|
12
|
-
* appName: 'my-awesome-app',
|
|
13
|
-
* file: fs.createReadStream('path/to/file'),
|
|
14
|
-
* version: '1.0.0',
|
|
15
|
-
* });
|
|
16
|
-
* ```
|
|
17
|
-
*/
|
|
18
|
-
deploy(body, options) {
|
|
19
|
-
return this._client.post('/apps/deploy', multipartFormRequestOptions({ body, ...options }, this._client));
|
|
20
|
-
}
|
|
21
|
-
/**
|
|
22
|
-
* Invoke an application
|
|
23
|
-
*
|
|
24
|
-
* @example
|
|
25
|
-
* ```ts
|
|
26
|
-
* const response = await client.apps.invoke({
|
|
27
|
-
* appName: 'my-awesome-app',
|
|
28
|
-
* payload: '{ "data": "example input" }',
|
|
29
|
-
* version: '1.0.0',
|
|
30
|
-
* });
|
|
31
|
-
* ```
|
|
32
|
-
*/
|
|
33
|
-
invoke(body, options) {
|
|
34
|
-
return this._client.post('/apps/invoke', { body, ...options });
|
|
35
|
-
}
|
|
36
|
-
/**
|
|
37
|
-
* Get an app invocation by id
|
|
38
|
-
*
|
|
39
|
-
* @example
|
|
40
|
-
* ```ts
|
|
41
|
-
* const response = await client.apps.retrieveInvocation(
|
|
42
|
-
* 'ckqwer3o20000jb9s7abcdef',
|
|
43
|
-
* );
|
|
44
|
-
* ```
|
|
45
|
-
*/
|
|
46
|
-
retrieveInvocation(id, options) {
|
|
47
|
-
return this._client.get(path `/apps/invocations/${id}`, options);
|
|
48
|
-
}
|
|
49
|
-
}
|
|
2
|
+
export * from "./apps/index.mjs";
|
|
50
3
|
//# sourceMappingURL=apps.mjs.map
|
package/resources/apps.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"apps.mjs","sourceRoot":"","sources":["../src/resources/apps.ts"],"names":[],"mappings":"AAAA,sFAAsF
|
|
1
|
+
{"version":3,"file":"apps.mjs","sourceRoot":"","sources":["../src/resources/apps.ts"],"names":[],"mappings":"AAAA,sFAAsF"}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { APIResource } from "../core/resource.mjs";
|
|
2
|
+
import { APIPromise } from "../core/api-promise.mjs";
|
|
3
|
+
import { RequestOptions } from "../internal/request-options.mjs";
|
|
4
|
+
export declare class Browsers extends APIResource {
|
|
5
|
+
/**
|
|
6
|
+
* Create Browser Session
|
|
7
|
+
*
|
|
8
|
+
* @example
|
|
9
|
+
* ```ts
|
|
10
|
+
* const browser = await client.browsers.create({
|
|
11
|
+
* invocation_id: 'ckqwer3o20000jb9s7abcdef',
|
|
12
|
+
* });
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
15
|
+
create(body: BrowserCreateParams, options?: RequestOptions): APIPromise<BrowserCreateResponse>;
|
|
16
|
+
/**
|
|
17
|
+
* Get Browser Session by ID
|
|
18
|
+
*
|
|
19
|
+
* @example
|
|
20
|
+
* ```ts
|
|
21
|
+
* const browser = await client.browsers.retrieve(
|
|
22
|
+
* 'e5bf36fe-9247-4e2b-8b5a-2f594cc1c073',
|
|
23
|
+
* );
|
|
24
|
+
* ```
|
|
25
|
+
*/
|
|
26
|
+
retrieve(id: string, options?: RequestOptions): APIPromise<BrowserRetrieveResponse>;
|
|
27
|
+
}
|
|
28
|
+
export interface BrowserCreateResponse {
|
|
29
|
+
/**
|
|
30
|
+
* Remote URL for live viewing the browser session
|
|
31
|
+
*/
|
|
32
|
+
browser_live_view_url: string;
|
|
33
|
+
/**
|
|
34
|
+
* Websocket URL for Chrome DevTools Protocol connections to the browser session
|
|
35
|
+
*/
|
|
36
|
+
cdp_ws_url: string;
|
|
37
|
+
/**
|
|
38
|
+
* Unique identifier for the browser session
|
|
39
|
+
*/
|
|
40
|
+
session_id: string;
|
|
41
|
+
}
|
|
42
|
+
export interface BrowserRetrieveResponse {
|
|
43
|
+
/**
|
|
44
|
+
* Remote URL for live viewing the browser session
|
|
45
|
+
*/
|
|
46
|
+
browser_live_view_url: string;
|
|
47
|
+
/**
|
|
48
|
+
* Websocket URL for Chrome DevTools Protocol connections to the browser session
|
|
49
|
+
*/
|
|
50
|
+
cdp_ws_url: string;
|
|
51
|
+
/**
|
|
52
|
+
* Unique identifier for the browser session
|
|
53
|
+
*/
|
|
54
|
+
session_id: string;
|
|
55
|
+
}
|
|
56
|
+
export interface BrowserCreateParams {
|
|
57
|
+
/**
|
|
58
|
+
* action invocation ID
|
|
59
|
+
*/
|
|
60
|
+
invocation_id: string;
|
|
61
|
+
}
|
|
62
|
+
export declare namespace Browsers {
|
|
63
|
+
export { type BrowserCreateResponse as BrowserCreateResponse, type BrowserRetrieveResponse as BrowserRetrieveResponse, type BrowserCreateParams as BrowserCreateParams, };
|
|
64
|
+
}
|
|
65
|
+
//# sourceMappingURL=browsers.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"browsers.d.mts","sourceRoot":"","sources":["../src/resources/browsers.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,EAAE,UAAU,EAAE;OACd,EAAE,cAAc,EAAE;AAGzB,qBAAa,QAAS,SAAQ,WAAW;IACvC;;;;;;;;;OASG;IACH,MAAM,CAAC,IAAI,EAAE,mBAAmB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,qBAAqB,CAAC;IAI9F;;;;;;;;;OASG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,uBAAuB,CAAC;CAGpF;AAED,MAAM,WAAW,qBAAqB;IACpC;;OAEG;IACH,qBAAqB,EAAE,MAAM,CAAC;IAE9B;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,uBAAuB;IACtC;;OAEG;IACH,qBAAqB,EAAE,MAAM,CAAC;IAE9B;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,mBAAmB;IAClC;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;CACvB;AAED,MAAM,CAAC,OAAO,WAAW,QAAQ,CAAC;IAChC,OAAO,EACL,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,mBAAmB,IAAI,mBAAmB,GAChD,CAAC;CACH"}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { APIResource } from "../core/resource.js";
|
|
2
|
+
import { APIPromise } from "../core/api-promise.js";
|
|
3
|
+
import { RequestOptions } from "../internal/request-options.js";
|
|
4
|
+
export declare class Browsers extends APIResource {
|
|
5
|
+
/**
|
|
6
|
+
* Create Browser Session
|
|
7
|
+
*
|
|
8
|
+
* @example
|
|
9
|
+
* ```ts
|
|
10
|
+
* const browser = await client.browsers.create({
|
|
11
|
+
* invocation_id: 'ckqwer3o20000jb9s7abcdef',
|
|
12
|
+
* });
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
15
|
+
create(body: BrowserCreateParams, options?: RequestOptions): APIPromise<BrowserCreateResponse>;
|
|
16
|
+
/**
|
|
17
|
+
* Get Browser Session by ID
|
|
18
|
+
*
|
|
19
|
+
* @example
|
|
20
|
+
* ```ts
|
|
21
|
+
* const browser = await client.browsers.retrieve(
|
|
22
|
+
* 'e5bf36fe-9247-4e2b-8b5a-2f594cc1c073',
|
|
23
|
+
* );
|
|
24
|
+
* ```
|
|
25
|
+
*/
|
|
26
|
+
retrieve(id: string, options?: RequestOptions): APIPromise<BrowserRetrieveResponse>;
|
|
27
|
+
}
|
|
28
|
+
export interface BrowserCreateResponse {
|
|
29
|
+
/**
|
|
30
|
+
* Remote URL for live viewing the browser session
|
|
31
|
+
*/
|
|
32
|
+
browser_live_view_url: string;
|
|
33
|
+
/**
|
|
34
|
+
* Websocket URL for Chrome DevTools Protocol connections to the browser session
|
|
35
|
+
*/
|
|
36
|
+
cdp_ws_url: string;
|
|
37
|
+
/**
|
|
38
|
+
* Unique identifier for the browser session
|
|
39
|
+
*/
|
|
40
|
+
session_id: string;
|
|
41
|
+
}
|
|
42
|
+
export interface BrowserRetrieveResponse {
|
|
43
|
+
/**
|
|
44
|
+
* Remote URL for live viewing the browser session
|
|
45
|
+
*/
|
|
46
|
+
browser_live_view_url: string;
|
|
47
|
+
/**
|
|
48
|
+
* Websocket URL for Chrome DevTools Protocol connections to the browser session
|
|
49
|
+
*/
|
|
50
|
+
cdp_ws_url: string;
|
|
51
|
+
/**
|
|
52
|
+
* Unique identifier for the browser session
|
|
53
|
+
*/
|
|
54
|
+
session_id: string;
|
|
55
|
+
}
|
|
56
|
+
export interface BrowserCreateParams {
|
|
57
|
+
/**
|
|
58
|
+
* action invocation ID
|
|
59
|
+
*/
|
|
60
|
+
invocation_id: string;
|
|
61
|
+
}
|
|
62
|
+
export declare namespace Browsers {
|
|
63
|
+
export { type BrowserCreateResponse as BrowserCreateResponse, type BrowserRetrieveResponse as BrowserRetrieveResponse, type BrowserCreateParams as BrowserCreateParams, };
|
|
64
|
+
}
|
|
65
|
+
//# sourceMappingURL=browsers.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"browsers.d.ts","sourceRoot":"","sources":["../src/resources/browsers.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,EAAE,UAAU,EAAE;OACd,EAAE,cAAc,EAAE;AAGzB,qBAAa,QAAS,SAAQ,WAAW;IACvC;;;;;;;;;OASG;IACH,MAAM,CAAC,IAAI,EAAE,mBAAmB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,qBAAqB,CAAC;IAI9F;;;;;;;;;OASG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,uBAAuB,CAAC;CAGpF;AAED,MAAM,WAAW,qBAAqB;IACpC;;OAEG;IACH,qBAAqB,EAAE,MAAM,CAAC;IAE9B;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,uBAAuB;IACtC;;OAEG;IACH,qBAAqB,EAAE,MAAM,CAAC;IAE9B;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,mBAAmB;IAClC;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;CACvB;AAED,MAAM,CAAC,OAAO,WAAW,QAAQ,CAAC;IAChC,OAAO,EACL,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,mBAAmB,IAAI,mBAAmB,GAChD,CAAC;CACH"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.Browsers = void 0;
|
|
5
|
+
const resource_1 = require("../core/resource.js");
|
|
6
|
+
const path_1 = require("../internal/utils/path.js");
|
|
7
|
+
class Browsers extends resource_1.APIResource {
|
|
8
|
+
/**
|
|
9
|
+
* Create Browser Session
|
|
10
|
+
*
|
|
11
|
+
* @example
|
|
12
|
+
* ```ts
|
|
13
|
+
* const browser = await client.browsers.create({
|
|
14
|
+
* invocation_id: 'ckqwer3o20000jb9s7abcdef',
|
|
15
|
+
* });
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
18
|
+
create(body, options) {
|
|
19
|
+
return this._client.post('/browsers', { body, ...options });
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Get Browser Session by ID
|
|
23
|
+
*
|
|
24
|
+
* @example
|
|
25
|
+
* ```ts
|
|
26
|
+
* const browser = await client.browsers.retrieve(
|
|
27
|
+
* 'e5bf36fe-9247-4e2b-8b5a-2f594cc1c073',
|
|
28
|
+
* );
|
|
29
|
+
* ```
|
|
30
|
+
*/
|
|
31
|
+
retrieve(id, options) {
|
|
32
|
+
return this._client.get((0, path_1.path) `/browsers/${id}`, options);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
exports.Browsers = Browsers;
|
|
36
|
+
//# sourceMappingURL=browsers.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"browsers.js","sourceRoot":"","sources":["../src/resources/browsers.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,kDAA+C;AAG/C,oDAA8C;AAE9C,MAAa,QAAS,SAAQ,sBAAW;IACvC;;;;;;;;;OASG;IACH,MAAM,CAAC,IAAyB,EAAE,OAAwB;QACxD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC9D,CAAC;IAED;;;;;;;;;OASG;IACH,QAAQ,CAAC,EAAU,EAAE,OAAwB;QAC3C,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAA,WAAI,EAAA,aAAa,EAAE,EAAE,EAAE,OAAO,CAAC,CAAC;IAC1D,CAAC;CACF;AA5BD,4BA4BC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
import { APIResource } from "../core/resource.mjs";
|
|
3
|
+
import { path } from "../internal/utils/path.mjs";
|
|
4
|
+
export class Browsers extends APIResource {
|
|
5
|
+
/**
|
|
6
|
+
* Create Browser Session
|
|
7
|
+
*
|
|
8
|
+
* @example
|
|
9
|
+
* ```ts
|
|
10
|
+
* const browser = await client.browsers.create({
|
|
11
|
+
* invocation_id: 'ckqwer3o20000jb9s7abcdef',
|
|
12
|
+
* });
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
15
|
+
create(body, options) {
|
|
16
|
+
return this._client.post('/browsers', { body, ...options });
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Get Browser Session by ID
|
|
20
|
+
*
|
|
21
|
+
* @example
|
|
22
|
+
* ```ts
|
|
23
|
+
* const browser = await client.browsers.retrieve(
|
|
24
|
+
* 'e5bf36fe-9247-4e2b-8b5a-2f594cc1c073',
|
|
25
|
+
* );
|
|
26
|
+
* ```
|
|
27
|
+
*/
|
|
28
|
+
retrieve(id, options) {
|
|
29
|
+
return this._client.get(path `/browsers/${id}`, options);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
//# sourceMappingURL=browsers.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"browsers.mjs","sourceRoot":"","sources":["../src/resources/browsers.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OAGf,EAAE,IAAI,EAAE;AAEf,MAAM,OAAO,QAAS,SAAQ,WAAW;IACvC;;;;;;;;;OASG;IACH,MAAM,CAAC,IAAyB,EAAE,OAAwB;QACxD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC9D,CAAC;IAED;;;;;;;;;OASG;IACH,QAAQ,CAAC,EAAU,EAAE,OAAwB;QAC3C,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAA,aAAa,EAAE,EAAE,EAAE,OAAO,CAAC,CAAC;IAC1D,CAAC;CACF"}
|
package/resources/index.d.mts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { Apps
|
|
2
|
-
export {
|
|
1
|
+
export { Apps } from "./apps/apps.mjs";
|
|
2
|
+
export { Browsers, type BrowserCreateResponse, type BrowserRetrieveResponse, type BrowserCreateParams, } from "./browsers.mjs";
|
|
3
3
|
//# sourceMappingURL=index.d.mts.map
|