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