@prosopo/types 0.3.38 → 0.3.40
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/cjs/index.cjs +1 -0
- package/dist/cjs/provider/api.cjs +11 -0
- package/dist/cjs/provider/index.cjs +1 -0
- package/dist/config/config.d.ts +41 -30
- package/dist/config/config.d.ts.map +1 -1
- package/dist/contract/artifacts.d.ts +229 -229
- package/dist/datasets/captcha.d.ts +75 -40
- package/dist/datasets/captcha.d.ts.map +1 -1
- package/dist/datasets/dataset.d.ts +109 -40
- package/dist/datasets/dataset.d.ts.map +1 -1
- package/dist/procaptcha/manager.d.ts +6 -6
- package/dist/procaptcha/storage.d.ts +2 -2
- package/dist/provider/api.d.ts +11 -0
- package/dist/provider/api.d.ts.map +1 -1
- package/dist/provider/api.js +4 -0
- package/dist/provider/api.js.map +1 -1
- package/package.json +11 -9
|
@@ -122,11 +122,13 @@ export declare const CaptchaItemSchema: import("zod").ZodObject<{
|
|
|
122
122
|
data: string;
|
|
123
123
|
type: CaptchaItemTypes;
|
|
124
124
|
}>;
|
|
125
|
-
export declare const HashedCaptchaItemSchema: import("zod").ZodObject<{
|
|
125
|
+
export declare const HashedCaptchaItemSchema: import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
|
126
|
+
hash: import("zod").ZodString;
|
|
126
127
|
data: import("zod").ZodString;
|
|
127
128
|
type: import("zod").ZodNativeEnum<typeof CaptchaItemTypes>;
|
|
129
|
+
}, {
|
|
128
130
|
hash: import("zod").ZodString;
|
|
129
|
-
}
|
|
131
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
130
132
|
hash: string;
|
|
131
133
|
data: string;
|
|
132
134
|
type: CaptchaItemTypes;
|
|
@@ -135,12 +137,15 @@ export declare const HashedCaptchaItemSchema: import("zod").ZodObject<{
|
|
|
135
137
|
data: string;
|
|
136
138
|
type: CaptchaItemTypes;
|
|
137
139
|
}>;
|
|
138
|
-
export declare const LabelledItemSchema: import("zod").ZodObject<{
|
|
140
|
+
export declare const LabelledItemSchema: import("zod").ZodObject<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<{
|
|
139
141
|
hash: import("zod").ZodString;
|
|
140
142
|
data: import("zod").ZodString;
|
|
141
143
|
type: import("zod").ZodNativeEnum<typeof CaptchaItemTypes>;
|
|
144
|
+
}, {
|
|
145
|
+
hash: import("zod").ZodString;
|
|
146
|
+
}>, {
|
|
142
147
|
label: import("zod").ZodString;
|
|
143
|
-
}
|
|
148
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
144
149
|
hash: string;
|
|
145
150
|
data: string;
|
|
146
151
|
type: CaptchaItemTypes;
|
|
@@ -151,12 +156,15 @@ export declare const LabelledItemSchema: import("zod").ZodObject<{
|
|
|
151
156
|
type: CaptchaItemTypes;
|
|
152
157
|
label: string;
|
|
153
158
|
}>;
|
|
154
|
-
export declare const MaybeLabelledHashedItemSchema: import("zod").ZodObject<{
|
|
159
|
+
export declare const MaybeLabelledHashedItemSchema: import("zod").ZodObject<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<{
|
|
155
160
|
hash: import("zod").ZodString;
|
|
156
161
|
data: import("zod").ZodString;
|
|
157
162
|
type: import("zod").ZodNativeEnum<typeof CaptchaItemTypes>;
|
|
163
|
+
}, {
|
|
164
|
+
hash: import("zod").ZodString;
|
|
165
|
+
}>, {
|
|
158
166
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
159
|
-
}
|
|
167
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
160
168
|
hash: string;
|
|
161
169
|
data: string;
|
|
162
170
|
type: CaptchaItemTypes;
|
|
@@ -167,13 +175,14 @@ export declare const MaybeLabelledHashedItemSchema: import("zod").ZodObject<{
|
|
|
167
175
|
type: CaptchaItemTypes;
|
|
168
176
|
label?: string | undefined;
|
|
169
177
|
}>;
|
|
170
|
-
export declare const SelectAllCaptchaSchemaRaw: import("zod").ZodObject<{
|
|
178
|
+
export declare const SelectAllCaptchaSchemaRaw: import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
|
171
179
|
captchaId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
172
180
|
captchaContentId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
173
181
|
salt: import("zod").ZodString;
|
|
174
182
|
solution: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
175
183
|
unlabelled: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
176
184
|
timeLimit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
185
|
+
}, {
|
|
177
186
|
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
178
187
|
hash: import("zod").ZodString;
|
|
179
188
|
data: import("zod").ZodString;
|
|
@@ -188,7 +197,7 @@ export declare const SelectAllCaptchaSchemaRaw: import("zod").ZodObject<{
|
|
|
188
197
|
type: CaptchaItemTypes;
|
|
189
198
|
}>, "many">;
|
|
190
199
|
target: import("zod").ZodString;
|
|
191
|
-
}
|
|
200
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
192
201
|
items: {
|
|
193
202
|
hash: string;
|
|
194
203
|
data: string;
|
|
@@ -215,7 +224,14 @@ export declare const SelectAllCaptchaSchemaRaw: import("zod").ZodObject<{
|
|
|
215
224
|
unlabelled?: number[] | undefined;
|
|
216
225
|
timeLimit?: number | undefined;
|
|
217
226
|
}>;
|
|
218
|
-
export declare const SelectAllCaptchaSchema: import("zod").ZodObject<{
|
|
227
|
+
export declare const SelectAllCaptchaSchema: import("zod").ZodObject<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<{
|
|
228
|
+
captchaId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
229
|
+
captchaContentId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
230
|
+
salt: import("zod").ZodString;
|
|
231
|
+
solution: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
232
|
+
unlabelled: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
233
|
+
timeLimit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
234
|
+
}, {
|
|
219
235
|
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
220
236
|
hash: import("zod").ZodString;
|
|
221
237
|
data: import("zod").ZodString;
|
|
@@ -229,14 +245,11 @@ export declare const SelectAllCaptchaSchema: import("zod").ZodObject<{
|
|
|
229
245
|
data: string;
|
|
230
246
|
type: CaptchaItemTypes;
|
|
231
247
|
}>, "many">;
|
|
232
|
-
captchaId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
233
|
-
captchaContentId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
234
|
-
salt: import("zod").ZodString;
|
|
235
|
-
timeLimit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
236
248
|
target: import("zod").ZodString;
|
|
249
|
+
}>, {
|
|
237
250
|
solution: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
238
251
|
unlabelled: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
239
|
-
}
|
|
252
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
240
253
|
items: {
|
|
241
254
|
hash: string;
|
|
242
255
|
data: string;
|
|
@@ -246,9 +259,9 @@ export declare const SelectAllCaptchaSchema: import("zod").ZodObject<{
|
|
|
246
259
|
target: string;
|
|
247
260
|
captchaId?: string | undefined;
|
|
248
261
|
captchaContentId?: string | undefined;
|
|
249
|
-
timeLimit?: number | undefined;
|
|
250
262
|
solution?: string[] | undefined;
|
|
251
263
|
unlabelled?: string[] | undefined;
|
|
264
|
+
timeLimit?: number | undefined;
|
|
252
265
|
}, {
|
|
253
266
|
items: {
|
|
254
267
|
hash: string;
|
|
@@ -259,11 +272,18 @@ export declare const SelectAllCaptchaSchema: import("zod").ZodObject<{
|
|
|
259
272
|
target: string;
|
|
260
273
|
captchaId?: string | undefined;
|
|
261
274
|
captchaContentId?: string | undefined;
|
|
262
|
-
timeLimit?: number | undefined;
|
|
263
275
|
solution?: string[] | undefined;
|
|
264
276
|
unlabelled?: string[] | undefined;
|
|
277
|
+
timeLimit?: number | undefined;
|
|
265
278
|
}>;
|
|
266
|
-
export declare const SelectAllCaptchaSchemaWithNumericSolution: import("zod").ZodObject<{
|
|
279
|
+
export declare const SelectAllCaptchaSchemaWithNumericSolution: import("zod").ZodObject<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<{
|
|
280
|
+
captchaId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
281
|
+
captchaContentId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
282
|
+
salt: import("zod").ZodString;
|
|
283
|
+
solution: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
284
|
+
unlabelled: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
285
|
+
timeLimit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
286
|
+
}, {
|
|
267
287
|
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
268
288
|
hash: import("zod").ZodString;
|
|
269
289
|
data: import("zod").ZodString;
|
|
@@ -277,14 +297,14 @@ export declare const SelectAllCaptchaSchemaWithNumericSolution: import("zod").Zo
|
|
|
277
297
|
data: string;
|
|
278
298
|
type: CaptchaItemTypes;
|
|
279
299
|
}>, "many">;
|
|
280
|
-
captchaId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
281
|
-
captchaContentId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
282
|
-
salt: import("zod").ZodString;
|
|
283
|
-
timeLimit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
284
300
|
target: import("zod").ZodString;
|
|
301
|
+
}>, {
|
|
302
|
+
solution: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
303
|
+
unlabelled: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
304
|
+
}>, {
|
|
285
305
|
solution: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
286
306
|
unlabelled: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
287
|
-
}
|
|
307
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
288
308
|
items: {
|
|
289
309
|
hash: string;
|
|
290
310
|
data: string;
|
|
@@ -294,9 +314,9 @@ export declare const SelectAllCaptchaSchemaWithNumericSolution: import("zod").Zo
|
|
|
294
314
|
target: string;
|
|
295
315
|
captchaId?: string | undefined;
|
|
296
316
|
captchaContentId?: string | undefined;
|
|
297
|
-
timeLimit?: number | undefined;
|
|
298
317
|
solution?: number[] | undefined;
|
|
299
318
|
unlabelled?: number[] | undefined;
|
|
319
|
+
timeLimit?: number | undefined;
|
|
300
320
|
}, {
|
|
301
321
|
items: {
|
|
302
322
|
hash: string;
|
|
@@ -307,17 +327,18 @@ export declare const SelectAllCaptchaSchemaWithNumericSolution: import("zod").Zo
|
|
|
307
327
|
target: string;
|
|
308
328
|
captchaId?: string | undefined;
|
|
309
329
|
captchaContentId?: string | undefined;
|
|
310
|
-
timeLimit?: number | undefined;
|
|
311
330
|
solution?: number[] | undefined;
|
|
312
331
|
unlabelled?: number[] | undefined;
|
|
332
|
+
timeLimit?: number | undefined;
|
|
313
333
|
}>;
|
|
314
|
-
export declare const CaptchasSchema: import("zod").ZodArray<import("zod").ZodObject<{
|
|
334
|
+
export declare const CaptchasSchema: import("zod").ZodArray<import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
|
315
335
|
captchaId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
316
336
|
captchaContentId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
317
337
|
salt: import("zod").ZodString;
|
|
318
338
|
solution: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
319
339
|
unlabelled: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
320
340
|
timeLimit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
341
|
+
}, {
|
|
321
342
|
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
322
343
|
hash: import("zod").ZodString;
|
|
323
344
|
data: import("zod").ZodString;
|
|
@@ -332,7 +353,7 @@ export declare const CaptchasSchema: import("zod").ZodArray<import("zod").ZodObj
|
|
|
332
353
|
type: CaptchaItemTypes;
|
|
333
354
|
}>, "many">;
|
|
334
355
|
target: import("zod").ZodString;
|
|
335
|
-
}
|
|
356
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
336
357
|
items: {
|
|
337
358
|
hash: string;
|
|
338
359
|
data: string;
|
|
@@ -359,7 +380,14 @@ export declare const CaptchasSchema: import("zod").ZodArray<import("zod").ZodObj
|
|
|
359
380
|
unlabelled?: number[] | undefined;
|
|
360
381
|
timeLimit?: number | undefined;
|
|
361
382
|
}>, "many">;
|
|
362
|
-
export declare const CaptchasWithNumericSolutionSchema: import("zod").ZodArray<import("zod").ZodObject<{
|
|
383
|
+
export declare const CaptchasWithNumericSolutionSchema: import("zod").ZodArray<import("zod").ZodObject<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<{
|
|
384
|
+
captchaId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
385
|
+
captchaContentId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
386
|
+
salt: import("zod").ZodString;
|
|
387
|
+
solution: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
388
|
+
unlabelled: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
389
|
+
timeLimit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
390
|
+
}, {
|
|
363
391
|
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
364
392
|
hash: import("zod").ZodString;
|
|
365
393
|
data: import("zod").ZodString;
|
|
@@ -373,14 +401,14 @@ export declare const CaptchasWithNumericSolutionSchema: import("zod").ZodArray<i
|
|
|
373
401
|
data: string;
|
|
374
402
|
type: CaptchaItemTypes;
|
|
375
403
|
}>, "many">;
|
|
376
|
-
captchaId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
377
|
-
captchaContentId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
378
|
-
salt: import("zod").ZodString;
|
|
379
|
-
timeLimit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
380
404
|
target: import("zod").ZodString;
|
|
405
|
+
}>, {
|
|
406
|
+
solution: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
407
|
+
unlabelled: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
408
|
+
}>, {
|
|
381
409
|
solution: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
382
410
|
unlabelled: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
383
|
-
}
|
|
411
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
384
412
|
items: {
|
|
385
413
|
hash: string;
|
|
386
414
|
data: string;
|
|
@@ -390,9 +418,9 @@ export declare const CaptchasWithNumericSolutionSchema: import("zod").ZodArray<i
|
|
|
390
418
|
target: string;
|
|
391
419
|
captchaId?: string | undefined;
|
|
392
420
|
captchaContentId?: string | undefined;
|
|
393
|
-
timeLimit?: number | undefined;
|
|
394
421
|
solution?: number[] | undefined;
|
|
395
422
|
unlabelled?: number[] | undefined;
|
|
423
|
+
timeLimit?: number | undefined;
|
|
396
424
|
}, {
|
|
397
425
|
items: {
|
|
398
426
|
hash: string;
|
|
@@ -403,9 +431,9 @@ export declare const CaptchasWithNumericSolutionSchema: import("zod").ZodArray<i
|
|
|
403
431
|
target: string;
|
|
404
432
|
captchaId?: string | undefined;
|
|
405
433
|
captchaContentId?: string | undefined;
|
|
406
|
-
timeLimit?: number | undefined;
|
|
407
434
|
solution?: number[] | undefined;
|
|
408
435
|
unlabelled?: number[] | undefined;
|
|
436
|
+
timeLimit?: number | undefined;
|
|
409
437
|
}>, "many">;
|
|
410
438
|
export declare const CaptchaSolutionSchema: import("zod").ZodObject<{
|
|
411
439
|
captchaId: import("zod").ZodString;
|
|
@@ -440,12 +468,15 @@ export declare const CaptchaSolutionArraySchema: import("zod").ZodArray<import("
|
|
|
440
468
|
solution: string[];
|
|
441
469
|
}>, "many">;
|
|
442
470
|
export declare const DataSchema: import("zod").ZodObject<{
|
|
443
|
-
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
471
|
+
items: import("zod").ZodArray<import("zod").ZodObject<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<{
|
|
444
472
|
hash: import("zod").ZodString;
|
|
445
473
|
data: import("zod").ZodString;
|
|
446
474
|
type: import("zod").ZodNativeEnum<typeof CaptchaItemTypes>;
|
|
475
|
+
}, {
|
|
476
|
+
hash: import("zod").ZodString;
|
|
477
|
+
}>, {
|
|
447
478
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
448
|
-
}
|
|
479
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
449
480
|
hash: string;
|
|
450
481
|
data: string;
|
|
451
482
|
type: CaptchaItemTypes;
|
|
@@ -472,12 +503,15 @@ export declare const DataSchema: import("zod").ZodObject<{
|
|
|
472
503
|
}[];
|
|
473
504
|
}>;
|
|
474
505
|
export declare const LabelledDataSchema: import("zod").ZodObject<{
|
|
475
|
-
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
506
|
+
items: import("zod").ZodArray<import("zod").ZodObject<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<{
|
|
476
507
|
hash: import("zod").ZodString;
|
|
477
508
|
data: import("zod").ZodString;
|
|
478
509
|
type: import("zod").ZodNativeEnum<typeof CaptchaItemTypes>;
|
|
510
|
+
}, {
|
|
511
|
+
hash: import("zod").ZodString;
|
|
512
|
+
}>, {
|
|
479
513
|
label: import("zod").ZodString;
|
|
480
|
-
}
|
|
514
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
481
515
|
hash: string;
|
|
482
516
|
data: string;
|
|
483
517
|
type: CaptchaItemTypes;
|
|
@@ -504,13 +538,14 @@ export declare const LabelledDataSchema: import("zod").ZodObject<{
|
|
|
504
538
|
}[];
|
|
505
539
|
}>;
|
|
506
540
|
export declare const CaptchasContainerSchema: import("zod").ZodObject<{
|
|
507
|
-
captchas: import("zod").ZodArray<import("zod").ZodObject<{
|
|
541
|
+
captchas: import("zod").ZodArray<import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
|
508
542
|
captchaId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
509
543
|
captchaContentId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
510
544
|
salt: import("zod").ZodString;
|
|
511
545
|
solution: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
512
546
|
unlabelled: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
513
547
|
timeLimit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
548
|
+
}, {
|
|
514
549
|
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
515
550
|
hash: import("zod").ZodString;
|
|
516
551
|
data: import("zod").ZodString;
|
|
@@ -525,7 +560,7 @@ export declare const CaptchasContainerSchema: import("zod").ZodObject<{
|
|
|
525
560
|
type: CaptchaItemTypes;
|
|
526
561
|
}>, "many">;
|
|
527
562
|
target: import("zod").ZodString;
|
|
528
|
-
}
|
|
563
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
529
564
|
items: {
|
|
530
565
|
hash: string;
|
|
531
566
|
data: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"captcha.d.ts","sourceRoot":"","sources":["../../src/datasets/captcha.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"captcha.d.ts","sourceRoot":"","sources":["../../src/datasets/captcha.ts"],"names":[],"mappings":"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"}
|