@dagger.io/dagger 0.1.0-alpha.4 → 0.1.1
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/README.md +1 -1
- package/dist/api/client.gen.d.ts +67 -26
- package/dist/api/client.gen.d.ts.map +1 -1
- package/dist/api/client.gen.js +566 -336
- package/dist/api/utils.d.ts.map +1 -1
- package/dist/api/utils.js +14 -15
- package/dist/connect.d.ts +7 -6
- package/dist/connect.d.ts.map +1 -1
- package/dist/connect.js +4 -4
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/provisioning/bin/bin.d.ts +21 -0
- package/dist/provisioning/bin/bin.d.ts.map +1 -0
- package/dist/provisioning/bin/bin.js +112 -0
- package/dist/provisioning/bin/index.d.ts +2 -0
- package/dist/provisioning/bin/index.d.ts.map +1 -0
- package/dist/provisioning/bin/index.js +1 -0
- package/dist/provisioning/default.d.ts.map +1 -1
- package/dist/provisioning/default.js +2 -1
- package/dist/provisioning/docker-provision/image.d.ts +1 -0
- package/dist/provisioning/docker-provision/image.d.ts.map +1 -1
- package/dist/provisioning/docker-provision/image.js +37 -19
- package/dist/provisioning/docker-provision/index.d.ts +1 -1
- package/dist/provisioning/docker-provision/index.d.ts.map +1 -1
- package/dist/provisioning/docker-provision/index.js +1 -1
- package/dist/provisioning/engineconn.d.ts +3 -2
- package/dist/provisioning/engineconn.d.ts.map +1 -1
- package/dist/provisioning/http/http.d.ts.map +1 -1
- package/dist/provisioning/http/http.js +1 -0
- package/dist/provisioning/http/index.d.ts.map +1 -1
- package/dist/provisioning/index.d.ts +4 -4
- package/dist/provisioning/index.d.ts.map +1 -1
- package/dist/provisioning/index.js +4 -4
- package/dist/provisioning/provisioner.d.ts.map +1 -1
- package/dist/provisioning/provisioner.js +2 -0
- package/package.json +10 -6
- package/dist/api/types.d.ts +0 -302
- package/dist/api/types.d.ts.map +0 -1
- package/dist/api/types.js +0 -1
package/README.md
CHANGED
package/dist/api/client.gen.d.ts
CHANGED
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
* This file was auto-generated by `cloak clientgen`.
|
|
3
3
|
* Do not make direct changes to the file.
|
|
4
4
|
*/
|
|
5
|
-
|
|
5
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
export type QueryTree = {
|
|
6
9
|
operation: string;
|
|
7
|
-
args?: Record<string,
|
|
10
|
+
args?: Record<string, unknown>;
|
|
8
11
|
};
|
|
9
12
|
interface ClientConfig {
|
|
10
13
|
queryTree?: QueryTree[];
|
|
@@ -13,47 +16,65 @@ interface ClientConfig {
|
|
|
13
16
|
declare class BaseClient {
|
|
14
17
|
protected _queryTree: QueryTree[];
|
|
15
18
|
private client;
|
|
16
|
-
|
|
19
|
+
/**
|
|
20
|
+
* @defaultValue `127.0.0.1:8080`
|
|
21
|
+
*/
|
|
22
|
+
clientHost: string;
|
|
23
|
+
/**
|
|
24
|
+
* @hidden
|
|
25
|
+
*/
|
|
17
26
|
constructor({ queryTree, host }?: ClientConfig);
|
|
27
|
+
/**
|
|
28
|
+
* @hidden
|
|
29
|
+
*/
|
|
18
30
|
get queryTree(): QueryTree[];
|
|
19
|
-
|
|
31
|
+
/**
|
|
32
|
+
* @hidden
|
|
33
|
+
*/
|
|
34
|
+
protected _compute<T>(): Promise<Record<string, T>>;
|
|
20
35
|
}
|
|
21
36
|
/**
|
|
22
37
|
* A global cache volume identifier
|
|
38
|
+
* @hidden
|
|
23
39
|
*/
|
|
24
|
-
export
|
|
40
|
+
export type CacheID = string;
|
|
25
41
|
/**
|
|
26
42
|
* A unique container identifier. Null designates an empty container (scratch).
|
|
43
|
+
* @hidden
|
|
27
44
|
*/
|
|
28
|
-
export
|
|
45
|
+
export type ContainerID = string;
|
|
29
46
|
/**
|
|
30
47
|
* The `DateTime` scalar type represents a DateTime. The DateTime is serialized as an RFC 3339 quoted string
|
|
48
|
+
* @hidden
|
|
31
49
|
*/
|
|
32
|
-
export
|
|
50
|
+
export type DateTime = string;
|
|
33
51
|
/**
|
|
34
52
|
* A content-addressed directory identifier
|
|
53
|
+
* @hidden
|
|
35
54
|
*/
|
|
36
|
-
export
|
|
37
|
-
export
|
|
55
|
+
export type DirectoryID = string;
|
|
56
|
+
export type FileID = string;
|
|
38
57
|
/**
|
|
39
58
|
* 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.
|
|
59
|
+
* @hidden
|
|
40
60
|
*/
|
|
41
|
-
export
|
|
42
|
-
export
|
|
61
|
+
export type ID = string;
|
|
62
|
+
export type Platform = string;
|
|
43
63
|
/**
|
|
44
64
|
* A unique identifier for a secret
|
|
65
|
+
* @hidden
|
|
45
66
|
*/
|
|
46
|
-
export
|
|
67
|
+
export type SecretID = string;
|
|
47
68
|
/**
|
|
48
69
|
* A directory whose contents persist across runs
|
|
49
70
|
*/
|
|
50
|
-
declare class CacheVolume extends BaseClient {
|
|
71
|
+
export declare class CacheVolume extends BaseClient {
|
|
51
72
|
id(): Promise<Record<string, CacheID>>;
|
|
52
73
|
}
|
|
53
74
|
/**
|
|
54
75
|
* An OCI-compatible container, also known as a docker container
|
|
55
76
|
*/
|
|
56
|
-
declare class Container extends BaseClient {
|
|
77
|
+
export declare class Container extends BaseClient {
|
|
57
78
|
/**
|
|
58
79
|
* Initialize this container from a Dockerfile build
|
|
59
80
|
*/
|
|
@@ -80,6 +101,8 @@ declare class Container extends BaseClient {
|
|
|
80
101
|
envVariables(): Promise<Record<string, EnvVariable[]>>;
|
|
81
102
|
/**
|
|
82
103
|
* This container after executing the specified command inside it
|
|
104
|
+
*
|
|
105
|
+
* @deprecated Replaced by withExec.
|
|
83
106
|
*/
|
|
84
107
|
exec(args?: string[], stdin?: string, redirectStdout?: string, redirectStderr?: string, experimentalPrivilegedNesting?: boolean): Container;
|
|
85
108
|
/**
|
|
@@ -101,6 +124,8 @@ declare class Container extends BaseClient {
|
|
|
101
124
|
from(address: string): Container;
|
|
102
125
|
/**
|
|
103
126
|
* This container's root filesystem. Mounts are not included.
|
|
127
|
+
*
|
|
128
|
+
* @deprecated Replaced by rootfs.
|
|
104
129
|
*/
|
|
105
130
|
fs(): Directory;
|
|
106
131
|
/**
|
|
@@ -119,16 +144,20 @@ declare class Container extends BaseClient {
|
|
|
119
144
|
* Publish this container as a new image, returning a fully qualified ref
|
|
120
145
|
*/
|
|
121
146
|
publish(address: string, platformVariants?: ContainerID[]): Promise<Record<string, string>>;
|
|
147
|
+
/**
|
|
148
|
+
* This container's root filesystem. Mounts are not included.
|
|
149
|
+
*/
|
|
150
|
+
rootfs(): Directory;
|
|
122
151
|
/**
|
|
123
152
|
* The error stream of the last executed command.
|
|
124
153
|
* Null if no command has been executed.
|
|
125
154
|
*/
|
|
126
|
-
stderr():
|
|
155
|
+
stderr(): Promise<Record<string, string>>;
|
|
127
156
|
/**
|
|
128
157
|
* The output stream of the last executed command.
|
|
129
158
|
* Null if no command has been executed.
|
|
130
159
|
*/
|
|
131
|
-
stdout():
|
|
160
|
+
stdout(): Promise<Record<string, string>>;
|
|
132
161
|
/**
|
|
133
162
|
* The user to be set for all commands
|
|
134
163
|
*/
|
|
@@ -145,8 +174,14 @@ declare class Container extends BaseClient {
|
|
|
145
174
|
* This container plus the given environment variable
|
|
146
175
|
*/
|
|
147
176
|
withEnvVariable(name: string, value: string): Container;
|
|
177
|
+
/**
|
|
178
|
+
* This container after executing the specified command inside it
|
|
179
|
+
*/
|
|
180
|
+
withExec(args: string[], stdin?: string, redirectStdout?: string, redirectStderr?: string, experimentalPrivilegedNesting?: boolean): Container;
|
|
148
181
|
/**
|
|
149
182
|
* Initialize this container from this DirectoryID
|
|
183
|
+
*
|
|
184
|
+
* @deprecated Replaced by withRootfs.
|
|
150
185
|
*/
|
|
151
186
|
withFS(id: DirectoryID): Container;
|
|
152
187
|
/**
|
|
@@ -169,6 +204,10 @@ declare class Container extends BaseClient {
|
|
|
169
204
|
* This container plus a temporary directory mounted at the given path
|
|
170
205
|
*/
|
|
171
206
|
withMountedTemp(path: string): Container;
|
|
207
|
+
/**
|
|
208
|
+
* Initialize this container from this DirectoryID
|
|
209
|
+
*/
|
|
210
|
+
withRootfs(id: DirectoryID): Container;
|
|
172
211
|
/**
|
|
173
212
|
* This container plus an env variable containing the given secret
|
|
174
213
|
*/
|
|
@@ -197,7 +236,7 @@ declare class Container extends BaseClient {
|
|
|
197
236
|
/**
|
|
198
237
|
* A directory
|
|
199
238
|
*/
|
|
200
|
-
declare class Directory extends BaseClient {
|
|
239
|
+
export declare class Directory extends BaseClient {
|
|
201
240
|
/**
|
|
202
241
|
* The difference between this directory and an another directory
|
|
203
242
|
*/
|
|
@@ -241,7 +280,7 @@ declare class Directory extends BaseClient {
|
|
|
241
280
|
/**
|
|
242
281
|
* This directory plus a new file written at the given path
|
|
243
282
|
*/
|
|
244
|
-
withNewFile(path: string, contents
|
|
283
|
+
withNewFile(path: string, contents: string): Directory;
|
|
245
284
|
/**
|
|
246
285
|
* This directory with the directory at the given path removed
|
|
247
286
|
*/
|
|
@@ -254,7 +293,7 @@ declare class Directory extends BaseClient {
|
|
|
254
293
|
/**
|
|
255
294
|
* EnvVariable is a simple key value object that represents an environment variable.
|
|
256
295
|
*/
|
|
257
|
-
declare class EnvVariable extends BaseClient {
|
|
296
|
+
export declare class EnvVariable extends BaseClient {
|
|
258
297
|
/**
|
|
259
298
|
* name is the environment variable name.
|
|
260
299
|
*/
|
|
@@ -267,7 +306,7 @@ declare class EnvVariable extends BaseClient {
|
|
|
267
306
|
/**
|
|
268
307
|
* A file
|
|
269
308
|
*/
|
|
270
|
-
declare class File extends BaseClient {
|
|
309
|
+
export declare class File extends BaseClient {
|
|
271
310
|
/**
|
|
272
311
|
* The contents of the file
|
|
273
312
|
*/
|
|
@@ -289,7 +328,7 @@ declare class File extends BaseClient {
|
|
|
289
328
|
/**
|
|
290
329
|
* A git ref (tag or branch)
|
|
291
330
|
*/
|
|
292
|
-
declare class GitRef extends BaseClient {
|
|
331
|
+
export declare class GitRef extends BaseClient {
|
|
293
332
|
/**
|
|
294
333
|
* The digest of the current value of this ref
|
|
295
334
|
*/
|
|
@@ -302,7 +341,7 @@ declare class GitRef extends BaseClient {
|
|
|
302
341
|
/**
|
|
303
342
|
* A git repository
|
|
304
343
|
*/
|
|
305
|
-
declare class GitRepository extends BaseClient {
|
|
344
|
+
export declare class GitRepository extends BaseClient {
|
|
306
345
|
/**
|
|
307
346
|
* Details on one branch
|
|
308
347
|
*/
|
|
@@ -327,7 +366,7 @@ declare class GitRepository extends BaseClient {
|
|
|
327
366
|
/**
|
|
328
367
|
* Information about the host execution environment
|
|
329
368
|
*/
|
|
330
|
-
declare class Host extends BaseClient {
|
|
369
|
+
export declare class Host extends BaseClient {
|
|
331
370
|
/**
|
|
332
371
|
* Access a directory on the host
|
|
333
372
|
*/
|
|
@@ -338,13 +377,15 @@ declare class Host extends BaseClient {
|
|
|
338
377
|
envVariable(name: string): HostVariable;
|
|
339
378
|
/**
|
|
340
379
|
* The current working directory on the host
|
|
380
|
+
*
|
|
381
|
+
* @deprecated Use directory with path set to '.' instead.
|
|
341
382
|
*/
|
|
342
383
|
workdir(exclude?: string[], include?: string[]): Directory;
|
|
343
384
|
}
|
|
344
385
|
/**
|
|
345
386
|
* An environment variable on the host environment
|
|
346
387
|
*/
|
|
347
|
-
declare class HostVariable extends BaseClient {
|
|
388
|
+
export declare class HostVariable extends BaseClient {
|
|
348
389
|
/**
|
|
349
390
|
* A secret referencing the value of this variable
|
|
350
391
|
*/
|
|
@@ -357,7 +398,7 @@ declare class HostVariable extends BaseClient {
|
|
|
357
398
|
/**
|
|
358
399
|
* A set of scripts and/or extensions
|
|
359
400
|
*/
|
|
360
|
-
declare class Project extends BaseClient {
|
|
401
|
+
export declare class Project extends BaseClient {
|
|
361
402
|
/**
|
|
362
403
|
* extensions in this project
|
|
363
404
|
*/
|
|
@@ -430,7 +471,7 @@ export default class Client extends BaseClient {
|
|
|
430
471
|
/**
|
|
431
472
|
* A reference to a secret value, which can be handled more safely than the value itself
|
|
432
473
|
*/
|
|
433
|
-
declare class Secret extends BaseClient {
|
|
474
|
+
export declare class Secret extends BaseClient {
|
|
434
475
|
/**
|
|
435
476
|
* The identifier for this secret
|
|
436
477
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.gen.d.ts","sourceRoot":"","sources":["../../api/client.gen.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAKH,
|
|
1
|
+
{"version":3,"file":"client.gen.d.ts","sourceRoot":"","sources":["../../api/client.gen.ts"],"names":[],"mappings":"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"}
|