@ms-cloudpack/api-server 0.59.0 → 0.60.1

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 (73) hide show
  1. package/lib/apis/ensurePackageBundled.d.ts +13 -7
  2. package/lib/apis/ensurePackageBundled.d.ts.map +1 -1
  3. package/lib/apis/ensurePackageBundled.js +8 -4
  4. package/lib/apis/ensurePackageBundled.js.map +1 -1
  5. package/lib/apis/syncUpload.d.ts +5 -2
  6. package/lib/apis/syncUpload.d.ts.map +1 -1
  7. package/lib/apis/syncUpload.js +1 -0
  8. package/lib/apis/syncUpload.js.map +1 -1
  9. package/lib/common/createApiContext.d.ts +29 -0
  10. package/lib/common/createApiContext.d.ts.map +1 -0
  11. package/lib/common/createApiContext.js +62 -0
  12. package/lib/common/createApiContext.js.map +1 -0
  13. package/lib/data/busSources.d.ts +18 -292
  14. package/lib/data/busSources.d.ts.map +1 -1
  15. package/lib/index.d.ts +3 -3
  16. package/lib/index.d.ts.map +1 -1
  17. package/lib/index.js +2 -2
  18. package/lib/index.js.map +1 -1
  19. package/lib/types/Context.d.ts +5 -3
  20. package/lib/types/Context.d.ts.map +1 -1
  21. package/lib/types/Context.js.map +1 -1
  22. package/lib/types/TaskDescription.d.ts +14 -224
  23. package/lib/types/TaskDescription.d.ts.map +1 -1
  24. package/lib/types/TaskDescription.js +2 -2
  25. package/lib/types/TaskDescription.js.map +1 -1
  26. package/lib/types/TaskEndDescription.d.ts +14 -224
  27. package/lib/types/TaskEndDescription.d.ts.map +1 -1
  28. package/lib/types/TaskList.d.ts +18 -292
  29. package/lib/types/TaskList.d.ts.map +1 -1
  30. package/lib/types/TaskMessage.d.ts +11 -108
  31. package/lib/types/TaskMessage.d.ts.map +1 -1
  32. package/lib/types/TaskMessage.js +3 -2
  33. package/lib/types/TaskMessage.js.map +1 -1
  34. package/lib/types/TaskMessageLocation.d.ts +6 -13
  35. package/lib/types/TaskMessageLocation.d.ts.map +1 -1
  36. package/lib/types/TaskMessageLocation.js +2 -1
  37. package/lib/types/TaskMessageLocation.js.map +1 -1
  38. package/lib/utilities/TaskRunner.d.ts +22 -11
  39. package/lib/utilities/TaskRunner.d.ts.map +1 -1
  40. package/lib/utilities/TaskRunner.js +24 -25
  41. package/lib/utilities/TaskRunner.js.map +1 -1
  42. package/lib/utilities/matchingZodObject.d.ts +4 -0
  43. package/lib/utilities/matchingZodObject.d.ts.map +1 -1
  44. package/lib/utilities/matchingZodObject.js +4 -0
  45. package/lib/utilities/matchingZodObject.js.map +1 -1
  46. package/lib/utilities/writeStubForDensityEntries.d.ts.map +1 -1
  47. package/lib/utilities/writeStubForDensityEntries.js +2 -1
  48. package/lib/utilities/writeStubForDensityEntries.js.map +1 -1
  49. package/package.json +2 -2
  50. package/lib/common/createPartialApiContext.d.ts +0 -17
  51. package/lib/common/createPartialApiContext.d.ts.map +0 -1
  52. package/lib/common/createPartialApiContext.js +0 -163
  53. package/lib/common/createPartialApiContext.js.map +0 -1
  54. package/lib/types/TaskOptions.d.ts +0 -6
  55. package/lib/types/TaskOptions.d.ts.map +0 -1
  56. package/lib/types/TaskOptions.js +0 -2
  57. package/lib/types/TaskOptions.js.map +0 -1
  58. package/lib/types/TaskResponse.d.ts +0 -337
  59. package/lib/types/TaskResponse.d.ts.map +0 -1
  60. package/lib/types/TaskResponse.js +0 -8
  61. package/lib/types/TaskResponse.js.map +0 -1
  62. package/lib/types/TaskResult.d.ts +0 -233
  63. package/lib/types/TaskResult.d.ts.map +0 -1
  64. package/lib/types/TaskResult.js +0 -7
  65. package/lib/types/TaskResult.js.map +0 -1
  66. package/lib/types/TaskRunnerContext.d.ts +0 -3
  67. package/lib/types/TaskRunnerContext.d.ts.map +0 -1
  68. package/lib/types/TaskRunnerContext.js +0 -2
  69. package/lib/types/TaskRunnerContext.js.map +0 -1
  70. package/lib/types/Timings.d.ts +0 -20
  71. package/lib/types/Timings.d.ts.map +0 -1
  72. package/lib/types/Timings.js +0 -5
  73. package/lib/types/Timings.js.map +0 -1
@@ -28,163 +28,17 @@ export declare const ZodTaskDescription: z.ZodObject<z.objectUtil.extendShape<z.
28
28
  }>, {
29
29
  id: z.ZodString;
30
30
  errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
31
- text: z.ZodString;
32
- source: z.ZodString;
33
- location: z.ZodOptional<z.ZodObject<{
34
- file: z.ZodString;
35
- line: z.ZodOptional<z.ZodNumber>;
36
- column: z.ZodOptional<z.ZodNumber>;
37
- }, "strip", z.ZodTypeAny, {
38
- file: string;
39
- line?: number | undefined;
40
- column?: number | undefined;
41
- }, {
42
- file: string;
43
- line?: number | undefined;
44
- column?: number | undefined;
45
- }>>;
46
- notes: z.ZodOptional<z.ZodArray<z.ZodObject<{
47
- text: z.ZodString;
48
- location: z.ZodOptional<z.ZodObject<{
49
- file: z.ZodString;
50
- line: z.ZodOptional<z.ZodNumber>;
51
- column: z.ZodOptional<z.ZodNumber>;
52
- }, "strip", z.ZodTypeAny, {
53
- file: string;
54
- line?: number | undefined;
55
- column?: number | undefined;
56
- }, {
57
- file: string;
58
- line?: number | undefined;
59
- column?: number | undefined;
60
- }>>;
61
- }, "strip", z.ZodTypeAny, {
62
- text: string;
63
- location?: {
64
- file: string;
65
- line?: number | undefined;
66
- column?: number | undefined;
67
- } | undefined;
68
- }, {
69
- text: string;
70
- location?: {
71
- file: string;
72
- line?: number | undefined;
73
- column?: number | undefined;
74
- } | undefined;
75
- }>, "many">>;
76
- }, "strip", z.ZodTypeAny, {
77
- text: string;
78
- source: string;
79
- location?: {
80
- file: string;
81
- line?: number | undefined;
82
- column?: number | undefined;
83
- } | undefined;
84
- notes?: {
85
- text: string;
86
- location?: {
87
- file: string;
88
- line?: number | undefined;
89
- column?: number | undefined;
90
- } | undefined;
91
- }[] | undefined;
92
- }, {
93
- text: string;
94
- source: string;
95
- location?: {
96
- file: string;
97
- line?: number | undefined;
98
- column?: number | undefined;
99
- } | undefined;
100
- notes?: {
101
- text: string;
102
- location?: {
103
- file: string;
104
- line?: number | undefined;
105
- column?: number | undefined;
106
- } | undefined;
107
- }[] | undefined;
108
- }>, "many">>;
31
+ text: z.ZodType<string, z.ZodTypeDef, string>;
32
+ source: z.ZodType<string, z.ZodTypeDef, string>;
33
+ location: z.ZodType<import("@ms-cloudpack/common-types").BundleMessageLocation | undefined, z.ZodTypeDef, import("@ms-cloudpack/common-types").BundleMessageLocation | undefined>;
34
+ notes: z.ZodType<import("@ms-cloudpack/common-types").BundleMessageNote[] | undefined, z.ZodTypeDef, import("@ms-cloudpack/common-types").BundleMessageNote[] | undefined>;
35
+ }, "strict", z.ZodTypeAny, import("@ms-cloudpack/common-types").BundleMessage, import("@ms-cloudpack/common-types").BundleMessage>, "many">>;
109
36
  warnings: z.ZodOptional<z.ZodArray<z.ZodObject<{
110
- text: z.ZodString;
111
- source: z.ZodString;
112
- location: z.ZodOptional<z.ZodObject<{
113
- file: z.ZodString;
114
- line: z.ZodOptional<z.ZodNumber>;
115
- column: z.ZodOptional<z.ZodNumber>;
116
- }, "strip", z.ZodTypeAny, {
117
- file: string;
118
- line?: number | undefined;
119
- column?: number | undefined;
120
- }, {
121
- file: string;
122
- line?: number | undefined;
123
- column?: number | undefined;
124
- }>>;
125
- notes: z.ZodOptional<z.ZodArray<z.ZodObject<{
126
- text: z.ZodString;
127
- location: z.ZodOptional<z.ZodObject<{
128
- file: z.ZodString;
129
- line: z.ZodOptional<z.ZodNumber>;
130
- column: z.ZodOptional<z.ZodNumber>;
131
- }, "strip", z.ZodTypeAny, {
132
- file: string;
133
- line?: number | undefined;
134
- column?: number | undefined;
135
- }, {
136
- file: string;
137
- line?: number | undefined;
138
- column?: number | undefined;
139
- }>>;
140
- }, "strip", z.ZodTypeAny, {
141
- text: string;
142
- location?: {
143
- file: string;
144
- line?: number | undefined;
145
- column?: number | undefined;
146
- } | undefined;
147
- }, {
148
- text: string;
149
- location?: {
150
- file: string;
151
- line?: number | undefined;
152
- column?: number | undefined;
153
- } | undefined;
154
- }>, "many">>;
155
- }, "strip", z.ZodTypeAny, {
156
- text: string;
157
- source: string;
158
- location?: {
159
- file: string;
160
- line?: number | undefined;
161
- column?: number | undefined;
162
- } | undefined;
163
- notes?: {
164
- text: string;
165
- location?: {
166
- file: string;
167
- line?: number | undefined;
168
- column?: number | undefined;
169
- } | undefined;
170
- }[] | undefined;
171
- }, {
172
- text: string;
173
- source: string;
174
- location?: {
175
- file: string;
176
- line?: number | undefined;
177
- column?: number | undefined;
178
- } | undefined;
179
- notes?: {
180
- text: string;
181
- location?: {
182
- file: string;
183
- line?: number | undefined;
184
- column?: number | undefined;
185
- } | undefined;
186
- }[] | undefined;
187
- }>, "many">>;
37
+ text: z.ZodType<string, z.ZodTypeDef, string>;
38
+ source: z.ZodType<string, z.ZodTypeDef, string>;
39
+ location: z.ZodType<import("@ms-cloudpack/common-types").BundleMessageLocation | undefined, z.ZodTypeDef, import("@ms-cloudpack/common-types").BundleMessageLocation | undefined>;
40
+ notes: z.ZodType<import("@ms-cloudpack/common-types").BundleMessageNote[] | undefined, z.ZodTypeDef, import("@ms-cloudpack/common-types").BundleMessageNote[] | undefined>;
41
+ }, "strict", z.ZodTypeAny, import("@ms-cloudpack/common-types").BundleMessage, import("@ms-cloudpack/common-types").BundleMessage>, "many">>;
188
42
  }>, "strip", z.ZodTypeAny, {
189
43
  id: string;
190
44
  startTime: number;
@@ -192,40 +46,8 @@ export declare const ZodTaskDescription: z.ZodObject<z.objectUtil.extendShape<z.
192
46
  name?: string | undefined;
193
47
  inputPath?: string | undefined;
194
48
  outputPath?: string | undefined;
195
- errors?: {
196
- text: string;
197
- source: string;
198
- location?: {
199
- file: string;
200
- line?: number | undefined;
201
- column?: number | undefined;
202
- } | undefined;
203
- notes?: {
204
- text: string;
205
- location?: {
206
- file: string;
207
- line?: number | undefined;
208
- column?: number | undefined;
209
- } | undefined;
210
- }[] | undefined;
211
- }[] | undefined;
212
- warnings?: {
213
- text: string;
214
- source: string;
215
- location?: {
216
- file: string;
217
- line?: number | undefined;
218
- column?: number | undefined;
219
- } | undefined;
220
- notes?: {
221
- text: string;
222
- location?: {
223
- file: string;
224
- line?: number | undefined;
225
- column?: number | undefined;
226
- } | undefined;
227
- }[] | undefined;
228
- }[] | undefined;
49
+ errors?: import("@ms-cloudpack/common-types").BundleMessage[] | undefined;
50
+ warnings?: import("@ms-cloudpack/common-types").BundleMessage[] | undefined;
229
51
  timings?: {
230
52
  name: string;
231
53
  start: number;
@@ -241,40 +63,8 @@ export declare const ZodTaskDescription: z.ZodObject<z.objectUtil.extendShape<z.
241
63
  name?: string | undefined;
242
64
  inputPath?: string | undefined;
243
65
  outputPath?: string | undefined;
244
- errors?: {
245
- text: string;
246
- source: string;
247
- location?: {
248
- file: string;
249
- line?: number | undefined;
250
- column?: number | undefined;
251
- } | undefined;
252
- notes?: {
253
- text: string;
254
- location?: {
255
- file: string;
256
- line?: number | undefined;
257
- column?: number | undefined;
258
- } | undefined;
259
- }[] | undefined;
260
- }[] | undefined;
261
- warnings?: {
262
- text: string;
263
- source: string;
264
- location?: {
265
- file: string;
266
- line?: number | undefined;
267
- column?: number | undefined;
268
- } | undefined;
269
- notes?: {
270
- text: string;
271
- location?: {
272
- file: string;
273
- line?: number | undefined;
274
- column?: number | undefined;
275
- } | undefined;
276
- }[] | undefined;
277
- }[] | undefined;
66
+ errors?: import("@ms-cloudpack/common-types").BundleMessage[] | undefined;
67
+ warnings?: import("@ms-cloudpack/common-types").BundleMessage[] | undefined;
278
68
  timings?: {
279
69
  name: string;
280
70
  start: number;
@@ -1 +1 @@
1
- {"version":3,"file":"TaskDescription.d.ts","sourceRoot":"","sources":["../../src/types/TaskDescription.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAKpB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASO,CAAC;AAEvC,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC"}
1
+ {"version":3,"file":"TaskDescription.d.ts","sourceRoot":"","sources":["../../src/types/TaskDescription.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAKpB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASO,CAAC;AAEvC,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC"}
@@ -1,11 +1,11 @@
1
1
  import z from 'zod';
2
2
  import { ZodTaskStartDescription } from './TaskStartDescription.js';
3
3
  import { ZodTaskEndDescription } from './TaskEndDescription.js';
4
- import { ZodTimings } from './Timings.js';
4
+ import { ZodTiming } from './Timing.js';
5
5
  export const ZodTaskDescription = z
6
6
  .object({
7
7
  status: z.literal('pending').or(z.literal('complete')).optional(),
8
- timings: ZodTimings.optional(),
8
+ timings: z.array(ZodTiming).optional(),
9
9
  startTime: z.number(),
10
10
  durationMilliseconds: z.number().optional(),
11
11
  lastUpdated: z.number().optional(),
@@ -1 +1 @@
1
- {"version":3,"file":"TaskDescription.js","sourceRoot":"","sources":["../../src/types/TaskDescription.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AACpE,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAChE,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAE1C,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC;KAChC,MAAM,CAAC;IACN,MAAM,EAAE,CAAC,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC,QAAQ,EAAE;IACjE,OAAO,EAAE,UAAU,CAAC,QAAQ,EAAE;IAC9B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,oBAAoB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3C,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACnC,CAAC;KACD,MAAM,CAAC,uBAAuB,CAAC,KAAK,CAAC;KACrC,MAAM,CAAC,qBAAqB,CAAC,KAAK,CAAC,CAAC","sourcesContent":["import z from 'zod';\nimport { ZodTaskStartDescription } from './TaskStartDescription.js';\nimport { ZodTaskEndDescription } from './TaskEndDescription.js';\nimport { ZodTimings } from './Timings.js';\n\nexport const ZodTaskDescription = z\n .object({\n status: z.literal('pending').or(z.literal('complete')).optional(),\n timings: ZodTimings.optional(),\n startTime: z.number(),\n durationMilliseconds: z.number().optional(),\n lastUpdated: z.number().optional(),\n })\n .extend(ZodTaskStartDescription.shape)\n .extend(ZodTaskEndDescription.shape);\n\nexport type TaskDescription = z.infer<typeof ZodTaskDescription>;\n"]}
1
+ {"version":3,"file":"TaskDescription.js","sourceRoot":"","sources":["../../src/types/TaskDescription.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AACpE,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAChE,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAExC,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC;KAChC,MAAM,CAAC;IACN,MAAM,EAAE,CAAC,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC,QAAQ,EAAE;IACjE,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,QAAQ,EAAE;IACtC,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,oBAAoB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3C,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACnC,CAAC;KACD,MAAM,CAAC,uBAAuB,CAAC,KAAK,CAAC;KACrC,MAAM,CAAC,qBAAqB,CAAC,KAAK,CAAC,CAAC","sourcesContent":["import z from 'zod';\nimport { ZodTaskStartDescription } from './TaskStartDescription.js';\nimport { ZodTaskEndDescription } from './TaskEndDescription.js';\nimport { ZodTiming } from './Timing.js';\n\nexport const ZodTaskDescription = z\n .object({\n status: z.literal('pending').or(z.literal('complete')).optional(),\n timings: z.array(ZodTiming).optional(),\n startTime: z.number(),\n durationMilliseconds: z.number().optional(),\n lastUpdated: z.number().optional(),\n })\n .extend(ZodTaskStartDescription.shape)\n .extend(ZodTaskEndDescription.shape);\n\nexport type TaskDescription = z.infer<typeof ZodTaskDescription>;\n"]}
@@ -2,235 +2,25 @@ import z from 'zod';
2
2
  export declare const ZodTaskEndDescription: z.ZodObject<{
3
3
  id: z.ZodString;
4
4
  errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
5
- text: z.ZodString;
6
- source: z.ZodString;
7
- location: z.ZodOptional<z.ZodObject<{
8
- file: z.ZodString;
9
- line: z.ZodOptional<z.ZodNumber>;
10
- column: z.ZodOptional<z.ZodNumber>;
11
- }, "strip", z.ZodTypeAny, {
12
- file: string;
13
- line?: number | undefined;
14
- column?: number | undefined;
15
- }, {
16
- file: string;
17
- line?: number | undefined;
18
- column?: number | undefined;
19
- }>>;
20
- notes: z.ZodOptional<z.ZodArray<z.ZodObject<{
21
- text: z.ZodString;
22
- location: z.ZodOptional<z.ZodObject<{
23
- file: z.ZodString;
24
- line: z.ZodOptional<z.ZodNumber>;
25
- column: z.ZodOptional<z.ZodNumber>;
26
- }, "strip", z.ZodTypeAny, {
27
- file: string;
28
- line?: number | undefined;
29
- column?: number | undefined;
30
- }, {
31
- file: string;
32
- line?: number | undefined;
33
- column?: number | undefined;
34
- }>>;
35
- }, "strip", z.ZodTypeAny, {
36
- text: string;
37
- location?: {
38
- file: string;
39
- line?: number | undefined;
40
- column?: number | undefined;
41
- } | undefined;
42
- }, {
43
- text: string;
44
- location?: {
45
- file: string;
46
- line?: number | undefined;
47
- column?: number | undefined;
48
- } | undefined;
49
- }>, "many">>;
50
- }, "strip", z.ZodTypeAny, {
51
- text: string;
52
- source: string;
53
- location?: {
54
- file: string;
55
- line?: number | undefined;
56
- column?: number | undefined;
57
- } | undefined;
58
- notes?: {
59
- text: string;
60
- location?: {
61
- file: string;
62
- line?: number | undefined;
63
- column?: number | undefined;
64
- } | undefined;
65
- }[] | undefined;
66
- }, {
67
- text: string;
68
- source: string;
69
- location?: {
70
- file: string;
71
- line?: number | undefined;
72
- column?: number | undefined;
73
- } | undefined;
74
- notes?: {
75
- text: string;
76
- location?: {
77
- file: string;
78
- line?: number | undefined;
79
- column?: number | undefined;
80
- } | undefined;
81
- }[] | undefined;
82
- }>, "many">>;
5
+ text: z.ZodType<string, z.ZodTypeDef, string>;
6
+ source: z.ZodType<string, z.ZodTypeDef, string>;
7
+ location: z.ZodType<import("@ms-cloudpack/common-types").BundleMessageLocation | undefined, z.ZodTypeDef, import("@ms-cloudpack/common-types").BundleMessageLocation | undefined>;
8
+ notes: z.ZodType<import("@ms-cloudpack/common-types").BundleMessageNote[] | undefined, z.ZodTypeDef, import("@ms-cloudpack/common-types").BundleMessageNote[] | undefined>;
9
+ }, "strict", z.ZodTypeAny, import("@ms-cloudpack/common-types").BundleMessage, import("@ms-cloudpack/common-types").BundleMessage>, "many">>;
83
10
  warnings: z.ZodOptional<z.ZodArray<z.ZodObject<{
84
- text: z.ZodString;
85
- source: z.ZodString;
86
- location: z.ZodOptional<z.ZodObject<{
87
- file: z.ZodString;
88
- line: z.ZodOptional<z.ZodNumber>;
89
- column: z.ZodOptional<z.ZodNumber>;
90
- }, "strip", z.ZodTypeAny, {
91
- file: string;
92
- line?: number | undefined;
93
- column?: number | undefined;
94
- }, {
95
- file: string;
96
- line?: number | undefined;
97
- column?: number | undefined;
98
- }>>;
99
- notes: z.ZodOptional<z.ZodArray<z.ZodObject<{
100
- text: z.ZodString;
101
- location: z.ZodOptional<z.ZodObject<{
102
- file: z.ZodString;
103
- line: z.ZodOptional<z.ZodNumber>;
104
- column: z.ZodOptional<z.ZodNumber>;
105
- }, "strip", z.ZodTypeAny, {
106
- file: string;
107
- line?: number | undefined;
108
- column?: number | undefined;
109
- }, {
110
- file: string;
111
- line?: number | undefined;
112
- column?: number | undefined;
113
- }>>;
114
- }, "strip", z.ZodTypeAny, {
115
- text: string;
116
- location?: {
117
- file: string;
118
- line?: number | undefined;
119
- column?: number | undefined;
120
- } | undefined;
121
- }, {
122
- text: string;
123
- location?: {
124
- file: string;
125
- line?: number | undefined;
126
- column?: number | undefined;
127
- } | undefined;
128
- }>, "many">>;
129
- }, "strip", z.ZodTypeAny, {
130
- text: string;
131
- source: string;
132
- location?: {
133
- file: string;
134
- line?: number | undefined;
135
- column?: number | undefined;
136
- } | undefined;
137
- notes?: {
138
- text: string;
139
- location?: {
140
- file: string;
141
- line?: number | undefined;
142
- column?: number | undefined;
143
- } | undefined;
144
- }[] | undefined;
145
- }, {
146
- text: string;
147
- source: string;
148
- location?: {
149
- file: string;
150
- line?: number | undefined;
151
- column?: number | undefined;
152
- } | undefined;
153
- notes?: {
154
- text: string;
155
- location?: {
156
- file: string;
157
- line?: number | undefined;
158
- column?: number | undefined;
159
- } | undefined;
160
- }[] | undefined;
161
- }>, "many">>;
11
+ text: z.ZodType<string, z.ZodTypeDef, string>;
12
+ source: z.ZodType<string, z.ZodTypeDef, string>;
13
+ location: z.ZodType<import("@ms-cloudpack/common-types").BundleMessageLocation | undefined, z.ZodTypeDef, import("@ms-cloudpack/common-types").BundleMessageLocation | undefined>;
14
+ notes: z.ZodType<import("@ms-cloudpack/common-types").BundleMessageNote[] | undefined, z.ZodTypeDef, import("@ms-cloudpack/common-types").BundleMessageNote[] | undefined>;
15
+ }, "strict", z.ZodTypeAny, import("@ms-cloudpack/common-types").BundleMessage, import("@ms-cloudpack/common-types").BundleMessage>, "many">>;
162
16
  }, "strip", z.ZodTypeAny, {
163
17
  id: string;
164
- errors?: {
165
- text: string;
166
- source: string;
167
- location?: {
168
- file: string;
169
- line?: number | undefined;
170
- column?: number | undefined;
171
- } | undefined;
172
- notes?: {
173
- text: string;
174
- location?: {
175
- file: string;
176
- line?: number | undefined;
177
- column?: number | undefined;
178
- } | undefined;
179
- }[] | undefined;
180
- }[] | undefined;
181
- warnings?: {
182
- text: string;
183
- source: string;
184
- location?: {
185
- file: string;
186
- line?: number | undefined;
187
- column?: number | undefined;
188
- } | undefined;
189
- notes?: {
190
- text: string;
191
- location?: {
192
- file: string;
193
- line?: number | undefined;
194
- column?: number | undefined;
195
- } | undefined;
196
- }[] | undefined;
197
- }[] | undefined;
18
+ errors?: import("@ms-cloudpack/common-types").BundleMessage[] | undefined;
19
+ warnings?: import("@ms-cloudpack/common-types").BundleMessage[] | undefined;
198
20
  }, {
199
21
  id: string;
200
- errors?: {
201
- text: string;
202
- source: string;
203
- location?: {
204
- file: string;
205
- line?: number | undefined;
206
- column?: number | undefined;
207
- } | undefined;
208
- notes?: {
209
- text: string;
210
- location?: {
211
- file: string;
212
- line?: number | undefined;
213
- column?: number | undefined;
214
- } | undefined;
215
- }[] | undefined;
216
- }[] | undefined;
217
- warnings?: {
218
- text: string;
219
- source: string;
220
- location?: {
221
- file: string;
222
- line?: number | undefined;
223
- column?: number | undefined;
224
- } | undefined;
225
- notes?: {
226
- text: string;
227
- location?: {
228
- file: string;
229
- line?: number | undefined;
230
- column?: number | undefined;
231
- } | undefined;
232
- }[] | undefined;
233
- }[] | undefined;
22
+ errors?: import("@ms-cloudpack/common-types").BundleMessage[] | undefined;
23
+ warnings?: import("@ms-cloudpack/common-types").BundleMessage[] | undefined;
234
24
  }>;
235
25
  export type TaskEndDescription = z.infer<typeof ZodTaskEndDescription>;
236
26
  //# sourceMappingURL=TaskEndDescription.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"TaskEndDescription.d.ts","sourceRoot":"","sources":["../../src/types/TaskEndDescription.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAIhC,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC"}
1
+ {"version":3,"file":"TaskEndDescription.d.ts","sourceRoot":"","sources":["../../src/types/TaskEndDescription.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;EAIhC,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC"}