@ms-cloudpack/api-server 0.60.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 (42) hide show
  1. package/lib/data/busSources.d.ts +18 -292
  2. package/lib/data/busSources.d.ts.map +1 -1
  3. package/lib/index.d.ts +2 -1
  4. package/lib/index.d.ts.map +1 -1
  5. package/lib/index.js +1 -1
  6. package/lib/index.js.map +1 -1
  7. package/lib/types/TaskDescription.d.ts +14 -224
  8. package/lib/types/TaskDescription.d.ts.map +1 -1
  9. package/lib/types/TaskDescription.js +2 -2
  10. package/lib/types/TaskDescription.js.map +1 -1
  11. package/lib/types/TaskEndDescription.d.ts +14 -224
  12. package/lib/types/TaskEndDescription.d.ts.map +1 -1
  13. package/lib/types/TaskList.d.ts +18 -292
  14. package/lib/types/TaskList.d.ts.map +1 -1
  15. package/lib/types/TaskMessage.d.ts +11 -108
  16. package/lib/types/TaskMessage.d.ts.map +1 -1
  17. package/lib/types/TaskMessage.js +3 -2
  18. package/lib/types/TaskMessage.js.map +1 -1
  19. package/lib/types/TaskMessageLocation.d.ts +6 -13
  20. package/lib/types/TaskMessageLocation.d.ts.map +1 -1
  21. package/lib/types/TaskMessageLocation.js +2 -1
  22. package/lib/types/TaskMessageLocation.js.map +1 -1
  23. package/lib/utilities/matchingZodObject.d.ts +4 -0
  24. package/lib/utilities/matchingZodObject.d.ts.map +1 -1
  25. package/lib/utilities/matchingZodObject.js +4 -0
  26. package/lib/utilities/matchingZodObject.js.map +1 -1
  27. package/lib/utilities/writeStubForDensityEntries.d.ts.map +1 -1
  28. package/lib/utilities/writeStubForDensityEntries.js +2 -1
  29. package/lib/utilities/writeStubForDensityEntries.js.map +1 -1
  30. package/package.json +1 -1
  31. package/lib/types/TaskResponse.d.ts +0 -337
  32. package/lib/types/TaskResponse.d.ts.map +0 -1
  33. package/lib/types/TaskResponse.js +0 -8
  34. package/lib/types/TaskResponse.js.map +0 -1
  35. package/lib/types/TaskResult.d.ts +0 -233
  36. package/lib/types/TaskResult.d.ts.map +0 -1
  37. package/lib/types/TaskResult.js +0 -7
  38. package/lib/types/TaskResult.js.map +0 -1
  39. package/lib/types/Timings.d.ts +0 -20
  40. package/lib/types/Timings.d.ts.map +0 -1
  41. package/lib/types/Timings.js +0 -5
  42. package/lib/types/Timings.js.map +0 -1
@@ -1,233 +0,0 @@
1
- import z from 'zod';
2
- export declare const ZodTaskResult: z.ZodObject<{
3
- errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
4
- text: z.ZodString;
5
- source: z.ZodString;
6
- location: z.ZodOptional<z.ZodObject<{
7
- file: z.ZodString;
8
- line: z.ZodOptional<z.ZodNumber>;
9
- column: z.ZodOptional<z.ZodNumber>;
10
- }, "strip", z.ZodTypeAny, {
11
- file: string;
12
- line?: number | undefined;
13
- column?: number | undefined;
14
- }, {
15
- file: string;
16
- line?: number | undefined;
17
- column?: number | undefined;
18
- }>>;
19
- notes: z.ZodOptional<z.ZodArray<z.ZodObject<{
20
- text: z.ZodString;
21
- location: z.ZodOptional<z.ZodObject<{
22
- file: z.ZodString;
23
- line: z.ZodOptional<z.ZodNumber>;
24
- column: z.ZodOptional<z.ZodNumber>;
25
- }, "strip", z.ZodTypeAny, {
26
- file: string;
27
- line?: number | undefined;
28
- column?: number | undefined;
29
- }, {
30
- file: string;
31
- line?: number | undefined;
32
- column?: number | undefined;
33
- }>>;
34
- }, "strip", z.ZodTypeAny, {
35
- text: string;
36
- location?: {
37
- file: string;
38
- line?: number | undefined;
39
- column?: number | undefined;
40
- } | undefined;
41
- }, {
42
- text: string;
43
- location?: {
44
- file: string;
45
- line?: number | undefined;
46
- column?: number | undefined;
47
- } | undefined;
48
- }>, "many">>;
49
- }, "strip", z.ZodTypeAny, {
50
- text: string;
51
- source: string;
52
- location?: {
53
- file: string;
54
- line?: number | undefined;
55
- column?: number | undefined;
56
- } | undefined;
57
- notes?: {
58
- text: string;
59
- location?: {
60
- file: string;
61
- line?: number | undefined;
62
- column?: number | undefined;
63
- } | undefined;
64
- }[] | undefined;
65
- }, {
66
- text: string;
67
- source: string;
68
- location?: {
69
- file: string;
70
- line?: number | undefined;
71
- column?: number | undefined;
72
- } | undefined;
73
- notes?: {
74
- text: string;
75
- location?: {
76
- file: string;
77
- line?: number | undefined;
78
- column?: number | undefined;
79
- } | undefined;
80
- }[] | undefined;
81
- }>, "many">>;
82
- warnings: z.ZodOptional<z.ZodArray<z.ZodObject<{
83
- text: z.ZodString;
84
- source: z.ZodString;
85
- location: z.ZodOptional<z.ZodObject<{
86
- file: z.ZodString;
87
- line: z.ZodOptional<z.ZodNumber>;
88
- column: z.ZodOptional<z.ZodNumber>;
89
- }, "strip", z.ZodTypeAny, {
90
- file: string;
91
- line?: number | undefined;
92
- column?: number | undefined;
93
- }, {
94
- file: string;
95
- line?: number | undefined;
96
- column?: number | undefined;
97
- }>>;
98
- notes: z.ZodOptional<z.ZodArray<z.ZodObject<{
99
- text: z.ZodString;
100
- location: z.ZodOptional<z.ZodObject<{
101
- file: z.ZodString;
102
- line: z.ZodOptional<z.ZodNumber>;
103
- column: z.ZodOptional<z.ZodNumber>;
104
- }, "strip", z.ZodTypeAny, {
105
- file: string;
106
- line?: number | undefined;
107
- column?: number | undefined;
108
- }, {
109
- file: string;
110
- line?: number | undefined;
111
- column?: number | undefined;
112
- }>>;
113
- }, "strip", z.ZodTypeAny, {
114
- text: string;
115
- location?: {
116
- file: string;
117
- line?: number | undefined;
118
- column?: number | undefined;
119
- } | undefined;
120
- }, {
121
- text: string;
122
- location?: {
123
- file: string;
124
- line?: number | undefined;
125
- column?: number | undefined;
126
- } | undefined;
127
- }>, "many">>;
128
- }, "strip", z.ZodTypeAny, {
129
- text: string;
130
- source: string;
131
- location?: {
132
- file: string;
133
- line?: number | undefined;
134
- column?: number | undefined;
135
- } | undefined;
136
- notes?: {
137
- text: string;
138
- location?: {
139
- file: string;
140
- line?: number | undefined;
141
- column?: number | undefined;
142
- } | undefined;
143
- }[] | undefined;
144
- }, {
145
- text: string;
146
- source: string;
147
- location?: {
148
- file: string;
149
- line?: number | undefined;
150
- column?: number | undefined;
151
- } | undefined;
152
- notes?: {
153
- text: string;
154
- location?: {
155
- file: string;
156
- line?: number | undefined;
157
- column?: number | undefined;
158
- } | undefined;
159
- }[] | undefined;
160
- }>, "many">>;
161
- }, "strip", z.ZodTypeAny, {
162
- errors?: {
163
- text: string;
164
- source: string;
165
- location?: {
166
- file: string;
167
- line?: number | undefined;
168
- column?: number | undefined;
169
- } | undefined;
170
- notes?: {
171
- text: string;
172
- location?: {
173
- file: string;
174
- line?: number | undefined;
175
- column?: number | undefined;
176
- } | undefined;
177
- }[] | undefined;
178
- }[] | undefined;
179
- warnings?: {
180
- text: string;
181
- source: string;
182
- location?: {
183
- file: string;
184
- line?: number | undefined;
185
- column?: number | undefined;
186
- } | undefined;
187
- notes?: {
188
- text: string;
189
- location?: {
190
- file: string;
191
- line?: number | undefined;
192
- column?: number | undefined;
193
- } | undefined;
194
- }[] | undefined;
195
- }[] | undefined;
196
- }, {
197
- errors?: {
198
- text: string;
199
- source: string;
200
- location?: {
201
- file: string;
202
- line?: number | undefined;
203
- column?: number | undefined;
204
- } | undefined;
205
- notes?: {
206
- text: string;
207
- location?: {
208
- file: string;
209
- line?: number | undefined;
210
- column?: number | undefined;
211
- } | undefined;
212
- }[] | undefined;
213
- }[] | undefined;
214
- warnings?: {
215
- text: string;
216
- source: string;
217
- location?: {
218
- file: string;
219
- line?: number | undefined;
220
- column?: number | undefined;
221
- } | undefined;
222
- notes?: {
223
- text: string;
224
- location?: {
225
- file: string;
226
- line?: number | undefined;
227
- column?: number | undefined;
228
- } | undefined;
229
- }[] | undefined;
230
- }[] | undefined;
231
- }>;
232
- export type TaskResult = z.infer<typeof ZodTaskResult>;
233
- //# sourceMappingURL=TaskResult.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"TaskResult.d.ts","sourceRoot":"","sources":["../../src/types/TaskResult.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGxB,CAAC;AAEH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC"}
@@ -1,7 +0,0 @@
1
- import z from 'zod';
2
- import { ZodTaskMessage } from './TaskMessage.js';
3
- export const ZodTaskResult = z.object({
4
- errors: z.array(ZodTaskMessage).optional(),
5
- warnings: z.array(ZodTaskMessage).optional(),
6
- });
7
- //# sourceMappingURL=TaskResult.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"TaskResult.js","sourceRoot":"","sources":["../../src/types/TaskResult.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAElD,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,CAAC,MAAM,CAAC;IACpC,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,QAAQ,EAAE;IAC1C,QAAQ,EAAE,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,QAAQ,EAAE;CAC7C,CAAC,CAAC","sourcesContent":["import z from 'zod';\nimport { ZodTaskMessage } from './TaskMessage.js';\n\nexport const ZodTaskResult = z.object({\n errors: z.array(ZodTaskMessage).optional(),\n warnings: z.array(ZodTaskMessage).optional(),\n});\n\nexport type TaskResult = z.infer<typeof ZodTaskResult>;\n"]}
@@ -1,20 +0,0 @@
1
- import z from 'zod';
2
- /** Collection of timings. */
3
- export declare const ZodTimings: z.ZodArray<z.ZodObject<{
4
- name: z.ZodString;
5
- start: z.ZodNumber;
6
- end: z.ZodOptional<z.ZodNumber>;
7
- threwException: z.ZodOptional<z.ZodBoolean>;
8
- }, "strip", z.ZodTypeAny, {
9
- name: string;
10
- start: number;
11
- end?: number | undefined;
12
- threwException?: boolean | undefined;
13
- }, {
14
- name: string;
15
- start: number;
16
- end?: number | undefined;
17
- threwException?: boolean | undefined;
18
- }>, "many">;
19
- export type Timings = z.infer<typeof ZodTimings>;
20
- //# sourceMappingURL=Timings.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Timings.d.ts","sourceRoot":"","sources":["../../src/types/Timings.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,6BAA6B;AAC7B,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;WAAqB,CAAC;AAE7C,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC"}
@@ -1,5 +0,0 @@
1
- import z from 'zod';
2
- import { ZodTiming } from './Timing.js';
3
- /** Collection of timings. */
4
- export const ZodTimings = z.array(ZodTiming);
5
- //# sourceMappingURL=Timings.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Timings.js","sourceRoot":"","sources":["../../src/types/Timings.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAExC,6BAA6B;AAC7B,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC","sourcesContent":["import z from 'zod';\nimport { ZodTiming } from './Timing.js';\n\n/** Collection of timings. */\nexport const ZodTimings = z.array(ZodTiming);\n\nexport type Timings = z.infer<typeof ZodTimings>;\n"]}