@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
package/lib/appRouter.d.ts
CHANGED
|
@@ -2,7 +2,38 @@ export declare const appRouter: import("@trpc/server").CreateRouterInner<import(
|
|
|
2
2
|
ctx: {
|
|
3
3
|
session: import("./index.js").Session;
|
|
4
4
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
5
|
-
allTasks: Map<string,
|
|
5
|
+
allTasks: Map<string, {
|
|
6
|
+
id: string;
|
|
7
|
+
startTime: number;
|
|
8
|
+
status?: "pending" | "complete" | undefined;
|
|
9
|
+
name?: string | undefined;
|
|
10
|
+
inputPath?: string | undefined;
|
|
11
|
+
outputPath?: string | undefined;
|
|
12
|
+
timings?: {
|
|
13
|
+
name: string;
|
|
14
|
+
start: number;
|
|
15
|
+
end?: number | undefined;
|
|
16
|
+
threwException?: boolean | undefined;
|
|
17
|
+
}[] | undefined;
|
|
18
|
+
durationMilliseconds?: number | undefined;
|
|
19
|
+
lastUpdated?: number | undefined;
|
|
20
|
+
errors?: {
|
|
21
|
+
message: string;
|
|
22
|
+
pluginName: string;
|
|
23
|
+
stack: string;
|
|
24
|
+
fileLocation: string;
|
|
25
|
+
lineNumber: number;
|
|
26
|
+
columnNumber: number;
|
|
27
|
+
}[] | undefined;
|
|
28
|
+
warnings?: {
|
|
29
|
+
message: string;
|
|
30
|
+
pluginName: string;
|
|
31
|
+
stack: string;
|
|
32
|
+
fileLocation: string;
|
|
33
|
+
lineNumber: number;
|
|
34
|
+
columnNumber: number;
|
|
35
|
+
}[] | undefined;
|
|
36
|
+
}>;
|
|
6
37
|
taskRunner: import("./utilities/TaskRunner.js").TaskRunner;
|
|
7
38
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
8
39
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -17,7 +48,38 @@ export declare const appRouter: import("@trpc/server").CreateRouterInner<import(
|
|
|
17
48
|
ctx: {
|
|
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;
|
|
@@ -31,7 +93,38 @@ export declare const appRouter: import("@trpc/server").CreateRouterInner<import(
|
|
|
31
93
|
_ctx_out: {
|
|
32
94
|
session: import("./index.js").Session;
|
|
33
95
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
34
|
-
allTasks: Map<string,
|
|
96
|
+
allTasks: Map<string, {
|
|
97
|
+
id: string;
|
|
98
|
+
startTime: number;
|
|
99
|
+
status?: "pending" | "complete" | undefined;
|
|
100
|
+
name?: string | undefined;
|
|
101
|
+
inputPath?: string | undefined;
|
|
102
|
+
outputPath?: string | undefined;
|
|
103
|
+
timings?: {
|
|
104
|
+
name: string;
|
|
105
|
+
start: number;
|
|
106
|
+
end?: number | undefined;
|
|
107
|
+
threwException?: boolean | undefined;
|
|
108
|
+
}[] | undefined;
|
|
109
|
+
durationMilliseconds?: number | undefined;
|
|
110
|
+
lastUpdated?: number | undefined;
|
|
111
|
+
errors?: {
|
|
112
|
+
message: string;
|
|
113
|
+
pluginName: string;
|
|
114
|
+
stack: string;
|
|
115
|
+
fileLocation: string;
|
|
116
|
+
lineNumber: number;
|
|
117
|
+
columnNumber: number;
|
|
118
|
+
}[] | undefined;
|
|
119
|
+
warnings?: {
|
|
120
|
+
message: string;
|
|
121
|
+
pluginName: string;
|
|
122
|
+
stack: string;
|
|
123
|
+
fileLocation: string;
|
|
124
|
+
lineNumber: number;
|
|
125
|
+
columnNumber: number;
|
|
126
|
+
}[] | undefined;
|
|
127
|
+
}>;
|
|
35
128
|
taskRunner: import("./utilities/TaskRunner.js").TaskRunner;
|
|
36
129
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
37
130
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -53,7 +146,38 @@ export declare const appRouter: import("@trpc/server").CreateRouterInner<import(
|
|
|
53
146
|
ctx: {
|
|
54
147
|
session: import("./index.js").Session;
|
|
55
148
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
56
|
-
allTasks: Map<string,
|
|
149
|
+
allTasks: Map<string, {
|
|
150
|
+
id: string;
|
|
151
|
+
startTime: number;
|
|
152
|
+
status?: "pending" | "complete" | undefined;
|
|
153
|
+
name?: string | undefined;
|
|
154
|
+
inputPath?: string | undefined;
|
|
155
|
+
outputPath?: string | undefined;
|
|
156
|
+
timings?: {
|
|
157
|
+
name: string;
|
|
158
|
+
start: number;
|
|
159
|
+
end?: number | undefined;
|
|
160
|
+
threwException?: boolean | undefined;
|
|
161
|
+
}[] | undefined;
|
|
162
|
+
durationMilliseconds?: number | undefined;
|
|
163
|
+
lastUpdated?: number | undefined;
|
|
164
|
+
errors?: {
|
|
165
|
+
message: string;
|
|
166
|
+
pluginName: string;
|
|
167
|
+
stack: string;
|
|
168
|
+
fileLocation: string;
|
|
169
|
+
lineNumber: number;
|
|
170
|
+
columnNumber: number;
|
|
171
|
+
}[] | undefined;
|
|
172
|
+
warnings?: {
|
|
173
|
+
message: string;
|
|
174
|
+
pluginName: string;
|
|
175
|
+
stack: string;
|
|
176
|
+
fileLocation: string;
|
|
177
|
+
lineNumber: number;
|
|
178
|
+
columnNumber: number;
|
|
179
|
+
}[] | undefined;
|
|
180
|
+
}>;
|
|
57
181
|
taskRunner: import("./utilities/TaskRunner.js").TaskRunner;
|
|
58
182
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
59
183
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -67,7 +191,38 @@ export declare const appRouter: import("@trpc/server").CreateRouterInner<import(
|
|
|
67
191
|
_ctx_out: {
|
|
68
192
|
session: import("./index.js").Session;
|
|
69
193
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
70
|
-
allTasks: Map<string,
|
|
194
|
+
allTasks: Map<string, {
|
|
195
|
+
id: string;
|
|
196
|
+
startTime: number;
|
|
197
|
+
status?: "pending" | "complete" | undefined;
|
|
198
|
+
name?: string | undefined;
|
|
199
|
+
inputPath?: string | undefined;
|
|
200
|
+
outputPath?: string | undefined;
|
|
201
|
+
timings?: {
|
|
202
|
+
name: string;
|
|
203
|
+
start: number;
|
|
204
|
+
end?: number | undefined;
|
|
205
|
+
threwException?: boolean | undefined;
|
|
206
|
+
}[] | undefined;
|
|
207
|
+
durationMilliseconds?: number | undefined;
|
|
208
|
+
lastUpdated?: number | undefined;
|
|
209
|
+
errors?: {
|
|
210
|
+
message: string;
|
|
211
|
+
pluginName: string;
|
|
212
|
+
stack: string;
|
|
213
|
+
fileLocation: string;
|
|
214
|
+
lineNumber: number;
|
|
215
|
+
columnNumber: number;
|
|
216
|
+
}[] | undefined;
|
|
217
|
+
warnings?: {
|
|
218
|
+
message: string;
|
|
219
|
+
pluginName: string;
|
|
220
|
+
stack: string;
|
|
221
|
+
fileLocation: string;
|
|
222
|
+
lineNumber: number;
|
|
223
|
+
columnNumber: number;
|
|
224
|
+
}[] | undefined;
|
|
225
|
+
}>;
|
|
71
226
|
taskRunner: import("./utilities/TaskRunner.js").TaskRunner;
|
|
72
227
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
73
228
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -87,7 +242,38 @@ export declare const appRouter: import("@trpc/server").CreateRouterInner<import(
|
|
|
87
242
|
ctx: {
|
|
88
243
|
session: import("./index.js").Session;
|
|
89
244
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
90
|
-
allTasks: Map<string,
|
|
245
|
+
allTasks: Map<string, {
|
|
246
|
+
id: string;
|
|
247
|
+
startTime: number;
|
|
248
|
+
status?: "pending" | "complete" | undefined;
|
|
249
|
+
name?: string | undefined;
|
|
250
|
+
inputPath?: string | undefined;
|
|
251
|
+
outputPath?: string | undefined;
|
|
252
|
+
timings?: {
|
|
253
|
+
name: string;
|
|
254
|
+
start: number;
|
|
255
|
+
end?: number | undefined;
|
|
256
|
+
threwException?: boolean | undefined;
|
|
257
|
+
}[] | undefined;
|
|
258
|
+
durationMilliseconds?: number | undefined;
|
|
259
|
+
lastUpdated?: number | undefined;
|
|
260
|
+
errors?: {
|
|
261
|
+
message: string;
|
|
262
|
+
pluginName: string;
|
|
263
|
+
stack: string;
|
|
264
|
+
fileLocation: string;
|
|
265
|
+
lineNumber: number;
|
|
266
|
+
columnNumber: number;
|
|
267
|
+
}[] | undefined;
|
|
268
|
+
warnings?: {
|
|
269
|
+
message: string;
|
|
270
|
+
pluginName: string;
|
|
271
|
+
stack: string;
|
|
272
|
+
fileLocation: string;
|
|
273
|
+
lineNumber: number;
|
|
274
|
+
columnNumber: number;
|
|
275
|
+
}[] | undefined;
|
|
276
|
+
}>;
|
|
91
277
|
taskRunner: import("./utilities/TaskRunner.js").TaskRunner;
|
|
92
278
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
93
279
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -101,7 +287,38 @@ export declare const appRouter: import("@trpc/server").CreateRouterInner<import(
|
|
|
101
287
|
_ctx_out: {
|
|
102
288
|
session: import("./index.js").Session;
|
|
103
289
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
104
|
-
allTasks: Map<string,
|
|
290
|
+
allTasks: Map<string, {
|
|
291
|
+
id: string;
|
|
292
|
+
startTime: number;
|
|
293
|
+
status?: "pending" | "complete" | undefined;
|
|
294
|
+
name?: string | undefined;
|
|
295
|
+
inputPath?: string | undefined;
|
|
296
|
+
outputPath?: string | undefined;
|
|
297
|
+
timings?: {
|
|
298
|
+
name: string;
|
|
299
|
+
start: number;
|
|
300
|
+
end?: number | undefined;
|
|
301
|
+
threwException?: boolean | undefined;
|
|
302
|
+
}[] | undefined;
|
|
303
|
+
durationMilliseconds?: number | undefined;
|
|
304
|
+
lastUpdated?: number | undefined;
|
|
305
|
+
errors?: {
|
|
306
|
+
message: string;
|
|
307
|
+
pluginName: string;
|
|
308
|
+
stack: string;
|
|
309
|
+
fileLocation: string;
|
|
310
|
+
lineNumber: number;
|
|
311
|
+
columnNumber: number;
|
|
312
|
+
}[] | undefined;
|
|
313
|
+
warnings?: {
|
|
314
|
+
message: string;
|
|
315
|
+
pluginName: string;
|
|
316
|
+
stack: string;
|
|
317
|
+
fileLocation: string;
|
|
318
|
+
lineNumber: number;
|
|
319
|
+
columnNumber: number;
|
|
320
|
+
}[] | undefined;
|
|
321
|
+
}>;
|
|
105
322
|
taskRunner: import("./utilities/TaskRunner.js").TaskRunner;
|
|
106
323
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
107
324
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -127,7 +344,38 @@ export declare const appRouter: import("@trpc/server").CreateRouterInner<import(
|
|
|
127
344
|
ctx: {
|
|
128
345
|
session: import("./index.js").Session;
|
|
129
346
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
130
|
-
allTasks: Map<string,
|
|
347
|
+
allTasks: Map<string, {
|
|
348
|
+
id: string;
|
|
349
|
+
startTime: number;
|
|
350
|
+
status?: "pending" | "complete" | undefined;
|
|
351
|
+
name?: string | undefined;
|
|
352
|
+
inputPath?: string | undefined;
|
|
353
|
+
outputPath?: string | undefined;
|
|
354
|
+
timings?: {
|
|
355
|
+
name: string;
|
|
356
|
+
start: number;
|
|
357
|
+
end?: number | undefined;
|
|
358
|
+
threwException?: boolean | undefined;
|
|
359
|
+
}[] | undefined;
|
|
360
|
+
durationMilliseconds?: number | undefined;
|
|
361
|
+
lastUpdated?: number | undefined;
|
|
362
|
+
errors?: {
|
|
363
|
+
message: string;
|
|
364
|
+
pluginName: string;
|
|
365
|
+
stack: string;
|
|
366
|
+
fileLocation: string;
|
|
367
|
+
lineNumber: number;
|
|
368
|
+
columnNumber: number;
|
|
369
|
+
}[] | undefined;
|
|
370
|
+
warnings?: {
|
|
371
|
+
message: string;
|
|
372
|
+
pluginName: string;
|
|
373
|
+
stack: string;
|
|
374
|
+
fileLocation: string;
|
|
375
|
+
lineNumber: number;
|
|
376
|
+
columnNumber: number;
|
|
377
|
+
}[] | undefined;
|
|
378
|
+
}>;
|
|
131
379
|
taskRunner: import("./utilities/TaskRunner.js").TaskRunner;
|
|
132
380
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
133
381
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -140,7 +388,38 @@ export declare const appRouter: import("@trpc/server").CreateRouterInner<import(
|
|
|
140
388
|
_ctx_out: {
|
|
141
389
|
session: import("./index.js").Session;
|
|
142
390
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
143
|
-
allTasks: Map<string,
|
|
391
|
+
allTasks: Map<string, {
|
|
392
|
+
id: string;
|
|
393
|
+
startTime: number;
|
|
394
|
+
status?: "pending" | "complete" | undefined;
|
|
395
|
+
name?: string | undefined;
|
|
396
|
+
inputPath?: string | undefined;
|
|
397
|
+
outputPath?: string | undefined;
|
|
398
|
+
timings?: {
|
|
399
|
+
name: string;
|
|
400
|
+
start: number;
|
|
401
|
+
end?: number | undefined;
|
|
402
|
+
threwException?: boolean | undefined;
|
|
403
|
+
}[] | undefined;
|
|
404
|
+
durationMilliseconds?: number | undefined;
|
|
405
|
+
lastUpdated?: number | undefined;
|
|
406
|
+
errors?: {
|
|
407
|
+
message: string;
|
|
408
|
+
pluginName: string;
|
|
409
|
+
stack: string;
|
|
410
|
+
fileLocation: string;
|
|
411
|
+
lineNumber: number;
|
|
412
|
+
columnNumber: number;
|
|
413
|
+
}[] | undefined;
|
|
414
|
+
warnings?: {
|
|
415
|
+
message: string;
|
|
416
|
+
pluginName: string;
|
|
417
|
+
stack: string;
|
|
418
|
+
fileLocation: string;
|
|
419
|
+
lineNumber: number;
|
|
420
|
+
columnNumber: number;
|
|
421
|
+
}[] | undefined;
|
|
422
|
+
}>;
|
|
144
423
|
taskRunner: import("./utilities/TaskRunner.js").TaskRunner;
|
|
145
424
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
146
425
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -157,7 +436,38 @@ export declare const appRouter: import("@trpc/server").CreateRouterInner<import(
|
|
|
157
436
|
ctx: {
|
|
158
437
|
session: import("./index.js").Session;
|
|
159
438
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
160
|
-
allTasks: Map<string,
|
|
439
|
+
allTasks: Map<string, {
|
|
440
|
+
id: string;
|
|
441
|
+
startTime: number;
|
|
442
|
+
status?: "pending" | "complete" | undefined;
|
|
443
|
+
name?: string | undefined;
|
|
444
|
+
inputPath?: string | undefined;
|
|
445
|
+
outputPath?: string | undefined;
|
|
446
|
+
timings?: {
|
|
447
|
+
name: string;
|
|
448
|
+
start: number;
|
|
449
|
+
end?: number | undefined;
|
|
450
|
+
threwException?: boolean | undefined;
|
|
451
|
+
}[] | undefined;
|
|
452
|
+
durationMilliseconds?: number | undefined;
|
|
453
|
+
lastUpdated?: number | undefined;
|
|
454
|
+
errors?: {
|
|
455
|
+
message: string;
|
|
456
|
+
pluginName: string;
|
|
457
|
+
stack: string;
|
|
458
|
+
fileLocation: string;
|
|
459
|
+
lineNumber: number;
|
|
460
|
+
columnNumber: number;
|
|
461
|
+
}[] | undefined;
|
|
462
|
+
warnings?: {
|
|
463
|
+
message: string;
|
|
464
|
+
pluginName: string;
|
|
465
|
+
stack: string;
|
|
466
|
+
fileLocation: string;
|
|
467
|
+
lineNumber: number;
|
|
468
|
+
columnNumber: number;
|
|
469
|
+
}[] | undefined;
|
|
470
|
+
}>;
|
|
161
471
|
taskRunner: import("./utilities/TaskRunner.js").TaskRunner;
|
|
162
472
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
163
473
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -171,7 +481,38 @@ export declare const appRouter: import("@trpc/server").CreateRouterInner<import(
|
|
|
171
481
|
_ctx_out: {
|
|
172
482
|
session: import("./index.js").Session;
|
|
173
483
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
174
|
-
allTasks: Map<string,
|
|
484
|
+
allTasks: Map<string, {
|
|
485
|
+
id: string;
|
|
486
|
+
startTime: number;
|
|
487
|
+
status?: "pending" | "complete" | undefined;
|
|
488
|
+
name?: string | undefined;
|
|
489
|
+
inputPath?: string | undefined;
|
|
490
|
+
outputPath?: string | undefined;
|
|
491
|
+
timings?: {
|
|
492
|
+
name: string;
|
|
493
|
+
start: number;
|
|
494
|
+
end?: number | undefined;
|
|
495
|
+
threwException?: boolean | undefined;
|
|
496
|
+
}[] | undefined;
|
|
497
|
+
durationMilliseconds?: number | undefined;
|
|
498
|
+
lastUpdated?: number | undefined;
|
|
499
|
+
errors?: {
|
|
500
|
+
message: string;
|
|
501
|
+
pluginName: string;
|
|
502
|
+
stack: string;
|
|
503
|
+
fileLocation: string;
|
|
504
|
+
lineNumber: number;
|
|
505
|
+
columnNumber: number;
|
|
506
|
+
}[] | undefined;
|
|
507
|
+
warnings?: {
|
|
508
|
+
message: string;
|
|
509
|
+
pluginName: string;
|
|
510
|
+
stack: string;
|
|
511
|
+
fileLocation: string;
|
|
512
|
+
lineNumber: number;
|
|
513
|
+
columnNumber: number;
|
|
514
|
+
}[] | undefined;
|
|
515
|
+
}>;
|
|
175
516
|
taskRunner: import("./utilities/TaskRunner.js").TaskRunner;
|
|
176
517
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
177
518
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -193,7 +534,38 @@ export declare const appRouter: import("@trpc/server").CreateRouterInner<import(
|
|
|
193
534
|
ctx: {
|
|
194
535
|
session: import("./index.js").Session;
|
|
195
536
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
196
|
-
allTasks: Map<string,
|
|
537
|
+
allTasks: Map<string, {
|
|
538
|
+
id: string;
|
|
539
|
+
startTime: number;
|
|
540
|
+
status?: "pending" | "complete" | undefined;
|
|
541
|
+
name?: string | undefined;
|
|
542
|
+
inputPath?: string | undefined;
|
|
543
|
+
outputPath?: string | undefined;
|
|
544
|
+
timings?: {
|
|
545
|
+
name: string;
|
|
546
|
+
start: number;
|
|
547
|
+
end?: number | undefined;
|
|
548
|
+
threwException?: boolean | undefined;
|
|
549
|
+
}[] | undefined;
|
|
550
|
+
durationMilliseconds?: number | undefined;
|
|
551
|
+
lastUpdated?: number | undefined;
|
|
552
|
+
errors?: {
|
|
553
|
+
message: string;
|
|
554
|
+
pluginName: string;
|
|
555
|
+
stack: string;
|
|
556
|
+
fileLocation: string;
|
|
557
|
+
lineNumber: number;
|
|
558
|
+
columnNumber: number;
|
|
559
|
+
}[] | undefined;
|
|
560
|
+
warnings?: {
|
|
561
|
+
message: string;
|
|
562
|
+
pluginName: string;
|
|
563
|
+
stack: string;
|
|
564
|
+
fileLocation: string;
|
|
565
|
+
lineNumber: number;
|
|
566
|
+
columnNumber: number;
|
|
567
|
+
}[] | undefined;
|
|
568
|
+
}>;
|
|
197
569
|
taskRunner: import("./utilities/TaskRunner.js").TaskRunner;
|
|
198
570
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
199
571
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -207,19 +579,50 @@ export declare const appRouter: import("@trpc/server").CreateRouterInner<import(
|
|
|
207
579
|
_ctx_out: {
|
|
208
580
|
session: import("./index.js").Session;
|
|
209
581
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
210
|
-
allTasks: Map<string,
|
|
582
|
+
allTasks: Map<string, {
|
|
583
|
+
id: string;
|
|
584
|
+
startTime: number;
|
|
585
|
+
status?: "pending" | "complete" | undefined;
|
|
586
|
+
name?: string | undefined;
|
|
587
|
+
inputPath?: string | undefined;
|
|
588
|
+
outputPath?: string | undefined;
|
|
589
|
+
timings?: {
|
|
590
|
+
name: string;
|
|
591
|
+
start: number;
|
|
592
|
+
end?: number | undefined;
|
|
593
|
+
threwException?: boolean | undefined;
|
|
594
|
+
}[] | undefined;
|
|
595
|
+
durationMilliseconds?: number | undefined;
|
|
596
|
+
lastUpdated?: number | undefined;
|
|
597
|
+
errors?: {
|
|
598
|
+
message: string;
|
|
599
|
+
pluginName: string;
|
|
600
|
+
stack: string;
|
|
601
|
+
fileLocation: string;
|
|
602
|
+
lineNumber: number;
|
|
603
|
+
columnNumber: number;
|
|
604
|
+
}[] | undefined;
|
|
605
|
+
warnings?: {
|
|
606
|
+
message: string;
|
|
607
|
+
pluginName: string;
|
|
608
|
+
stack: string;
|
|
609
|
+
fileLocation: string;
|
|
610
|
+
lineNumber: number;
|
|
611
|
+
columnNumber: number;
|
|
612
|
+
}[] | undefined;
|
|
613
|
+
}>;
|
|
211
614
|
taskRunner: import("./utilities/TaskRunner.js").TaskRunner;
|
|
212
615
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
213
616
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
214
617
|
packages: import("@ms-cloudpack/bundler-types").PackageDefinitionsCache;
|
|
215
618
|
};
|
|
216
619
|
_input_in: {
|
|
217
|
-
metric: string;
|
|
218
620
|
value: number;
|
|
621
|
+
metric: string;
|
|
219
622
|
};
|
|
220
623
|
_input_out: {
|
|
221
|
-
metric: string;
|
|
222
624
|
value: number;
|
|
625
|
+
metric: string;
|
|
223
626
|
};
|
|
224
627
|
_output_in: typeof import("@trpc/server").unsetMarker;
|
|
225
628
|
_output_out: typeof import("@trpc/server").unsetMarker;
|
|
@@ -229,7 +632,38 @@ export declare const appRouter: import("@trpc/server").CreateRouterInner<import(
|
|
|
229
632
|
ctx: {
|
|
230
633
|
session: import("./index.js").Session;
|
|
231
634
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
232
|
-
allTasks: Map<string,
|
|
635
|
+
allTasks: Map<string, {
|
|
636
|
+
id: string;
|
|
637
|
+
startTime: number;
|
|
638
|
+
status?: "pending" | "complete" | undefined;
|
|
639
|
+
name?: string | undefined;
|
|
640
|
+
inputPath?: string | undefined;
|
|
641
|
+
outputPath?: string | undefined;
|
|
642
|
+
timings?: {
|
|
643
|
+
name: string;
|
|
644
|
+
start: number;
|
|
645
|
+
end?: number | undefined;
|
|
646
|
+
threwException?: boolean | undefined;
|
|
647
|
+
}[] | undefined;
|
|
648
|
+
durationMilliseconds?: number | undefined;
|
|
649
|
+
lastUpdated?: number | undefined;
|
|
650
|
+
errors?: {
|
|
651
|
+
message: string;
|
|
652
|
+
pluginName: string;
|
|
653
|
+
stack: string;
|
|
654
|
+
fileLocation: string;
|
|
655
|
+
lineNumber: number;
|
|
656
|
+
columnNumber: number;
|
|
657
|
+
}[] | undefined;
|
|
658
|
+
warnings?: {
|
|
659
|
+
message: string;
|
|
660
|
+
pluginName: string;
|
|
661
|
+
stack: string;
|
|
662
|
+
fileLocation: string;
|
|
663
|
+
lineNumber: number;
|
|
664
|
+
columnNumber: number;
|
|
665
|
+
}[] | undefined;
|
|
666
|
+
}>;
|
|
233
667
|
taskRunner: import("./utilities/TaskRunner.js").TaskRunner;
|
|
234
668
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
235
669
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -242,7 +676,38 @@ export declare const appRouter: import("@trpc/server").CreateRouterInner<import(
|
|
|
242
676
|
_ctx_out: {
|
|
243
677
|
session: import("./index.js").Session;
|
|
244
678
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
245
|
-
allTasks: Map<string,
|
|
679
|
+
allTasks: Map<string, {
|
|
680
|
+
id: string;
|
|
681
|
+
startTime: number;
|
|
682
|
+
status?: "pending" | "complete" | undefined;
|
|
683
|
+
name?: string | undefined;
|
|
684
|
+
inputPath?: string | undefined;
|
|
685
|
+
outputPath?: string | undefined;
|
|
686
|
+
timings?: {
|
|
687
|
+
name: string;
|
|
688
|
+
start: number;
|
|
689
|
+
end?: number | undefined;
|
|
690
|
+
threwException?: boolean | undefined;
|
|
691
|
+
}[] | undefined;
|
|
692
|
+
durationMilliseconds?: number | undefined;
|
|
693
|
+
lastUpdated?: number | undefined;
|
|
694
|
+
errors?: {
|
|
695
|
+
message: string;
|
|
696
|
+
pluginName: string;
|
|
697
|
+
stack: string;
|
|
698
|
+
fileLocation: string;
|
|
699
|
+
lineNumber: number;
|
|
700
|
+
columnNumber: number;
|
|
701
|
+
}[] | undefined;
|
|
702
|
+
warnings?: {
|
|
703
|
+
message: string;
|
|
704
|
+
pluginName: string;
|
|
705
|
+
stack: string;
|
|
706
|
+
fileLocation: string;
|
|
707
|
+
lineNumber: number;
|
|
708
|
+
columnNumber: number;
|
|
709
|
+
}[] | undefined;
|
|
710
|
+
}>;
|
|
246
711
|
taskRunner: import("./utilities/TaskRunner.js").TaskRunner;
|
|
247
712
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
248
713
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -259,7 +724,38 @@ export declare const appRouter: import("@trpc/server").CreateRouterInner<import(
|
|
|
259
724
|
ctx: {
|
|
260
725
|
session: import("./index.js").Session;
|
|
261
726
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
262
|
-
allTasks: Map<string,
|
|
727
|
+
allTasks: Map<string, {
|
|
728
|
+
id: string;
|
|
729
|
+
startTime: number;
|
|
730
|
+
status?: "pending" | "complete" | undefined;
|
|
731
|
+
name?: string | undefined;
|
|
732
|
+
inputPath?: string | undefined;
|
|
733
|
+
outputPath?: string | undefined;
|
|
734
|
+
timings?: {
|
|
735
|
+
name: string;
|
|
736
|
+
start: number;
|
|
737
|
+
end?: number | undefined;
|
|
738
|
+
threwException?: boolean | undefined;
|
|
739
|
+
}[] | undefined;
|
|
740
|
+
durationMilliseconds?: number | undefined;
|
|
741
|
+
lastUpdated?: number | undefined;
|
|
742
|
+
errors?: {
|
|
743
|
+
message: string;
|
|
744
|
+
pluginName: string;
|
|
745
|
+
stack: string;
|
|
746
|
+
fileLocation: string;
|
|
747
|
+
lineNumber: number;
|
|
748
|
+
columnNumber: number;
|
|
749
|
+
}[] | undefined;
|
|
750
|
+
warnings?: {
|
|
751
|
+
message: string;
|
|
752
|
+
pluginName: string;
|
|
753
|
+
stack: string;
|
|
754
|
+
fileLocation: string;
|
|
755
|
+
lineNumber: number;
|
|
756
|
+
columnNumber: number;
|
|
757
|
+
}[] | undefined;
|
|
758
|
+
}>;
|
|
263
759
|
taskRunner: import("./utilities/TaskRunner.js").TaskRunner;
|
|
264
760
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
265
761
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -273,7 +769,38 @@ export declare const appRouter: import("@trpc/server").CreateRouterInner<import(
|
|
|
273
769
|
_ctx_out: {
|
|
274
770
|
session: import("./index.js").Session;
|
|
275
771
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
276
|
-
allTasks: Map<string,
|
|
772
|
+
allTasks: Map<string, {
|
|
773
|
+
id: string;
|
|
774
|
+
startTime: number;
|
|
775
|
+
status?: "pending" | "complete" | undefined;
|
|
776
|
+
name?: string | undefined;
|
|
777
|
+
inputPath?: string | undefined;
|
|
778
|
+
outputPath?: string | undefined;
|
|
779
|
+
timings?: {
|
|
780
|
+
name: string;
|
|
781
|
+
start: number;
|
|
782
|
+
end?: number | undefined;
|
|
783
|
+
threwException?: boolean | undefined;
|
|
784
|
+
}[] | undefined;
|
|
785
|
+
durationMilliseconds?: number | undefined;
|
|
786
|
+
lastUpdated?: number | undefined;
|
|
787
|
+
errors?: {
|
|
788
|
+
message: string;
|
|
789
|
+
pluginName: string;
|
|
790
|
+
stack: string;
|
|
791
|
+
fileLocation: string;
|
|
792
|
+
lineNumber: number;
|
|
793
|
+
columnNumber: number;
|
|
794
|
+
}[] | undefined;
|
|
795
|
+
warnings?: {
|
|
796
|
+
message: string;
|
|
797
|
+
pluginName: string;
|
|
798
|
+
stack: string;
|
|
799
|
+
fileLocation: string;
|
|
800
|
+
lineNumber: number;
|
|
801
|
+
columnNumber: number;
|
|
802
|
+
}[] | undefined;
|
|
803
|
+
}>;
|
|
277
804
|
taskRunner: import("./utilities/TaskRunner.js").TaskRunner;
|
|
278
805
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
279
806
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -295,7 +822,38 @@ export declare const appRouter: import("@trpc/server").CreateRouterInner<import(
|
|
|
295
822
|
ctx: {
|
|
296
823
|
session: import("./index.js").Session;
|
|
297
824
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
298
|
-
allTasks: Map<string,
|
|
825
|
+
allTasks: Map<string, {
|
|
826
|
+
id: string;
|
|
827
|
+
startTime: number;
|
|
828
|
+
status?: "pending" | "complete" | undefined;
|
|
829
|
+
name?: string | undefined;
|
|
830
|
+
inputPath?: string | undefined;
|
|
831
|
+
outputPath?: string | undefined;
|
|
832
|
+
timings?: {
|
|
833
|
+
name: string;
|
|
834
|
+
start: number;
|
|
835
|
+
end?: number | undefined;
|
|
836
|
+
threwException?: boolean | undefined;
|
|
837
|
+
}[] | undefined;
|
|
838
|
+
durationMilliseconds?: number | undefined;
|
|
839
|
+
lastUpdated?: number | undefined;
|
|
840
|
+
errors?: {
|
|
841
|
+
message: string;
|
|
842
|
+
pluginName: string;
|
|
843
|
+
stack: string;
|
|
844
|
+
fileLocation: string;
|
|
845
|
+
lineNumber: number;
|
|
846
|
+
columnNumber: number;
|
|
847
|
+
}[] | undefined;
|
|
848
|
+
warnings?: {
|
|
849
|
+
message: string;
|
|
850
|
+
pluginName: string;
|
|
851
|
+
stack: string;
|
|
852
|
+
fileLocation: string;
|
|
853
|
+
lineNumber: number;
|
|
854
|
+
columnNumber: number;
|
|
855
|
+
}[] | undefined;
|
|
856
|
+
}>;
|
|
299
857
|
taskRunner: import("./utilities/TaskRunner.js").TaskRunner;
|
|
300
858
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
301
859
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
@@ -309,7 +867,38 @@ export declare const appRouter: import("@trpc/server").CreateRouterInner<import(
|
|
|
309
867
|
_ctx_out: {
|
|
310
868
|
session: import("./index.js").Session;
|
|
311
869
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
312
|
-
allTasks: Map<string,
|
|
870
|
+
allTasks: Map<string, {
|
|
871
|
+
id: string;
|
|
872
|
+
startTime: number;
|
|
873
|
+
status?: "pending" | "complete" | undefined;
|
|
874
|
+
name?: string | undefined;
|
|
875
|
+
inputPath?: string | undefined;
|
|
876
|
+
outputPath?: string | undefined;
|
|
877
|
+
timings?: {
|
|
878
|
+
name: string;
|
|
879
|
+
start: number;
|
|
880
|
+
end?: number | undefined;
|
|
881
|
+
threwException?: boolean | undefined;
|
|
882
|
+
}[] | undefined;
|
|
883
|
+
durationMilliseconds?: number | undefined;
|
|
884
|
+
lastUpdated?: number | undefined;
|
|
885
|
+
errors?: {
|
|
886
|
+
message: string;
|
|
887
|
+
pluginName: string;
|
|
888
|
+
stack: string;
|
|
889
|
+
fileLocation: string;
|
|
890
|
+
lineNumber: number;
|
|
891
|
+
columnNumber: number;
|
|
892
|
+
}[] | undefined;
|
|
893
|
+
warnings?: {
|
|
894
|
+
message: string;
|
|
895
|
+
pluginName: string;
|
|
896
|
+
stack: string;
|
|
897
|
+
fileLocation: string;
|
|
898
|
+
lineNumber: number;
|
|
899
|
+
columnNumber: number;
|
|
900
|
+
}[] | undefined;
|
|
901
|
+
}>;
|
|
313
902
|
taskRunner: import("./utilities/TaskRunner.js").TaskRunner;
|
|
314
903
|
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
315
904
|
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|