@lengors/protoscout-schemas 2.4.0-dev.1 → 2.4.0-dev.2
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/dist/scrapers/scraper-response-result-grading.d.ts +2 -0
- package/dist/scrapers/scraper-response-result-grading.d.ts.map +1 -1
- package/dist/scrapers/scraper-response-result-grading.js +1 -1
- package/dist/scrapers/scraper-response-result-grading.js.map +1 -1
- package/dist/scrapers/scraper-response-result.d.ts +8 -4
- package/dist/scrapers/scraper-response-result.d.ts.map +1 -1
- package/dist/scrapers/scraper-response.d.ts +8 -4
- package/dist/scrapers/scraper-response.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -10,6 +10,8 @@ export declare const ScraperResponseResultGrading: z.ZodMiniEnum<{
|
|
|
10
10
|
c: "c";
|
|
11
11
|
d: "d";
|
|
12
12
|
e: "e";
|
|
13
|
+
f: "f";
|
|
14
|
+
g: "g";
|
|
13
15
|
}>;
|
|
14
16
|
export type ScraperResponseResultGrading = z.infer<typeof ScraperResponseResultGrading>;
|
|
15
17
|
//# sourceMappingURL=scraper-response-result-grading.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scraper-response-result-grading.d.ts","sourceRoot":"","sources":["../../src/main/ts/scrapers/scraper-response-result-grading.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,UAAU,CAAC;AAE7B;;;;GAIG;AACH,eAAO,MAAM,4BAA4B
|
|
1
|
+
{"version":3,"file":"scraper-response-result-grading.d.ts","sourceRoot":"","sources":["../../src/main/ts/scrapers/scraper-response-result-grading.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,UAAU,CAAC;AAE7B;;;;GAIG;AACH,eAAO,MAAM,4BAA4B;;;;;;;;EAUrC,CAAC;AAEL,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAChD,OAAO,4BAA4B,CACpC,CAAC"}
|
|
@@ -5,7 +5,7 @@ import { z } from "zod/mini";
|
|
|
5
5
|
* @author lengors
|
|
6
6
|
*/
|
|
7
7
|
export const ScraperResponseResultGrading = z
|
|
8
|
-
.enum(["a", "b", "c", "d", "e"])
|
|
8
|
+
.enum(["a", "b", "c", "d", "e", "f", "g"])
|
|
9
9
|
.register(z.globalRegistry, {
|
|
10
10
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
11
11
|
id: "io/github/lengors/protoscout/domain/scrapers/models/scraper-response-result-grading.json",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scraper-response-result-grading.js","sourceRoot":"","sources":["../../src/main/ts/scrapers/scraper-response-result-grading.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,UAAU,CAAC;AAE7B;;;;GAIG;AACH,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC;KAC1C,IAAI,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"scraper-response-result-grading.js","sourceRoot":"","sources":["../../src/main/ts/scrapers/scraper-response-result-grading.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,UAAU,CAAC;AAE7B;;;;GAIG;AACH,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC;KAC1C,IAAI,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;KACzC,QAAQ,CAAC,CAAC,CAAC,cAAc,EAAE;IAC1B,OAAO,EAAE,wCAAwC;IACjD,EAAE,EAAE,0FAA0F;IAC9F,KAAK,EAAE,kCAAkC;IACzC,WAAW,EAAE,gCAAgC;IAC7C,QAAQ,EACN,kFAAkF;IACpF,cAAc,EAAE,CAAC,sBAAsB,CAAC;CACzC,CAAC,CAAC"}
|
|
@@ -112,6 +112,8 @@ export declare const ScraperResponseResult: z.ZodMiniPipe<z.ZodMiniReadonly<z.Zo
|
|
|
112
112
|
c: "c";
|
|
113
113
|
d: "d";
|
|
114
114
|
e: "e";
|
|
115
|
+
f: "f";
|
|
116
|
+
g: "g";
|
|
115
117
|
}>>;
|
|
116
118
|
noise: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
117
119
|
a: "a";
|
|
@@ -125,6 +127,8 @@ export declare const ScraperResponseResult: z.ZodMiniPipe<z.ZodMiniReadonly<z.Zo
|
|
|
125
127
|
c: "c";
|
|
126
128
|
d: "d";
|
|
127
129
|
e: "e";
|
|
130
|
+
f: "f";
|
|
131
|
+
g: "g";
|
|
128
132
|
}>>;
|
|
129
133
|
details: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniReadonly<z.ZodMiniObject<{
|
|
130
134
|
name: z.ZodMiniString<string>;
|
|
@@ -166,10 +170,10 @@ export declare const ScraperResponseResult: z.ZodMiniPipe<z.ZodMiniReadonly<z.Zo
|
|
|
166
170
|
}>;
|
|
167
171
|
}> | undefined;
|
|
168
172
|
}[] | undefined;
|
|
169
|
-
grip?: "a" | "b" | "c" | "d" | "e" | undefined;
|
|
173
|
+
grip?: "a" | "b" | "c" | "d" | "e" | "f" | "g" | undefined;
|
|
170
174
|
noise?: "a" | "b" | "c" | undefined;
|
|
171
175
|
decibels?: number | undefined;
|
|
172
|
-
consumption?: "a" | "b" | "c" | "d" | "e" | undefined;
|
|
176
|
+
consumption?: "a" | "b" | "c" | "d" | "e" | "f" | "g" | undefined;
|
|
173
177
|
details?: readonly (Readonly<{
|
|
174
178
|
name: string;
|
|
175
179
|
image: string;
|
|
@@ -212,10 +216,10 @@ export declare const ScraperResponseResult: z.ZodMiniPipe<z.ZodMiniReadonly<z.Zo
|
|
|
212
216
|
}>;
|
|
213
217
|
}> | undefined;
|
|
214
218
|
}[] | undefined;
|
|
215
|
-
grip?: "a" | "b" | "c" | "d" | "e" | undefined;
|
|
219
|
+
grip?: "a" | "b" | "c" | "d" | "e" | "f" | "g" | undefined;
|
|
216
220
|
noise?: "a" | "b" | "c" | undefined;
|
|
217
221
|
decibels?: number | undefined;
|
|
218
|
-
consumption?: "a" | "b" | "c" | "d" | "e" | undefined;
|
|
222
|
+
consumption?: "a" | "b" | "c" | "d" | "e" | "f" | "g" | undefined;
|
|
219
223
|
details?: readonly (Readonly<{
|
|
220
224
|
name: string;
|
|
221
225
|
image: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scraper-response-result.d.ts","sourceRoot":"","sources":["../../src/main/ts/scrapers/scraper-response-result.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,UAAU,CAAC;AAQ7B;;;;GAIG;AACH,eAAO,MAAM,qBAAqB
|
|
1
|
+
{"version":3,"file":"scraper-response-result.d.ts","sourceRoot":"","sources":["../../src/main/ts/scrapers/scraper-response-result.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,UAAU,CAAC;AAQ7B;;;;GAIG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAoEjC,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC"}
|
|
@@ -140,6 +140,8 @@ export declare const ScraperResponse: z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.Z
|
|
|
140
140
|
c: "c";
|
|
141
141
|
d: "d";
|
|
142
142
|
e: "e";
|
|
143
|
+
f: "f";
|
|
144
|
+
g: "g";
|
|
143
145
|
}>>;
|
|
144
146
|
noise: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
145
147
|
a: "a";
|
|
@@ -153,6 +155,8 @@ export declare const ScraperResponse: z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.Z
|
|
|
153
155
|
c: "c";
|
|
154
156
|
d: "d";
|
|
155
157
|
e: "e";
|
|
158
|
+
f: "f";
|
|
159
|
+
g: "g";
|
|
156
160
|
}>>;
|
|
157
161
|
details: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniReadonly<z.ZodMiniObject<{
|
|
158
162
|
name: z.ZodMiniString<string>;
|
|
@@ -194,10 +198,10 @@ export declare const ScraperResponse: z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.Z
|
|
|
194
198
|
}>;
|
|
195
199
|
}> | undefined;
|
|
196
200
|
}[] | undefined;
|
|
197
|
-
grip?: "a" | "b" | "c" | "d" | "e" | undefined;
|
|
201
|
+
grip?: "a" | "b" | "c" | "d" | "e" | "f" | "g" | undefined;
|
|
198
202
|
noise?: "a" | "b" | "c" | undefined;
|
|
199
203
|
decibels?: number | undefined;
|
|
200
|
-
consumption?: "a" | "b" | "c" | "d" | "e" | undefined;
|
|
204
|
+
consumption?: "a" | "b" | "c" | "d" | "e" | "f" | "g" | undefined;
|
|
201
205
|
details?: readonly (Readonly<{
|
|
202
206
|
name: string;
|
|
203
207
|
image: string;
|
|
@@ -240,10 +244,10 @@ export declare const ScraperResponse: z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.Z
|
|
|
240
244
|
}>;
|
|
241
245
|
}> | undefined;
|
|
242
246
|
}[] | undefined;
|
|
243
|
-
grip?: "a" | "b" | "c" | "d" | "e" | undefined;
|
|
247
|
+
grip?: "a" | "b" | "c" | "d" | "e" | "f" | "g" | undefined;
|
|
244
248
|
noise?: "a" | "b" | "c" | undefined;
|
|
245
249
|
decibels?: number | undefined;
|
|
246
|
-
consumption?: "a" | "b" | "c" | "d" | "e" | undefined;
|
|
250
|
+
consumption?: "a" | "b" | "c" | "d" | "e" | "f" | "g" | undefined;
|
|
247
251
|
details?: readonly (Readonly<{
|
|
248
252
|
name: string;
|
|
249
253
|
image: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scraper-response.d.ts","sourceRoot":"","sources":["../../src/main/ts/scrapers/scraper-response.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,UAAU,CAAC;AAI7B;;;;GAIG;AACH,eAAO,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"scraper-response.d.ts","sourceRoot":"","sources":["../../src/main/ts/scrapers/scraper-response.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,UAAU,CAAC;AAI7B;;;;GAIG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAOxB,CAAC;AAEL,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC"}
|