@dagger.io/dagger 0.2.0 → 0.3.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.gen.d.ts +143 -24
- package/dist/api/client.gen.d.ts.map +1 -1
- package/dist/api/client.gen.js +159 -157
- package/dist/api/utils.d.ts.map +1 -1
- package/dist/api/utils.js +26 -8
- package/dist/common/errors/DaggerSDKError.d.ts +31 -0
- package/dist/common/errors/DaggerSDKError.d.ts.map +1 -0
- package/dist/common/errors/DaggerSDKError.js +22 -0
- package/dist/common/errors/DockerImageRefValidationError.d.ts +22 -0
- package/dist/common/errors/DockerImageRefValidationError.d.ts.map +1 -0
- package/dist/common/errors/DockerImageRefValidationError.js +16 -0
- package/dist/common/errors/EngineSessionPortParseError.d.ts +25 -0
- package/dist/common/errors/EngineSessionPortParseError.d.ts.map +1 -0
- package/dist/common/errors/EngineSessionPortParseError.js +20 -0
- package/dist/common/errors/GraphQLRequestError.d.ts +27 -0
- package/dist/common/errors/GraphQLRequestError.d.ts.map +1 -0
- package/dist/common/errors/GraphQLRequestError.js +16 -0
- package/dist/common/errors/InitEngineSessionBinaryError.d.ts +13 -0
- package/dist/common/errors/InitEngineSessionBinaryError.d.ts.map +1 -0
- package/dist/common/errors/InitEngineSessionBinaryError.js +14 -0
- package/dist/common/errors/TooManyNestedObjectsError.d.ts +21 -0
- package/dist/common/errors/TooManyNestedObjectsError.d.ts.map +1 -0
- package/dist/common/errors/TooManyNestedObjectsError.js +15 -0
- package/dist/common/errors/UnknownDaggerError.d.ts +13 -0
- package/dist/common/errors/UnknownDaggerError.d.ts.map +1 -0
- package/dist/common/errors/UnknownDaggerError.js +14 -0
- package/dist/common/errors/index.d.ts +8 -0
- package/dist/common/errors/index.d.ts.map +1 -0
- package/dist/common/errors/index.js +7 -0
- package/dist/common/utils.d.ts +65 -0
- package/dist/common/utils.d.ts.map +1 -0
- package/dist/common/utils.js +2 -0
- package/dist/connect.d.ts +1 -2
- package/dist/connect.d.ts.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/provisioning/bin/bin.d.ts.map +1 -1
- package/dist/provisioning/bin/bin.js +6 -2
- package/dist/provisioning/default.js +1 -1
- package/dist/provisioning/docker-provision/image.d.ts.map +1 -1
- package/dist/provisioning/docker-provision/image.js +10 -4
- package/package.json +5 -8
package/dist/api/client.gen.d.ts
CHANGED
|
@@ -32,41 +32,142 @@ declare class BaseClient {
|
|
|
32
32
|
}
|
|
33
33
|
/**
|
|
34
34
|
* A global cache volume identifier
|
|
35
|
-
* @hidden
|
|
36
35
|
*/
|
|
37
36
|
export type CacheID = string;
|
|
37
|
+
export type ContainerBuildOpts = {
|
|
38
|
+
dockerfile?: string;
|
|
39
|
+
};
|
|
40
|
+
export type ContainerExecOpts = {
|
|
41
|
+
/**
|
|
42
|
+
* Command to run instead of the container's default command
|
|
43
|
+
*/
|
|
44
|
+
args?: string[];
|
|
45
|
+
/**
|
|
46
|
+
* Content to write to the command's standard input before closing
|
|
47
|
+
*/
|
|
48
|
+
stdin?: string;
|
|
49
|
+
/**
|
|
50
|
+
* Redirect the command's standard output to a file in the container
|
|
51
|
+
*/
|
|
52
|
+
redirectStdout?: string;
|
|
53
|
+
/**
|
|
54
|
+
* Redirect the command's standard error to a file in the container
|
|
55
|
+
*/
|
|
56
|
+
redirectStderr?: string;
|
|
57
|
+
/**
|
|
58
|
+
* Provide dagger access to the executed command
|
|
59
|
+
* Do not use this option unless you trust the command being executed
|
|
60
|
+
* The command being executed WILL BE GRANTED FULL ACCESS TO YOUR HOST FILESYSTEM
|
|
61
|
+
*/
|
|
62
|
+
experimentalPrivilegedNesting?: boolean;
|
|
63
|
+
};
|
|
64
|
+
export type ContainerExportOpts = {
|
|
65
|
+
platformVariants?: ContainerID[] | Container[];
|
|
66
|
+
};
|
|
67
|
+
export type ContainerPublishOpts = {
|
|
68
|
+
platformVariants?: ContainerID[] | Container[];
|
|
69
|
+
};
|
|
70
|
+
export type ContainerWithDefaultArgsOpts = {
|
|
71
|
+
args?: string[];
|
|
72
|
+
};
|
|
73
|
+
export type ContainerWithDirectoryOpts = {
|
|
74
|
+
exclude?: string[];
|
|
75
|
+
include?: string[];
|
|
76
|
+
};
|
|
77
|
+
export type ContainerWithExecOpts = {
|
|
78
|
+
/**
|
|
79
|
+
* Content to write to the command's standard input before closing
|
|
80
|
+
*/
|
|
81
|
+
stdin?: string;
|
|
82
|
+
/**
|
|
83
|
+
* Redirect the command's standard output to a file in the container
|
|
84
|
+
*/
|
|
85
|
+
redirectStdout?: string;
|
|
86
|
+
/**
|
|
87
|
+
* Redirect the command's standard error to a file in the container
|
|
88
|
+
*/
|
|
89
|
+
redirectStderr?: string;
|
|
90
|
+
/**
|
|
91
|
+
* Provide dagger access to the executed command
|
|
92
|
+
* Do not use this option unless you trust the command being executed
|
|
93
|
+
* The command being executed WILL BE GRANTED FULL ACCESS TO YOUR HOST FILESYSTEM
|
|
94
|
+
*/
|
|
95
|
+
experimentalPrivilegedNesting?: boolean;
|
|
96
|
+
};
|
|
97
|
+
export type ContainerWithMountedCacheOpts = {
|
|
98
|
+
source?: DirectoryID | Directory;
|
|
99
|
+
};
|
|
100
|
+
export type ContainerWithNewFileOpts = {
|
|
101
|
+
contents?: string;
|
|
102
|
+
};
|
|
38
103
|
/**
|
|
39
104
|
* A unique container identifier. Null designates an empty container (scratch).
|
|
40
|
-
* @hidden
|
|
41
105
|
*/
|
|
42
106
|
export type ContainerID = string;
|
|
43
107
|
/**
|
|
44
108
|
* The `DateTime` scalar type represents a DateTime. The DateTime is serialized as an RFC 3339 quoted string
|
|
45
|
-
* @hidden
|
|
46
109
|
*/
|
|
47
110
|
export type DateTime = string;
|
|
111
|
+
export type DirectoryDockerBuildOpts = {
|
|
112
|
+
dockerfile?: string;
|
|
113
|
+
platform?: Platform;
|
|
114
|
+
};
|
|
115
|
+
export type DirectoryEntriesOpts = {
|
|
116
|
+
path?: string;
|
|
117
|
+
};
|
|
118
|
+
export type DirectoryWithDirectoryOpts = {
|
|
119
|
+
exclude?: string[];
|
|
120
|
+
include?: string[];
|
|
121
|
+
};
|
|
48
122
|
/**
|
|
49
123
|
* A content-addressed directory identifier
|
|
50
|
-
* @hidden
|
|
51
124
|
*/
|
|
52
125
|
export type DirectoryID = string;
|
|
53
126
|
export type FileID = string;
|
|
127
|
+
export type GitRefTreeOpts = {
|
|
128
|
+
sshKnownHosts?: string;
|
|
129
|
+
sshAuthSocket?: SocketID;
|
|
130
|
+
};
|
|
131
|
+
export type HostDirectoryOpts = {
|
|
132
|
+
exclude?: string[];
|
|
133
|
+
include?: string[];
|
|
134
|
+
};
|
|
135
|
+
export type HostWorkdirOpts = {
|
|
136
|
+
exclude?: string[];
|
|
137
|
+
include?: string[];
|
|
138
|
+
};
|
|
54
139
|
/**
|
|
55
140
|
* The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID.
|
|
56
|
-
* @hidden
|
|
57
141
|
*/
|
|
58
142
|
export type ID = string;
|
|
59
143
|
export type Platform = string;
|
|
144
|
+
export type ClientContainerOpts = {
|
|
145
|
+
id?: ContainerID | Container;
|
|
146
|
+
platform?: Platform;
|
|
147
|
+
};
|
|
148
|
+
export type ClientDirectoryOpts = {
|
|
149
|
+
id?: DirectoryID | Directory;
|
|
150
|
+
};
|
|
151
|
+
export type ClientGitOpts = {
|
|
152
|
+
keepGitDir?: boolean;
|
|
153
|
+
};
|
|
154
|
+
export type ClientSocketOpts = {
|
|
155
|
+
id?: SocketID;
|
|
156
|
+
};
|
|
60
157
|
/**
|
|
61
158
|
* A unique identifier for a secret
|
|
62
|
-
* @hidden
|
|
63
159
|
*/
|
|
64
160
|
export type SecretID = string;
|
|
65
161
|
/**
|
|
66
162
|
* A content-addressed socket identifier
|
|
67
|
-
* @hidden
|
|
68
163
|
*/
|
|
69
164
|
export type SocketID = string;
|
|
165
|
+
export type __TypeEnumValuesOpts = {
|
|
166
|
+
includeDeprecated?: boolean;
|
|
167
|
+
};
|
|
168
|
+
export type __TypeFieldsOpts = {
|
|
169
|
+
includeDeprecated?: boolean;
|
|
170
|
+
};
|
|
70
171
|
/**
|
|
71
172
|
* A directory whose contents persist across runs
|
|
72
173
|
*/
|
|
@@ -80,7 +181,7 @@ export declare class Container extends BaseClient {
|
|
|
80
181
|
/**
|
|
81
182
|
* Initialize this container from a Dockerfile build
|
|
82
183
|
*/
|
|
83
|
-
build(context: DirectoryID | Directory,
|
|
184
|
+
build(context: DirectoryID | Directory, opts?: ContainerBuildOpts): Container;
|
|
84
185
|
/**
|
|
85
186
|
* Default arguments for future commands
|
|
86
187
|
*/
|
|
@@ -104,9 +205,11 @@ export declare class Container extends BaseClient {
|
|
|
104
205
|
/**
|
|
105
206
|
* This container after executing the specified command inside it
|
|
106
207
|
*
|
|
208
|
+
* @param opts optional params for exec
|
|
209
|
+
*
|
|
107
210
|
* @deprecated Replaced by withExec.
|
|
108
211
|
*/
|
|
109
|
-
exec(
|
|
212
|
+
exec(opts?: ContainerExecOpts): Container;
|
|
110
213
|
/**
|
|
111
214
|
* Exit code of the last executed command. Zero means success.
|
|
112
215
|
* Null if no command has been executed.
|
|
@@ -115,7 +218,7 @@ export declare class Container extends BaseClient {
|
|
|
115
218
|
/**
|
|
116
219
|
* Write the container as an OCI tarball to the destination file path on the host
|
|
117
220
|
*/
|
|
118
|
-
export(path: string,
|
|
221
|
+
export(path: string, opts?: ContainerExportOpts): Promise<boolean>;
|
|
119
222
|
/**
|
|
120
223
|
* Retrieve a file at the given path. Mounts are included.
|
|
121
224
|
*/
|
|
@@ -127,6 +230,7 @@ export declare class Container extends BaseClient {
|
|
|
127
230
|
/**
|
|
128
231
|
* This container's root filesystem. Mounts are not included.
|
|
129
232
|
*
|
|
233
|
+
*
|
|
130
234
|
* @deprecated Replaced by rootfs.
|
|
131
235
|
*/
|
|
132
236
|
fs(): Directory;
|
|
@@ -145,7 +249,7 @@ export declare class Container extends BaseClient {
|
|
|
145
249
|
/**
|
|
146
250
|
* Publish this container as a new image, returning a fully qualified ref
|
|
147
251
|
*/
|
|
148
|
-
publish(address: string,
|
|
252
|
+
publish(address: string, opts?: ContainerPublishOpts): Promise<string>;
|
|
149
253
|
/**
|
|
150
254
|
* This container's root filesystem. Mounts are not included.
|
|
151
255
|
*/
|
|
@@ -167,7 +271,11 @@ export declare class Container extends BaseClient {
|
|
|
167
271
|
/**
|
|
168
272
|
* Configures default arguments for future commands
|
|
169
273
|
*/
|
|
170
|
-
withDefaultArgs(
|
|
274
|
+
withDefaultArgs(opts?: ContainerWithDefaultArgsOpts): Container;
|
|
275
|
+
/**
|
|
276
|
+
* This container plus a directory written at the given path
|
|
277
|
+
*/
|
|
278
|
+
withDirectory(path: string, directory: DirectoryID | Directory, opts?: ContainerWithDirectoryOpts): Container;
|
|
171
279
|
/**
|
|
172
280
|
* This container but with a different command entrypoint
|
|
173
281
|
*/
|
|
@@ -179,17 +287,22 @@ export declare class Container extends BaseClient {
|
|
|
179
287
|
/**
|
|
180
288
|
* This container after executing the specified command inside it
|
|
181
289
|
*/
|
|
182
|
-
withExec(args: string[],
|
|
290
|
+
withExec(args: string[], opts?: ContainerWithExecOpts): Container;
|
|
183
291
|
/**
|
|
184
292
|
* Initialize this container from this DirectoryID
|
|
185
293
|
*
|
|
294
|
+
*
|
|
186
295
|
* @deprecated Replaced by withRootfs.
|
|
187
296
|
*/
|
|
188
297
|
withFS(id: DirectoryID | Directory): Container;
|
|
298
|
+
/**
|
|
299
|
+
* This container plus the contents of the given file copied to the given path
|
|
300
|
+
*/
|
|
301
|
+
withFile(path: string, source: FileID | File): Container;
|
|
189
302
|
/**
|
|
190
303
|
* This container plus a cache volume mounted at the given path
|
|
191
304
|
*/
|
|
192
|
-
withMountedCache(path: string, cache: CacheID | CacheVolume,
|
|
305
|
+
withMountedCache(path: string, cache: CacheID | CacheVolume, opts?: ContainerWithMountedCacheOpts): Container;
|
|
193
306
|
/**
|
|
194
307
|
* This container plus a directory mounted at the given path
|
|
195
308
|
*/
|
|
@@ -206,6 +319,10 @@ export declare class Container extends BaseClient {
|
|
|
206
319
|
* This container plus a temporary directory mounted at the given path
|
|
207
320
|
*/
|
|
208
321
|
withMountedTemp(path: string): Container;
|
|
322
|
+
/**
|
|
323
|
+
* This container plus a new file written at the given path
|
|
324
|
+
*/
|
|
325
|
+
withNewFile(path: string, opts?: ContainerWithNewFileOpts): Container;
|
|
209
326
|
/**
|
|
210
327
|
* Initialize this container from this DirectoryID
|
|
211
328
|
*/
|
|
@@ -258,11 +375,11 @@ export declare class Directory extends BaseClient {
|
|
|
258
375
|
/**
|
|
259
376
|
* Build a new Docker container from this directory
|
|
260
377
|
*/
|
|
261
|
-
dockerBuild(
|
|
378
|
+
dockerBuild(opts?: DirectoryDockerBuildOpts): Container;
|
|
262
379
|
/**
|
|
263
380
|
* Return a list of files and directories at the given path
|
|
264
381
|
*/
|
|
265
|
-
entries(
|
|
382
|
+
entries(opts?: DirectoryEntriesOpts): Promise<string[]>;
|
|
266
383
|
/**
|
|
267
384
|
* Write the contents of the directory to a path on the host
|
|
268
385
|
*/
|
|
@@ -282,7 +399,7 @@ export declare class Directory extends BaseClient {
|
|
|
282
399
|
/**
|
|
283
400
|
* This directory plus a directory written at the given path
|
|
284
401
|
*/
|
|
285
|
-
withDirectory(path: string, directory: DirectoryID | Directory,
|
|
402
|
+
withDirectory(path: string, directory: DirectoryID | Directory, opts?: DirectoryWithDirectoryOpts): Directory;
|
|
286
403
|
/**
|
|
287
404
|
* This directory plus the contents of the given file copied to the given path
|
|
288
405
|
*/
|
|
@@ -350,7 +467,7 @@ export declare class GitRef extends BaseClient {
|
|
|
350
467
|
/**
|
|
351
468
|
* The filesystem tree at this ref
|
|
352
469
|
*/
|
|
353
|
-
tree(
|
|
470
|
+
tree(opts?: GitRefTreeOpts): Directory;
|
|
354
471
|
}
|
|
355
472
|
/**
|
|
356
473
|
* A git repository
|
|
@@ -384,7 +501,7 @@ export declare class Host extends BaseClient {
|
|
|
384
501
|
/**
|
|
385
502
|
* Access a directory on the host
|
|
386
503
|
*/
|
|
387
|
-
directory(path: string,
|
|
504
|
+
directory(path: string, opts?: HostDirectoryOpts): Directory;
|
|
388
505
|
/**
|
|
389
506
|
* Access an environment variable on the host
|
|
390
507
|
*/
|
|
@@ -396,9 +513,11 @@ export declare class Host extends BaseClient {
|
|
|
396
513
|
/**
|
|
397
514
|
* The current working directory on the host
|
|
398
515
|
*
|
|
516
|
+
* @param opts optional params for workdir
|
|
517
|
+
*
|
|
399
518
|
* @deprecated Use directory with path set to '.' instead.
|
|
400
519
|
*/
|
|
401
|
-
workdir(
|
|
520
|
+
workdir(opts?: HostWorkdirOpts): Directory;
|
|
402
521
|
}
|
|
403
522
|
/**
|
|
404
523
|
* An environment variable on the host environment
|
|
@@ -452,7 +571,7 @@ export default class Client extends BaseClient {
|
|
|
452
571
|
* Null ID returns an empty container (scratch).
|
|
453
572
|
* Optional platform argument initializes new containers to execute and publish as that platform. Platform defaults to that of the builder's host.
|
|
454
573
|
*/
|
|
455
|
-
container(
|
|
574
|
+
container(opts?: ClientContainerOpts): Container;
|
|
456
575
|
/**
|
|
457
576
|
* The default platform of the builder.
|
|
458
577
|
*/
|
|
@@ -460,7 +579,7 @@ export default class Client extends BaseClient {
|
|
|
460
579
|
/**
|
|
461
580
|
* Load a directory by ID. No argument produces an empty directory.
|
|
462
581
|
*/
|
|
463
|
-
directory(
|
|
582
|
+
directory(opts?: ClientDirectoryOpts): Directory;
|
|
464
583
|
/**
|
|
465
584
|
* Load a file by ID
|
|
466
585
|
*/
|
|
@@ -468,7 +587,7 @@ export default class Client extends BaseClient {
|
|
|
468
587
|
/**
|
|
469
588
|
* Query a git repository
|
|
470
589
|
*/
|
|
471
|
-
git(url: string,
|
|
590
|
+
git(url: string, opts?: ClientGitOpts): GitRepository;
|
|
472
591
|
/**
|
|
473
592
|
* Query the host environment
|
|
474
593
|
*/
|
|
@@ -488,7 +607,7 @@ export default class Client extends BaseClient {
|
|
|
488
607
|
/**
|
|
489
608
|
* Load a socket by ID
|
|
490
609
|
*/
|
|
491
|
-
socket(
|
|
610
|
+
socket(opts?: ClientSocketOpts): Socket;
|
|
492
611
|
}
|
|
493
612
|
/**
|
|
494
613
|
* A reference to a secret value, which can be handled more safely than the value itself
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.gen.d.ts","sourceRoot":"","sources":["../../api/client.gen.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAG/C;;GAEG;AACH,MAAM,MAAM,SAAS,GAAG;IACtB,SAAS,EAAE,MAAM,CAAA;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;CAC/B,CAAA;AAED,UAAU,YAAY;IACpB,SAAS,CAAC,EAAE,SAAS,EAAE,CAAA;IACvB,IAAI,CAAC,EAAE,MAAM,CAAA;CACd;AAED,cAAM,UAAU;IACd,SAAS,CAAC,UAAU,EAAE,SAAS,EAAE,CAAA;IACjC,SAAS,CAAC,MAAM,EAAE,aAAa,CAAA;IAC/B;;OAEG;IACI,UAAU,EAAE,MAAM,CAAA;IAEzB;;OAEG;gBACS,EAAE,SAAS,EAAE,IAAI,EAAE,GAAE,YAAiB;IAMlD;;OAEG;IACH,IAAI,SAAS,gBAEZ;CACF;AAED
|
|
1
|
+
{"version":3,"file":"client.gen.d.ts","sourceRoot":"","sources":["../../api/client.gen.ts"],"names":[],"mappings":"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"}
|