@prosopo/types 0.2.11 → 0.2.14
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/config/config.cjs +56 -52
- package/dist/cjs/config/enumMap.cjs +2 -2
- package/dist/cjs/config/network.cjs +12 -12
- package/dist/cjs/contract/artifacts.cjs +2 -2
- package/dist/cjs/datasets/captcha.cjs +36 -36
- package/dist/cjs/datasets/dataset.cjs +16 -16
- package/dist/cjs/procaptcha/manager.cjs +7 -7
- package/dist/cjs/provider/api.cjs +15 -14
- package/dist/cjs/provider/argv.cjs +2 -3
- package/dist/config/config.d.ts +253 -425
- package/dist/config/config.d.ts.map +1 -1
- package/dist/config/config.js +59 -54
- package/dist/config/config.js.map +1 -1
- package/dist/config/enumMap.d.ts +2 -2
- package/dist/config/enumMap.d.ts.map +1 -1
- package/dist/config/enumMap.js +2 -2
- package/dist/config/enumMap.js.map +1 -1
- package/dist/config/network.d.ts +23 -23
- package/dist/config/network.d.ts.map +1 -1
- package/dist/config/network.js +13 -13
- package/dist/config/network.js.map +1 -1
- package/dist/contract/artifacts.d.ts +2 -2
- package/dist/contract/artifacts.d.ts.map +1 -1
- package/dist/contract/artifacts.js +1 -1
- package/dist/contract/artifacts.js.map +1 -1
- package/dist/contract/batch.d.ts +2 -2
- package/dist/contract/batch.d.ts.map +1 -1
- package/dist/contract/contract.d.ts +1 -1
- package/dist/contract/contract.d.ts.map +1 -1
- package/dist/contract/useWeight.d.ts +1 -1
- package/dist/contract/useWeight.d.ts.map +1 -1
- package/dist/datasets/captcha.d.ts +158 -158
- package/dist/datasets/captcha.d.ts.map +1 -1
- package/dist/datasets/captcha.js +37 -37
- package/dist/datasets/captcha.js.map +1 -1
- package/dist/datasets/dataset.d.ts +87 -88
- package/dist/datasets/dataset.d.ts.map +1 -1
- package/dist/datasets/dataset.js +17 -17
- package/dist/datasets/dataset.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/procaptcha/manager.d.ts +18 -18
- package/dist/procaptcha/manager.d.ts.map +1 -1
- package/dist/procaptcha/manager.js +8 -8
- package/dist/procaptcha/manager.js.map +1 -1
- package/dist/provider/accounts.d.ts +2 -3
- package/dist/provider/accounts.d.ts.map +1 -1
- package/dist/provider/api.d.ts +32 -26
- package/dist/provider/api.d.ts.map +1 -1
- package/dist/provider/api.js +16 -15
- package/dist/provider/api.js.map +1 -1
- package/dist/provider/argv.d.ts +2 -3
- package/dist/provider/argv.d.ts.map +1 -1
- package/dist/provider/argv.js +3 -3
- package/dist/provider/argv.js.map +1 -1
- package/package.json +7 -7
- package/dist/cjs/contracts/captcha/dist/build-extrinsic/captcha.cjs +0 -339
- package/dist/cjs/contracts/captcha/dist/contract-info/captcha.cjs +0 -6
- package/dist/cjs/contracts/captcha/dist/contracts/captcha.cjs +0 -79
- package/dist/cjs/contracts/captcha/dist/data/captcha.json.cjs +0 -3374
- package/dist/cjs/contracts/captcha/dist/event-data/captcha.json.cjs +0 -3
- package/dist/cjs/contracts/captcha/dist/events/captcha.cjs +0 -23
- package/dist/cjs/contracts/captcha/dist/index.cjs +0 -44
- package/dist/cjs/contracts/captcha/dist/mixed-methods/captcha.cjs +0 -470
- package/dist/cjs/contracts/captcha/dist/query/captcha.cjs +0 -468
- package/dist/cjs/contracts/captcha/dist/shared/utils.cjs +0 -31
- package/dist/cjs/contracts/captcha/dist/tx-sign-and-send/captcha.cjs +0 -426
- package/dist/cjs/contracts/captcha/dist/types-arguments/captcha.cjs +0 -62
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { AccountId } from '@polkadot/types/interfaces';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { AccountId } from '@polkadot/types/interfaces/runtime';
|
|
2
|
+
import { infer as zInfer } from 'zod';
|
|
3
|
+
import { u32 } from '@polkadot/types-codec/primitive';
|
|
4
4
|
export declare enum CaptchaTypes {
|
|
5
5
|
SelectAll = "SelectAll"
|
|
6
6
|
}
|
|
@@ -14,13 +14,13 @@ export declare enum CaptchaStates {
|
|
|
14
14
|
}
|
|
15
15
|
export type RawSolution = number;
|
|
16
16
|
export type HashedSolution = string;
|
|
17
|
-
export type Item =
|
|
18
|
-
export type HashedItem =
|
|
19
|
-
export type LabelledItem =
|
|
20
|
-
export type Data =
|
|
21
|
-
export type LabelledData =
|
|
22
|
-
export type CaptchasContainer =
|
|
23
|
-
export type LabelsContainer =
|
|
17
|
+
export type Item = zInfer<typeof CaptchaItemSchema>;
|
|
18
|
+
export type HashedItem = zInfer<typeof HashedCaptchaItemSchema>;
|
|
19
|
+
export type LabelledItem = zInfer<typeof LabelledItemSchema>;
|
|
20
|
+
export type Data = zInfer<typeof DataSchema>;
|
|
21
|
+
export type LabelledData = zInfer<typeof LabelledDataSchema>;
|
|
22
|
+
export type CaptchasContainer = zInfer<typeof CaptchasContainerSchema>;
|
|
23
|
+
export type LabelsContainer = zInfer<typeof LabelsContainerSchema>;
|
|
24
24
|
export interface Captchas {
|
|
25
25
|
captchas: CaptchaWithoutId[];
|
|
26
26
|
format: CaptchaTypes;
|
|
@@ -76,14 +76,14 @@ export type LastCorrectCaptchaSchema = {
|
|
|
76
76
|
beforeMs: u32;
|
|
77
77
|
dappId: AccountId;
|
|
78
78
|
};
|
|
79
|
-
export declare const CaptchaSchema:
|
|
80
|
-
captchaId:
|
|
81
|
-
captchaContentId:
|
|
82
|
-
salt:
|
|
83
|
-
solution:
|
|
84
|
-
unlabelled:
|
|
85
|
-
timeLimit:
|
|
86
|
-
}, "strip",
|
|
79
|
+
export declare const CaptchaSchema: import("zod").ZodObject<{
|
|
80
|
+
captchaId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
81
|
+
captchaContentId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
82
|
+
salt: import("zod").ZodString;
|
|
83
|
+
solution: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
84
|
+
unlabelled: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
85
|
+
timeLimit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
86
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
87
87
|
salt: string;
|
|
88
88
|
captchaId?: string | undefined;
|
|
89
89
|
captchaContentId?: string | undefined;
|
|
@@ -98,11 +98,11 @@ export declare const CaptchaSchema: z.ZodObject<{
|
|
|
98
98
|
unlabelled?: number[] | undefined;
|
|
99
99
|
timeLimit?: number | undefined;
|
|
100
100
|
}>;
|
|
101
|
-
export declare const CaptchaItemSchema:
|
|
102
|
-
hash:
|
|
103
|
-
data:
|
|
104
|
-
type:
|
|
105
|
-
}, "strip",
|
|
101
|
+
export declare const CaptchaItemSchema: import("zod").ZodObject<{
|
|
102
|
+
hash: import("zod").ZodString;
|
|
103
|
+
data: import("zod").ZodString;
|
|
104
|
+
type: import("zod").ZodNativeEnum<typeof CaptchaItemTypes>;
|
|
105
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
106
106
|
type: CaptchaItemTypes;
|
|
107
107
|
data: string;
|
|
108
108
|
hash: string;
|
|
@@ -111,11 +111,11 @@ export declare const CaptchaItemSchema: z.ZodObject<{
|
|
|
111
111
|
data: string;
|
|
112
112
|
hash: string;
|
|
113
113
|
}>;
|
|
114
|
-
export declare const HashedCaptchaItemSchema:
|
|
115
|
-
type:
|
|
116
|
-
data:
|
|
117
|
-
hash:
|
|
118
|
-
}, "strip",
|
|
114
|
+
export declare const HashedCaptchaItemSchema: import("zod").ZodObject<{
|
|
115
|
+
type: import("zod").ZodNativeEnum<typeof CaptchaItemTypes>;
|
|
116
|
+
data: import("zod").ZodString;
|
|
117
|
+
hash: import("zod").ZodString;
|
|
118
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
119
119
|
type: CaptchaItemTypes;
|
|
120
120
|
data: string;
|
|
121
121
|
hash: string;
|
|
@@ -124,12 +124,12 @@ export declare const HashedCaptchaItemSchema: z.ZodObject<{
|
|
|
124
124
|
data: string;
|
|
125
125
|
hash: string;
|
|
126
126
|
}>;
|
|
127
|
-
export declare const LabelledItemSchema:
|
|
128
|
-
type:
|
|
129
|
-
data:
|
|
130
|
-
hash:
|
|
131
|
-
label:
|
|
132
|
-
}, "strip",
|
|
127
|
+
export declare const LabelledItemSchema: import("zod").ZodObject<{
|
|
128
|
+
type: import("zod").ZodNativeEnum<typeof CaptchaItemTypes>;
|
|
129
|
+
data: import("zod").ZodString;
|
|
130
|
+
hash: import("zod").ZodString;
|
|
131
|
+
label: import("zod").ZodString;
|
|
132
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
133
133
|
type: CaptchaItemTypes;
|
|
134
134
|
data: string;
|
|
135
135
|
label: string;
|
|
@@ -140,12 +140,12 @@ export declare const LabelledItemSchema: z.ZodObject<{
|
|
|
140
140
|
label: string;
|
|
141
141
|
hash: string;
|
|
142
142
|
}>;
|
|
143
|
-
export declare const MaybeLabelledHashedItemSchema:
|
|
144
|
-
type:
|
|
145
|
-
data:
|
|
146
|
-
hash:
|
|
147
|
-
label:
|
|
148
|
-
}, "strip",
|
|
143
|
+
export declare const MaybeLabelledHashedItemSchema: import("zod").ZodObject<{
|
|
144
|
+
type: import("zod").ZodNativeEnum<typeof CaptchaItemTypes>;
|
|
145
|
+
data: import("zod").ZodString;
|
|
146
|
+
hash: import("zod").ZodString;
|
|
147
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
148
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
149
149
|
type: CaptchaItemTypes;
|
|
150
150
|
data: string;
|
|
151
151
|
hash: string;
|
|
@@ -156,18 +156,18 @@ export declare const MaybeLabelledHashedItemSchema: z.ZodObject<{
|
|
|
156
156
|
hash: string;
|
|
157
157
|
label?: string | undefined;
|
|
158
158
|
}>;
|
|
159
|
-
export declare const SelectAllCaptchaSchemaRaw:
|
|
160
|
-
captchaId:
|
|
161
|
-
captchaContentId:
|
|
162
|
-
salt:
|
|
163
|
-
solution:
|
|
164
|
-
unlabelled:
|
|
165
|
-
timeLimit:
|
|
166
|
-
items:
|
|
167
|
-
hash:
|
|
168
|
-
data:
|
|
169
|
-
type:
|
|
170
|
-
}, "strip",
|
|
159
|
+
export declare const SelectAllCaptchaSchemaRaw: import("zod").ZodObject<{
|
|
160
|
+
captchaId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
161
|
+
captchaContentId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
162
|
+
salt: import("zod").ZodString;
|
|
163
|
+
solution: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
164
|
+
unlabelled: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
165
|
+
timeLimit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
166
|
+
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
167
|
+
hash: import("zod").ZodString;
|
|
168
|
+
data: import("zod").ZodString;
|
|
169
|
+
type: import("zod").ZodNativeEnum<typeof CaptchaItemTypes>;
|
|
170
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
171
171
|
type: CaptchaItemTypes;
|
|
172
172
|
data: string;
|
|
173
173
|
hash: string;
|
|
@@ -176,8 +176,8 @@ export declare const SelectAllCaptchaSchemaRaw: z.ZodObject<{
|
|
|
176
176
|
data: string;
|
|
177
177
|
hash: string;
|
|
178
178
|
}>, "many">;
|
|
179
|
-
target:
|
|
180
|
-
}, "strip",
|
|
179
|
+
target: import("zod").ZodString;
|
|
180
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
181
181
|
items: {
|
|
182
182
|
type: CaptchaItemTypes;
|
|
183
183
|
data: string;
|
|
@@ -204,12 +204,12 @@ export declare const SelectAllCaptchaSchemaRaw: z.ZodObject<{
|
|
|
204
204
|
unlabelled?: number[] | undefined;
|
|
205
205
|
timeLimit?: number | undefined;
|
|
206
206
|
}>;
|
|
207
|
-
export declare const SelectAllCaptchaSchema:
|
|
208
|
-
items:
|
|
209
|
-
hash:
|
|
210
|
-
data:
|
|
211
|
-
type:
|
|
212
|
-
}, "strip",
|
|
207
|
+
export declare const SelectAllCaptchaSchema: import("zod").ZodObject<{
|
|
208
|
+
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
209
|
+
hash: import("zod").ZodString;
|
|
210
|
+
data: import("zod").ZodString;
|
|
211
|
+
type: import("zod").ZodNativeEnum<typeof CaptchaItemTypes>;
|
|
212
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
213
213
|
type: CaptchaItemTypes;
|
|
214
214
|
data: string;
|
|
215
215
|
hash: string;
|
|
@@ -218,14 +218,14 @@ export declare const SelectAllCaptchaSchema: z.ZodObject<{
|
|
|
218
218
|
data: string;
|
|
219
219
|
hash: string;
|
|
220
220
|
}>, "many">;
|
|
221
|
-
captchaId:
|
|
222
|
-
captchaContentId:
|
|
223
|
-
salt:
|
|
224
|
-
timeLimit:
|
|
225
|
-
target:
|
|
226
|
-
solution:
|
|
227
|
-
unlabelled:
|
|
228
|
-
}, "strip",
|
|
221
|
+
captchaId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
222
|
+
captchaContentId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
223
|
+
salt: import("zod").ZodString;
|
|
224
|
+
timeLimit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
225
|
+
target: import("zod").ZodString;
|
|
226
|
+
solution: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
227
|
+
unlabelled: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
228
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
229
229
|
items: {
|
|
230
230
|
type: CaptchaItemTypes;
|
|
231
231
|
data: string;
|
|
@@ -252,12 +252,12 @@ export declare const SelectAllCaptchaSchema: z.ZodObject<{
|
|
|
252
252
|
solution?: string[] | undefined;
|
|
253
253
|
unlabelled?: string[] | undefined;
|
|
254
254
|
}>;
|
|
255
|
-
export declare const SelectAllCaptchaSchemaWithNumericSolution:
|
|
256
|
-
items:
|
|
257
|
-
hash:
|
|
258
|
-
data:
|
|
259
|
-
type:
|
|
260
|
-
}, "strip",
|
|
255
|
+
export declare const SelectAllCaptchaSchemaWithNumericSolution: import("zod").ZodObject<{
|
|
256
|
+
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
257
|
+
hash: import("zod").ZodString;
|
|
258
|
+
data: import("zod").ZodString;
|
|
259
|
+
type: import("zod").ZodNativeEnum<typeof CaptchaItemTypes>;
|
|
260
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
261
261
|
type: CaptchaItemTypes;
|
|
262
262
|
data: string;
|
|
263
263
|
hash: string;
|
|
@@ -266,14 +266,14 @@ export declare const SelectAllCaptchaSchemaWithNumericSolution: z.ZodObject<{
|
|
|
266
266
|
data: string;
|
|
267
267
|
hash: string;
|
|
268
268
|
}>, "many">;
|
|
269
|
-
captchaId:
|
|
270
|
-
captchaContentId:
|
|
271
|
-
salt:
|
|
272
|
-
timeLimit:
|
|
273
|
-
target:
|
|
274
|
-
solution:
|
|
275
|
-
unlabelled:
|
|
276
|
-
}, "strip",
|
|
269
|
+
captchaId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
270
|
+
captchaContentId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
271
|
+
salt: import("zod").ZodString;
|
|
272
|
+
timeLimit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
273
|
+
target: import("zod").ZodString;
|
|
274
|
+
solution: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
275
|
+
unlabelled: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
276
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
277
277
|
items: {
|
|
278
278
|
type: CaptchaItemTypes;
|
|
279
279
|
data: string;
|
|
@@ -300,18 +300,18 @@ export declare const SelectAllCaptchaSchemaWithNumericSolution: z.ZodObject<{
|
|
|
300
300
|
solution?: number[] | undefined;
|
|
301
301
|
unlabelled?: number[] | undefined;
|
|
302
302
|
}>;
|
|
303
|
-
export declare const CaptchasSchema:
|
|
304
|
-
captchaId:
|
|
305
|
-
captchaContentId:
|
|
306
|
-
salt:
|
|
307
|
-
solution:
|
|
308
|
-
unlabelled:
|
|
309
|
-
timeLimit:
|
|
310
|
-
items:
|
|
311
|
-
hash:
|
|
312
|
-
data:
|
|
313
|
-
type:
|
|
314
|
-
}, "strip",
|
|
303
|
+
export declare const CaptchasSchema: import("zod").ZodArray<import("zod").ZodObject<{
|
|
304
|
+
captchaId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
305
|
+
captchaContentId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
306
|
+
salt: import("zod").ZodString;
|
|
307
|
+
solution: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
308
|
+
unlabelled: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
309
|
+
timeLimit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
310
|
+
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
311
|
+
hash: import("zod").ZodString;
|
|
312
|
+
data: import("zod").ZodString;
|
|
313
|
+
type: import("zod").ZodNativeEnum<typeof CaptchaItemTypes>;
|
|
314
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
315
315
|
type: CaptchaItemTypes;
|
|
316
316
|
data: string;
|
|
317
317
|
hash: string;
|
|
@@ -320,8 +320,8 @@ export declare const CaptchasSchema: z.ZodArray<z.ZodObject<{
|
|
|
320
320
|
data: string;
|
|
321
321
|
hash: string;
|
|
322
322
|
}>, "many">;
|
|
323
|
-
target:
|
|
324
|
-
}, "strip",
|
|
323
|
+
target: import("zod").ZodString;
|
|
324
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
325
325
|
items: {
|
|
326
326
|
type: CaptchaItemTypes;
|
|
327
327
|
data: string;
|
|
@@ -348,12 +348,12 @@ export declare const CaptchasSchema: z.ZodArray<z.ZodObject<{
|
|
|
348
348
|
unlabelled?: number[] | undefined;
|
|
349
349
|
timeLimit?: number | undefined;
|
|
350
350
|
}>, "many">;
|
|
351
|
-
export declare const CaptchasWithNumericSolutionSchema:
|
|
352
|
-
items:
|
|
353
|
-
hash:
|
|
354
|
-
data:
|
|
355
|
-
type:
|
|
356
|
-
}, "strip",
|
|
351
|
+
export declare const CaptchasWithNumericSolutionSchema: import("zod").ZodArray<import("zod").ZodObject<{
|
|
352
|
+
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
353
|
+
hash: import("zod").ZodString;
|
|
354
|
+
data: import("zod").ZodString;
|
|
355
|
+
type: import("zod").ZodNativeEnum<typeof CaptchaItemTypes>;
|
|
356
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
357
357
|
type: CaptchaItemTypes;
|
|
358
358
|
data: string;
|
|
359
359
|
hash: string;
|
|
@@ -362,14 +362,14 @@ export declare const CaptchasWithNumericSolutionSchema: z.ZodArray<z.ZodObject<{
|
|
|
362
362
|
data: string;
|
|
363
363
|
hash: string;
|
|
364
364
|
}>, "many">;
|
|
365
|
-
captchaId:
|
|
366
|
-
captchaContentId:
|
|
367
|
-
salt:
|
|
368
|
-
timeLimit:
|
|
369
|
-
target:
|
|
370
|
-
solution:
|
|
371
|
-
unlabelled:
|
|
372
|
-
}, "strip",
|
|
365
|
+
captchaId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
366
|
+
captchaContentId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
367
|
+
salt: import("zod").ZodString;
|
|
368
|
+
timeLimit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
369
|
+
target: import("zod").ZodString;
|
|
370
|
+
solution: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
371
|
+
unlabelled: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
372
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
373
373
|
items: {
|
|
374
374
|
type: CaptchaItemTypes;
|
|
375
375
|
data: string;
|
|
@@ -396,12 +396,12 @@ export declare const CaptchasWithNumericSolutionSchema: z.ZodArray<z.ZodObject<{
|
|
|
396
396
|
solution?: number[] | undefined;
|
|
397
397
|
unlabelled?: number[] | undefined;
|
|
398
398
|
}>, "many">;
|
|
399
|
-
export declare const CaptchaSolutionSchema:
|
|
400
|
-
captchaId:
|
|
401
|
-
captchaContentId:
|
|
402
|
-
solution:
|
|
403
|
-
salt:
|
|
404
|
-
}, "strip",
|
|
399
|
+
export declare const CaptchaSolutionSchema: import("zod").ZodObject<{
|
|
400
|
+
captchaId: import("zod").ZodString;
|
|
401
|
+
captchaContentId: import("zod").ZodString;
|
|
402
|
+
solution: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
403
|
+
salt: import("zod").ZodString;
|
|
404
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
405
405
|
captchaId: string;
|
|
406
406
|
captchaContentId: string;
|
|
407
407
|
salt: string;
|
|
@@ -412,12 +412,12 @@ export declare const CaptchaSolutionSchema: z.ZodObject<{
|
|
|
412
412
|
salt: string;
|
|
413
413
|
solution: string[];
|
|
414
414
|
}>;
|
|
415
|
-
export declare const CaptchaSolutionArraySchema:
|
|
416
|
-
captchaId:
|
|
417
|
-
captchaContentId:
|
|
418
|
-
solution:
|
|
419
|
-
salt:
|
|
420
|
-
}, "strip",
|
|
415
|
+
export declare const CaptchaSolutionArraySchema: import("zod").ZodArray<import("zod").ZodObject<{
|
|
416
|
+
captchaId: import("zod").ZodString;
|
|
417
|
+
captchaContentId: import("zod").ZodString;
|
|
418
|
+
solution: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
419
|
+
salt: import("zod").ZodString;
|
|
420
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
421
421
|
captchaId: string;
|
|
422
422
|
captchaContentId: string;
|
|
423
423
|
salt: string;
|
|
@@ -428,13 +428,13 @@ export declare const CaptchaSolutionArraySchema: z.ZodArray<z.ZodObject<{
|
|
|
428
428
|
salt: string;
|
|
429
429
|
solution: string[];
|
|
430
430
|
}>, "many">;
|
|
431
|
-
export declare const DataSchema:
|
|
432
|
-
items:
|
|
433
|
-
type:
|
|
434
|
-
data:
|
|
435
|
-
hash:
|
|
436
|
-
label:
|
|
437
|
-
}, "strip",
|
|
431
|
+
export declare const DataSchema: import("zod").ZodObject<{
|
|
432
|
+
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
433
|
+
type: import("zod").ZodNativeEnum<typeof CaptchaItemTypes>;
|
|
434
|
+
data: import("zod").ZodString;
|
|
435
|
+
hash: import("zod").ZodString;
|
|
436
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
437
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
438
438
|
type: CaptchaItemTypes;
|
|
439
439
|
data: string;
|
|
440
440
|
hash: string;
|
|
@@ -445,7 +445,7 @@ export declare const DataSchema: z.ZodObject<{
|
|
|
445
445
|
hash: string;
|
|
446
446
|
label?: string | undefined;
|
|
447
447
|
}>, "many">;
|
|
448
|
-
}, "strip",
|
|
448
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
449
449
|
items: {
|
|
450
450
|
type: CaptchaItemTypes;
|
|
451
451
|
data: string;
|
|
@@ -460,13 +460,13 @@ export declare const DataSchema: z.ZodObject<{
|
|
|
460
460
|
label?: string | undefined;
|
|
461
461
|
}[];
|
|
462
462
|
}>;
|
|
463
|
-
export declare const LabelledDataSchema:
|
|
464
|
-
items:
|
|
465
|
-
type:
|
|
466
|
-
data:
|
|
467
|
-
hash:
|
|
468
|
-
label:
|
|
469
|
-
}, "strip",
|
|
463
|
+
export declare const LabelledDataSchema: import("zod").ZodObject<{
|
|
464
|
+
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
465
|
+
type: import("zod").ZodNativeEnum<typeof CaptchaItemTypes>;
|
|
466
|
+
data: import("zod").ZodString;
|
|
467
|
+
hash: import("zod").ZodString;
|
|
468
|
+
label: import("zod").ZodString;
|
|
469
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
470
470
|
type: CaptchaItemTypes;
|
|
471
471
|
data: string;
|
|
472
472
|
label: string;
|
|
@@ -477,7 +477,7 @@ export declare const LabelledDataSchema: z.ZodObject<{
|
|
|
477
477
|
label: string;
|
|
478
478
|
hash: string;
|
|
479
479
|
}>, "many">;
|
|
480
|
-
}, "strip",
|
|
480
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
481
481
|
items: {
|
|
482
482
|
type: CaptchaItemTypes;
|
|
483
483
|
data: string;
|
|
@@ -492,19 +492,19 @@ export declare const LabelledDataSchema: z.ZodObject<{
|
|
|
492
492
|
hash: string;
|
|
493
493
|
}[];
|
|
494
494
|
}>;
|
|
495
|
-
export declare const CaptchasContainerSchema:
|
|
496
|
-
captchas:
|
|
497
|
-
captchaId:
|
|
498
|
-
captchaContentId:
|
|
499
|
-
salt:
|
|
500
|
-
solution:
|
|
501
|
-
unlabelled:
|
|
502
|
-
timeLimit:
|
|
503
|
-
items:
|
|
504
|
-
hash:
|
|
505
|
-
data:
|
|
506
|
-
type:
|
|
507
|
-
}, "strip",
|
|
495
|
+
export declare const CaptchasContainerSchema: import("zod").ZodObject<{
|
|
496
|
+
captchas: import("zod").ZodArray<import("zod").ZodObject<{
|
|
497
|
+
captchaId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
498
|
+
captchaContentId: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodUndefined]>;
|
|
499
|
+
salt: import("zod").ZodString;
|
|
500
|
+
solution: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
501
|
+
unlabelled: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
|
|
502
|
+
timeLimit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
503
|
+
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
504
|
+
hash: import("zod").ZodString;
|
|
505
|
+
data: import("zod").ZodString;
|
|
506
|
+
type: import("zod").ZodNativeEnum<typeof CaptchaItemTypes>;
|
|
507
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
508
508
|
type: CaptchaItemTypes;
|
|
509
509
|
data: string;
|
|
510
510
|
hash: string;
|
|
@@ -513,8 +513,8 @@ export declare const CaptchasContainerSchema: z.ZodObject<{
|
|
|
513
513
|
data: string;
|
|
514
514
|
hash: string;
|
|
515
515
|
}>, "many">;
|
|
516
|
-
target:
|
|
517
|
-
}, "strip",
|
|
516
|
+
target: import("zod").ZodString;
|
|
517
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
518
518
|
items: {
|
|
519
519
|
type: CaptchaItemTypes;
|
|
520
520
|
data: string;
|
|
@@ -541,8 +541,8 @@ export declare const CaptchasContainerSchema: z.ZodObject<{
|
|
|
541
541
|
unlabelled?: number[] | undefined;
|
|
542
542
|
timeLimit?: number | undefined;
|
|
543
543
|
}>, "many">;
|
|
544
|
-
format:
|
|
545
|
-
}, "strip",
|
|
544
|
+
format: import("zod").ZodNativeEnum<typeof CaptchaTypes>;
|
|
545
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
546
546
|
captchas: {
|
|
547
547
|
items: {
|
|
548
548
|
type: CaptchaItemTypes;
|
|
@@ -575,9 +575,9 @@ export declare const CaptchasContainerSchema: z.ZodObject<{
|
|
|
575
575
|
}[];
|
|
576
576
|
format: CaptchaTypes;
|
|
577
577
|
}>;
|
|
578
|
-
export declare const LabelsContainerSchema:
|
|
579
|
-
labels:
|
|
580
|
-
}, "strip",
|
|
578
|
+
export declare const LabelsContainerSchema: import("zod").ZodObject<{
|
|
579
|
+
labels: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
580
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
581
581
|
labels: string[];
|
|
582
582
|
}, {
|
|
583
583
|
labels: string[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"captcha.d.ts","sourceRoot":"","sources":["../../src/datasets/captcha.ts"],"names":[],"mappings":"AAaA,OAAO,EAAE,SAAS,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"captcha.d.ts","sourceRoot":"","sources":["../../src/datasets/captcha.ts"],"names":[],"mappings":"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"}
|
package/dist/datasets/captcha.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { array, nativeEnum, number, object, string, undefined, union } from 'zod';
|
|
2
2
|
export var CaptchaTypes;
|
|
3
3
|
(function (CaptchaTypes) {
|
|
4
4
|
CaptchaTypes["SelectAll"] = "SelectAll";
|
|
@@ -13,60 +13,60 @@ export var CaptchaStates;
|
|
|
13
13
|
CaptchaStates["Solved"] = "solved";
|
|
14
14
|
CaptchaStates["Unsolved"] = "unsolved";
|
|
15
15
|
})(CaptchaStates || (CaptchaStates = {}));
|
|
16
|
-
export const CaptchaSchema =
|
|
17
|
-
captchaId:
|
|
18
|
-
captchaContentId:
|
|
19
|
-
salt:
|
|
20
|
-
solution:
|
|
21
|
-
unlabelled:
|
|
22
|
-
timeLimit:
|
|
16
|
+
export const CaptchaSchema = object({
|
|
17
|
+
captchaId: union([string(), undefined()]),
|
|
18
|
+
captchaContentId: union([string(), undefined()]),
|
|
19
|
+
salt: string().min(34),
|
|
20
|
+
solution: number().array().optional(),
|
|
21
|
+
unlabelled: number().array().optional(),
|
|
22
|
+
timeLimit: number().optional(),
|
|
23
23
|
});
|
|
24
|
-
export const CaptchaItemSchema =
|
|
25
|
-
hash:
|
|
26
|
-
data:
|
|
27
|
-
type:
|
|
24
|
+
export const CaptchaItemSchema = object({
|
|
25
|
+
hash: string(),
|
|
26
|
+
data: string(),
|
|
27
|
+
type: nativeEnum(CaptchaItemTypes),
|
|
28
28
|
});
|
|
29
29
|
export const HashedCaptchaItemSchema = CaptchaItemSchema.extend({
|
|
30
|
-
hash:
|
|
30
|
+
hash: string(),
|
|
31
31
|
});
|
|
32
32
|
export const LabelledItemSchema = HashedCaptchaItemSchema.extend({
|
|
33
|
-
label:
|
|
33
|
+
label: string(),
|
|
34
34
|
});
|
|
35
35
|
export const MaybeLabelledHashedItemSchema = HashedCaptchaItemSchema.extend({
|
|
36
|
-
label:
|
|
36
|
+
label: string().optional(),
|
|
37
37
|
});
|
|
38
38
|
export const SelectAllCaptchaSchemaRaw = CaptchaSchema.extend({
|
|
39
|
-
items:
|
|
40
|
-
target:
|
|
39
|
+
items: array(CaptchaItemSchema),
|
|
40
|
+
target: string(),
|
|
41
41
|
});
|
|
42
42
|
export const SelectAllCaptchaSchema = SelectAllCaptchaSchemaRaw.extend({
|
|
43
|
-
solution:
|
|
44
|
-
unlabelled:
|
|
43
|
+
solution: string().array().optional(),
|
|
44
|
+
unlabelled: string().array().optional(),
|
|
45
45
|
});
|
|
46
46
|
export const SelectAllCaptchaSchemaWithNumericSolution = SelectAllCaptchaSchema.extend({
|
|
47
|
-
solution:
|
|
48
|
-
unlabelled:
|
|
47
|
+
solution: number().array().optional(),
|
|
48
|
+
unlabelled: number().array().optional(),
|
|
49
49
|
});
|
|
50
|
-
export const CaptchasSchema =
|
|
51
|
-
export const CaptchasWithNumericSolutionSchema =
|
|
52
|
-
export const CaptchaSolutionSchema =
|
|
53
|
-
captchaId:
|
|
54
|
-
captchaContentId:
|
|
55
|
-
solution:
|
|
56
|
-
salt:
|
|
50
|
+
export const CaptchasSchema = array(SelectAllCaptchaSchemaRaw);
|
|
51
|
+
export const CaptchasWithNumericSolutionSchema = array(SelectAllCaptchaSchemaWithNumericSolution);
|
|
52
|
+
export const CaptchaSolutionSchema = object({
|
|
53
|
+
captchaId: string(),
|
|
54
|
+
captchaContentId: string(),
|
|
55
|
+
solution: string().array(),
|
|
56
|
+
salt: string().min(34),
|
|
57
57
|
});
|
|
58
|
-
export const CaptchaSolutionArraySchema =
|
|
59
|
-
export const DataSchema =
|
|
60
|
-
items:
|
|
58
|
+
export const CaptchaSolutionArraySchema = array(CaptchaSolutionSchema);
|
|
59
|
+
export const DataSchema = object({
|
|
60
|
+
items: array(MaybeLabelledHashedItemSchema),
|
|
61
61
|
});
|
|
62
|
-
export const LabelledDataSchema =
|
|
63
|
-
items:
|
|
62
|
+
export const LabelledDataSchema = object({
|
|
63
|
+
items: array(LabelledItemSchema),
|
|
64
64
|
});
|
|
65
|
-
export const CaptchasContainerSchema =
|
|
65
|
+
export const CaptchasContainerSchema = object({
|
|
66
66
|
captchas: CaptchasSchema,
|
|
67
|
-
format:
|
|
67
|
+
format: nativeEnum(CaptchaTypes),
|
|
68
68
|
});
|
|
69
|
-
export const LabelsContainerSchema =
|
|
70
|
-
labels:
|
|
69
|
+
export const LabelsContainerSchema = object({
|
|
70
|
+
labels: array(string()),
|
|
71
71
|
});
|
|
72
72
|
//# sourceMappingURL=captcha.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"captcha.js","sourceRoot":"","sources":["../../src/datasets/captcha.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"captcha.js","sourceRoot":"","sources":["../../src/datasets/captcha.ts"],"names":[],"mappings":"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"}
|