@ms-cloudpack/api-server 0.7.1 → 0.8.0
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/apis/addPackageOverride.d.ts +64 -2
- package/lib/apis/addPackageOverride.d.ts.map +1 -1
- package/lib/apis/bus.d.ts +64 -2
- package/lib/apis/bus.d.ts.map +1 -1
- package/lib/apis/openCodeEditor.d.ts +64 -2
- package/lib/apis/openCodeEditor.d.ts.map +1 -1
- package/lib/apis/openConfigEditor.d.ts +64 -2
- package/lib/apis/openConfigEditor.d.ts.map +1 -1
- package/lib/apis/openFilePath.d.ts +64 -2
- package/lib/apis/openFilePath.d.ts.map +1 -1
- package/lib/apis/reportMetric.d.ts +66 -4
- package/lib/apis/reportMetric.d.ts.map +1 -1
- package/lib/apis/restartAllTasks.d.ts +64 -2
- package/lib/apis/restartAllTasks.d.ts.map +1 -1
- package/lib/apis/restartTask.d.ts +64 -2
- package/lib/apis/restartTask.d.ts.map +1 -1
- package/lib/apis/validatePackageOverride.d.ts +64 -2
- package/lib/apis/validatePackageOverride.d.ts.map +1 -1
- package/lib/appRouter.d.ts +610 -21
- package/lib/appRouter.d.ts.map +1 -1
- package/lib/createCloudpackServer.d.ts +1 -1
- package/lib/createContextFactory.d.ts +33 -2
- package/lib/createContextFactory.d.ts.map +1 -1
- package/lib/index.d.ts +6 -2
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +6 -2
- package/lib/index.js.map +1 -1
- package/lib/trpc.d.ts +96 -3
- package/lib/trpc.d.ts.map +1 -1
- package/lib/tsdoc-metadata.json +1 -1
- package/lib/types/BundleResultExtended.d.ts +23 -0
- package/lib/types/BundleResultExtended.d.ts.map +1 -0
- package/lib/types/BundleResultExtended.js +2 -0
- package/lib/types/BundleResultExtended.js.map +1 -0
- package/lib/types/TaskDescription.d.ts +133 -7
- package/lib/types/TaskDescription.d.ts.map +1 -1
- package/lib/types/TaskDescription.js +14 -1
- package/lib/types/TaskDescription.js.map +1 -1
- package/lib/types/TaskEndDescription.d.ts +84 -5
- package/lib/types/TaskEndDescription.d.ts.map +1 -1
- package/lib/types/TaskEndDescription.js +7 -1
- package/lib/types/TaskEndDescription.js.map +1 -1
- package/lib/types/TaskError.d.ts +18 -2
- package/lib/types/TaskError.d.ts.map +1 -1
- package/lib/types/TaskError.js +9 -1
- package/lib/types/TaskError.js.map +1 -1
- package/lib/types/TaskMessage.d.ts +166 -0
- package/lib/types/TaskMessage.d.ts.map +1 -0
- package/lib/types/TaskMessage.js +17 -0
- package/lib/types/TaskMessage.js.map +1 -0
- package/lib/types/TaskMessageLocation.d.ts +25 -0
- package/lib/types/TaskMessageLocation.d.ts.map +1 -0
- package/lib/types/TaskMessageLocation.js +10 -0
- package/lib/types/TaskMessageLocation.js.map +1 -0
- package/lib/types/TaskResponse.d.ts +471 -0
- package/lib/types/TaskResponse.d.ts.map +1 -0
- package/lib/types/TaskResponse.js +8 -0
- package/lib/types/TaskResponse.js.map +1 -0
- package/lib/types/TaskResult.d.ts +339 -0
- package/lib/types/TaskResult.d.ts.map +1 -0
- package/lib/types/TaskResult.js +7 -0
- package/lib/types/TaskResult.js.map +1 -0
- package/lib/types/TaskStartDescription.d.ts +17 -5
- package/lib/types/TaskStartDescription.d.ts.map +1 -1
- package/lib/types/TaskStartDescription.js +7 -1
- package/lib/types/TaskStartDescription.js.map +1 -1
- package/lib/types/TaskStats.d.ts +22 -0
- package/lib/types/TaskStats.d.ts.map +1 -0
- package/lib/types/TaskStats.js +9 -0
- package/lib/types/TaskStats.js.map +1 -0
- package/lib/types/Timing.d.ts +23 -0
- package/lib/types/Timing.d.ts.map +1 -0
- package/lib/types/Timing.js +12 -0
- package/lib/types/Timing.js.map +1 -0
- package/lib/types/Timings.d.ts +20 -0
- package/lib/types/Timings.d.ts.map +1 -0
- package/lib/types/Timings.js +5 -0
- package/lib/types/Timings.js.map +1 -0
- package/lib/utilities/addOverride.d.ts.map +1 -1
- package/lib/utilities/addOverride.js +9 -20
- package/lib/utilities/addOverride.js.map +1 -1
- package/package.json +3 -3
|
@@ -6,7 +6,38 @@ export declare const addPackageOverride: import("@trpc/server").BuildProcedure<"
|
|
|
6
6
|
ctx: {
|
|
7
7
|
session: import("../index.js").Session;
|
|
8
8
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
9
|
-
allTasks: Map<string,
|
|
9
|
+
allTasks: Map<string, {
|
|
10
|
+
id: string;
|
|
11
|
+
startTime: number;
|
|
12
|
+
status?: "pending" | "complete" | undefined;
|
|
13
|
+
name?: string | undefined;
|
|
14
|
+
inputPath?: string | undefined;
|
|
15
|
+
outputPath?: string | undefined;
|
|
16
|
+
timings?: {
|
|
17
|
+
name: string;
|
|
18
|
+
start: number;
|
|
19
|
+
end?: number | undefined;
|
|
20
|
+
threwException?: boolean | undefined;
|
|
21
|
+
}[] | undefined;
|
|
22
|
+
durationMilliseconds?: number | undefined;
|
|
23
|
+
lastUpdated?: number | undefined;
|
|
24
|
+
errors?: {
|
|
25
|
+
message: string;
|
|
26
|
+
pluginName: string;
|
|
27
|
+
stack: string;
|
|
28
|
+
fileLocation: string;
|
|
29
|
+
lineNumber: number;
|
|
30
|
+
columnNumber: number;
|
|
31
|
+
}[] | undefined;
|
|
32
|
+
warnings?: {
|
|
33
|
+
message: string;
|
|
34
|
+
pluginName: string;
|
|
35
|
+
stack: string;
|
|
36
|
+
fileLocation: string;
|
|
37
|
+
lineNumber: number;
|
|
38
|
+
columnNumber: number;
|
|
39
|
+
}[] | undefined;
|
|
40
|
+
}>;
|
|
10
41
|
taskRunner: import("../utilities/TaskRunner.js").TaskRunner;
|
|
11
42
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
12
43
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -20,7 +51,38 @@ export declare const addPackageOverride: import("@trpc/server").BuildProcedure<"
|
|
|
20
51
|
_ctx_out: {
|
|
21
52
|
session: import("../index.js").Session;
|
|
22
53
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
23
|
-
allTasks: Map<string,
|
|
54
|
+
allTasks: Map<string, {
|
|
55
|
+
id: string;
|
|
56
|
+
startTime: number;
|
|
57
|
+
status?: "pending" | "complete" | undefined;
|
|
58
|
+
name?: string | undefined;
|
|
59
|
+
inputPath?: string | undefined;
|
|
60
|
+
outputPath?: string | undefined;
|
|
61
|
+
timings?: {
|
|
62
|
+
name: string;
|
|
63
|
+
start: number;
|
|
64
|
+
end?: number | undefined;
|
|
65
|
+
threwException?: boolean | undefined;
|
|
66
|
+
}[] | undefined;
|
|
67
|
+
durationMilliseconds?: number | undefined;
|
|
68
|
+
lastUpdated?: number | undefined;
|
|
69
|
+
errors?: {
|
|
70
|
+
message: string;
|
|
71
|
+
pluginName: string;
|
|
72
|
+
stack: string;
|
|
73
|
+
fileLocation: string;
|
|
74
|
+
lineNumber: number;
|
|
75
|
+
columnNumber: number;
|
|
76
|
+
}[] | undefined;
|
|
77
|
+
warnings?: {
|
|
78
|
+
message: string;
|
|
79
|
+
pluginName: string;
|
|
80
|
+
stack: string;
|
|
81
|
+
fileLocation: string;
|
|
82
|
+
lineNumber: number;
|
|
83
|
+
columnNumber: number;
|
|
84
|
+
}[] | undefined;
|
|
85
|
+
}>;
|
|
24
86
|
taskRunner: import("../utilities/TaskRunner.js").TaskRunner;
|
|
25
87
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
26
88
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"addPackageOverride.d.ts","sourceRoot":"","sources":["../../src/apis/addPackageOverride.ts"],"names":[],"mappings":"AAKA;;GAEG;AACH,eAAO,MAAM,kBAAkB
|
|
1
|
+
{"version":3,"file":"addPackageOverride.d.ts","sourceRoot":"","sources":["../../src/apis/addPackageOverride.ts"],"names":[],"mappings":"AAKA;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAW3B,CAAC"}
|
package/lib/apis/bus.d.ts
CHANGED
|
@@ -9,7 +9,38 @@ export declare const bus: import("@trpc/server").BuildProcedure<"subscription",
|
|
|
9
9
|
ctx: {
|
|
10
10
|
session: import("../index.js").Session;
|
|
11
11
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
12
|
-
allTasks: Map<string,
|
|
12
|
+
allTasks: Map<string, {
|
|
13
|
+
id: string;
|
|
14
|
+
startTime: number;
|
|
15
|
+
status?: "pending" | "complete" | undefined;
|
|
16
|
+
name?: string | undefined;
|
|
17
|
+
inputPath?: string | undefined;
|
|
18
|
+
outputPath?: string | undefined;
|
|
19
|
+
timings?: {
|
|
20
|
+
name: string;
|
|
21
|
+
start: number;
|
|
22
|
+
end?: number | undefined;
|
|
23
|
+
threwException?: boolean | undefined;
|
|
24
|
+
}[] | undefined;
|
|
25
|
+
durationMilliseconds?: number | undefined;
|
|
26
|
+
lastUpdated?: number | undefined;
|
|
27
|
+
errors?: {
|
|
28
|
+
message: string;
|
|
29
|
+
pluginName: string;
|
|
30
|
+
stack: string;
|
|
31
|
+
fileLocation: string;
|
|
32
|
+
lineNumber: number;
|
|
33
|
+
columnNumber: number;
|
|
34
|
+
}[] | undefined;
|
|
35
|
+
warnings?: {
|
|
36
|
+
message: string;
|
|
37
|
+
pluginName: string;
|
|
38
|
+
stack: string;
|
|
39
|
+
fileLocation: string;
|
|
40
|
+
lineNumber: number;
|
|
41
|
+
columnNumber: number;
|
|
42
|
+
}[] | undefined;
|
|
43
|
+
}>;
|
|
13
44
|
taskRunner: import("../utilities/TaskRunner.js").TaskRunner;
|
|
14
45
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
15
46
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -23,7 +54,38 @@ export declare const bus: import("@trpc/server").BuildProcedure<"subscription",
|
|
|
23
54
|
_ctx_out: {
|
|
24
55
|
session: import("../index.js").Session;
|
|
25
56
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
26
|
-
allTasks: Map<string,
|
|
57
|
+
allTasks: Map<string, {
|
|
58
|
+
id: string;
|
|
59
|
+
startTime: number;
|
|
60
|
+
status?: "pending" | "complete" | undefined;
|
|
61
|
+
name?: string | undefined;
|
|
62
|
+
inputPath?: string | undefined;
|
|
63
|
+
outputPath?: string | undefined;
|
|
64
|
+
timings?: {
|
|
65
|
+
name: string;
|
|
66
|
+
start: number;
|
|
67
|
+
end?: number | undefined;
|
|
68
|
+
threwException?: boolean | undefined;
|
|
69
|
+
}[] | undefined;
|
|
70
|
+
durationMilliseconds?: number | undefined;
|
|
71
|
+
lastUpdated?: number | undefined;
|
|
72
|
+
errors?: {
|
|
73
|
+
message: string;
|
|
74
|
+
pluginName: string;
|
|
75
|
+
stack: string;
|
|
76
|
+
fileLocation: string;
|
|
77
|
+
lineNumber: number;
|
|
78
|
+
columnNumber: number;
|
|
79
|
+
}[] | undefined;
|
|
80
|
+
warnings?: {
|
|
81
|
+
message: string;
|
|
82
|
+
pluginName: string;
|
|
83
|
+
stack: string;
|
|
84
|
+
fileLocation: string;
|
|
85
|
+
lineNumber: number;
|
|
86
|
+
columnNumber: number;
|
|
87
|
+
}[] | undefined;
|
|
88
|
+
}>;
|
|
27
89
|
taskRunner: import("../utilities/TaskRunner.js").TaskRunner;
|
|
28
90
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
29
91
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
package/lib/apis/bus.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bus.d.ts","sourceRoot":"","sources":["../../src/apis/bus.ts"],"names":[],"mappings":"AAGA;;;;;GAKG;AACH,eAAO,MAAM,GAAG
|
|
1
|
+
{"version":3,"file":"bus.d.ts","sourceRoot":"","sources":["../../src/apis/bus.ts"],"names":[],"mappings":"AAGA;;;;;GAKG;AACH,eAAO,MAAM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8DAgBZ,CAAC"}
|
|
@@ -3,7 +3,38 @@ export declare const openCodeEditor: import("@trpc/server").BuildProcedure<"muta
|
|
|
3
3
|
ctx: {
|
|
4
4
|
session: import("../index.js").Session;
|
|
5
5
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
6
|
-
allTasks: Map<string,
|
|
6
|
+
allTasks: Map<string, {
|
|
7
|
+
id: string;
|
|
8
|
+
startTime: number;
|
|
9
|
+
status?: "pending" | "complete" | undefined;
|
|
10
|
+
name?: string | undefined;
|
|
11
|
+
inputPath?: string | undefined;
|
|
12
|
+
outputPath?: string | undefined;
|
|
13
|
+
timings?: {
|
|
14
|
+
name: string;
|
|
15
|
+
start: number;
|
|
16
|
+
end?: number | undefined;
|
|
17
|
+
threwException?: boolean | undefined;
|
|
18
|
+
}[] | undefined;
|
|
19
|
+
durationMilliseconds?: number | undefined;
|
|
20
|
+
lastUpdated?: number | undefined;
|
|
21
|
+
errors?: {
|
|
22
|
+
message: string;
|
|
23
|
+
pluginName: string;
|
|
24
|
+
stack: string;
|
|
25
|
+
fileLocation: string;
|
|
26
|
+
lineNumber: number;
|
|
27
|
+
columnNumber: number;
|
|
28
|
+
}[] | undefined;
|
|
29
|
+
warnings?: {
|
|
30
|
+
message: string;
|
|
31
|
+
pluginName: string;
|
|
32
|
+
stack: string;
|
|
33
|
+
fileLocation: string;
|
|
34
|
+
lineNumber: number;
|
|
35
|
+
columnNumber: number;
|
|
36
|
+
}[] | undefined;
|
|
37
|
+
}>;
|
|
7
38
|
taskRunner: import("../utilities/TaskRunner.js").TaskRunner;
|
|
8
39
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
9
40
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -17,7 +48,38 @@ export declare const openCodeEditor: import("@trpc/server").BuildProcedure<"muta
|
|
|
17
48
|
_ctx_out: {
|
|
18
49
|
session: import("../index.js").Session;
|
|
19
50
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
20
|
-
allTasks: Map<string,
|
|
51
|
+
allTasks: Map<string, {
|
|
52
|
+
id: string;
|
|
53
|
+
startTime: number;
|
|
54
|
+
status?: "pending" | "complete" | undefined;
|
|
55
|
+
name?: string | undefined;
|
|
56
|
+
inputPath?: string | undefined;
|
|
57
|
+
outputPath?: string | undefined;
|
|
58
|
+
timings?: {
|
|
59
|
+
name: string;
|
|
60
|
+
start: number;
|
|
61
|
+
end?: number | undefined;
|
|
62
|
+
threwException?: boolean | undefined;
|
|
63
|
+
}[] | undefined;
|
|
64
|
+
durationMilliseconds?: number | undefined;
|
|
65
|
+
lastUpdated?: number | undefined;
|
|
66
|
+
errors?: {
|
|
67
|
+
message: string;
|
|
68
|
+
pluginName: string;
|
|
69
|
+
stack: string;
|
|
70
|
+
fileLocation: string;
|
|
71
|
+
lineNumber: number;
|
|
72
|
+
columnNumber: number;
|
|
73
|
+
}[] | undefined;
|
|
74
|
+
warnings?: {
|
|
75
|
+
message: string;
|
|
76
|
+
pluginName: string;
|
|
77
|
+
stack: string;
|
|
78
|
+
fileLocation: string;
|
|
79
|
+
lineNumber: number;
|
|
80
|
+
columnNumber: number;
|
|
81
|
+
}[] | undefined;
|
|
82
|
+
}>;
|
|
21
83
|
taskRunner: import("../utilities/TaskRunner.js").TaskRunner;
|
|
22
84
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
23
85
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"openCodeEditor.d.ts","sourceRoot":"","sources":["../../src/apis/openCodeEditor.ts"],"names":[],"mappings":"AAQA,eAAO,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"openCodeEditor.d.ts","sourceRoot":"","sources":["../../src/apis/openCodeEditor.ts"],"names":[],"mappings":"AAQA,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAevB,CAAC"}
|
|
@@ -3,7 +3,38 @@ export declare const openConfigEditor: import("@trpc/server").BuildProcedure<"mu
|
|
|
3
3
|
ctx: {
|
|
4
4
|
session: import("../index.js").Session;
|
|
5
5
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
6
|
-
allTasks: Map<string,
|
|
6
|
+
allTasks: Map<string, {
|
|
7
|
+
id: string;
|
|
8
|
+
startTime: number;
|
|
9
|
+
status?: "pending" | "complete" | undefined;
|
|
10
|
+
name?: string | undefined;
|
|
11
|
+
inputPath?: string | undefined;
|
|
12
|
+
outputPath?: string | undefined;
|
|
13
|
+
timings?: {
|
|
14
|
+
name: string;
|
|
15
|
+
start: number;
|
|
16
|
+
end?: number | undefined;
|
|
17
|
+
threwException?: boolean | undefined;
|
|
18
|
+
}[] | undefined;
|
|
19
|
+
durationMilliseconds?: number | undefined;
|
|
20
|
+
lastUpdated?: number | undefined;
|
|
21
|
+
errors?: {
|
|
22
|
+
message: string;
|
|
23
|
+
pluginName: string;
|
|
24
|
+
stack: string;
|
|
25
|
+
fileLocation: string;
|
|
26
|
+
lineNumber: number;
|
|
27
|
+
columnNumber: number;
|
|
28
|
+
}[] | undefined;
|
|
29
|
+
warnings?: {
|
|
30
|
+
message: string;
|
|
31
|
+
pluginName: string;
|
|
32
|
+
stack: string;
|
|
33
|
+
fileLocation: string;
|
|
34
|
+
lineNumber: number;
|
|
35
|
+
columnNumber: number;
|
|
36
|
+
}[] | undefined;
|
|
37
|
+
}>;
|
|
7
38
|
taskRunner: import("../utilities/TaskRunner.js").TaskRunner;
|
|
8
39
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
9
40
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -16,7 +47,38 @@ export declare const openConfigEditor: import("@trpc/server").BuildProcedure<"mu
|
|
|
16
47
|
_ctx_out: {
|
|
17
48
|
session: import("../index.js").Session;
|
|
18
49
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
19
|
-
allTasks: Map<string,
|
|
50
|
+
allTasks: Map<string, {
|
|
51
|
+
id: string;
|
|
52
|
+
startTime: number;
|
|
53
|
+
status?: "pending" | "complete" | undefined;
|
|
54
|
+
name?: string | undefined;
|
|
55
|
+
inputPath?: string | undefined;
|
|
56
|
+
outputPath?: string | undefined;
|
|
57
|
+
timings?: {
|
|
58
|
+
name: string;
|
|
59
|
+
start: number;
|
|
60
|
+
end?: number | undefined;
|
|
61
|
+
threwException?: boolean | undefined;
|
|
62
|
+
}[] | undefined;
|
|
63
|
+
durationMilliseconds?: number | undefined;
|
|
64
|
+
lastUpdated?: number | undefined;
|
|
65
|
+
errors?: {
|
|
66
|
+
message: string;
|
|
67
|
+
pluginName: string;
|
|
68
|
+
stack: string;
|
|
69
|
+
fileLocation: string;
|
|
70
|
+
lineNumber: number;
|
|
71
|
+
columnNumber: number;
|
|
72
|
+
}[] | undefined;
|
|
73
|
+
warnings?: {
|
|
74
|
+
message: string;
|
|
75
|
+
pluginName: string;
|
|
76
|
+
stack: string;
|
|
77
|
+
fileLocation: string;
|
|
78
|
+
lineNumber: number;
|
|
79
|
+
columnNumber: number;
|
|
80
|
+
}[] | undefined;
|
|
81
|
+
}>;
|
|
20
82
|
taskRunner: import("../utilities/TaskRunner.js").TaskRunner;
|
|
21
83
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
22
84
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"openConfigEditor.d.ts","sourceRoot":"","sources":["../../src/apis/openConfigEditor.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"openConfigEditor.d.ts","sourceRoot":"","sources":["../../src/apis/openConfigEditor.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAAgD,CAAC"}
|
|
@@ -3,7 +3,38 @@ export declare const openFilePath: import("@trpc/server").BuildProcedure<"query"
|
|
|
3
3
|
ctx: {
|
|
4
4
|
session: import("../index.js").Session;
|
|
5
5
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
6
|
-
allTasks: Map<string,
|
|
6
|
+
allTasks: Map<string, {
|
|
7
|
+
id: string;
|
|
8
|
+
startTime: number;
|
|
9
|
+
status?: "pending" | "complete" | undefined;
|
|
10
|
+
name?: string | undefined;
|
|
11
|
+
inputPath?: string | undefined;
|
|
12
|
+
outputPath?: string | undefined;
|
|
13
|
+
timings?: {
|
|
14
|
+
name: string;
|
|
15
|
+
start: number;
|
|
16
|
+
end?: number | undefined;
|
|
17
|
+
threwException?: boolean | undefined;
|
|
18
|
+
}[] | undefined;
|
|
19
|
+
durationMilliseconds?: number | undefined;
|
|
20
|
+
lastUpdated?: number | undefined;
|
|
21
|
+
errors?: {
|
|
22
|
+
message: string;
|
|
23
|
+
pluginName: string;
|
|
24
|
+
stack: string;
|
|
25
|
+
fileLocation: string;
|
|
26
|
+
lineNumber: number;
|
|
27
|
+
columnNumber: number;
|
|
28
|
+
}[] | undefined;
|
|
29
|
+
warnings?: {
|
|
30
|
+
message: string;
|
|
31
|
+
pluginName: string;
|
|
32
|
+
stack: string;
|
|
33
|
+
fileLocation: string;
|
|
34
|
+
lineNumber: number;
|
|
35
|
+
columnNumber: number;
|
|
36
|
+
}[] | undefined;
|
|
37
|
+
}>;
|
|
7
38
|
taskRunner: import("../utilities/TaskRunner.js").TaskRunner;
|
|
8
39
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
9
40
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -17,7 +48,38 @@ export declare const openFilePath: import("@trpc/server").BuildProcedure<"query"
|
|
|
17
48
|
_ctx_out: {
|
|
18
49
|
session: import("../index.js").Session;
|
|
19
50
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
20
|
-
allTasks: Map<string,
|
|
51
|
+
allTasks: Map<string, {
|
|
52
|
+
id: string;
|
|
53
|
+
startTime: number;
|
|
54
|
+
status?: "pending" | "complete" | undefined;
|
|
55
|
+
name?: string | undefined;
|
|
56
|
+
inputPath?: string | undefined;
|
|
57
|
+
outputPath?: string | undefined;
|
|
58
|
+
timings?: {
|
|
59
|
+
name: string;
|
|
60
|
+
start: number;
|
|
61
|
+
end?: number | undefined;
|
|
62
|
+
threwException?: boolean | undefined;
|
|
63
|
+
}[] | undefined;
|
|
64
|
+
durationMilliseconds?: number | undefined;
|
|
65
|
+
lastUpdated?: number | undefined;
|
|
66
|
+
errors?: {
|
|
67
|
+
message: string;
|
|
68
|
+
pluginName: string;
|
|
69
|
+
stack: string;
|
|
70
|
+
fileLocation: string;
|
|
71
|
+
lineNumber: number;
|
|
72
|
+
columnNumber: number;
|
|
73
|
+
}[] | undefined;
|
|
74
|
+
warnings?: {
|
|
75
|
+
message: string;
|
|
76
|
+
pluginName: string;
|
|
77
|
+
stack: string;
|
|
78
|
+
fileLocation: string;
|
|
79
|
+
lineNumber: number;
|
|
80
|
+
columnNumber: number;
|
|
81
|
+
}[] | undefined;
|
|
82
|
+
}>;
|
|
21
83
|
taskRunner: import("../utilities/TaskRunner.js").TaskRunner;
|
|
22
84
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
23
85
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"openFilePath.d.ts","sourceRoot":"","sources":["../../src/apis/openFilePath.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"openFilePath.d.ts","sourceRoot":"","sources":["../../src/apis/openFilePath.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAcrB,CAAC"}
|
|
@@ -3,7 +3,38 @@ export declare const reportMetric: import("@trpc/server").BuildProcedure<"mutati
|
|
|
3
3
|
ctx: {
|
|
4
4
|
session: import("../index.js").Session;
|
|
5
5
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
6
|
-
allTasks: Map<string,
|
|
6
|
+
allTasks: Map<string, {
|
|
7
|
+
id: string;
|
|
8
|
+
startTime: number;
|
|
9
|
+
status?: "pending" | "complete" | undefined;
|
|
10
|
+
name?: string | undefined;
|
|
11
|
+
inputPath?: string | undefined;
|
|
12
|
+
outputPath?: string | undefined;
|
|
13
|
+
timings?: {
|
|
14
|
+
name: string;
|
|
15
|
+
start: number;
|
|
16
|
+
end?: number | undefined;
|
|
17
|
+
threwException?: boolean | undefined;
|
|
18
|
+
}[] | undefined;
|
|
19
|
+
durationMilliseconds?: number | undefined;
|
|
20
|
+
lastUpdated?: number | undefined;
|
|
21
|
+
errors?: {
|
|
22
|
+
message: string;
|
|
23
|
+
pluginName: string;
|
|
24
|
+
stack: string;
|
|
25
|
+
fileLocation: string;
|
|
26
|
+
lineNumber: number;
|
|
27
|
+
columnNumber: number;
|
|
28
|
+
}[] | undefined;
|
|
29
|
+
warnings?: {
|
|
30
|
+
message: string;
|
|
31
|
+
pluginName: string;
|
|
32
|
+
stack: string;
|
|
33
|
+
fileLocation: string;
|
|
34
|
+
lineNumber: number;
|
|
35
|
+
columnNumber: number;
|
|
36
|
+
}[] | undefined;
|
|
37
|
+
}>;
|
|
7
38
|
taskRunner: import("../utilities/TaskRunner.js").TaskRunner;
|
|
8
39
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
9
40
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -17,19 +48,50 @@ export declare const reportMetric: import("@trpc/server").BuildProcedure<"mutati
|
|
|
17
48
|
_ctx_out: {
|
|
18
49
|
session: import("../index.js").Session;
|
|
19
50
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
20
|
-
allTasks: Map<string,
|
|
51
|
+
allTasks: Map<string, {
|
|
52
|
+
id: string;
|
|
53
|
+
startTime: number;
|
|
54
|
+
status?: "pending" | "complete" | undefined;
|
|
55
|
+
name?: string | undefined;
|
|
56
|
+
inputPath?: string | undefined;
|
|
57
|
+
outputPath?: string | undefined;
|
|
58
|
+
timings?: {
|
|
59
|
+
name: string;
|
|
60
|
+
start: number;
|
|
61
|
+
end?: number | undefined;
|
|
62
|
+
threwException?: boolean | undefined;
|
|
63
|
+
}[] | undefined;
|
|
64
|
+
durationMilliseconds?: number | undefined;
|
|
65
|
+
lastUpdated?: number | undefined;
|
|
66
|
+
errors?: {
|
|
67
|
+
message: string;
|
|
68
|
+
pluginName: string;
|
|
69
|
+
stack: string;
|
|
70
|
+
fileLocation: string;
|
|
71
|
+
lineNumber: number;
|
|
72
|
+
columnNumber: number;
|
|
73
|
+
}[] | undefined;
|
|
74
|
+
warnings?: {
|
|
75
|
+
message: string;
|
|
76
|
+
pluginName: string;
|
|
77
|
+
stack: string;
|
|
78
|
+
fileLocation: string;
|
|
79
|
+
lineNumber: number;
|
|
80
|
+
columnNumber: number;
|
|
81
|
+
}[] | undefined;
|
|
82
|
+
}>;
|
|
21
83
|
taskRunner: import("../utilities/TaskRunner.js").TaskRunner;
|
|
22
84
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
23
85
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
24
86
|
packages: import("@ms-cloudpack/bundler-types").PackageDefinitionsCache;
|
|
25
87
|
};
|
|
26
88
|
_input_in: {
|
|
27
|
-
metric: string;
|
|
28
89
|
value: number;
|
|
90
|
+
metric: string;
|
|
29
91
|
};
|
|
30
92
|
_input_out: {
|
|
31
|
-
metric: string;
|
|
32
93
|
value: number;
|
|
94
|
+
metric: string;
|
|
33
95
|
};
|
|
34
96
|
_output_in: typeof import("@trpc/server").unsetMarker;
|
|
35
97
|
_output_out: typeof import("@trpc/server").unsetMarker;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"reportMetric.d.ts","sourceRoot":"","sources":["../../src/apis/reportMetric.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"reportMetric.d.ts","sourceRoot":"","sources":["../../src/apis/reportMetric.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QASrB,CAAC"}
|
|
@@ -3,7 +3,38 @@ export declare const restartAllTasks: import("@trpc/server").BuildProcedure<"mut
|
|
|
3
3
|
ctx: {
|
|
4
4
|
session: import("../index.js").Session;
|
|
5
5
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
6
|
-
allTasks: Map<string,
|
|
6
|
+
allTasks: Map<string, {
|
|
7
|
+
id: string;
|
|
8
|
+
startTime: number;
|
|
9
|
+
status?: "pending" | "complete" | undefined;
|
|
10
|
+
name?: string | undefined;
|
|
11
|
+
inputPath?: string | undefined;
|
|
12
|
+
outputPath?: string | undefined;
|
|
13
|
+
timings?: {
|
|
14
|
+
name: string;
|
|
15
|
+
start: number;
|
|
16
|
+
end?: number | undefined;
|
|
17
|
+
threwException?: boolean | undefined;
|
|
18
|
+
}[] | undefined;
|
|
19
|
+
durationMilliseconds?: number | undefined;
|
|
20
|
+
lastUpdated?: number | undefined;
|
|
21
|
+
errors?: {
|
|
22
|
+
message: string;
|
|
23
|
+
pluginName: string;
|
|
24
|
+
stack: string;
|
|
25
|
+
fileLocation: string;
|
|
26
|
+
lineNumber: number;
|
|
27
|
+
columnNumber: number;
|
|
28
|
+
}[] | undefined;
|
|
29
|
+
warnings?: {
|
|
30
|
+
message: string;
|
|
31
|
+
pluginName: string;
|
|
32
|
+
stack: string;
|
|
33
|
+
fileLocation: string;
|
|
34
|
+
lineNumber: number;
|
|
35
|
+
columnNumber: number;
|
|
36
|
+
}[] | undefined;
|
|
37
|
+
}>;
|
|
7
38
|
taskRunner: import("../utilities/TaskRunner.js").TaskRunner;
|
|
8
39
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
9
40
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -16,7 +47,38 @@ export declare const restartAllTasks: import("@trpc/server").BuildProcedure<"mut
|
|
|
16
47
|
_ctx_out: {
|
|
17
48
|
session: import("../index.js").Session;
|
|
18
49
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
19
|
-
allTasks: Map<string,
|
|
50
|
+
allTasks: Map<string, {
|
|
51
|
+
id: string;
|
|
52
|
+
startTime: number;
|
|
53
|
+
status?: "pending" | "complete" | undefined;
|
|
54
|
+
name?: string | undefined;
|
|
55
|
+
inputPath?: string | undefined;
|
|
56
|
+
outputPath?: string | undefined;
|
|
57
|
+
timings?: {
|
|
58
|
+
name: string;
|
|
59
|
+
start: number;
|
|
60
|
+
end?: number | undefined;
|
|
61
|
+
threwException?: boolean | undefined;
|
|
62
|
+
}[] | undefined;
|
|
63
|
+
durationMilliseconds?: number | undefined;
|
|
64
|
+
lastUpdated?: number | undefined;
|
|
65
|
+
errors?: {
|
|
66
|
+
message: string;
|
|
67
|
+
pluginName: string;
|
|
68
|
+
stack: string;
|
|
69
|
+
fileLocation: string;
|
|
70
|
+
lineNumber: number;
|
|
71
|
+
columnNumber: number;
|
|
72
|
+
}[] | undefined;
|
|
73
|
+
warnings?: {
|
|
74
|
+
message: string;
|
|
75
|
+
pluginName: string;
|
|
76
|
+
stack: string;
|
|
77
|
+
fileLocation: string;
|
|
78
|
+
lineNumber: number;
|
|
79
|
+
columnNumber: number;
|
|
80
|
+
}[] | undefined;
|
|
81
|
+
}>;
|
|
20
82
|
taskRunner: import("../utilities/TaskRunner.js").TaskRunner;
|
|
21
83
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
22
84
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"restartAllTasks.d.ts","sourceRoot":"","sources":["../../src/apis/restartAllTasks.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"restartAllTasks.d.ts","sourceRoot":"","sources":["../../src/apis/restartAllTasks.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAgB1B,CAAC"}
|