@dxs-ts/eveli-ide 0.0.360 → 0.0.361
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.
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
type BatchHealthType = 'CREATED_NOT_RUN' | 'RUNNING_NO_FAILS' | 'RUNNING_SOME_FAILS' | 'COMPLETED_SOME_FAILS' | 'COMPLETED_SUCCESS' | 'FAILED_CRITICAL';
|
|
3
|
+
interface BatchHealthBallProps {
|
|
4
|
+
health: BatchHealthType;
|
|
5
|
+
}
|
|
6
|
+
export declare const BatchHealthBall: React.FC<BatchHealthBallProps>;
|
|
7
|
+
export declare const MUI_NAME = "BatchHealthBall";
|
|
8
|
+
export interface BatchHealthBallClasses {
|
|
9
|
+
root: string;
|
|
10
|
+
healthColorCreated: string;
|
|
11
|
+
healthColorFlashingSuccess: string;
|
|
12
|
+
healthColorFlashingWarning: string;
|
|
13
|
+
healthColorWarning: string;
|
|
14
|
+
healthColorSuccess: string;
|
|
15
|
+
healthColorCriticalFail: string;
|
|
16
|
+
healthColorDefault: string;
|
|
17
|
+
}
|
|
18
|
+
export type BatchHealthBallClassKey = keyof BatchHealthBallClasses;
|
|
19
|
+
export declare const useUtilityClasses: (health: BatchHealthType) => Record<"root" | "healthColor", string>;
|
|
20
|
+
export declare const BatchHealthBallRoot: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.ClassAttributes<HTMLDivElement> | keyof React.HTMLAttributes<HTMLDivElement>>, {}>;
|
|
21
|
+
export {};
|
|
@@ -508,9 +508,9 @@ export declare class RootFileFetch {
|
|
|
508
508
|
method: "GET";
|
|
509
509
|
params: {};
|
|
510
510
|
hook: HookImpl<"worker/rest/api/batches.GET", Hook<{}, {
|
|
511
|
-
|
|
511
|
+
findAll: () => Promise<import("../api-batch").BatchApi.Batch[]>;
|
|
512
512
|
}>, "worker/rest/api/batches", "GET", {}, {}, {
|
|
513
|
-
|
|
513
|
+
findAll: () => Promise<import("../api-batch").BatchApi.Batch[]>;
|
|
514
514
|
}>;
|
|
515
515
|
} | {
|
|
516
516
|
id: "worker/rest/api/feedback/$feedbackId.DELETE";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { BatchApi } from '../api-batch';
|
|
2
2
|
export declare const Hook: import('../eveli-fetch').HookImpl<"worker/rest/api/batches.GET", import('../eveli-fetch').Hook<{}, {
|
|
3
|
-
|
|
3
|
+
findAll: () => Promise<BatchApi.Batch[]>;
|
|
4
4
|
}>, "worker/rest/api/batches", "GET", {}, {}, {
|
|
5
|
-
|
|
5
|
+
findAll: () => Promise<BatchApi.Batch[]>;
|
|
6
6
|
}>;
|
package/build/fetchTree.gen.d.ts
CHANGED
|
@@ -256,9 +256,9 @@ declare const workerRestApiAssetsWrenchVersionGETRoute: import('./eveli-fetch').
|
|
|
256
256
|
version: () => Promise<import("./index.ts").HdesApi.VersionEntity>;
|
|
257
257
|
}>;
|
|
258
258
|
declare const workerRestApiBatchesGETRoute: import('./eveli-fetch').HookImpl<"worker/rest/api/batches.GET", import('./eveli-fetch').Hook<{}, {
|
|
259
|
-
|
|
259
|
+
findAll: () => Promise<import("./api-batch/batch-types.ts").BatchApi.Batch[]>;
|
|
260
260
|
}>, "worker/rest/api/batches", "GET", {}, {}, {
|
|
261
|
-
|
|
261
|
+
findAll: () => Promise<import("./api-batch/batch-types.ts").BatchApi.Batch[]>;
|
|
262
262
|
}>;
|
|
263
263
|
declare const workerRestApiFeedbackFeedbackIdDELETERoute: import('./eveli-fetch').HookImpl<"worker/rest/api/feedback/$feedbackId.DELETE", import('./eveli-fetch').Hook<{}, {
|
|
264
264
|
deleteOneFeedback: (taskId: import("./api-feedback/feedback-types.ts").FeedbackApi.TaskId) => Promise<import("./api-feedback/feedback-types.ts").FeedbackApi.Feedback>;
|