@daytonaio/sdk 0.171.0-alpha.7 → 0.171.0-alpha.9
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/cjs/utils/Import.d.ts +8 -107
- package/cjs/utils/Import.js +19 -44
- package/cjs/utils/Import.js.map +1 -1
- package/esm/utils/Import.d.ts +8 -77
- package/esm/utils/Import.js +21 -13
- package/esm/utils/Import.js.map +1 -1
- package/package.json +4 -3
package/cjs/utils/Import.d.ts
CHANGED
|
@@ -1,112 +1,13 @@
|
|
|
1
1
|
declare const loaderMap: {
|
|
2
|
-
'fast-glob': () => Promise<
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
} | {
|
|
7
|
-
stats: true;
|
|
8
|
-
})): import("fast-glob/out/types").Entry[];
|
|
9
|
-
sync(source: import("fast-glob/out/types").Pattern | import("fast-glob/out/types").Pattern[], options?: import("fast-glob/out/settings").Options): string[];
|
|
10
|
-
stream(source: import("fast-glob/out/types").Pattern | import("fast-glob/out/types").Pattern[], options?: import("fast-glob/out/settings").Options): NodeJS.ReadableStream;
|
|
11
|
-
generateTasks(source: import("fast-glob/out/types").Pattern | import("fast-glob/out/types").Pattern[], options?: import("fast-glob/out/settings").Options): import("fast-glob").Task[];
|
|
12
|
-
isDynamicPattern(source: import("fast-glob/out/types").Pattern, options?: import("fast-glob/out/settings").Options): boolean;
|
|
13
|
-
escapePath(source: string): import("fast-glob/out/types").Pattern;
|
|
14
|
-
convertPathToPattern(source: string): import("fast-glob/out/types").Pattern;
|
|
15
|
-
glob: typeof import("fast-glob");
|
|
16
|
-
globSync: typeof import("fast-glob").sync;
|
|
17
|
-
globStream: typeof import("fast-glob").stream;
|
|
18
|
-
async: typeof import("fast-glob");
|
|
19
|
-
posix: typeof import("fast-glob").posix;
|
|
20
|
-
win32: typeof import("fast-glob").win32;
|
|
21
|
-
}>;
|
|
22
|
-
'@iarna/toml': () => Promise<{
|
|
23
|
-
default: typeof import("@iarna/toml");
|
|
24
|
-
parse: import("@iarna/toml").FuncParse;
|
|
25
|
-
stringify: import("@iarna/toml").FuncStringify;
|
|
26
|
-
}>;
|
|
27
|
-
stream: () => Promise<{
|
|
28
|
-
default: typeof import("stream");
|
|
29
|
-
Stream: typeof import("stream");
|
|
30
|
-
promises: typeof import("node:stream/promises");
|
|
31
|
-
duplexPair(options?: import("stream").DuplexOptions): [import("stream").Duplex, import("stream").Duplex];
|
|
32
|
-
addAbortSignal<T extends import("stream")>(signal: AbortSignal, stream: T): T;
|
|
33
|
-
getDefaultHighWaterMark(objectMode: boolean): number;
|
|
34
|
-
setDefaultHighWaterMark(objectMode: boolean, value: number): void;
|
|
35
|
-
finished: typeof import("stream").finished;
|
|
36
|
-
pipeline: typeof import("stream").pipeline;
|
|
37
|
-
isErrored(stream: import("stream").Readable | import("stream").Writable | NodeJS.ReadableStream | NodeJS.WritableStream): boolean;
|
|
38
|
-
isReadable(stream: import("stream").Readable | NodeJS.ReadableStream): boolean;
|
|
39
|
-
Readable: typeof import("stream").Readable;
|
|
40
|
-
Writable: typeof import("stream").Writable;
|
|
41
|
-
Duplex: typeof import("stream").Duplex;
|
|
42
|
-
Transform: typeof import("stream").Transform;
|
|
43
|
-
PassThrough: typeof import("stream").PassThrough;
|
|
44
|
-
errorMonitor: typeof import("events").errorMonitor;
|
|
45
|
-
captureRejectionSymbol: typeof import("events").captureRejectionSymbol;
|
|
46
|
-
captureRejections: boolean;
|
|
47
|
-
defaultMaxListeners: number;
|
|
48
|
-
EventEmitter: typeof import("events");
|
|
49
|
-
EventEmitterAsyncResource: typeof import("events").EventEmitterAsyncResource;
|
|
50
|
-
}>;
|
|
51
|
-
tar: () => Promise<{
|
|
52
|
-
default: typeof import("tar");
|
|
53
|
-
c: import("tar/dist/commonjs/make-command").TarCommand<import("tar").Pack, import("tar").PackSync>;
|
|
54
|
-
x: import("tar/dist/commonjs/make-command").TarCommand<import("tar").Unpack, import("tar").UnpackSync>;
|
|
55
|
-
t: import("tar/dist/commonjs/make-command").TarCommand<import("tar").Parser, import("tar").Parser & {
|
|
56
|
-
sync: true;
|
|
57
|
-
}>;
|
|
58
|
-
r: import("tar/dist/commonjs/make-command").TarCommand<never, never>;
|
|
59
|
-
types: typeof import("tar/dist/commonjs/types");
|
|
60
|
-
u: import("tar/dist/commonjs/make-command").TarCommand<never, never>;
|
|
61
|
-
create: import("tar/dist/commonjs/make-command").TarCommand<import("tar").Pack, import("tar").PackSync>;
|
|
62
|
-
extract: import("tar/dist/commonjs/make-command").TarCommand<import("tar").Unpack, import("tar").UnpackSync>;
|
|
63
|
-
Header: typeof import("tar").Header;
|
|
64
|
-
filesFilter: (opt: import("tar/dist/commonjs/options").TarOptions, files: string[]) => void;
|
|
65
|
-
list: import("tar/dist/commonjs/make-command").TarCommand<import("tar").Parser, import("tar").Parser & {
|
|
66
|
-
sync: true;
|
|
67
|
-
}>;
|
|
68
|
-
PackJob: typeof import("tar").PackJob;
|
|
69
|
-
Pack: typeof import("tar").Pack;
|
|
70
|
-
PackSync: typeof import("tar").PackSync;
|
|
71
|
-
Parser: typeof import("tar").Parser;
|
|
72
|
-
Pax: typeof import("tar").Pax;
|
|
73
|
-
ReadEntry: typeof import("tar").ReadEntry;
|
|
74
|
-
replace: import("tar/dist/commonjs/make-command").TarCommand<never, never>;
|
|
75
|
-
Unpack: typeof import("tar").Unpack;
|
|
76
|
-
UnpackSync: typeof import("tar").UnpackSync;
|
|
77
|
-
update: import("tar/dist/commonjs/make-command").TarCommand<never, never>;
|
|
78
|
-
WriteEntry: typeof import("tar").WriteEntry;
|
|
79
|
-
WriteEntrySync: typeof import("tar").WriteEntrySync;
|
|
80
|
-
WriteEntryTar: typeof import("tar").WriteEntryTar;
|
|
81
|
-
}>;
|
|
2
|
+
'fast-glob': () => Promise<any>;
|
|
3
|
+
'@iarna/toml': () => Promise<any>;
|
|
4
|
+
stream: () => Promise<any>;
|
|
5
|
+
tar: () => Promise<any>;
|
|
82
6
|
'expand-tilde': () => Promise<any>;
|
|
83
|
-
ObjectStorage: () => Promise<
|
|
84
|
-
fs: () => Promise<
|
|
85
|
-
'form-data': () => Promise<
|
|
86
|
-
|
|
87
|
-
Stream: typeof import("stream");
|
|
88
|
-
promises: typeof import("node:stream/promises");
|
|
89
|
-
duplexPair(options?: import("stream").DuplexOptions): [import("stream").Duplex, import("stream").Duplex];
|
|
90
|
-
addAbortSignal<T extends import("stream")>(signal: AbortSignal, stream: T): T;
|
|
91
|
-
getDefaultHighWaterMark(objectMode: boolean): number;
|
|
92
|
-
setDefaultHighWaterMark(objectMode: boolean, value: number): void;
|
|
93
|
-
finished: typeof import("stream").finished;
|
|
94
|
-
pipeline: typeof import("stream").pipeline;
|
|
95
|
-
isErrored(stream: import("stream").Readable | import("stream").Writable | NodeJS.ReadableStream | NodeJS.WritableStream): boolean;
|
|
96
|
-
isReadable(stream: import("stream").Readable | NodeJS.ReadableStream): boolean;
|
|
97
|
-
Readable: typeof import("stream").Readable;
|
|
98
|
-
Writable: typeof import("stream").Writable;
|
|
99
|
-
Duplex: typeof import("stream").Duplex;
|
|
100
|
-
Transform: typeof import("stream").Transform;
|
|
101
|
-
PassThrough: typeof import("stream").PassThrough;
|
|
102
|
-
errorMonitor: typeof import("events").errorMonitor;
|
|
103
|
-
captureRejectionSymbol: typeof import("events").captureRejectionSymbol;
|
|
104
|
-
captureRejections: boolean;
|
|
105
|
-
defaultMaxListeners: number;
|
|
106
|
-
EventEmitter: typeof import("events");
|
|
107
|
-
EventEmitterAsyncResource: typeof import("events").EventEmitterAsyncResource;
|
|
108
|
-
}>;
|
|
109
|
-
util: () => Promise<typeof import("util")>;
|
|
7
|
+
ObjectStorage: () => Promise<any>;
|
|
8
|
+
fs: () => Promise<any>;
|
|
9
|
+
'form-data': () => Promise<any>;
|
|
10
|
+
util: () => Promise<any>;
|
|
110
11
|
};
|
|
111
12
|
declare const requireMap: {
|
|
112
13
|
'fast-glob': () => any;
|
package/cjs/utils/Import.js
CHANGED
|
@@ -3,39 +3,6 @@
|
|
|
3
3
|
* Copyright 2025 Daytona Platforms Inc.
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
*/
|
|
6
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7
|
-
if (k2 === undefined) k2 = k;
|
|
8
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
9
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
10
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
11
|
-
}
|
|
12
|
-
Object.defineProperty(o, k2, desc);
|
|
13
|
-
}) : (function(o, m, k, k2) {
|
|
14
|
-
if (k2 === undefined) k2 = k;
|
|
15
|
-
o[k2] = m[k];
|
|
16
|
-
}));
|
|
17
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
18
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
19
|
-
}) : function(o, v) {
|
|
20
|
-
o["default"] = v;
|
|
21
|
-
});
|
|
22
|
-
var __importStar = (this && this.__importStar) || (function () {
|
|
23
|
-
var ownKeys = function(o) {
|
|
24
|
-
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
25
|
-
var ar = [];
|
|
26
|
-
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
27
|
-
return ar;
|
|
28
|
-
};
|
|
29
|
-
return ownKeys(o);
|
|
30
|
-
};
|
|
31
|
-
return function (mod) {
|
|
32
|
-
if (mod && mod.__esModule) return mod;
|
|
33
|
-
var result = {};
|
|
34
|
-
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
35
|
-
__setModuleDefault(result, mod);
|
|
36
|
-
return result;
|
|
37
|
-
};
|
|
38
|
-
})();
|
|
39
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
40
7
|
exports.dynamicImport = dynamicImport;
|
|
41
8
|
exports.dynamicRequire = dynamicRequire;
|
|
@@ -43,15 +10,15 @@ exports.getPackageInfo = getPackageInfo;
|
|
|
43
10
|
const DaytonaError_1 = require("../errors/DaytonaError");
|
|
44
11
|
const Runtime_1 = require("./Runtime");
|
|
45
12
|
const loaderMap = {
|
|
46
|
-
'fast-glob':
|
|
47
|
-
'@iarna/toml':
|
|
48
|
-
stream:
|
|
49
|
-
tar:
|
|
50
|
-
'expand-tilde':
|
|
51
|
-
ObjectStorage:
|
|
52
|
-
fs:
|
|
53
|
-
'form-data':
|
|
54
|
-
util:
|
|
13
|
+
'fast-glob': async () => require('fast-glob'),
|
|
14
|
+
'@iarna/toml': async () => require('@iarna/toml'),
|
|
15
|
+
stream: async () => require('stream'),
|
|
16
|
+
tar: async () => require('tar'),
|
|
17
|
+
'expand-tilde': async () => require('expand-tilde'),
|
|
18
|
+
ObjectStorage: async () => require('../ObjectStorage.js'),
|
|
19
|
+
fs: async () => require('fs'),
|
|
20
|
+
'form-data': async () => require('form-data'),
|
|
21
|
+
util: async () => require('util'),
|
|
55
22
|
};
|
|
56
23
|
const requireMap = {
|
|
57
24
|
'fast-glob': () => require('fast-glob'),
|
|
@@ -88,7 +55,7 @@ async function dynamicImport(name, errorPrefix) {
|
|
|
88
55
|
let mod;
|
|
89
56
|
try {
|
|
90
57
|
mod = (await loader());
|
|
91
|
-
mod = mod
|
|
58
|
+
mod = unwrapInterop(mod);
|
|
92
59
|
}
|
|
93
60
|
catch (err) {
|
|
94
61
|
const msg = err instanceof Error ? err.message : String(err);
|
|
@@ -99,6 +66,14 @@ async function dynamicImport(name, errorPrefix) {
|
|
|
99
66
|
}
|
|
100
67
|
return mod;
|
|
101
68
|
}
|
|
69
|
+
function unwrapInterop(mod) {
|
|
70
|
+
if (!mod || typeof mod !== 'object' || mod.default === undefined)
|
|
71
|
+
return mod;
|
|
72
|
+
const namedKeys = Object.keys(mod).filter((k) => k !== 'default');
|
|
73
|
+
if (namedKeys.length === 0)
|
|
74
|
+
return mod.default;
|
|
75
|
+
return mod;
|
|
76
|
+
}
|
|
102
77
|
function dynamicRequire(name, errorPrefix) {
|
|
103
78
|
const loader = requireMap[name];
|
|
104
79
|
if (!loader) {
|
|
@@ -107,7 +82,7 @@ function dynamicRequire(name, errorPrefix) {
|
|
|
107
82
|
let mod;
|
|
108
83
|
try {
|
|
109
84
|
mod = loader();
|
|
110
|
-
mod = mod
|
|
85
|
+
mod = unwrapInterop(mod);
|
|
111
86
|
}
|
|
112
87
|
catch (err) {
|
|
113
88
|
const msg = err instanceof Error ? err.message : String(err);
|
package/cjs/utils/Import.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Import.js","sourceRoot":"","sources":["../../../../../../libs/sdk-typescript/src/utils/Import.ts"],"names":[],"mappings":";AAAA;;;GAGG
|
|
1
|
+
{"version":3,"file":"Import.js","sourceRoot":"","sources":["../../../../../../libs/sdk-typescript/src/utils/Import.ts"],"names":[],"mappings":"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"}
|
package/esm/utils/Import.d.ts
CHANGED
|
@@ -1,82 +1,13 @@
|
|
|
1
1
|
declare const loaderMap: {
|
|
2
|
-
'fast-glob': () => Promise<
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
} | {
|
|
7
|
-
stats: true;
|
|
8
|
-
})): import("fast-glob/out/types").Entry[];
|
|
9
|
-
sync(source: import("fast-glob/out/types").Pattern | import("fast-glob/out/types").Pattern[], options?: import("fast-glob/out/settings").Options): string[];
|
|
10
|
-
stream(source: import("fast-glob/out/types").Pattern | import("fast-glob/out/types").Pattern[], options?: import("fast-glob/out/settings").Options): NodeJS.ReadableStream;
|
|
11
|
-
generateTasks(source: import("fast-glob/out/types").Pattern | import("fast-glob/out/types").Pattern[], options?: import("fast-glob/out/settings").Options): import("fast-glob").Task[];
|
|
12
|
-
isDynamicPattern(source: import("fast-glob/out/types").Pattern, options?: import("fast-glob/out/settings").Options): boolean;
|
|
13
|
-
escapePath(source: string): import("fast-glob/out/types").Pattern;
|
|
14
|
-
convertPathToPattern(source: string): import("fast-glob/out/types").Pattern;
|
|
15
|
-
glob: typeof import("fast-glob");
|
|
16
|
-
globSync: typeof import("fast-glob").sync;
|
|
17
|
-
globStream: typeof import("fast-glob").stream;
|
|
18
|
-
async: typeof import("fast-glob");
|
|
19
|
-
posix: typeof import("fast-glob").posix;
|
|
20
|
-
win32: typeof import("fast-glob").win32;
|
|
21
|
-
}>;
|
|
22
|
-
'@iarna/toml': () => Promise<{
|
|
23
|
-
default: typeof import("@iarna/toml");
|
|
24
|
-
parse: import("@iarna/toml").FuncParse;
|
|
25
|
-
stringify: import("@iarna/toml").FuncStringify;
|
|
26
|
-
}>;
|
|
27
|
-
stream: () => Promise<{
|
|
28
|
-
default: typeof import("stream");
|
|
29
|
-
Stream: typeof import("stream");
|
|
30
|
-
promises: typeof import("node:stream/promises");
|
|
31
|
-
duplexPair(options?: import("stream").DuplexOptions): [import("stream").Duplex, import("stream").Duplex];
|
|
32
|
-
addAbortSignal<T extends import("stream")>(signal: AbortSignal, stream: T): T;
|
|
33
|
-
getDefaultHighWaterMark(objectMode: boolean): number;
|
|
34
|
-
setDefaultHighWaterMark(objectMode: boolean, value: number): void;
|
|
35
|
-
finished: typeof import("stream").finished;
|
|
36
|
-
pipeline: typeof import("stream").pipeline;
|
|
37
|
-
isErrored(stream: import("stream").Readable | import("stream").Writable | NodeJS.ReadableStream | NodeJS.WritableStream): boolean;
|
|
38
|
-
isReadable(stream: import("stream").Readable | NodeJS.ReadableStream): boolean;
|
|
39
|
-
Readable: typeof import("stream").Readable;
|
|
40
|
-
Writable: typeof import("stream").Writable;
|
|
41
|
-
Duplex: typeof import("stream").Duplex;
|
|
42
|
-
Transform: typeof import("stream").Transform;
|
|
43
|
-
PassThrough: typeof import("stream").PassThrough;
|
|
44
|
-
errorMonitor: typeof import("events").errorMonitor;
|
|
45
|
-
captureRejectionSymbol: typeof import("events").captureRejectionSymbol;
|
|
46
|
-
captureRejections: boolean;
|
|
47
|
-
defaultMaxListeners: number;
|
|
48
|
-
EventEmitter: typeof import("events");
|
|
49
|
-
EventEmitterAsyncResource: typeof import("events").EventEmitterAsyncResource;
|
|
50
|
-
}>;
|
|
51
|
-
tar: () => Promise<typeof import("tar")>;
|
|
2
|
+
'fast-glob': () => Promise<any>;
|
|
3
|
+
'@iarna/toml': () => Promise<any>;
|
|
4
|
+
stream: () => Promise<any>;
|
|
5
|
+
tar: () => Promise<any>;
|
|
52
6
|
'expand-tilde': () => Promise<any>;
|
|
53
|
-
ObjectStorage: () => Promise<
|
|
54
|
-
fs: () => Promise<
|
|
55
|
-
'form-data': () => Promise<
|
|
56
|
-
|
|
57
|
-
Stream: typeof import("stream");
|
|
58
|
-
promises: typeof import("node:stream/promises");
|
|
59
|
-
duplexPair(options?: import("stream").DuplexOptions): [import("stream").Duplex, import("stream").Duplex];
|
|
60
|
-
addAbortSignal<T extends import("stream")>(signal: AbortSignal, stream: T): T;
|
|
61
|
-
getDefaultHighWaterMark(objectMode: boolean): number;
|
|
62
|
-
setDefaultHighWaterMark(objectMode: boolean, value: number): void;
|
|
63
|
-
finished: typeof import("stream").finished;
|
|
64
|
-
pipeline: typeof import("stream").pipeline;
|
|
65
|
-
isErrored(stream: import("stream").Readable | import("stream").Writable | NodeJS.ReadableStream | NodeJS.WritableStream): boolean;
|
|
66
|
-
isReadable(stream: import("stream").Readable | NodeJS.ReadableStream): boolean;
|
|
67
|
-
Readable: typeof import("stream").Readable;
|
|
68
|
-
Writable: typeof import("stream").Writable;
|
|
69
|
-
Duplex: typeof import("stream").Duplex;
|
|
70
|
-
Transform: typeof import("stream").Transform;
|
|
71
|
-
PassThrough: typeof import("stream").PassThrough;
|
|
72
|
-
errorMonitor: typeof import("events").errorMonitor;
|
|
73
|
-
captureRejectionSymbol: typeof import("events").captureRejectionSymbol;
|
|
74
|
-
captureRejections: boolean;
|
|
75
|
-
defaultMaxListeners: number;
|
|
76
|
-
EventEmitter: typeof import("events");
|
|
77
|
-
EventEmitterAsyncResource: typeof import("events").EventEmitterAsyncResource;
|
|
78
|
-
}>;
|
|
79
|
-
util: () => Promise<typeof import("util")>;
|
|
7
|
+
ObjectStorage: () => Promise<any>;
|
|
8
|
+
fs: () => Promise<any>;
|
|
9
|
+
'form-data': () => Promise<any>;
|
|
10
|
+
util: () => Promise<any>;
|
|
80
11
|
};
|
|
81
12
|
declare const requireMap: {
|
|
82
13
|
'fast-glob': () => any;
|
package/esm/utils/Import.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
const require = (() => { try { return createRequire(import.meta.url); } catch { return (id) => { throw new Error('require("' + id + '") unavailable'); }; } })();
|
|
1
|
+
import * as _m from 'module';
|
|
2
|
+
const require = (() => { try { return _m.createRequire(import.meta.url); } catch { return (id) => { throw new Error('require("' + id + '") unavailable'); }; } })();
|
|
3
3
|
/*
|
|
4
4
|
* Copyright 2025 Daytona Platforms Inc.
|
|
5
5
|
* SPDX-License-Identifier: Apache-2.0
|
|
@@ -7,15 +7,15 @@ const require = (() => { try { return createRequire(import.meta.url); } catch {
|
|
|
7
7
|
import { DaytonaError } from '../errors/DaytonaError.js';
|
|
8
8
|
import { RUNTIME } from './Runtime.js';
|
|
9
9
|
const loaderMap = {
|
|
10
|
-
'fast-glob': () =>
|
|
11
|
-
'@iarna/toml': () =>
|
|
12
|
-
stream: () =>
|
|
13
|
-
tar: () =>
|
|
14
|
-
'expand-tilde': () =>
|
|
15
|
-
ObjectStorage: () =>
|
|
16
|
-
fs: () =>
|
|
17
|
-
'form-data': () =>
|
|
18
|
-
util: () =>
|
|
10
|
+
'fast-glob': async () => require('fast-glob'),
|
|
11
|
+
'@iarna/toml': async () => require('@iarna/toml'),
|
|
12
|
+
stream: async () => require('stream'),
|
|
13
|
+
tar: async () => require('tar'),
|
|
14
|
+
'expand-tilde': async () => require('expand-tilde'),
|
|
15
|
+
ObjectStorage: async () => require('../ObjectStorage.js'),
|
|
16
|
+
fs: async () => require('fs'),
|
|
17
|
+
'form-data': async () => require('form-data'),
|
|
18
|
+
util: async () => require('util'),
|
|
19
19
|
};
|
|
20
20
|
const requireMap = {
|
|
21
21
|
'fast-glob': () => require('fast-glob'),
|
|
@@ -52,7 +52,7 @@ export async function dynamicImport(name, errorPrefix) {
|
|
|
52
52
|
let mod;
|
|
53
53
|
try {
|
|
54
54
|
mod = (await loader());
|
|
55
|
-
mod = mod
|
|
55
|
+
mod = unwrapInterop(mod);
|
|
56
56
|
}
|
|
57
57
|
catch (err) {
|
|
58
58
|
const msg = err instanceof Error ? err.message : String(err);
|
|
@@ -63,6 +63,14 @@ export async function dynamicImport(name, errorPrefix) {
|
|
|
63
63
|
}
|
|
64
64
|
return mod;
|
|
65
65
|
}
|
|
66
|
+
function unwrapInterop(mod) {
|
|
67
|
+
if (!mod || typeof mod !== 'object' || mod.default === undefined)
|
|
68
|
+
return mod;
|
|
69
|
+
const namedKeys = Object.keys(mod).filter((k) => k !== 'default');
|
|
70
|
+
if (namedKeys.length === 0)
|
|
71
|
+
return mod.default;
|
|
72
|
+
return mod;
|
|
73
|
+
}
|
|
66
74
|
export function dynamicRequire(name, errorPrefix) {
|
|
67
75
|
const loader = requireMap[name];
|
|
68
76
|
if (!loader) {
|
|
@@ -71,7 +79,7 @@ export function dynamicRequire(name, errorPrefix) {
|
|
|
71
79
|
let mod;
|
|
72
80
|
try {
|
|
73
81
|
mod = loader();
|
|
74
|
-
mod = mod
|
|
82
|
+
mod = unwrapInterop(mod);
|
|
75
83
|
}
|
|
76
84
|
catch (err) {
|
|
77
85
|
const msg = err instanceof Error ? err.message : String(err);
|
package/esm/utils/Import.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Import.js","sourceRoot":"","sources":["../../../../../../libs/sdk-typescript/src/utils/Import.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AAEnC,MAAM,SAAS,GAAG;IAChB,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"Import.js","sourceRoot":"","sources":["../../../../../../libs/sdk-typescript/src/utils/Import.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@daytonaio/sdk",
|
|
3
|
-
"version": "0.171.0-alpha.
|
|
3
|
+
"version": "0.171.0-alpha.9",
|
|
4
4
|
"description": "Daytona TypeScript SDK for sandbox management and code execution",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"module": "./esm/index.js",
|
|
20
20
|
"types": "./cjs/index.d.ts",
|
|
21
21
|
"browser": {
|
|
22
|
+
"module": false,
|
|
22
23
|
"fs": false,
|
|
23
24
|
"stream": false,
|
|
24
25
|
"crypto": false,
|
|
@@ -88,7 +89,7 @@
|
|
|
88
89
|
"pathe": "^2.0.3",
|
|
89
90
|
"shell-quote": "^1.8.2",
|
|
90
91
|
"tar": "^7.5.11",
|
|
91
|
-
"@daytona/api-client": "0.171.0-alpha.
|
|
92
|
-
"@daytona/toolbox-api-client": "0.171.0-alpha.
|
|
92
|
+
"@daytona/api-client": "0.171.0-alpha.9",
|
|
93
|
+
"@daytona/toolbox-api-client": "0.171.0-alpha.9"
|
|
93
94
|
}
|
|
94
95
|
}
|