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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (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
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"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"}
package/dist/src/types.js CHANGED
@@ -3,415 +3,48 @@
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.
7
- *
8
- * All types are East types for BEAST2 serialization.
9
- */
10
- import { VariantType, StructType, ArrayType, OptionType, StringType, IntegerType, FloatType, BooleanType, NullType, } from '@elaraai/east';
11
- import { StructureType, TreePathType, } from '@elaraai/e3-types';
12
- // =============================================================================
13
- // Error Types
14
- // =============================================================================
15
- export const WorkspaceNotFoundErrorType = StructType({ workspace: StringType });
16
- export const WorkspaceNotDeployedErrorType = StructType({ workspace: StringType });
17
- export const WorkspaceExistsErrorType = StructType({ workspace: StringType });
18
- export const LockHolderType = StructType({
19
- pid: IntegerType,
20
- acquiredAt: StringType,
21
- bootId: OptionType(StringType),
22
- command: OptionType(StringType),
23
- });
24
- export const WorkspaceLockedErrorType = StructType({
25
- workspace: StringType,
26
- holder: VariantType({ unknown: NullType, known: LockHolderType }),
27
- });
28
- export const PackageNotFoundErrorType = StructType({
29
- packageName: StringType,
30
- version: OptionType(StringType),
31
- });
32
- export const PackageExistsErrorType = StructType({ packageName: StringType, version: StringType });
33
- export const PackageInvalidErrorType = StructType({ reason: StringType });
34
- export const DatasetNotFoundErrorType = StructType({ workspace: StringType, path: StringType });
35
- export const TaskNotFoundErrorType = StructType({ task: StringType });
36
- export const ObjectNotFoundErrorType = StructType({ hash: StringType });
37
- export const DataflowErrorType = StructType({ message: StringType });
38
- export const PermissionDeniedErrorType = StructType({ path: StringType });
39
- export const InternalErrorType = StructType({ message: StringType });
40
- export const ErrorType = VariantType({
41
- workspace_not_found: WorkspaceNotFoundErrorType,
42
- workspace_not_deployed: WorkspaceNotDeployedErrorType,
43
- workspace_exists: WorkspaceExistsErrorType,
44
- workspace_locked: WorkspaceLockedErrorType,
45
- package_not_found: PackageNotFoundErrorType,
46
- package_exists: PackageExistsErrorType,
47
- package_invalid: PackageInvalidErrorType,
48
- dataset_not_found: DatasetNotFoundErrorType,
49
- task_not_found: TaskNotFoundErrorType,
50
- object_not_found: ObjectNotFoundErrorType,
51
- dataflow_error: DataflowErrorType,
52
- dataflow_aborted: NullType,
53
- permission_denied: PermissionDeniedErrorType,
54
- internal: InternalErrorType,
55
- });
56
- // =============================================================================
57
- // Response Wrapper
58
- // =============================================================================
59
- export const ResponseType = (successType) => VariantType({
60
- success: successType,
61
- error: ErrorType,
62
- });
63
- // =============================================================================
64
- // Repository Types
65
- // =============================================================================
66
- /**
67
- * Repository status information.
68
- *
69
- * @property path - Absolute path to the .e3 repository directory
70
- * @property objectCount - Number of content-addressed objects stored
71
- * @property packageCount - Number of imported packages
72
- * @property workspaceCount - Number of workspaces
73
- */
74
- export const RepositoryStatusType = StructType({
75
- path: StringType,
76
- objectCount: IntegerType,
77
- packageCount: IntegerType,
78
- workspaceCount: IntegerType,
79
- });
80
- /**
81
- * Garbage collection request options.
82
- *
83
- * @property dryRun - If true, report what would be deleted without deleting
84
- * @property minAge - Minimum age in milliseconds for objects to be considered for deletion
85
- */
86
- export const GcRequestType = StructType({
87
- dryRun: BooleanType,
88
- minAge: OptionType(IntegerType),
89
- });
90
- /**
91
- * Garbage collection result.
92
- *
93
- * @property deletedObjects - Number of unreferenced objects deleted
94
- * @property deletedPartials - Number of incomplete uploads deleted
95
- * @property retainedObjects - Number of objects still referenced
96
- * @property skippedYoung - Number of objects skipped due to minAge
97
- * @property bytesFreed - Total bytes freed by deletion
98
- */
99
- export const GcResultType = StructType({
100
- deletedObjects: IntegerType,
101
- deletedPartials: IntegerType,
102
- retainedObjects: IntegerType,
103
- skippedYoung: IntegerType,
104
- bytesFreed: IntegerType,
105
- });
106
- // =============================================================================
107
- // Package Types
108
- // =============================================================================
109
- /**
110
- * Package list item (summary info).
111
- *
112
- * @property name - Package name
113
- * @property version - Semantic version string
114
- */
115
- export const PackageListItemType = StructType({
116
- name: StringType,
117
- version: StringType,
118
- });
119
- /**
120
- * Result of importing a package.
121
- *
122
- * @property name - Imported package name
123
- * @property version - Imported package version
124
- * @property packageHash - SHA256 hash of the package content
125
- * @property objectCount - Number of objects added to the repository
126
- */
127
- export const PackageImportResultType = StructType({
128
- name: StringType,
129
- version: StringType,
130
- packageHash: StringType,
131
- objectCount: IntegerType,
132
- });
133
- /**
134
- * Basic package info.
135
- *
136
- * @property name - Package name
137
- * @property version - Semantic version string
138
- * @property hash - SHA256 content hash
139
- */
140
- export const PackageInfoType = StructType({
141
- name: StringType,
142
- version: StringType,
143
- hash: StringType,
144
- });
145
- /**
146
- * Detailed package information including structure.
147
- *
148
- * @property name - Package name
149
- * @property version - Semantic version string
150
- * @property hash - SHA256 content hash
151
- * @property tasks - List of task names defined in the package
152
- * @property dataStructure - East structure type describing the package's data schema
153
- */
154
- export const PackageDetailsType = StructType({
155
- name: StringType,
156
- version: StringType,
157
- hash: StringType,
158
- tasks: ArrayType(StringType),
159
- dataStructure: StructureType,
160
- });
161
- // =============================================================================
162
- // Workspace Types
163
- // =============================================================================
164
- /**
165
- * Request to create a new workspace.
166
- *
167
- * @property name - Unique workspace name
168
- */
169
- export const WorkspaceCreateRequestType = StructType({
170
- name: StringType,
171
- });
172
- /** @deprecated Use WorkspaceCreateRequestType */
173
- export const CreateWorkspaceType = WorkspaceCreateRequestType;
174
- /**
175
- * Workspace summary information.
176
- *
177
- * @property name - Workspace name
178
- * @property deployed - Whether a package is deployed to this workspace
179
- * @property packageName - Name of deployed package (if deployed)
180
- * @property packageVersion - Version of deployed package (if deployed)
181
- */
182
- export const WorkspaceInfoType = StructType({
183
- name: StringType,
184
- deployed: BooleanType,
185
- packageName: OptionType(StringType),
186
- packageVersion: OptionType(StringType),
187
- });
188
- /**
189
- * Request to deploy a package to a workspace.
190
- *
191
- * @property packageName - Package name to deploy
192
- * @property packageVersion - Package version to deploy
193
- */
194
- export const WorkspaceDeployRequestType = StructType({
195
- packageName: StringType,
196
- packageVersion: StringType,
197
- });
198
- /**
199
- * Alternative deploy request using package reference string.
200
- *
201
- * @property packageRef - Package reference in format "name" or "name@version"
202
- */
203
- export const DeployRequestType = StructType({
204
- packageRef: StringType,
205
- });
206
- // =============================================================================
207
- // Workspace Status Types
208
- // =============================================================================
209
- /**
210
- * Dataset status variant.
211
- *
212
- * - `unset`: No value assigned to this dataset
213
- * - `stale`: Value exists but is outdated (upstream changed)
214
- * - `up-to-date`: Value is current
215
- */
216
- export const DatasetStatusType = VariantType({
217
- unset: NullType,
218
- stale: NullType,
219
- 'up-to-date': NullType,
220
- });
221
- /** Task completed successfully. @property cached - True if result was from cache */
222
- export const TaskStatusUpToDateType = StructType({ cached: BooleanType });
223
- /** Task waiting on dependencies. @property reason - Human-readable wait reason */
224
- export const TaskStatusWaitingType = StructType({ reason: StringType });
225
- /** Task currently executing. */
226
- export const TaskStatusInProgressType = StructType({
227
- /** Process ID of the running task */
228
- pid: OptionType(IntegerType),
229
- /** ISO timestamp when execution started */
230
- startedAt: OptionType(StringType),
231
- });
232
- /** Task exited with non-zero code. */
233
- export const TaskStatusFailedType = StructType({
234
- /** Process exit code */
235
- exitCode: IntegerType,
236
- /** ISO timestamp when task completed */
237
- completedAt: OptionType(StringType),
238
- });
239
- /** Task encountered an internal error. */
240
- export const TaskStatusErrorType = StructType({
241
- /** Error message */
242
- message: StringType,
243
- /** ISO timestamp when error occurred */
244
- completedAt: OptionType(StringType),
245
- });
246
- /** Task was running but process is no longer alive. */
247
- export const TaskStatusStaleRunningType = StructType({
248
- /** Last known process ID */
249
- pid: OptionType(IntegerType),
250
- /** ISO timestamp when execution started */
251
- startedAt: OptionType(StringType),
252
- });
253
- /**
254
- * Task execution status variant.
255
- *
256
- * - `up-to-date`: Task completed successfully (cached indicates if from cache)
257
- * - `ready`: Task is ready to run (all inputs available)
258
- * - `waiting`: Task waiting on upstream dependencies
259
- * - `in-progress`: Task currently executing
260
- * - `failed`: Task exited with non-zero exit code
261
- * - `error`: Internal error during task execution
262
- * - `stale-running`: Task was marked running but process died
263
- */
264
- export const TaskStatusType = VariantType({
265
- 'up-to-date': TaskStatusUpToDateType,
266
- ready: NullType,
267
- waiting: TaskStatusWaitingType,
268
- 'in-progress': TaskStatusInProgressType,
269
- failed: TaskStatusFailedType,
270
- error: TaskStatusErrorType,
271
- 'stale-running': TaskStatusStaleRunningType,
272
- });
273
- /**
274
- * Status information for a single dataset.
275
- *
276
- * @property path - Dataset path (e.g., ".inputs.config" or ".tasks.foo.output")
277
- * @property status - Current status (unset, stale, or up-to-date)
278
- * @property hash - SHA256 hash of current value (if set)
279
- * @property isTaskOutput - True if this dataset is produced by a task
280
- * @property producedBy - Name of task that produces this dataset (if isTaskOutput)
281
- */
282
- export const DatasetStatusInfoType = StructType({
283
- path: StringType,
284
- status: DatasetStatusType,
285
- hash: OptionType(StringType),
286
- isTaskOutput: BooleanType,
287
- producedBy: OptionType(StringType),
288
- });
289
- /**
290
- * Status information for a single task.
291
- *
292
- * @property name - Task name
293
- * @property hash - Task definition hash (changes when task code changes)
294
- * @property status - Current execution status
295
- * @property inputs - Dataset paths this task reads from
296
- * @property output - Dataset path this task writes to
297
- * @property dependsOn - Names of tasks that must complete before this one
298
- */
299
- export const TaskStatusInfoType = StructType({
300
- name: StringType,
301
- hash: StringType,
302
- status: TaskStatusType,
303
- inputs: ArrayType(StringType),
304
- output: StringType,
305
- dependsOn: ArrayType(StringType),
306
- });
307
- /**
308
- * Summary counts for workspace status.
309
- */
310
- export const WorkspaceStatusSummaryType = StructType({
311
- /** Dataset status counts */
312
- datasets: StructType({
313
- total: IntegerType,
314
- unset: IntegerType,
315
- stale: IntegerType,
316
- upToDate: IntegerType,
317
- }),
318
- /** Task status counts */
319
- tasks: StructType({
320
- total: IntegerType,
321
- upToDate: IntegerType,
322
- ready: IntegerType,
323
- waiting: IntegerType,
324
- inProgress: IntegerType,
325
- failed: IntegerType,
326
- error: IntegerType,
327
- staleRunning: IntegerType,
328
- }),
329
- });
330
- /**
331
- * Complete workspace status including all datasets, tasks, and summary.
332
- *
333
- * @property workspace - Workspace name
334
- * @property lock - Information about current lock holder (if locked)
335
- * @property datasets - Status of all datasets in the workspace
336
- * @property tasks - Status of all tasks in the workspace
337
- * @property summary - Aggregated counts by status
338
- */
339
- export const WorkspaceStatusResultType = StructType({
340
- workspace: StringType,
341
- lock: OptionType(LockHolderType),
342
- datasets: ArrayType(DatasetStatusInfoType),
343
- tasks: ArrayType(TaskStatusInfoType),
344
- summary: WorkspaceStatusSummaryType,
345
- });
346
- // =============================================================================
347
- // Task Types
348
- // =============================================================================
349
- export const TaskListItemType = StructType({
350
- name: StringType,
351
- hash: StringType,
352
- });
353
- // Legacy alias
354
- export const TaskInfoType = TaskListItemType;
355
- export const TaskDetailsType = StructType({
356
- name: StringType,
357
- hash: StringType,
358
- commandIr: StringType,
359
- inputs: ArrayType(TreePathType),
360
- output: TreePathType,
361
- });
362
- // =============================================================================
363
- // Execution Types
364
- // =============================================================================
365
- export const DataflowRequestType = StructType({
366
- concurrency: OptionType(IntegerType),
367
- force: BooleanType,
368
- filter: OptionType(StringType),
369
- });
370
- // Legacy alias
371
- export const StartRequestType = DataflowRequestType;
372
- export const GraphTaskType = StructType({
373
- name: StringType,
374
- hash: StringType,
375
- inputs: ArrayType(StringType),
376
- output: StringType,
377
- dependsOn: ArrayType(StringType),
378
- });
379
- export const DataflowGraphType = StructType({
380
- tasks: ArrayType(GraphTaskType),
381
- });
382
- export const LogChunkType = StructType({
383
- data: StringType,
384
- offset: IntegerType,
385
- size: IntegerType,
386
- totalSize: IntegerType,
387
- complete: BooleanType,
388
- });
389
- export const TaskExecutionResultType = StructType({
390
- name: StringType,
391
- cached: BooleanType,
392
- state: VariantType({
393
- success: NullType,
394
- failed: StructType({ exitCode: IntegerType }),
395
- error: StructType({ message: StringType }),
396
- skipped: NullType,
397
- }),
398
- duration: FloatType,
399
- });
400
- export const DataflowResultType = StructType({
401
- success: BooleanType,
402
- executed: IntegerType,
403
- cached: IntegerType,
404
- failed: IntegerType,
405
- skipped: IntegerType,
406
- tasks: ArrayType(TaskExecutionResultType),
407
- duration: FloatType,
408
- });
6
+ * API types for e3-api-server.
7
+ *
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.
11
+ */
12
+ // API wire types — re-export from @elaraai/e3-types
13
+ export {
14
+ // Error types
15
+ WorkspaceNotFoundErrorType, WorkspaceNotDeployedErrorType, WorkspaceExistsErrorType, LockHolderType, WorkspaceLockedErrorType, PackageNotFoundErrorType, PackageExistsErrorType, PackageInvalidErrorType, DatasetNotFoundErrorType, TaskNotFoundErrorType, ExecutionNotFoundErrorType, ObjectNotFoundErrorType, DataflowErrorType, PermissionDeniedErrorType, InternalErrorType, RepositoryNotFoundErrorType, ErrorType, ResponseType,
16
+ // Repository
17
+ RepositoryStatusType, GcRequestType, GcResultType, AsyncOperationStatusType, GcStartResultType, GcStatusResultType,
18
+ // Packages
19
+ PackageListItemType, PackageImportResultType, PackageInfoType, PackageDetailsType,
20
+ // Workspaces
21
+ WorkspaceCreateRequestType, WorkspaceInfoType, WorkspaceDeployRequestType, WorkspaceExportRequestType,
22
+ // Workspace Status
23
+ DatasetStatusType, TaskStatusUpToDateType, TaskStatusWaitingType, TaskStatusInProgressType, TaskStatusFailedType, TaskStatusErrorType, TaskStatusStaleRunningType, TaskStatusType, DatasetStatusInfoType, TaskStatusInfoType, WorkspaceStatusSummaryType, WorkspaceStatusResultType,
24
+ // Tasks
25
+ TaskListItemType, TaskDetailsType,
26
+ // Execution
27
+ DataflowRequestType, LogChunkType, TaskExecutionResultType, DataflowResultType,
28
+ // Dataflow API polling
29
+ DataflowEventType, ApiExecutionStatusType as ExecutionStatusType, DataflowExecutionSummaryType, ApiDataflowExecutionStateType as DataflowExecutionStateType,
30
+ // Task Execution History
31
+ ExecutionHistoryStatusType, ExecutionListItemType,
32
+ // Dataset List
33
+ TreeKindType, ListEntryType,
34
+ // Dataset Status Detail
35
+ DatasetStatusDetailType,
36
+ // Transfer types
37
+ TransferUploadRequestType, TransferUploadResponseType, TransferDoneResponseType, PackageImportStatusType, PackageExportStatusType, PackageTransferInitRequestType, PackageTransferInitResponseType, PackageJobResponseType,
38
+ // Graph types (from dataflow.ts, structurally identical to old API GraphTaskType)
39
+ DataflowGraphType, DataflowGraphTaskType, } from '@elaraai/e3-types';
409
40
  // =============================================================================
410
41
  // Namespace export for convenience
411
42
  // =============================================================================
43
+ import { ErrorType, RepositoryNotFoundErrorType, WorkspaceNotFoundErrorType, WorkspaceNotDeployedErrorType, WorkspaceExistsErrorType, WorkspaceLockedErrorType, LockHolderType, PackageNotFoundErrorType, PackageExistsErrorType, PackageInvalidErrorType, DatasetNotFoundErrorType, TaskNotFoundErrorType, ExecutionNotFoundErrorType, ObjectNotFoundErrorType, DataflowErrorType, PermissionDeniedErrorType, InternalErrorType, ResponseType, RepositoryStatusType, GcRequestType, GcResultType, AsyncOperationStatusType, GcStartResultType, GcStatusResultType, PackageListItemType, PackageImportResultType, PackageInfoType, PackageDetailsType, WorkspaceCreateRequestType, WorkspaceInfoType, WorkspaceDeployRequestType, WorkspaceExportRequestType, DatasetStatusType, TaskStatusType, TaskStatusUpToDateType, TaskStatusWaitingType, TaskStatusInProgressType, TaskStatusFailedType, TaskStatusErrorType, TaskStatusStaleRunningType, DatasetStatusInfoType, TaskStatusInfoType, WorkspaceStatusSummaryType, WorkspaceStatusResultType, TaskListItemType, TaskDetailsType, DataflowRequestType, DataflowGraphType, DataflowGraphTaskType, LogChunkType, TaskExecutionResultType, DataflowResultType, DataflowEventType, ApiExecutionStatusType, DataflowExecutionSummaryType, ApiDataflowExecutionStateType, ExecutionHistoryStatusType, ExecutionListItemType, TreeKindType, ListEntryType, DatasetStatusDetailType, TransferUploadRequestType, TransferUploadResponseType, TransferDoneResponseType, PackageImportStatusType, PackageExportStatusType, PackageTransferInitRequestType, PackageTransferInitResponseType, PackageJobResponseType, } from '@elaraai/e3-types';
412
44
  export const ApiTypes = {
413
45
  // Errors
414
46
  ErrorType,
47
+ RepositoryNotFoundErrorType,
415
48
  WorkspaceNotFoundErrorType,
416
49
  WorkspaceNotDeployedErrorType,
417
50
  WorkspaceExistsErrorType,
@@ -422,6 +55,7 @@ export const ApiTypes = {
422
55
  PackageInvalidErrorType,
423
56
  DatasetNotFoundErrorType,
424
57
  TaskNotFoundErrorType,
58
+ ExecutionNotFoundErrorType,
425
59
  ObjectNotFoundErrorType,
426
60
  DataflowErrorType,
427
61
  PermissionDeniedErrorType,
@@ -432,6 +66,10 @@ export const ApiTypes = {
432
66
  RepositoryStatusType,
433
67
  GcRequestType,
434
68
  GcResultType,
69
+ // Async Operations
70
+ AsyncOperationStatusType,
71
+ GcStartResultType,
72
+ GcStatusResultType,
435
73
  // Packages
436
74
  PackageListItemType,
437
75
  PackageImportResultType,
@@ -441,7 +79,7 @@ export const ApiTypes = {
441
79
  WorkspaceCreateRequestType,
442
80
  WorkspaceInfoType,
443
81
  WorkspaceDeployRequestType,
444
- DeployRequestType,
82
+ WorkspaceExportRequestType,
445
83
  // Workspace Status
446
84
  DatasetStatusType,
447
85
  TaskStatusType,
@@ -457,15 +95,35 @@ export const ApiTypes = {
457
95
  WorkspaceStatusResultType,
458
96
  // Tasks
459
97
  TaskListItemType,
460
- TaskInfoType,
461
98
  TaskDetailsType,
462
99
  // Execution
463
100
  DataflowRequestType,
464
- StartRequestType,
465
- GraphTaskType,
466
101
  DataflowGraphType,
102
+ DataflowGraphTaskType,
467
103
  LogChunkType,
468
104
  TaskExecutionResultType,
469
105
  DataflowResultType,
106
+ // Execution State (polling)
107
+ DataflowEventType,
108
+ ExecutionStatusType: ApiExecutionStatusType,
109
+ DataflowExecutionSummaryType,
110
+ DataflowExecutionStateType: ApiDataflowExecutionStateType,
111
+ // Task Execution History
112
+ ExecutionHistoryStatusType,
113
+ ExecutionListItemType,
114
+ // Dataset List (recursive)
115
+ TreeKindType,
116
+ ListEntryType,
117
+ // Dataset Status Detail (single dataset)
118
+ DatasetStatusDetailType,
119
+ // Transfer
120
+ TransferUploadRequestType,
121
+ TransferUploadResponseType,
122
+ TransferDoneResponseType,
123
+ PackageImportStatusType,
124
+ PackageExportStatusType,
125
+ PackageTransferInitRequestType,
126
+ PackageTransferInitResponseType,
127
+ PackageJobResponseType,
470
128
  };
471
129
  //# sourceMappingURL=types.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elaraai/e3-api-server",
3
- "version": "0.0.2-beta.5",
3
+ "version": "0.0.2-beta.50",
4
4
  "type": "module",
5
5
  "description": "East Execution Engine API Server - HTTP server exposing e3-core operations",
6
6
  "main": "dist/src/index.js",
@@ -12,6 +12,18 @@
12
12
  ".": {
13
13
  "types": "./dist/src/index.d.ts",
14
14
  "default": "./dist/src/index.js"
15
+ },
16
+ "./routes": {
17
+ "types": "./dist/src/routes/index.d.ts",
18
+ "default": "./dist/src/routes/index.js"
19
+ },
20
+ "./handlers": {
21
+ "types": "./dist/src/handlers/index.d.ts",
22
+ "default": "./dist/src/handlers/index.js"
23
+ },
24
+ "./beast2": {
25
+ "types": "./dist/src/beast2.d.ts",
26
+ "default": "./dist/src/beast2.js"
15
27
  }
16
28
  },
17
29
  "files": [
@@ -40,14 +52,14 @@
40
52
  "directory": "packages/e3-api-server"
41
53
  },
42
54
  "dependencies": {
43
- "@elaraai/e3-core": "^0.0.2-beta.5",
44
- "@elaraai/e3-types": "^0.0.2-beta.5",
55
+ "@elaraai/e3-core": "beta",
56
+ "@elaraai/e3-types": "beta",
45
57
  "@hono/node-server": "^1.13.0",
46
58
  "commander": "^12.0.0",
47
59
  "hono": "^4.6.0"
48
60
  },
49
61
  "peerDependencies": {
50
- "@elaraai/east": "^0.0.1-beta.17"
62
+ "@elaraai/east": "beta"
51
63
  },
52
64
  "devDependencies": {
53
65
  "@types/node": "^22.0.0",