@ms-cloudpack/api-server 0.13.4 → 0.14.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/ensurePackageBundled.d.ts +580 -196
- package/lib/apis/ensurePackageBundled.d.ts.map +1 -1
- package/lib/apis/ensurePackageBundled.js +3 -19
- package/lib/apis/ensurePackageBundled.js.map +1 -1
- package/lib/apis/index.d.ts +3 -2
- package/lib/apis/index.d.ts.map +1 -1
- package/lib/apis/index.js +2 -2
- package/lib/apis/index.js.map +1 -1
- package/lib/apis/syncDownload.d.ts +19 -4
- package/lib/apis/syncDownload.d.ts.map +1 -1
- package/lib/apis/syncDownload.js +28 -5
- package/lib/apis/syncDownload.js.map +1 -1
- package/lib/apis/syncUpload.d.ts +18 -4
- package/lib/apis/syncUpload.d.ts.map +1 -1
- package/lib/apis/syncUpload.js +38 -16
- package/lib/apis/syncUpload.js.map +1 -1
- package/lib/apis.d.ts +3 -0
- package/lib/apis.d.ts.map +1 -0
- package/lib/apis.js +2 -0
- package/lib/apis.js.map +1 -0
- package/lib/performance/markers.d.ts +13 -0
- package/lib/performance/markers.d.ts.map +1 -0
- package/lib/performance/markers.js +15 -0
- package/lib/performance/markers.js.map +1 -0
- package/lib/trpc/createAppRouter.d.ts +356 -300
- package/lib/trpc/createAppRouter.d.ts.map +1 -1
- package/lib/trpc/createCloudpackServer.d.ts +74 -46
- package/lib/trpc/createCloudpackServer.d.ts.map +1 -1
- package/lib/types/TaskMessage.d.ts +17 -17
- package/lib/types/TaskMessage.d.ts.map +1 -1
- package/lib/types/TaskMessage.js +1 -4
- package/lib/types/TaskMessage.js.map +1 -1
- package/lib/types/TaskMessageLocation.d.ts +2 -2
- package/lib/types/TaskResponse.d.ts +50 -50
- package/lib/types/TaskResult.d.ts +38 -38
- package/lib/utilities/ensureFieldsExist.d.ts +1 -1
- package/lib/utilities/ensureFieldsExist.d.ts.map +1 -1
- package/lib/utilities/ensureFieldsExist.js +1 -1
- package/lib/utilities/ensureFieldsExist.js.map +1 -1
- package/lib/utilities/getPackagesToSync.d.ts +12 -0
- package/lib/utilities/getPackagesToSync.d.ts.map +1 -0
- package/lib/utilities/getPackagesToSync.js +20 -0
- package/lib/utilities/getPackagesToSync.js.map +1 -0
- package/package.json +6 -6
|
@@ -74,6 +74,336 @@ export declare function createAppRouter(): {
|
|
|
74
74
|
_output_in: typeof import("@trpc/server").unsetMarker;
|
|
75
75
|
_output_out: typeof import("@trpc/server").unsetMarker;
|
|
76
76
|
}, void>;
|
|
77
|
+
ensurePackageBundled: import("@trpc/server").BuildProcedure<"mutation", {
|
|
78
|
+
_config: import("@trpc/server").RootConfig<{
|
|
79
|
+
ctx: {
|
|
80
|
+
session: import("../index.js").Session;
|
|
81
|
+
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
82
|
+
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
83
|
+
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
84
|
+
watcher: {
|
|
85
|
+
watch({ path, watchPaths, }: {
|
|
86
|
+
path: string;
|
|
87
|
+
watchPaths?: string[] | undefined;
|
|
88
|
+
}, onPackageChanged: () => void): () => Promise<void>;
|
|
89
|
+
unwatchAll(): Promise<void>;
|
|
90
|
+
};
|
|
91
|
+
packages: import("@ms-cloudpack/bundler-types").PackageDefinitionsCache;
|
|
92
|
+
taskRunner: import("../index.js").TaskRunner;
|
|
93
|
+
dispose(): Promise<void>;
|
|
94
|
+
};
|
|
95
|
+
meta: object;
|
|
96
|
+
errorShape: import("@trpc/server").DefaultErrorShape;
|
|
97
|
+
transformer: import("@trpc/server").DefaultDataTransformer;
|
|
98
|
+
}>;
|
|
99
|
+
_meta: object;
|
|
100
|
+
_ctx_out: {
|
|
101
|
+
session: import("../index.js").Session;
|
|
102
|
+
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
103
|
+
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
104
|
+
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
105
|
+
watcher: {
|
|
106
|
+
watch({ path, watchPaths, }: {
|
|
107
|
+
path: string;
|
|
108
|
+
watchPaths?: string[] | undefined;
|
|
109
|
+
}, onPackageChanged: () => void): () => Promise<void>;
|
|
110
|
+
unwatchAll(): Promise<void>;
|
|
111
|
+
};
|
|
112
|
+
packages: import("@ms-cloudpack/bundler-types").PackageDefinitionsCache;
|
|
113
|
+
taskRunner: import("../index.js").TaskRunner;
|
|
114
|
+
dispose(): Promise<void>;
|
|
115
|
+
};
|
|
116
|
+
_input_in: {
|
|
117
|
+
name: string;
|
|
118
|
+
version: string;
|
|
119
|
+
outputPath?: string | undefined;
|
|
120
|
+
bundlerType?: string | undefined;
|
|
121
|
+
disableSourceMaps?: boolean | undefined;
|
|
122
|
+
enqueueDependencies?: boolean | undefined;
|
|
123
|
+
shouldRerun?: boolean | undefined;
|
|
124
|
+
shouldWatch?: boolean | undefined;
|
|
125
|
+
shouldForce?: boolean | undefined;
|
|
126
|
+
};
|
|
127
|
+
_input_out: {
|
|
128
|
+
name: string;
|
|
129
|
+
version: string;
|
|
130
|
+
outputPath?: string | undefined;
|
|
131
|
+
bundlerType?: string | undefined;
|
|
132
|
+
disableSourceMaps?: boolean | undefined;
|
|
133
|
+
enqueueDependencies?: boolean | undefined;
|
|
134
|
+
shouldRerun?: boolean | undefined;
|
|
135
|
+
shouldWatch?: boolean | undefined;
|
|
136
|
+
shouldForce?: boolean | undefined;
|
|
137
|
+
};
|
|
138
|
+
_output_in: {
|
|
139
|
+
result: {
|
|
140
|
+
name: string;
|
|
141
|
+
outputPath: string;
|
|
142
|
+
version: string;
|
|
143
|
+
isExternal: boolean;
|
|
144
|
+
bundlerName?: string | undefined;
|
|
145
|
+
inputPath?: string | undefined;
|
|
146
|
+
entries?: Record<string, string> | undefined;
|
|
147
|
+
dependencies?: string[] | undefined;
|
|
148
|
+
hash?: string | undefined;
|
|
149
|
+
outputFiles?: {
|
|
150
|
+
outputPath: string;
|
|
151
|
+
entryPoint?: string | undefined;
|
|
152
|
+
exports?: string[] | undefined;
|
|
153
|
+
}[] | undefined;
|
|
154
|
+
errors?: {
|
|
155
|
+
text: string;
|
|
156
|
+
pluginName?: string | undefined;
|
|
157
|
+
type?: string | undefined;
|
|
158
|
+
location?: {
|
|
159
|
+
file: string;
|
|
160
|
+
line: number;
|
|
161
|
+
column: number;
|
|
162
|
+
length?: number | undefined;
|
|
163
|
+
lineText?: string | undefined;
|
|
164
|
+
suggestion?: string | undefined;
|
|
165
|
+
} | undefined;
|
|
166
|
+
notes?: {
|
|
167
|
+
text: string;
|
|
168
|
+
location?: {
|
|
169
|
+
file: string;
|
|
170
|
+
line: number;
|
|
171
|
+
column: number;
|
|
172
|
+
length?: number | undefined;
|
|
173
|
+
lineText?: string | undefined;
|
|
174
|
+
suggestion?: string | undefined;
|
|
175
|
+
} | undefined;
|
|
176
|
+
}[] | undefined;
|
|
177
|
+
}[] | undefined;
|
|
178
|
+
warnings?: {
|
|
179
|
+
text: string;
|
|
180
|
+
pluginName?: string | undefined;
|
|
181
|
+
type?: string | undefined;
|
|
182
|
+
location?: {
|
|
183
|
+
file: string;
|
|
184
|
+
line: number;
|
|
185
|
+
column: number;
|
|
186
|
+
length?: number | undefined;
|
|
187
|
+
lineText?: string | undefined;
|
|
188
|
+
suggestion?: string | undefined;
|
|
189
|
+
} | undefined;
|
|
190
|
+
notes?: {
|
|
191
|
+
text: string;
|
|
192
|
+
location?: {
|
|
193
|
+
file: string;
|
|
194
|
+
line: number;
|
|
195
|
+
column: number;
|
|
196
|
+
length?: number | undefined;
|
|
197
|
+
lineText?: string | undefined;
|
|
198
|
+
suggestion?: string | undefined;
|
|
199
|
+
} | undefined;
|
|
200
|
+
}[] | undefined;
|
|
201
|
+
}[] | undefined;
|
|
202
|
+
rawInput?: Record<string, unknown> | undefined;
|
|
203
|
+
rawOutput?: Record<string, unknown> | undefined;
|
|
204
|
+
};
|
|
205
|
+
dependencies: Promise<{
|
|
206
|
+
name: string;
|
|
207
|
+
outputPath: string;
|
|
208
|
+
version: string;
|
|
209
|
+
isExternal: boolean;
|
|
210
|
+
bundlerName?: string | undefined;
|
|
211
|
+
inputPath?: string | undefined;
|
|
212
|
+
entries?: Record<string, string> | undefined;
|
|
213
|
+
dependencies?: string[] | undefined;
|
|
214
|
+
hash?: string | undefined;
|
|
215
|
+
outputFiles?: {
|
|
216
|
+
outputPath: string;
|
|
217
|
+
entryPoint?: string | undefined;
|
|
218
|
+
exports?: string[] | undefined;
|
|
219
|
+
}[] | undefined;
|
|
220
|
+
errors?: {
|
|
221
|
+
text: string;
|
|
222
|
+
pluginName?: string | undefined;
|
|
223
|
+
type?: string | undefined;
|
|
224
|
+
location?: {
|
|
225
|
+
file: string;
|
|
226
|
+
line: number;
|
|
227
|
+
column: number;
|
|
228
|
+
length?: number | undefined;
|
|
229
|
+
lineText?: string | undefined;
|
|
230
|
+
suggestion?: string | undefined;
|
|
231
|
+
} | undefined;
|
|
232
|
+
notes?: {
|
|
233
|
+
text: string;
|
|
234
|
+
location?: {
|
|
235
|
+
file: string;
|
|
236
|
+
line: number;
|
|
237
|
+
column: number;
|
|
238
|
+
length?: number | undefined;
|
|
239
|
+
lineText?: string | undefined;
|
|
240
|
+
suggestion?: string | undefined;
|
|
241
|
+
} | undefined;
|
|
242
|
+
}[] | undefined;
|
|
243
|
+
}[] | undefined;
|
|
244
|
+
warnings?: {
|
|
245
|
+
text: string;
|
|
246
|
+
pluginName?: string | undefined;
|
|
247
|
+
type?: string | undefined;
|
|
248
|
+
location?: {
|
|
249
|
+
file: string;
|
|
250
|
+
line: number;
|
|
251
|
+
column: number;
|
|
252
|
+
length?: number | undefined;
|
|
253
|
+
lineText?: string | undefined;
|
|
254
|
+
suggestion?: string | undefined;
|
|
255
|
+
} | undefined;
|
|
256
|
+
notes?: {
|
|
257
|
+
text: string;
|
|
258
|
+
location?: {
|
|
259
|
+
file: string;
|
|
260
|
+
line: number;
|
|
261
|
+
column: number;
|
|
262
|
+
length?: number | undefined;
|
|
263
|
+
lineText?: string | undefined;
|
|
264
|
+
suggestion?: string | undefined;
|
|
265
|
+
} | undefined;
|
|
266
|
+
}[] | undefined;
|
|
267
|
+
}[] | undefined;
|
|
268
|
+
rawInput?: Record<string, unknown> | undefined;
|
|
269
|
+
rawOutput?: Record<string, unknown> | undefined;
|
|
270
|
+
}[]>;
|
|
271
|
+
};
|
|
272
|
+
_output_out: {
|
|
273
|
+
result: {
|
|
274
|
+
name: string;
|
|
275
|
+
outputPath: string;
|
|
276
|
+
version: string;
|
|
277
|
+
isExternal: boolean;
|
|
278
|
+
bundlerName?: string | undefined;
|
|
279
|
+
inputPath?: string | undefined;
|
|
280
|
+
entries?: Record<string, string> | undefined;
|
|
281
|
+
dependencies?: string[] | undefined;
|
|
282
|
+
hash?: string | undefined;
|
|
283
|
+
outputFiles?: {
|
|
284
|
+
outputPath: string;
|
|
285
|
+
entryPoint?: string | undefined;
|
|
286
|
+
exports?: string[] | undefined;
|
|
287
|
+
}[] | undefined;
|
|
288
|
+
errors?: {
|
|
289
|
+
text: string;
|
|
290
|
+
pluginName?: string | undefined;
|
|
291
|
+
type?: string | undefined;
|
|
292
|
+
location?: {
|
|
293
|
+
file: string;
|
|
294
|
+
line: number;
|
|
295
|
+
column: number;
|
|
296
|
+
length?: number | undefined;
|
|
297
|
+
lineText?: string | undefined;
|
|
298
|
+
suggestion?: string | undefined;
|
|
299
|
+
} | undefined;
|
|
300
|
+
notes?: {
|
|
301
|
+
text: string;
|
|
302
|
+
location?: {
|
|
303
|
+
file: string;
|
|
304
|
+
line: number;
|
|
305
|
+
column: number;
|
|
306
|
+
length?: number | undefined;
|
|
307
|
+
lineText?: string | undefined;
|
|
308
|
+
suggestion?: string | undefined;
|
|
309
|
+
} | undefined;
|
|
310
|
+
}[] | undefined;
|
|
311
|
+
}[] | undefined;
|
|
312
|
+
warnings?: {
|
|
313
|
+
text: string;
|
|
314
|
+
pluginName?: string | undefined;
|
|
315
|
+
type?: string | undefined;
|
|
316
|
+
location?: {
|
|
317
|
+
file: string;
|
|
318
|
+
line: number;
|
|
319
|
+
column: number;
|
|
320
|
+
length?: number | undefined;
|
|
321
|
+
lineText?: string | undefined;
|
|
322
|
+
suggestion?: string | undefined;
|
|
323
|
+
} | undefined;
|
|
324
|
+
notes?: {
|
|
325
|
+
text: string;
|
|
326
|
+
location?: {
|
|
327
|
+
file: string;
|
|
328
|
+
line: number;
|
|
329
|
+
column: number;
|
|
330
|
+
length?: number | undefined;
|
|
331
|
+
lineText?: string | undefined;
|
|
332
|
+
suggestion?: string | undefined;
|
|
333
|
+
} | undefined;
|
|
334
|
+
}[] | undefined;
|
|
335
|
+
}[] | undefined;
|
|
336
|
+
rawInput?: Record<string, unknown> | undefined;
|
|
337
|
+
rawOutput?: Record<string, unknown> | undefined;
|
|
338
|
+
};
|
|
339
|
+
dependencies: Promise<{
|
|
340
|
+
name: string;
|
|
341
|
+
outputPath: string;
|
|
342
|
+
version: string;
|
|
343
|
+
isExternal: boolean;
|
|
344
|
+
bundlerName?: string | undefined;
|
|
345
|
+
inputPath?: string | undefined;
|
|
346
|
+
entries?: Record<string, string> | undefined;
|
|
347
|
+
dependencies?: string[] | undefined;
|
|
348
|
+
hash?: string | undefined;
|
|
349
|
+
outputFiles?: {
|
|
350
|
+
outputPath: string;
|
|
351
|
+
entryPoint?: string | undefined;
|
|
352
|
+
exports?: string[] | undefined;
|
|
353
|
+
}[] | undefined;
|
|
354
|
+
errors?: {
|
|
355
|
+
text: string;
|
|
356
|
+
pluginName?: string | undefined;
|
|
357
|
+
type?: string | undefined;
|
|
358
|
+
location?: {
|
|
359
|
+
file: string;
|
|
360
|
+
line: number;
|
|
361
|
+
column: number;
|
|
362
|
+
length?: number | undefined;
|
|
363
|
+
lineText?: string | undefined;
|
|
364
|
+
suggestion?: string | undefined;
|
|
365
|
+
} | undefined;
|
|
366
|
+
notes?: {
|
|
367
|
+
text: string;
|
|
368
|
+
location?: {
|
|
369
|
+
file: string;
|
|
370
|
+
line: number;
|
|
371
|
+
column: number;
|
|
372
|
+
length?: number | undefined;
|
|
373
|
+
lineText?: string | undefined;
|
|
374
|
+
suggestion?: string | undefined;
|
|
375
|
+
} | undefined;
|
|
376
|
+
}[] | undefined;
|
|
377
|
+
}[] | undefined;
|
|
378
|
+
warnings?: {
|
|
379
|
+
text: string;
|
|
380
|
+
pluginName?: string | undefined;
|
|
381
|
+
type?: string | undefined;
|
|
382
|
+
location?: {
|
|
383
|
+
file: string;
|
|
384
|
+
line: number;
|
|
385
|
+
column: number;
|
|
386
|
+
length?: number | undefined;
|
|
387
|
+
lineText?: string | undefined;
|
|
388
|
+
suggestion?: string | undefined;
|
|
389
|
+
} | undefined;
|
|
390
|
+
notes?: {
|
|
391
|
+
text: string;
|
|
392
|
+
location?: {
|
|
393
|
+
file: string;
|
|
394
|
+
line: number;
|
|
395
|
+
column: number;
|
|
396
|
+
length?: number | undefined;
|
|
397
|
+
lineText?: string | undefined;
|
|
398
|
+
suggestion?: string | undefined;
|
|
399
|
+
} | undefined;
|
|
400
|
+
}[] | undefined;
|
|
401
|
+
}[] | undefined;
|
|
402
|
+
rawInput?: Record<string, unknown> | undefined;
|
|
403
|
+
rawOutput?: Record<string, unknown> | undefined;
|
|
404
|
+
}[]>;
|
|
405
|
+
};
|
|
406
|
+
}, unknown>;
|
|
77
407
|
getData: import("@trpc/server").BuildProcedure<"query", {
|
|
78
408
|
_config: import("@trpc/server").RootConfig<{
|
|
79
409
|
ctx: {
|
|
@@ -406,66 +736,12 @@ export declare function createAppRouter(): {
|
|
|
406
736
|
metric: string;
|
|
407
737
|
};
|
|
408
738
|
_input_out: {
|
|
409
|
-
value: number;
|
|
410
|
-
metric: string;
|
|
411
|
-
};
|
|
412
|
-
_output_in: typeof import("@trpc/server").unsetMarker;
|
|
413
|
-
_output_out: typeof import("@trpc/server").unsetMarker;
|
|
414
|
-
}, void>;
|
|
415
|
-
validatePackageOverride: import("@trpc/server").BuildProcedure<"query", {
|
|
416
|
-
_config: import("@trpc/server").RootConfig<{
|
|
417
|
-
ctx: {
|
|
418
|
-
session: import("../index.js").Session;
|
|
419
|
-
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
420
|
-
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
421
|
-
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
422
|
-
watcher: {
|
|
423
|
-
watch({ path, watchPaths, }: {
|
|
424
|
-
path: string;
|
|
425
|
-
watchPaths?: string[] | undefined;
|
|
426
|
-
}, onPackageChanged: () => void): () => Promise<void>;
|
|
427
|
-
unwatchAll(): Promise<void>;
|
|
428
|
-
};
|
|
429
|
-
packages: import("@ms-cloudpack/bundler-types").PackageDefinitionsCache;
|
|
430
|
-
taskRunner: import("../index.js").TaskRunner;
|
|
431
|
-
dispose(): Promise<void>;
|
|
432
|
-
};
|
|
433
|
-
meta: object;
|
|
434
|
-
errorShape: import("@trpc/server").DefaultErrorShape;
|
|
435
|
-
transformer: import("@trpc/server").DefaultDataTransformer;
|
|
436
|
-
}>;
|
|
437
|
-
_meta: object;
|
|
438
|
-
_ctx_out: {
|
|
439
|
-
session: import("../index.js").Session;
|
|
440
|
-
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
441
|
-
rootSpan: import("@opentelemetry/api").Span | undefined;
|
|
442
|
-
reporter: import("@ms-cloudpack/task-reporter").TaskReporter;
|
|
443
|
-
watcher: {
|
|
444
|
-
watch({ path, watchPaths, }: {
|
|
445
|
-
path: string;
|
|
446
|
-
watchPaths?: string[] | undefined;
|
|
447
|
-
}, onPackageChanged: () => void): () => Promise<void>;
|
|
448
|
-
unwatchAll(): Promise<void>;
|
|
449
|
-
};
|
|
450
|
-
packages: import("@ms-cloudpack/bundler-types").PackageDefinitionsCache;
|
|
451
|
-
taskRunner: import("../index.js").TaskRunner;
|
|
452
|
-
dispose(): Promise<void>;
|
|
453
|
-
};
|
|
454
|
-
_input_in: {
|
|
455
|
-
packageName: string;
|
|
456
|
-
importPath: string;
|
|
457
|
-
};
|
|
458
|
-
_input_out: {
|
|
459
|
-
packageName: string;
|
|
460
|
-
importPath: string;
|
|
461
|
-
};
|
|
462
|
-
_output_in: {
|
|
463
|
-
fixable: boolean;
|
|
464
|
-
};
|
|
465
|
-
_output_out: {
|
|
466
|
-
fixable: boolean;
|
|
739
|
+
value: number;
|
|
740
|
+
metric: string;
|
|
467
741
|
};
|
|
468
|
-
|
|
742
|
+
_output_in: typeof import("@trpc/server").unsetMarker;
|
|
743
|
+
_output_out: typeof import("@trpc/server").unsetMarker;
|
|
744
|
+
}, void>;
|
|
469
745
|
syncDownload: import("@trpc/server").BuildProcedure<"mutation", {
|
|
470
746
|
_config: import("@trpc/server").RootConfig<{
|
|
471
747
|
ctx: {
|
|
@@ -488,6 +764,7 @@ export declare function createAppRouter(): {
|
|
|
488
764
|
errorShape: import("@trpc/server").DefaultErrorShape;
|
|
489
765
|
transformer: import("@trpc/server").DefaultDataTransformer;
|
|
490
766
|
}>;
|
|
767
|
+
_meta: object;
|
|
491
768
|
_ctx_out: {
|
|
492
769
|
session: import("../index.js").Session;
|
|
493
770
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
@@ -504,11 +781,14 @@ export declare function createAppRouter(): {
|
|
|
504
781
|
taskRunner: import("../index.js").TaskRunner;
|
|
505
782
|
dispose(): Promise<void>;
|
|
506
783
|
};
|
|
507
|
-
_input_in:
|
|
508
|
-
|
|
784
|
+
_input_in: {
|
|
785
|
+
isInteractiveLogin: boolean;
|
|
786
|
+
};
|
|
787
|
+
_input_out: {
|
|
788
|
+
isInteractiveLogin: boolean;
|
|
789
|
+
};
|
|
509
790
|
_output_in: typeof import("@trpc/server").unsetMarker;
|
|
510
791
|
_output_out: typeof import("@trpc/server").unsetMarker;
|
|
511
|
-
_meta: object;
|
|
512
792
|
}, void>;
|
|
513
793
|
syncUpload: import("@trpc/server").BuildProcedure<"mutation", {
|
|
514
794
|
_config: import("@trpc/server").RootConfig<{
|
|
@@ -532,6 +812,7 @@ export declare function createAppRouter(): {
|
|
|
532
812
|
errorShape: import("@trpc/server").DefaultErrorShape;
|
|
533
813
|
transformer: import("@trpc/server").DefaultDataTransformer;
|
|
534
814
|
}>;
|
|
815
|
+
_meta: object;
|
|
535
816
|
_ctx_out: {
|
|
536
817
|
session: import("../index.js").Session;
|
|
537
818
|
bus: import("@ms-cloudpack/data-bus").DataBus;
|
|
@@ -548,13 +829,16 @@ export declare function createAppRouter(): {
|
|
|
548
829
|
taskRunner: import("../index.js").TaskRunner;
|
|
549
830
|
dispose(): Promise<void>;
|
|
550
831
|
};
|
|
551
|
-
_input_in:
|
|
552
|
-
|
|
832
|
+
_input_in: {
|
|
833
|
+
isInteractiveLogin: boolean;
|
|
834
|
+
};
|
|
835
|
+
_input_out: {
|
|
836
|
+
isInteractiveLogin: boolean;
|
|
837
|
+
};
|
|
553
838
|
_output_in: typeof import("@trpc/server").unsetMarker;
|
|
554
839
|
_output_out: typeof import("@trpc/server").unsetMarker;
|
|
555
|
-
_meta: object;
|
|
556
840
|
}, void>;
|
|
557
|
-
|
|
841
|
+
validatePackageOverride: import("@trpc/server").BuildProcedure<"query", {
|
|
558
842
|
_config: import("@trpc/server").RootConfig<{
|
|
559
843
|
ctx: {
|
|
560
844
|
session: import("../index.js").Session;
|
|
@@ -594,246 +878,18 @@ export declare function createAppRouter(): {
|
|
|
594
878
|
dispose(): Promise<void>;
|
|
595
879
|
};
|
|
596
880
|
_input_in: {
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
outputPath?: string | undefined;
|
|
600
|
-
bundlerType?: string | undefined;
|
|
601
|
-
disableSourceMaps?: boolean | undefined;
|
|
602
|
-
enqueueDependencies?: boolean | undefined;
|
|
603
|
-
shouldRerun?: boolean | undefined;
|
|
604
|
-
shouldWatch?: boolean | undefined;
|
|
605
|
-
shouldForce?: boolean | undefined;
|
|
881
|
+
packageName: string;
|
|
882
|
+
importPath: string;
|
|
606
883
|
};
|
|
607
884
|
_input_out: {
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
outputPath?: string | undefined;
|
|
611
|
-
bundlerType?: string | undefined;
|
|
612
|
-
disableSourceMaps?: boolean | undefined;
|
|
613
|
-
enqueueDependencies?: boolean | undefined;
|
|
614
|
-
shouldRerun?: boolean | undefined;
|
|
615
|
-
shouldWatch?: boolean | undefined;
|
|
616
|
-
shouldForce?: boolean | undefined;
|
|
885
|
+
packageName: string;
|
|
886
|
+
importPath: string;
|
|
617
887
|
};
|
|
618
888
|
_output_in: {
|
|
619
|
-
|
|
620
|
-
name: string;
|
|
621
|
-
outputPath: string;
|
|
622
|
-
version: string;
|
|
623
|
-
isExternal: boolean;
|
|
624
|
-
bundlerName?: string | undefined;
|
|
625
|
-
inputPath?: string | undefined;
|
|
626
|
-
entries?: Record<string, string> | undefined;
|
|
627
|
-
dependencies?: string[] | undefined;
|
|
628
|
-
hash?: string | undefined;
|
|
629
|
-
outputFiles?: {
|
|
630
|
-
outputPath: string;
|
|
631
|
-
entryPoint?: string | undefined;
|
|
632
|
-
exports?: string[] | undefined;
|
|
633
|
-
}[] | undefined;
|
|
634
|
-
errors?: {
|
|
635
|
-
text: string;
|
|
636
|
-
pluginName?: string | undefined;
|
|
637
|
-
type?: string | undefined;
|
|
638
|
-
location?: {
|
|
639
|
-
line: number;
|
|
640
|
-
column: number;
|
|
641
|
-
file: string;
|
|
642
|
-
} | undefined;
|
|
643
|
-
notes?: {
|
|
644
|
-
text?: string | undefined;
|
|
645
|
-
location?: {
|
|
646
|
-
line: number;
|
|
647
|
-
column: number;
|
|
648
|
-
file: string;
|
|
649
|
-
} | undefined;
|
|
650
|
-
}[] | undefined;
|
|
651
|
-
}[] | undefined;
|
|
652
|
-
warnings?: {
|
|
653
|
-
text: string;
|
|
654
|
-
pluginName?: string | undefined;
|
|
655
|
-
type?: string | undefined;
|
|
656
|
-
location?: {
|
|
657
|
-
line: number;
|
|
658
|
-
column: number;
|
|
659
|
-
file: string;
|
|
660
|
-
} | undefined;
|
|
661
|
-
notes?: {
|
|
662
|
-
text?: string | undefined;
|
|
663
|
-
location?: {
|
|
664
|
-
line: number;
|
|
665
|
-
column: number;
|
|
666
|
-
file: string;
|
|
667
|
-
} | undefined;
|
|
668
|
-
}[] | undefined;
|
|
669
|
-
}[] | undefined;
|
|
670
|
-
rawInput?: Record<string, unknown> | undefined;
|
|
671
|
-
rawOutput?: Record<string, unknown> | undefined;
|
|
672
|
-
}[]>;
|
|
673
|
-
result: {
|
|
674
|
-
name: string;
|
|
675
|
-
outputPath: string;
|
|
676
|
-
version: string;
|
|
677
|
-
isExternal: boolean;
|
|
678
|
-
bundlerName?: string | undefined;
|
|
679
|
-
inputPath?: string | undefined;
|
|
680
|
-
entries?: Record<string, string> | undefined;
|
|
681
|
-
dependencies?: string[] | undefined;
|
|
682
|
-
hash?: string | undefined;
|
|
683
|
-
outputFiles?: {
|
|
684
|
-
outputPath: string;
|
|
685
|
-
entryPoint?: string | undefined;
|
|
686
|
-
exports?: string[] | undefined;
|
|
687
|
-
}[] | undefined;
|
|
688
|
-
errors?: {
|
|
689
|
-
text: string;
|
|
690
|
-
pluginName?: string | undefined;
|
|
691
|
-
type?: string | undefined;
|
|
692
|
-
location?: {
|
|
693
|
-
line: number;
|
|
694
|
-
column: number;
|
|
695
|
-
file: string;
|
|
696
|
-
} | undefined;
|
|
697
|
-
notes?: {
|
|
698
|
-
text?: string | undefined;
|
|
699
|
-
location?: {
|
|
700
|
-
line: number;
|
|
701
|
-
column: number;
|
|
702
|
-
file: string;
|
|
703
|
-
} | undefined;
|
|
704
|
-
}[] | undefined;
|
|
705
|
-
}[] | undefined;
|
|
706
|
-
warnings?: {
|
|
707
|
-
text: string;
|
|
708
|
-
pluginName?: string | undefined;
|
|
709
|
-
type?: string | undefined;
|
|
710
|
-
location?: {
|
|
711
|
-
line: number;
|
|
712
|
-
column: number;
|
|
713
|
-
file: string;
|
|
714
|
-
} | undefined;
|
|
715
|
-
notes?: {
|
|
716
|
-
text?: string | undefined;
|
|
717
|
-
location?: {
|
|
718
|
-
line: number;
|
|
719
|
-
column: number;
|
|
720
|
-
file: string;
|
|
721
|
-
} | undefined;
|
|
722
|
-
}[] | undefined;
|
|
723
|
-
}[] | undefined;
|
|
724
|
-
rawInput?: Record<string, unknown> | undefined;
|
|
725
|
-
rawOutput?: Record<string, unknown> | undefined;
|
|
726
|
-
};
|
|
889
|
+
fixable: boolean;
|
|
727
890
|
};
|
|
728
891
|
_output_out: {
|
|
729
|
-
|
|
730
|
-
name: string;
|
|
731
|
-
outputPath: string;
|
|
732
|
-
version: string;
|
|
733
|
-
isExternal: boolean;
|
|
734
|
-
bundlerName?: string | undefined;
|
|
735
|
-
inputPath?: string | undefined;
|
|
736
|
-
entries?: Record<string, string> | undefined;
|
|
737
|
-
dependencies?: string[] | undefined;
|
|
738
|
-
hash?: string | undefined;
|
|
739
|
-
outputFiles?: {
|
|
740
|
-
outputPath: string;
|
|
741
|
-
entryPoint?: string | undefined;
|
|
742
|
-
exports?: string[] | undefined;
|
|
743
|
-
}[] | undefined;
|
|
744
|
-
errors?: {
|
|
745
|
-
text: string;
|
|
746
|
-
pluginName?: string | undefined;
|
|
747
|
-
type?: string | undefined;
|
|
748
|
-
location?: {
|
|
749
|
-
line: number;
|
|
750
|
-
column: number;
|
|
751
|
-
file: string;
|
|
752
|
-
} | undefined;
|
|
753
|
-
notes?: {
|
|
754
|
-
text?: string | undefined;
|
|
755
|
-
location?: {
|
|
756
|
-
line: number;
|
|
757
|
-
column: number;
|
|
758
|
-
file: string;
|
|
759
|
-
} | undefined;
|
|
760
|
-
}[] | undefined;
|
|
761
|
-
}[] | undefined;
|
|
762
|
-
warnings?: {
|
|
763
|
-
text: string;
|
|
764
|
-
pluginName?: string | undefined;
|
|
765
|
-
type?: string | undefined;
|
|
766
|
-
location?: {
|
|
767
|
-
line: number;
|
|
768
|
-
column: number;
|
|
769
|
-
file: string;
|
|
770
|
-
} | undefined;
|
|
771
|
-
notes?: {
|
|
772
|
-
text?: string | undefined;
|
|
773
|
-
location?: {
|
|
774
|
-
line: number;
|
|
775
|
-
column: number;
|
|
776
|
-
file: string;
|
|
777
|
-
} | undefined;
|
|
778
|
-
}[] | undefined;
|
|
779
|
-
}[] | undefined;
|
|
780
|
-
rawInput?: Record<string, unknown> | undefined;
|
|
781
|
-
rawOutput?: Record<string, unknown> | undefined;
|
|
782
|
-
}[]>;
|
|
783
|
-
result: {
|
|
784
|
-
name: string;
|
|
785
|
-
outputPath: string;
|
|
786
|
-
version: string;
|
|
787
|
-
isExternal: boolean;
|
|
788
|
-
bundlerName?: string | undefined;
|
|
789
|
-
inputPath?: string | undefined;
|
|
790
|
-
entries?: Record<string, string> | undefined;
|
|
791
|
-
dependencies?: string[] | undefined;
|
|
792
|
-
hash?: string | undefined;
|
|
793
|
-
outputFiles?: {
|
|
794
|
-
outputPath: string;
|
|
795
|
-
entryPoint?: string | undefined;
|
|
796
|
-
exports?: string[] | undefined;
|
|
797
|
-
}[] | undefined;
|
|
798
|
-
errors?: {
|
|
799
|
-
text: string;
|
|
800
|
-
pluginName?: string | undefined;
|
|
801
|
-
type?: string | undefined;
|
|
802
|
-
location?: {
|
|
803
|
-
line: number;
|
|
804
|
-
column: number;
|
|
805
|
-
file: string;
|
|
806
|
-
} | undefined;
|
|
807
|
-
notes?: {
|
|
808
|
-
text?: string | undefined;
|
|
809
|
-
location?: {
|
|
810
|
-
line: number;
|
|
811
|
-
column: number;
|
|
812
|
-
file: string;
|
|
813
|
-
} | undefined;
|
|
814
|
-
}[] | undefined;
|
|
815
|
-
}[] | undefined;
|
|
816
|
-
warnings?: {
|
|
817
|
-
text: string;
|
|
818
|
-
pluginName?: string | undefined;
|
|
819
|
-
type?: string | undefined;
|
|
820
|
-
location?: {
|
|
821
|
-
line: number;
|
|
822
|
-
column: number;
|
|
823
|
-
file: string;
|
|
824
|
-
} | undefined;
|
|
825
|
-
notes?: {
|
|
826
|
-
text?: string | undefined;
|
|
827
|
-
location?: {
|
|
828
|
-
line: number;
|
|
829
|
-
column: number;
|
|
830
|
-
file: string;
|
|
831
|
-
} | undefined;
|
|
832
|
-
}[] | undefined;
|
|
833
|
-
}[] | undefined;
|
|
834
|
-
rawInput?: Record<string, unknown> | undefined;
|
|
835
|
-
rawOutput?: Record<string, unknown> | undefined;
|
|
836
|
-
};
|
|
892
|
+
fixable: boolean;
|
|
837
893
|
};
|
|
838
894
|
}, unknown>;
|
|
839
895
|
}>;
|