@dxs-ts/eveli-ide 0.0.364 → 0.0.366
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/build/api-batch/batch-types.d.ts +34 -0
- package/build/eveli-batches/EveliBatchView.d.ts +3 -0
- package/build/eveli-batches/index.d.ts +1 -0
- package/build/eveli-fetch/createFileFetch.d.ts +2 -0
- package/build/fetch/worker.rest.api.batches.get.d.ts +2 -0
- package/build/fetchTree.gen.d.ts +2 -0
- package/build/index.js +23370 -23297
- package/package.json +4 -3
|
@@ -28,5 +28,39 @@ export declare namespace BatchApi {
|
|
|
28
28
|
status: RuntimeStatus;
|
|
29
29
|
executionStatus: RuntimeExecutionStatus;
|
|
30
30
|
comment: string;
|
|
31
|
+
transitives?: {
|
|
32
|
+
steps: RuntimeStep[];
|
|
33
|
+
metrics: RuntimeMetric[];
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
interface RuntimeStep {
|
|
37
|
+
id: string;
|
|
38
|
+
runtimeId: string;
|
|
39
|
+
consumerId: string;
|
|
40
|
+
status: RuntimeStatus;
|
|
41
|
+
executionStatus: RuntimeExecutionStatus;
|
|
42
|
+
createdAt: string;
|
|
43
|
+
endedAt: string | undefined;
|
|
44
|
+
name: string;
|
|
45
|
+
comment: string;
|
|
46
|
+
}
|
|
47
|
+
interface RuntimeMetric {
|
|
48
|
+
id: string;
|
|
49
|
+
runtimeId: string;
|
|
50
|
+
stepId: string | undefined;
|
|
51
|
+
name: 'batch-metrics';
|
|
52
|
+
createdAt: string;
|
|
53
|
+
updatedAt: string | undefined;
|
|
54
|
+
valueStructured: {
|
|
55
|
+
map: {
|
|
56
|
+
cheapId: string | undefined;
|
|
57
|
+
maxCost: number | undefined;
|
|
58
|
+
minCost: number | undefined;
|
|
59
|
+
stepName: string | undefined;
|
|
60
|
+
failCount: number | undefined;
|
|
61
|
+
expensiveId: string | undefined;
|
|
62
|
+
successCount: number | undefined;
|
|
63
|
+
};
|
|
64
|
+
} | undefined;
|
|
31
65
|
}
|
|
32
66
|
}
|
|
@@ -509,8 +509,10 @@ export declare class RootFileFetch {
|
|
|
509
509
|
params: {};
|
|
510
510
|
hook: HookImpl<"worker/rest/api/batches.GET", Hook<{}, {
|
|
511
511
|
findAll: () => Promise<import("../api-batch").BatchApi.Batch[]>;
|
|
512
|
+
getOne: (batchId: string) => Promise<import("../api-batch").BatchApi.Batch>;
|
|
512
513
|
}>, "worker/rest/api/batches", "GET", {}, {}, {
|
|
513
514
|
findAll: () => Promise<import("../api-batch").BatchApi.Batch[]>;
|
|
515
|
+
getOne: (batchId: string) => Promise<import("../api-batch").BatchApi.Batch>;
|
|
514
516
|
}>;
|
|
515
517
|
} | {
|
|
516
518
|
id: "worker/rest/api/feedback/$feedbackId.DELETE";
|
|
@@ -1,6 +1,8 @@
|
|
|
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
|
+
getOne: (batchId: string) => Promise<BatchApi.Batch>;
|
|
4
5
|
}>, "worker/rest/api/batches", "GET", {}, {}, {
|
|
5
6
|
findAll: () => Promise<BatchApi.Batch[]>;
|
|
7
|
+
getOne: (batchId: string) => Promise<BatchApi.Batch>;
|
|
6
8
|
}>;
|
package/build/fetchTree.gen.d.ts
CHANGED
|
@@ -257,8 +257,10 @@ declare const workerRestApiAssetsWrenchVersionGETRoute: import('./eveli-fetch').
|
|
|
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
|
+
getOne: (batchId: string) => Promise<import("./api-batch/batch-types.ts").BatchApi.Batch>;
|
|
260
261
|
}>, "worker/rest/api/batches", "GET", {}, {}, {
|
|
261
262
|
findAll: () => Promise<import("./api-batch/batch-types.ts").BatchApi.Batch[]>;
|
|
263
|
+
getOne: (batchId: string) => Promise<import("./api-batch/batch-types.ts").BatchApi.Batch>;
|
|
262
264
|
}>;
|
|
263
265
|
declare const workerRestApiFeedbackFeedbackIdDELETERoute: import('./eveli-fetch').HookImpl<"worker/rest/api/feedback/$feedbackId.DELETE", import('./eveli-fetch').Hook<{}, {
|
|
264
266
|
deleteOneFeedback: (taskId: import("./api-feedback/feedback-types.ts").FeedbackApi.TaskId) => Promise<import("./api-feedback/feedback-types.ts").FeedbackApi.Feedback>;
|