@elaraai/e3-api-server 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/function-call-state.d.ts +40 -0
- package/dist/src/function-call-state.d.ts.map +1 -0
- package/dist/src/function-call-state.js +132 -0
- package/dist/src/function-call-state.js.map +1 -0
- package/dist/src/handlers/functions.d.ts +45 -0
- package/dist/src/handlers/functions.d.ts.map +1 -0
- package/dist/src/handlers/functions.js +321 -0
- package/dist/src/handlers/functions.js.map +1 -0
- package/dist/src/handlers/functions.spec.d.ts +6 -0
- package/dist/src/handlers/functions.spec.d.ts.map +1 -0
- package/dist/src/handlers/functions.spec.js +177 -0
- package/dist/src/handlers/functions.spec.js.map +1 -0
- package/dist/src/handlers/index.d.ts +1 -0
- package/dist/src/handlers/index.d.ts.map +1 -1
- package/dist/src/handlers/index.js +1 -0
- package/dist/src/handlers/index.js.map +1 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +2 -0
- package/dist/src/index.js.map +1 -1
- package/dist/src/routes/functions.d.ts +49 -0
- package/dist/src/routes/functions.d.ts.map +1 -0
- package/dist/src/routes/functions.js +179 -0
- package/dist/src/routes/functions.js.map +1 -0
- package/dist/src/server.d.ts.map +1 -1
- package/dist/src/server.js +19 -1
- package/dist/src/server.js.map +1 -1
- package/dist/src/types.d.ts +242 -2
- package/dist/src/types.d.ts.map +1 -1
- package/dist/src/types.js +14 -1
- package/dist/src/types.js.map +1 -1
- package/package.json +4 -4
package/dist/src/types.d.ts
CHANGED
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
* Types with "Api" prefix in e3-types are re-exported here with shorter names
|
|
10
10
|
* since API consumers don't see the conflicting domain types.
|
|
11
11
|
*/
|
|
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';
|
|
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, RunnerType, ExecuteLimitsType, DiagnosticType, ExecuteResultType, FunctionCallRequestType, FunctionSignatureType, CallStartResultType, CallStatusType, CallStatusResultType, OneShotRequestType, 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, RunnerValue, ExecuteLimits, Diagnostic, ExecuteResult, FunctionCallRequest, FunctionSignature, CallStartResult, CallStatus, CallStatusResult, OneShotRequest, DataflowGraph, DataflowGraphTask, } from '@elaraai/e3-types';
|
|
14
14
|
export declare const ApiTypes: {
|
|
15
15
|
readonly ErrorType: import("@elaraai/east").VariantType<{
|
|
16
16
|
readonly repository_not_found: import("@elaraai/east").StructType<{
|
|
@@ -869,5 +869,245 @@ export declare const ApiTypes: {
|
|
|
869
869
|
readonly PackageJobResponseType: import("@elaraai/east").StructType<{
|
|
870
870
|
readonly id: import("@elaraai/east").StringType;
|
|
871
871
|
}>;
|
|
872
|
+
readonly RunnerType: import("@elaraai/east").VariantType<{
|
|
873
|
+
readonly east_node: import("@elaraai/east").StructType<{
|
|
874
|
+
readonly platforms: import("@elaraai/east").ArrayType<import("@elaraai/east").StringType>;
|
|
875
|
+
}>;
|
|
876
|
+
readonly east_py: import("@elaraai/east").StructType<{
|
|
877
|
+
readonly platforms: import("@elaraai/east").ArrayType<import("@elaraai/east").StringType>;
|
|
878
|
+
}>;
|
|
879
|
+
readonly east_c: import("@elaraai/east").StructType<{
|
|
880
|
+
readonly platforms: import("@elaraai/east").ArrayType<import("@elaraai/east").StringType>;
|
|
881
|
+
}>;
|
|
882
|
+
}>;
|
|
883
|
+
readonly ExecuteLimitsType: import("@elaraai/east").StructType<{
|
|
884
|
+
readonly timeoutMs: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
885
|
+
readonly maxResultBytes: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
886
|
+
readonly maxLogBytes: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
887
|
+
}>;
|
|
888
|
+
readonly DiagnosticType: import("@elaraai/east").StructType<{
|
|
889
|
+
readonly message: import("@elaraai/east").StringType;
|
|
890
|
+
readonly filename: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
891
|
+
readonly line: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
892
|
+
readonly column: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
893
|
+
}>;
|
|
894
|
+
readonly ExecuteResultType: import("@elaraai/east").StructType<{
|
|
895
|
+
readonly outcome: import("@elaraai/east").VariantType<{
|
|
896
|
+
readonly success: import("@elaraai/east").StructType<{
|
|
897
|
+
readonly value: import("@elaraai/east").BlobType;
|
|
898
|
+
}>;
|
|
899
|
+
readonly failed: import("@elaraai/east").StructType<{
|
|
900
|
+
readonly exitCode: import("@elaraai/east").IntegerType;
|
|
901
|
+
}>;
|
|
902
|
+
readonly invalid: import("@elaraai/east").StructType<{
|
|
903
|
+
readonly diagnostics: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
|
|
904
|
+
readonly message: import("@elaraai/east").StringType;
|
|
905
|
+
readonly filename: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
906
|
+
readonly line: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
907
|
+
readonly column: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
908
|
+
}>>;
|
|
909
|
+
}>;
|
|
910
|
+
readonly too_large: import("@elaraai/east").StructType<{
|
|
911
|
+
readonly bytes: import("@elaraai/east").IntegerType;
|
|
912
|
+
readonly limit: import("@elaraai/east").IntegerType;
|
|
913
|
+
}>;
|
|
914
|
+
readonly timed_out: import("@elaraai/east").StructType<{
|
|
915
|
+
readonly ms: import("@elaraai/east").IntegerType;
|
|
916
|
+
}>;
|
|
917
|
+
}>;
|
|
918
|
+
readonly stdout: import("@elaraai/east").StringType;
|
|
919
|
+
readonly stderr: import("@elaraai/east").StringType;
|
|
920
|
+
readonly stdoutTruncated: import("@elaraai/east").BooleanType;
|
|
921
|
+
readonly stderrTruncated: import("@elaraai/east").BooleanType;
|
|
922
|
+
}>;
|
|
923
|
+
readonly FunctionCallRequestType: import("@elaraai/east").StructType<{
|
|
924
|
+
readonly args: import("@elaraai/east").ArrayType<import("@elaraai/east").BlobType>;
|
|
925
|
+
readonly runner: import("@elaraai/east").OptionType<import("@elaraai/east").VariantType<{
|
|
926
|
+
readonly east_node: import("@elaraai/east").StructType<{
|
|
927
|
+
readonly platforms: import("@elaraai/east").ArrayType<import("@elaraai/east").StringType>;
|
|
928
|
+
}>;
|
|
929
|
+
readonly east_py: import("@elaraai/east").StructType<{
|
|
930
|
+
readonly platforms: import("@elaraai/east").ArrayType<import("@elaraai/east").StringType>;
|
|
931
|
+
}>;
|
|
932
|
+
readonly east_c: import("@elaraai/east").StructType<{
|
|
933
|
+
readonly platforms: import("@elaraai/east").ArrayType<import("@elaraai/east").StringType>;
|
|
934
|
+
}>;
|
|
935
|
+
}>>;
|
|
936
|
+
readonly limits: import("@elaraai/east").OptionType<import("@elaraai/east").StructType<{
|
|
937
|
+
readonly timeoutMs: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
938
|
+
readonly maxResultBytes: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
939
|
+
readonly maxLogBytes: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
940
|
+
}>>;
|
|
941
|
+
}>;
|
|
942
|
+
readonly FunctionSignatureType: import("@elaraai/east").StructType<{
|
|
943
|
+
readonly name: import("@elaraai/east").StringType;
|
|
944
|
+
readonly inputTypes: import("@elaraai/east").ArrayType<import("@elaraai/east").RecursiveType<import("@elaraai/east").VariantType<{
|
|
945
|
+
readonly Never: import("@elaraai/east").NullType;
|
|
946
|
+
readonly Null: import("@elaraai/east").NullType;
|
|
947
|
+
readonly Boolean: import("@elaraai/east").NullType;
|
|
948
|
+
readonly Integer: import("@elaraai/east").NullType;
|
|
949
|
+
readonly Float: import("@elaraai/east").NullType;
|
|
950
|
+
readonly String: import("@elaraai/east").NullType;
|
|
951
|
+
readonly DateTime: import("@elaraai/east").NullType;
|
|
952
|
+
readonly Blob: import("@elaraai/east").NullType;
|
|
953
|
+
readonly Ref: import("@elaraai/east").RecursiveTypeMarker;
|
|
954
|
+
readonly Array: import("@elaraai/east").RecursiveTypeMarker;
|
|
955
|
+
readonly Set: import("@elaraai/east").RecursiveTypeMarker;
|
|
956
|
+
readonly Dict: import("@elaraai/east").StructType<{
|
|
957
|
+
readonly key: import("@elaraai/east").RecursiveTypeMarker;
|
|
958
|
+
readonly value: import("@elaraai/east").RecursiveTypeMarker;
|
|
959
|
+
}>;
|
|
960
|
+
readonly Struct: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
|
|
961
|
+
readonly name: import("@elaraai/east").StringType;
|
|
962
|
+
readonly type: import("@elaraai/east").RecursiveTypeMarker;
|
|
963
|
+
}>>;
|
|
964
|
+
readonly Variant: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
|
|
965
|
+
readonly name: import("@elaraai/east").StringType;
|
|
966
|
+
readonly type: import("@elaraai/east").RecursiveTypeMarker;
|
|
967
|
+
}>>;
|
|
968
|
+
readonly Recursive: import("@elaraai/east").VariantType<{
|
|
969
|
+
readonly ref: import("@elaraai/east").IntegerType;
|
|
970
|
+
readonly wrapper: import("@elaraai/east").StructType<{
|
|
971
|
+
readonly id: import("@elaraai/east").IntegerType;
|
|
972
|
+
readonly inner: import("@elaraai/east").RecursiveTypeMarker;
|
|
973
|
+
}>;
|
|
974
|
+
}>;
|
|
975
|
+
readonly Function: import("@elaraai/east").StructType<{
|
|
976
|
+
readonly inputs: import("@elaraai/east").ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
|
|
977
|
+
readonly output: import("@elaraai/east").RecursiveTypeMarker;
|
|
978
|
+
}>;
|
|
979
|
+
readonly AsyncFunction: import("@elaraai/east").StructType<{
|
|
980
|
+
readonly inputs: import("@elaraai/east").ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
|
|
981
|
+
readonly output: import("@elaraai/east").RecursiveTypeMarker;
|
|
982
|
+
}>;
|
|
983
|
+
readonly Vector: import("@elaraai/east").RecursiveTypeMarker;
|
|
984
|
+
readonly Matrix: import("@elaraai/east").RecursiveTypeMarker;
|
|
985
|
+
}>>>;
|
|
986
|
+
readonly outputType: import("@elaraai/east").RecursiveType<import("@elaraai/east").VariantType<{
|
|
987
|
+
readonly Never: import("@elaraai/east").NullType;
|
|
988
|
+
readonly Null: import("@elaraai/east").NullType;
|
|
989
|
+
readonly Boolean: import("@elaraai/east").NullType;
|
|
990
|
+
readonly Integer: import("@elaraai/east").NullType;
|
|
991
|
+
readonly Float: import("@elaraai/east").NullType;
|
|
992
|
+
readonly String: import("@elaraai/east").NullType;
|
|
993
|
+
readonly DateTime: import("@elaraai/east").NullType;
|
|
994
|
+
readonly Blob: import("@elaraai/east").NullType;
|
|
995
|
+
readonly Ref: import("@elaraai/east").RecursiveTypeMarker;
|
|
996
|
+
readonly Array: import("@elaraai/east").RecursiveTypeMarker;
|
|
997
|
+
readonly Set: import("@elaraai/east").RecursiveTypeMarker;
|
|
998
|
+
readonly Dict: import("@elaraai/east").StructType<{
|
|
999
|
+
readonly key: import("@elaraai/east").RecursiveTypeMarker;
|
|
1000
|
+
readonly value: import("@elaraai/east").RecursiveTypeMarker;
|
|
1001
|
+
}>;
|
|
1002
|
+
readonly Struct: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
|
|
1003
|
+
readonly name: import("@elaraai/east").StringType;
|
|
1004
|
+
readonly type: import("@elaraai/east").RecursiveTypeMarker;
|
|
1005
|
+
}>>;
|
|
1006
|
+
readonly Variant: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
|
|
1007
|
+
readonly name: import("@elaraai/east").StringType;
|
|
1008
|
+
readonly type: import("@elaraai/east").RecursiveTypeMarker;
|
|
1009
|
+
}>>;
|
|
1010
|
+
readonly Recursive: import("@elaraai/east").VariantType<{
|
|
1011
|
+
readonly ref: import("@elaraai/east").IntegerType;
|
|
1012
|
+
readonly wrapper: import("@elaraai/east").StructType<{
|
|
1013
|
+
readonly id: import("@elaraai/east").IntegerType;
|
|
1014
|
+
readonly inner: import("@elaraai/east").RecursiveTypeMarker;
|
|
1015
|
+
}>;
|
|
1016
|
+
}>;
|
|
1017
|
+
readonly Function: import("@elaraai/east").StructType<{
|
|
1018
|
+
readonly inputs: import("@elaraai/east").ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
|
|
1019
|
+
readonly output: import("@elaraai/east").RecursiveTypeMarker;
|
|
1020
|
+
}>;
|
|
1021
|
+
readonly AsyncFunction: import("@elaraai/east").StructType<{
|
|
1022
|
+
readonly inputs: import("@elaraai/east").ArrayType<import("@elaraai/east").RecursiveTypeMarker>;
|
|
1023
|
+
readonly output: import("@elaraai/east").RecursiveTypeMarker;
|
|
1024
|
+
}>;
|
|
1025
|
+
readonly Vector: import("@elaraai/east").RecursiveTypeMarker;
|
|
1026
|
+
readonly Matrix: import("@elaraai/east").RecursiveTypeMarker;
|
|
1027
|
+
}>>;
|
|
1028
|
+
readonly runner: import("@elaraai/east").VariantType<{
|
|
1029
|
+
readonly east_node: import("@elaraai/east").StructType<{
|
|
1030
|
+
readonly platforms: import("@elaraai/east").ArrayType<import("@elaraai/east").StringType>;
|
|
1031
|
+
}>;
|
|
1032
|
+
readonly east_py: import("@elaraai/east").StructType<{
|
|
1033
|
+
readonly platforms: import("@elaraai/east").ArrayType<import("@elaraai/east").StringType>;
|
|
1034
|
+
}>;
|
|
1035
|
+
readonly east_c: import("@elaraai/east").StructType<{
|
|
1036
|
+
readonly platforms: import("@elaraai/east").ArrayType<import("@elaraai/east").StringType>;
|
|
1037
|
+
}>;
|
|
1038
|
+
}>;
|
|
1039
|
+
}>;
|
|
1040
|
+
readonly CallStartResultType: import("@elaraai/east").StructType<{
|
|
1041
|
+
readonly callId: import("@elaraai/east").StringType;
|
|
1042
|
+
}>;
|
|
1043
|
+
readonly CallStatusType: import("@elaraai/east").VariantType<{
|
|
1044
|
+
readonly running: import("@elaraai/east").NullType;
|
|
1045
|
+
readonly succeeded: import("@elaraai/east").NullType;
|
|
1046
|
+
readonly failed: import("@elaraai/east").NullType;
|
|
1047
|
+
readonly cancelled: import("@elaraai/east").NullType;
|
|
1048
|
+
}>;
|
|
1049
|
+
readonly CallStatusResultType: import("@elaraai/east").StructType<{
|
|
1050
|
+
readonly status: import("@elaraai/east").VariantType<{
|
|
1051
|
+
readonly running: import("@elaraai/east").NullType;
|
|
1052
|
+
readonly succeeded: import("@elaraai/east").NullType;
|
|
1053
|
+
readonly failed: import("@elaraai/east").NullType;
|
|
1054
|
+
readonly cancelled: import("@elaraai/east").NullType;
|
|
1055
|
+
}>;
|
|
1056
|
+
readonly result: import("@elaraai/east").OptionType<import("@elaraai/east").StructType<{
|
|
1057
|
+
readonly outcome: import("@elaraai/east").VariantType<{
|
|
1058
|
+
readonly success: import("@elaraai/east").StructType<{
|
|
1059
|
+
readonly value: import("@elaraai/east").BlobType;
|
|
1060
|
+
}>;
|
|
1061
|
+
readonly failed: import("@elaraai/east").StructType<{
|
|
1062
|
+
readonly exitCode: import("@elaraai/east").IntegerType;
|
|
1063
|
+
}>;
|
|
1064
|
+
readonly invalid: import("@elaraai/east").StructType<{
|
|
1065
|
+
readonly diagnostics: import("@elaraai/east").ArrayType<import("@elaraai/east").StructType<{
|
|
1066
|
+
readonly message: import("@elaraai/east").StringType;
|
|
1067
|
+
readonly filename: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
1068
|
+
readonly line: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
1069
|
+
readonly column: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
1070
|
+
}>>;
|
|
1071
|
+
}>;
|
|
1072
|
+
readonly too_large: import("@elaraai/east").StructType<{
|
|
1073
|
+
readonly bytes: import("@elaraai/east").IntegerType;
|
|
1074
|
+
readonly limit: import("@elaraai/east").IntegerType;
|
|
1075
|
+
}>;
|
|
1076
|
+
readonly timed_out: import("@elaraai/east").StructType<{
|
|
1077
|
+
readonly ms: import("@elaraai/east").IntegerType;
|
|
1078
|
+
}>;
|
|
1079
|
+
}>;
|
|
1080
|
+
readonly stdout: import("@elaraai/east").StringType;
|
|
1081
|
+
readonly stderr: import("@elaraai/east").StringType;
|
|
1082
|
+
readonly stdoutTruncated: import("@elaraai/east").BooleanType;
|
|
1083
|
+
readonly stderrTruncated: import("@elaraai/east").BooleanType;
|
|
1084
|
+
}>>;
|
|
1085
|
+
readonly error: import("@elaraai/east").OptionType<import("@elaraai/east").StringType>;
|
|
1086
|
+
}>;
|
|
1087
|
+
readonly OneShotRequestType: import("@elaraai/east").StructType<{
|
|
1088
|
+
readonly bodyIr: import("@elaraai/east").BlobType;
|
|
1089
|
+
readonly args: import("@elaraai/east").ArrayType<import("@elaraai/east").VariantType<{
|
|
1090
|
+
readonly value: import("@elaraai/east").BlobType;
|
|
1091
|
+
readonly dataset: import("@elaraai/east").ArrayType<import("@elaraai/east").VariantType<{
|
|
1092
|
+
readonly field: import("@elaraai/east").StringType;
|
|
1093
|
+
}>>;
|
|
1094
|
+
}>>;
|
|
1095
|
+
readonly runner: import("@elaraai/east").VariantType<{
|
|
1096
|
+
readonly east_node: import("@elaraai/east").StructType<{
|
|
1097
|
+
readonly platforms: import("@elaraai/east").ArrayType<import("@elaraai/east").StringType>;
|
|
1098
|
+
}>;
|
|
1099
|
+
readonly east_py: import("@elaraai/east").StructType<{
|
|
1100
|
+
readonly platforms: import("@elaraai/east").ArrayType<import("@elaraai/east").StringType>;
|
|
1101
|
+
}>;
|
|
1102
|
+
readonly east_c: import("@elaraai/east").StructType<{
|
|
1103
|
+
readonly platforms: import("@elaraai/east").ArrayType<import("@elaraai/east").StringType>;
|
|
1104
|
+
}>;
|
|
1105
|
+
}>;
|
|
1106
|
+
readonly limits: import("@elaraai/east").OptionType<import("@elaraai/east").StructType<{
|
|
1107
|
+
readonly timeoutMs: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
1108
|
+
readonly maxResultBytes: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
1109
|
+
readonly maxLogBytes: import("@elaraai/east").OptionType<import("@elaraai/east").IntegerType>;
|
|
1110
|
+
}>>;
|
|
1111
|
+
}>;
|
|
872
1112
|
};
|
|
873
1113
|
//# sourceMappingURL=types.d.ts.map
|
package/dist/src/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;GAMG;AAGH,OAAO,EAEL,0BAA0B,EAC1B,6BAA6B,EAC7B,wBAAwB,EACxB,cAAc,EACd,wBAAwB,EACxB,wBAAwB,EACxB,sBAAsB,EACtB,uBAAuB,EACvB,wBAAwB,EACxB,qBAAqB,EACrB,0BAA0B,EAC1B,uBAAuB,EACvB,iBAAiB,EACjB,yBAAyB,EACzB,iBAAiB,EACjB,2BAA2B,EAC3B,SAAS,EACT,YAAY,EAEZ,oBAAoB,EACpB,aAAa,EACb,YAAY,EACZ,wBAAwB,EACxB,iBAAiB,EACjB,kBAAkB,EAElB,mBAAmB,EACnB,uBAAuB,EACvB,eAAe,EACf,kBAAkB,EAElB,0BAA0B,EAC1B,iBAAiB,EACjB,0BAA0B,EAC1B,0BAA0B,EAE1B,iBAAiB,EACjB,sBAAsB,EACtB,qBAAqB,EACrB,wBAAwB,EACxB,oBAAoB,EACpB,mBAAmB,EACnB,0BAA0B,EAC1B,cAAc,EACd,qBAAqB,EACrB,kBAAkB,EAClB,0BAA0B,EAC1B,yBAAyB,EAEzB,gBAAgB,EAChB,eAAe,EAEf,mBAAmB,EACnB,YAAY,EACZ,uBAAuB,EACvB,kBAAkB,EAElB,iBAAiB,EACjB,sBAAsB,IAAI,mBAAmB,EAC7C,4BAA4B,EAC5B,6BAA6B,IAAI,0BAA0B,EAE3D,0BAA0B,EAC1B,qBAAqB,EAErB,YAAY,EACZ,aAAa,EAEb,uBAAuB,EAEvB,yBAAyB,EACzB,0BAA0B,EAC1B,wBAAwB,EACxB,uBAAuB,EACvB,uBAAuB,EACvB,8BAA8B,EAC9B,+BAA+B,EAC/B,sBAAsB,EAEtB,iBAAiB,EACjB,qBAAqB,GACtB,MAAM,mBAAmB,CAAC;AAG3B,YAAY,EACV,KAAK,EACL,gBAAgB,EAChB,SAAS,EACT,QAAQ,EACR,oBAAoB,EACpB,aAAa,EACb,cAAc,EACd,eAAe,EACf,mBAAmB,EACnB,WAAW,EACX,cAAc,EACd,aAAa,EACb,sBAAsB,EACtB,sBAAsB,EACtB,aAAa,EACb,aAAa,IAAI,UAAU,EAC3B,iBAAiB,EACjB,cAAc,EACd,sBAAsB,EACtB,qBAAqB,EACrB,YAAY,EACZ,WAAW,EACX,eAAe,EACf,QAAQ,EACR,mBAAmB,EACnB,cAAc,EACd,aAAa,EACb,kBAAkB,IAAI,eAAe,EACrC,wBAAwB,EACxB,yBAAyB,IAAI,sBAAsB,EACnD,sBAAsB,EACtB,iBAAiB,EACjB,QAAQ,EACR,SAAS,EACT,mBAAmB,EACnB,qBAAqB,EACrB,sBAAsB,EACtB,oBAAoB,EACpB,aAAa,EACb,iBAAiB,GAClB,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"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"}
|
package/dist/src/types.js
CHANGED
|
@@ -35,12 +35,14 @@ TreeKindType, ListEntryType,
|
|
|
35
35
|
DatasetStatusDetailType,
|
|
36
36
|
// Transfer types
|
|
37
37
|
TransferUploadRequestType, TransferUploadResponseType, TransferDoneResponseType, PackageImportStatusType, PackageExportStatusType, PackageTransferInitRequestType, PackageTransferInitResponseType, PackageJobResponseType,
|
|
38
|
+
// Function / one-shot execution
|
|
39
|
+
RunnerType, ExecuteLimitsType, DiagnosticType, ExecuteResultType, FunctionCallRequestType, FunctionSignatureType, CallStartResultType, CallStatusType, CallStatusResultType, OneShotRequestType,
|
|
38
40
|
// Graph types (from dataflow.ts, structurally identical to old API GraphTaskType)
|
|
39
41
|
DataflowGraphType, DataflowGraphTaskType, } from '@elaraai/e3-types';
|
|
40
42
|
// =============================================================================
|
|
41
43
|
// Namespace export for convenience
|
|
42
44
|
// =============================================================================
|
|
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';
|
|
45
|
+
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, RunnerType as _RunnerType, ExecuteLimitsType as _ExecuteLimitsType, DiagnosticType as _DiagnosticType, ExecuteResultType as _ExecuteResultType, FunctionCallRequestType as _FunctionCallRequestType, FunctionSignatureType as _FunctionSignatureType, CallStartResultType as _CallStartResultType, CallStatusType as _CallStatusType, CallStatusResultType as _CallStatusResultType, OneShotRequestType as _OneShotRequestType, } from '@elaraai/e3-types';
|
|
44
46
|
export const ApiTypes = {
|
|
45
47
|
// Errors
|
|
46
48
|
ErrorType,
|
|
@@ -125,5 +127,16 @@ export const ApiTypes = {
|
|
|
125
127
|
PackageTransferInitRequestType,
|
|
126
128
|
PackageTransferInitResponseType,
|
|
127
129
|
PackageJobResponseType,
|
|
130
|
+
// Function / one-shot execution
|
|
131
|
+
RunnerType: _RunnerType,
|
|
132
|
+
ExecuteLimitsType: _ExecuteLimitsType,
|
|
133
|
+
DiagnosticType: _DiagnosticType,
|
|
134
|
+
ExecuteResultType: _ExecuteResultType,
|
|
135
|
+
FunctionCallRequestType: _FunctionCallRequestType,
|
|
136
|
+
FunctionSignatureType: _FunctionSignatureType,
|
|
137
|
+
CallStartResultType: _CallStartResultType,
|
|
138
|
+
CallStatusType: _CallStatusType,
|
|
139
|
+
CallStatusResultType: _CallStatusResultType,
|
|
140
|
+
OneShotRequestType: _OneShotRequestType,
|
|
128
141
|
};
|
|
129
142
|
//# sourceMappingURL=types.js.map
|
package/dist/src/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;GAMG;AAEH,oDAAoD;AACpD,OAAO;AACL,cAAc;AACd,0BAA0B,EAC1B,6BAA6B,EAC7B,wBAAwB,EACxB,cAAc,EACd,wBAAwB,EACxB,wBAAwB,EACxB,sBAAsB,EACtB,uBAAuB,EACvB,wBAAwB,EACxB,qBAAqB,EACrB,0BAA0B,EAC1B,uBAAuB,EACvB,iBAAiB,EACjB,yBAAyB,EACzB,iBAAiB,EACjB,2BAA2B,EAC3B,SAAS,EACT,YAAY;AACZ,aAAa;AACb,oBAAoB,EACpB,aAAa,EACb,YAAY,EACZ,wBAAwB,EACxB,iBAAiB,EACjB,kBAAkB;AAClB,WAAW;AACX,mBAAmB,EACnB,uBAAuB,EACvB,eAAe,EACf,kBAAkB;AAClB,aAAa;AACb,0BAA0B,EAC1B,iBAAiB,EACjB,0BAA0B,EAC1B,0BAA0B;AAC1B,mBAAmB;AACnB,iBAAiB,EACjB,sBAAsB,EACtB,qBAAqB,EACrB,wBAAwB,EACxB,oBAAoB,EACpB,mBAAmB,EACnB,0BAA0B,EAC1B,cAAc,EACd,qBAAqB,EACrB,kBAAkB,EAClB,0BAA0B,EAC1B,yBAAyB;AACzB,QAAQ;AACR,gBAAgB,EAChB,eAAe;AACf,YAAY;AACZ,mBAAmB,EACnB,YAAY,EACZ,uBAAuB,EACvB,kBAAkB;AAClB,uBAAuB;AACvB,iBAAiB,EACjB,sBAAsB,IAAI,mBAAmB,EAC7C,4BAA4B,EAC5B,6BAA6B,IAAI,0BAA0B;AAC3D,yBAAyB;AACzB,0BAA0B,EAC1B,qBAAqB;AACrB,eAAe;AACf,YAAY,EACZ,aAAa;AACb,wBAAwB;AACxB,uBAAuB;AACvB,iBAAiB;AACjB,yBAAyB,EACzB,0BAA0B,EAC1B,wBAAwB,EACxB,uBAAuB,EACvB,uBAAuB,EACvB,8BAA8B,EAC9B,+BAA+B,EAC/B,sBAAsB;AACtB,kFAAkF;AAClF,iBAAiB,EACjB,qBAAqB,GACtB,MAAM,mBAAmB,CAAC;
|
|
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": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
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",
|
|
@@ -49,11 +49,11 @@
|
|
|
49
49
|
"@hono/node-server": "^1.13.0",
|
|
50
50
|
"commander": "^12.0.0",
|
|
51
51
|
"hono": "^4.6.0",
|
|
52
|
-
"@elaraai/e3-
|
|
53
|
-
"@elaraai/e3-
|
|
52
|
+
"@elaraai/e3-core": "1.0.6",
|
|
53
|
+
"@elaraai/e3-types": "1.0.6"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
|
-
"@elaraai/east": "1.0.
|
|
56
|
+
"@elaraai/east": "1.0.6"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@types/node": "^22.0.0",
|