@elaraai/e3-api-client 0.0.2-beta.5 → 0.0.2-beta.50

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.
Files changed (50) hide show
  1. package/README.md +2 -2
  2. package/dist/src/datasets.d.ts +73 -4
  3. package/dist/src/datasets.d.ts.map +1 -1
  4. package/dist/src/datasets.js +194 -19
  5. package/dist/src/datasets.js.map +1 -1
  6. package/dist/src/executions.d.ts +74 -11
  7. package/dist/src/executions.d.ts.map +1 -1
  8. package/dist/src/executions.js +184 -36
  9. package/dist/src/executions.js.map +1 -1
  10. package/dist/src/http.d.ts +67 -12
  11. package/dist/src/http.d.ts.map +1 -1
  12. package/dist/src/http.js +168 -34
  13. package/dist/src/http.js.map +1 -1
  14. package/dist/src/index.d.ts +9 -6
  15. package/dist/src/index.d.ts.map +1 -1
  16. package/dist/src/index.js +11 -5
  17. package/dist/src/index.js.map +1 -1
  18. package/dist/src/packages.d.ts +32 -27
  19. package/dist/src/packages.d.ts.map +1 -1
  20. package/dist/src/packages.js +175 -39
  21. package/dist/src/packages.js.map +1 -1
  22. package/dist/src/platform.d.ts +553 -1343
  23. package/dist/src/platform.d.ts.map +1 -1
  24. package/dist/src/platform.js +123 -915
  25. package/dist/src/platform.js.map +1 -1
  26. package/dist/src/repos.d.ts +16 -0
  27. package/dist/src/repos.d.ts.map +1 -0
  28. package/dist/src/repos.js +19 -0
  29. package/dist/src/repos.js.map +1 -0
  30. package/dist/src/repository.d.ts +67 -5
  31. package/dist/src/repository.d.ts.map +1 -1
  32. package/dist/src/repository.js +94 -10
  33. package/dist/src/repository.js.map +1 -1
  34. package/dist/src/tasks.d.ts +25 -3
  35. package/dist/src/tasks.d.ts.map +1 -1
  36. package/dist/src/tasks.js +29 -8
  37. package/dist/src/tasks.js.map +1 -1
  38. package/dist/src/types.d.ts +755 -1251
  39. package/dist/src/types.d.ts.map +1 -1
  40. package/dist/src/types.js +62 -453
  41. package/dist/src/types.js.map +1 -1
  42. package/dist/src/util.d.ts +21 -0
  43. package/dist/src/util.d.ts.map +1 -0
  44. package/dist/src/util.js +26 -0
  45. package/dist/src/util.js.map +1 -0
  46. package/dist/src/workspaces.d.ts +51 -9
  47. package/dist/src/workspaces.d.ts.map +1 -1
  48. package/dist/src/workspaces.js +87 -26
  49. package/dist/src/workspaces.js.map +1 -1
  50. package/package.json +4 -4
@@ -3,1337 +3,841 @@
3
3
  * Licensed under BSL 1.1. See LICENSE for details.
4
4
  */
5
5
  /**
6
- * API types for e3-api-server and e3-api-client.
6
+ * API types for e3-api-client.
7
7
  *
8
- * All types are East types for BEAST2 serialization.
9
- * This file should be kept in sync with e3-api-server/src/types.ts.
8
+ * Re-exports all API wire types from @elaraai/e3-types (the single source of truth).
9
+ * Types with "Api" prefix in e3-types are re-exported here with shorter names
10
+ * since API consumers don't see the conflicting domain types.
10
11
  */
11
- import { VariantType, StructType, ArrayType, OptionType, StringType, IntegerType, FloatType, BooleanType, NullType, type EastType, type ValueTypeOf } from '@elaraai/east';
12
- export declare const WorkspaceNotFoundErrorType: StructType<{
13
- workspace: StringType;
14
- }>;
15
- export declare const WorkspaceNotDeployedErrorType: StructType<{
16
- workspace: StringType;
17
- }>;
18
- export declare const WorkspaceExistsErrorType: StructType<{
19
- workspace: StringType;
20
- }>;
21
- export declare const LockHolderType: StructType<{
22
- pid: IntegerType;
23
- acquiredAt: StringType;
24
- bootId: OptionType<StringType>;
25
- command: OptionType<StringType>;
26
- }>;
27
- export declare const WorkspaceLockedErrorType: StructType<{
28
- workspace: StringType;
29
- holder: VariantType<{
30
- unknown: NullType;
31
- known: StructType<{
32
- pid: IntegerType;
33
- acquiredAt: StringType;
34
- bootId: OptionType<StringType>;
35
- command: OptionType<StringType>;
36
- }>;
37
- }>;
38
- }>;
39
- export declare const PackageNotFoundErrorType: StructType<{
40
- packageName: StringType;
41
- version: OptionType<StringType>;
42
- }>;
43
- export declare const PackageExistsErrorType: StructType<{
44
- packageName: StringType;
45
- version: StringType;
46
- }>;
47
- export declare const PackageInvalidErrorType: StructType<{
48
- reason: StringType;
49
- }>;
50
- export declare const DatasetNotFoundErrorType: StructType<{
51
- workspace: StringType;
52
- path: StringType;
53
- }>;
54
- export declare const TaskNotFoundErrorType: StructType<{
55
- task: StringType;
56
- }>;
57
- export declare const ObjectNotFoundErrorType: StructType<{
58
- hash: StringType;
59
- }>;
60
- export declare const DataflowErrorType: StructType<{
61
- message: StringType;
62
- }>;
63
- export declare const PermissionDeniedErrorType: StructType<{
64
- path: StringType;
65
- }>;
66
- export declare const InternalErrorType: StructType<{
67
- message: StringType;
68
- }>;
69
- export declare const ErrorType: VariantType<{
70
- workspace_not_found: StructType<{
71
- workspace: StringType;
72
- }>;
73
- workspace_not_deployed: StructType<{
74
- workspace: StringType;
75
- }>;
76
- workspace_exists: StructType<{
77
- workspace: StringType;
78
- }>;
79
- workspace_locked: StructType<{
80
- workspace: StringType;
81
- holder: VariantType<{
82
- unknown: NullType;
83
- known: StructType<{
84
- pid: IntegerType;
85
- acquiredAt: StringType;
86
- bootId: OptionType<StringType>;
87
- command: OptionType<StringType>;
88
- }>;
89
- }>;
90
- }>;
91
- package_not_found: StructType<{
92
- packageName: StringType;
93
- version: OptionType<StringType>;
94
- }>;
95
- package_exists: StructType<{
96
- packageName: StringType;
97
- version: StringType;
98
- }>;
99
- package_invalid: StructType<{
100
- reason: StringType;
101
- }>;
102
- dataset_not_found: StructType<{
103
- workspace: StringType;
104
- path: StringType;
105
- }>;
106
- task_not_found: StructType<{
107
- task: StringType;
108
- }>;
109
- object_not_found: StructType<{
110
- hash: StringType;
111
- }>;
112
- dataflow_error: StructType<{
113
- message: StringType;
114
- }>;
115
- dataflow_aborted: NullType;
116
- permission_denied: StructType<{
117
- path: StringType;
118
- }>;
119
- internal: StructType<{
120
- message: StringType;
121
- }>;
122
- }>;
123
- export declare const ResponseType: <T extends EastType>(successType: T) => VariantType<{
124
- success: T;
125
- error: VariantType<{
126
- workspace_not_found: StructType<{
127
- workspace: StringType;
128
- }>;
129
- workspace_not_deployed: StructType<{
130
- workspace: StringType;
131
- }>;
132
- workspace_exists: StructType<{
133
- workspace: StringType;
134
- }>;
135
- workspace_locked: StructType<{
136
- workspace: StringType;
137
- holder: VariantType<{
138
- unknown: NullType;
139
- known: StructType<{
140
- pid: IntegerType;
141
- acquiredAt: StringType;
142
- bootId: OptionType<StringType>;
143
- command: OptionType<StringType>;
12
+ export { WorkspaceNotFoundErrorType, WorkspaceNotDeployedErrorType, WorkspaceExistsErrorType, LockHolderType, WorkspaceLockedErrorType, PackageNotFoundErrorType, PackageExistsErrorType, PackageInvalidErrorType, DatasetNotFoundErrorType, TaskNotFoundErrorType, ExecutionNotFoundErrorType, ObjectNotFoundErrorType, DataflowErrorType, PermissionDeniedErrorType, InternalErrorType, RepositoryNotFoundErrorType, ErrorType, ResponseType, RepositoryStatusType, GcRequestType, GcResultType, AsyncOperationStatusType, GcStartResultType, GcStatusResultType, PackageListItemType, PackageImportResultType, PackageInfoType, PackageDetailsType, WorkspaceCreateRequestType, WorkspaceInfoType, WorkspaceDeployRequestType, WorkspaceExportRequestType, DatasetStatusType, TaskStatusUpToDateType, TaskStatusWaitingType, TaskStatusInProgressType, TaskStatusFailedType, TaskStatusErrorType, TaskStatusStaleRunningType, TaskStatusType, DatasetStatusInfoType, TaskStatusInfoType, WorkspaceStatusSummaryType, WorkspaceStatusResultType, TaskListItemType, TaskDetailsType, DataflowRequestType, LogChunkType, TaskExecutionResultType, DataflowResultType, DataflowEventType, ApiExecutionStatusType as ExecutionStatusType, DataflowExecutionSummaryType, ApiDataflowExecutionStateType as DataflowExecutionStateType, ExecutionHistoryStatusType, ExecutionListItemType, TreeKindType, ListEntryType, DatasetStatusDetailType, TransferUploadRequestType, TransferUploadResponseType, TransferDoneResponseType, PackageImportStatusType, PackageExportStatusType, DataflowGraphType, DataflowGraphTaskType, } from '@elaraai/e3-types';
13
+ export type { Error, RepositoryStatus, GcRequest, GcResult, AsyncOperationStatus, GcStartResult, GcStatusResult, PackageListItem, PackageImportResult, PackageInfo, PackageDetails, WorkspaceInfo, WorkspaceCreateRequest, WorkspaceDeployRequest, DatasetStatus, ApiTaskStatus as TaskStatus, DatasetStatusInfo, TaskStatusInfo, WorkspaceStatusSummary, WorkspaceStatusResult, TaskListItem, TaskDetails, DataflowRequest, LogChunk, TaskExecutionResult, DataflowResult, DataflowEvent, ApiExecutionStatus as ExecutionStatus, DataflowExecutionSummary, ApiDataflowExecutionState as DataflowExecutionState, ExecutionHistoryStatus, ExecutionListItem, TreeKind, ListEntry, DatasetStatusDetail, TransferUploadRequest, TransferUploadResponse, TransferDoneResponse, PackageImportStatus, PackageExportStatus, DataflowGraph, DataflowGraphTask, } from '@elaraai/e3-types';
14
+ export declare const ApiTypes: {
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>;
144
37
  }>;
145
38
  }>;
146
39
  }>;
147
- package_not_found: StructType<{
148
- packageName: StringType;
149
- version: OptionType<StringType>;
150
- }>;
151
- package_exists: StructType<{
152
- packageName: StringType;
153
- version: StringType;
154
- }>;
155
- package_invalid: StructType<{
156
- reason: 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>;
157
43
  }>;
158
- dataset_not_found: StructType<{
159
- workspace: StringType;
160
- path: StringType;
44
+ readonly package_exists: import("@elaraai/east").StructType<{
45
+ readonly packageName: import("@elaraai/east").StringType;
46
+ readonly version: import("@elaraai/east").StringType;
161
47
  }>;
162
- task_not_found: StructType<{
163
- task: StringType;
48
+ readonly package_invalid: import("@elaraai/east").StructType<{
49
+ readonly reason: import("@elaraai/east").StringType;
164
50
  }>;
165
- object_not_found: StructType<{
166
- hash: StringType;
51
+ readonly dataset_not_found: import("@elaraai/east").StructType<{
52
+ readonly workspace: import("@elaraai/east").StringType;
53
+ readonly path: import("@elaraai/east").StringType;
167
54
  }>;
168
- dataflow_error: StructType<{
169
- message: StringType;
170
- }>;
171
- dataflow_aborted: NullType;
172
- permission_denied: StructType<{
173
- path: StringType;
174
- }>;
175
- internal: StructType<{
176
- message: StringType;
177
- }>;
178
- }>;
179
- }>;
180
- /**
181
- * Repository status information.
182
- *
183
- * @property path - Absolute path to the .e3 repository directory
184
- * @property objectCount - Number of content-addressed objects stored
185
- * @property packageCount - Number of imported packages
186
- * @property workspaceCount - Number of workspaces
187
- */
188
- export declare const RepositoryStatusType: StructType<{
189
- path: StringType;
190
- objectCount: IntegerType;
191
- packageCount: IntegerType;
192
- workspaceCount: IntegerType;
193
- }>;
194
- /**
195
- * Garbage collection request options.
196
- *
197
- * @property dryRun - If true, report what would be deleted without deleting
198
- * @property minAge - Minimum age in milliseconds for objects to be considered for deletion
199
- */
200
- export declare const GcRequestType: StructType<{
201
- dryRun: BooleanType;
202
- minAge: OptionType<IntegerType>;
203
- }>;
204
- /**
205
- * Garbage collection result.
206
- *
207
- * @property deletedObjects - Number of unreferenced objects deleted
208
- * @property deletedPartials - Number of incomplete uploads deleted
209
- * @property retainedObjects - Number of objects still referenced
210
- * @property skippedYoung - Number of objects skipped due to minAge
211
- * @property bytesFreed - Total bytes freed by deletion
212
- */
213
- export declare const GcResultType: StructType<{
214
- deletedObjects: IntegerType;
215
- deletedPartials: IntegerType;
216
- retainedObjects: IntegerType;
217
- skippedYoung: IntegerType;
218
- bytesFreed: IntegerType;
219
- }>;
220
- /**
221
- * Package list item (summary info).
222
- *
223
- * @property name - Package name
224
- * @property version - Semantic version string
225
- */
226
- export declare const PackageListItemType: StructType<{
227
- name: StringType;
228
- version: StringType;
229
- }>;
230
- /**
231
- * Result of importing a package.
232
- *
233
- * @property name - Imported package name
234
- * @property version - Imported package version
235
- * @property packageHash - SHA256 hash of the package content
236
- * @property objectCount - Number of objects added to the repository
237
- */
238
- export declare const PackageImportResultType: StructType<{
239
- name: StringType;
240
- version: StringType;
241
- packageHash: StringType;
242
- objectCount: IntegerType;
243
- }>;
244
- /**
245
- * Basic package info.
246
- *
247
- * @property name - Package name
248
- * @property version - Semantic version string
249
- * @property hash - SHA256 content hash
250
- */
251
- export declare const PackageInfoType: StructType<{
252
- name: StringType;
253
- version: StringType;
254
- hash: StringType;
255
- }>;
256
- /**
257
- * Detailed package information including structure.
258
- *
259
- * @property name - Package name
260
- * @property version - Semantic version string
261
- * @property hash - SHA256 content hash
262
- * @property tasks - List of task names defined in the package
263
- * @property dataStructure - East structure type describing the package's data schema
264
- */
265
- export declare const PackageDetailsType: StructType<{
266
- name: StringType;
267
- version: StringType;
268
- hash: StringType;
269
- tasks: ArrayType<StringType>;
270
- dataStructure: import("@elaraai/east").RecursiveType<VariantType<{
271
- value: import("@elaraai/east").RecursiveType<VariantType<{
272
- Never: import("@elaraai/east").NullType;
273
- Null: import("@elaraai/east").NullType;
274
- Boolean: import("@elaraai/east").NullType;
275
- Integer: import("@elaraai/east").NullType;
276
- Float: import("@elaraai/east").NullType;
277
- String: import("@elaraai/east").NullType;
278
- DateTime: import("@elaraai/east").NullType;
279
- Blob: import("@elaraai/east").NullType;
280
- Ref: import("@elaraai/east").RecursiveTypeMarker;
281
- Array: import("@elaraai/east").RecursiveTypeMarker;
282
- Set: import("@elaraai/east").RecursiveTypeMarker;
283
- Dict: import("@elaraai/east").StructType<{
284
- key: import("@elaraai/east").RecursiveTypeMarker;
285
- value: import("@elaraai/east").RecursiveTypeMarker;
286
- }>;
287
- Struct: ArrayType<import("@elaraai/east").StructType<{
288
- name: StringType;
289
- type: import("@elaraai/east").RecursiveTypeMarker;
290
- }>>;
291
- Variant: ArrayType<import("@elaraai/east").StructType<{
292
- name: StringType;
293
- type: import("@elaraai/east").RecursiveTypeMarker;
294
- }>>;
295
- Recursive: import("@elaraai/east").IntegerType;
296
- Function: import("@elaraai/east").StructType<{
297
- inputs: ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
298
- output: import("@elaraai/east").RecursiveTypeMarker;
299
- }>;
300
- AsyncFunction: import("@elaraai/east").StructType<{
301
- inputs: ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
302
- output: import("@elaraai/east").RecursiveTypeMarker;
303
- }>;
304
- }>>;
305
- struct: import("@elaraai/east").DictType<StringType, import("@elaraai/east").RecursiveTypeMarker>;
306
- }>>;
307
- }>;
308
- /**
309
- * Request to create a new workspace.
310
- *
311
- * @property name - Unique workspace name
312
- */
313
- export declare const WorkspaceCreateRequestType: StructType<{
314
- name: StringType;
315
- }>;
316
- /**
317
- * Workspace summary information.
318
- *
319
- * @property name - Workspace name
320
- * @property deployed - Whether a package is deployed to this workspace
321
- * @property packageName - Name of deployed package (if deployed)
322
- * @property packageVersion - Version of deployed package (if deployed)
323
- */
324
- export declare const WorkspaceInfoType: StructType<{
325
- name: StringType;
326
- deployed: BooleanType;
327
- packageName: OptionType<StringType>;
328
- packageVersion: OptionType<StringType>;
329
- }>;
330
- /**
331
- * Request to deploy a package to a workspace.
332
- *
333
- * @property packageRef - Package reference in format "name" or "name@version"
334
- */
335
- export declare const WorkspaceDeployRequestType: StructType<{
336
- packageRef: StringType;
337
- }>;
338
- /**
339
- * Dataset status variant.
340
- *
341
- * - `unset`: No value assigned to this dataset
342
- * - `stale`: Value exists but is outdated (upstream changed)
343
- * - `up-to-date`: Value is current
344
- */
345
- export declare const DatasetStatusType: VariantType<{
346
- unset: NullType;
347
- stale: NullType;
348
- 'up-to-date': NullType;
349
- }>;
350
- /** Task completed successfully. @property cached - True if result was from cache */
351
- export declare const TaskStatusUpToDateType: StructType<{
352
- cached: BooleanType;
353
- }>;
354
- /** Task waiting on dependencies. @property reason - Human-readable wait reason */
355
- export declare const TaskStatusWaitingType: StructType<{
356
- reason: StringType;
357
- }>;
358
- /** Task currently executing. */
359
- export declare const TaskStatusInProgressType: StructType<{
360
- /** Process ID of the running task */
361
- pid: OptionType<IntegerType>;
362
- /** ISO timestamp when execution started */
363
- startedAt: OptionType<StringType>;
364
- }>;
365
- /** Task exited with non-zero code. */
366
- export declare const TaskStatusFailedType: StructType<{
367
- /** Process exit code */
368
- exitCode: IntegerType;
369
- /** ISO timestamp when task completed */
370
- completedAt: OptionType<StringType>;
371
- }>;
372
- /** Task encountered an internal error. */
373
- export declare const TaskStatusErrorType: StructType<{
374
- /** Error message */
375
- message: StringType;
376
- /** ISO timestamp when error occurred */
377
- completedAt: OptionType<StringType>;
378
- }>;
379
- /** Task was running but process is no longer alive. */
380
- export declare const TaskStatusStaleRunningType: StructType<{
381
- /** Last known process ID */
382
- pid: OptionType<IntegerType>;
383
- /** ISO timestamp when execution started */
384
- startedAt: OptionType<StringType>;
385
- }>;
386
- /**
387
- * Task execution status variant.
388
- *
389
- * - `up-to-date`: Task completed successfully (cached indicates if from cache)
390
- * - `ready`: Task is ready to run (all inputs available)
391
- * - `waiting`: Task waiting on upstream dependencies
392
- * - `in-progress`: Task currently executing
393
- * - `failed`: Task exited with non-zero exit code
394
- * - `error`: Internal error during task execution
395
- * - `stale-running`: Task was marked running but process died
396
- */
397
- export declare const TaskStatusType: VariantType<{
398
- 'up-to-date': StructType<{
399
- cached: BooleanType;
400
- }>;
401
- ready: NullType;
402
- waiting: StructType<{
403
- reason: StringType;
404
- }>;
405
- 'in-progress': StructType<{
406
- /** Process ID of the running task */
407
- pid: OptionType<IntegerType>;
408
- /** ISO timestamp when execution started */
409
- startedAt: OptionType<StringType>;
410
- }>;
411
- failed: StructType<{
412
- /** Process exit code */
413
- exitCode: IntegerType;
414
- /** ISO timestamp when task completed */
415
- completedAt: OptionType<StringType>;
416
- }>;
417
- error: StructType<{
418
- /** Error message */
419
- message: StringType;
420
- /** ISO timestamp when error occurred */
421
- completedAt: OptionType<StringType>;
422
- }>;
423
- 'stale-running': StructType<{
424
- /** Last known process ID */
425
- pid: OptionType<IntegerType>;
426
- /** ISO timestamp when execution started */
427
- startedAt: OptionType<StringType>;
428
- }>;
429
- }>;
430
- /**
431
- * Status information for a single dataset.
432
- *
433
- * @property path - Dataset path (e.g., ".inputs.config" or ".tasks.foo.output")
434
- * @property status - Current status (unset, stale, or up-to-date)
435
- * @property hash - SHA256 hash of current value (if set)
436
- * @property isTaskOutput - True if this dataset is produced by a task
437
- * @property producedBy - Name of task that produces this dataset (if isTaskOutput)
438
- */
439
- export declare const DatasetStatusInfoType: StructType<{
440
- path: StringType;
441
- status: VariantType<{
442
- unset: NullType;
443
- stale: NullType;
444
- 'up-to-date': NullType;
445
- }>;
446
- hash: OptionType<StringType>;
447
- isTaskOutput: BooleanType;
448
- producedBy: OptionType<StringType>;
449
- }>;
450
- /**
451
- * Status information for a single task.
452
- *
453
- * @property name - Task name
454
- * @property hash - Task definition hash (changes when task code changes)
455
- * @property status - Current execution status
456
- * @property inputs - Dataset paths this task reads from
457
- * @property output - Dataset path this task writes to
458
- * @property dependsOn - Names of tasks that must complete before this one
459
- */
460
- export declare const TaskStatusInfoType: StructType<{
461
- name: StringType;
462
- hash: StringType;
463
- status: VariantType<{
464
- 'up-to-date': StructType<{
465
- cached: BooleanType;
55
+ readonly task_not_found: import("@elaraai/east").StructType<{
56
+ readonly task: import("@elaraai/east").StringType;
466
57
  }>;
467
- ready: NullType;
468
- waiting: StructType<{
469
- reason: StringType;
58
+ readonly execution_not_found: import("@elaraai/east").StructType<{
59
+ readonly task: import("@elaraai/east").StringType;
470
60
  }>;
471
- 'in-progress': StructType<{
472
- /** Process ID of the running task */
473
- pid: OptionType<IntegerType>;
474
- /** ISO timestamp when execution started */
475
- startedAt: OptionType<StringType>;
61
+ readonly object_not_found: import("@elaraai/east").StructType<{
62
+ readonly hash: import("@elaraai/east").StringType;
476
63
  }>;
477
- failed: StructType<{
478
- /** Process exit code */
479
- exitCode: IntegerType;
480
- /** ISO timestamp when task completed */
481
- completedAt: OptionType<StringType>;
64
+ readonly dataflow_error: import("@elaraai/east").StructType<{
65
+ readonly message: import("@elaraai/east").StringType;
482
66
  }>;
483
- error: StructType<{
484
- /** Error message */
485
- message: StringType;
486
- /** ISO timestamp when error occurred */
487
- completedAt: OptionType<StringType>;
67
+ readonly dataflow_aborted: import("@elaraai/east").NullType;
68
+ readonly permission_denied: import("@elaraai/east").StructType<{
69
+ readonly path: import("@elaraai/east").StringType;
488
70
  }>;
489
- 'stale-running': StructType<{
490
- /** Last known process ID */
491
- pid: OptionType<IntegerType>;
492
- /** ISO timestamp when execution started */
493
- startedAt: OptionType<StringType>;
71
+ readonly internal: import("@elaraai/east").StructType<{
72
+ readonly message: import("@elaraai/east").StringType;
494
73
  }>;
495
74
  }>;
496
- inputs: ArrayType<StringType>;
497
- output: StringType;
498
- dependsOn: ArrayType<StringType>;
499
- }>;
500
- /**
501
- * Summary counts for workspace status.
502
- */
503
- export declare const WorkspaceStatusSummaryType: StructType<{
504
- /** Dataset status counts */
505
- datasets: StructType<{
506
- total: IntegerType;
507
- unset: IntegerType;
508
- stale: IntegerType;
509
- upToDate: IntegerType;
510
- }>;
511
- /** Task status counts */
512
- tasks: StructType<{
513
- total: IntegerType;
514
- upToDate: IntegerType;
515
- ready: IntegerType;
516
- waiting: IntegerType;
517
- inProgress: IntegerType;
518
- failed: IntegerType;
519
- error: IntegerType;
520
- staleRunning: IntegerType;
521
- }>;
522
- }>;
523
- /**
524
- * Complete workspace status including all datasets, tasks, and summary.
525
- *
526
- * @property workspace - Workspace name
527
- * @property lock - Information about current lock holder (if locked)
528
- * @property datasets - Status of all datasets in the workspace
529
- * @property tasks - Status of all tasks in the workspace
530
- * @property summary - Aggregated counts by status
531
- */
532
- export declare const WorkspaceStatusResultType: StructType<{
533
- workspace: StringType;
534
- lock: OptionType<StructType<{
535
- pid: IntegerType;
536
- acquiredAt: StringType;
537
- bootId: OptionType<StringType>;
538
- command: OptionType<StringType>;
539
- }>>;
540
- datasets: ArrayType<StructType<{
541
- path: StringType;
542
- status: VariantType<{
543
- unset: NullType;
544
- stale: NullType;
545
- 'up-to-date': NullType;
546
- }>;
547
- hash: OptionType<StringType>;
548
- isTaskOutput: BooleanType;
549
- producedBy: OptionType<StringType>;
550
- }>>;
551
- tasks: ArrayType<StructType<{
552
- name: StringType;
553
- hash: StringType;
554
- status: VariantType<{
555
- 'up-to-date': StructType<{
556
- cached: BooleanType;
557
- }>;
558
- ready: NullType;
559
- waiting: StructType<{
560
- reason: StringType;
561
- }>;
562
- 'in-progress': StructType<{
563
- /** Process ID of the running task */
564
- pid: OptionType<IntegerType>;
565
- /** ISO timestamp when execution started */
566
- startedAt: OptionType<StringType>;
567
- }>;
568
- failed: StructType<{
569
- /** Process exit code */
570
- exitCode: IntegerType;
571
- /** ISO timestamp when task completed */
572
- completedAt: OptionType<StringType>;
573
- }>;
574
- error: StructType<{
575
- /** Error message */
576
- message: StringType;
577
- /** ISO timestamp when error occurred */
578
- completedAt: OptionType<StringType>;
579
- }>;
580
- 'stale-running': StructType<{
581
- /** Last known process ID */
582
- pid: OptionType<IntegerType>;
583
- /** ISO timestamp when execution started */
584
- startedAt: OptionType<StringType>;
585
- }>;
586
- }>;
587
- inputs: ArrayType<StringType>;
588
- output: StringType;
589
- dependsOn: ArrayType<StringType>;
590
- }>>;
591
- summary: StructType<{
592
- /** Dataset status counts */
593
- datasets: StructType<{
594
- total: IntegerType;
595
- unset: IntegerType;
596
- stale: IntegerType;
597
- upToDate: IntegerType;
598
- }>;
599
- /** Task status counts */
600
- tasks: StructType<{
601
- total: IntegerType;
602
- upToDate: IntegerType;
603
- ready: IntegerType;
604
- waiting: IntegerType;
605
- inProgress: IntegerType;
606
- failed: IntegerType;
607
- error: IntegerType;
608
- staleRunning: IntegerType;
609
- }>;
75
+ readonly RepositoryNotFoundErrorType: import("@elaraai/east").StructType<{
76
+ readonly repo: import("@elaraai/east").StringType;
610
77
  }>;
611
- }>;
612
- /**
613
- * Task list item (summary info).
614
- *
615
- * @property name - Task name
616
- * @property hash - Task definition hash
617
- */
618
- export declare const TaskListItemType: StructType<{
619
- name: StringType;
620
- hash: StringType;
621
- }>;
622
- /**
623
- * Detailed task information.
624
- *
625
- * @property name - Task name
626
- * @property hash - Task definition hash
627
- * @property commandIr - East IR for the task's command
628
- * @property inputs - Tree paths for task inputs
629
- * @property output - Tree path for task output
630
- */
631
- export declare const TaskDetailsType: StructType<{
632
- name: StringType;
633
- hash: StringType;
634
- commandIr: StringType;
635
- inputs: ArrayType<ArrayType<VariantType<{
636
- field: StringType;
637
- }>>>;
638
- output: ArrayType<VariantType<{
639
- field: StringType;
640
- }>>;
641
- }>;
642
- /**
643
- * Request to start dataflow execution.
644
- *
645
- * @property concurrency - Maximum parallel tasks (default: 4)
646
- * @property force - Force re-execution of all tasks
647
- * @property filter - Filter to specific task names (glob pattern)
648
- */
649
- export declare const DataflowRequestType: StructType<{
650
- concurrency: OptionType<IntegerType>;
651
- force: BooleanType;
652
- filter: OptionType<StringType>;
653
- }>;
654
- /**
655
- * Task in a dependency graph.
656
- *
657
- * @property name - Task name
658
- * @property hash - Task definition hash
659
- * @property inputs - Dataset paths this task reads from
660
- * @property output - Dataset path this task writes to
661
- * @property dependsOn - Names of tasks that must complete before this one
662
- */
663
- export declare const GraphTaskType: StructType<{
664
- name: StringType;
665
- hash: StringType;
666
- inputs: ArrayType<StringType>;
667
- output: StringType;
668
- dependsOn: ArrayType<StringType>;
669
- }>;
670
- /**
671
- * Dataflow dependency graph.
672
- *
673
- * @property tasks - All tasks in the graph with their dependencies
674
- */
675
- export declare const DataflowGraphType: StructType<{
676
- tasks: ArrayType<StructType<{
677
- name: StringType;
678
- hash: StringType;
679
- inputs: ArrayType<StringType>;
680
- output: StringType;
681
- dependsOn: ArrayType<StringType>;
682
- }>>;
683
- }>;
684
- /**
685
- * Chunk of log data from task execution.
686
- *
687
- * @property data - Log content (UTF-8 text)
688
- * @property offset - Byte offset from start of log
689
- * @property size - Size of this chunk in bytes
690
- * @property totalSize - Total size of the log file
691
- * @property complete - True if this chunk reaches end of file
692
- */
693
- export declare const LogChunkType: StructType<{
694
- data: StringType;
695
- offset: IntegerType;
696
- size: IntegerType;
697
- totalSize: IntegerType;
698
- complete: BooleanType;
699
- }>;
700
- /**
701
- * Result of executing a single task.
702
- *
703
- * @property name - Task name
704
- * @property cached - True if result was retrieved from cache
705
- * @property state - Execution outcome (success, failed, error, skipped)
706
- * @property duration - Execution time in seconds
707
- */
708
- export declare const TaskExecutionResultType: StructType<{
709
- name: StringType;
710
- cached: BooleanType;
711
- state: VariantType<{
712
- success: NullType;
713
- failed: StructType<{
714
- exitCode: IntegerType;
715
- }>;
716
- error: StructType<{
717
- message: StringType;
718
- }>;
719
- skipped: NullType;
78
+ readonly WorkspaceNotFoundErrorType: import("@elaraai/east").StructType<{
79
+ readonly workspace: import("@elaraai/east").StringType;
720
80
  }>;
721
- duration: FloatType;
722
- }>;
723
- /**
724
- * Result of dataflow execution.
725
- *
726
- * @property success - True if all tasks completed successfully
727
- * @property executed - Number of tasks that were executed
728
- * @property cached - Number of tasks that used cached results
729
- * @property failed - Number of tasks that failed
730
- * @property skipped - Number of tasks that were skipped
731
- * @property tasks - Per-task execution results
732
- * @property duration - Total execution time in seconds
733
- */
734
- export declare const DataflowResultType: StructType<{
735
- success: BooleanType;
736
- executed: IntegerType;
737
- cached: IntegerType;
738
- failed: IntegerType;
739
- skipped: IntegerType;
740
- tasks: ArrayType<StructType<{
741
- name: StringType;
742
- cached: BooleanType;
743
- state: VariantType<{
744
- success: NullType;
745
- failed: StructType<{
746
- exitCode: IntegerType;
747
- }>;
748
- error: StructType<{
749
- message: StringType;
750
- }>;
751
- skipped: NullType;
752
- }>;
753
- duration: FloatType;
754
- }>>;
755
- duration: FloatType;
756
- }>;
757
- export type Error = ValueTypeOf<typeof ErrorType>;
758
- export type RepositoryStatus = ValueTypeOf<typeof RepositoryStatusType>;
759
- export type GcRequest = ValueTypeOf<typeof GcRequestType>;
760
- export type GcResult = ValueTypeOf<typeof GcResultType>;
761
- export type PackageListItem = ValueTypeOf<typeof PackageListItemType>;
762
- export type PackageImportResult = ValueTypeOf<typeof PackageImportResultType>;
763
- export type PackageInfo = ValueTypeOf<typeof PackageInfoType>;
764
- export type PackageDetails = ValueTypeOf<typeof PackageDetailsType>;
765
- export type WorkspaceInfo = ValueTypeOf<typeof WorkspaceInfoType>;
766
- export type WorkspaceCreateRequest = ValueTypeOf<typeof WorkspaceCreateRequestType>;
767
- export type WorkspaceDeployRequest = ValueTypeOf<typeof WorkspaceDeployRequestType>;
768
- export type DatasetStatus = ValueTypeOf<typeof DatasetStatusType>;
769
- export type TaskStatus = ValueTypeOf<typeof TaskStatusType>;
770
- export type DatasetStatusInfo = ValueTypeOf<typeof DatasetStatusInfoType>;
771
- export type TaskStatusInfo = ValueTypeOf<typeof TaskStatusInfoType>;
772
- export type WorkspaceStatusSummary = ValueTypeOf<typeof WorkspaceStatusSummaryType>;
773
- export type WorkspaceStatusResult = ValueTypeOf<typeof WorkspaceStatusResultType>;
774
- export type TaskListItem = ValueTypeOf<typeof TaskListItemType>;
775
- export type TaskDetails = ValueTypeOf<typeof TaskDetailsType>;
776
- export type DataflowRequest = ValueTypeOf<typeof DataflowRequestType>;
777
- export type GraphTask = ValueTypeOf<typeof GraphTaskType>;
778
- export type DataflowGraph = ValueTypeOf<typeof DataflowGraphType>;
779
- export type LogChunk = ValueTypeOf<typeof LogChunkType>;
780
- export type TaskExecutionResult = ValueTypeOf<typeof TaskExecutionResultType>;
781
- export type DataflowResult = ValueTypeOf<typeof DataflowResultType>;
782
- export declare const ApiTypes: {
783
- readonly ErrorType: VariantType<{
784
- workspace_not_found: StructType<{
785
- workspace: StringType;
786
- }>;
787
- workspace_not_deployed: StructType<{
788
- workspace: StringType;
789
- }>;
790
- workspace_exists: StructType<{
791
- workspace: StringType;
792
- }>;
793
- workspace_locked: StructType<{
794
- workspace: StringType;
795
- holder: VariantType<{
796
- unknown: NullType;
797
- known: StructType<{
798
- pid: IntegerType;
799
- acquiredAt: StringType;
800
- bootId: OptionType<StringType>;
801
- command: OptionType<StringType>;
802
- }>;
803
- }>;
804
- }>;
805
- package_not_found: StructType<{
806
- packageName: StringType;
807
- version: OptionType<StringType>;
808
- }>;
809
- package_exists: StructType<{
810
- packageName: StringType;
811
- version: StringType;
812
- }>;
813
- package_invalid: StructType<{
814
- reason: StringType;
815
- }>;
816
- dataset_not_found: StructType<{
817
- workspace: StringType;
818
- path: StringType;
819
- }>;
820
- task_not_found: StructType<{
821
- task: StringType;
822
- }>;
823
- object_not_found: StructType<{
824
- hash: StringType;
825
- }>;
826
- dataflow_error: StructType<{
827
- message: StringType;
828
- }>;
829
- dataflow_aborted: NullType;
830
- permission_denied: StructType<{
831
- path: StringType;
832
- }>;
833
- internal: StructType<{
834
- message: StringType;
835
- }>;
81
+ readonly WorkspaceNotDeployedErrorType: import("@elaraai/east").StructType<{
82
+ readonly workspace: import("@elaraai/east").StringType;
836
83
  }>;
837
- readonly WorkspaceNotFoundErrorType: StructType<{
838
- workspace: StringType;
84
+ readonly WorkspaceExistsErrorType: import("@elaraai/east").StructType<{
85
+ readonly workspace: import("@elaraai/east").StringType;
839
86
  }>;
840
- readonly WorkspaceNotDeployedErrorType: StructType<{
841
- workspace: StringType;
842
- }>;
843
- readonly WorkspaceExistsErrorType: StructType<{
844
- workspace: StringType;
845
- }>;
846
- readonly WorkspaceLockedErrorType: StructType<{
847
- workspace: StringType;
848
- holder: VariantType<{
849
- unknown: NullType;
850
- known: StructType<{
851
- pid: IntegerType;
852
- acquiredAt: StringType;
853
- bootId: OptionType<StringType>;
854
- 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>;
855
96
  }>;
856
97
  }>;
857
98
  }>;
858
- readonly LockHolderType: StructType<{
859
- pid: IntegerType;
860
- acquiredAt: StringType;
861
- bootId: OptionType<StringType>;
862
- 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>;
104
+ }>;
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>;
863
108
  }>;
864
- readonly PackageNotFoundErrorType: StructType<{
865
- packageName: StringType;
866
- version: OptionType<StringType>;
109
+ readonly PackageExistsErrorType: import("@elaraai/east").StructType<{
110
+ readonly packageName: import("@elaraai/east").StringType;
111
+ readonly version: import("@elaraai/east").StringType;
867
112
  }>;
868
- readonly PackageExistsErrorType: StructType<{
869
- packageName: StringType;
870
- version: StringType;
113
+ readonly PackageInvalidErrorType: import("@elaraai/east").StructType<{
114
+ readonly reason: import("@elaraai/east").StringType;
871
115
  }>;
872
- readonly PackageInvalidErrorType: StructType<{
873
- reason: StringType;
116
+ readonly DatasetNotFoundErrorType: import("@elaraai/east").StructType<{
117
+ readonly workspace: import("@elaraai/east").StringType;
118
+ readonly path: import("@elaraai/east").StringType;
874
119
  }>;
875
- readonly DatasetNotFoundErrorType: StructType<{
876
- workspace: StringType;
877
- path: StringType;
120
+ readonly TaskNotFoundErrorType: import("@elaraai/east").StructType<{
121
+ readonly task: import("@elaraai/east").StringType;
878
122
  }>;
879
- readonly TaskNotFoundErrorType: StructType<{
880
- task: StringType;
123
+ readonly ExecutionNotFoundErrorType: import("@elaraai/east").StructType<{
124
+ readonly task: import("@elaraai/east").StringType;
881
125
  }>;
882
- readonly ObjectNotFoundErrorType: StructType<{
883
- hash: StringType;
126
+ readonly ObjectNotFoundErrorType: import("@elaraai/east").StructType<{
127
+ readonly hash: import("@elaraai/east").StringType;
884
128
  }>;
885
- readonly DataflowErrorType: StructType<{
886
- message: StringType;
129
+ readonly DataflowErrorType: import("@elaraai/east").StructType<{
130
+ readonly message: import("@elaraai/east").StringType;
887
131
  }>;
888
- readonly PermissionDeniedErrorType: StructType<{
889
- path: StringType;
132
+ readonly PermissionDeniedErrorType: import("@elaraai/east").StructType<{
133
+ readonly path: import("@elaraai/east").StringType;
890
134
  }>;
891
- readonly InternalErrorType: StructType<{
892
- message: StringType;
135
+ readonly InternalErrorType: import("@elaraai/east").StructType<{
136
+ readonly message: import("@elaraai/east").StringType;
893
137
  }>;
894
- readonly ResponseType: <T extends EastType>(successType: T) => VariantType<{
895
- success: T;
896
- error: VariantType<{
897
- workspace_not_found: StructType<{
898
- workspace: StringType;
138
+ readonly ResponseType: <T extends import("@elaraai/east").EastType>(successType: T) => import("@elaraai/east").VariantType<{
139
+ readonly success: T;
140
+ readonly error: import("@elaraai/east").VariantType<{
141
+ readonly repository_not_found: import("@elaraai/east").StructType<{
142
+ readonly repo: import("@elaraai/east").StringType;
899
143
  }>;
900
- workspace_not_deployed: StructType<{
901
- workspace: StringType;
144
+ readonly workspace_not_found: import("@elaraai/east").StructType<{
145
+ readonly workspace: import("@elaraai/east").StringType;
902
146
  }>;
903
- workspace_exists: StructType<{
904
- workspace: StringType;
147
+ readonly workspace_not_deployed: import("@elaraai/east").StructType<{
148
+ readonly workspace: import("@elaraai/east").StringType;
905
149
  }>;
906
- workspace_locked: StructType<{
907
- workspace: StringType;
908
- holder: VariantType<{
909
- unknown: NullType;
910
- known: StructType<{
911
- pid: IntegerType;
912
- acquiredAt: StringType;
913
- bootId: OptionType<StringType>;
914
- command: OptionType<StringType>;
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>;
915
162
  }>;
916
163
  }>;
917
164
  }>;
918
- package_not_found: StructType<{
919
- packageName: StringType;
920
- 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>;
168
+ }>;
169
+ readonly package_exists: import("@elaraai/east").StructType<{
170
+ readonly packageName: import("@elaraai/east").StringType;
171
+ readonly version: import("@elaraai/east").StringType;
921
172
  }>;
922
- package_exists: StructType<{
923
- packageName: StringType;
924
- version: StringType;
173
+ readonly package_invalid: import("@elaraai/east").StructType<{
174
+ readonly reason: import("@elaraai/east").StringType;
925
175
  }>;
926
- package_invalid: StructType<{
927
- reason: StringType;
176
+ readonly dataset_not_found: import("@elaraai/east").StructType<{
177
+ readonly workspace: import("@elaraai/east").StringType;
178
+ readonly path: import("@elaraai/east").StringType;
928
179
  }>;
929
- dataset_not_found: StructType<{
930
- workspace: StringType;
931
- path: StringType;
180
+ readonly task_not_found: import("@elaraai/east").StructType<{
181
+ readonly task: import("@elaraai/east").StringType;
932
182
  }>;
933
- task_not_found: StructType<{
934
- task: StringType;
183
+ readonly execution_not_found: import("@elaraai/east").StructType<{
184
+ readonly task: import("@elaraai/east").StringType;
935
185
  }>;
936
- object_not_found: StructType<{
937
- hash: StringType;
186
+ readonly object_not_found: import("@elaraai/east").StructType<{
187
+ readonly hash: import("@elaraai/east").StringType;
938
188
  }>;
939
- dataflow_error: StructType<{
940
- message: StringType;
189
+ readonly dataflow_error: import("@elaraai/east").StructType<{
190
+ readonly message: import("@elaraai/east").StringType;
941
191
  }>;
942
- dataflow_aborted: NullType;
943
- permission_denied: StructType<{
944
- 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;
945
195
  }>;
946
- internal: StructType<{
947
- message: StringType;
196
+ readonly internal: import("@elaraai/east").StructType<{
197
+ readonly message: import("@elaraai/east").StringType;
948
198
  }>;
949
199
  }>;
950
200
  }>;
951
- readonly RepositoryStatusType: StructType<{
952
- path: StringType;
953
- objectCount: IntegerType;
954
- packageCount: IntegerType;
955
- workspaceCount: IntegerType;
956
- }>;
957
- readonly GcRequestType: StructType<{
958
- dryRun: BooleanType;
959
- minAge: OptionType<IntegerType>;
960
- }>;
961
- readonly GcResultType: StructType<{
962
- deletedObjects: IntegerType;
963
- deletedPartials: IntegerType;
964
- retainedObjects: IntegerType;
965
- skippedYoung: IntegerType;
966
- bytesFreed: IntegerType;
967
- }>;
968
- readonly PackageListItemType: StructType<{
969
- name: StringType;
970
- version: StringType;
971
- }>;
972
- readonly PackageImportResultType: StructType<{
973
- name: StringType;
974
- version: StringType;
975
- packageHash: StringType;
976
- objectCount: IntegerType;
977
- }>;
978
- readonly PackageInfoType: StructType<{
979
- name: StringType;
980
- version: StringType;
981
- hash: StringType;
982
- }>;
983
- readonly PackageDetailsType: StructType<{
984
- name: StringType;
985
- version: StringType;
986
- hash: StringType;
987
- tasks: ArrayType<StringType>;
988
- dataStructure: import("@elaraai/east").RecursiveType<VariantType<{
989
- value: import("@elaraai/east").RecursiveType<VariantType<{
990
- Never: import("@elaraai/east").NullType;
991
- Null: import("@elaraai/east").NullType;
992
- Boolean: import("@elaraai/east").NullType;
993
- Integer: import("@elaraai/east").NullType;
994
- Float: import("@elaraai/east").NullType;
995
- String: import("@elaraai/east").NullType;
996
- DateTime: import("@elaraai/east").NullType;
997
- Blob: import("@elaraai/east").NullType;
998
- Ref: import("@elaraai/east").RecursiveTypeMarker;
999
- Array: import("@elaraai/east").RecursiveTypeMarker;
1000
- Set: import("@elaraai/east").RecursiveTypeMarker;
1001
- Dict: import("@elaraai/east").StructType<{
1002
- key: import("@elaraai/east").RecursiveTypeMarker;
1003
- value: import("@elaraai/east").RecursiveTypeMarker;
1004
- }>;
1005
- Struct: ArrayType<import("@elaraai/east").StructType<{
1006
- name: StringType;
1007
- type: import("@elaraai/east").RecursiveTypeMarker;
1008
- }>>;
1009
- Variant: ArrayType<import("@elaraai/east").StructType<{
1010
- name: StringType;
1011
- type: import("@elaraai/east").RecursiveTypeMarker;
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;
231
+ }>;
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;
238
+ }>>;
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<{
264
+ readonly Never: import("@elaraai/east").NullType;
265
+ readonly Null: import("@elaraai/east").NullType;
266
+ readonly Boolean: import("@elaraai/east").NullType;
267
+ readonly Integer: import("@elaraai/east").NullType;
268
+ readonly Float: import("@elaraai/east").NullType;
269
+ readonly String: import("@elaraai/east").NullType;
270
+ readonly DateTime: import("@elaraai/east").NullType;
271
+ readonly Blob: import("@elaraai/east").NullType;
272
+ readonly Ref: import("@elaraai/east").RecursiveTypeMarker;
273
+ readonly Array: import("@elaraai/east").RecursiveTypeMarker;
274
+ readonly Set: import("@elaraai/east").RecursiveTypeMarker;
275
+ readonly Dict: import("@elaraai/east").StructType<{
276
+ readonly key: import("@elaraai/east").RecursiveTypeMarker;
277
+ readonly value: import("@elaraai/east").RecursiveTypeMarker;
278
+ }>;
279
+ readonly Struct: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
280
+ readonly name: import("@elaraai/east").StringType;
281
+ readonly type: import("@elaraai/east").RecursiveTypeMarker;
282
+ }>>;
283
+ readonly Variant: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
284
+ readonly name: import("@elaraai/east").StringType;
285
+ readonly type: import("@elaraai/east").RecursiveTypeMarker;
286
+ }>>;
287
+ readonly Recursive: import("@elaraai/east").IntegerType;
288
+ readonly Function: import("@elaraai/east").StructType<{
289
+ readonly inputs: import("@elaraai/east").ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
290
+ readonly output: import("@elaraai/east").RecursiveTypeMarker;
291
+ }>;
292
+ readonly AsyncFunction: import("@elaraai/east").StructType<{
293
+ readonly inputs: import("@elaraai/east").ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
294
+ readonly output: import("@elaraai/east").RecursiveTypeMarker;
295
+ }>;
296
+ readonly Vector: import("@elaraai/east").RecursiveTypeMarker;
297
+ readonly Matrix: import("@elaraai/east").RecursiveTypeMarker;
1012
298
  }>>;
1013
- Recursive: import("@elaraai/east").IntegerType;
1014
- Function: import("@elaraai/east").StructType<{
1015
- inputs: ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
1016
- output: import("@elaraai/east").RecursiveTypeMarker;
1017
- }>;
1018
- AsyncFunction: import("@elaraai/east").StructType<{
1019
- inputs: ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
1020
- output: import("@elaraai/east").RecursiveTypeMarker;
1021
- }>;
1022
- }>>;
1023
- struct: import("@elaraai/east").DictType<StringType, import("@elaraai/east").RecursiveTypeMarker>;
299
+ readonly writable: import("@elaraai/east").BooleanType;
300
+ }>;
301
+ readonly struct: import("@elaraai/east").DictType<import("@elaraai/east").StringType, import("@elaraai/east").RecursiveTypeMarker>;
1024
302
  }>>;
1025
303
  }>;
1026
- readonly WorkspaceCreateRequestType: StructType<{
1027
- name: StringType;
304
+ readonly WorkspaceCreateRequestType: import("@elaraai/east").StructType<{
305
+ readonly name: import("@elaraai/east").StringType;
1028
306
  }>;
1029
- readonly WorkspaceInfoType: StructType<{
1030
- name: StringType;
1031
- deployed: BooleanType;
1032
- packageName: OptionType<StringType>;
1033
- 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>;
1034
312
  }>;
1035
- readonly WorkspaceDeployRequestType: StructType<{
1036
- packageRef: StringType;
313
+ readonly WorkspaceDeployRequestType: import("@elaraai/east").StructType<{
314
+ readonly packageRef: import("@elaraai/east").StringType;
1037
315
  }>;
1038
- readonly DatasetStatusType: VariantType<{
1039
- unset: NullType;
1040
- stale: NullType;
1041
- 'up-to-date': NullType;
316
+ readonly WorkspaceExportRequestType: import("@elaraai/east").StructType<{
317
+ readonly name: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
318
+ readonly version: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
1042
319
  }>;
1043
- readonly TaskStatusType: VariantType<{
1044
- 'up-to-date': StructType<{
1045
- cached: BooleanType;
1046
- }>;
1047
- ready: NullType;
1048
- waiting: StructType<{
1049
- reason: StringType;
1050
- }>;
1051
- 'in-progress': StructType<{
1052
- /** Process ID of the running task */
1053
- pid: OptionType<IntegerType>;
1054
- /** ISO timestamp when execution started */
1055
- startedAt: OptionType<StringType>;
1056
- }>;
1057
- failed: StructType<{
1058
- /** Process exit code */
1059
- exitCode: IntegerType;
1060
- /** ISO timestamp when task completed */
1061
- completedAt: OptionType<StringType>;
1062
- }>;
1063
- error: StructType<{
1064
- /** Error message */
1065
- message: StringType;
1066
- /** ISO timestamp when error occurred */
1067
- completedAt: OptionType<StringType>;
1068
- }>;
1069
- 'stale-running': StructType<{
1070
- /** Last known process ID */
1071
- pid: OptionType<IntegerType>;
1072
- /** ISO timestamp when execution started */
1073
- startedAt: OptionType<StringType>;
1074
- }>;
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;
1075
324
  }>;
1076
- readonly TaskStatusUpToDateType: StructType<{
1077
- cached: BooleanType;
1078
- }>;
1079
- readonly TaskStatusWaitingType: StructType<{
1080
- reason: StringType;
1081
- }>;
1082
- readonly TaskStatusInProgressType: StructType<{
1083
- /** Process ID of the running task */
1084
- pid: OptionType<IntegerType>;
1085
- /** ISO timestamp when execution started */
1086
- startedAt: OptionType<StringType>;
1087
- }>;
1088
- readonly TaskStatusFailedType: StructType<{
1089
- /** Process exit code */
1090
- exitCode: IntegerType;
1091
- /** ISO timestamp when task completed */
1092
- completedAt: OptionType<StringType>;
1093
- }>;
1094
- readonly TaskStatusErrorType: StructType<{
1095
- /** Error message */
1096
- message: StringType;
1097
- /** ISO timestamp when error occurred */
1098
- completedAt: OptionType<StringType>;
1099
- }>;
1100
- readonly TaskStatusStaleRunningType: StructType<{
1101
- /** Last known process ID */
1102
- pid: OptionType<IntegerType>;
1103
- /** ISO timestamp when execution started */
1104
- startedAt: OptionType<StringType>;
1105
- }>;
1106
- readonly DatasetStatusInfoType: StructType<{
1107
- path: StringType;
1108
- status: VariantType<{
1109
- unset: NullType;
1110
- stale: NullType;
1111
- 'up-to-date': NullType;
1112
- }>;
1113
- hash: OptionType<StringType>;
1114
- isTaskOutput: BooleanType;
1115
- producedBy: OptionType<StringType>;
1116
- }>;
1117
- readonly TaskStatusInfoType: StructType<{
1118
- name: StringType;
1119
- hash: StringType;
1120
- status: VariantType<{
1121
- 'up-to-date': StructType<{
1122
- cached: BooleanType;
1123
- }>;
1124
- ready: NullType;
1125
- waiting: StructType<{
1126
- reason: StringType;
1127
- }>;
1128
- 'in-progress': StructType<{
1129
- /** Process ID of the running task */
1130
- pid: OptionType<IntegerType>;
1131
- /** ISO timestamp when execution started */
1132
- startedAt: OptionType<StringType>;
1133
- }>;
1134
- failed: StructType<{
1135
- /** Process exit code */
1136
- exitCode: IntegerType;
1137
- /** ISO timestamp when task completed */
1138
- completedAt: OptionType<StringType>;
1139
- }>;
1140
- error: StructType<{
1141
- /** Error message */
1142
- message: StringType;
1143
- /** ISO timestamp when error occurred */
1144
- completedAt: OptionType<StringType>;
1145
- }>;
1146
- 'stale-running': StructType<{
1147
- /** Last known process ID */
1148
- pid: OptionType<IntegerType>;
1149
- /** ISO timestamp when execution started */
1150
- startedAt: OptionType<StringType>;
1151
- }>;
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;
1152
332
  }>;
1153
- inputs: ArrayType<StringType>;
1154
- output: StringType;
1155
- dependsOn: ArrayType<StringType>;
1156
- }>;
1157
- readonly WorkspaceStatusSummaryType: StructType<{
1158
- /** Dataset status counts */
1159
- datasets: StructType<{
1160
- total: IntegerType;
1161
- unset: IntegerType;
1162
- stale: IntegerType;
1163
- upToDate: IntegerType;
1164
- }>;
1165
- /** Task status counts */
1166
- tasks: StructType<{
1167
- total: IntegerType;
1168
- upToDate: IntegerType;
1169
- ready: IntegerType;
1170
- waiting: IntegerType;
1171
- inProgress: IntegerType;
1172
- failed: IntegerType;
1173
- error: IntegerType;
1174
- staleRunning: IntegerType;
1175
- }>;
1176
- }>;
1177
- readonly WorkspaceStatusResultType: StructType<{
1178
- workspace: StringType;
1179
- lock: OptionType<StructType<{
1180
- pid: IntegerType;
1181
- acquiredAt: StringType;
1182
- bootId: OptionType<StringType>;
1183
- command: OptionType<StringType>;
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>;
1184
440
  }>>;
1185
- datasets: ArrayType<StructType<{
1186
- path: StringType;
1187
- status: VariantType<{
1188
- unset: NullType;
1189
- stale: NullType;
1190
- 'up-to-date': NullType;
1191
- }>;
1192
- hash: OptionType<StringType>;
1193
- isTaskOutput: BooleanType;
1194
- 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>;
1195
451
  }>>;
1196
- tasks: ArrayType<StructType<{
1197
- name: StringType;
1198
- hash: StringType;
1199
- status: VariantType<{
1200
- 'up-to-date': StructType<{
1201
- 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;
1202
458
  }>;
1203
- ready: NullType;
1204
- waiting: StructType<{
1205
- reason: StringType;
459
+ readonly ready: import("@elaraai/east").NullType;
460
+ readonly waiting: import("@elaraai/east").StructType<{
461
+ readonly reason: import("@elaraai/east").StringType;
1206
462
  }>;
1207
- 'in-progress': StructType<{
1208
- /** Process ID of the running task */
1209
- pid: OptionType<IntegerType>;
1210
- /** ISO timestamp when execution started */
1211
- 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>;
1212
466
  }>;
1213
- failed: StructType<{
1214
- /** Process exit code */
1215
- exitCode: IntegerType;
1216
- /** ISO timestamp when task completed */
1217
- 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>;
1218
470
  }>;
1219
- error: StructType<{
1220
- /** Error message */
1221
- message: StringType;
1222
- /** ISO timestamp when error occurred */
1223
- 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>;
1224
474
  }>;
1225
- 'stale-running': StructType<{
1226
- /** Last known process ID */
1227
- pid: OptionType<IntegerType>;
1228
- /** ISO timestamp when execution started */
1229
- 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>;
1230
478
  }>;
1231
479
  }>;
1232
- inputs: ArrayType<StringType>;
1233
- output: StringType;
1234
- 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>;
1235
483
  }>>;
1236
- summary: StructType<{
1237
- /** Dataset status counts */
1238
- datasets: StructType<{
1239
- total: IntegerType;
1240
- unset: IntegerType;
1241
- stale: IntegerType;
1242
- upToDate: IntegerType;
1243
- }>;
1244
- /** Task status counts */
1245
- tasks: StructType<{
1246
- total: IntegerType;
1247
- upToDate: IntegerType;
1248
- ready: IntegerType;
1249
- waiting: IntegerType;
1250
- inProgress: IntegerType;
1251
- failed: IntegerType;
1252
- error: IntegerType;
1253
- staleRunning: IntegerType;
1254
- }>;
1255
- }>;
1256
- }>;
1257
- readonly TaskListItemType: StructType<{
1258
- name: StringType;
1259
- hash: StringType;
1260
- }>;
1261
- readonly TaskDetailsType: StructType<{
1262
- name: StringType;
1263
- hash: StringType;
1264
- commandIr: StringType;
1265
- inputs: ArrayType<ArrayType<VariantType<{
1266
- 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;
1267
513
  }>>>;
1268
- output: ArrayType<VariantType<{
1269
- field: StringType;
514
+ readonly output: import("@elaraai/east").ArrayType<import("@elaraai/east").VariantType<{
515
+ readonly field: import("@elaraai/east").StringType;
1270
516
  }>>;
1271
517
  }>;
1272
- readonly DataflowRequestType: StructType<{
1273
- concurrency: OptionType<IntegerType>;
1274
- force: BooleanType;
1275
- filter: OptionType<StringType>;
1276
- }>;
1277
- readonly GraphTaskType: StructType<{
1278
- name: StringType;
1279
- hash: StringType;
1280
- inputs: ArrayType<StringType>;
1281
- output: StringType;
1282
- dependsOn: ArrayType<StringType>;
1283
- }>;
1284
- readonly DataflowGraphType: StructType<{
1285
- tasks: ArrayType<StructType<{
1286
- name: StringType;
1287
- hash: StringType;
1288
- inputs: ArrayType<StringType>;
1289
- output: StringType;
1290
- 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>;
1291
530
  }>>;
1292
531
  }>;
1293
- readonly LogChunkType: StructType<{
1294
- data: StringType;
1295
- offset: IntegerType;
1296
- size: IntegerType;
1297
- totalSize: IntegerType;
1298
- complete: BooleanType;
1299
- }>;
1300
- readonly TaskExecutionResultType: StructType<{
1301
- name: StringType;
1302
- cached: BooleanType;
1303
- state: VariantType<{
1304
- success: NullType;
1305
- failed: StructType<{
1306
- exitCode: IntegerType;
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;
574
+ }>;
575
+ readonly error: import("@elaraai/east").StructType<{
576
+ readonly message: import("@elaraai/east").StringType;
577
+ }>;
578
+ readonly skipped: import("@elaraai/east").NullType;
1307
579
  }>;
1308
- error: StructType<{
1309
- message: StringType;
580
+ readonly duration: import("@elaraai/east").FloatType;
581
+ }>>;
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;
643
+ }>>;
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;
1310
673
  }>;
1311
- skipped: NullType;
1312
- }>;
1313
- duration: FloatType;
1314
- }>;
1315
- readonly DataflowResultType: StructType<{
1316
- success: BooleanType;
1317
- executed: IntegerType;
1318
- cached: IntegerType;
1319
- failed: IntegerType;
1320
- skipped: IntegerType;
1321
- tasks: ArrayType<StructType<{
1322
- name: StringType;
1323
- cached: BooleanType;
1324
- state: VariantType<{
1325
- success: NullType;
1326
- failed: StructType<{
1327
- exitCode: IntegerType;
674
+ }>>;
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;
712
+ readonly Ref: import("@elaraai/east").RecursiveTypeMarker;
713
+ readonly Array: import("@elaraai/east").RecursiveTypeMarker;
714
+ readonly Set: import("@elaraai/east").RecursiveTypeMarker;
715
+ readonly Dict: import("@elaraai/east").StructType<{
716
+ readonly key: import("@elaraai/east").RecursiveTypeMarker;
717
+ readonly value: import("@elaraai/east").RecursiveTypeMarker;
1328
718
  }>;
1329
- error: StructType<{
1330
- message: StringType;
719
+ readonly Struct: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
720
+ readonly name: import("@elaraai/east").StringType;
721
+ readonly type: import("@elaraai/east").RecursiveTypeMarker;
722
+ }>>;
723
+ readonly Variant: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
724
+ readonly name: import("@elaraai/east").StringType;
725
+ readonly type: import("@elaraai/east").RecursiveTypeMarker;
726
+ }>>;
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>;
730
+ readonly output: import("@elaraai/east").RecursiveTypeMarker;
731
+ }>;
732
+ readonly AsyncFunction: import("@elaraai/east").StructType<{
733
+ readonly inputs: import("@elaraai/east").ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
734
+ readonly output: import("@elaraai/east").RecursiveTypeMarker;
1331
735
  }>;
1332
- skipped: NullType;
736
+ readonly Vector: import("@elaraai/east").RecursiveTypeMarker;
737
+ readonly Matrix: import("@elaraai/east").RecursiveTypeMarker;
738
+ }>>;
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;
760
+ readonly Ref: import("@elaraai/east").RecursiveTypeMarker;
761
+ readonly Array: import("@elaraai/east").RecursiveTypeMarker;
762
+ readonly Set: import("@elaraai/east").RecursiveTypeMarker;
763
+ readonly Dict: import("@elaraai/east").StructType<{
764
+ readonly key: import("@elaraai/east").RecursiveTypeMarker;
765
+ readonly value: import("@elaraai/east").RecursiveTypeMarker;
766
+ }>;
767
+ readonly Struct: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
768
+ readonly name: import("@elaraai/east").StringType;
769
+ readonly type: import("@elaraai/east").RecursiveTypeMarker;
770
+ }>>;
771
+ readonly Variant: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
772
+ readonly name: import("@elaraai/east").StringType;
773
+ readonly type: import("@elaraai/east").RecursiveTypeMarker;
774
+ }>>;
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>;
778
+ readonly output: import("@elaraai/east").RecursiveTypeMarker;
779
+ }>;
780
+ readonly AsyncFunction: import("@elaraai/east").StructType<{
781
+ readonly inputs: import("@elaraai/east").ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
782
+ readonly output: import("@elaraai/east").RecursiveTypeMarker;
1333
783
  }>;
1334
- duration: FloatType;
784
+ readonly Vector: import("@elaraai/east").RecursiveTypeMarker;
785
+ readonly Matrix: import("@elaraai/east").RecursiveTypeMarker;
1335
786
  }>>;
1336
- duration: FloatType;
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;
800
+ }>;
801
+ }>;
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;
806
+ }>;
807
+ }>;
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;
814
+ }>;
815
+ }>;
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;
821
+ }>;
822
+ readonly failed: import("@elaraai/east").StructType<{
823
+ readonly message: import("@elaraai/east").StringType;
824
+ }>;
825
+ }>;
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;
837
+ }>;
838
+ readonly failed: import("@elaraai/east").StructType<{
839
+ readonly message: import("@elaraai/east").StringType;
840
+ }>;
1337
841
  }>;
1338
842
  };
1339
843
  //# sourceMappingURL=types.d.ts.map