@dagger.io/dagger 0.1.0 → 0.2.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.
@@ -2,6 +2,7 @@
2
2
  * This file was auto-generated by `cloak clientgen`.
3
3
  * Do not make direct changes to the file.
4
4
  */
5
+ import { GraphQLClient } from "graphql-request";
5
6
  /**
6
7
  * @hidden
7
8
  */
@@ -15,7 +16,7 @@ interface ClientConfig {
15
16
  }
16
17
  declare class BaseClient {
17
18
  protected _queryTree: QueryTree[];
18
- private client;
19
+ protected client: GraphQLClient;
19
20
  /**
20
21
  * @defaultValue `127.0.0.1:8080`
21
22
  */
@@ -28,10 +29,6 @@ declare class BaseClient {
28
29
  * @hidden
29
30
  */
30
31
  get queryTree(): QueryTree[];
31
- /**
32
- * @hidden
33
- */
34
- protected _compute<T>(): Promise<Record<string, T>>;
35
32
  }
36
33
  /**
37
34
  * A global cache volume identifier
@@ -65,11 +62,16 @@ export type Platform = string;
65
62
  * @hidden
66
63
  */
67
64
  export type SecretID = string;
65
+ /**
66
+ * A content-addressed socket identifier
67
+ * @hidden
68
+ */
69
+ export type SocketID = string;
68
70
  /**
69
71
  * A directory whose contents persist across runs
70
72
  */
71
73
  export declare class CacheVolume extends BaseClient {
72
- id(): Promise<Record<string, CacheID>>;
74
+ id(): Promise<CacheID>;
73
75
  }
74
76
  /**
75
77
  * An OCI-compatible container, also known as a docker container
@@ -78,11 +80,11 @@ export declare class Container extends BaseClient {
78
80
  /**
79
81
  * Initialize this container from a Dockerfile build
80
82
  */
81
- build(context: DirectoryID, dockerfile?: string): Container;
83
+ build(context: DirectoryID | Directory, dockerfile?: string): Container;
82
84
  /**
83
85
  * Default arguments for future commands
84
86
  */
85
- defaultArgs(): Promise<Record<string, string[]>>;
87
+ defaultArgs(): Promise<string[]>;
86
88
  /**
87
89
  * Retrieve a directory at the given path. Mounts are included.
88
90
  */
@@ -90,28 +92,30 @@ export declare class Container extends BaseClient {
90
92
  /**
91
93
  * Entrypoint to be prepended to the arguments of all commands
92
94
  */
93
- entrypoint(): Promise<Record<string, string[]>>;
95
+ entrypoint(): Promise<string[]>;
94
96
  /**
95
97
  * The value of the specified environment variable
96
98
  */
97
- envVariable(name: string): Promise<Record<string, string>>;
99
+ envVariable(name: string): Promise<string>;
98
100
  /**
99
101
  * A list of environment variables passed to commands
100
102
  */
101
- envVariables(): Promise<Record<string, EnvVariable[]>>;
103
+ envVariables(): Promise<EnvVariable[]>;
102
104
  /**
103
105
  * This container after executing the specified command inside it
106
+ *
107
+ * @deprecated Replaced by withExec.
104
108
  */
105
109
  exec(args?: string[], stdin?: string, redirectStdout?: string, redirectStderr?: string, experimentalPrivilegedNesting?: boolean): Container;
106
110
  /**
107
111
  * Exit code of the last executed command. Zero means success.
108
112
  * Null if no command has been executed.
109
113
  */
110
- exitCode(): Promise<Record<string, number>>;
114
+ exitCode(): Promise<number>;
111
115
  /**
112
116
  * Write the container as an OCI tarball to the destination file path on the host
113
117
  */
114
- export(path: string, platformVariants?: ContainerID[]): Promise<Record<string, boolean>>;
118
+ export(path: string, platformVariants?: ContainerID[] | Container[]): Promise<boolean>;
115
119
  /**
116
120
  * Retrieve a file at the given path. Mounts are included.
117
121
  */
@@ -122,38 +126,44 @@ export declare class Container extends BaseClient {
122
126
  from(address: string): Container;
123
127
  /**
124
128
  * This container's root filesystem. Mounts are not included.
129
+ *
130
+ * @deprecated Replaced by rootfs.
125
131
  */
126
132
  fs(): Directory;
127
133
  /**
128
134
  * A unique identifier for this container
129
135
  */
130
- id(): Promise<Record<string, ContainerID>>;
136
+ id(): Promise<ContainerID>;
131
137
  /**
132
138
  * List of paths where a directory is mounted
133
139
  */
134
- mounts(): Promise<Record<string, string[]>>;
140
+ mounts(): Promise<string[]>;
135
141
  /**
136
142
  * The platform this container executes and publishes as
137
143
  */
138
- platform(): Promise<Record<string, Platform>>;
144
+ platform(): Promise<Platform>;
139
145
  /**
140
146
  * Publish this container as a new image, returning a fully qualified ref
141
147
  */
142
- publish(address: string, platformVariants?: ContainerID[]): Promise<Record<string, string>>;
148
+ publish(address: string, platformVariants?: ContainerID[] | Container[]): Promise<string>;
149
+ /**
150
+ * This container's root filesystem. Mounts are not included.
151
+ */
152
+ rootfs(): Directory;
143
153
  /**
144
154
  * The error stream of the last executed command.
145
155
  * Null if no command has been executed.
146
156
  */
147
- stderr(): File;
157
+ stderr(): Promise<string>;
148
158
  /**
149
159
  * The output stream of the last executed command.
150
160
  * Null if no command has been executed.
151
161
  */
152
- stdout(): File;
162
+ stdout(): Promise<string>;
153
163
  /**
154
164
  * The user to be set for all commands
155
165
  */
156
- user(): Promise<Record<string, string>>;
166
+ user(): Promise<string>;
157
167
  /**
158
168
  * Configures default arguments for future commands
159
169
  */
@@ -166,34 +176,48 @@ export declare class Container extends BaseClient {
166
176
  * This container plus the given environment variable
167
177
  */
168
178
  withEnvVariable(name: string, value: string): Container;
179
+ /**
180
+ * This container after executing the specified command inside it
181
+ */
182
+ withExec(args: string[], stdin?: string, redirectStdout?: string, redirectStderr?: string, experimentalPrivilegedNesting?: boolean): Container;
169
183
  /**
170
184
  * Initialize this container from this DirectoryID
185
+ *
186
+ * @deprecated Replaced by withRootfs.
171
187
  */
172
- withFS(id: DirectoryID): Container;
188
+ withFS(id: DirectoryID | Directory): Container;
173
189
  /**
174
190
  * This container plus a cache volume mounted at the given path
175
191
  */
176
- withMountedCache(path: string, cache: CacheID, source?: DirectoryID): Container;
192
+ withMountedCache(path: string, cache: CacheID | CacheVolume, source?: DirectoryID | Directory): Container;
177
193
  /**
178
194
  * This container plus a directory mounted at the given path
179
195
  */
180
- withMountedDirectory(path: string, source: DirectoryID): Container;
196
+ withMountedDirectory(path: string, source: DirectoryID | Directory): Container;
181
197
  /**
182
198
  * This container plus a file mounted at the given path
183
199
  */
184
- withMountedFile(path: string, source: FileID): Container;
200
+ withMountedFile(path: string, source: FileID | File): Container;
185
201
  /**
186
202
  * This container plus a secret mounted into a file at the given path
187
203
  */
188
- withMountedSecret(path: string, source: SecretID): Container;
204
+ withMountedSecret(path: string, source: SecretID | Secret): Container;
189
205
  /**
190
206
  * This container plus a temporary directory mounted at the given path
191
207
  */
192
208
  withMountedTemp(path: string): Container;
209
+ /**
210
+ * Initialize this container from this DirectoryID
211
+ */
212
+ withRootfs(id: DirectoryID | Directory): Container;
193
213
  /**
194
214
  * This container plus an env variable containing the given secret
195
215
  */
196
- withSecretVariable(name: string, secret: SecretID): Container;
216
+ withSecretVariable(name: string, secret: SecretID | Secret): Container;
217
+ /**
218
+ * This container plus a socket forwarded to the given Unix socket path
219
+ */
220
+ withUnixSocket(path: string, source: SocketID): Container;
197
221
  /**
198
222
  * This container but with a different command user
199
223
  */
@@ -210,10 +234,14 @@ export declare class Container extends BaseClient {
210
234
  * This container after unmounting everything at the given path.
211
235
  */
212
236
  withoutMount(path: string): Container;
237
+ /**
238
+ * This container with a previously added Unix socket removed
239
+ */
240
+ withoutUnixSocket(path: string): Container;
213
241
  /**
214
242
  * The working directory for all commands
215
243
  */
216
- workdir(): Promise<Record<string, string>>;
244
+ workdir(): Promise<string>;
217
245
  }
218
246
  /**
219
247
  * A directory
@@ -222,19 +250,23 @@ export declare class Directory extends BaseClient {
222
250
  /**
223
251
  * The difference between this directory and an another directory
224
252
  */
225
- diff(other: DirectoryID): Directory;
253
+ diff(other: DirectoryID | Directory): Directory;
226
254
  /**
227
255
  * Retrieve a directory at the given path
228
256
  */
229
257
  directory(path: string): Directory;
258
+ /**
259
+ * Build a new Docker container from this directory
260
+ */
261
+ dockerBuild(dockerfile?: string, platform?: Platform): Container;
230
262
  /**
231
263
  * Return a list of files and directories at the given path
232
264
  */
233
- entries(path?: string): Promise<Record<string, string[]>>;
265
+ entries(path?: string): Promise<string[]>;
234
266
  /**
235
267
  * Write the contents of the directory to a path on the host
236
268
  */
237
- export(path: string): Promise<Record<string, boolean>>;
269
+ export(path: string): Promise<boolean>;
238
270
  /**
239
271
  * Retrieve a file at the given path
240
272
  */
@@ -242,7 +274,7 @@ export declare class Directory extends BaseClient {
242
274
  /**
243
275
  * The content-addressed identifier of the directory
244
276
  */
245
- id(): Promise<Record<string, DirectoryID>>;
277
+ id(): Promise<DirectoryID>;
246
278
  /**
247
279
  * load a project's metadata
248
280
  */
@@ -250,11 +282,11 @@ export declare class Directory extends BaseClient {
250
282
  /**
251
283
  * This directory plus a directory written at the given path
252
284
  */
253
- withDirectory(path: string, directory: DirectoryID, exclude?: string[], include?: string[]): Directory;
285
+ withDirectory(path: string, directory: DirectoryID | Directory, exclude?: string[], include?: string[]): Directory;
254
286
  /**
255
287
  * This directory plus the contents of the given file copied to the given path
256
288
  */
257
- withFile(path: string, source: FileID): Directory;
289
+ withFile(path: string, source: FileID | File): Directory;
258
290
  /**
259
291
  * This directory plus a new directory created at the given path
260
292
  */
@@ -262,7 +294,7 @@ export declare class Directory extends BaseClient {
262
294
  /**
263
295
  * This directory plus a new file written at the given path
264
296
  */
265
- withNewFile(path: string, contents?: string): Directory;
297
+ withNewFile(path: string, contents: string): Directory;
266
298
  /**
267
299
  * This directory with the directory at the given path removed
268
300
  */
@@ -279,11 +311,11 @@ export declare class EnvVariable extends BaseClient {
279
311
  /**
280
312
  * name is the environment variable name.
281
313
  */
282
- name(): Promise<Record<string, string>>;
314
+ name(): Promise<string>;
283
315
  /**
284
316
  * value is the environment variable value
285
317
  */
286
- value(): Promise<Record<string, string>>;
318
+ value(): Promise<string>;
287
319
  }
288
320
  /**
289
321
  * A file
@@ -292,20 +324,20 @@ export declare class File extends BaseClient {
292
324
  /**
293
325
  * The contents of the file
294
326
  */
295
- contents(): Promise<Record<string, string>>;
327
+ contents(): Promise<string>;
296
328
  /**
297
329
  * Write the file to a file path on the host
298
330
  */
299
- export(path: string): Promise<Record<string, boolean>>;
331
+ export(path: string): Promise<boolean>;
300
332
  /**
301
333
  * The content-addressed identifier of the file
302
334
  */
303
- id(): Promise<Record<string, FileID>>;
335
+ id(): Promise<FileID>;
304
336
  secret(): Secret;
305
337
  /**
306
338
  * The size of the file, in bytes
307
339
  */
308
- size(): Promise<Record<string, number>>;
340
+ size(): Promise<number>;
309
341
  }
310
342
  /**
311
343
  * A git ref (tag or branch)
@@ -314,11 +346,11 @@ export declare class GitRef extends BaseClient {
314
346
  /**
315
347
  * The digest of the current value of this ref
316
348
  */
317
- digest(): Promise<Record<string, string>>;
349
+ digest(): Promise<string>;
318
350
  /**
319
351
  * The filesystem tree at this ref
320
352
  */
321
- tree(): Directory;
353
+ tree(sshKnownHosts?: string, sshAuthSocket?: SocketID): Directory;
322
354
  }
323
355
  /**
324
356
  * A git repository
@@ -331,7 +363,7 @@ export declare class GitRepository extends BaseClient {
331
363
  /**
332
364
  * List of branches on the repository
333
365
  */
334
- branches(): Promise<Record<string, string[]>>;
366
+ branches(): Promise<string[]>;
335
367
  /**
336
368
  * Details on one commit
337
369
  */
@@ -343,7 +375,7 @@ export declare class GitRepository extends BaseClient {
343
375
  /**
344
376
  * List of tags on the repository
345
377
  */
346
- tags(): Promise<Record<string, string[]>>;
378
+ tags(): Promise<string[]>;
347
379
  }
348
380
  /**
349
381
  * Information about the host execution environment
@@ -354,11 +386,17 @@ export declare class Host extends BaseClient {
354
386
  */
355
387
  directory(path: string, exclude?: string[], include?: string[]): Directory;
356
388
  /**
357
- * Lookup the value of an environment variable. Null if the variable is not available.
389
+ * Access an environment variable on the host
358
390
  */
359
391
  envVariable(name: string): HostVariable;
392
+ /**
393
+ * Access a Unix socket on the host
394
+ */
395
+ unixSocket(path: string): Socket;
360
396
  /**
361
397
  * The current working directory on the host
398
+ *
399
+ * @deprecated Use directory with path set to '.' instead.
362
400
  */
363
401
  workdir(exclude?: string[], include?: string[]): Directory;
364
402
  }
@@ -373,7 +411,7 @@ export declare class HostVariable extends BaseClient {
373
411
  /**
374
412
  * The value of this variable
375
413
  */
376
- value(): Promise<Record<string, string>>;
414
+ value(): Promise<string>;
377
415
  }
378
416
  /**
379
417
  * A set of scripts and/or extensions
@@ -382,7 +420,7 @@ export declare class Project extends BaseClient {
382
420
  /**
383
421
  * extensions in this project
384
422
  */
385
- extensions(): Promise<Record<string, Project[]>>;
423
+ extensions(): Promise<Project[]>;
386
424
  /**
387
425
  * Code files generated by the SDKs in the project
388
426
  */
@@ -390,19 +428,19 @@ export declare class Project extends BaseClient {
390
428
  /**
391
429
  * install the project's schema
392
430
  */
393
- install(): Promise<Record<string, boolean>>;
431
+ install(): Promise<boolean>;
394
432
  /**
395
433
  * name of the project
396
434
  */
397
- name(): Promise<Record<string, string>>;
435
+ name(): Promise<string>;
398
436
  /**
399
437
  * schema provided by the project
400
438
  */
401
- schema(): Promise<Record<string, string>>;
439
+ schema(): Promise<string>;
402
440
  /**
403
441
  * sdk used to generate code for and/or execute this project
404
442
  */
405
- sdk(): Promise<Record<string, string>>;
443
+ sdk(): Promise<string>;
406
444
  }
407
445
  export default class Client extends BaseClient {
408
446
  /**
@@ -414,19 +452,19 @@ export default class Client extends BaseClient {
414
452
  * Null ID returns an empty container (scratch).
415
453
  * Optional platform argument initializes new containers to execute and publish as that platform. Platform defaults to that of the builder's host.
416
454
  */
417
- container(id?: ContainerID, platform?: Platform): Container;
455
+ container(id?: ContainerID | Container, platform?: Platform): Container;
418
456
  /**
419
457
  * The default platform of the builder.
420
458
  */
421
- defaultPlatform(): Promise<Record<string, Platform>>;
459
+ defaultPlatform(): Promise<Platform>;
422
460
  /**
423
461
  * Load a directory by ID. No argument produces an empty directory.
424
462
  */
425
- directory(id?: DirectoryID): Directory;
463
+ directory(id?: DirectoryID | Directory): Directory;
426
464
  /**
427
465
  * Load a file by ID
428
466
  */
429
- file(id: FileID): File;
467
+ file(id: FileID | File): File;
430
468
  /**
431
469
  * Query a git repository
432
470
  */
@@ -446,7 +484,11 @@ export default class Client extends BaseClient {
446
484
  /**
447
485
  * Load a secret from its ID
448
486
  */
449
- secret(id: SecretID): Secret;
487
+ secret(id: SecretID | Secret): Secret;
488
+ /**
489
+ * Load a socket by ID
490
+ */
491
+ socket(id?: SocketID): Socket;
450
492
  }
451
493
  /**
452
494
  * A reference to a secret value, which can be handled more safely than the value itself
@@ -455,11 +497,17 @@ export declare class Secret extends BaseClient {
455
497
  /**
456
498
  * The identifier for this secret
457
499
  */
458
- id(): Promise<Record<string, SecretID>>;
500
+ id(): Promise<SecretID>;
459
501
  /**
460
502
  * The value of this secret
461
503
  */
462
- plaintext(): Promise<Record<string, string>>;
504
+ plaintext(): Promise<string>;
505
+ }
506
+ export declare class Socket extends BaseClient {
507
+ /**
508
+ * The content-addressed identifier of the socket
509
+ */
510
+ id(): Promise<SocketID>;
463
511
  }
464
512
  export {};
465
513
  //# sourceMappingURL=client.gen.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"client.gen.d.ts","sourceRoot":"","sources":["../../api/client.gen.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"client.gen.d.ts","sourceRoot":"","sources":["../../api/client.gen.ts"],"names":[],"mappings":"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"}