@elaraai/e3-api-server 0.0.2-beta.3 → 0.0.2-beta.31

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