@daytonaio/sdk 0.135.0 → 0.136.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/package.json +4 -4
- package/src/utils/Import.d.ts +1 -129
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@daytonaio/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.136.0",
|
|
4
4
|
"description": "TypeScript SDK for Daytona",
|
|
5
5
|
"main": "./src/index.js",
|
|
6
6
|
"types": "./src/index.d.ts",
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"isomorphic-ws": "^5.0.0",
|
|
35
35
|
"pathe": "^2.0.3",
|
|
36
36
|
"shell-quote": "^1.8.2",
|
|
37
|
-
"tar": "^
|
|
38
|
-
"@daytonaio/api-client": "0.
|
|
39
|
-
"@daytonaio/toolbox-api-client": "0.
|
|
37
|
+
"tar": "^7.5.4",
|
|
38
|
+
"@daytonaio/api-client": "0.136.0",
|
|
39
|
+
"@daytonaio/toolbox-api-client": "0.136.0"
|
|
40
40
|
},
|
|
41
41
|
"packageManager": "yarn@4.6.0",
|
|
42
42
|
"type": "commonjs"
|
package/src/utils/Import.d.ts
CHANGED
|
@@ -48,135 +48,7 @@ declare const loaderMap: {
|
|
|
48
48
|
EventEmitter: typeof import("events");
|
|
49
49
|
EventEmitterAsyncResource: typeof import("events").EventEmitterAsyncResource;
|
|
50
50
|
}>;
|
|
51
|
-
tar: () => Promise<{
|
|
52
|
-
default: typeof import("tar");
|
|
53
|
-
Extract(opts: import("tar").ExtractOptions | string): import("tar").ParseStream;
|
|
54
|
-
create(options: import("tar").CreateOptions, fileList: readonly string[], callback?: (err?: Error) => void): import("stream").Readable;
|
|
55
|
-
create(options: import("tar").CreateOptions & import("tar").FileOptions, fileList: readonly string[]): Promise<void>;
|
|
56
|
-
create(options: import("tar").CreateOptions & import("tar").FileOptions & {
|
|
57
|
-
sync: true;
|
|
58
|
-
}, fileList: readonly string[]): void;
|
|
59
|
-
create(options: import("tar").CreateOptions & import("tar").FileOptions, fileList: readonly string[], callback: (err?: Error) => void): void;
|
|
60
|
-
extract(options: import("tar").ExtractOptions, fileList?: readonly string[], callback?: (err?: Error) => void): import("stream").Writable;
|
|
61
|
-
extract(options: import("tar").ExtractOptions & import("tar").FileOptions, fileList?: readonly string[]): Promise<void>;
|
|
62
|
-
extract(options: import("tar").ExtractOptions & import("tar").FileOptions & {
|
|
63
|
-
sync: true;
|
|
64
|
-
}, fileList?: readonly string[]): void;
|
|
65
|
-
extract(options: import("tar").ExtractOptions & import("tar").FileOptions, fileList: readonly string[] | undefined, callback: (err?: Error) => void): void;
|
|
66
|
-
list(options: import("tar").ListOptions & import("tar").RequiredFileOptions, fileList?: readonly string[]): Promise<void>;
|
|
67
|
-
list(options: import("tar").ListOptions & import("tar").RequiredFileOptions & {
|
|
68
|
-
sync: true;
|
|
69
|
-
}, fileList?: readonly string[]): void;
|
|
70
|
-
list(callback?: (err?: Error) => void): import("tar").Parse;
|
|
71
|
-
list(optionsOrFileList: import("tar").ListOptions | readonly string[], callback?: (err?: Error) => void): import("tar").Parse;
|
|
72
|
-
list(options: import("tar").ListOptions, fileList: readonly string[], callback?: (err?: Error) => void): import("tar").Parse;
|
|
73
|
-
replace(options: import("tar").ReplaceOptions, fileList?: readonly string[]): Promise<void>;
|
|
74
|
-
replace(options: import("tar").ReplaceOptions, fileList: readonly string[] | undefined, callback: (err?: Error) => void): Promise<void>;
|
|
75
|
-
update(options: import("tar").ReplaceOptions, fileList?: readonly string[]): Promise<void>;
|
|
76
|
-
update(options: import("tar").ReplaceOptions, fileList: readonly string[] | undefined, callback: (err?: Error) => void): Promise<void>;
|
|
77
|
-
fieldSize: number[];
|
|
78
|
-
fieldOffs: number[];
|
|
79
|
-
fieldEnds: number[];
|
|
80
|
-
types: {
|
|
81
|
-
0: string;
|
|
82
|
-
"\0": string;
|
|
83
|
-
"": string;
|
|
84
|
-
1: string;
|
|
85
|
-
2: string;
|
|
86
|
-
3: string;
|
|
87
|
-
4: string;
|
|
88
|
-
5: string;
|
|
89
|
-
6: string;
|
|
90
|
-
7: string;
|
|
91
|
-
g: string;
|
|
92
|
-
x: string;
|
|
93
|
-
A: string;
|
|
94
|
-
D: string;
|
|
95
|
-
I: string;
|
|
96
|
-
K: string;
|
|
97
|
-
L: string;
|
|
98
|
-
M: string;
|
|
99
|
-
N: string;
|
|
100
|
-
S: string;
|
|
101
|
-
V: string;
|
|
102
|
-
X: string;
|
|
103
|
-
File: string;
|
|
104
|
-
OldFile: string;
|
|
105
|
-
Link: string;
|
|
106
|
-
SymbolicLick: string;
|
|
107
|
-
CharacterDevice: string;
|
|
108
|
-
BlockDevice: string;
|
|
109
|
-
Directory: string;
|
|
110
|
-
FIFO: string;
|
|
111
|
-
ContiguousFile: string;
|
|
112
|
-
GlobalExtendedHeader: string;
|
|
113
|
-
ExtendedHeader: string;
|
|
114
|
-
SolarisACL: string;
|
|
115
|
-
GNUDumpDir: string;
|
|
116
|
-
INode: string;
|
|
117
|
-
NextFileHasLonLinkPath: string;
|
|
118
|
-
NextFileHasLongPath: string;
|
|
119
|
-
ContinuationFile: string;
|
|
120
|
-
TapeVolumeHeader: string;
|
|
121
|
-
OldExtendedHeader: string;
|
|
122
|
-
};
|
|
123
|
-
modes: {
|
|
124
|
-
suid: number;
|
|
125
|
-
sgid: number;
|
|
126
|
-
svtx: number;
|
|
127
|
-
uread: number;
|
|
128
|
-
uwrite: number;
|
|
129
|
-
uexec: number;
|
|
130
|
-
gread: number;
|
|
131
|
-
gwrite: number;
|
|
132
|
-
gexec: number;
|
|
133
|
-
oread: number;
|
|
134
|
-
owrite: number;
|
|
135
|
-
oexec: number;
|
|
136
|
-
};
|
|
137
|
-
numeric: {
|
|
138
|
-
mode: boolean;
|
|
139
|
-
uid: boolean;
|
|
140
|
-
gid: boolean;
|
|
141
|
-
size: boolean;
|
|
142
|
-
mtime: boolean;
|
|
143
|
-
devmaj: boolean;
|
|
144
|
-
devmin: boolean;
|
|
145
|
-
cksum: boolean;
|
|
146
|
-
atime: boolean;
|
|
147
|
-
ctime: boolean;
|
|
148
|
-
dev: boolean;
|
|
149
|
-
ino: boolean;
|
|
150
|
-
nlink: boolean;
|
|
151
|
-
};
|
|
152
|
-
knownExtended: {
|
|
153
|
-
atime: boolean;
|
|
154
|
-
charset: boolean;
|
|
155
|
-
comment: boolean;
|
|
156
|
-
ctime: boolean;
|
|
157
|
-
gid: boolean;
|
|
158
|
-
gname: boolean;
|
|
159
|
-
linkpat: boolean;
|
|
160
|
-
mtime: boolean;
|
|
161
|
-
path: boolean;
|
|
162
|
-
realtime: boolean;
|
|
163
|
-
security: boolean;
|
|
164
|
-
size: boolean;
|
|
165
|
-
uid: boolean;
|
|
166
|
-
uname: boolean;
|
|
167
|
-
};
|
|
168
|
-
headerSize: number;
|
|
169
|
-
blockSize: number;
|
|
170
|
-
Parse: {
|
|
171
|
-
new (opt?: import("tar").ParseOptions): import("tar").Parse;
|
|
172
|
-
};
|
|
173
|
-
Pack: typeof import("tar").Pack;
|
|
174
|
-
c: typeof import("tar").create;
|
|
175
|
-
x: typeof import("tar").extract;
|
|
176
|
-
t: typeof import("tar").list;
|
|
177
|
-
r: typeof import("tar").replace;
|
|
178
|
-
u: typeof import("tar").update;
|
|
179
|
-
}>;
|
|
51
|
+
tar: () => Promise<typeof import("tar", { with: { "resolution-mode": "import" } })>;
|
|
180
52
|
'expand-tilde': () => Promise<any>;
|
|
181
53
|
ObjectStorage: () => Promise<{
|
|
182
54
|
default: typeof import("../ObjectStorage");
|