@elaraai/e3-api-server 0.0.2-beta.5 → 0.0.2-beta.51

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