@vercel/sandbox 1.9.3 → 1.10.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/api-client/api-client.d.cts +25 -25
- package/dist/api-client/api-client.d.ts +25 -25
- package/dist/api-client/base-client.cjs +2 -1
- package/dist/api-client/base-client.cjs.map +1 -1
- package/dist/api-client/base-client.js +2 -1
- package/dist/api-client/base-client.js.map +1 -1
- package/dist/api-client/validators.d.cts +102 -102
- package/dist/api-client/validators.d.ts +102 -102
- package/dist/auth/file.d.cts +3 -3
- package/dist/auth/file.d.ts +3 -3
- package/dist/auth/index.cjs +0 -1
- package/dist/auth/index.d.cts +2 -2
- package/dist/auth/index.d.ts +2 -2
- package/dist/auth/index.js +2 -2
- package/dist/auth/project.cjs +124 -26
- package/dist/auth/project.cjs.map +1 -1
- package/dist/auth/project.d.cts +9 -13
- package/dist/auth/project.d.ts +9 -13
- package/dist/auth/project.js +125 -26
- package/dist/auth/project.js.map +1 -1
- package/dist/filesystem.cjs +499 -0
- package/dist/filesystem.cjs.map +1 -0
- package/dist/filesystem.d.cts +258 -0
- package/dist/filesystem.d.ts +258 -0
- package/dist/filesystem.js +497 -0
- package/dist/filesystem.js.map +1 -0
- package/dist/index.cjs +2 -0
- package/dist/index.d.cts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +2 -1
- package/dist/sandbox.cjs +2 -0
- package/dist/sandbox.cjs.map +1 -1
- package/dist/sandbox.d.cts +20 -9
- package/dist/sandbox.d.ts +20 -9
- package/dist/sandbox.js +2 -0
- package/dist/sandbox.js.map +1 -1
- package/dist/snapshot.cjs +39 -5
- package/dist/snapshot.cjs.map +1 -1
- package/dist/snapshot.d.cts +36 -14
- package/dist/snapshot.d.ts +36 -14
- package/dist/snapshot.js +38 -5
- package/dist/snapshot.js.map +1 -1
- package/dist/version.cjs +1 -1
- package/dist/version.cjs.map +1 -1
- package/dist/version.js +1 -1
- package/dist/version.js.map +1 -1
- package/package.json +1 -1
package/dist/snapshot.d.cts
CHANGED
|
@@ -2,8 +2,12 @@ import { Parsed } from "./api-client/base-client.cjs";
|
|
|
2
2
|
import { SnapshotMetadata } from "./api-client/validators.cjs";
|
|
3
3
|
import { APIClient, WithFetchOptions } from "./api-client/api-client.cjs";
|
|
4
4
|
import { Credentials } from "./utils/get-credentials.cjs";
|
|
5
|
+
import { WORKFLOW_DESERIALIZE, WORKFLOW_SERIALIZE } from "@workflow/serde";
|
|
5
6
|
|
|
6
7
|
//#region src/snapshot.d.ts
|
|
8
|
+
interface SerializedSnapshot {
|
|
9
|
+
snapshot: SnapshotMetadata;
|
|
10
|
+
}
|
|
7
11
|
/** @inline */
|
|
8
12
|
interface GetSnapshotParams {
|
|
9
13
|
/**
|
|
@@ -22,7 +26,14 @@ interface GetSnapshotParams {
|
|
|
22
26
|
* @hideconstructor
|
|
23
27
|
*/
|
|
24
28
|
declare class Snapshot {
|
|
25
|
-
private
|
|
29
|
+
private _client;
|
|
30
|
+
/**
|
|
31
|
+
* Lazily resolve credentials and construct an API client.
|
|
32
|
+
* This is used in step contexts where the Snapshot was deserialized
|
|
33
|
+
* without a client (e.g. when crossing workflow/step boundaries).
|
|
34
|
+
* @internal
|
|
35
|
+
*/
|
|
36
|
+
private ensureClient;
|
|
26
37
|
/**
|
|
27
38
|
* Unique ID of this snapshot.
|
|
28
39
|
*/
|
|
@@ -52,16 +63,27 @@ declare class Snapshot {
|
|
|
52
63
|
*/
|
|
53
64
|
private snapshot;
|
|
54
65
|
/**
|
|
55
|
-
*
|
|
66
|
+
* Serialize a Snapshot instance to plain data for @workflow/serde.
|
|
56
67
|
*
|
|
57
|
-
* @param
|
|
58
|
-
* @
|
|
68
|
+
* @param instance - The Snapshot instance to serialize
|
|
69
|
+
* @returns A plain object containing snapshot metadata
|
|
59
70
|
*/
|
|
71
|
+
static [WORKFLOW_SERIALIZE](instance: Snapshot): SerializedSnapshot;
|
|
72
|
+
/**
|
|
73
|
+
* Deserialize a Snapshot from serialized data.
|
|
74
|
+
*
|
|
75
|
+
* The deserialized instance uses the serialized metadata synchronously and
|
|
76
|
+
* lazily creates an API client only when methods perform API requests.
|
|
77
|
+
*
|
|
78
|
+
* @param data - The serialized snapshot data
|
|
79
|
+
* @returns The reconstructed Snapshot instance
|
|
80
|
+
*/
|
|
81
|
+
static [WORKFLOW_DESERIALIZE](data: SerializedSnapshot): Snapshot;
|
|
60
82
|
constructor({
|
|
61
83
|
client,
|
|
62
84
|
snapshot
|
|
63
85
|
}: {
|
|
64
|
-
client
|
|
86
|
+
client?: APIClient;
|
|
65
87
|
snapshot: SnapshotMetadata;
|
|
66
88
|
});
|
|
67
89
|
/**
|
|
@@ -70,21 +92,21 @@ declare class Snapshot {
|
|
|
70
92
|
* the next page of results.
|
|
71
93
|
*/
|
|
72
94
|
static list(params?: Partial<Parameters<APIClient["listSnapshots"]>[0]> & Partial<Credentials> & WithFetchOptions): Promise<Parsed<{
|
|
73
|
-
pagination: {
|
|
74
|
-
count: number;
|
|
75
|
-
next: number | null;
|
|
76
|
-
prev: number | null;
|
|
77
|
-
};
|
|
78
95
|
snapshots: {
|
|
79
|
-
status: "
|
|
96
|
+
status: "created" | "deleted" | "failed";
|
|
80
97
|
id: string;
|
|
98
|
+
sourceSandboxId: string;
|
|
81
99
|
region: string;
|
|
100
|
+
sizeBytes: number;
|
|
82
101
|
createdAt: number;
|
|
83
102
|
updatedAt: number;
|
|
84
|
-
sourceSandboxId: string;
|
|
85
|
-
sizeBytes: number;
|
|
86
103
|
expiresAt?: number | undefined;
|
|
87
104
|
}[];
|
|
105
|
+
pagination: {
|
|
106
|
+
count: number;
|
|
107
|
+
next: number | null;
|
|
108
|
+
prev: number | null;
|
|
109
|
+
};
|
|
88
110
|
}>>;
|
|
89
111
|
/**
|
|
90
112
|
* Retrieve an existing snapshot.
|
|
@@ -105,5 +127,5 @@ declare class Snapshot {
|
|
|
105
127
|
}): Promise<void>;
|
|
106
128
|
}
|
|
107
129
|
//#endregion
|
|
108
|
-
export { Snapshot };
|
|
130
|
+
export { SerializedSnapshot, Snapshot };
|
|
109
131
|
//# sourceMappingURL=snapshot.d.cts.map
|
package/dist/snapshot.d.ts
CHANGED
|
@@ -3,8 +3,12 @@ import { SnapshotMetadata } from "./api-client/validators.js";
|
|
|
3
3
|
import { APIClient, WithFetchOptions } from "./api-client/api-client.js";
|
|
4
4
|
import "./api-client/index.js";
|
|
5
5
|
import { Credentials } from "./utils/get-credentials.js";
|
|
6
|
+
import { WORKFLOW_DESERIALIZE, WORKFLOW_SERIALIZE } from "@workflow/serde";
|
|
6
7
|
|
|
7
8
|
//#region src/snapshot.d.ts
|
|
9
|
+
interface SerializedSnapshot {
|
|
10
|
+
snapshot: SnapshotMetadata;
|
|
11
|
+
}
|
|
8
12
|
/** @inline */
|
|
9
13
|
interface GetSnapshotParams {
|
|
10
14
|
/**
|
|
@@ -23,7 +27,14 @@ interface GetSnapshotParams {
|
|
|
23
27
|
* @hideconstructor
|
|
24
28
|
*/
|
|
25
29
|
declare class Snapshot {
|
|
26
|
-
private
|
|
30
|
+
private _client;
|
|
31
|
+
/**
|
|
32
|
+
* Lazily resolve credentials and construct an API client.
|
|
33
|
+
* This is used in step contexts where the Snapshot was deserialized
|
|
34
|
+
* without a client (e.g. when crossing workflow/step boundaries).
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
private ensureClient;
|
|
27
38
|
/**
|
|
28
39
|
* Unique ID of this snapshot.
|
|
29
40
|
*/
|
|
@@ -53,16 +64,27 @@ declare class Snapshot {
|
|
|
53
64
|
*/
|
|
54
65
|
private snapshot;
|
|
55
66
|
/**
|
|
56
|
-
*
|
|
67
|
+
* Serialize a Snapshot instance to plain data for @workflow/serde.
|
|
57
68
|
*
|
|
58
|
-
* @param
|
|
59
|
-
* @
|
|
69
|
+
* @param instance - The Snapshot instance to serialize
|
|
70
|
+
* @returns A plain object containing snapshot metadata
|
|
60
71
|
*/
|
|
72
|
+
static [WORKFLOW_SERIALIZE](instance: Snapshot): SerializedSnapshot;
|
|
73
|
+
/**
|
|
74
|
+
* Deserialize a Snapshot from serialized data.
|
|
75
|
+
*
|
|
76
|
+
* The deserialized instance uses the serialized metadata synchronously and
|
|
77
|
+
* lazily creates an API client only when methods perform API requests.
|
|
78
|
+
*
|
|
79
|
+
* @param data - The serialized snapshot data
|
|
80
|
+
* @returns The reconstructed Snapshot instance
|
|
81
|
+
*/
|
|
82
|
+
static [WORKFLOW_DESERIALIZE](data: SerializedSnapshot): Snapshot;
|
|
61
83
|
constructor({
|
|
62
84
|
client,
|
|
63
85
|
snapshot
|
|
64
86
|
}: {
|
|
65
|
-
client
|
|
87
|
+
client?: APIClient;
|
|
66
88
|
snapshot: SnapshotMetadata;
|
|
67
89
|
});
|
|
68
90
|
/**
|
|
@@ -71,21 +93,21 @@ declare class Snapshot {
|
|
|
71
93
|
* the next page of results.
|
|
72
94
|
*/
|
|
73
95
|
static list(params?: Partial<Parameters<APIClient["listSnapshots"]>[0]> & Partial<Credentials> & WithFetchOptions): Promise<Parsed<{
|
|
74
|
-
pagination: {
|
|
75
|
-
count: number;
|
|
76
|
-
next: number | null;
|
|
77
|
-
prev: number | null;
|
|
78
|
-
};
|
|
79
96
|
snapshots: {
|
|
80
|
-
status: "
|
|
97
|
+
status: "created" | "deleted" | "failed";
|
|
81
98
|
id: string;
|
|
99
|
+
sourceSandboxId: string;
|
|
82
100
|
region: string;
|
|
101
|
+
sizeBytes: number;
|
|
83
102
|
createdAt: number;
|
|
84
103
|
updatedAt: number;
|
|
85
|
-
sourceSandboxId: string;
|
|
86
|
-
sizeBytes: number;
|
|
87
104
|
expiresAt?: number | undefined;
|
|
88
105
|
}[];
|
|
106
|
+
pagination: {
|
|
107
|
+
count: number;
|
|
108
|
+
next: number | null;
|
|
109
|
+
prev: number | null;
|
|
110
|
+
};
|
|
89
111
|
}>>;
|
|
90
112
|
/**
|
|
91
113
|
* Retrieve an existing snapshot.
|
|
@@ -106,5 +128,5 @@ declare class Snapshot {
|
|
|
106
128
|
}): Promise<void>;
|
|
107
129
|
}
|
|
108
130
|
//#endregion
|
|
109
|
-
export { Snapshot };
|
|
131
|
+
export { SerializedSnapshot, Snapshot };
|
|
110
132
|
//# sourceMappingURL=snapshot.d.ts.map
|
package/dist/snapshot.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { APIClient } from "./api-client/api-client.js";
|
|
2
2
|
import "./api-client/index.js";
|
|
3
3
|
import { getCredentials } from "./utils/get-credentials.js";
|
|
4
|
+
import { WORKFLOW_DESERIALIZE, WORKFLOW_SERIALIZE } from "@workflow/serde";
|
|
4
5
|
|
|
5
6
|
//#region src/snapshot.ts
|
|
6
7
|
/**
|
|
@@ -10,6 +11,22 @@ import { getCredentials } from "./utils/get-credentials.js";
|
|
|
10
11
|
* @hideconstructor
|
|
11
12
|
*/
|
|
12
13
|
var Snapshot = class Snapshot {
|
|
14
|
+
/**
|
|
15
|
+
* Lazily resolve credentials and construct an API client.
|
|
16
|
+
* This is used in step contexts where the Snapshot was deserialized
|
|
17
|
+
* without a client (e.g. when crossing workflow/step boundaries).
|
|
18
|
+
* @internal
|
|
19
|
+
*/
|
|
20
|
+
async ensureClient() {
|
|
21
|
+
"use step";
|
|
22
|
+
if (this._client) return this._client;
|
|
23
|
+
const credentials = await getCredentials();
|
|
24
|
+
this._client = new APIClient({
|
|
25
|
+
teamId: credentials.teamId,
|
|
26
|
+
token: credentials.token
|
|
27
|
+
});
|
|
28
|
+
return this._client;
|
|
29
|
+
}
|
|
13
30
|
/**
|
|
14
31
|
* Unique ID of this snapshot.
|
|
15
32
|
*/
|
|
@@ -48,13 +65,29 @@ var Snapshot = class Snapshot {
|
|
|
48
65
|
return new Date(this.snapshot.expiresAt);
|
|
49
66
|
}
|
|
50
67
|
/**
|
|
51
|
-
*
|
|
68
|
+
* Serialize a Snapshot instance to plain data for @workflow/serde.
|
|
52
69
|
*
|
|
53
|
-
* @param
|
|
54
|
-
* @
|
|
70
|
+
* @param instance - The Snapshot instance to serialize
|
|
71
|
+
* @returns A plain object containing snapshot metadata
|
|
55
72
|
*/
|
|
73
|
+
static [WORKFLOW_SERIALIZE](instance) {
|
|
74
|
+
return { snapshot: instance.snapshot };
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* Deserialize a Snapshot from serialized data.
|
|
78
|
+
*
|
|
79
|
+
* The deserialized instance uses the serialized metadata synchronously and
|
|
80
|
+
* lazily creates an API client only when methods perform API requests.
|
|
81
|
+
*
|
|
82
|
+
* @param data - The serialized snapshot data
|
|
83
|
+
* @returns The reconstructed Snapshot instance
|
|
84
|
+
*/
|
|
85
|
+
static [WORKFLOW_DESERIALIZE](data) {
|
|
86
|
+
return new Snapshot({ snapshot: data.snapshot });
|
|
87
|
+
}
|
|
56
88
|
constructor({ client, snapshot }) {
|
|
57
|
-
this.
|
|
89
|
+
this._client = null;
|
|
90
|
+
this._client = client ?? null;
|
|
58
91
|
this.snapshot = snapshot;
|
|
59
92
|
}
|
|
60
93
|
/**
|
|
@@ -104,7 +137,7 @@ var Snapshot = class Snapshot {
|
|
|
104
137
|
*/
|
|
105
138
|
async delete(opts) {
|
|
106
139
|
"use step";
|
|
107
|
-
this.snapshot = (await this.
|
|
140
|
+
this.snapshot = (await (await this.ensureClient()).deleteSnapshot({
|
|
108
141
|
snapshotId: this.snapshot.id,
|
|
109
142
|
signal: opts?.signal
|
|
110
143
|
})).json.snapshot;
|
package/dist/snapshot.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"snapshot.js","names":[],"sources":["../src/snapshot.ts"],"sourcesContent":["import type { WithFetchOptions } from \"./api-client/api-client.js\";\nimport type { SnapshotMetadata } from \"./api-client/index.js\";\nimport { APIClient } from \"./api-client/index.js\";\nimport { type Credentials, getCredentials } from \"./utils/get-credentials.js\";\n\n/** @inline */\ninterface GetSnapshotParams {\n /**\n * Unique identifier of the snapshot.\n */\n snapshotId: string;\n /**\n * An AbortSignal to cancel the operation.\n */\n signal?: AbortSignal;\n}\n\n/**\n * A Snapshot is a saved state of a Sandbox that can be used to create new Sandboxes\n *\n * Use {@link Sandbox.snapshot} or {@link Snapshot.get} to construct.\n * @hideconstructor\n */\nexport class Snapshot {\n private
|
|
1
|
+
{"version":3,"file":"snapshot.js","names":[],"sources":["../src/snapshot.ts"],"sourcesContent":["import { WORKFLOW_DESERIALIZE, WORKFLOW_SERIALIZE } from \"@workflow/serde\";\nimport type { WithFetchOptions } from \"./api-client/api-client.js\";\nimport type { SnapshotMetadata } from \"./api-client/index.js\";\nimport { APIClient } from \"./api-client/index.js\";\nimport { type Credentials, getCredentials } from \"./utils/get-credentials.js\";\n\nexport interface SerializedSnapshot {\n snapshot: SnapshotMetadata;\n}\n\n/** @inline */\ninterface GetSnapshotParams {\n /**\n * Unique identifier of the snapshot.\n */\n snapshotId: string;\n /**\n * An AbortSignal to cancel the operation.\n */\n signal?: AbortSignal;\n}\n\n/**\n * A Snapshot is a saved state of a Sandbox that can be used to create new Sandboxes\n *\n * Use {@link Sandbox.snapshot} or {@link Snapshot.get} to construct.\n * @hideconstructor\n */\nexport class Snapshot {\n private _client: APIClient | null = null;\n\n /**\n * Lazily resolve credentials and construct an API client.\n * This is used in step contexts where the Snapshot was deserialized\n * without a client (e.g. when crossing workflow/step boundaries).\n * @internal\n */\n private async ensureClient(): Promise<APIClient> {\n \"use step\";\n if (this._client) return this._client;\n const credentials = await getCredentials();\n this._client = new APIClient({\n teamId: credentials.teamId,\n token: credentials.token,\n });\n return this._client;\n }\n\n /**\n * Unique ID of this snapshot.\n */\n public get snapshotId(): string {\n return this.snapshot.id;\n }\n\n /**\n * The ID the sandbox from which this snapshot was created.\n */\n public get sourceSandboxId(): string {\n return this.snapshot.sourceSandboxId;\n }\n\n /**\n * The status of the snapshot.\n */\n public get status(): SnapshotMetadata[\"status\"] {\n return this.snapshot.status;\n }\n\n /**\n * The size of the snapshot in bytes, or null if not available.\n */\n public get sizeBytes(): number {\n return this.snapshot.sizeBytes;\n }\n\n /**\n * The creation date of this snapshot.\n */\n public get createdAt(): Date {\n return new Date(this.snapshot.createdAt);\n }\n\n /**\n * The expiration date of this snapshot, or undefined if it does not expire.\n */\n public get expiresAt(): Date | undefined {\n if (this.snapshot.expiresAt === undefined) {\n return undefined;\n }\n\n return new Date(this.snapshot.expiresAt);\n }\n\n /**\n * Internal metadata about this snapshot.\n */\n private snapshot: SnapshotMetadata;\n\n /**\n * Serialize a Snapshot instance to plain data for @workflow/serde.\n *\n * @param instance - The Snapshot instance to serialize\n * @returns A plain object containing snapshot metadata\n */\n static [WORKFLOW_SERIALIZE](instance: Snapshot): SerializedSnapshot {\n return {\n snapshot: instance.snapshot,\n };\n }\n\n /**\n * Deserialize a Snapshot from serialized data.\n *\n * The deserialized instance uses the serialized metadata synchronously and\n * lazily creates an API client only when methods perform API requests.\n *\n * @param data - The serialized snapshot data\n * @returns The reconstructed Snapshot instance\n */\n static [WORKFLOW_DESERIALIZE](data: SerializedSnapshot): Snapshot {\n return new Snapshot({\n snapshot: data.snapshot,\n });\n }\n\n constructor({\n client,\n snapshot,\n }: {\n client?: APIClient;\n snapshot: SnapshotMetadata;\n }) {\n this._client = client ?? null;\n this.snapshot = snapshot;\n }\n\n /**\n * Allow to get a list of snapshots for a team narrowed to the given params.\n * It returns both the snapshots and the pagination metadata to allow getting\n * the next page of results.\n */\n static async list(\n params?: Partial<Parameters<APIClient[\"listSnapshots\"]>[0]> &\n Partial<Credentials> &\n WithFetchOptions,\n ) {\n \"use step\";\n const credentials = await getCredentials(params);\n const client = new APIClient({\n teamId: credentials.teamId,\n token: credentials.token,\n fetch: params?.fetch,\n });\n return client.listSnapshots({\n ...credentials,\n ...params,\n });\n }\n\n /**\n * Retrieve an existing snapshot.\n *\n * @param params - Get parameters and optional credentials.\n * @returns A promise resolving to the {@link Sandbox}.\n */\n static async get(\n params: GetSnapshotParams | (GetSnapshotParams & Credentials),\n ): Promise<Snapshot> {\n \"use step\";\n const credentials = await getCredentials(params);\n const client = new APIClient({\n teamId: credentials.teamId,\n token: credentials.token,\n });\n\n const sandbox = await client.getSnapshot({\n snapshotId: params.snapshotId,\n signal: params.signal,\n });\n\n return new Snapshot({\n client,\n snapshot: sandbox.json.snapshot,\n });\n }\n\n /**\n * Delete this snapshot.\n *\n * @param opts - Optional parameters.\n * @param opts.signal - An AbortSignal to cancel the operation.\n * @returns A promise that resolves once the snapshot has been deleted.\n */\n async delete(opts?: { signal?: AbortSignal }): Promise<void> {\n \"use step\";\n const client = await this.ensureClient();\n const response = await client.deleteSnapshot({\n snapshotId: this.snapshot.id,\n signal: opts?.signal,\n });\n\n this.snapshot = response.json.snapshot;\n }\n}\n"],"mappings":";;;;;;;;;;;;AA4BA,IAAa,WAAb,MAAa,SAAS;;;;;;;CASpB,MAAc,eAAmC;AAC/C;AACA,MAAI,KAAK,QAAS,QAAO,KAAK;EAC9B,MAAM,cAAc,MAAM,gBAAgB;AAC1C,OAAK,UAAU,IAAI,UAAU;GAC3B,QAAQ,YAAY;GACpB,OAAO,YAAY;GACpB,CAAC;AACF,SAAO,KAAK;;;;;CAMd,IAAW,aAAqB;AAC9B,SAAO,KAAK,SAAS;;;;;CAMvB,IAAW,kBAA0B;AACnC,SAAO,KAAK,SAAS;;;;;CAMvB,IAAW,SAAqC;AAC9C,SAAO,KAAK,SAAS;;;;;CAMvB,IAAW,YAAoB;AAC7B,SAAO,KAAK,SAAS;;;;;CAMvB,IAAW,YAAkB;AAC3B,SAAO,IAAI,KAAK,KAAK,SAAS,UAAU;;;;;CAM1C,IAAW,YAA8B;AACvC,MAAI,KAAK,SAAS,cAAc,OAC9B;AAGF,SAAO,IAAI,KAAK,KAAK,SAAS,UAAU;;;;;;;;CAc1C,QAAQ,oBAAoB,UAAwC;AAClE,SAAO,EACL,UAAU,SAAS,UACpB;;;;;;;;;;;CAYH,QAAQ,sBAAsB,MAAoC;AAChE,SAAO,IAAI,SAAS,EAClB,UAAU,KAAK,UAChB,CAAC;;CAGJ,YAAY,EACV,QACA,YAIC;OAvGK,UAA4B;AAwGlC,OAAK,UAAU,UAAU;AACzB,OAAK,WAAW;;;;;;;CAQlB,aAAa,KACX,QAGA;AACA;EACA,MAAM,cAAc,MAAM,eAAe,OAAO;AAMhD,SALe,IAAI,UAAU;GAC3B,QAAQ,YAAY;GACpB,OAAO,YAAY;GACnB,OAAO,QAAQ;GAChB,CAAC,CACY,cAAc;GAC1B,GAAG;GACH,GAAG;GACJ,CAAC;;;;;;;;CASJ,aAAa,IACX,QACmB;AACnB;EACA,MAAM,cAAc,MAAM,eAAe,OAAO;EAChD,MAAM,SAAS,IAAI,UAAU;GAC3B,QAAQ,YAAY;GACpB,OAAO,YAAY;GACpB,CAAC;AAOF,SAAO,IAAI,SAAS;GAClB;GACA,WAPc,MAAM,OAAO,YAAY;IACvC,YAAY,OAAO;IACnB,QAAQ,OAAO;IAChB,CAAC,EAIkB,KAAK;GACxB,CAAC;;;;;;;;;CAUJ,MAAM,OAAO,MAAgD;AAC3D;AAOA,OAAK,YALY,OADF,MAAM,KAAK,cAAc,EACV,eAAe;GAC3C,YAAY,KAAK,SAAS;GAC1B,QAAQ,MAAM;GACf,CAAC,EAEuB,KAAK"}
|
package/dist/version.cjs
CHANGED
package/dist/version.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.cjs","names":[],"sources":["../src/version.ts"],"sourcesContent":["// Autogenerated by inject-version.ts\nexport const VERSION = \"1.
|
|
1
|
+
{"version":3,"file":"version.cjs","names":[],"sources":["../src/version.ts"],"sourcesContent":["// Autogenerated by inject-version.ts\nexport const VERSION = \"1.10.0\";\n"],"mappings":";;AACA,MAAa,UAAU"}
|
package/dist/version.js
CHANGED
package/dist/version.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.js","names":[],"sources":["../src/version.ts"],"sourcesContent":["// Autogenerated by inject-version.ts\nexport const VERSION = \"1.
|
|
1
|
+
{"version":3,"file":"version.js","names":[],"sources":["../src/version.ts"],"sourcesContent":["// Autogenerated by inject-version.ts\nexport const VERSION = \"1.10.0\";\n"],"mappings":";AACA,MAAa,UAAU"}
|