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