@elaraai/e3-api-client 0.0.2-beta.46 → 0.0.2-beta.48
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/src/datasets.d.ts.map +1 -1
- package/dist/src/datasets.js +9 -13
- package/dist/src/datasets.js.map +1 -1
- package/dist/src/http.d.ts +7 -0
- package/dist/src/http.d.ts.map +1 -1
- package/dist/src/http.js +33 -0
- package/dist/src/http.js.map +1 -1
- package/dist/src/index.d.ts +2 -2
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +1 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/packages.d.ts +14 -2
- package/dist/src/packages.d.ts.map +1 -1
- package/dist/src/packages.js +12 -11
- package/dist/src/packages.js.map +1 -1
- package/dist/src/platform.d.ts +12 -12
- package/dist/src/types.d.ts +680 -1826
- package/dist/src/types.d.ts.map +1 -1
- package/dist/src/types.js +39 -663
- package/dist/src/types.js.map +1 -1
- package/dist/src/workspaces.d.ts +16 -3
- package/dist/src/workspaces.d.ts.map +1 -1
- package/dist/src/workspaces.js +47 -7
- package/dist/src/workspaces.js.map +1 -1
- package/package.json +1 -1
package/dist/src/types.d.ts
CHANGED
|
@@ -3,1384 +3,264 @@
|
|
|
3
3
|
* Licensed under BSL 1.1. See LICENSE for details.
|
|
4
4
|
*/
|
|
5
5
|
/**
|
|
6
|
-
* API types for e3-api-
|
|
6
|
+
* API types for e3-api-client.
|
|
7
7
|
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
8
|
+
* Re-exports all API wire types from @elaraai/e3-types (the single source of truth).
|
|
9
|
+
* Types with "Api" prefix in e3-types are re-exported here with shorter names
|
|
10
|
+
* since API consumers don't see the conflicting domain types.
|
|
10
11
|
*/
|
|
11
|
-
|
|
12
|
-
export
|
|
13
|
-
readonly workspace: StringType;
|
|
14
|
-
}>;
|
|
15
|
-
export declare const WorkspaceNotDeployedErrorType: StructType<{
|
|
16
|
-
readonly workspace: StringType;
|
|
17
|
-
}>;
|
|
18
|
-
export declare const WorkspaceExistsErrorType: StructType<{
|
|
19
|
-
readonly workspace: StringType;
|
|
20
|
-
}>;
|
|
21
|
-
export declare const LockHolderType: StructType<{
|
|
22
|
-
readonly pid: IntegerType;
|
|
23
|
-
readonly acquiredAt: StringType;
|
|
24
|
-
readonly bootId: OptionType<StringType>;
|
|
25
|
-
readonly command: OptionType<StringType>;
|
|
26
|
-
}>;
|
|
27
|
-
export declare const WorkspaceLockedErrorType: StructType<{
|
|
28
|
-
readonly workspace: StringType;
|
|
29
|
-
readonly holder: VariantType<{
|
|
30
|
-
readonly unknown: NullType;
|
|
31
|
-
readonly known: StructType<{
|
|
32
|
-
readonly pid: IntegerType;
|
|
33
|
-
readonly acquiredAt: StringType;
|
|
34
|
-
readonly bootId: OptionType<StringType>;
|
|
35
|
-
readonly command: OptionType<StringType>;
|
|
36
|
-
}>;
|
|
37
|
-
}>;
|
|
38
|
-
}>;
|
|
39
|
-
export declare const PackageNotFoundErrorType: StructType<{
|
|
40
|
-
readonly packageName: StringType;
|
|
41
|
-
readonly version: OptionType<StringType>;
|
|
42
|
-
}>;
|
|
43
|
-
export declare const PackageExistsErrorType: StructType<{
|
|
44
|
-
readonly packageName: StringType;
|
|
45
|
-
readonly version: StringType;
|
|
46
|
-
}>;
|
|
47
|
-
export declare const PackageInvalidErrorType: StructType<{
|
|
48
|
-
readonly reason: StringType;
|
|
49
|
-
}>;
|
|
50
|
-
export declare const DatasetNotFoundErrorType: StructType<{
|
|
51
|
-
readonly workspace: StringType;
|
|
52
|
-
readonly path: StringType;
|
|
53
|
-
}>;
|
|
54
|
-
export declare const TaskNotFoundErrorType: StructType<{
|
|
55
|
-
readonly task: StringType;
|
|
56
|
-
}>;
|
|
57
|
-
export declare const ExecutionNotFoundErrorType: StructType<{
|
|
58
|
-
readonly task: StringType;
|
|
59
|
-
}>;
|
|
60
|
-
export declare const ObjectNotFoundErrorType: StructType<{
|
|
61
|
-
readonly hash: StringType;
|
|
62
|
-
}>;
|
|
63
|
-
export declare const DataflowErrorType: StructType<{
|
|
64
|
-
readonly message: StringType;
|
|
65
|
-
}>;
|
|
66
|
-
export declare const PermissionDeniedErrorType: StructType<{
|
|
67
|
-
readonly path: StringType;
|
|
68
|
-
}>;
|
|
69
|
-
export declare const InternalErrorType: StructType<{
|
|
70
|
-
readonly message: StringType;
|
|
71
|
-
}>;
|
|
72
|
-
export declare const RepositoryNotFoundErrorType: StructType<{
|
|
73
|
-
readonly repo: StringType;
|
|
74
|
-
}>;
|
|
75
|
-
export declare const ErrorType: VariantType<{
|
|
76
|
-
readonly repository_not_found: StructType<{
|
|
77
|
-
readonly repo: StringType;
|
|
78
|
-
}>;
|
|
79
|
-
readonly workspace_not_found: StructType<{
|
|
80
|
-
readonly workspace: StringType;
|
|
81
|
-
}>;
|
|
82
|
-
readonly workspace_not_deployed: StructType<{
|
|
83
|
-
readonly workspace: StringType;
|
|
84
|
-
}>;
|
|
85
|
-
readonly workspace_exists: StructType<{
|
|
86
|
-
readonly workspace: StringType;
|
|
87
|
-
}>;
|
|
88
|
-
readonly workspace_locked: StructType<{
|
|
89
|
-
readonly workspace: StringType;
|
|
90
|
-
readonly holder: VariantType<{
|
|
91
|
-
readonly unknown: NullType;
|
|
92
|
-
readonly known: StructType<{
|
|
93
|
-
readonly pid: IntegerType;
|
|
94
|
-
readonly acquiredAt: StringType;
|
|
95
|
-
readonly bootId: OptionType<StringType>;
|
|
96
|
-
readonly command: OptionType<StringType>;
|
|
97
|
-
}>;
|
|
98
|
-
}>;
|
|
99
|
-
}>;
|
|
100
|
-
readonly package_not_found: StructType<{
|
|
101
|
-
readonly packageName: StringType;
|
|
102
|
-
readonly version: OptionType<StringType>;
|
|
103
|
-
}>;
|
|
104
|
-
readonly package_exists: StructType<{
|
|
105
|
-
readonly packageName: StringType;
|
|
106
|
-
readonly version: StringType;
|
|
107
|
-
}>;
|
|
108
|
-
readonly package_invalid: StructType<{
|
|
109
|
-
readonly reason: StringType;
|
|
110
|
-
}>;
|
|
111
|
-
readonly dataset_not_found: StructType<{
|
|
112
|
-
readonly workspace: StringType;
|
|
113
|
-
readonly path: StringType;
|
|
114
|
-
}>;
|
|
115
|
-
readonly task_not_found: StructType<{
|
|
116
|
-
readonly task: StringType;
|
|
117
|
-
}>;
|
|
118
|
-
readonly execution_not_found: StructType<{
|
|
119
|
-
readonly task: StringType;
|
|
120
|
-
}>;
|
|
121
|
-
readonly object_not_found: StructType<{
|
|
122
|
-
readonly hash: StringType;
|
|
123
|
-
}>;
|
|
124
|
-
readonly dataflow_error: StructType<{
|
|
125
|
-
readonly message: StringType;
|
|
126
|
-
}>;
|
|
127
|
-
readonly dataflow_aborted: NullType;
|
|
128
|
-
readonly permission_denied: StructType<{
|
|
129
|
-
readonly path: StringType;
|
|
130
|
-
}>;
|
|
131
|
-
readonly internal: StructType<{
|
|
132
|
-
readonly message: StringType;
|
|
133
|
-
}>;
|
|
134
|
-
}>;
|
|
135
|
-
export declare const ResponseType: <T extends EastType>(successType: T) => VariantType<{
|
|
136
|
-
readonly success: T;
|
|
137
|
-
readonly error: VariantType<{
|
|
138
|
-
readonly repository_not_found: StructType<{
|
|
139
|
-
readonly repo: StringType;
|
|
140
|
-
}>;
|
|
141
|
-
readonly workspace_not_found: StructType<{
|
|
142
|
-
readonly workspace: StringType;
|
|
143
|
-
}>;
|
|
144
|
-
readonly workspace_not_deployed: StructType<{
|
|
145
|
-
readonly workspace: StringType;
|
|
146
|
-
}>;
|
|
147
|
-
readonly workspace_exists: StructType<{
|
|
148
|
-
readonly workspace: StringType;
|
|
149
|
-
}>;
|
|
150
|
-
readonly workspace_locked: StructType<{
|
|
151
|
-
readonly workspace: StringType;
|
|
152
|
-
readonly holder: VariantType<{
|
|
153
|
-
readonly unknown: NullType;
|
|
154
|
-
readonly known: StructType<{
|
|
155
|
-
readonly pid: IntegerType;
|
|
156
|
-
readonly acquiredAt: StringType;
|
|
157
|
-
readonly bootId: OptionType<StringType>;
|
|
158
|
-
readonly command: OptionType<StringType>;
|
|
159
|
-
}>;
|
|
160
|
-
}>;
|
|
161
|
-
}>;
|
|
162
|
-
readonly package_not_found: StructType<{
|
|
163
|
-
readonly packageName: StringType;
|
|
164
|
-
readonly version: OptionType<StringType>;
|
|
165
|
-
}>;
|
|
166
|
-
readonly package_exists: StructType<{
|
|
167
|
-
readonly packageName: StringType;
|
|
168
|
-
readonly version: StringType;
|
|
169
|
-
}>;
|
|
170
|
-
readonly package_invalid: StructType<{
|
|
171
|
-
readonly reason: StringType;
|
|
172
|
-
}>;
|
|
173
|
-
readonly dataset_not_found: StructType<{
|
|
174
|
-
readonly workspace: StringType;
|
|
175
|
-
readonly path: StringType;
|
|
176
|
-
}>;
|
|
177
|
-
readonly task_not_found: StructType<{
|
|
178
|
-
readonly task: StringType;
|
|
179
|
-
}>;
|
|
180
|
-
readonly execution_not_found: StructType<{
|
|
181
|
-
readonly task: StringType;
|
|
182
|
-
}>;
|
|
183
|
-
readonly object_not_found: StructType<{
|
|
184
|
-
readonly hash: StringType;
|
|
185
|
-
}>;
|
|
186
|
-
readonly dataflow_error: StructType<{
|
|
187
|
-
readonly message: StringType;
|
|
188
|
-
}>;
|
|
189
|
-
readonly dataflow_aborted: NullType;
|
|
190
|
-
readonly permission_denied: StructType<{
|
|
191
|
-
readonly path: StringType;
|
|
192
|
-
}>;
|
|
193
|
-
readonly internal: StructType<{
|
|
194
|
-
readonly message: StringType;
|
|
195
|
-
}>;
|
|
196
|
-
}>;
|
|
197
|
-
}>;
|
|
198
|
-
/**
|
|
199
|
-
* Repository status information.
|
|
200
|
-
*
|
|
201
|
-
* @property path - Absolute path to the e3 repository directory
|
|
202
|
-
* @property objectCount - Number of content-addressed objects stored
|
|
203
|
-
* @property packageCount - Number of imported packages
|
|
204
|
-
* @property workspaceCount - Number of workspaces
|
|
205
|
-
*/
|
|
206
|
-
export declare const RepositoryStatusType: StructType<{
|
|
207
|
-
readonly path: StringType;
|
|
208
|
-
readonly objectCount: IntegerType;
|
|
209
|
-
readonly packageCount: IntegerType;
|
|
210
|
-
readonly workspaceCount: IntegerType;
|
|
211
|
-
}>;
|
|
212
|
-
/**
|
|
213
|
-
* Garbage collection request options.
|
|
214
|
-
*
|
|
215
|
-
* @property dryRun - If true, report what would be deleted without deleting
|
|
216
|
-
* @property minAge - Minimum age in milliseconds for objects to be considered for deletion
|
|
217
|
-
*/
|
|
218
|
-
export declare const GcRequestType: StructType<{
|
|
219
|
-
readonly dryRun: BooleanType;
|
|
220
|
-
readonly minAge: OptionType<IntegerType>;
|
|
221
|
-
}>;
|
|
222
|
-
/**
|
|
223
|
-
* Garbage collection result.
|
|
224
|
-
*
|
|
225
|
-
* @property deletedObjects - Number of unreferenced objects deleted
|
|
226
|
-
* @property deletedPartials - Number of incomplete uploads deleted
|
|
227
|
-
* @property retainedObjects - Number of objects still referenced
|
|
228
|
-
* @property skippedYoung - Number of objects skipped due to minAge
|
|
229
|
-
* @property bytesFreed - Total bytes freed by deletion
|
|
230
|
-
*/
|
|
231
|
-
export declare const GcResultType: StructType<{
|
|
232
|
-
readonly deletedObjects: IntegerType;
|
|
233
|
-
readonly deletedPartials: IntegerType;
|
|
234
|
-
readonly retainedObjects: IntegerType;
|
|
235
|
-
readonly skippedYoung: IntegerType;
|
|
236
|
-
readonly bytesFreed: IntegerType;
|
|
237
|
-
}>;
|
|
238
|
-
/**
|
|
239
|
-
* Status of an async operation.
|
|
240
|
-
*
|
|
241
|
-
* - `running`: Operation is in progress
|
|
242
|
-
* - `succeeded`: Operation completed successfully
|
|
243
|
-
* - `failed`: Operation failed with an error
|
|
244
|
-
*/
|
|
245
|
-
export declare const AsyncOperationStatusType: VariantType<{
|
|
246
|
-
readonly running: NullType;
|
|
247
|
-
readonly succeeded: NullType;
|
|
248
|
-
readonly failed: NullType;
|
|
249
|
-
}>;
|
|
250
|
-
/**
|
|
251
|
-
* Result of starting an async GC operation.
|
|
252
|
-
*
|
|
253
|
-
* @property executionId - Unique identifier for this GC execution (UUID locally, Step Function ARN in cloud)
|
|
254
|
-
*/
|
|
255
|
-
export declare const GcStartResultType: StructType<{
|
|
256
|
-
readonly executionId: StringType;
|
|
257
|
-
}>;
|
|
258
|
-
/**
|
|
259
|
-
* Status of an async GC operation.
|
|
260
|
-
*
|
|
261
|
-
* @property status - Current execution status
|
|
262
|
-
* @property stats - GC statistics (available when succeeded)
|
|
263
|
-
* @property error - Error message (available when failed)
|
|
264
|
-
*/
|
|
265
|
-
export declare const GcStatusResultType: StructType<{
|
|
266
|
-
readonly status: VariantType<{
|
|
267
|
-
readonly running: NullType;
|
|
268
|
-
readonly succeeded: NullType;
|
|
269
|
-
readonly failed: NullType;
|
|
270
|
-
}>;
|
|
271
|
-
readonly stats: OptionType<StructType<{
|
|
272
|
-
readonly deletedObjects: IntegerType;
|
|
273
|
-
readonly deletedPartials: IntegerType;
|
|
274
|
-
readonly retainedObjects: IntegerType;
|
|
275
|
-
readonly skippedYoung: IntegerType;
|
|
276
|
-
readonly bytesFreed: IntegerType;
|
|
277
|
-
}>>;
|
|
278
|
-
readonly error: OptionType<StringType>;
|
|
279
|
-
}>;
|
|
280
|
-
/**
|
|
281
|
-
* Package list item (summary info).
|
|
282
|
-
*
|
|
283
|
-
* @property name - Package name
|
|
284
|
-
* @property version - Semantic version string
|
|
285
|
-
*/
|
|
286
|
-
export declare const PackageListItemType: StructType<{
|
|
287
|
-
readonly name: StringType;
|
|
288
|
-
readonly version: StringType;
|
|
289
|
-
}>;
|
|
290
|
-
/**
|
|
291
|
-
* Result of importing a package.
|
|
292
|
-
*
|
|
293
|
-
* @property name - Imported package name
|
|
294
|
-
* @property version - Imported package version
|
|
295
|
-
* @property packageHash - SHA256 hash of the package content
|
|
296
|
-
* @property objectCount - Number of objects added to the repository
|
|
297
|
-
*/
|
|
298
|
-
export declare const PackageImportResultType: StructType<{
|
|
299
|
-
readonly name: StringType;
|
|
300
|
-
readonly version: StringType;
|
|
301
|
-
readonly packageHash: StringType;
|
|
302
|
-
readonly objectCount: IntegerType;
|
|
303
|
-
}>;
|
|
304
|
-
/**
|
|
305
|
-
* Basic package info.
|
|
306
|
-
*
|
|
307
|
-
* @property name - Package name
|
|
308
|
-
* @property version - Semantic version string
|
|
309
|
-
* @property hash - SHA256 content hash
|
|
310
|
-
*/
|
|
311
|
-
export declare const PackageInfoType: StructType<{
|
|
312
|
-
readonly name: StringType;
|
|
313
|
-
readonly version: StringType;
|
|
314
|
-
readonly hash: StringType;
|
|
315
|
-
}>;
|
|
316
|
-
/**
|
|
317
|
-
* Detailed package information including structure.
|
|
318
|
-
*
|
|
319
|
-
* @property name - Package name
|
|
320
|
-
* @property version - Semantic version string
|
|
321
|
-
* @property hash - SHA256 content hash
|
|
322
|
-
* @property tasks - List of task names defined in the package
|
|
323
|
-
* @property dataStructure - East structure type describing the package's data schema
|
|
324
|
-
*/
|
|
325
|
-
export declare const PackageDetailsType: StructType<{
|
|
326
|
-
readonly name: StringType;
|
|
327
|
-
readonly version: StringType;
|
|
328
|
-
readonly hash: StringType;
|
|
329
|
-
readonly tasks: ArrayType<StringType>;
|
|
330
|
-
readonly dataStructure: import("@elaraai/east").RecursiveType<VariantType<{
|
|
331
|
-
readonly value: StructType<{
|
|
332
|
-
readonly type: import("@elaraai/east").RecursiveType<VariantType<{
|
|
333
|
-
readonly Never: import("@elaraai/east").NullType;
|
|
334
|
-
readonly Null: import("@elaraai/east").NullType;
|
|
335
|
-
readonly Boolean: import("@elaraai/east").NullType;
|
|
336
|
-
readonly Integer: import("@elaraai/east").NullType;
|
|
337
|
-
readonly Float: import("@elaraai/east").NullType;
|
|
338
|
-
readonly String: import("@elaraai/east").NullType;
|
|
339
|
-
readonly DateTime: import("@elaraai/east").NullType;
|
|
340
|
-
readonly Blob: import("@elaraai/east").NullType;
|
|
341
|
-
readonly Ref: import("@elaraai/east").RecursiveTypeMarker;
|
|
342
|
-
readonly Array: import("@elaraai/east").RecursiveTypeMarker;
|
|
343
|
-
readonly Set: import("@elaraai/east").RecursiveTypeMarker;
|
|
344
|
-
readonly Dict: StructType<{
|
|
345
|
-
readonly key: import("@elaraai/east").RecursiveTypeMarker;
|
|
346
|
-
readonly value: import("@elaraai/east").RecursiveTypeMarker;
|
|
347
|
-
}>;
|
|
348
|
-
readonly Struct: ArrayType<StructType<{
|
|
349
|
-
readonly name: StringType;
|
|
350
|
-
readonly type: import("@elaraai/east").RecursiveTypeMarker;
|
|
351
|
-
}>>;
|
|
352
|
-
readonly Variant: ArrayType<StructType<{
|
|
353
|
-
readonly name: StringType;
|
|
354
|
-
readonly type: import("@elaraai/east").RecursiveTypeMarker;
|
|
355
|
-
}>>;
|
|
356
|
-
readonly Recursive: import("@elaraai/east").IntegerType;
|
|
357
|
-
readonly Function: StructType<{
|
|
358
|
-
readonly inputs: ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
|
|
359
|
-
readonly output: import("@elaraai/east").RecursiveTypeMarker;
|
|
360
|
-
}>;
|
|
361
|
-
readonly AsyncFunction: StructType<{
|
|
362
|
-
readonly inputs: ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
|
|
363
|
-
readonly output: import("@elaraai/east").RecursiveTypeMarker;
|
|
364
|
-
}>;
|
|
365
|
-
readonly Vector: import("@elaraai/east").RecursiveTypeMarker;
|
|
366
|
-
readonly Matrix: import("@elaraai/east").RecursiveTypeMarker;
|
|
367
|
-
}>>;
|
|
368
|
-
readonly writable: BooleanType;
|
|
369
|
-
}>;
|
|
370
|
-
readonly struct: import("@elaraai/east").DictType<StringType, import("@elaraai/east").RecursiveTypeMarker>;
|
|
371
|
-
}>>;
|
|
372
|
-
}>;
|
|
373
|
-
/**
|
|
374
|
-
* Request to create a new workspace.
|
|
375
|
-
*
|
|
376
|
-
* @property name - Unique workspace name
|
|
377
|
-
*/
|
|
378
|
-
export declare const WorkspaceCreateRequestType: StructType<{
|
|
379
|
-
readonly name: StringType;
|
|
380
|
-
}>;
|
|
381
|
-
/**
|
|
382
|
-
* Workspace summary information.
|
|
383
|
-
*
|
|
384
|
-
* @property name - Workspace name
|
|
385
|
-
* @property deployed - Whether a package is deployed to this workspace
|
|
386
|
-
* @property packageName - Name of deployed package (if deployed)
|
|
387
|
-
* @property packageVersion - Version of deployed package (if deployed)
|
|
388
|
-
*/
|
|
389
|
-
export declare const WorkspaceInfoType: StructType<{
|
|
390
|
-
readonly name: StringType;
|
|
391
|
-
readonly deployed: BooleanType;
|
|
392
|
-
readonly packageName: OptionType<StringType>;
|
|
393
|
-
readonly packageVersion: OptionType<StringType>;
|
|
394
|
-
}>;
|
|
395
|
-
/**
|
|
396
|
-
* Request to deploy a package to a workspace.
|
|
397
|
-
*
|
|
398
|
-
* @property packageRef - Package reference in format "name" or "name@version"
|
|
399
|
-
*/
|
|
400
|
-
export declare const WorkspaceDeployRequestType: StructType<{
|
|
401
|
-
readonly packageRef: StringType;
|
|
402
|
-
}>;
|
|
403
|
-
/**
|
|
404
|
-
* Dataset status variant.
|
|
405
|
-
*
|
|
406
|
-
* - `unset`: No value assigned to this dataset
|
|
407
|
-
* - `stale`: Value exists but is outdated (upstream changed)
|
|
408
|
-
* - `up-to-date`: Value is current
|
|
409
|
-
*/
|
|
410
|
-
export declare const DatasetStatusType: VariantType<{
|
|
411
|
-
readonly unset: NullType;
|
|
412
|
-
readonly stale: NullType;
|
|
413
|
-
readonly 'up-to-date': NullType;
|
|
414
|
-
}>;
|
|
415
|
-
/** Task completed successfully. @property cached - True if result was from cache */
|
|
416
|
-
export declare const TaskStatusUpToDateType: StructType<{
|
|
417
|
-
readonly cached: BooleanType;
|
|
418
|
-
}>;
|
|
419
|
-
/** Task waiting on dependencies. @property reason - Human-readable wait reason */
|
|
420
|
-
export declare const TaskStatusWaitingType: StructType<{
|
|
421
|
-
readonly reason: StringType;
|
|
422
|
-
}>;
|
|
423
|
-
/** Task currently executing. */
|
|
424
|
-
export declare const TaskStatusInProgressType: StructType<{
|
|
425
|
-
/** Process ID of the running task */
|
|
426
|
-
readonly pid: OptionType<IntegerType>;
|
|
427
|
-
/** ISO timestamp when execution started */
|
|
428
|
-
readonly startedAt: OptionType<StringType>;
|
|
429
|
-
}>;
|
|
430
|
-
/** Task exited with non-zero code. */
|
|
431
|
-
export declare const TaskStatusFailedType: StructType<{
|
|
432
|
-
/** Process exit code */
|
|
433
|
-
readonly exitCode: IntegerType;
|
|
434
|
-
/** ISO timestamp when task completed */
|
|
435
|
-
readonly completedAt: OptionType<StringType>;
|
|
436
|
-
}>;
|
|
437
|
-
/** Task encountered an internal error. */
|
|
438
|
-
export declare const TaskStatusErrorType: StructType<{
|
|
439
|
-
/** Error message */
|
|
440
|
-
readonly message: StringType;
|
|
441
|
-
/** ISO timestamp when error occurred */
|
|
442
|
-
readonly completedAt: OptionType<StringType>;
|
|
443
|
-
}>;
|
|
444
|
-
/** Task was running but process is no longer alive. */
|
|
445
|
-
export declare const TaskStatusStaleRunningType: StructType<{
|
|
446
|
-
/** Last known process ID */
|
|
447
|
-
readonly pid: OptionType<IntegerType>;
|
|
448
|
-
/** ISO timestamp when execution started */
|
|
449
|
-
readonly startedAt: OptionType<StringType>;
|
|
450
|
-
}>;
|
|
451
|
-
/**
|
|
452
|
-
* Task execution status variant.
|
|
453
|
-
*
|
|
454
|
-
* - `up-to-date`: Task completed successfully (cached indicates if from cache)
|
|
455
|
-
* - `ready`: Task is ready to run (all inputs available)
|
|
456
|
-
* - `waiting`: Task waiting on upstream dependencies
|
|
457
|
-
* - `in-progress`: Task currently executing
|
|
458
|
-
* - `failed`: Task exited with non-zero exit code
|
|
459
|
-
* - `error`: Internal error during task execution
|
|
460
|
-
* - `stale-running`: Task was marked running but process died
|
|
461
|
-
*/
|
|
462
|
-
export declare const TaskStatusType: VariantType<{
|
|
463
|
-
readonly 'up-to-date': StructType<{
|
|
464
|
-
readonly cached: BooleanType;
|
|
465
|
-
}>;
|
|
466
|
-
readonly ready: NullType;
|
|
467
|
-
readonly waiting: StructType<{
|
|
468
|
-
readonly reason: StringType;
|
|
469
|
-
}>;
|
|
470
|
-
readonly 'in-progress': StructType<{
|
|
471
|
-
/** Process ID of the running task */
|
|
472
|
-
readonly pid: OptionType<IntegerType>;
|
|
473
|
-
/** ISO timestamp when execution started */
|
|
474
|
-
readonly startedAt: OptionType<StringType>;
|
|
475
|
-
}>;
|
|
476
|
-
readonly failed: StructType<{
|
|
477
|
-
/** Process exit code */
|
|
478
|
-
readonly exitCode: IntegerType;
|
|
479
|
-
/** ISO timestamp when task completed */
|
|
480
|
-
readonly completedAt: OptionType<StringType>;
|
|
481
|
-
}>;
|
|
482
|
-
readonly error: StructType<{
|
|
483
|
-
/** Error message */
|
|
484
|
-
readonly message: StringType;
|
|
485
|
-
/** ISO timestamp when error occurred */
|
|
486
|
-
readonly completedAt: OptionType<StringType>;
|
|
487
|
-
}>;
|
|
488
|
-
readonly 'stale-running': StructType<{
|
|
489
|
-
/** Last known process ID */
|
|
490
|
-
readonly pid: OptionType<IntegerType>;
|
|
491
|
-
/** ISO timestamp when execution started */
|
|
492
|
-
readonly startedAt: OptionType<StringType>;
|
|
493
|
-
}>;
|
|
494
|
-
}>;
|
|
495
|
-
/**
|
|
496
|
-
* Status information for a single dataset.
|
|
497
|
-
*
|
|
498
|
-
* @property path - Dataset path (e.g., ".inputs.config" or ".tasks.foo.output")
|
|
499
|
-
* @property status - Current status (unset, stale, or up-to-date)
|
|
500
|
-
* @property hash - SHA256 hash of current value (if set)
|
|
501
|
-
* @property isTaskOutput - True if this dataset is produced by a task
|
|
502
|
-
* @property producedBy - Name of task that produces this dataset (if isTaskOutput)
|
|
503
|
-
*/
|
|
504
|
-
export declare const DatasetStatusInfoType: StructType<{
|
|
505
|
-
readonly path: StringType;
|
|
506
|
-
readonly status: VariantType<{
|
|
507
|
-
readonly unset: NullType;
|
|
508
|
-
readonly stale: NullType;
|
|
509
|
-
readonly 'up-to-date': NullType;
|
|
510
|
-
}>;
|
|
511
|
-
readonly hash: OptionType<StringType>;
|
|
512
|
-
readonly isTaskOutput: BooleanType;
|
|
513
|
-
readonly producedBy: OptionType<StringType>;
|
|
514
|
-
}>;
|
|
515
|
-
/**
|
|
516
|
-
* Status information for a single task.
|
|
517
|
-
*
|
|
518
|
-
* @property name - Task name
|
|
519
|
-
* @property hash - Task definition hash (changes when task code changes)
|
|
520
|
-
* @property status - Current execution status
|
|
521
|
-
* @property inputs - Dataset paths this task reads from
|
|
522
|
-
* @property output - Dataset path this task writes to
|
|
523
|
-
* @property dependsOn - Names of tasks that must complete before this one
|
|
524
|
-
*/
|
|
525
|
-
export declare const TaskStatusInfoType: StructType<{
|
|
526
|
-
readonly name: StringType;
|
|
527
|
-
readonly hash: StringType;
|
|
528
|
-
readonly status: VariantType<{
|
|
529
|
-
readonly 'up-to-date': StructType<{
|
|
530
|
-
readonly cached: BooleanType;
|
|
531
|
-
}>;
|
|
532
|
-
readonly ready: NullType;
|
|
533
|
-
readonly waiting: StructType<{
|
|
534
|
-
readonly reason: StringType;
|
|
535
|
-
}>;
|
|
536
|
-
readonly 'in-progress': StructType<{
|
|
537
|
-
/** Process ID of the running task */
|
|
538
|
-
readonly pid: OptionType<IntegerType>;
|
|
539
|
-
/** ISO timestamp when execution started */
|
|
540
|
-
readonly startedAt: OptionType<StringType>;
|
|
541
|
-
}>;
|
|
542
|
-
readonly failed: StructType<{
|
|
543
|
-
/** Process exit code */
|
|
544
|
-
readonly exitCode: IntegerType;
|
|
545
|
-
/** ISO timestamp when task completed */
|
|
546
|
-
readonly completedAt: OptionType<StringType>;
|
|
547
|
-
}>;
|
|
548
|
-
readonly error: StructType<{
|
|
549
|
-
/** Error message */
|
|
550
|
-
readonly message: StringType;
|
|
551
|
-
/** ISO timestamp when error occurred */
|
|
552
|
-
readonly completedAt: OptionType<StringType>;
|
|
553
|
-
}>;
|
|
554
|
-
readonly 'stale-running': StructType<{
|
|
555
|
-
/** Last known process ID */
|
|
556
|
-
readonly pid: OptionType<IntegerType>;
|
|
557
|
-
/** ISO timestamp when execution started */
|
|
558
|
-
readonly startedAt: OptionType<StringType>;
|
|
559
|
-
}>;
|
|
560
|
-
}>;
|
|
561
|
-
readonly inputs: ArrayType<StringType>;
|
|
562
|
-
readonly output: StringType;
|
|
563
|
-
readonly dependsOn: ArrayType<StringType>;
|
|
564
|
-
}>;
|
|
565
|
-
/**
|
|
566
|
-
* Summary counts for workspace status.
|
|
567
|
-
*/
|
|
568
|
-
export declare const WorkspaceStatusSummaryType: StructType<{
|
|
569
|
-
/** Dataset status counts */
|
|
570
|
-
readonly datasets: StructType<{
|
|
571
|
-
readonly total: IntegerType;
|
|
572
|
-
readonly unset: IntegerType;
|
|
573
|
-
readonly stale: IntegerType;
|
|
574
|
-
readonly upToDate: IntegerType;
|
|
575
|
-
}>;
|
|
576
|
-
/** Task status counts */
|
|
577
|
-
readonly tasks: StructType<{
|
|
578
|
-
readonly total: IntegerType;
|
|
579
|
-
readonly upToDate: IntegerType;
|
|
580
|
-
readonly ready: IntegerType;
|
|
581
|
-
readonly waiting: IntegerType;
|
|
582
|
-
readonly inProgress: IntegerType;
|
|
583
|
-
readonly failed: IntegerType;
|
|
584
|
-
readonly error: IntegerType;
|
|
585
|
-
readonly staleRunning: IntegerType;
|
|
586
|
-
}>;
|
|
587
|
-
}>;
|
|
588
|
-
/**
|
|
589
|
-
* Complete workspace status including all datasets, tasks, and summary.
|
|
590
|
-
*
|
|
591
|
-
* @property workspace - Workspace name
|
|
592
|
-
* @property lock - Information about current lock holder (if locked)
|
|
593
|
-
* @property datasets - Status of all datasets in the workspace
|
|
594
|
-
* @property tasks - Status of all tasks in the workspace
|
|
595
|
-
* @property summary - Aggregated counts by status
|
|
596
|
-
*/
|
|
597
|
-
export declare const WorkspaceStatusResultType: StructType<{
|
|
598
|
-
readonly workspace: StringType;
|
|
599
|
-
readonly lock: OptionType<StructType<{
|
|
600
|
-
readonly pid: IntegerType;
|
|
601
|
-
readonly acquiredAt: StringType;
|
|
602
|
-
readonly bootId: OptionType<StringType>;
|
|
603
|
-
readonly command: OptionType<StringType>;
|
|
604
|
-
}>>;
|
|
605
|
-
readonly datasets: ArrayType<StructType<{
|
|
606
|
-
readonly path: StringType;
|
|
607
|
-
readonly status: VariantType<{
|
|
608
|
-
readonly unset: NullType;
|
|
609
|
-
readonly stale: NullType;
|
|
610
|
-
readonly 'up-to-date': NullType;
|
|
611
|
-
}>;
|
|
612
|
-
readonly hash: OptionType<StringType>;
|
|
613
|
-
readonly isTaskOutput: BooleanType;
|
|
614
|
-
readonly producedBy: OptionType<StringType>;
|
|
615
|
-
}>>;
|
|
616
|
-
readonly tasks: ArrayType<StructType<{
|
|
617
|
-
readonly name: StringType;
|
|
618
|
-
readonly hash: StringType;
|
|
619
|
-
readonly status: VariantType<{
|
|
620
|
-
readonly 'up-to-date': StructType<{
|
|
621
|
-
readonly cached: BooleanType;
|
|
622
|
-
}>;
|
|
623
|
-
readonly ready: NullType;
|
|
624
|
-
readonly waiting: StructType<{
|
|
625
|
-
readonly reason: StringType;
|
|
626
|
-
}>;
|
|
627
|
-
readonly 'in-progress': StructType<{
|
|
628
|
-
/** Process ID of the running task */
|
|
629
|
-
readonly pid: OptionType<IntegerType>;
|
|
630
|
-
/** ISO timestamp when execution started */
|
|
631
|
-
readonly startedAt: OptionType<StringType>;
|
|
632
|
-
}>;
|
|
633
|
-
readonly failed: StructType<{
|
|
634
|
-
/** Process exit code */
|
|
635
|
-
readonly exitCode: IntegerType;
|
|
636
|
-
/** ISO timestamp when task completed */
|
|
637
|
-
readonly completedAt: OptionType<StringType>;
|
|
638
|
-
}>;
|
|
639
|
-
readonly error: StructType<{
|
|
640
|
-
/** Error message */
|
|
641
|
-
readonly message: StringType;
|
|
642
|
-
/** ISO timestamp when error occurred */
|
|
643
|
-
readonly completedAt: OptionType<StringType>;
|
|
644
|
-
}>;
|
|
645
|
-
readonly 'stale-running': StructType<{
|
|
646
|
-
/** Last known process ID */
|
|
647
|
-
readonly pid: OptionType<IntegerType>;
|
|
648
|
-
/** ISO timestamp when execution started */
|
|
649
|
-
readonly startedAt: OptionType<StringType>;
|
|
650
|
-
}>;
|
|
651
|
-
}>;
|
|
652
|
-
readonly inputs: ArrayType<StringType>;
|
|
653
|
-
readonly output: StringType;
|
|
654
|
-
readonly dependsOn: ArrayType<StringType>;
|
|
655
|
-
}>>;
|
|
656
|
-
readonly summary: StructType<{
|
|
657
|
-
/** Dataset status counts */
|
|
658
|
-
readonly datasets: StructType<{
|
|
659
|
-
readonly total: IntegerType;
|
|
660
|
-
readonly unset: IntegerType;
|
|
661
|
-
readonly stale: IntegerType;
|
|
662
|
-
readonly upToDate: IntegerType;
|
|
663
|
-
}>;
|
|
664
|
-
/** Task status counts */
|
|
665
|
-
readonly tasks: StructType<{
|
|
666
|
-
readonly total: IntegerType;
|
|
667
|
-
readonly upToDate: IntegerType;
|
|
668
|
-
readonly ready: IntegerType;
|
|
669
|
-
readonly waiting: IntegerType;
|
|
670
|
-
readonly inProgress: IntegerType;
|
|
671
|
-
readonly failed: IntegerType;
|
|
672
|
-
readonly error: IntegerType;
|
|
673
|
-
readonly staleRunning: IntegerType;
|
|
674
|
-
}>;
|
|
675
|
-
}>;
|
|
676
|
-
}>;
|
|
677
|
-
/**
|
|
678
|
-
* Task list item (summary info).
|
|
679
|
-
*
|
|
680
|
-
* @property name - Task name
|
|
681
|
-
* @property hash - Task definition hash
|
|
682
|
-
*/
|
|
683
|
-
export declare const TaskListItemType: StructType<{
|
|
684
|
-
readonly name: StringType;
|
|
685
|
-
readonly hash: StringType;
|
|
686
|
-
}>;
|
|
687
|
-
/**
|
|
688
|
-
* Detailed task information.
|
|
689
|
-
*
|
|
690
|
-
* @property name - Task name
|
|
691
|
-
* @property hash - Task definition hash
|
|
692
|
-
* @property commandIr - East IR for the task's command
|
|
693
|
-
* @property inputs - Tree paths for task inputs
|
|
694
|
-
* @property output - Tree path for task output
|
|
695
|
-
*/
|
|
696
|
-
export declare const TaskDetailsType: StructType<{
|
|
697
|
-
readonly name: StringType;
|
|
698
|
-
readonly hash: StringType;
|
|
699
|
-
readonly commandIr: StringType;
|
|
700
|
-
readonly inputs: ArrayType<ArrayType<VariantType<{
|
|
701
|
-
readonly field: StringType;
|
|
702
|
-
}>>>;
|
|
703
|
-
readonly output: ArrayType<VariantType<{
|
|
704
|
-
readonly field: StringType;
|
|
705
|
-
}>>;
|
|
706
|
-
}>;
|
|
707
|
-
/**
|
|
708
|
-
* Request to start dataflow execution.
|
|
709
|
-
*
|
|
710
|
-
* @property concurrency - Maximum parallel tasks (default: 4)
|
|
711
|
-
* @property force - Force re-execution of all tasks
|
|
712
|
-
* @property filter - Filter to specific task names (glob pattern)
|
|
713
|
-
*/
|
|
714
|
-
export declare const DataflowRequestType: StructType<{
|
|
715
|
-
readonly concurrency: OptionType<IntegerType>;
|
|
716
|
-
readonly force: BooleanType;
|
|
717
|
-
readonly filter: OptionType<StringType>;
|
|
718
|
-
}>;
|
|
719
|
-
/**
|
|
720
|
-
* Task in a dependency graph.
|
|
721
|
-
*
|
|
722
|
-
* @property name - Task name
|
|
723
|
-
* @property hash - Task definition hash
|
|
724
|
-
* @property inputs - Dataset paths this task reads from
|
|
725
|
-
* @property output - Dataset path this task writes to
|
|
726
|
-
* @property dependsOn - Names of tasks that must complete before this one
|
|
727
|
-
*/
|
|
728
|
-
export declare const GraphTaskType: StructType<{
|
|
729
|
-
readonly name: StringType;
|
|
730
|
-
readonly hash: StringType;
|
|
731
|
-
readonly inputs: ArrayType<StringType>;
|
|
732
|
-
readonly output: StringType;
|
|
733
|
-
readonly dependsOn: ArrayType<StringType>;
|
|
734
|
-
}>;
|
|
735
|
-
/**
|
|
736
|
-
* Dataflow dependency graph.
|
|
737
|
-
*
|
|
738
|
-
* @property tasks - All tasks in the graph with their dependencies
|
|
739
|
-
*/
|
|
740
|
-
export declare const DataflowGraphType: StructType<{
|
|
741
|
-
readonly tasks: ArrayType<StructType<{
|
|
742
|
-
readonly name: StringType;
|
|
743
|
-
readonly hash: StringType;
|
|
744
|
-
readonly inputs: ArrayType<StringType>;
|
|
745
|
-
readonly output: StringType;
|
|
746
|
-
readonly dependsOn: ArrayType<StringType>;
|
|
747
|
-
}>>;
|
|
748
|
-
}>;
|
|
749
|
-
/**
|
|
750
|
-
* Chunk of log data from task execution.
|
|
751
|
-
*
|
|
752
|
-
* @property data - Log content (UTF-8 text)
|
|
753
|
-
* @property offset - Byte offset from start of log
|
|
754
|
-
* @property size - Size of this chunk in bytes
|
|
755
|
-
* @property totalSize - Total size of the log file
|
|
756
|
-
* @property complete - True if this chunk reaches end of file
|
|
757
|
-
*/
|
|
758
|
-
export declare const LogChunkType: StructType<{
|
|
759
|
-
readonly data: StringType;
|
|
760
|
-
readonly offset: IntegerType;
|
|
761
|
-
readonly size: IntegerType;
|
|
762
|
-
readonly totalSize: IntegerType;
|
|
763
|
-
readonly complete: BooleanType;
|
|
764
|
-
}>;
|
|
765
|
-
/**
|
|
766
|
-
* Result of executing a single task.
|
|
767
|
-
*
|
|
768
|
-
* @property name - Task name
|
|
769
|
-
* @property cached - True if result was retrieved from cache
|
|
770
|
-
* @property state - Execution outcome (success, failed, error, skipped)
|
|
771
|
-
* @property duration - Execution time in seconds
|
|
772
|
-
*/
|
|
773
|
-
export declare const TaskExecutionResultType: StructType<{
|
|
774
|
-
readonly name: StringType;
|
|
775
|
-
readonly cached: BooleanType;
|
|
776
|
-
readonly state: VariantType<{
|
|
777
|
-
readonly success: NullType;
|
|
778
|
-
readonly failed: StructType<{
|
|
779
|
-
readonly exitCode: IntegerType;
|
|
780
|
-
}>;
|
|
781
|
-
readonly error: StructType<{
|
|
782
|
-
readonly message: StringType;
|
|
783
|
-
}>;
|
|
784
|
-
readonly skipped: NullType;
|
|
785
|
-
}>;
|
|
786
|
-
readonly duration: FloatType;
|
|
787
|
-
}>;
|
|
788
|
-
/**
|
|
789
|
-
* Result of dataflow execution.
|
|
790
|
-
*
|
|
791
|
-
* @property success - True if all tasks completed successfully
|
|
792
|
-
* @property executed - Number of tasks that were executed
|
|
793
|
-
* @property cached - Number of tasks that used cached results
|
|
794
|
-
* @property failed - Number of tasks that failed
|
|
795
|
-
* @property skipped - Number of tasks that were skipped
|
|
796
|
-
* @property tasks - Per-task execution results
|
|
797
|
-
* @property duration - Total execution time in seconds
|
|
798
|
-
*/
|
|
799
|
-
export declare const DataflowResultType: StructType<{
|
|
800
|
-
readonly success: BooleanType;
|
|
801
|
-
readonly executed: IntegerType;
|
|
802
|
-
readonly cached: IntegerType;
|
|
803
|
-
readonly failed: IntegerType;
|
|
804
|
-
readonly skipped: IntegerType;
|
|
805
|
-
readonly tasks: ArrayType<StructType<{
|
|
806
|
-
readonly name: StringType;
|
|
807
|
-
readonly cached: BooleanType;
|
|
808
|
-
readonly state: VariantType<{
|
|
809
|
-
readonly success: NullType;
|
|
810
|
-
readonly failed: StructType<{
|
|
811
|
-
readonly exitCode: IntegerType;
|
|
812
|
-
}>;
|
|
813
|
-
readonly error: StructType<{
|
|
814
|
-
readonly message: StringType;
|
|
815
|
-
}>;
|
|
816
|
-
readonly skipped: NullType;
|
|
817
|
-
}>;
|
|
818
|
-
readonly duration: FloatType;
|
|
819
|
-
}>>;
|
|
820
|
-
readonly duration: FloatType;
|
|
821
|
-
}>;
|
|
822
|
-
/**
|
|
823
|
-
* Dataflow event types.
|
|
824
|
-
*
|
|
825
|
-
* - `start`: Task started executing
|
|
826
|
-
* - `complete`: Task executed and succeeded
|
|
827
|
-
* - `cached`: Task result retrieved from cache (no execution)
|
|
828
|
-
* - `failed`: Task exited with non-zero code
|
|
829
|
-
* - `error`: Internal error during task execution
|
|
830
|
-
* - `input_unavailable`: Task couldn't run because inputs not available
|
|
831
|
-
*/
|
|
832
|
-
export declare const DataflowEventType: VariantType<{
|
|
833
|
-
readonly start: StructType<{
|
|
834
|
-
readonly task: StringType;
|
|
835
|
-
readonly timestamp: StringType;
|
|
836
|
-
}>;
|
|
837
|
-
readonly complete: StructType<{
|
|
838
|
-
readonly task: StringType;
|
|
839
|
-
readonly timestamp: StringType;
|
|
840
|
-
readonly duration: FloatType;
|
|
841
|
-
}>;
|
|
842
|
-
readonly cached: StructType<{
|
|
843
|
-
readonly task: StringType;
|
|
844
|
-
readonly timestamp: StringType;
|
|
845
|
-
}>;
|
|
846
|
-
readonly failed: StructType<{
|
|
847
|
-
readonly task: StringType;
|
|
848
|
-
readonly timestamp: StringType;
|
|
849
|
-
readonly duration: FloatType;
|
|
850
|
-
readonly exitCode: IntegerType;
|
|
851
|
-
}>;
|
|
852
|
-
readonly error: StructType<{
|
|
853
|
-
readonly task: StringType;
|
|
854
|
-
readonly timestamp: StringType;
|
|
855
|
-
readonly message: StringType;
|
|
856
|
-
}>;
|
|
857
|
-
readonly input_unavailable: StructType<{
|
|
858
|
-
readonly task: StringType;
|
|
859
|
-
readonly timestamp: StringType;
|
|
860
|
-
readonly reason: StringType;
|
|
861
|
-
}>;
|
|
862
|
-
}>;
|
|
863
|
-
/**
|
|
864
|
-
* Execution status variant.
|
|
865
|
-
*
|
|
866
|
-
* - `running`: Execution is in progress
|
|
867
|
-
* - `completed`: Execution finished successfully
|
|
868
|
-
* - `failed`: Execution finished with failures
|
|
869
|
-
* - `aborted`: Execution was cancelled
|
|
870
|
-
*/
|
|
871
|
-
export declare const ExecutionStatusType: VariantType<{
|
|
872
|
-
readonly running: NullType;
|
|
873
|
-
readonly completed: NullType;
|
|
874
|
-
readonly failed: NullType;
|
|
875
|
-
readonly aborted: NullType;
|
|
876
|
-
}>;
|
|
877
|
-
/**
|
|
878
|
-
* Summary of dataflow execution results.
|
|
879
|
-
*/
|
|
880
|
-
export declare const DataflowExecutionSummaryType: StructType<{
|
|
881
|
-
readonly executed: IntegerType;
|
|
882
|
-
readonly cached: IntegerType;
|
|
883
|
-
readonly failed: IntegerType;
|
|
884
|
-
readonly skipped: IntegerType;
|
|
885
|
-
readonly duration: FloatType;
|
|
886
|
-
}>;
|
|
887
|
-
/**
|
|
888
|
-
* State of a dataflow execution (for polling).
|
|
889
|
-
*
|
|
890
|
-
* @property status - Current execution status
|
|
891
|
-
* @property startedAt - ISO timestamp when execution started
|
|
892
|
-
* @property completedAt - ISO timestamp when execution finished (if done)
|
|
893
|
-
* @property summary - Execution summary (available when complete)
|
|
894
|
-
* @property events - Task events (may be paginated via offset/limit)
|
|
895
|
-
* @property totalEvents - Total number of events (for pagination)
|
|
896
|
-
*/
|
|
897
|
-
export declare const DataflowExecutionStateType: StructType<{
|
|
898
|
-
readonly status: VariantType<{
|
|
899
|
-
readonly running: NullType;
|
|
900
|
-
readonly completed: NullType;
|
|
901
|
-
readonly failed: NullType;
|
|
902
|
-
readonly aborted: NullType;
|
|
903
|
-
}>;
|
|
904
|
-
readonly startedAt: StringType;
|
|
905
|
-
readonly completedAt: OptionType<StringType>;
|
|
906
|
-
readonly summary: OptionType<StructType<{
|
|
907
|
-
readonly executed: IntegerType;
|
|
908
|
-
readonly cached: IntegerType;
|
|
909
|
-
readonly failed: IntegerType;
|
|
910
|
-
readonly skipped: IntegerType;
|
|
911
|
-
readonly duration: FloatType;
|
|
912
|
-
}>>;
|
|
913
|
-
readonly events: ArrayType<VariantType<{
|
|
914
|
-
readonly start: StructType<{
|
|
915
|
-
readonly task: StringType;
|
|
916
|
-
readonly timestamp: StringType;
|
|
917
|
-
}>;
|
|
918
|
-
readonly complete: StructType<{
|
|
919
|
-
readonly task: StringType;
|
|
920
|
-
readonly timestamp: StringType;
|
|
921
|
-
readonly duration: FloatType;
|
|
922
|
-
}>;
|
|
923
|
-
readonly cached: StructType<{
|
|
924
|
-
readonly task: StringType;
|
|
925
|
-
readonly timestamp: StringType;
|
|
926
|
-
}>;
|
|
927
|
-
readonly failed: StructType<{
|
|
928
|
-
readonly task: StringType;
|
|
929
|
-
readonly timestamp: StringType;
|
|
930
|
-
readonly duration: FloatType;
|
|
931
|
-
readonly exitCode: IntegerType;
|
|
932
|
-
}>;
|
|
933
|
-
readonly error: StructType<{
|
|
934
|
-
readonly task: StringType;
|
|
935
|
-
readonly timestamp: StringType;
|
|
936
|
-
readonly message: StringType;
|
|
937
|
-
}>;
|
|
938
|
-
readonly input_unavailable: StructType<{
|
|
939
|
-
readonly task: StringType;
|
|
940
|
-
readonly timestamp: StringType;
|
|
941
|
-
readonly reason: StringType;
|
|
942
|
-
}>;
|
|
943
|
-
}>>;
|
|
944
|
-
readonly totalEvents: IntegerType;
|
|
945
|
-
}>;
|
|
946
|
-
/**
|
|
947
|
-
* Execution status for history listing.
|
|
948
|
-
*/
|
|
949
|
-
export declare const ExecutionHistoryStatusType: VariantType<{
|
|
950
|
-
readonly running: NullType;
|
|
951
|
-
readonly success: NullType;
|
|
952
|
-
readonly failed: NullType;
|
|
953
|
-
readonly error: NullType;
|
|
954
|
-
}>;
|
|
955
|
-
/**
|
|
956
|
-
* A single execution in task history.
|
|
957
|
-
*
|
|
958
|
-
* @property inputsHash - Hash of concatenated inputs (execution identifier)
|
|
959
|
-
* @property inputHashes - Individual input object hashes
|
|
960
|
-
* @property status - Execution outcome
|
|
961
|
-
* @property startedAt - ISO timestamp when execution started
|
|
962
|
-
* @property completedAt - ISO timestamp when execution finished (if done)
|
|
963
|
-
* @property duration - Execution duration in milliseconds (if done)
|
|
964
|
-
* @property exitCode - Process exit code (if failed)
|
|
965
|
-
*/
|
|
966
|
-
export declare const ExecutionListItemType: StructType<{
|
|
967
|
-
readonly inputsHash: StringType;
|
|
968
|
-
readonly inputHashes: ArrayType<StringType>;
|
|
969
|
-
readonly status: VariantType<{
|
|
970
|
-
readonly running: NullType;
|
|
971
|
-
readonly success: NullType;
|
|
972
|
-
readonly failed: NullType;
|
|
973
|
-
readonly error: NullType;
|
|
974
|
-
}>;
|
|
975
|
-
readonly startedAt: StringType;
|
|
976
|
-
readonly completedAt: OptionType<StringType>;
|
|
977
|
-
readonly duration: OptionType<IntegerType>;
|
|
978
|
-
readonly exitCode: OptionType<IntegerType>;
|
|
979
|
-
}>;
|
|
980
|
-
/**
|
|
981
|
-
* Tree branch kind variant.
|
|
982
|
-
*
|
|
983
|
-
* Currently only `struct` branches exist. Future: `dict`, `array`, `variant`.
|
|
984
|
-
*/
|
|
985
|
-
export declare const TreeKindType: VariantType<{
|
|
986
|
-
readonly struct: NullType;
|
|
987
|
-
}>;
|
|
988
|
-
/**
|
|
989
|
-
* A list entry — either a dataset leaf or a tree branch.
|
|
990
|
-
*
|
|
991
|
-
* Used by the `?list=true&status=true` endpoints to return both
|
|
992
|
-
* tree structure entries and dataset leaves in a single flat list.
|
|
993
|
-
*/
|
|
994
|
-
export declare const ListEntryType: VariantType<{
|
|
995
|
-
readonly dataset: StructType<{
|
|
996
|
-
readonly path: StringType;
|
|
997
|
-
readonly type: import("@elaraai/east").RecursiveType<VariantType<{
|
|
998
|
-
readonly Never: NullType;
|
|
999
|
-
readonly Null: NullType;
|
|
1000
|
-
readonly Boolean: NullType;
|
|
1001
|
-
readonly Integer: NullType;
|
|
1002
|
-
readonly Float: NullType;
|
|
1003
|
-
readonly String: NullType;
|
|
1004
|
-
readonly DateTime: NullType;
|
|
1005
|
-
readonly Blob: NullType;
|
|
1006
|
-
readonly Ref: import("@elaraai/east").RecursiveTypeMarker;
|
|
1007
|
-
readonly Array: import("@elaraai/east").RecursiveTypeMarker;
|
|
1008
|
-
readonly Set: import("@elaraai/east").RecursiveTypeMarker;
|
|
1009
|
-
readonly Dict: StructType<{
|
|
1010
|
-
readonly key: import("@elaraai/east").RecursiveTypeMarker;
|
|
1011
|
-
readonly value: import("@elaraai/east").RecursiveTypeMarker;
|
|
1012
|
-
}>;
|
|
1013
|
-
readonly Struct: ArrayType<StructType<{
|
|
1014
|
-
readonly name: StringType;
|
|
1015
|
-
readonly type: import("@elaraai/east").RecursiveTypeMarker;
|
|
1016
|
-
}>>;
|
|
1017
|
-
readonly Variant: ArrayType<StructType<{
|
|
1018
|
-
readonly name: StringType;
|
|
1019
|
-
readonly type: import("@elaraai/east").RecursiveTypeMarker;
|
|
1020
|
-
}>>;
|
|
1021
|
-
readonly Recursive: IntegerType;
|
|
1022
|
-
readonly Function: StructType<{
|
|
1023
|
-
readonly inputs: ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
|
|
1024
|
-
readonly output: import("@elaraai/east").RecursiveTypeMarker;
|
|
1025
|
-
}>;
|
|
1026
|
-
readonly AsyncFunction: StructType<{
|
|
1027
|
-
readonly inputs: ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
|
|
1028
|
-
readonly output: import("@elaraai/east").RecursiveTypeMarker;
|
|
1029
|
-
}>;
|
|
1030
|
-
readonly Vector: import("@elaraai/east").RecursiveTypeMarker;
|
|
1031
|
-
readonly Matrix: import("@elaraai/east").RecursiveTypeMarker;
|
|
1032
|
-
}>>;
|
|
1033
|
-
readonly hash: OptionType<StringType>;
|
|
1034
|
-
readonly size: OptionType<IntegerType>;
|
|
1035
|
-
}>;
|
|
1036
|
-
readonly tree: StructType<{
|
|
1037
|
-
readonly path: StringType;
|
|
1038
|
-
readonly kind: VariantType<{
|
|
1039
|
-
readonly struct: NullType;
|
|
1040
|
-
}>;
|
|
1041
|
-
}>;
|
|
1042
|
-
}>;
|
|
1043
|
-
/**
|
|
1044
|
-
* Detailed status of a single dataset.
|
|
1045
|
-
*
|
|
1046
|
-
* @property path - Dataset path (e.g., ".inputs.config")
|
|
1047
|
-
* @property type - East type of the dataset
|
|
1048
|
-
* @property refType - Ref type: "unassigned", "null", or "value"
|
|
1049
|
-
* @property hash - Object hash (None if unassigned/null)
|
|
1050
|
-
* @property size - Size in bytes (None if unassigned)
|
|
1051
|
-
*/
|
|
1052
|
-
export declare const DatasetStatusDetailType: StructType<{
|
|
1053
|
-
readonly path: StringType;
|
|
1054
|
-
readonly type: import("@elaraai/east").RecursiveType<VariantType<{
|
|
1055
|
-
readonly Never: NullType;
|
|
1056
|
-
readonly Null: NullType;
|
|
1057
|
-
readonly Boolean: NullType;
|
|
1058
|
-
readonly Integer: NullType;
|
|
1059
|
-
readonly Float: NullType;
|
|
1060
|
-
readonly String: NullType;
|
|
1061
|
-
readonly DateTime: NullType;
|
|
1062
|
-
readonly Blob: NullType;
|
|
1063
|
-
readonly Ref: import("@elaraai/east").RecursiveTypeMarker;
|
|
1064
|
-
readonly Array: import("@elaraai/east").RecursiveTypeMarker;
|
|
1065
|
-
readonly Set: import("@elaraai/east").RecursiveTypeMarker;
|
|
1066
|
-
readonly Dict: StructType<{
|
|
1067
|
-
readonly key: import("@elaraai/east").RecursiveTypeMarker;
|
|
1068
|
-
readonly value: import("@elaraai/east").RecursiveTypeMarker;
|
|
1069
|
-
}>;
|
|
1070
|
-
readonly Struct: ArrayType<StructType<{
|
|
1071
|
-
readonly name: StringType;
|
|
1072
|
-
readonly type: import("@elaraai/east").RecursiveTypeMarker;
|
|
1073
|
-
}>>;
|
|
1074
|
-
readonly Variant: ArrayType<StructType<{
|
|
1075
|
-
readonly name: StringType;
|
|
1076
|
-
readonly type: import("@elaraai/east").RecursiveTypeMarker;
|
|
1077
|
-
}>>;
|
|
1078
|
-
readonly Recursive: IntegerType;
|
|
1079
|
-
readonly Function: StructType<{
|
|
1080
|
-
readonly inputs: ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
|
|
1081
|
-
readonly output: import("@elaraai/east").RecursiveTypeMarker;
|
|
1082
|
-
}>;
|
|
1083
|
-
readonly AsyncFunction: StructType<{
|
|
1084
|
-
readonly inputs: ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
|
|
1085
|
-
readonly output: import("@elaraai/east").RecursiveTypeMarker;
|
|
1086
|
-
}>;
|
|
1087
|
-
readonly Vector: import("@elaraai/east").RecursiveTypeMarker;
|
|
1088
|
-
readonly Matrix: import("@elaraai/east").RecursiveTypeMarker;
|
|
1089
|
-
}>>;
|
|
1090
|
-
readonly refType: StringType;
|
|
1091
|
-
readonly hash: OptionType<StringType>;
|
|
1092
|
-
readonly size: OptionType<IntegerType>;
|
|
1093
|
-
}>;
|
|
1094
|
-
import { TransferUploadRequestType, TransferUploadResponseType, TransferDoneResponseType, PackageImportStatusType, PackageExportStatusType } from '@elaraai/e3-types';
|
|
1095
|
-
export { TransferUploadRequestType, TransferUploadResponseType, TransferDoneResponseType, PackageImportStatusType, PackageExportStatusType, };
|
|
1096
|
-
export type Error = ValueTypeOf<typeof ErrorType>;
|
|
1097
|
-
export type RepositoryStatus = ValueTypeOf<typeof RepositoryStatusType>;
|
|
1098
|
-
export type GcRequest = ValueTypeOf<typeof GcRequestType>;
|
|
1099
|
-
export type GcResult = ValueTypeOf<typeof GcResultType>;
|
|
1100
|
-
export type AsyncOperationStatus = ValueTypeOf<typeof AsyncOperationStatusType>;
|
|
1101
|
-
export type GcStartResult = ValueTypeOf<typeof GcStartResultType>;
|
|
1102
|
-
export type GcStatusResult = ValueTypeOf<typeof GcStatusResultType>;
|
|
1103
|
-
export type PackageListItem = ValueTypeOf<typeof PackageListItemType>;
|
|
1104
|
-
export type PackageImportResult = ValueTypeOf<typeof PackageImportResultType>;
|
|
1105
|
-
export type PackageInfo = ValueTypeOf<typeof PackageInfoType>;
|
|
1106
|
-
export type PackageDetails = ValueTypeOf<typeof PackageDetailsType>;
|
|
1107
|
-
export type WorkspaceInfo = ValueTypeOf<typeof WorkspaceInfoType>;
|
|
1108
|
-
export type WorkspaceCreateRequest = ValueTypeOf<typeof WorkspaceCreateRequestType>;
|
|
1109
|
-
export type WorkspaceDeployRequest = ValueTypeOf<typeof WorkspaceDeployRequestType>;
|
|
1110
|
-
export type DatasetStatus = ValueTypeOf<typeof DatasetStatusType>;
|
|
1111
|
-
export type TaskStatus = ValueTypeOf<typeof TaskStatusType>;
|
|
1112
|
-
export type DatasetStatusInfo = ValueTypeOf<typeof DatasetStatusInfoType>;
|
|
1113
|
-
export type TaskStatusInfo = ValueTypeOf<typeof TaskStatusInfoType>;
|
|
1114
|
-
export type WorkspaceStatusSummary = ValueTypeOf<typeof WorkspaceStatusSummaryType>;
|
|
1115
|
-
export type WorkspaceStatusResult = ValueTypeOf<typeof WorkspaceStatusResultType>;
|
|
1116
|
-
export type TaskListItem = ValueTypeOf<typeof TaskListItemType>;
|
|
1117
|
-
export type TaskDetails = ValueTypeOf<typeof TaskDetailsType>;
|
|
1118
|
-
export type DataflowRequest = ValueTypeOf<typeof DataflowRequestType>;
|
|
1119
|
-
export type GraphTask = ValueTypeOf<typeof GraphTaskType>;
|
|
1120
|
-
export type DataflowGraph = ValueTypeOf<typeof DataflowGraphType>;
|
|
1121
|
-
export type LogChunk = ValueTypeOf<typeof LogChunkType>;
|
|
1122
|
-
export type TaskExecutionResult = ValueTypeOf<typeof TaskExecutionResultType>;
|
|
1123
|
-
export type DataflowResult = ValueTypeOf<typeof DataflowResultType>;
|
|
1124
|
-
export type DataflowEvent = ValueTypeOf<typeof DataflowEventType>;
|
|
1125
|
-
export type ExecutionStatus = ValueTypeOf<typeof ExecutionStatusType>;
|
|
1126
|
-
export type DataflowExecutionSummary = ValueTypeOf<typeof DataflowExecutionSummaryType>;
|
|
1127
|
-
export type DataflowExecutionState = ValueTypeOf<typeof DataflowExecutionStateType>;
|
|
1128
|
-
export type ExecutionHistoryStatus = ValueTypeOf<typeof ExecutionHistoryStatusType>;
|
|
1129
|
-
export type ExecutionListItem = ValueTypeOf<typeof ExecutionListItemType>;
|
|
1130
|
-
export type TreeKind = ValueTypeOf<typeof TreeKindType>;
|
|
1131
|
-
export type ListEntry = ValueTypeOf<typeof ListEntryType>;
|
|
1132
|
-
export type DatasetStatusDetail = ValueTypeOf<typeof DatasetStatusDetailType>;
|
|
1133
|
-
export type { TransferUploadRequest, TransferUploadResponse, TransferDoneResponse, PackageImportStatus, PackageExportStatus } from '@elaraai/e3-types';
|
|
12
|
+
export { WorkspaceNotFoundErrorType, WorkspaceNotDeployedErrorType, WorkspaceExistsErrorType, LockHolderType, WorkspaceLockedErrorType, PackageNotFoundErrorType, PackageExistsErrorType, PackageInvalidErrorType, DatasetNotFoundErrorType, TaskNotFoundErrorType, ExecutionNotFoundErrorType, ObjectNotFoundErrorType, DataflowErrorType, PermissionDeniedErrorType, InternalErrorType, RepositoryNotFoundErrorType, ErrorType, ResponseType, RepositoryStatusType, GcRequestType, GcResultType, AsyncOperationStatusType, GcStartResultType, GcStatusResultType, PackageListItemType, PackageImportResultType, PackageInfoType, PackageDetailsType, WorkspaceCreateRequestType, WorkspaceInfoType, WorkspaceDeployRequestType, WorkspaceExportRequestType, DatasetStatusType, TaskStatusUpToDateType, TaskStatusWaitingType, TaskStatusInProgressType, TaskStatusFailedType, TaskStatusErrorType, TaskStatusStaleRunningType, TaskStatusType, DatasetStatusInfoType, TaskStatusInfoType, WorkspaceStatusSummaryType, WorkspaceStatusResultType, TaskListItemType, TaskDetailsType, DataflowRequestType, LogChunkType, TaskExecutionResultType, DataflowResultType, DataflowEventType, ApiExecutionStatusType as ExecutionStatusType, DataflowExecutionSummaryType, ApiDataflowExecutionStateType as DataflowExecutionStateType, ExecutionHistoryStatusType, ExecutionListItemType, TreeKindType, ListEntryType, DatasetStatusDetailType, TransferUploadRequestType, TransferUploadResponseType, TransferDoneResponseType, PackageImportStatusType, PackageExportStatusType, DataflowGraphType, DataflowGraphTaskType, } from '@elaraai/e3-types';
|
|
13
|
+
export type { Error, RepositoryStatus, GcRequest, GcResult, AsyncOperationStatus, GcStartResult, GcStatusResult, PackageListItem, PackageImportResult, PackageInfo, PackageDetails, WorkspaceInfo, WorkspaceCreateRequest, WorkspaceDeployRequest, DatasetStatus, ApiTaskStatus as TaskStatus, DatasetStatusInfo, TaskStatusInfo, WorkspaceStatusSummary, WorkspaceStatusResult, TaskListItem, TaskDetails, DataflowRequest, LogChunk, TaskExecutionResult, DataflowResult, DataflowEvent, ApiExecutionStatus as ExecutionStatus, DataflowExecutionSummary, ApiDataflowExecutionState as DataflowExecutionState, ExecutionHistoryStatus, ExecutionListItem, TreeKind, ListEntry, DatasetStatusDetail, TransferUploadRequest, TransferUploadResponse, TransferDoneResponse, PackageImportStatus, PackageExportStatus, DataflowGraph, DataflowGraphTask, } from '@elaraai/e3-types';
|
|
1134
14
|
export declare const ApiTypes: {
|
|
1135
|
-
readonly ErrorType: VariantType<{
|
|
1136
|
-
readonly repository_not_found: StructType<{
|
|
1137
|
-
readonly repo: StringType;
|
|
1138
|
-
}>;
|
|
1139
|
-
readonly workspace_not_found: StructType<{
|
|
1140
|
-
readonly workspace: StringType;
|
|
1141
|
-
}>;
|
|
1142
|
-
readonly workspace_not_deployed: StructType<{
|
|
1143
|
-
readonly workspace: StringType;
|
|
1144
|
-
}>;
|
|
1145
|
-
readonly workspace_exists: StructType<{
|
|
1146
|
-
readonly workspace: StringType;
|
|
1147
|
-
}>;
|
|
1148
|
-
readonly workspace_locked: StructType<{
|
|
1149
|
-
readonly workspace: StringType;
|
|
1150
|
-
readonly holder: VariantType<{
|
|
1151
|
-
readonly unknown: NullType;
|
|
1152
|
-
readonly known: StructType<{
|
|
1153
|
-
readonly pid: IntegerType;
|
|
1154
|
-
readonly acquiredAt: StringType;
|
|
1155
|
-
readonly bootId: OptionType<StringType>;
|
|
1156
|
-
readonly command: OptionType<StringType>;
|
|
15
|
+
readonly ErrorType: import("@elaraai/east").VariantType<{
|
|
16
|
+
readonly repository_not_found: import("@elaraai/east").StructType<{
|
|
17
|
+
readonly repo: import("@elaraai/east").StringType;
|
|
18
|
+
}>;
|
|
19
|
+
readonly workspace_not_found: import("@elaraai/east").StructType<{
|
|
20
|
+
readonly workspace: import("@elaraai/east").StringType;
|
|
21
|
+
}>;
|
|
22
|
+
readonly workspace_not_deployed: import("@elaraai/east").StructType<{
|
|
23
|
+
readonly workspace: import("@elaraai/east").StringType;
|
|
24
|
+
}>;
|
|
25
|
+
readonly workspace_exists: import("@elaraai/east").StructType<{
|
|
26
|
+
readonly workspace: import("@elaraai/east").StringType;
|
|
27
|
+
}>;
|
|
28
|
+
readonly workspace_locked: import("@elaraai/east").StructType<{
|
|
29
|
+
readonly workspace: import("@elaraai/east").StringType;
|
|
30
|
+
readonly holder: import("@elaraai/east").VariantType<{
|
|
31
|
+
readonly unknown: import("@elaraai/east").NullType;
|
|
32
|
+
readonly known: import("@elaraai/east").StructType<{
|
|
33
|
+
readonly pid: import("@elaraai/east").IntegerType;
|
|
34
|
+
readonly acquiredAt: import("@elaraai/east").StringType;
|
|
35
|
+
readonly bootId: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
36
|
+
readonly command: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
1157
37
|
}>;
|
|
1158
38
|
}>;
|
|
1159
39
|
}>;
|
|
1160
|
-
readonly package_not_found: StructType<{
|
|
1161
|
-
readonly packageName: StringType;
|
|
1162
|
-
readonly version: OptionType<StringType>;
|
|
40
|
+
readonly package_not_found: import("@elaraai/east").StructType<{
|
|
41
|
+
readonly packageName: import("@elaraai/east").StringType;
|
|
42
|
+
readonly version: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
1163
43
|
}>;
|
|
1164
|
-
readonly package_exists: StructType<{
|
|
1165
|
-
readonly packageName: StringType;
|
|
1166
|
-
readonly version: StringType;
|
|
44
|
+
readonly package_exists: import("@elaraai/east").StructType<{
|
|
45
|
+
readonly packageName: import("@elaraai/east").StringType;
|
|
46
|
+
readonly version: import("@elaraai/east").StringType;
|
|
1167
47
|
}>;
|
|
1168
|
-
readonly package_invalid: StructType<{
|
|
1169
|
-
readonly reason: StringType;
|
|
48
|
+
readonly package_invalid: import("@elaraai/east").StructType<{
|
|
49
|
+
readonly reason: import("@elaraai/east").StringType;
|
|
1170
50
|
}>;
|
|
1171
|
-
readonly dataset_not_found: StructType<{
|
|
1172
|
-
readonly workspace: StringType;
|
|
1173
|
-
readonly path: StringType;
|
|
51
|
+
readonly dataset_not_found: import("@elaraai/east").StructType<{
|
|
52
|
+
readonly workspace: import("@elaraai/east").StringType;
|
|
53
|
+
readonly path: import("@elaraai/east").StringType;
|
|
1174
54
|
}>;
|
|
1175
|
-
readonly task_not_found: StructType<{
|
|
1176
|
-
readonly task: StringType;
|
|
55
|
+
readonly task_not_found: import("@elaraai/east").StructType<{
|
|
56
|
+
readonly task: import("@elaraai/east").StringType;
|
|
1177
57
|
}>;
|
|
1178
|
-
readonly execution_not_found: StructType<{
|
|
1179
|
-
readonly task: StringType;
|
|
58
|
+
readonly execution_not_found: import("@elaraai/east").StructType<{
|
|
59
|
+
readonly task: import("@elaraai/east").StringType;
|
|
1180
60
|
}>;
|
|
1181
|
-
readonly object_not_found: StructType<{
|
|
1182
|
-
readonly hash: StringType;
|
|
61
|
+
readonly object_not_found: import("@elaraai/east").StructType<{
|
|
62
|
+
readonly hash: import("@elaraai/east").StringType;
|
|
1183
63
|
}>;
|
|
1184
|
-
readonly dataflow_error: StructType<{
|
|
1185
|
-
readonly message: StringType;
|
|
64
|
+
readonly dataflow_error: import("@elaraai/east").StructType<{
|
|
65
|
+
readonly message: import("@elaraai/east").StringType;
|
|
1186
66
|
}>;
|
|
1187
|
-
readonly dataflow_aborted: NullType;
|
|
1188
|
-
readonly permission_denied: StructType<{
|
|
1189
|
-
readonly path: StringType;
|
|
67
|
+
readonly dataflow_aborted: import("@elaraai/east").NullType;
|
|
68
|
+
readonly permission_denied: import("@elaraai/east").StructType<{
|
|
69
|
+
readonly path: import("@elaraai/east").StringType;
|
|
1190
70
|
}>;
|
|
1191
|
-
readonly internal: StructType<{
|
|
1192
|
-
readonly message: StringType;
|
|
71
|
+
readonly internal: import("@elaraai/east").StructType<{
|
|
72
|
+
readonly message: import("@elaraai/east").StringType;
|
|
1193
73
|
}>;
|
|
1194
74
|
}>;
|
|
1195
|
-
readonly RepositoryNotFoundErrorType: StructType<{
|
|
1196
|
-
readonly repo: StringType;
|
|
75
|
+
readonly RepositoryNotFoundErrorType: import("@elaraai/east").StructType<{
|
|
76
|
+
readonly repo: import("@elaraai/east").StringType;
|
|
1197
77
|
}>;
|
|
1198
|
-
readonly WorkspaceNotFoundErrorType: StructType<{
|
|
1199
|
-
readonly workspace: StringType;
|
|
78
|
+
readonly WorkspaceNotFoundErrorType: import("@elaraai/east").StructType<{
|
|
79
|
+
readonly workspace: import("@elaraai/east").StringType;
|
|
1200
80
|
}>;
|
|
1201
|
-
readonly WorkspaceNotDeployedErrorType: StructType<{
|
|
1202
|
-
readonly workspace: StringType;
|
|
81
|
+
readonly WorkspaceNotDeployedErrorType: import("@elaraai/east").StructType<{
|
|
82
|
+
readonly workspace: import("@elaraai/east").StringType;
|
|
1203
83
|
}>;
|
|
1204
|
-
readonly WorkspaceExistsErrorType: StructType<{
|
|
1205
|
-
readonly workspace: StringType;
|
|
84
|
+
readonly WorkspaceExistsErrorType: import("@elaraai/east").StructType<{
|
|
85
|
+
readonly workspace: import("@elaraai/east").StringType;
|
|
1206
86
|
}>;
|
|
1207
|
-
readonly WorkspaceLockedErrorType: StructType<{
|
|
1208
|
-
readonly workspace: StringType;
|
|
1209
|
-
readonly holder: VariantType<{
|
|
1210
|
-
readonly unknown: NullType;
|
|
1211
|
-
readonly known: StructType<{
|
|
1212
|
-
readonly pid: IntegerType;
|
|
1213
|
-
readonly acquiredAt: StringType;
|
|
1214
|
-
readonly bootId: OptionType<StringType>;
|
|
1215
|
-
readonly command: OptionType<StringType>;
|
|
87
|
+
readonly WorkspaceLockedErrorType: import("@elaraai/east").StructType<{
|
|
88
|
+
readonly workspace: import("@elaraai/east").StringType;
|
|
89
|
+
readonly holder: import("@elaraai/east").VariantType<{
|
|
90
|
+
readonly unknown: import("@elaraai/east").NullType;
|
|
91
|
+
readonly known: import("@elaraai/east").StructType<{
|
|
92
|
+
readonly pid: import("@elaraai/east").IntegerType;
|
|
93
|
+
readonly acquiredAt: import("@elaraai/east").StringType;
|
|
94
|
+
readonly bootId: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
95
|
+
readonly command: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
1216
96
|
}>;
|
|
1217
97
|
}>;
|
|
1218
98
|
}>;
|
|
1219
|
-
readonly LockHolderType: StructType<{
|
|
1220
|
-
readonly pid: IntegerType;
|
|
1221
|
-
readonly acquiredAt: StringType;
|
|
1222
|
-
readonly bootId: OptionType<StringType>;
|
|
1223
|
-
readonly command: OptionType<StringType>;
|
|
99
|
+
readonly LockHolderType: import("@elaraai/east").StructType<{
|
|
100
|
+
readonly pid: import("@elaraai/east").IntegerType;
|
|
101
|
+
readonly acquiredAt: import("@elaraai/east").StringType;
|
|
102
|
+
readonly bootId: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
103
|
+
readonly command: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
1224
104
|
}>;
|
|
1225
|
-
readonly PackageNotFoundErrorType: StructType<{
|
|
1226
|
-
readonly packageName: StringType;
|
|
1227
|
-
readonly version: OptionType<StringType>;
|
|
105
|
+
readonly PackageNotFoundErrorType: import("@elaraai/east").StructType<{
|
|
106
|
+
readonly packageName: import("@elaraai/east").StringType;
|
|
107
|
+
readonly version: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
1228
108
|
}>;
|
|
1229
|
-
readonly PackageExistsErrorType: StructType<{
|
|
1230
|
-
readonly packageName: StringType;
|
|
1231
|
-
readonly version: StringType;
|
|
109
|
+
readonly PackageExistsErrorType: import("@elaraai/east").StructType<{
|
|
110
|
+
readonly packageName: import("@elaraai/east").StringType;
|
|
111
|
+
readonly version: import("@elaraai/east").StringType;
|
|
1232
112
|
}>;
|
|
1233
|
-
readonly PackageInvalidErrorType: StructType<{
|
|
1234
|
-
readonly reason: StringType;
|
|
113
|
+
readonly PackageInvalidErrorType: import("@elaraai/east").StructType<{
|
|
114
|
+
readonly reason: import("@elaraai/east").StringType;
|
|
1235
115
|
}>;
|
|
1236
|
-
readonly DatasetNotFoundErrorType: StructType<{
|
|
1237
|
-
readonly workspace: StringType;
|
|
1238
|
-
readonly path: StringType;
|
|
116
|
+
readonly DatasetNotFoundErrorType: import("@elaraai/east").StructType<{
|
|
117
|
+
readonly workspace: import("@elaraai/east").StringType;
|
|
118
|
+
readonly path: import("@elaraai/east").StringType;
|
|
1239
119
|
}>;
|
|
1240
|
-
readonly TaskNotFoundErrorType: StructType<{
|
|
1241
|
-
readonly task: StringType;
|
|
120
|
+
readonly TaskNotFoundErrorType: import("@elaraai/east").StructType<{
|
|
121
|
+
readonly task: import("@elaraai/east").StringType;
|
|
1242
122
|
}>;
|
|
1243
|
-
readonly ExecutionNotFoundErrorType: StructType<{
|
|
1244
|
-
readonly task: StringType;
|
|
123
|
+
readonly ExecutionNotFoundErrorType: import("@elaraai/east").StructType<{
|
|
124
|
+
readonly task: import("@elaraai/east").StringType;
|
|
1245
125
|
}>;
|
|
1246
|
-
readonly ObjectNotFoundErrorType: StructType<{
|
|
1247
|
-
readonly hash: StringType;
|
|
126
|
+
readonly ObjectNotFoundErrorType: import("@elaraai/east").StructType<{
|
|
127
|
+
readonly hash: import("@elaraai/east").StringType;
|
|
1248
128
|
}>;
|
|
1249
|
-
readonly DataflowErrorType: StructType<{
|
|
1250
|
-
readonly message: StringType;
|
|
129
|
+
readonly DataflowErrorType: import("@elaraai/east").StructType<{
|
|
130
|
+
readonly message: import("@elaraai/east").StringType;
|
|
1251
131
|
}>;
|
|
1252
|
-
readonly PermissionDeniedErrorType: StructType<{
|
|
1253
|
-
readonly path: StringType;
|
|
132
|
+
readonly PermissionDeniedErrorType: import("@elaraai/east").StructType<{
|
|
133
|
+
readonly path: import("@elaraai/east").StringType;
|
|
1254
134
|
}>;
|
|
1255
|
-
readonly InternalErrorType: StructType<{
|
|
1256
|
-
readonly message: StringType;
|
|
135
|
+
readonly InternalErrorType: import("@elaraai/east").StructType<{
|
|
136
|
+
readonly message: import("@elaraai/east").StringType;
|
|
1257
137
|
}>;
|
|
1258
|
-
readonly ResponseType: <T extends EastType>(successType: T) => VariantType<{
|
|
138
|
+
readonly ResponseType: <T extends import("@elaraai/east").EastType>(successType: T) => import("@elaraai/east").VariantType<{
|
|
1259
139
|
readonly success: T;
|
|
1260
|
-
readonly error: VariantType<{
|
|
1261
|
-
readonly repository_not_found: StructType<{
|
|
1262
|
-
readonly repo: StringType;
|
|
1263
|
-
}>;
|
|
1264
|
-
readonly workspace_not_found: StructType<{
|
|
1265
|
-
readonly workspace: StringType;
|
|
1266
|
-
}>;
|
|
1267
|
-
readonly workspace_not_deployed: StructType<{
|
|
1268
|
-
readonly workspace: StringType;
|
|
1269
|
-
}>;
|
|
1270
|
-
readonly workspace_exists: StructType<{
|
|
1271
|
-
readonly workspace: StringType;
|
|
1272
|
-
}>;
|
|
1273
|
-
readonly workspace_locked: StructType<{
|
|
1274
|
-
readonly workspace: StringType;
|
|
1275
|
-
readonly holder: VariantType<{
|
|
1276
|
-
readonly unknown: NullType;
|
|
1277
|
-
readonly known: StructType<{
|
|
1278
|
-
readonly pid: IntegerType;
|
|
1279
|
-
readonly acquiredAt: StringType;
|
|
1280
|
-
readonly bootId: OptionType<StringType>;
|
|
1281
|
-
readonly command: OptionType<StringType>;
|
|
140
|
+
readonly error: import("@elaraai/east").VariantType<{
|
|
141
|
+
readonly repository_not_found: import("@elaraai/east").StructType<{
|
|
142
|
+
readonly repo: import("@elaraai/east").StringType;
|
|
143
|
+
}>;
|
|
144
|
+
readonly workspace_not_found: import("@elaraai/east").StructType<{
|
|
145
|
+
readonly workspace: import("@elaraai/east").StringType;
|
|
146
|
+
}>;
|
|
147
|
+
readonly workspace_not_deployed: import("@elaraai/east").StructType<{
|
|
148
|
+
readonly workspace: import("@elaraai/east").StringType;
|
|
149
|
+
}>;
|
|
150
|
+
readonly workspace_exists: import("@elaraai/east").StructType<{
|
|
151
|
+
readonly workspace: import("@elaraai/east").StringType;
|
|
152
|
+
}>;
|
|
153
|
+
readonly workspace_locked: import("@elaraai/east").StructType<{
|
|
154
|
+
readonly workspace: import("@elaraai/east").StringType;
|
|
155
|
+
readonly holder: import("@elaraai/east").VariantType<{
|
|
156
|
+
readonly unknown: import("@elaraai/east").NullType;
|
|
157
|
+
readonly known: import("@elaraai/east").StructType<{
|
|
158
|
+
readonly pid: import("@elaraai/east").IntegerType;
|
|
159
|
+
readonly acquiredAt: import("@elaraai/east").StringType;
|
|
160
|
+
readonly bootId: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
161
|
+
readonly command: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
1282
162
|
}>;
|
|
1283
163
|
}>;
|
|
1284
164
|
}>;
|
|
1285
|
-
readonly package_not_found: StructType<{
|
|
1286
|
-
readonly packageName: StringType;
|
|
1287
|
-
readonly version: OptionType<StringType>;
|
|
165
|
+
readonly package_not_found: import("@elaraai/east").StructType<{
|
|
166
|
+
readonly packageName: import("@elaraai/east").StringType;
|
|
167
|
+
readonly version: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
1288
168
|
}>;
|
|
1289
|
-
readonly package_exists: StructType<{
|
|
1290
|
-
readonly packageName: StringType;
|
|
1291
|
-
readonly version: StringType;
|
|
169
|
+
readonly package_exists: import("@elaraai/east").StructType<{
|
|
170
|
+
readonly packageName: import("@elaraai/east").StringType;
|
|
171
|
+
readonly version: import("@elaraai/east").StringType;
|
|
1292
172
|
}>;
|
|
1293
|
-
readonly package_invalid: StructType<{
|
|
1294
|
-
readonly reason: StringType;
|
|
173
|
+
readonly package_invalid: import("@elaraai/east").StructType<{
|
|
174
|
+
readonly reason: import("@elaraai/east").StringType;
|
|
1295
175
|
}>;
|
|
1296
|
-
readonly dataset_not_found: StructType<{
|
|
1297
|
-
readonly workspace: StringType;
|
|
1298
|
-
readonly path: StringType;
|
|
176
|
+
readonly dataset_not_found: import("@elaraai/east").StructType<{
|
|
177
|
+
readonly workspace: import("@elaraai/east").StringType;
|
|
178
|
+
readonly path: import("@elaraai/east").StringType;
|
|
1299
179
|
}>;
|
|
1300
|
-
readonly task_not_found: StructType<{
|
|
1301
|
-
readonly task: StringType;
|
|
180
|
+
readonly task_not_found: import("@elaraai/east").StructType<{
|
|
181
|
+
readonly task: import("@elaraai/east").StringType;
|
|
1302
182
|
}>;
|
|
1303
|
-
readonly execution_not_found: StructType<{
|
|
1304
|
-
readonly task: StringType;
|
|
183
|
+
readonly execution_not_found: import("@elaraai/east").StructType<{
|
|
184
|
+
readonly task: import("@elaraai/east").StringType;
|
|
1305
185
|
}>;
|
|
1306
|
-
readonly object_not_found: StructType<{
|
|
1307
|
-
readonly hash: StringType;
|
|
186
|
+
readonly object_not_found: import("@elaraai/east").StructType<{
|
|
187
|
+
readonly hash: import("@elaraai/east").StringType;
|
|
1308
188
|
}>;
|
|
1309
|
-
readonly dataflow_error: StructType<{
|
|
1310
|
-
readonly message: StringType;
|
|
189
|
+
readonly dataflow_error: import("@elaraai/east").StructType<{
|
|
190
|
+
readonly message: import("@elaraai/east").StringType;
|
|
1311
191
|
}>;
|
|
1312
|
-
readonly dataflow_aborted: NullType;
|
|
1313
|
-
readonly permission_denied: StructType<{
|
|
1314
|
-
readonly path: StringType;
|
|
192
|
+
readonly dataflow_aborted: import("@elaraai/east").NullType;
|
|
193
|
+
readonly permission_denied: import("@elaraai/east").StructType<{
|
|
194
|
+
readonly path: import("@elaraai/east").StringType;
|
|
1315
195
|
}>;
|
|
1316
|
-
readonly internal: StructType<{
|
|
1317
|
-
readonly message: StringType;
|
|
196
|
+
readonly internal: import("@elaraai/east").StructType<{
|
|
197
|
+
readonly message: import("@elaraai/east").StringType;
|
|
1318
198
|
}>;
|
|
1319
199
|
}>;
|
|
1320
200
|
}>;
|
|
1321
|
-
readonly RepositoryStatusType: StructType<{
|
|
1322
|
-
readonly path: StringType;
|
|
1323
|
-
readonly objectCount: IntegerType;
|
|
1324
|
-
readonly packageCount: IntegerType;
|
|
1325
|
-
readonly workspaceCount: IntegerType;
|
|
1326
|
-
}>;
|
|
1327
|
-
readonly GcRequestType: StructType<{
|
|
1328
|
-
readonly dryRun: BooleanType;
|
|
1329
|
-
readonly minAge: OptionType<IntegerType>;
|
|
1330
|
-
}>;
|
|
1331
|
-
readonly GcResultType: StructType<{
|
|
1332
|
-
readonly deletedObjects: IntegerType;
|
|
1333
|
-
readonly deletedPartials: IntegerType;
|
|
1334
|
-
readonly retainedObjects: IntegerType;
|
|
1335
|
-
readonly skippedYoung: IntegerType;
|
|
1336
|
-
readonly bytesFreed: IntegerType;
|
|
1337
|
-
}>;
|
|
1338
|
-
readonly AsyncOperationStatusType: VariantType<{
|
|
1339
|
-
readonly running: NullType;
|
|
1340
|
-
readonly succeeded: NullType;
|
|
1341
|
-
readonly failed: NullType;
|
|
1342
|
-
}>;
|
|
1343
|
-
readonly GcStartResultType: StructType<{
|
|
1344
|
-
readonly executionId: StringType;
|
|
1345
|
-
}>;
|
|
1346
|
-
readonly GcStatusResultType: StructType<{
|
|
1347
|
-
readonly status: VariantType<{
|
|
1348
|
-
readonly running: NullType;
|
|
1349
|
-
readonly succeeded: NullType;
|
|
1350
|
-
readonly failed: NullType;
|
|
201
|
+
readonly RepositoryStatusType: import("@elaraai/east").StructType<{
|
|
202
|
+
readonly path: import("@elaraai/east").StringType;
|
|
203
|
+
readonly objectCount: import("@elaraai/east").IntegerType;
|
|
204
|
+
readonly packageCount: import("@elaraai/east").IntegerType;
|
|
205
|
+
readonly workspaceCount: import("@elaraai/east").IntegerType;
|
|
206
|
+
}>;
|
|
207
|
+
readonly GcRequestType: import("@elaraai/east").StructType<{
|
|
208
|
+
readonly dryRun: import("@elaraai/east").BooleanType;
|
|
209
|
+
readonly minAge: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
210
|
+
}>;
|
|
211
|
+
readonly GcResultType: import("@elaraai/east").StructType<{
|
|
212
|
+
readonly deletedObjects: import("@elaraai/east").IntegerType;
|
|
213
|
+
readonly deletedPartials: import("@elaraai/east").IntegerType;
|
|
214
|
+
readonly retainedObjects: import("@elaraai/east").IntegerType;
|
|
215
|
+
readonly skippedYoung: import("@elaraai/east").IntegerType;
|
|
216
|
+
readonly bytesFreed: import("@elaraai/east").IntegerType;
|
|
217
|
+
}>;
|
|
218
|
+
readonly AsyncOperationStatusType: import("@elaraai/east").VariantType<{
|
|
219
|
+
readonly running: import("@elaraai/east").NullType;
|
|
220
|
+
readonly succeeded: import("@elaraai/east").NullType;
|
|
221
|
+
readonly failed: import("@elaraai/east").NullType;
|
|
222
|
+
}>;
|
|
223
|
+
readonly GcStartResultType: import("@elaraai/east").StructType<{
|
|
224
|
+
readonly executionId: import("@elaraai/east").StringType;
|
|
225
|
+
}>;
|
|
226
|
+
readonly GcStatusResultType: import("@elaraai/east").StructType<{
|
|
227
|
+
readonly status: import("@elaraai/east").VariantType<{
|
|
228
|
+
readonly running: import("@elaraai/east").NullType;
|
|
229
|
+
readonly succeeded: import("@elaraai/east").NullType;
|
|
230
|
+
readonly failed: import("@elaraai/east").NullType;
|
|
1351
231
|
}>;
|
|
1352
|
-
readonly stats: OptionType<StructType<{
|
|
1353
|
-
readonly deletedObjects: IntegerType;
|
|
1354
|
-
readonly deletedPartials: IntegerType;
|
|
1355
|
-
readonly retainedObjects: IntegerType;
|
|
1356
|
-
readonly skippedYoung: IntegerType;
|
|
1357
|
-
readonly bytesFreed: IntegerType;
|
|
232
|
+
readonly stats: import("@elaraai/east").OptionType<import("@elaraai/east").StructType<{
|
|
233
|
+
readonly deletedObjects: import("@elaraai/east").IntegerType;
|
|
234
|
+
readonly deletedPartials: import("@elaraai/east").IntegerType;
|
|
235
|
+
readonly retainedObjects: import("@elaraai/east").IntegerType;
|
|
236
|
+
readonly skippedYoung: import("@elaraai/east").IntegerType;
|
|
237
|
+
readonly bytesFreed: import("@elaraai/east").IntegerType;
|
|
1358
238
|
}>>;
|
|
1359
|
-
readonly error: OptionType<StringType>;
|
|
1360
|
-
}>;
|
|
1361
|
-
readonly PackageListItemType: StructType<{
|
|
1362
|
-
readonly name: StringType;
|
|
1363
|
-
readonly version: StringType;
|
|
1364
|
-
}>;
|
|
1365
|
-
readonly PackageImportResultType: StructType<{
|
|
1366
|
-
readonly name: StringType;
|
|
1367
|
-
readonly version: StringType;
|
|
1368
|
-
readonly packageHash: StringType;
|
|
1369
|
-
readonly objectCount: IntegerType;
|
|
1370
|
-
}>;
|
|
1371
|
-
readonly PackageInfoType: StructType<{
|
|
1372
|
-
readonly name: StringType;
|
|
1373
|
-
readonly version: StringType;
|
|
1374
|
-
readonly hash: StringType;
|
|
1375
|
-
}>;
|
|
1376
|
-
readonly PackageDetailsType: StructType<{
|
|
1377
|
-
readonly name: StringType;
|
|
1378
|
-
readonly version: StringType;
|
|
1379
|
-
readonly hash: StringType;
|
|
1380
|
-
readonly tasks: ArrayType<StringType>;
|
|
1381
|
-
readonly dataStructure: import("@elaraai/east").RecursiveType<VariantType<{
|
|
1382
|
-
readonly value: StructType<{
|
|
1383
|
-
readonly type: import("@elaraai/east").RecursiveType<VariantType<{
|
|
239
|
+
readonly error: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
240
|
+
}>;
|
|
241
|
+
readonly PackageListItemType: import("@elaraai/east").StructType<{
|
|
242
|
+
readonly name: import("@elaraai/east").StringType;
|
|
243
|
+
readonly version: import("@elaraai/east").StringType;
|
|
244
|
+
}>;
|
|
245
|
+
readonly PackageImportResultType: import("@elaraai/east").StructType<{
|
|
246
|
+
readonly name: import("@elaraai/east").StringType;
|
|
247
|
+
readonly version: import("@elaraai/east").StringType;
|
|
248
|
+
readonly packageHash: import("@elaraai/east").StringType;
|
|
249
|
+
readonly objectCount: import("@elaraai/east").IntegerType;
|
|
250
|
+
}>;
|
|
251
|
+
readonly PackageInfoType: import("@elaraai/east").StructType<{
|
|
252
|
+
readonly name: import("@elaraai/east").StringType;
|
|
253
|
+
readonly version: import("@elaraai/east").StringType;
|
|
254
|
+
readonly hash: import("@elaraai/east").StringType;
|
|
255
|
+
}>;
|
|
256
|
+
readonly PackageDetailsType: import("@elaraai/east").StructType<{
|
|
257
|
+
readonly name: import("@elaraai/east").StringType;
|
|
258
|
+
readonly version: import("@elaraai/east").StringType;
|
|
259
|
+
readonly hash: import("@elaraai/east").StringType;
|
|
260
|
+
readonly tasks: import("@elaraai/east").ArrayType<import("@elaraai/east").StringType>;
|
|
261
|
+
readonly dataStructure: import("@elaraai/east").RecursiveType<import("@elaraai/east").VariantType<{
|
|
262
|
+
readonly value: import("@elaraai/east").StructType<{
|
|
263
|
+
readonly type: import("@elaraai/east").RecursiveType<import("@elaraai/east").VariantType<{
|
|
1384
264
|
readonly Never: import("@elaraai/east").NullType;
|
|
1385
265
|
readonly Null: import("@elaraai/east").NullType;
|
|
1386
266
|
readonly Boolean: import("@elaraai/east").NullType;
|
|
@@ -1392,597 +272,571 @@ export declare const ApiTypes: {
|
|
|
1392
272
|
readonly Ref: import("@elaraai/east").RecursiveTypeMarker;
|
|
1393
273
|
readonly Array: import("@elaraai/east").RecursiveTypeMarker;
|
|
1394
274
|
readonly Set: import("@elaraai/east").RecursiveTypeMarker;
|
|
1395
|
-
readonly Dict: StructType<{
|
|
275
|
+
readonly Dict: import("@elaraai/east").StructType<{
|
|
1396
276
|
readonly key: import("@elaraai/east").RecursiveTypeMarker;
|
|
1397
277
|
readonly value: import("@elaraai/east").RecursiveTypeMarker;
|
|
1398
278
|
}>;
|
|
1399
|
-
readonly Struct: ArrayType<StructType<{
|
|
1400
|
-
readonly name: StringType;
|
|
279
|
+
readonly Struct: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
|
|
280
|
+
readonly name: import("@elaraai/east").StringType;
|
|
1401
281
|
readonly type: import("@elaraai/east").RecursiveTypeMarker;
|
|
1402
282
|
}>>;
|
|
1403
|
-
readonly Variant: ArrayType<StructType<{
|
|
1404
|
-
readonly name: StringType;
|
|
283
|
+
readonly Variant: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
|
|
284
|
+
readonly name: import("@elaraai/east").StringType;
|
|
1405
285
|
readonly type: import("@elaraai/east").RecursiveTypeMarker;
|
|
1406
286
|
}>>;
|
|
1407
287
|
readonly Recursive: import("@elaraai/east").IntegerType;
|
|
1408
|
-
readonly Function: StructType<{
|
|
1409
|
-
readonly inputs: ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
|
|
288
|
+
readonly Function: import("@elaraai/east").StructType<{
|
|
289
|
+
readonly inputs: import("@elaraai/east").ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
|
|
1410
290
|
readonly output: import("@elaraai/east").RecursiveTypeMarker;
|
|
1411
291
|
}>;
|
|
1412
|
-
readonly AsyncFunction: StructType<{
|
|
1413
|
-
readonly inputs: ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
|
|
292
|
+
readonly AsyncFunction: import("@elaraai/east").StructType<{
|
|
293
|
+
readonly inputs: import("@elaraai/east").ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
|
|
1414
294
|
readonly output: import("@elaraai/east").RecursiveTypeMarker;
|
|
1415
295
|
}>;
|
|
1416
296
|
readonly Vector: import("@elaraai/east").RecursiveTypeMarker;
|
|
1417
297
|
readonly Matrix: import("@elaraai/east").RecursiveTypeMarker;
|
|
1418
298
|
}>>;
|
|
1419
|
-
readonly writable: BooleanType;
|
|
299
|
+
readonly writable: import("@elaraai/east").BooleanType;
|
|
1420
300
|
}>;
|
|
1421
|
-
readonly struct: import("@elaraai/east").DictType<StringType, import("@elaraai/east").RecursiveTypeMarker>;
|
|
301
|
+
readonly struct: import("@elaraai/east").DictType<import("@elaraai/east").StringType, import("@elaraai/east").RecursiveTypeMarker>;
|
|
1422
302
|
}>>;
|
|
1423
303
|
}>;
|
|
1424
|
-
readonly WorkspaceCreateRequestType: StructType<{
|
|
1425
|
-
readonly name: StringType;
|
|
304
|
+
readonly WorkspaceCreateRequestType: import("@elaraai/east").StructType<{
|
|
305
|
+
readonly name: import("@elaraai/east").StringType;
|
|
1426
306
|
}>;
|
|
1427
|
-
readonly WorkspaceInfoType: StructType<{
|
|
1428
|
-
readonly name: StringType;
|
|
1429
|
-
readonly deployed: BooleanType;
|
|
1430
|
-
readonly packageName: OptionType<StringType>;
|
|
1431
|
-
readonly packageVersion: OptionType<StringType>;
|
|
307
|
+
readonly WorkspaceInfoType: import("@elaraai/east").StructType<{
|
|
308
|
+
readonly name: import("@elaraai/east").StringType;
|
|
309
|
+
readonly deployed: import("@elaraai/east").BooleanType;
|
|
310
|
+
readonly packageName: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
311
|
+
readonly packageVersion: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
1432
312
|
}>;
|
|
1433
|
-
readonly WorkspaceDeployRequestType: StructType<{
|
|
1434
|
-
readonly packageRef: StringType;
|
|
313
|
+
readonly WorkspaceDeployRequestType: import("@elaraai/east").StructType<{
|
|
314
|
+
readonly packageRef: import("@elaraai/east").StringType;
|
|
1435
315
|
}>;
|
|
1436
|
-
readonly
|
|
1437
|
-
readonly
|
|
1438
|
-
readonly
|
|
1439
|
-
readonly 'up-to-date': NullType;
|
|
316
|
+
readonly WorkspaceExportRequestType: import("@elaraai/east").StructType<{
|
|
317
|
+
readonly name: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
318
|
+
readonly version: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
1440
319
|
}>;
|
|
1441
|
-
readonly
|
|
1442
|
-
readonly
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
readonly ready: NullType;
|
|
1446
|
-
readonly waiting: StructType<{
|
|
1447
|
-
readonly reason: StringType;
|
|
1448
|
-
}>;
|
|
1449
|
-
readonly 'in-progress': StructType<{
|
|
1450
|
-
/** Process ID of the running task */
|
|
1451
|
-
readonly pid: OptionType<IntegerType>;
|
|
1452
|
-
/** ISO timestamp when execution started */
|
|
1453
|
-
readonly startedAt: OptionType<StringType>;
|
|
1454
|
-
}>;
|
|
1455
|
-
readonly failed: StructType<{
|
|
1456
|
-
/** Process exit code */
|
|
1457
|
-
readonly exitCode: IntegerType;
|
|
1458
|
-
/** ISO timestamp when task completed */
|
|
1459
|
-
readonly completedAt: OptionType<StringType>;
|
|
1460
|
-
}>;
|
|
1461
|
-
readonly error: StructType<{
|
|
1462
|
-
/** Error message */
|
|
1463
|
-
readonly message: StringType;
|
|
1464
|
-
/** ISO timestamp when error occurred */
|
|
1465
|
-
readonly completedAt: OptionType<StringType>;
|
|
1466
|
-
}>;
|
|
1467
|
-
readonly 'stale-running': StructType<{
|
|
1468
|
-
/** Last known process ID */
|
|
1469
|
-
readonly pid: OptionType<IntegerType>;
|
|
1470
|
-
/** ISO timestamp when execution started */
|
|
1471
|
-
readonly startedAt: OptionType<StringType>;
|
|
1472
|
-
}>;
|
|
320
|
+
readonly DatasetStatusType: import("@elaraai/east").VariantType<{
|
|
321
|
+
readonly unset: import("@elaraai/east").NullType;
|
|
322
|
+
readonly stale: import("@elaraai/east").NullType;
|
|
323
|
+
readonly 'up-to-date': import("@elaraai/east").NullType;
|
|
1473
324
|
}>;
|
|
1474
|
-
readonly
|
|
1475
|
-
readonly
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
readonly
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
/** Process ID of the running task */
|
|
1482
|
-
readonly pid: OptionType<IntegerType>;
|
|
1483
|
-
/** ISO timestamp when execution started */
|
|
1484
|
-
readonly startedAt: OptionType<StringType>;
|
|
1485
|
-
}>;
|
|
1486
|
-
readonly TaskStatusFailedType: StructType<{
|
|
1487
|
-
/** Process exit code */
|
|
1488
|
-
readonly exitCode: IntegerType;
|
|
1489
|
-
/** ISO timestamp when task completed */
|
|
1490
|
-
readonly completedAt: OptionType<StringType>;
|
|
1491
|
-
}>;
|
|
1492
|
-
readonly TaskStatusErrorType: StructType<{
|
|
1493
|
-
/** Error message */
|
|
1494
|
-
readonly message: StringType;
|
|
1495
|
-
/** ISO timestamp when error occurred */
|
|
1496
|
-
readonly completedAt: OptionType<StringType>;
|
|
1497
|
-
}>;
|
|
1498
|
-
readonly TaskStatusStaleRunningType: StructType<{
|
|
1499
|
-
/** Last known process ID */
|
|
1500
|
-
readonly pid: OptionType<IntegerType>;
|
|
1501
|
-
/** ISO timestamp when execution started */
|
|
1502
|
-
readonly startedAt: OptionType<StringType>;
|
|
1503
|
-
}>;
|
|
1504
|
-
readonly DatasetStatusInfoType: StructType<{
|
|
1505
|
-
readonly path: StringType;
|
|
1506
|
-
readonly status: VariantType<{
|
|
1507
|
-
readonly unset: NullType;
|
|
1508
|
-
readonly stale: NullType;
|
|
1509
|
-
readonly 'up-to-date': NullType;
|
|
1510
|
-
}>;
|
|
1511
|
-
readonly hash: OptionType<StringType>;
|
|
1512
|
-
readonly isTaskOutput: BooleanType;
|
|
1513
|
-
readonly producedBy: OptionType<StringType>;
|
|
1514
|
-
}>;
|
|
1515
|
-
readonly TaskStatusInfoType: StructType<{
|
|
1516
|
-
readonly name: StringType;
|
|
1517
|
-
readonly hash: StringType;
|
|
1518
|
-
readonly status: VariantType<{
|
|
1519
|
-
readonly 'up-to-date': StructType<{
|
|
1520
|
-
readonly cached: BooleanType;
|
|
1521
|
-
}>;
|
|
1522
|
-
readonly ready: NullType;
|
|
1523
|
-
readonly waiting: StructType<{
|
|
1524
|
-
readonly reason: StringType;
|
|
1525
|
-
}>;
|
|
1526
|
-
readonly 'in-progress': StructType<{
|
|
1527
|
-
/** Process ID of the running task */
|
|
1528
|
-
readonly pid: OptionType<IntegerType>;
|
|
1529
|
-
/** ISO timestamp when execution started */
|
|
1530
|
-
readonly startedAt: OptionType<StringType>;
|
|
1531
|
-
}>;
|
|
1532
|
-
readonly failed: StructType<{
|
|
1533
|
-
/** Process exit code */
|
|
1534
|
-
readonly exitCode: IntegerType;
|
|
1535
|
-
/** ISO timestamp when task completed */
|
|
1536
|
-
readonly completedAt: OptionType<StringType>;
|
|
1537
|
-
}>;
|
|
1538
|
-
readonly error: StructType<{
|
|
1539
|
-
/** Error message */
|
|
1540
|
-
readonly message: StringType;
|
|
1541
|
-
/** ISO timestamp when error occurred */
|
|
1542
|
-
readonly completedAt: OptionType<StringType>;
|
|
1543
|
-
}>;
|
|
1544
|
-
readonly 'stale-running': StructType<{
|
|
1545
|
-
/** Last known process ID */
|
|
1546
|
-
readonly pid: OptionType<IntegerType>;
|
|
1547
|
-
/** ISO timestamp when execution started */
|
|
1548
|
-
readonly startedAt: OptionType<StringType>;
|
|
1549
|
-
}>;
|
|
1550
|
-
}>;
|
|
1551
|
-
readonly inputs: ArrayType<StringType>;
|
|
1552
|
-
readonly output: StringType;
|
|
1553
|
-
readonly dependsOn: ArrayType<StringType>;
|
|
1554
|
-
}>;
|
|
1555
|
-
readonly WorkspaceStatusSummaryType: StructType<{
|
|
1556
|
-
/** Dataset status counts */
|
|
1557
|
-
readonly datasets: StructType<{
|
|
1558
|
-
readonly total: IntegerType;
|
|
1559
|
-
readonly unset: IntegerType;
|
|
1560
|
-
readonly stale: IntegerType;
|
|
1561
|
-
readonly upToDate: IntegerType;
|
|
1562
|
-
}>;
|
|
1563
|
-
/** Task status counts */
|
|
1564
|
-
readonly tasks: StructType<{
|
|
1565
|
-
readonly total: IntegerType;
|
|
1566
|
-
readonly upToDate: IntegerType;
|
|
1567
|
-
readonly ready: IntegerType;
|
|
1568
|
-
readonly waiting: IntegerType;
|
|
1569
|
-
readonly inProgress: IntegerType;
|
|
1570
|
-
readonly failed: IntegerType;
|
|
1571
|
-
readonly error: IntegerType;
|
|
1572
|
-
readonly staleRunning: IntegerType;
|
|
325
|
+
readonly TaskStatusType: import("@elaraai/east").VariantType<{
|
|
326
|
+
readonly 'up-to-date': import("@elaraai/east").StructType<{
|
|
327
|
+
readonly cached: import("@elaraai/east").BooleanType;
|
|
328
|
+
}>;
|
|
329
|
+
readonly ready: import("@elaraai/east").NullType;
|
|
330
|
+
readonly waiting: import("@elaraai/east").StructType<{
|
|
331
|
+
readonly reason: import("@elaraai/east").StringType;
|
|
1573
332
|
}>;
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
readonly
|
|
1580
|
-
readonly
|
|
1581
|
-
|
|
333
|
+
readonly 'in-progress': import("@elaraai/east").StructType<{
|
|
334
|
+
readonly pid: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
335
|
+
readonly startedAt: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
336
|
+
}>;
|
|
337
|
+
readonly failed: import("@elaraai/east").StructType<{
|
|
338
|
+
readonly exitCode: import("@elaraai/east").IntegerType;
|
|
339
|
+
readonly completedAt: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
340
|
+
}>;
|
|
341
|
+
readonly error: import("@elaraai/east").StructType<{
|
|
342
|
+
readonly message: import("@elaraai/east").StringType;
|
|
343
|
+
readonly completedAt: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
344
|
+
}>;
|
|
345
|
+
readonly 'stale-running': import("@elaraai/east").StructType<{
|
|
346
|
+
readonly pid: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
347
|
+
readonly startedAt: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
348
|
+
}>;
|
|
349
|
+
}>;
|
|
350
|
+
readonly TaskStatusUpToDateType: import("@elaraai/east").StructType<{
|
|
351
|
+
readonly cached: import("@elaraai/east").BooleanType;
|
|
352
|
+
}>;
|
|
353
|
+
readonly TaskStatusWaitingType: import("@elaraai/east").StructType<{
|
|
354
|
+
readonly reason: import("@elaraai/east").StringType;
|
|
355
|
+
}>;
|
|
356
|
+
readonly TaskStatusInProgressType: import("@elaraai/east").StructType<{
|
|
357
|
+
readonly pid: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
358
|
+
readonly startedAt: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
359
|
+
}>;
|
|
360
|
+
readonly TaskStatusFailedType: import("@elaraai/east").StructType<{
|
|
361
|
+
readonly exitCode: import("@elaraai/east").IntegerType;
|
|
362
|
+
readonly completedAt: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
363
|
+
}>;
|
|
364
|
+
readonly TaskStatusErrorType: import("@elaraai/east").StructType<{
|
|
365
|
+
readonly message: import("@elaraai/east").StringType;
|
|
366
|
+
readonly completedAt: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
367
|
+
}>;
|
|
368
|
+
readonly TaskStatusStaleRunningType: import("@elaraai/east").StructType<{
|
|
369
|
+
readonly pid: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
370
|
+
readonly startedAt: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
371
|
+
}>;
|
|
372
|
+
readonly DatasetStatusInfoType: import("@elaraai/east").StructType<{
|
|
373
|
+
readonly path: import("@elaraai/east").StringType;
|
|
374
|
+
readonly status: import("@elaraai/east").VariantType<{
|
|
375
|
+
readonly unset: import("@elaraai/east").NullType;
|
|
376
|
+
readonly stale: import("@elaraai/east").NullType;
|
|
377
|
+
readonly "up-to-date": import("@elaraai/east").NullType;
|
|
378
|
+
}>;
|
|
379
|
+
readonly hash: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
380
|
+
readonly isTaskOutput: import("@elaraai/east").BooleanType;
|
|
381
|
+
readonly producedBy: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
382
|
+
}>;
|
|
383
|
+
readonly TaskStatusInfoType: import("@elaraai/east").StructType<{
|
|
384
|
+
readonly name: import("@elaraai/east").StringType;
|
|
385
|
+
readonly hash: import("@elaraai/east").StringType;
|
|
386
|
+
readonly status: import("@elaraai/east").VariantType<{
|
|
387
|
+
readonly "up-to-date": import("@elaraai/east").StructType<{
|
|
388
|
+
readonly cached: import("@elaraai/east").BooleanType;
|
|
389
|
+
}>;
|
|
390
|
+
readonly ready: import("@elaraai/east").NullType;
|
|
391
|
+
readonly waiting: import("@elaraai/east").StructType<{
|
|
392
|
+
readonly reason: import("@elaraai/east").StringType;
|
|
393
|
+
}>;
|
|
394
|
+
readonly "in-progress": import("@elaraai/east").StructType<{
|
|
395
|
+
readonly pid: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
396
|
+
readonly startedAt: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
397
|
+
}>;
|
|
398
|
+
readonly failed: import("@elaraai/east").StructType<{
|
|
399
|
+
readonly exitCode: import("@elaraai/east").IntegerType;
|
|
400
|
+
readonly completedAt: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
401
|
+
}>;
|
|
402
|
+
readonly error: import("@elaraai/east").StructType<{
|
|
403
|
+
readonly message: import("@elaraai/east").StringType;
|
|
404
|
+
readonly completedAt: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
405
|
+
}>;
|
|
406
|
+
readonly "stale-running": import("@elaraai/east").StructType<{
|
|
407
|
+
readonly pid: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
408
|
+
readonly startedAt: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
409
|
+
}>;
|
|
410
|
+
}>;
|
|
411
|
+
readonly inputs: import("@elaraai/east").ArrayType<import("@elaraai/east").StringType>;
|
|
412
|
+
readonly output: import("@elaraai/east").StringType;
|
|
413
|
+
readonly dependsOn: import("@elaraai/east").ArrayType<import("@elaraai/east").StringType>;
|
|
414
|
+
}>;
|
|
415
|
+
readonly WorkspaceStatusSummaryType: import("@elaraai/east").StructType<{
|
|
416
|
+
readonly datasets: import("@elaraai/east").StructType<{
|
|
417
|
+
readonly total: import("@elaraai/east").IntegerType;
|
|
418
|
+
readonly unset: import("@elaraai/east").IntegerType;
|
|
419
|
+
readonly stale: import("@elaraai/east").IntegerType;
|
|
420
|
+
readonly upToDate: import("@elaraai/east").IntegerType;
|
|
421
|
+
}>;
|
|
422
|
+
readonly tasks: import("@elaraai/east").StructType<{
|
|
423
|
+
readonly total: import("@elaraai/east").IntegerType;
|
|
424
|
+
readonly upToDate: import("@elaraai/east").IntegerType;
|
|
425
|
+
readonly ready: import("@elaraai/east").IntegerType;
|
|
426
|
+
readonly waiting: import("@elaraai/east").IntegerType;
|
|
427
|
+
readonly inProgress: import("@elaraai/east").IntegerType;
|
|
428
|
+
readonly failed: import("@elaraai/east").IntegerType;
|
|
429
|
+
readonly error: import("@elaraai/east").IntegerType;
|
|
430
|
+
readonly staleRunning: import("@elaraai/east").IntegerType;
|
|
431
|
+
}>;
|
|
432
|
+
}>;
|
|
433
|
+
readonly WorkspaceStatusResultType: import("@elaraai/east").StructType<{
|
|
434
|
+
readonly workspace: import("@elaraai/east").StringType;
|
|
435
|
+
readonly lock: import("@elaraai/east").OptionType<import("@elaraai/east").StructType<{
|
|
436
|
+
readonly pid: import("@elaraai/east").IntegerType;
|
|
437
|
+
readonly acquiredAt: import("@elaraai/east").StringType;
|
|
438
|
+
readonly bootId: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
439
|
+
readonly command: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
1582
440
|
}>>;
|
|
1583
|
-
readonly datasets: ArrayType<StructType<{
|
|
1584
|
-
readonly path: StringType;
|
|
1585
|
-
readonly status: VariantType<{
|
|
1586
|
-
readonly unset: NullType;
|
|
1587
|
-
readonly stale: NullType;
|
|
1588
|
-
readonly
|
|
1589
|
-
}>;
|
|
1590
|
-
readonly hash: OptionType<StringType>;
|
|
1591
|
-
readonly isTaskOutput: BooleanType;
|
|
1592
|
-
readonly producedBy: OptionType<StringType>;
|
|
441
|
+
readonly datasets: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
|
|
442
|
+
readonly path: import("@elaraai/east").StringType;
|
|
443
|
+
readonly status: import("@elaraai/east").VariantType<{
|
|
444
|
+
readonly unset: import("@elaraai/east").NullType;
|
|
445
|
+
readonly stale: import("@elaraai/east").NullType;
|
|
446
|
+
readonly "up-to-date": import("@elaraai/east").NullType;
|
|
447
|
+
}>;
|
|
448
|
+
readonly hash: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
449
|
+
readonly isTaskOutput: import("@elaraai/east").BooleanType;
|
|
450
|
+
readonly producedBy: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
1593
451
|
}>>;
|
|
1594
|
-
readonly tasks: ArrayType<StructType<{
|
|
1595
|
-
readonly name: StringType;
|
|
1596
|
-
readonly hash: StringType;
|
|
1597
|
-
readonly status: VariantType<{
|
|
1598
|
-
readonly
|
|
1599
|
-
readonly cached: BooleanType;
|
|
452
|
+
readonly tasks: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
|
|
453
|
+
readonly name: import("@elaraai/east").StringType;
|
|
454
|
+
readonly hash: import("@elaraai/east").StringType;
|
|
455
|
+
readonly status: import("@elaraai/east").VariantType<{
|
|
456
|
+
readonly "up-to-date": import("@elaraai/east").StructType<{
|
|
457
|
+
readonly cached: import("@elaraai/east").BooleanType;
|
|
1600
458
|
}>;
|
|
1601
|
-
readonly ready: NullType;
|
|
1602
|
-
readonly waiting: StructType<{
|
|
1603
|
-
readonly reason: StringType;
|
|
459
|
+
readonly ready: import("@elaraai/east").NullType;
|
|
460
|
+
readonly waiting: import("@elaraai/east").StructType<{
|
|
461
|
+
readonly reason: import("@elaraai/east").StringType;
|
|
1604
462
|
}>;
|
|
1605
|
-
readonly
|
|
1606
|
-
|
|
1607
|
-
readonly
|
|
1608
|
-
/** ISO timestamp when execution started */
|
|
1609
|
-
readonly startedAt: OptionType<StringType>;
|
|
463
|
+
readonly "in-progress": import("@elaraai/east").StructType<{
|
|
464
|
+
readonly pid: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
465
|
+
readonly startedAt: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
1610
466
|
}>;
|
|
1611
|
-
readonly failed: StructType<{
|
|
1612
|
-
|
|
1613
|
-
readonly
|
|
1614
|
-
/** ISO timestamp when task completed */
|
|
1615
|
-
readonly completedAt: OptionType<StringType>;
|
|
467
|
+
readonly failed: import("@elaraai/east").StructType<{
|
|
468
|
+
readonly exitCode: import("@elaraai/east").IntegerType;
|
|
469
|
+
readonly completedAt: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
1616
470
|
}>;
|
|
1617
|
-
readonly error: StructType<{
|
|
1618
|
-
|
|
1619
|
-
readonly
|
|
1620
|
-
/** ISO timestamp when error occurred */
|
|
1621
|
-
readonly completedAt: OptionType<StringType>;
|
|
471
|
+
readonly error: import("@elaraai/east").StructType<{
|
|
472
|
+
readonly message: import("@elaraai/east").StringType;
|
|
473
|
+
readonly completedAt: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
1622
474
|
}>;
|
|
1623
|
-
readonly
|
|
1624
|
-
|
|
1625
|
-
readonly
|
|
1626
|
-
/** ISO timestamp when execution started */
|
|
1627
|
-
readonly startedAt: OptionType<StringType>;
|
|
475
|
+
readonly "stale-running": import("@elaraai/east").StructType<{
|
|
476
|
+
readonly pid: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
477
|
+
readonly startedAt: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
1628
478
|
}>;
|
|
1629
479
|
}>;
|
|
1630
|
-
readonly inputs: ArrayType<StringType>;
|
|
1631
|
-
readonly output: StringType;
|
|
1632
|
-
readonly dependsOn: ArrayType<StringType>;
|
|
480
|
+
readonly inputs: import("@elaraai/east").ArrayType<import("@elaraai/east").StringType>;
|
|
481
|
+
readonly output: import("@elaraai/east").StringType;
|
|
482
|
+
readonly dependsOn: import("@elaraai/east").ArrayType<import("@elaraai/east").StringType>;
|
|
1633
483
|
}>>;
|
|
1634
|
-
readonly summary: StructType<{
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
readonly
|
|
1638
|
-
readonly
|
|
1639
|
-
readonly
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
readonly
|
|
1645
|
-
readonly
|
|
1646
|
-
readonly
|
|
1647
|
-
readonly
|
|
1648
|
-
readonly
|
|
1649
|
-
readonly
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
readonly
|
|
1661
|
-
readonly
|
|
1662
|
-
|
|
1663
|
-
readonly inputs: ArrayType<ArrayType<VariantType<{
|
|
1664
|
-
readonly field: StringType;
|
|
484
|
+
readonly summary: import("@elaraai/east").StructType<{
|
|
485
|
+
readonly datasets: import("@elaraai/east").StructType<{
|
|
486
|
+
readonly total: import("@elaraai/east").IntegerType;
|
|
487
|
+
readonly unset: import("@elaraai/east").IntegerType;
|
|
488
|
+
readonly stale: import("@elaraai/east").IntegerType;
|
|
489
|
+
readonly upToDate: import("@elaraai/east").IntegerType;
|
|
490
|
+
}>;
|
|
491
|
+
readonly tasks: import("@elaraai/east").StructType<{
|
|
492
|
+
readonly total: import("@elaraai/east").IntegerType;
|
|
493
|
+
readonly upToDate: import("@elaraai/east").IntegerType;
|
|
494
|
+
readonly ready: import("@elaraai/east").IntegerType;
|
|
495
|
+
readonly waiting: import("@elaraai/east").IntegerType;
|
|
496
|
+
readonly inProgress: import("@elaraai/east").IntegerType;
|
|
497
|
+
readonly failed: import("@elaraai/east").IntegerType;
|
|
498
|
+
readonly error: import("@elaraai/east").IntegerType;
|
|
499
|
+
readonly staleRunning: import("@elaraai/east").IntegerType;
|
|
500
|
+
}>;
|
|
501
|
+
}>;
|
|
502
|
+
}>;
|
|
503
|
+
readonly TaskListItemType: import("@elaraai/east").StructType<{
|
|
504
|
+
readonly name: import("@elaraai/east").StringType;
|
|
505
|
+
readonly hash: import("@elaraai/east").StringType;
|
|
506
|
+
}>;
|
|
507
|
+
readonly TaskDetailsType: import("@elaraai/east").StructType<{
|
|
508
|
+
readonly name: import("@elaraai/east").StringType;
|
|
509
|
+
readonly hash: import("@elaraai/east").StringType;
|
|
510
|
+
readonly commandIr: import("@elaraai/east").StringType;
|
|
511
|
+
readonly inputs: import("@elaraai/east").ArrayType<import("@elaraai/east").ArrayType<import("@elaraai/east").VariantType<{
|
|
512
|
+
readonly field: import("@elaraai/east").StringType;
|
|
1665
513
|
}>>>;
|
|
1666
|
-
readonly output: ArrayType<VariantType<{
|
|
1667
|
-
readonly field: StringType;
|
|
514
|
+
readonly output: import("@elaraai/east").ArrayType<import("@elaraai/east").VariantType<{
|
|
515
|
+
readonly field: import("@elaraai/east").StringType;
|
|
1668
516
|
}>>;
|
|
1669
517
|
}>;
|
|
1670
|
-
readonly DataflowRequestType: StructType<{
|
|
1671
|
-
readonly concurrency: OptionType<IntegerType>;
|
|
1672
|
-
readonly force: BooleanType;
|
|
1673
|
-
readonly filter: OptionType<StringType>;
|
|
1674
|
-
}>;
|
|
1675
|
-
readonly
|
|
1676
|
-
readonly
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
readonly DataflowGraphType: StructType<{
|
|
1683
|
-
readonly tasks: ArrayType<StructType<{
|
|
1684
|
-
readonly name: StringType;
|
|
1685
|
-
readonly hash: StringType;
|
|
1686
|
-
readonly inputs: ArrayType<StringType>;
|
|
1687
|
-
readonly output: StringType;
|
|
1688
|
-
readonly dependsOn: ArrayType<StringType>;
|
|
518
|
+
readonly DataflowRequestType: import("@elaraai/east").StructType<{
|
|
519
|
+
readonly concurrency: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
520
|
+
readonly force: import("@elaraai/east").BooleanType;
|
|
521
|
+
readonly filter: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
522
|
+
}>;
|
|
523
|
+
readonly DataflowGraphType: import("@elaraai/east").StructType<{
|
|
524
|
+
readonly tasks: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
|
|
525
|
+
readonly name: import("@elaraai/east").StringType;
|
|
526
|
+
readonly hash: import("@elaraai/east").StringType;
|
|
527
|
+
readonly inputs: import("@elaraai/east").ArrayType<import("@elaraai/east").StringType>;
|
|
528
|
+
readonly output: import("@elaraai/east").StringType;
|
|
529
|
+
readonly dependsOn: import("@elaraai/east").ArrayType<import("@elaraai/east").StringType>;
|
|
1689
530
|
}>>;
|
|
1690
531
|
}>;
|
|
1691
|
-
readonly
|
|
1692
|
-
readonly
|
|
1693
|
-
readonly
|
|
1694
|
-
readonly
|
|
1695
|
-
readonly
|
|
1696
|
-
readonly
|
|
1697
|
-
}>;
|
|
1698
|
-
readonly
|
|
1699
|
-
readonly
|
|
1700
|
-
readonly
|
|
1701
|
-
readonly
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
readonly
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
readonly
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
532
|
+
readonly DataflowGraphTaskType: import("@elaraai/east").StructType<{
|
|
533
|
+
readonly name: import("@elaraai/east").StringType;
|
|
534
|
+
readonly hash: import("@elaraai/east").StringType;
|
|
535
|
+
readonly inputs: import("@elaraai/east").ArrayType<import("@elaraai/east").StringType>;
|
|
536
|
+
readonly output: import("@elaraai/east").StringType;
|
|
537
|
+
readonly dependsOn: import("@elaraai/east").ArrayType<import("@elaraai/east").StringType>;
|
|
538
|
+
}>;
|
|
539
|
+
readonly LogChunkType: import("@elaraai/east").StructType<{
|
|
540
|
+
readonly data: import("@elaraai/east").StringType;
|
|
541
|
+
readonly offset: import("@elaraai/east").IntegerType;
|
|
542
|
+
readonly size: import("@elaraai/east").IntegerType;
|
|
543
|
+
readonly totalSize: import("@elaraai/east").IntegerType;
|
|
544
|
+
readonly complete: import("@elaraai/east").BooleanType;
|
|
545
|
+
}>;
|
|
546
|
+
readonly TaskExecutionResultType: import("@elaraai/east").StructType<{
|
|
547
|
+
readonly name: import("@elaraai/east").StringType;
|
|
548
|
+
readonly cached: import("@elaraai/east").BooleanType;
|
|
549
|
+
readonly state: import("@elaraai/east").VariantType<{
|
|
550
|
+
readonly success: import("@elaraai/east").NullType;
|
|
551
|
+
readonly failed: import("@elaraai/east").StructType<{
|
|
552
|
+
readonly exitCode: import("@elaraai/east").IntegerType;
|
|
553
|
+
}>;
|
|
554
|
+
readonly error: import("@elaraai/east").StructType<{
|
|
555
|
+
readonly message: import("@elaraai/east").StringType;
|
|
556
|
+
}>;
|
|
557
|
+
readonly skipped: import("@elaraai/east").NullType;
|
|
558
|
+
}>;
|
|
559
|
+
readonly duration: import("@elaraai/east").FloatType;
|
|
560
|
+
}>;
|
|
561
|
+
readonly DataflowResultType: import("@elaraai/east").StructType<{
|
|
562
|
+
readonly success: import("@elaraai/east").BooleanType;
|
|
563
|
+
readonly executed: import("@elaraai/east").IntegerType;
|
|
564
|
+
readonly cached: import("@elaraai/east").IntegerType;
|
|
565
|
+
readonly failed: import("@elaraai/east").IntegerType;
|
|
566
|
+
readonly skipped: import("@elaraai/east").IntegerType;
|
|
567
|
+
readonly tasks: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
|
|
568
|
+
readonly name: import("@elaraai/east").StringType;
|
|
569
|
+
readonly cached: import("@elaraai/east").BooleanType;
|
|
570
|
+
readonly state: import("@elaraai/east").VariantType<{
|
|
571
|
+
readonly success: import("@elaraai/east").NullType;
|
|
572
|
+
readonly failed: import("@elaraai/east").StructType<{
|
|
573
|
+
readonly exitCode: import("@elaraai/east").IntegerType;
|
|
1726
574
|
}>;
|
|
1727
|
-
readonly error: StructType<{
|
|
1728
|
-
readonly message: StringType;
|
|
575
|
+
readonly error: import("@elaraai/east").StructType<{
|
|
576
|
+
readonly message: import("@elaraai/east").StringType;
|
|
1729
577
|
}>;
|
|
1730
|
-
readonly skipped: NullType;
|
|
578
|
+
readonly skipped: import("@elaraai/east").NullType;
|
|
1731
579
|
}>;
|
|
1732
|
-
readonly duration: FloatType;
|
|
580
|
+
readonly duration: import("@elaraai/east").FloatType;
|
|
1733
581
|
}>>;
|
|
1734
|
-
readonly duration: FloatType;
|
|
1735
|
-
}>;
|
|
1736
|
-
readonly DataflowEventType: VariantType<{
|
|
1737
|
-
readonly start: StructType<{
|
|
1738
|
-
readonly task: StringType;
|
|
1739
|
-
readonly timestamp: StringType;
|
|
1740
|
-
}>;
|
|
1741
|
-
readonly complete: StructType<{
|
|
1742
|
-
readonly task: StringType;
|
|
1743
|
-
readonly timestamp: StringType;
|
|
1744
|
-
readonly duration: FloatType;
|
|
1745
|
-
}>;
|
|
1746
|
-
readonly cached: StructType<{
|
|
1747
|
-
readonly task: StringType;
|
|
1748
|
-
readonly timestamp: StringType;
|
|
1749
|
-
}>;
|
|
1750
|
-
readonly failed: StructType<{
|
|
1751
|
-
readonly task: StringType;
|
|
1752
|
-
readonly timestamp: StringType;
|
|
1753
|
-
readonly duration: FloatType;
|
|
1754
|
-
readonly exitCode: IntegerType;
|
|
1755
|
-
}>;
|
|
1756
|
-
readonly error: StructType<{
|
|
1757
|
-
readonly task: StringType;
|
|
1758
|
-
readonly timestamp: StringType;
|
|
1759
|
-
readonly message: StringType;
|
|
1760
|
-
}>;
|
|
1761
|
-
readonly input_unavailable: StructType<{
|
|
1762
|
-
readonly task: StringType;
|
|
1763
|
-
readonly timestamp: StringType;
|
|
1764
|
-
readonly reason: StringType;
|
|
1765
|
-
}>;
|
|
1766
|
-
}>;
|
|
1767
|
-
readonly ExecutionStatusType: VariantType<{
|
|
1768
|
-
readonly running: NullType;
|
|
1769
|
-
readonly completed: NullType;
|
|
1770
|
-
readonly failed: NullType;
|
|
1771
|
-
readonly aborted: NullType;
|
|
1772
|
-
}>;
|
|
1773
|
-
readonly DataflowExecutionSummaryType: StructType<{
|
|
1774
|
-
readonly executed: IntegerType;
|
|
1775
|
-
readonly cached: IntegerType;
|
|
1776
|
-
readonly failed: IntegerType;
|
|
1777
|
-
readonly skipped: IntegerType;
|
|
1778
|
-
readonly duration: FloatType;
|
|
1779
|
-
}>;
|
|
1780
|
-
readonly DataflowExecutionStateType: StructType<{
|
|
1781
|
-
readonly status: VariantType<{
|
|
1782
|
-
readonly running: NullType;
|
|
1783
|
-
readonly completed: NullType;
|
|
1784
|
-
readonly failed: NullType;
|
|
1785
|
-
readonly aborted: NullType;
|
|
1786
|
-
}>;
|
|
1787
|
-
readonly startedAt: StringType;
|
|
1788
|
-
readonly completedAt: OptionType<StringType>;
|
|
1789
|
-
readonly summary: OptionType<StructType<{
|
|
1790
|
-
readonly executed: IntegerType;
|
|
1791
|
-
readonly cached: IntegerType;
|
|
1792
|
-
readonly failed: IntegerType;
|
|
1793
|
-
readonly skipped: IntegerType;
|
|
1794
|
-
readonly duration: FloatType;
|
|
582
|
+
readonly duration: import("@elaraai/east").FloatType;
|
|
583
|
+
}>;
|
|
584
|
+
readonly DataflowEventType: import("@elaraai/east").VariantType<{
|
|
585
|
+
readonly start: import("@elaraai/east").StructType<{
|
|
586
|
+
readonly task: import("@elaraai/east").StringType;
|
|
587
|
+
readonly timestamp: import("@elaraai/east").StringType;
|
|
588
|
+
}>;
|
|
589
|
+
readonly complete: import("@elaraai/east").StructType<{
|
|
590
|
+
readonly task: import("@elaraai/east").StringType;
|
|
591
|
+
readonly timestamp: import("@elaraai/east").StringType;
|
|
592
|
+
readonly duration: import("@elaraai/east").FloatType;
|
|
593
|
+
}>;
|
|
594
|
+
readonly cached: import("@elaraai/east").StructType<{
|
|
595
|
+
readonly task: import("@elaraai/east").StringType;
|
|
596
|
+
readonly timestamp: import("@elaraai/east").StringType;
|
|
597
|
+
}>;
|
|
598
|
+
readonly failed: import("@elaraai/east").StructType<{
|
|
599
|
+
readonly task: import("@elaraai/east").StringType;
|
|
600
|
+
readonly timestamp: import("@elaraai/east").StringType;
|
|
601
|
+
readonly duration: import("@elaraai/east").FloatType;
|
|
602
|
+
readonly exitCode: import("@elaraai/east").IntegerType;
|
|
603
|
+
}>;
|
|
604
|
+
readonly error: import("@elaraai/east").StructType<{
|
|
605
|
+
readonly task: import("@elaraai/east").StringType;
|
|
606
|
+
readonly timestamp: import("@elaraai/east").StringType;
|
|
607
|
+
readonly message: import("@elaraai/east").StringType;
|
|
608
|
+
}>;
|
|
609
|
+
readonly input_unavailable: import("@elaraai/east").StructType<{
|
|
610
|
+
readonly task: import("@elaraai/east").StringType;
|
|
611
|
+
readonly timestamp: import("@elaraai/east").StringType;
|
|
612
|
+
readonly reason: import("@elaraai/east").StringType;
|
|
613
|
+
}>;
|
|
614
|
+
}>;
|
|
615
|
+
readonly ExecutionStatusType: import("@elaraai/east").VariantType<{
|
|
616
|
+
readonly running: import("@elaraai/east").NullType;
|
|
617
|
+
readonly completed: import("@elaraai/east").NullType;
|
|
618
|
+
readonly failed: import("@elaraai/east").NullType;
|
|
619
|
+
readonly aborted: import("@elaraai/east").NullType;
|
|
620
|
+
}>;
|
|
621
|
+
readonly DataflowExecutionSummaryType: import("@elaraai/east").StructType<{
|
|
622
|
+
readonly executed: import("@elaraai/east").IntegerType;
|
|
623
|
+
readonly cached: import("@elaraai/east").IntegerType;
|
|
624
|
+
readonly failed: import("@elaraai/east").IntegerType;
|
|
625
|
+
readonly skipped: import("@elaraai/east").IntegerType;
|
|
626
|
+
readonly duration: import("@elaraai/east").FloatType;
|
|
627
|
+
}>;
|
|
628
|
+
readonly DataflowExecutionStateType: import("@elaraai/east").StructType<{
|
|
629
|
+
readonly status: import("@elaraai/east").VariantType<{
|
|
630
|
+
readonly running: import("@elaraai/east").NullType;
|
|
631
|
+
readonly completed: import("@elaraai/east").NullType;
|
|
632
|
+
readonly failed: import("@elaraai/east").NullType;
|
|
633
|
+
readonly aborted: import("@elaraai/east").NullType;
|
|
634
|
+
}>;
|
|
635
|
+
readonly startedAt: import("@elaraai/east").StringType;
|
|
636
|
+
readonly completedAt: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
637
|
+
readonly summary: import("@elaraai/east").OptionType<import("@elaraai/east").StructType<{
|
|
638
|
+
readonly executed: import("@elaraai/east").IntegerType;
|
|
639
|
+
readonly cached: import("@elaraai/east").IntegerType;
|
|
640
|
+
readonly failed: import("@elaraai/east").IntegerType;
|
|
641
|
+
readonly skipped: import("@elaraai/east").IntegerType;
|
|
642
|
+
readonly duration: import("@elaraai/east").FloatType;
|
|
1795
643
|
}>>;
|
|
1796
|
-
readonly events: ArrayType<VariantType<{
|
|
1797
|
-
readonly start: StructType<{
|
|
1798
|
-
readonly task: StringType;
|
|
1799
|
-
readonly timestamp: StringType;
|
|
1800
|
-
}>;
|
|
1801
|
-
readonly complete: StructType<{
|
|
1802
|
-
readonly task: StringType;
|
|
1803
|
-
readonly timestamp: StringType;
|
|
1804
|
-
readonly duration: FloatType;
|
|
1805
|
-
}>;
|
|
1806
|
-
readonly cached: StructType<{
|
|
1807
|
-
readonly task: StringType;
|
|
1808
|
-
readonly timestamp: StringType;
|
|
1809
|
-
}>;
|
|
1810
|
-
readonly failed: StructType<{
|
|
1811
|
-
readonly task: StringType;
|
|
1812
|
-
readonly timestamp: StringType;
|
|
1813
|
-
readonly duration: FloatType;
|
|
1814
|
-
readonly exitCode: IntegerType;
|
|
1815
|
-
}>;
|
|
1816
|
-
readonly error: StructType<{
|
|
1817
|
-
readonly task: StringType;
|
|
1818
|
-
readonly timestamp: StringType;
|
|
1819
|
-
readonly message: StringType;
|
|
1820
|
-
}>;
|
|
1821
|
-
readonly input_unavailable: StructType<{
|
|
1822
|
-
readonly task: StringType;
|
|
1823
|
-
readonly timestamp: StringType;
|
|
1824
|
-
readonly reason: StringType;
|
|
644
|
+
readonly events: import("@elaraai/east").ArrayType<import("@elaraai/east").VariantType<{
|
|
645
|
+
readonly start: import("@elaraai/east").StructType<{
|
|
646
|
+
readonly task: import("@elaraai/east").StringType;
|
|
647
|
+
readonly timestamp: import("@elaraai/east").StringType;
|
|
648
|
+
}>;
|
|
649
|
+
readonly complete: import("@elaraai/east").StructType<{
|
|
650
|
+
readonly task: import("@elaraai/east").StringType;
|
|
651
|
+
readonly timestamp: import("@elaraai/east").StringType;
|
|
652
|
+
readonly duration: import("@elaraai/east").FloatType;
|
|
653
|
+
}>;
|
|
654
|
+
readonly cached: import("@elaraai/east").StructType<{
|
|
655
|
+
readonly task: import("@elaraai/east").StringType;
|
|
656
|
+
readonly timestamp: import("@elaraai/east").StringType;
|
|
657
|
+
}>;
|
|
658
|
+
readonly failed: import("@elaraai/east").StructType<{
|
|
659
|
+
readonly task: import("@elaraai/east").StringType;
|
|
660
|
+
readonly timestamp: import("@elaraai/east").StringType;
|
|
661
|
+
readonly duration: import("@elaraai/east").FloatType;
|
|
662
|
+
readonly exitCode: import("@elaraai/east").IntegerType;
|
|
663
|
+
}>;
|
|
664
|
+
readonly error: import("@elaraai/east").StructType<{
|
|
665
|
+
readonly task: import("@elaraai/east").StringType;
|
|
666
|
+
readonly timestamp: import("@elaraai/east").StringType;
|
|
667
|
+
readonly message: import("@elaraai/east").StringType;
|
|
668
|
+
}>;
|
|
669
|
+
readonly input_unavailable: import("@elaraai/east").StructType<{
|
|
670
|
+
readonly task: import("@elaraai/east").StringType;
|
|
671
|
+
readonly timestamp: import("@elaraai/east").StringType;
|
|
672
|
+
readonly reason: import("@elaraai/east").StringType;
|
|
1825
673
|
}>;
|
|
1826
674
|
}>>;
|
|
1827
|
-
readonly totalEvents: IntegerType;
|
|
1828
|
-
}>;
|
|
1829
|
-
readonly ExecutionHistoryStatusType: VariantType<{
|
|
1830
|
-
readonly running: NullType;
|
|
1831
|
-
readonly success: NullType;
|
|
1832
|
-
readonly failed: NullType;
|
|
1833
|
-
readonly error: NullType;
|
|
1834
|
-
}>;
|
|
1835
|
-
readonly ExecutionListItemType: StructType<{
|
|
1836
|
-
readonly inputsHash: StringType;
|
|
1837
|
-
readonly inputHashes: ArrayType<StringType>;
|
|
1838
|
-
readonly status: VariantType<{
|
|
1839
|
-
readonly running: NullType;
|
|
1840
|
-
readonly success: NullType;
|
|
1841
|
-
readonly failed: NullType;
|
|
1842
|
-
readonly error: NullType;
|
|
1843
|
-
}>;
|
|
1844
|
-
readonly startedAt: StringType;
|
|
1845
|
-
readonly completedAt: OptionType<StringType>;
|
|
1846
|
-
readonly duration: OptionType<IntegerType>;
|
|
1847
|
-
readonly exitCode: OptionType<IntegerType>;
|
|
1848
|
-
}>;
|
|
1849
|
-
readonly TreeKindType: VariantType<{
|
|
1850
|
-
readonly struct: NullType;
|
|
1851
|
-
}>;
|
|
1852
|
-
readonly ListEntryType: VariantType<{
|
|
1853
|
-
readonly dataset: StructType<{
|
|
1854
|
-
readonly path: StringType;
|
|
1855
|
-
readonly type: import("@elaraai/east").RecursiveType<VariantType<{
|
|
1856
|
-
readonly Never: NullType;
|
|
1857
|
-
readonly Null: NullType;
|
|
1858
|
-
readonly Boolean: NullType;
|
|
1859
|
-
readonly Integer: NullType;
|
|
1860
|
-
readonly Float: NullType;
|
|
1861
|
-
readonly String: NullType;
|
|
1862
|
-
readonly DateTime: NullType;
|
|
1863
|
-
readonly Blob: NullType;
|
|
675
|
+
readonly totalEvents: import("@elaraai/east").IntegerType;
|
|
676
|
+
}>;
|
|
677
|
+
readonly ExecutionHistoryStatusType: import("@elaraai/east").VariantType<{
|
|
678
|
+
readonly running: import("@elaraai/east").NullType;
|
|
679
|
+
readonly success: import("@elaraai/east").NullType;
|
|
680
|
+
readonly failed: import("@elaraai/east").NullType;
|
|
681
|
+
readonly error: import("@elaraai/east").NullType;
|
|
682
|
+
}>;
|
|
683
|
+
readonly ExecutionListItemType: import("@elaraai/east").StructType<{
|
|
684
|
+
readonly inputsHash: import("@elaraai/east").StringType;
|
|
685
|
+
readonly inputHashes: import("@elaraai/east").ArrayType<import("@elaraai/east").StringType>;
|
|
686
|
+
readonly status: import("@elaraai/east").VariantType<{
|
|
687
|
+
readonly running: import("@elaraai/east").NullType;
|
|
688
|
+
readonly success: import("@elaraai/east").NullType;
|
|
689
|
+
readonly failed: import("@elaraai/east").NullType;
|
|
690
|
+
readonly error: import("@elaraai/east").NullType;
|
|
691
|
+
}>;
|
|
692
|
+
readonly startedAt: import("@elaraai/east").StringType;
|
|
693
|
+
readonly completedAt: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
694
|
+
readonly duration: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
695
|
+
readonly exitCode: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
696
|
+
}>;
|
|
697
|
+
readonly TreeKindType: import("@elaraai/east").VariantType<{
|
|
698
|
+
readonly struct: import("@elaraai/east").NullType;
|
|
699
|
+
}>;
|
|
700
|
+
readonly ListEntryType: import("@elaraai/east").VariantType<{
|
|
701
|
+
readonly dataset: import("@elaraai/east").StructType<{
|
|
702
|
+
readonly path: import("@elaraai/east").StringType;
|
|
703
|
+
readonly type: import("@elaraai/east").RecursiveType<import("@elaraai/east").VariantType<{
|
|
704
|
+
readonly Never: import("@elaraai/east").NullType;
|
|
705
|
+
readonly Null: import("@elaraai/east").NullType;
|
|
706
|
+
readonly Boolean: import("@elaraai/east").NullType;
|
|
707
|
+
readonly Integer: import("@elaraai/east").NullType;
|
|
708
|
+
readonly Float: import("@elaraai/east").NullType;
|
|
709
|
+
readonly String: import("@elaraai/east").NullType;
|
|
710
|
+
readonly DateTime: import("@elaraai/east").NullType;
|
|
711
|
+
readonly Blob: import("@elaraai/east").NullType;
|
|
1864
712
|
readonly Ref: import("@elaraai/east").RecursiveTypeMarker;
|
|
1865
713
|
readonly Array: import("@elaraai/east").RecursiveTypeMarker;
|
|
1866
714
|
readonly Set: import("@elaraai/east").RecursiveTypeMarker;
|
|
1867
|
-
readonly Dict: StructType<{
|
|
715
|
+
readonly Dict: import("@elaraai/east").StructType<{
|
|
1868
716
|
readonly key: import("@elaraai/east").RecursiveTypeMarker;
|
|
1869
717
|
readonly value: import("@elaraai/east").RecursiveTypeMarker;
|
|
1870
718
|
}>;
|
|
1871
|
-
readonly Struct: ArrayType<StructType<{
|
|
1872
|
-
readonly name: StringType;
|
|
719
|
+
readonly Struct: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
|
|
720
|
+
readonly name: import("@elaraai/east").StringType;
|
|
1873
721
|
readonly type: import("@elaraai/east").RecursiveTypeMarker;
|
|
1874
722
|
}>>;
|
|
1875
|
-
readonly Variant: ArrayType<StructType<{
|
|
1876
|
-
readonly name: StringType;
|
|
723
|
+
readonly Variant: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
|
|
724
|
+
readonly name: import("@elaraai/east").StringType;
|
|
1877
725
|
readonly type: import("@elaraai/east").RecursiveTypeMarker;
|
|
1878
726
|
}>>;
|
|
1879
|
-
readonly Recursive: IntegerType;
|
|
1880
|
-
readonly Function: StructType<{
|
|
1881
|
-
readonly inputs: ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
|
|
727
|
+
readonly Recursive: import("@elaraai/east").IntegerType;
|
|
728
|
+
readonly Function: import("@elaraai/east").StructType<{
|
|
729
|
+
readonly inputs: import("@elaraai/east").ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
|
|
1882
730
|
readonly output: import("@elaraai/east").RecursiveTypeMarker;
|
|
1883
731
|
}>;
|
|
1884
|
-
readonly AsyncFunction: StructType<{
|
|
1885
|
-
readonly inputs: ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
|
|
732
|
+
readonly AsyncFunction: import("@elaraai/east").StructType<{
|
|
733
|
+
readonly inputs: import("@elaraai/east").ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
|
|
1886
734
|
readonly output: import("@elaraai/east").RecursiveTypeMarker;
|
|
1887
735
|
}>;
|
|
1888
736
|
readonly Vector: import("@elaraai/east").RecursiveTypeMarker;
|
|
1889
737
|
readonly Matrix: import("@elaraai/east").RecursiveTypeMarker;
|
|
1890
738
|
}>>;
|
|
1891
|
-
readonly hash: OptionType<StringType>;
|
|
1892
|
-
readonly size: OptionType<IntegerType>;
|
|
1893
|
-
}>;
|
|
1894
|
-
readonly tree: StructType<{
|
|
1895
|
-
readonly path: StringType;
|
|
1896
|
-
readonly kind: VariantType<{
|
|
1897
|
-
readonly struct: NullType;
|
|
1898
|
-
}>;
|
|
1899
|
-
}>;
|
|
1900
|
-
}>;
|
|
1901
|
-
readonly DatasetStatusDetailType: StructType<{
|
|
1902
|
-
readonly path: StringType;
|
|
1903
|
-
readonly type: import("@elaraai/east").RecursiveType<VariantType<{
|
|
1904
|
-
readonly Never: NullType;
|
|
1905
|
-
readonly Null: NullType;
|
|
1906
|
-
readonly Boolean: NullType;
|
|
1907
|
-
readonly Integer: NullType;
|
|
1908
|
-
readonly Float: NullType;
|
|
1909
|
-
readonly String: NullType;
|
|
1910
|
-
readonly DateTime: NullType;
|
|
1911
|
-
readonly Blob: NullType;
|
|
739
|
+
readonly hash: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
740
|
+
readonly size: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
741
|
+
}>;
|
|
742
|
+
readonly tree: import("@elaraai/east").StructType<{
|
|
743
|
+
readonly path: import("@elaraai/east").StringType;
|
|
744
|
+
readonly kind: import("@elaraai/east").VariantType<{
|
|
745
|
+
readonly struct: import("@elaraai/east").NullType;
|
|
746
|
+
}>;
|
|
747
|
+
}>;
|
|
748
|
+
}>;
|
|
749
|
+
readonly DatasetStatusDetailType: import("@elaraai/east").StructType<{
|
|
750
|
+
readonly path: import("@elaraai/east").StringType;
|
|
751
|
+
readonly type: import("@elaraai/east").RecursiveType<import("@elaraai/east").VariantType<{
|
|
752
|
+
readonly Never: import("@elaraai/east").NullType;
|
|
753
|
+
readonly Null: import("@elaraai/east").NullType;
|
|
754
|
+
readonly Boolean: import("@elaraai/east").NullType;
|
|
755
|
+
readonly Integer: import("@elaraai/east").NullType;
|
|
756
|
+
readonly Float: import("@elaraai/east").NullType;
|
|
757
|
+
readonly String: import("@elaraai/east").NullType;
|
|
758
|
+
readonly DateTime: import("@elaraai/east").NullType;
|
|
759
|
+
readonly Blob: import("@elaraai/east").NullType;
|
|
1912
760
|
readonly Ref: import("@elaraai/east").RecursiveTypeMarker;
|
|
1913
761
|
readonly Array: import("@elaraai/east").RecursiveTypeMarker;
|
|
1914
762
|
readonly Set: import("@elaraai/east").RecursiveTypeMarker;
|
|
1915
|
-
readonly Dict: StructType<{
|
|
763
|
+
readonly Dict: import("@elaraai/east").StructType<{
|
|
1916
764
|
readonly key: import("@elaraai/east").RecursiveTypeMarker;
|
|
1917
765
|
readonly value: import("@elaraai/east").RecursiveTypeMarker;
|
|
1918
766
|
}>;
|
|
1919
|
-
readonly Struct: ArrayType<StructType<{
|
|
1920
|
-
readonly name: StringType;
|
|
767
|
+
readonly Struct: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
|
|
768
|
+
readonly name: import("@elaraai/east").StringType;
|
|
1921
769
|
readonly type: import("@elaraai/east").RecursiveTypeMarker;
|
|
1922
770
|
}>>;
|
|
1923
|
-
readonly Variant: ArrayType<StructType<{
|
|
1924
|
-
readonly name: StringType;
|
|
771
|
+
readonly Variant: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
|
|
772
|
+
readonly name: import("@elaraai/east").StringType;
|
|
1925
773
|
readonly type: import("@elaraai/east").RecursiveTypeMarker;
|
|
1926
774
|
}>>;
|
|
1927
|
-
readonly Recursive: IntegerType;
|
|
1928
|
-
readonly Function: StructType<{
|
|
1929
|
-
readonly inputs: ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
|
|
775
|
+
readonly Recursive: import("@elaraai/east").IntegerType;
|
|
776
|
+
readonly Function: import("@elaraai/east").StructType<{
|
|
777
|
+
readonly inputs: import("@elaraai/east").ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
|
|
1930
778
|
readonly output: import("@elaraai/east").RecursiveTypeMarker;
|
|
1931
779
|
}>;
|
|
1932
|
-
readonly AsyncFunction: StructType<{
|
|
1933
|
-
readonly inputs: ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
|
|
780
|
+
readonly AsyncFunction: import("@elaraai/east").StructType<{
|
|
781
|
+
readonly inputs: import("@elaraai/east").ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
|
|
1934
782
|
readonly output: import("@elaraai/east").RecursiveTypeMarker;
|
|
1935
783
|
}>;
|
|
1936
784
|
readonly Vector: import("@elaraai/east").RecursiveTypeMarker;
|
|
1937
785
|
readonly Matrix: import("@elaraai/east").RecursiveTypeMarker;
|
|
1938
786
|
}>>;
|
|
1939
|
-
readonly refType: StringType;
|
|
1940
|
-
readonly hash: OptionType<StringType>;
|
|
1941
|
-
readonly size: OptionType<IntegerType>;
|
|
1942
|
-
}>;
|
|
1943
|
-
readonly TransferUploadRequestType: StructType<{
|
|
1944
|
-
readonly hash: StringType;
|
|
1945
|
-
readonly size: IntegerType;
|
|
1946
|
-
}>;
|
|
1947
|
-
readonly TransferUploadResponseType: VariantType<{
|
|
1948
|
-
readonly completed: NullType;
|
|
1949
|
-
readonly upload: StructType<{
|
|
1950
|
-
readonly id: StringType;
|
|
1951
|
-
readonly uploadUrl: StringType;
|
|
787
|
+
readonly refType: import("@elaraai/east").StringType;
|
|
788
|
+
readonly hash: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
789
|
+
readonly size: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
790
|
+
}>;
|
|
791
|
+
readonly TransferUploadRequestType: import("@elaraai/east").StructType<{
|
|
792
|
+
readonly hash: import("@elaraai/east").StringType;
|
|
793
|
+
readonly size: import("@elaraai/east").IntegerType;
|
|
794
|
+
}>;
|
|
795
|
+
readonly TransferUploadResponseType: import("@elaraai/east").VariantType<{
|
|
796
|
+
readonly completed: import("@elaraai/east").NullType;
|
|
797
|
+
readonly upload: import("@elaraai/east").StructType<{
|
|
798
|
+
readonly id: import("@elaraai/east").StringType;
|
|
799
|
+
readonly uploadUrl: import("@elaraai/east").StringType;
|
|
1952
800
|
}>;
|
|
1953
801
|
}>;
|
|
1954
|
-
readonly TransferDoneResponseType: VariantType<{
|
|
1955
|
-
readonly completed: NullType;
|
|
1956
|
-
readonly error: StructType<{
|
|
1957
|
-
readonly message: StringType;
|
|
802
|
+
readonly TransferDoneResponseType: import("@elaraai/east").VariantType<{
|
|
803
|
+
readonly completed: import("@elaraai/east").NullType;
|
|
804
|
+
readonly error: import("@elaraai/east").StructType<{
|
|
805
|
+
readonly message: import("@elaraai/east").StringType;
|
|
1958
806
|
}>;
|
|
1959
807
|
}>;
|
|
1960
|
-
readonly PackageImportStatusType: VariantType<{
|
|
1961
|
-
readonly processing: VariantType<{
|
|
1962
|
-
readonly pending: NullType;
|
|
1963
|
-
readonly downloading: NullType;
|
|
1964
|
-
readonly importing: StructType<{
|
|
1965
|
-
readonly objectsProcessed: IntegerType;
|
|
808
|
+
readonly PackageImportStatusType: import("@elaraai/east").VariantType<{
|
|
809
|
+
readonly processing: import("@elaraai/east").VariantType<{
|
|
810
|
+
readonly pending: import("@elaraai/east").NullType;
|
|
811
|
+
readonly downloading: import("@elaraai/east").NullType;
|
|
812
|
+
readonly importing: import("@elaraai/east").StructType<{
|
|
813
|
+
readonly objectsProcessed: import("@elaraai/east").IntegerType;
|
|
1966
814
|
}>;
|
|
1967
815
|
}>;
|
|
1968
|
-
readonly completed: StructType<{
|
|
1969
|
-
readonly name: StringType;
|
|
1970
|
-
readonly version: StringType;
|
|
1971
|
-
readonly packageHash: StringType;
|
|
1972
|
-
readonly objectCount: IntegerType;
|
|
816
|
+
readonly completed: import("@elaraai/east").StructType<{
|
|
817
|
+
readonly name: import("@elaraai/east").StringType;
|
|
818
|
+
readonly version: import("@elaraai/east").StringType;
|
|
819
|
+
readonly packageHash: import("@elaraai/east").StringType;
|
|
820
|
+
readonly objectCount: import("@elaraai/east").IntegerType;
|
|
1973
821
|
}>;
|
|
1974
|
-
readonly failed: StructType<{
|
|
1975
|
-
readonly message: StringType;
|
|
822
|
+
readonly failed: import("@elaraai/east").StructType<{
|
|
823
|
+
readonly message: import("@elaraai/east").StringType;
|
|
1976
824
|
}>;
|
|
1977
825
|
}>;
|
|
1978
|
-
readonly PackageExportStatusType: VariantType<{
|
|
1979
|
-
readonly processing:
|
|
1980
|
-
|
|
1981
|
-
readonly
|
|
1982
|
-
|
|
826
|
+
readonly PackageExportStatusType: import("@elaraai/east").VariantType<{
|
|
827
|
+
readonly processing: import("@elaraai/east").VariantType<{
|
|
828
|
+
readonly pending: import("@elaraai/east").NullType;
|
|
829
|
+
readonly exporting: import("@elaraai/east").StructType<{
|
|
830
|
+
readonly objectsProcessed: import("@elaraai/east").IntegerType;
|
|
831
|
+
}>;
|
|
832
|
+
readonly uploading: import("@elaraai/east").NullType;
|
|
833
|
+
}>;
|
|
834
|
+
readonly completed: import("@elaraai/east").StructType<{
|
|
835
|
+
readonly downloadUrl: import("@elaraai/east").StringType;
|
|
836
|
+
readonly size: import("@elaraai/east").IntegerType;
|
|
1983
837
|
}>;
|
|
1984
|
-
readonly failed: StructType<{
|
|
1985
|
-
readonly message: StringType;
|
|
838
|
+
readonly failed: import("@elaraai/east").StructType<{
|
|
839
|
+
readonly message: import("@elaraai/east").StringType;
|
|
1986
840
|
}>;
|
|
1987
841
|
}>;
|
|
1988
842
|
};
|