@ms-cloudpack/api-server 0.61.21 → 0.61.22
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/lib/data/busSources.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ export declare const taskStatsSource: DataBusPath<z.ZodObject<{
|
|
|
30
30
|
* Used for tracking the list of tasks.
|
|
31
31
|
*/
|
|
32
32
|
export declare const taskListSource: DataBusPath<z.ZodObject<{
|
|
33
|
-
tasks: z.ZodArray<z.ZodObject<
|
|
33
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
34
34
|
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"pending">, z.ZodLiteral<"complete">]>>;
|
|
35
35
|
timings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
36
36
|
name: z.ZodString;
|
|
@@ -51,12 +51,10 @@ export declare const taskListSource: DataBusPath<z.ZodObject<{
|
|
|
51
51
|
startTime: z.ZodNumber;
|
|
52
52
|
durationMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
53
53
|
lastUpdated: z.ZodOptional<z.ZodNumber>;
|
|
54
|
-
}, {
|
|
55
|
-
id: z.ZodString;
|
|
56
54
|
name: z.ZodOptional<z.ZodString>;
|
|
57
55
|
inputPath: z.ZodOptional<z.ZodString>;
|
|
58
56
|
outputPath: z.ZodOptional<z.ZodString>;
|
|
59
|
-
}
|
|
57
|
+
} & {
|
|
60
58
|
id: z.ZodString;
|
|
61
59
|
errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
62
60
|
text: z.ZodType<string, z.ZodTypeDef, string>;
|
|
@@ -70,7 +68,7 @@ export declare const taskListSource: DataBusPath<z.ZodObject<{
|
|
|
70
68
|
location: z.ZodType<import("@ms-cloudpack/common-types").BundleMessageLocation | undefined, z.ZodTypeDef, import("@ms-cloudpack/common-types").BundleMessageLocation | undefined>;
|
|
71
69
|
notes: z.ZodType<import("@ms-cloudpack/common-types").BundleMessageNote[] | undefined, z.ZodTypeDef, import("@ms-cloudpack/common-types").BundleMessageNote[] | undefined>;
|
|
72
70
|
}, "strict", z.ZodTypeAny, import("@ms-cloudpack/common-types").BundleMessage, import("@ms-cloudpack/common-types").BundleMessage>, "many">>;
|
|
73
|
-
}
|
|
71
|
+
}, "strip", z.ZodTypeAny, {
|
|
74
72
|
id: string;
|
|
75
73
|
startTime: number;
|
|
76
74
|
status?: "pending" | "complete" | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"busSources.d.ts","sourceRoot":"","sources":["../../src/data/busSources.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,OAAO,EAAkB,KAAK,WAAW,EAAE,MAAM,wBAAwB,CAAC;AAE1E;;GAEG;AACH,eAAO,MAAM,iBAAiB,0BAG5B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;GAG1B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"busSources.d.ts","sourceRoot":"","sources":["../../src/data/busSources.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,OAAO,EAAkB,KAAK,WAAW,EAAE,MAAM,wBAAwB,CAAC;AAE1E;;GAEG;AACH,eAAO,MAAM,iBAAiB,0BAG5B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;GAG1B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAGzB,CAAC;AAEH;;;GAGG;AACH,eAAO,MAAM,gBAAgB,EAAE,WAAW,CAAC,CAAC,CAAC,SAAS,CAGpD,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import z from 'zod';
|
|
2
|
-
export declare const ZodTaskDescription: z.ZodObject<
|
|
2
|
+
export declare const ZodTaskDescription: z.ZodObject<{
|
|
3
3
|
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"pending">, z.ZodLiteral<"complete">]>>;
|
|
4
4
|
timings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5
5
|
name: z.ZodString;
|
|
@@ -20,12 +20,10 @@ export declare const ZodTaskDescription: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
20
20
|
startTime: z.ZodNumber;
|
|
21
21
|
durationMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
22
22
|
lastUpdated: z.ZodOptional<z.ZodNumber>;
|
|
23
|
-
}, {
|
|
24
|
-
id: z.ZodString;
|
|
25
23
|
name: z.ZodOptional<z.ZodString>;
|
|
26
24
|
inputPath: z.ZodOptional<z.ZodString>;
|
|
27
25
|
outputPath: z.ZodOptional<z.ZodString>;
|
|
28
|
-
}
|
|
26
|
+
} & {
|
|
29
27
|
id: z.ZodString;
|
|
30
28
|
errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
31
29
|
text: z.ZodType<string, z.ZodTypeDef, string>;
|
|
@@ -39,7 +37,7 @@ export declare const ZodTaskDescription: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
39
37
|
location: z.ZodType<import("@ms-cloudpack/common-types").BundleMessageLocation | undefined, z.ZodTypeDef, import("@ms-cloudpack/common-types").BundleMessageLocation | undefined>;
|
|
40
38
|
notes: z.ZodType<import("@ms-cloudpack/common-types").BundleMessageNote[] | undefined, z.ZodTypeDef, import("@ms-cloudpack/common-types").BundleMessageNote[] | undefined>;
|
|
41
39
|
}, "strict", z.ZodTypeAny, import("@ms-cloudpack/common-types").BundleMessage, import("@ms-cloudpack/common-types").BundleMessage>, "many">>;
|
|
42
|
-
}
|
|
40
|
+
}, "strip", z.ZodTypeAny, {
|
|
43
41
|
id: string;
|
|
44
42
|
startTime: number;
|
|
45
43
|
status?: "pending" | "complete" | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TaskDescription.d.ts","sourceRoot":"","sources":["../../src/types/TaskDescription.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAKpB,eAAO,MAAM,kBAAkB
|
|
1
|
+
{"version":3,"file":"TaskDescription.d.ts","sourceRoot":"","sources":["../../src/types/TaskDescription.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAKpB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASO,CAAC;AAEvC,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC"}
|
package/lib/types/TaskList.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const ZodTaskList: z.ZodObject<{
|
|
3
|
-
tasks: z.ZodArray<z.ZodObject<
|
|
3
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
4
4
|
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"pending">, z.ZodLiteral<"complete">]>>;
|
|
5
5
|
timings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6
6
|
name: z.ZodString;
|
|
@@ -21,12 +21,10 @@ export declare const ZodTaskList: z.ZodObject<{
|
|
|
21
21
|
startTime: z.ZodNumber;
|
|
22
22
|
durationMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
23
23
|
lastUpdated: z.ZodOptional<z.ZodNumber>;
|
|
24
|
-
}, {
|
|
25
|
-
id: z.ZodString;
|
|
26
24
|
name: z.ZodOptional<z.ZodString>;
|
|
27
25
|
inputPath: z.ZodOptional<z.ZodString>;
|
|
28
26
|
outputPath: z.ZodOptional<z.ZodString>;
|
|
29
|
-
}
|
|
27
|
+
} & {
|
|
30
28
|
id: z.ZodString;
|
|
31
29
|
errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
32
30
|
text: z.ZodType<string, z.ZodTypeDef, string>;
|
|
@@ -40,7 +38,7 @@ export declare const ZodTaskList: z.ZodObject<{
|
|
|
40
38
|
location: z.ZodType<import("@ms-cloudpack/common-types").BundleMessageLocation | undefined, z.ZodTypeDef, import("@ms-cloudpack/common-types").BundleMessageLocation | undefined>;
|
|
41
39
|
notes: z.ZodType<import("@ms-cloudpack/common-types").BundleMessageNote[] | undefined, z.ZodTypeDef, import("@ms-cloudpack/common-types").BundleMessageNote[] | undefined>;
|
|
42
40
|
}, "strict", z.ZodTypeAny, import("@ms-cloudpack/common-types").BundleMessage, import("@ms-cloudpack/common-types").BundleMessage>, "many">>;
|
|
43
|
-
}
|
|
41
|
+
}, "strip", z.ZodTypeAny, {
|
|
44
42
|
id: string;
|
|
45
43
|
startTime: number;
|
|
46
44
|
status?: "pending" | "complete" | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TaskList.d.ts","sourceRoot":"","sources":["../../src/types/TaskList.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"TaskList.d.ts","sourceRoot":"","sources":["../../src/types/TaskList.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEtB,CAAC;AAEH,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ms-cloudpack/api-server",
|
|
3
|
-
"version": "0.61.
|
|
3
|
+
"version": "0.61.22",
|
|
4
4
|
"description": "An implementation of the API server that does interacts with a task scheduler.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -27,17 +27,17 @@
|
|
|
27
27
|
"@lage-run/logger": "^1.3.0",
|
|
28
28
|
"@lage-run/scheduler": "^1.2.1",
|
|
29
29
|
"@lage-run/target-graph": "^0.11.0",
|
|
30
|
-
"@ms-cloudpack/bundler": "^0.24.
|
|
30
|
+
"@ms-cloudpack/bundler": "^0.24.17",
|
|
31
31
|
"@ms-cloudpack/common-types": "^0.24.13",
|
|
32
|
-
"@ms-cloudpack/config": "^0.33.
|
|
32
|
+
"@ms-cloudpack/config": "^0.33.26",
|
|
33
33
|
"@ms-cloudpack/create-express-app": "^1.10.25",
|
|
34
34
|
"@ms-cloudpack/data-bus": "^0.4.3",
|
|
35
35
|
"@ms-cloudpack/environment": "^0.1.1",
|
|
36
36
|
"@ms-cloudpack/esm-stub-utilities": "^0.14.17",
|
|
37
37
|
"@ms-cloudpack/file-watcher": "^0.2.0",
|
|
38
|
-
"@ms-cloudpack/import-map": "^0.10.
|
|
38
|
+
"@ms-cloudpack/import-map": "^0.10.8",
|
|
39
39
|
"@ms-cloudpack/json-utilities": "^0.1.10",
|
|
40
|
-
"@ms-cloudpack/package-hashes": "^0.7.
|
|
40
|
+
"@ms-cloudpack/package-hashes": "^0.7.38",
|
|
41
41
|
"@ms-cloudpack/package-utilities": "^12.1.0",
|
|
42
42
|
"@ms-cloudpack/path-string-parsing": "^1.2.7",
|
|
43
43
|
"@ms-cloudpack/path-utilities": "^3.0.10",
|