@ms-cloudpack/api-server 0.34.5 → 0.35.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 +2 -2
- package/lib/apis/ensurePackageBundled.d.ts +2 -2
- package/lib/apis/getData.d.ts +2 -2
- package/lib/apis/getSessionId.d.ts +2 -2
- package/lib/apis/onDataChanged.d.ts +2 -2
- package/lib/apis/openCodeEditor.d.ts +2 -2
- package/lib/apis/openConfigEditor.d.ts +2 -2
- package/lib/apis/openFilePath.d.ts +2 -2
- package/lib/apis/reportMetric.d.ts +2 -2
- package/lib/apis/syncDownload.d.ts +2 -2
- package/lib/apis/syncUpload.d.ts +2 -2
- package/lib/apis/validatePackageOverride.d.ts +2 -2
- package/lib/data/busSources.d.ts +5 -161
- package/lib/data/busSources.d.ts.map +1 -1
- package/lib/index.browser.d.ts +1 -14
- package/lib/index.browser.d.ts.map +1 -1
- package/lib/index.browser.js +1 -1
- package/lib/index.browser.js.map +1 -1
- package/lib/trpc/common.d.ts +3 -3
- package/lib/trpc/createAppRouter.d.ts +25 -25
- package/lib/trpc/createCloudpackServer.d.ts +1 -1
- package/lib/trpc/createRouterFromApis.d.ts +1 -1
- package/lib/types/TaskDescription.d.ts +3 -119
- package/lib/types/TaskDescription.d.ts.map +1 -1
- package/lib/types/TaskEndDescription.d.ts +0 -116
- package/lib/types/TaskEndDescription.d.ts.map +1 -1
- package/lib/types/TaskMessage.d.ts +0 -57
- package/lib/types/TaskMessage.d.ts.map +1 -1
- package/lib/types/TaskMessage.js +0 -2
- package/lib/types/TaskMessage.js.map +1 -1
- package/lib/types/TaskMessageLocation.d.ts +0 -9
- package/lib/types/TaskMessageLocation.d.ts.map +1 -1
- package/lib/types/TaskMessageLocation.js +0 -3
- package/lib/types/TaskMessageLocation.js.map +1 -1
- package/lib/types/TaskResponse.d.ts +0 -148
- package/lib/types/TaskResponse.d.ts.map +1 -1
- package/lib/types/TaskResult.d.ts +0 -116
- package/lib/types/TaskResult.d.ts.map +1 -1
- package/package.json +8 -8
package/lib/data/busSources.d.ts
CHANGED
|
@@ -30,10 +30,10 @@ export declare const taskStatsSource: import("@ms-cloudpack/data-bus").DataBusPa
|
|
|
30
30
|
*/
|
|
31
31
|
export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPath<z.ZodObject<{
|
|
32
32
|
tasks: z.ZodArray<z.ZodObject<{
|
|
33
|
+
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"pending">, z.ZodLiteral<"complete">]>>;
|
|
33
34
|
name: z.ZodOptional<z.ZodString>;
|
|
34
35
|
inputPath: z.ZodOptional<z.ZodString>;
|
|
35
36
|
outputPath: z.ZodOptional<z.ZodString>;
|
|
36
|
-
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"pending">, z.ZodLiteral<"complete">]>>;
|
|
37
37
|
timings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
38
38
|
name: z.ZodString;
|
|
39
39
|
start: z.ZodNumber;
|
|
@@ -55,32 +55,19 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
55
55
|
lastUpdated: z.ZodOptional<z.ZodNumber>;
|
|
56
56
|
id: z.ZodString;
|
|
57
57
|
errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
58
|
-
pluginName: z.ZodOptional<z.ZodString>;
|
|
59
|
-
type: z.ZodOptional<z.ZodString>;
|
|
60
58
|
text: z.ZodString;
|
|
61
59
|
location: z.ZodOptional<z.ZodObject<{
|
|
62
60
|
file: z.ZodString;
|
|
63
61
|
line: z.ZodNumber;
|
|
64
62
|
column: z.ZodNumber;
|
|
65
|
-
length: z.ZodOptional<z.ZodNumber>;
|
|
66
|
-
lineText: z.ZodOptional<z.ZodString>; /**
|
|
67
|
-
* Used for tracking the reload count.
|
|
68
|
-
*/
|
|
69
|
-
suggestion: z.ZodOptional<z.ZodString>;
|
|
70
63
|
}, "strip", z.ZodTypeAny, {
|
|
71
64
|
file: string;
|
|
72
65
|
line: number;
|
|
73
66
|
column: number;
|
|
74
|
-
length?: number | undefined;
|
|
75
|
-
lineText?: string | undefined;
|
|
76
|
-
suggestion?: string | undefined;
|
|
77
67
|
}, {
|
|
78
68
|
file: string;
|
|
79
69
|
line: number;
|
|
80
70
|
column: number;
|
|
81
|
-
length?: number | undefined;
|
|
82
|
-
lineText?: string | undefined;
|
|
83
|
-
suggestion?: string | undefined;
|
|
84
71
|
}>>;
|
|
85
72
|
notes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
86
73
|
text: z.ZodString;
|
|
@@ -88,25 +75,14 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
88
75
|
file: z.ZodString;
|
|
89
76
|
line: z.ZodNumber;
|
|
90
77
|
column: z.ZodNumber;
|
|
91
|
-
length: z.ZodOptional<z.ZodNumber>;
|
|
92
|
-
lineText: z.ZodOptional<z.ZodString>; /**
|
|
93
|
-
* Used for tracking the reload count.
|
|
94
|
-
*/
|
|
95
|
-
suggestion: z.ZodOptional<z.ZodString>;
|
|
96
78
|
}, "strip", z.ZodTypeAny, {
|
|
97
79
|
file: string;
|
|
98
80
|
line: number;
|
|
99
81
|
column: number;
|
|
100
|
-
length?: number | undefined;
|
|
101
|
-
lineText?: string | undefined;
|
|
102
|
-
suggestion?: string | undefined;
|
|
103
82
|
}, {
|
|
104
83
|
file: string;
|
|
105
84
|
line: number;
|
|
106
85
|
column: number;
|
|
107
|
-
length?: number | undefined;
|
|
108
|
-
lineText?: string | undefined;
|
|
109
|
-
suggestion?: string | undefined;
|
|
110
86
|
}>>;
|
|
111
87
|
}, "strip", z.ZodTypeAny, {
|
|
112
88
|
text: string;
|
|
@@ -114,9 +90,6 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
114
90
|
file: string;
|
|
115
91
|
line: number;
|
|
116
92
|
column: number;
|
|
117
|
-
length?: number | undefined;
|
|
118
|
-
lineText?: string | undefined;
|
|
119
|
-
suggestion?: string | undefined;
|
|
120
93
|
} | undefined;
|
|
121
94
|
}, {
|
|
122
95
|
text: string;
|
|
@@ -124,22 +97,14 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
124
97
|
file: string;
|
|
125
98
|
line: number;
|
|
126
99
|
column: number;
|
|
127
|
-
length?: number | undefined;
|
|
128
|
-
lineText?: string | undefined;
|
|
129
|
-
suggestion?: string | undefined;
|
|
130
100
|
} | undefined;
|
|
131
101
|
}>, "many">>;
|
|
132
102
|
}, "strip", z.ZodTypeAny, {
|
|
133
103
|
text: string;
|
|
134
|
-
pluginName?: string | undefined;
|
|
135
|
-
type?: string | undefined;
|
|
136
104
|
location?: {
|
|
137
105
|
file: string;
|
|
138
106
|
line: number;
|
|
139
107
|
column: number;
|
|
140
|
-
length?: number | undefined;
|
|
141
|
-
lineText?: string | undefined;
|
|
142
|
-
suggestion?: string | undefined;
|
|
143
108
|
} | undefined;
|
|
144
109
|
notes?: {
|
|
145
110
|
text: string;
|
|
@@ -147,22 +112,14 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
147
112
|
file: string;
|
|
148
113
|
line: number;
|
|
149
114
|
column: number;
|
|
150
|
-
length?: number | undefined;
|
|
151
|
-
lineText?: string | undefined;
|
|
152
|
-
suggestion?: string | undefined;
|
|
153
115
|
} | undefined;
|
|
154
116
|
}[] | undefined;
|
|
155
117
|
}, {
|
|
156
118
|
text: string;
|
|
157
|
-
pluginName?: string | undefined;
|
|
158
|
-
type?: string | undefined;
|
|
159
119
|
location?: {
|
|
160
120
|
file: string;
|
|
161
121
|
line: number;
|
|
162
122
|
column: number;
|
|
163
|
-
length?: number | undefined;
|
|
164
|
-
lineText?: string | undefined;
|
|
165
|
-
suggestion?: string | undefined;
|
|
166
123
|
} | undefined;
|
|
167
124
|
notes?: {
|
|
168
125
|
text: string;
|
|
@@ -170,39 +127,23 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
170
127
|
file: string;
|
|
171
128
|
line: number;
|
|
172
129
|
column: number;
|
|
173
|
-
length?: number | undefined;
|
|
174
|
-
lineText?: string | undefined;
|
|
175
|
-
suggestion?: string | undefined;
|
|
176
130
|
} | undefined;
|
|
177
131
|
}[] | undefined;
|
|
178
132
|
}>, "many">>;
|
|
179
133
|
warnings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
180
|
-
pluginName: z.ZodOptional<z.ZodString>;
|
|
181
|
-
type: z.ZodOptional<z.ZodString>;
|
|
182
134
|
text: z.ZodString;
|
|
183
135
|
location: z.ZodOptional<z.ZodObject<{
|
|
184
136
|
file: z.ZodString;
|
|
185
137
|
line: z.ZodNumber;
|
|
186
138
|
column: z.ZodNumber;
|
|
187
|
-
length: z.ZodOptional<z.ZodNumber>;
|
|
188
|
-
lineText: z.ZodOptional<z.ZodString>; /**
|
|
189
|
-
* Used for tracking the reload count.
|
|
190
|
-
*/
|
|
191
|
-
suggestion: z.ZodOptional<z.ZodString>;
|
|
192
139
|
}, "strip", z.ZodTypeAny, {
|
|
193
140
|
file: string;
|
|
194
141
|
line: number;
|
|
195
142
|
column: number;
|
|
196
|
-
length?: number | undefined;
|
|
197
|
-
lineText?: string | undefined;
|
|
198
|
-
suggestion?: string | undefined;
|
|
199
143
|
}, {
|
|
200
144
|
file: string;
|
|
201
145
|
line: number;
|
|
202
146
|
column: number;
|
|
203
|
-
length?: number | undefined;
|
|
204
|
-
lineText?: string | undefined;
|
|
205
|
-
suggestion?: string | undefined;
|
|
206
147
|
}>>;
|
|
207
148
|
notes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
208
149
|
text: z.ZodString;
|
|
@@ -210,25 +151,14 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
210
151
|
file: z.ZodString;
|
|
211
152
|
line: z.ZodNumber;
|
|
212
153
|
column: z.ZodNumber;
|
|
213
|
-
length: z.ZodOptional<z.ZodNumber>;
|
|
214
|
-
lineText: z.ZodOptional<z.ZodString>; /**
|
|
215
|
-
* Used for tracking the reload count.
|
|
216
|
-
*/
|
|
217
|
-
suggestion: z.ZodOptional<z.ZodString>;
|
|
218
154
|
}, "strip", z.ZodTypeAny, {
|
|
219
155
|
file: string;
|
|
220
156
|
line: number;
|
|
221
157
|
column: number;
|
|
222
|
-
length?: number | undefined;
|
|
223
|
-
lineText?: string | undefined;
|
|
224
|
-
suggestion?: string | undefined;
|
|
225
158
|
}, {
|
|
226
159
|
file: string;
|
|
227
160
|
line: number;
|
|
228
161
|
column: number;
|
|
229
|
-
length?: number | undefined;
|
|
230
|
-
lineText?: string | undefined;
|
|
231
|
-
suggestion?: string | undefined;
|
|
232
162
|
}>>;
|
|
233
163
|
}, "strip", z.ZodTypeAny, {
|
|
234
164
|
text: string;
|
|
@@ -236,9 +166,6 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
236
166
|
file: string;
|
|
237
167
|
line: number;
|
|
238
168
|
column: number;
|
|
239
|
-
length?: number | undefined;
|
|
240
|
-
lineText?: string | undefined;
|
|
241
|
-
suggestion?: string | undefined;
|
|
242
169
|
} | undefined;
|
|
243
170
|
}, {
|
|
244
171
|
text: string;
|
|
@@ -246,22 +173,14 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
246
173
|
file: string;
|
|
247
174
|
line: number;
|
|
248
175
|
column: number;
|
|
249
|
-
length?: number | undefined;
|
|
250
|
-
lineText?: string | undefined;
|
|
251
|
-
suggestion?: string | undefined;
|
|
252
176
|
} | undefined;
|
|
253
177
|
}>, "many">>;
|
|
254
178
|
}, "strip", z.ZodTypeAny, {
|
|
255
179
|
text: string;
|
|
256
|
-
pluginName?: string | undefined;
|
|
257
|
-
type?: string | undefined;
|
|
258
180
|
location?: {
|
|
259
181
|
file: string;
|
|
260
182
|
line: number;
|
|
261
183
|
column: number;
|
|
262
|
-
length?: number | undefined;
|
|
263
|
-
lineText?: string | undefined;
|
|
264
|
-
suggestion?: string | undefined;
|
|
265
184
|
} | undefined;
|
|
266
185
|
notes?: {
|
|
267
186
|
text: string;
|
|
@@ -269,22 +188,14 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
269
188
|
file: string;
|
|
270
189
|
line: number;
|
|
271
190
|
column: number;
|
|
272
|
-
length?: number | undefined;
|
|
273
|
-
lineText?: string | undefined;
|
|
274
|
-
suggestion?: string | undefined;
|
|
275
191
|
} | undefined;
|
|
276
192
|
}[] | undefined;
|
|
277
193
|
}, {
|
|
278
194
|
text: string;
|
|
279
|
-
pluginName?: string | undefined;
|
|
280
|
-
type?: string | undefined;
|
|
281
195
|
location?: {
|
|
282
196
|
file: string;
|
|
283
197
|
line: number;
|
|
284
198
|
column: number;
|
|
285
|
-
length?: number | undefined;
|
|
286
|
-
lineText?: string | undefined;
|
|
287
|
-
suggestion?: string | undefined;
|
|
288
199
|
} | undefined;
|
|
289
200
|
notes?: {
|
|
290
201
|
text: string;
|
|
@@ -292,19 +203,16 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
292
203
|
file: string;
|
|
293
204
|
line: number;
|
|
294
205
|
column: number;
|
|
295
|
-
length?: number | undefined;
|
|
296
|
-
lineText?: string | undefined;
|
|
297
|
-
suggestion?: string | undefined;
|
|
298
206
|
} | undefined;
|
|
299
207
|
}[] | undefined;
|
|
300
208
|
}>, "many">>;
|
|
301
209
|
}, "strip", z.ZodTypeAny, {
|
|
302
210
|
id: string;
|
|
303
211
|
startTime: number;
|
|
212
|
+
status?: "pending" | "complete" | undefined;
|
|
304
213
|
name?: string | undefined;
|
|
305
214
|
inputPath?: string | undefined;
|
|
306
215
|
outputPath?: string | undefined;
|
|
307
|
-
status?: "pending" | "complete" | undefined;
|
|
308
216
|
timings?: {
|
|
309
217
|
name: string;
|
|
310
218
|
start: number;
|
|
@@ -315,15 +223,10 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
315
223
|
lastUpdated?: number | undefined;
|
|
316
224
|
errors?: {
|
|
317
225
|
text: string;
|
|
318
|
-
pluginName?: string | undefined;
|
|
319
|
-
type?: string | undefined;
|
|
320
226
|
location?: {
|
|
321
227
|
file: string;
|
|
322
228
|
line: number;
|
|
323
229
|
column: number;
|
|
324
|
-
length?: number | undefined;
|
|
325
|
-
lineText?: string | undefined;
|
|
326
|
-
suggestion?: string | undefined;
|
|
327
230
|
} | undefined;
|
|
328
231
|
notes?: {
|
|
329
232
|
text: string;
|
|
@@ -331,23 +234,15 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
331
234
|
file: string;
|
|
332
235
|
line: number;
|
|
333
236
|
column: number;
|
|
334
|
-
length?: number | undefined;
|
|
335
|
-
lineText?: string | undefined;
|
|
336
|
-
suggestion?: string | undefined;
|
|
337
237
|
} | undefined;
|
|
338
238
|
}[] | undefined;
|
|
339
239
|
}[] | undefined;
|
|
340
240
|
warnings?: {
|
|
341
241
|
text: string;
|
|
342
|
-
pluginName?: string | undefined;
|
|
343
|
-
type?: string | undefined;
|
|
344
242
|
location?: {
|
|
345
243
|
file: string;
|
|
346
244
|
line: number;
|
|
347
245
|
column: number;
|
|
348
|
-
length?: number | undefined;
|
|
349
|
-
lineText?: string | undefined;
|
|
350
|
-
suggestion?: string | undefined;
|
|
351
246
|
} | undefined;
|
|
352
247
|
notes?: {
|
|
353
248
|
text: string;
|
|
@@ -355,19 +250,16 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
355
250
|
file: string;
|
|
356
251
|
line: number;
|
|
357
252
|
column: number;
|
|
358
|
-
length?: number | undefined;
|
|
359
|
-
lineText?: string | undefined;
|
|
360
|
-
suggestion?: string | undefined;
|
|
361
253
|
} | undefined;
|
|
362
254
|
}[] | undefined;
|
|
363
255
|
}[] | undefined;
|
|
364
256
|
}, {
|
|
365
257
|
id: string;
|
|
366
258
|
startTime: number;
|
|
259
|
+
status?: "pending" | "complete" | undefined;
|
|
367
260
|
name?: string | undefined;
|
|
368
261
|
inputPath?: string | undefined;
|
|
369
262
|
outputPath?: string | undefined;
|
|
370
|
-
status?: "pending" | "complete" | undefined;
|
|
371
263
|
timings?: {
|
|
372
264
|
name: string;
|
|
373
265
|
start: number;
|
|
@@ -378,15 +270,10 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
378
270
|
lastUpdated?: number | undefined;
|
|
379
271
|
errors?: {
|
|
380
272
|
text: string;
|
|
381
|
-
pluginName?: string | undefined;
|
|
382
|
-
type?: string | undefined;
|
|
383
273
|
location?: {
|
|
384
274
|
file: string;
|
|
385
275
|
line: number;
|
|
386
276
|
column: number;
|
|
387
|
-
length?: number | undefined;
|
|
388
|
-
lineText?: string | undefined;
|
|
389
|
-
suggestion?: string | undefined;
|
|
390
277
|
} | undefined;
|
|
391
278
|
notes?: {
|
|
392
279
|
text: string;
|
|
@@ -394,23 +281,15 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
394
281
|
file: string;
|
|
395
282
|
line: number;
|
|
396
283
|
column: number;
|
|
397
|
-
length?: number | undefined;
|
|
398
|
-
lineText?: string | undefined;
|
|
399
|
-
suggestion?: string | undefined;
|
|
400
284
|
} | undefined;
|
|
401
285
|
}[] | undefined;
|
|
402
286
|
}[] | undefined;
|
|
403
287
|
warnings?: {
|
|
404
288
|
text: string;
|
|
405
|
-
pluginName?: string | undefined;
|
|
406
|
-
type?: string | undefined;
|
|
407
289
|
location?: {
|
|
408
290
|
file: string;
|
|
409
291
|
line: number;
|
|
410
292
|
column: number;
|
|
411
|
-
length?: number | undefined;
|
|
412
|
-
lineText?: string | undefined;
|
|
413
|
-
suggestion?: string | undefined;
|
|
414
293
|
} | undefined;
|
|
415
294
|
notes?: {
|
|
416
295
|
text: string;
|
|
@@ -418,9 +297,6 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
418
297
|
file: string;
|
|
419
298
|
line: number;
|
|
420
299
|
column: number;
|
|
421
|
-
length?: number | undefined;
|
|
422
|
-
lineText?: string | undefined;
|
|
423
|
-
suggestion?: string | undefined;
|
|
424
300
|
} | undefined;
|
|
425
301
|
}[] | undefined;
|
|
426
302
|
}[] | undefined;
|
|
@@ -429,10 +305,10 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
429
305
|
tasks: {
|
|
430
306
|
id: string;
|
|
431
307
|
startTime: number;
|
|
308
|
+
status?: "pending" | "complete" | undefined;
|
|
432
309
|
name?: string | undefined;
|
|
433
310
|
inputPath?: string | undefined;
|
|
434
311
|
outputPath?: string | undefined;
|
|
435
|
-
status?: "pending" | "complete" | undefined;
|
|
436
312
|
timings?: {
|
|
437
313
|
name: string;
|
|
438
314
|
start: number;
|
|
@@ -443,15 +319,10 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
443
319
|
lastUpdated?: number | undefined;
|
|
444
320
|
errors?: {
|
|
445
321
|
text: string;
|
|
446
|
-
pluginName?: string | undefined;
|
|
447
|
-
type?: string | undefined;
|
|
448
322
|
location?: {
|
|
449
323
|
file: string;
|
|
450
324
|
line: number;
|
|
451
325
|
column: number;
|
|
452
|
-
length?: number | undefined;
|
|
453
|
-
lineText?: string | undefined;
|
|
454
|
-
suggestion?: string | undefined;
|
|
455
326
|
} | undefined;
|
|
456
327
|
notes?: {
|
|
457
328
|
text: string;
|
|
@@ -459,23 +330,15 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
459
330
|
file: string;
|
|
460
331
|
line: number;
|
|
461
332
|
column: number;
|
|
462
|
-
length?: number | undefined;
|
|
463
|
-
lineText?: string | undefined;
|
|
464
|
-
suggestion?: string | undefined;
|
|
465
333
|
} | undefined;
|
|
466
334
|
}[] | undefined;
|
|
467
335
|
}[] | undefined;
|
|
468
336
|
warnings?: {
|
|
469
337
|
text: string;
|
|
470
|
-
pluginName?: string | undefined;
|
|
471
|
-
type?: string | undefined;
|
|
472
338
|
location?: {
|
|
473
339
|
file: string;
|
|
474
340
|
line: number;
|
|
475
341
|
column: number;
|
|
476
|
-
length?: number | undefined;
|
|
477
|
-
lineText?: string | undefined;
|
|
478
|
-
suggestion?: string | undefined;
|
|
479
342
|
} | undefined;
|
|
480
343
|
notes?: {
|
|
481
344
|
text: string;
|
|
@@ -483,9 +346,6 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
483
346
|
file: string;
|
|
484
347
|
line: number;
|
|
485
348
|
column: number;
|
|
486
|
-
length?: number | undefined;
|
|
487
|
-
lineText?: string | undefined;
|
|
488
|
-
suggestion?: string | undefined;
|
|
489
349
|
} | undefined;
|
|
490
350
|
}[] | undefined;
|
|
491
351
|
}[] | undefined;
|
|
@@ -494,10 +354,10 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
494
354
|
tasks: {
|
|
495
355
|
id: string;
|
|
496
356
|
startTime: number;
|
|
357
|
+
status?: "pending" | "complete" | undefined;
|
|
497
358
|
name?: string | undefined;
|
|
498
359
|
inputPath?: string | undefined;
|
|
499
360
|
outputPath?: string | undefined;
|
|
500
|
-
status?: "pending" | "complete" | undefined;
|
|
501
361
|
timings?: {
|
|
502
362
|
name: string;
|
|
503
363
|
start: number;
|
|
@@ -508,15 +368,10 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
508
368
|
lastUpdated?: number | undefined;
|
|
509
369
|
errors?: {
|
|
510
370
|
text: string;
|
|
511
|
-
pluginName?: string | undefined;
|
|
512
|
-
type?: string | undefined;
|
|
513
371
|
location?: {
|
|
514
372
|
file: string;
|
|
515
373
|
line: number;
|
|
516
374
|
column: number;
|
|
517
|
-
length?: number | undefined;
|
|
518
|
-
lineText?: string | undefined;
|
|
519
|
-
suggestion?: string | undefined;
|
|
520
375
|
} | undefined;
|
|
521
376
|
notes?: {
|
|
522
377
|
text: string;
|
|
@@ -524,23 +379,15 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
524
379
|
file: string;
|
|
525
380
|
line: number;
|
|
526
381
|
column: number;
|
|
527
|
-
length?: number | undefined;
|
|
528
|
-
lineText?: string | undefined;
|
|
529
|
-
suggestion?: string | undefined;
|
|
530
382
|
} | undefined;
|
|
531
383
|
}[] | undefined;
|
|
532
384
|
}[] | undefined;
|
|
533
385
|
warnings?: {
|
|
534
386
|
text: string;
|
|
535
|
-
pluginName?: string | undefined;
|
|
536
|
-
type?: string | undefined;
|
|
537
387
|
location?: {
|
|
538
388
|
file: string;
|
|
539
389
|
line: number;
|
|
540
390
|
column: number;
|
|
541
|
-
length?: number | undefined;
|
|
542
|
-
lineText?: string | undefined;
|
|
543
|
-
suggestion?: string | undefined;
|
|
544
391
|
} | undefined;
|
|
545
392
|
notes?: {
|
|
546
393
|
text: string;
|
|
@@ -548,9 +395,6 @@ export declare const taskListSource: import("@ms-cloudpack/data-bus").DataBusPat
|
|
|
548
395
|
file: string;
|
|
549
396
|
line: number;
|
|
550
397
|
column: number;
|
|
551
|
-
length?: number | undefined;
|
|
552
|
-
lineText?: string | undefined;
|
|
553
|
-
suggestion?: string | undefined;
|
|
554
398
|
} | undefined;
|
|
555
399
|
}[] | undefined;
|
|
556
400
|
}[] | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"busSources.d.ts","sourceRoot":"","sources":["../../src/data/busSources.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAKpB;;GAEG;AACH,eAAO,MAAM,iBAAiB,2DAG5B,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;AAKpB;;GAEG;AACH,eAAO,MAAM,iBAAiB,2DAG5B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;GAG1B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAKzB,CAAC"}
|
package/lib/index.browser.d.ts
CHANGED
|
@@ -1,23 +1,10 @@
|
|
|
1
|
-
export type { ApiServer } from './types/ApiServer.js';
|
|
2
|
-
export type { Context } from './types/Context.js';
|
|
3
|
-
export type { BundleInfo } from './types/BundleInfo.js';
|
|
4
|
-
export type { Session } from './types/Session.js';
|
|
5
1
|
export type { TaskStats } from './types/TaskStats.js';
|
|
6
|
-
export type { Task } from './types/Task.js';
|
|
7
2
|
export type { TaskDescription } from './types/TaskDescription.js';
|
|
8
|
-
export type { TaskEndDescription } from './types/TaskEndDescription.js';
|
|
9
3
|
export type { TaskMessage } from './types/TaskMessage.js';
|
|
10
|
-
export type { TaskOptions } from './types/TaskOptions.js';
|
|
11
|
-
export type { TaskStartDescription } from './types/TaskStartDescription.js';
|
|
12
|
-
export type { CloudpackServer } from './trpc/createCloudpackServer.js';
|
|
13
|
-
export type { CreateHtmlFunction } from './types/CreateHtmlFunction.js';
|
|
14
|
-
export type { CreateHtmlOptions } from './types/CreateHtmlOptions.js';
|
|
15
|
-
export type { CreateHtmlResult } from './types/CreateHtmlResult.js';
|
|
16
|
-
export type { CreateHtmlScript } from './types/CreateHtmlScript.js';
|
|
17
4
|
export type { AddPackageOverrideInput } from './apis/addPackageOverride.js';
|
|
18
5
|
export type { OpenCodeEditorInput } from './apis/openCodeEditor.js';
|
|
19
6
|
export type { OpenFilePathInput } from './apis/openFilePath.js';
|
|
20
7
|
export type { ReportMetricInput } from './apis/reportMetric.js';
|
|
21
8
|
export type { ValidatePackageOverrideInput, ValidatePackageOverrideOutput } from './apis/validatePackageOverride.js';
|
|
22
|
-
export {
|
|
9
|
+
export { taskListSource, taskStatsSource } from './data/busSources.js';
|
|
23
10
|
//# sourceMappingURL=index.browser.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.browser.d.ts","sourceRoot":"","sources":["../src/index.browser.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AACtD,YAAY,EAAE,
|
|
1
|
+
{"version":3,"file":"index.browser.d.ts","sourceRoot":"","sources":["../src/index.browser.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AACtD,YAAY,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAC;AAClE,YAAY,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AAE1D,YAAY,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;AAC5E,YAAY,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AACpE,YAAY,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAChE,YAAY,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAChE,YAAY,EAAE,4BAA4B,EAAE,6BAA6B,EAAE,MAAM,mCAAmC,CAAC;AAErH,OAAO,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC"}
|
package/lib/index.browser.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { taskListSource, taskStatsSource } from './data/busSources.js';
|
|
2
2
|
//# sourceMappingURL=index.browser.js.map
|
package/lib/index.browser.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.browser.js","sourceRoot":"","sources":["../src/index.browser.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.browser.js","sourceRoot":"","sources":["../src/index.browser.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC","sourcesContent":["export type { TaskStats } from './types/TaskStats.js';\nexport type { TaskDescription } from './types/TaskDescription.js';\nexport type { TaskMessage } from './types/TaskMessage.js';\n\nexport type { AddPackageOverrideInput } from './apis/addPackageOverride.js';\nexport type { OpenCodeEditorInput } from './apis/openCodeEditor.js';\nexport type { OpenFilePathInput } from './apis/openFilePath.js';\nexport type { ReportMetricInput } from './apis/reportMetric.js';\nexport type { ValidatePackageOverrideInput, ValidatePackageOverrideOutput } from './apis/validatePackageOverride.js';\n\nexport { taskListSource, taskStatsSource } from './data/busSources.js';\n"]}
|
package/lib/trpc/common.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/** Reusable TRPC router helper. */
|
|
2
2
|
export declare const router: <TProcRouterRecord extends import("@trpc/server").ProcedureRouterRecord>(procedures: TProcRouterRecord) => import("@trpc/server").CreateRouterInner<import("@trpc/server").RootConfig<{
|
|
3
|
-
ctx: import("../index.
|
|
3
|
+
ctx: import("../index.js").Context;
|
|
4
4
|
meta: object;
|
|
5
5
|
errorShape: import("@trpc/server").DefaultErrorShape;
|
|
6
6
|
transformer: import("@trpc/server").DefaultDataTransformer;
|
|
@@ -8,12 +8,12 @@ export declare const router: <TProcRouterRecord extends import("@trpc/server").P
|
|
|
8
8
|
/** Reusable TRPC procedure helper. */
|
|
9
9
|
export declare const publicProcedure: import("@trpc/server").ProcedureBuilder<{
|
|
10
10
|
_config: import("@trpc/server").RootConfig<{
|
|
11
|
-
ctx: import("../index.
|
|
11
|
+
ctx: import("../index.js").Context;
|
|
12
12
|
meta: object;
|
|
13
13
|
errorShape: import("@trpc/server").DefaultErrorShape;
|
|
14
14
|
transformer: import("@trpc/server").DefaultDataTransformer;
|
|
15
15
|
}>;
|
|
16
|
-
_ctx_out: import("../index.
|
|
16
|
+
_ctx_out: import("../index.js").Context;
|
|
17
17
|
_input_in: typeof import("@trpc/server").unsetMarker;
|
|
18
18
|
_input_out: typeof import("@trpc/server").unsetMarker;
|
|
19
19
|
_output_in: typeof import("@trpc/server").unsetMarker;
|