@dxs-ts/eveli-ide 0.0.382 → 0.0.384

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.
@@ -43,6 +43,23 @@ export declare namespace BatchApi {
43
43
  endedAt: string | undefined;
44
44
  name: string;
45
45
  comment: string;
46
+ transitives?: {
47
+ metrics: RuntimeMetric[];
48
+ stepRows: RuntimeStepRow[];
49
+ };
50
+ }
51
+ interface RuntimeStepRow {
52
+ id: string;
53
+ runtimeId: string;
54
+ stepId: string;
55
+ executionStatus: RuntimeExecutionStatus;
56
+ createdAt: string;
57
+ endedAt: string | undefined;
58
+ rowNumber: number;
59
+ externalId: string;
60
+ input: object | undefined;
61
+ output: any | undefined;
62
+ comment: string;
46
63
  }
47
64
  interface RuntimeMetric {
48
65
  id: string;
@@ -1,3 +1,4 @@
1
+ import { default as React } from 'react';
1
2
  export declare const EveliBatchView: React.FC<{
2
3
  batchId: string;
3
4
  }>;
@@ -0,0 +1,8 @@
1
+ import { default as React } from 'react';
2
+ import { BatchApi } from '../api-batch';
3
+ export interface StartBatchDialogProps {
4
+ batch: BatchApi.Batch;
5
+ open: boolean;
6
+ onClose: () => void;
7
+ }
8
+ export declare const StartBatchDialog: React.FC<StartBatchDialogProps>;
@@ -8,13 +8,15 @@ export interface EveliBatchViewClasses {
8
8
  instanceSlot: string;
9
9
  instanceContainer: string;
10
10
  instanceDateTime: string;
11
+ batchNameRow: string;
12
+ noRunsAlert: string;
11
13
  }
12
14
  export interface SectionWidth {
13
15
  instanceSectionWidth: string;
14
16
  stepSectionWidth: string;
15
17
  }
16
18
  export declare const sectionWidth: SectionWidth;
17
- export declare const useUtilityClasses: () => Record<"root" | "instanceSlot" | "instanceContainer" | "instanceDateTime" | "stepSlot", string>;
19
+ export declare const useUtilityClasses: () => Record<"root" | "batchNameRow" | "noRunsAlert" | "instanceSlot" | "instanceContainer" | "instanceDateTime" | "stepSlot", string>;
18
20
  export declare const EveliBatchViewRoot: import('@emotion/styled').StyledComponent<Pick<import('@mui/material').StackOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
19
21
  ref?: ((instance: HTMLDivElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLDivElement> | null | undefined;
20
22
  }, keyof import('@mui/material/OverridableComponent').CommonProps | keyof import('@mui/material').StackOwnProps>, "id" | "ref" | "key" | "slot" | "title" | "onFocus" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | keyof import('@mui/material/OverridableComponent').CommonProps | keyof import('@mui/material').StackOwnProps> & import('@mui/system').MUIStyledCommonProps<Theme>, {}, {}>;
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+ export interface EveliBatchStepProps {
3
+ stepId: string;
4
+ }
5
+ export declare const EveliBatchStep: React.FC<EveliBatchStepProps>;
@@ -0,0 +1 @@
1
+ export * from './EveliBatchStep';
@@ -0,0 +1,10 @@
1
+ export declare const MUI_NAME = "EveliBatchStep";
2
+ export type BatchViewHeadersClassKey = keyof BatchViewHeadersClasses;
3
+ export interface BatchViewHeadersClasses {
4
+ root: string;
5
+ stepSection: string;
6
+ }
7
+ export declare const useUtilityClasses: () => Record<"root", string>;
8
+ export declare const EveliBatchStepRoot: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & {
9
+ ownerState: {};
10
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
@@ -514,6 +514,20 @@ export declare class RootFileFetch {
514
514
  findAll: () => Promise<import("../api-batch").BatchApi.Batch[]>;
515
515
  getOne: (batchId: string) => Promise<import("../api-batch").BatchApi.Batch>;
516
516
  }>;
517
+ } | {
518
+ id: "worker/rest/api/batches/steps/$stepId.GET";
519
+ path: "worker/rest/api/batches/steps/$stepId";
520
+ method: "GET";
521
+ params: {
522
+ stepId: string;
523
+ };
524
+ hook: HookImpl<"worker/rest/api/batches/steps/$stepId.GET", Hook<{}, {
525
+ getOne: (stepId: string) => Promise<import("../api-batch").BatchApi.RuntimeStep>;
526
+ }>, "worker/rest/api/batches/steps/$stepId", "GET", {
527
+ stepId: string;
528
+ }, {}, {
529
+ getOne: (stepId: string) => Promise<import("../api-batch").BatchApi.RuntimeStep>;
530
+ }>;
517
531
  } | {
518
532
  id: "worker/rest/api/feedback/$feedbackId.DELETE";
519
533
  path: "worker/rest/api/feedback/$feedbackId";
@@ -0,0 +1,8 @@
1
+ import { BatchApi } from '../api-batch';
2
+ export declare const Hook: import('../eveli-fetch').HookImpl<"worker/rest/api/batches/steps/$stepId.GET", import('../eveli-fetch').Hook<{}, {
3
+ getOne: (stepId: string) => Promise<BatchApi.RuntimeStep>;
4
+ }>, "worker/rest/api/batches/steps/$stepId", "GET", {
5
+ stepId: string;
6
+ }, {}, {
7
+ getOne: (stepId: string) => Promise<BatchApi.RuntimeStep>;
8
+ }>;
@@ -262,6 +262,13 @@ declare const workerRestApiBatchesGETRoute: import('./eveli-fetch').HookImpl<"wo
262
262
  findAll: () => Promise<import("./api-batch/batch-types.ts").BatchApi.Batch[]>;
263
263
  getOne: (batchId: string) => Promise<import("./api-batch/batch-types.ts").BatchApi.Batch>;
264
264
  }>;
265
+ declare const workerRestApiBatchesStepsStepIdGETRoute: import('./eveli-fetch').HookImpl<"worker/rest/api/batches/steps/$stepId.GET", import('./eveli-fetch').Hook<{}, {
266
+ getOne: (stepId: string) => Promise<import("./api-batch/batch-types.ts").BatchApi.RuntimeStep>;
267
+ }>, "worker/rest/api/batches/steps/$stepId", "GET", {
268
+ stepId: string;
269
+ }, {}, {
270
+ getOne: (stepId: string) => Promise<import("./api-batch/batch-types.ts").BatchApi.RuntimeStep>;
271
+ }>;
265
272
  declare const workerRestApiFeedbackFeedbackIdDELETERoute: import('./eveli-fetch').HookImpl<"worker/rest/api/feedback/$feedbackId.DELETE", import('./eveli-fetch').Hook<{}, {
266
273
  deleteOneFeedback: (taskId: import("./api-feedback/feedback-types.ts").FeedbackApi.TaskId) => Promise<import("./api-feedback/feedback-types.ts").FeedbackApi.Feedback>;
267
274
  }>, "worker/rest/api/feedback/$feedbackId", "DELETE", {
@@ -815,6 +822,15 @@ declare module './eveli-fetch' {
815
822
  params: {};
816
823
  hook: typeof workerRestApiBatchesGETRoute;
817
824
  };
825
+ 'worker/rest/api/batches/steps/$stepId.GET': {
826
+ id: 'worker/rest/api/batches/steps/$stepId.GET';
827
+ path: 'worker/rest/api/batches/steps/$stepId';
828
+ method: 'GET';
829
+ params: {
830
+ stepId: string;
831
+ };
832
+ hook: typeof workerRestApiBatchesStepsStepIdGETRoute;
833
+ };
818
834
  'worker/rest/api/feedback/$feedbackId.DELETE': {
819
835
  id: 'worker/rest/api/feedback/$feedbackId.DELETE';
820
836
  path: 'worker/rest/api/feedback/$feedbackId';