@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
package/dist/cjs/index.cjs
CHANGED
|
@@ -81,6 +81,7 @@ exports.ApiParams = api.ApiParams;
|
|
|
81
81
|
exports.ApiPaths = api.ApiPaths;
|
|
82
82
|
exports.CaptchaRequestBody = api.CaptchaRequestBody;
|
|
83
83
|
exports.CaptchaSolutionBody = api.CaptchaSolutionBody;
|
|
84
|
+
exports.GetPowCaptchaChallengeRequestBody = api.GetPowCaptchaChallengeRequestBody;
|
|
84
85
|
exports.ServerPowCaptchaVerifyRequestBody = api.ServerPowCaptchaVerifyRequestBody;
|
|
85
86
|
exports.SubmitPowCaptchaSolutionBody = api.SubmitPowCaptchaSolutionBody;
|
|
86
87
|
exports.VerifySolutionBody = api.VerifySolutionBody;
|
|
@@ -116,6 +116,16 @@ const ServerPowCaptchaVerifyRequestBody = z.object({
|
|
|
116
116
|
/* dapp */
|
|
117
117
|
]: z.string()
|
|
118
118
|
});
|
|
119
|
+
const GetPowCaptchaChallengeRequestBody = z.object({
|
|
120
|
+
[
|
|
121
|
+
"user"
|
|
122
|
+
/* user */
|
|
123
|
+
]: z.string(),
|
|
124
|
+
[
|
|
125
|
+
"dapp"
|
|
126
|
+
/* dapp */
|
|
127
|
+
]: z.string()
|
|
128
|
+
});
|
|
119
129
|
const SubmitPowCaptchaSolutionBody = z.object({
|
|
120
130
|
[
|
|
121
131
|
"blockNumber"
|
|
@@ -151,6 +161,7 @@ exports.ApiParams = ApiParams;
|
|
|
151
161
|
exports.ApiPaths = ApiPaths;
|
|
152
162
|
exports.CaptchaRequestBody = CaptchaRequestBody;
|
|
153
163
|
exports.CaptchaSolutionBody = CaptchaSolutionBody;
|
|
164
|
+
exports.GetPowCaptchaChallengeRequestBody = GetPowCaptchaChallengeRequestBody;
|
|
154
165
|
exports.ServerPowCaptchaVerifyRequestBody = ServerPowCaptchaVerifyRequestBody;
|
|
155
166
|
exports.SubmitPowCaptchaSolutionBody = SubmitPowCaptchaSolutionBody;
|
|
156
167
|
exports.VerifySolutionBody = VerifySolutionBody;
|
|
@@ -9,6 +9,7 @@ exports.ApiParams = api.ApiParams;
|
|
|
9
9
|
exports.ApiPaths = api.ApiPaths;
|
|
10
10
|
exports.CaptchaRequestBody = api.CaptchaRequestBody;
|
|
11
11
|
exports.CaptchaSolutionBody = api.CaptchaSolutionBody;
|
|
12
|
+
exports.GetPowCaptchaChallengeRequestBody = api.GetPowCaptchaChallengeRequestBody;
|
|
12
13
|
exports.ServerPowCaptchaVerifyRequestBody = api.ServerPowCaptchaVerifyRequestBody;
|
|
13
14
|
exports.SubmitPowCaptchaSolutionBody = api.SubmitPowCaptchaSolutionBody;
|
|
14
15
|
exports.VerifySolutionBody = api.VerifySolutionBody;
|
package/dist/config/config.d.ts
CHANGED
|
@@ -53,7 +53,7 @@ export declare const ProsopoBaseConfigSchema: import("zod").ZodObject<{
|
|
|
53
53
|
password?: string | undefined;
|
|
54
54
|
}>;
|
|
55
55
|
}, "strip", import("zod").ZodTypeAny, {
|
|
56
|
-
logLevel: "
|
|
56
|
+
logLevel: "trace" | "debug" | "info" | "warn" | "error" | "fatal" | "log";
|
|
57
57
|
defaultEnvironment: "development" | "staging" | "production";
|
|
58
58
|
defaultNetwork: "development" | "rococo" | "shiden";
|
|
59
59
|
account: {
|
|
@@ -67,11 +67,11 @@ export declare const ProsopoBaseConfigSchema: import("zod").ZodObject<{
|
|
|
67
67
|
secret?: string | undefined;
|
|
68
68
|
password?: string | undefined;
|
|
69
69
|
};
|
|
70
|
-
logLevel?: "
|
|
70
|
+
logLevel?: "trace" | "debug" | "info" | "warn" | "error" | "fatal" | "log" | undefined;
|
|
71
71
|
defaultEnvironment?: "development" | "staging" | "production" | undefined;
|
|
72
72
|
defaultNetwork?: "development" | "rococo" | "shiden" | undefined;
|
|
73
73
|
}>;
|
|
74
|
-
export declare const ProsopoBasicConfigSchema: import("zod").ZodObject<{
|
|
74
|
+
export declare const ProsopoBasicConfigSchema: import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
|
75
75
|
logLevel: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodEnum<["trace", "debug", "info", "warn", "error", "fatal", "log"]>>>;
|
|
76
76
|
defaultEnvironment: import("zod").ZodDefault<import("zod").ZodEnum<["development", "staging", "production"]>>;
|
|
77
77
|
defaultNetwork: import("zod").ZodDefault<import("zod").ZodEnum<["development", "rococo", "shiden"]>>;
|
|
@@ -88,6 +88,7 @@ export declare const ProsopoBasicConfigSchema: import("zod").ZodObject<{
|
|
|
88
88
|
secret?: string | undefined;
|
|
89
89
|
password?: string | undefined;
|
|
90
90
|
}>;
|
|
91
|
+
}, {
|
|
91
92
|
networks: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
92
93
|
contract: import("zod").ZodObject<{
|
|
93
94
|
address: import("zod").ZodString;
|
|
@@ -152,8 +153,8 @@ export declare const ProsopoBasicConfigSchema: import("zod").ZodObject<{
|
|
|
152
153
|
authSource: string;
|
|
153
154
|
}>>>;
|
|
154
155
|
devOnlyWatchEvents: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
155
|
-
}
|
|
156
|
-
logLevel: "
|
|
156
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
157
|
+
logLevel: "trace" | "debug" | "info" | "warn" | "error" | "fatal" | "log";
|
|
157
158
|
defaultEnvironment: "development" | "staging" | "production";
|
|
158
159
|
defaultNetwork: "development" | "rococo" | "shiden";
|
|
159
160
|
account: {
|
|
@@ -183,7 +184,7 @@ export declare const ProsopoBasicConfigSchema: import("zod").ZodObject<{
|
|
|
183
184
|
secret?: string | undefined;
|
|
184
185
|
password?: string | undefined;
|
|
185
186
|
};
|
|
186
|
-
logLevel?: "
|
|
187
|
+
logLevel?: "trace" | "debug" | "info" | "warn" | "error" | "fatal" | "log" | undefined;
|
|
187
188
|
defaultEnvironment?: "development" | "staging" | "production" | undefined;
|
|
188
189
|
defaultNetwork?: "development" | "rococo" | "shiden" | undefined;
|
|
189
190
|
networks?: Record<string, {
|
|
@@ -261,7 +262,7 @@ export declare const ProsopoCaptchaSolutionConfigSchema: import("zod").ZodObject
|
|
|
261
262
|
solutionWinningPercentage: number;
|
|
262
263
|
captchaBlockRecency: number;
|
|
263
264
|
}>;
|
|
264
|
-
export declare const ProsopoClientConfigSchema: import("zod").ZodObject<{
|
|
265
|
+
export declare const ProsopoClientConfigSchema: import("zod").ZodObject<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<{
|
|
265
266
|
logLevel: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodEnum<["trace", "debug", "info", "warn", "error", "fatal", "log"]>>>;
|
|
266
267
|
defaultEnvironment: import("zod").ZodDefault<import("zod").ZodEnum<["development", "staging", "production"]>>;
|
|
267
268
|
defaultNetwork: import("zod").ZodDefault<import("zod").ZodEnum<["development", "rococo", "shiden"]>>;
|
|
@@ -278,6 +279,7 @@ export declare const ProsopoClientConfigSchema: import("zod").ZodObject<{
|
|
|
278
279
|
secret?: string | undefined;
|
|
279
280
|
password?: string | undefined;
|
|
280
281
|
}>;
|
|
282
|
+
}, {
|
|
281
283
|
networks: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
282
284
|
contract: import("zod").ZodObject<{
|
|
283
285
|
address: import("zod").ZodString;
|
|
@@ -342,13 +344,14 @@ export declare const ProsopoClientConfigSchema: import("zod").ZodObject<{
|
|
|
342
344
|
authSource: string;
|
|
343
345
|
}>>>;
|
|
344
346
|
devOnlyWatchEvents: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
347
|
+
}>, {
|
|
345
348
|
userAccountAddress: import("zod").ZodOptional<import("zod").ZodString>;
|
|
346
349
|
web2: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
347
350
|
solutionThreshold: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
348
351
|
dappName: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
349
352
|
serverUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
350
|
-
}
|
|
351
|
-
logLevel: "
|
|
353
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
354
|
+
logLevel: "trace" | "debug" | "info" | "warn" | "error" | "fatal" | "log";
|
|
352
355
|
defaultEnvironment: "development" | "staging" | "production";
|
|
353
356
|
defaultNetwork: "development" | "rococo" | "shiden";
|
|
354
357
|
account: {
|
|
@@ -383,7 +386,7 @@ export declare const ProsopoClientConfigSchema: import("zod").ZodObject<{
|
|
|
383
386
|
secret?: string | undefined;
|
|
384
387
|
password?: string | undefined;
|
|
385
388
|
};
|
|
386
|
-
logLevel?: "
|
|
389
|
+
logLevel?: "trace" | "debug" | "info" | "warn" | "error" | "fatal" | "log" | undefined;
|
|
387
390
|
defaultEnvironment?: "development" | "staging" | "production" | undefined;
|
|
388
391
|
defaultNetwork?: "development" | "rococo" | "shiden" | undefined;
|
|
389
392
|
networks?: Record<string, {
|
|
@@ -408,7 +411,7 @@ export declare const ProsopoClientConfigSchema: import("zod").ZodObject<{
|
|
|
408
411
|
dappName?: string | undefined;
|
|
409
412
|
serverUrl?: string | undefined;
|
|
410
413
|
}>;
|
|
411
|
-
export declare const ProsopoServerConfigSchema: import("zod").ZodObject<{
|
|
414
|
+
export declare const ProsopoServerConfigSchema: import("zod").ZodObject<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<{
|
|
412
415
|
logLevel: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodEnum<["trace", "debug", "info", "warn", "error", "fatal", "log"]>>>;
|
|
413
416
|
defaultEnvironment: import("zod").ZodDefault<import("zod").ZodEnum<["development", "staging", "production"]>>;
|
|
414
417
|
defaultNetwork: import("zod").ZodDefault<import("zod").ZodEnum<["development", "rococo", "shiden"]>>;
|
|
@@ -425,6 +428,7 @@ export declare const ProsopoServerConfigSchema: import("zod").ZodObject<{
|
|
|
425
428
|
secret?: string | undefined;
|
|
426
429
|
password?: string | undefined;
|
|
427
430
|
}>;
|
|
431
|
+
}, {
|
|
428
432
|
networks: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
429
433
|
contract: import("zod").ZodObject<{
|
|
430
434
|
address: import("zod").ZodString;
|
|
@@ -489,13 +493,16 @@ export declare const ProsopoServerConfigSchema: import("zod").ZodObject<{
|
|
|
489
493
|
authSource: string;
|
|
490
494
|
}>>>;
|
|
491
495
|
devOnlyWatchEvents: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
496
|
+
}>, {
|
|
492
497
|
userAccountAddress: import("zod").ZodOptional<import("zod").ZodString>;
|
|
493
498
|
web2: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
494
499
|
solutionThreshold: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
495
500
|
dappName: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
496
501
|
serverUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
497
|
-
}
|
|
498
|
-
|
|
502
|
+
}>, {
|
|
503
|
+
serverUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
504
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
505
|
+
logLevel: "trace" | "debug" | "info" | "warn" | "error" | "fatal" | "log";
|
|
499
506
|
defaultEnvironment: "development" | "staging" | "production";
|
|
500
507
|
defaultNetwork: "development" | "rococo" | "shiden";
|
|
501
508
|
account: {
|
|
@@ -530,7 +537,7 @@ export declare const ProsopoServerConfigSchema: import("zod").ZodObject<{
|
|
|
530
537
|
secret?: string | undefined;
|
|
531
538
|
password?: string | undefined;
|
|
532
539
|
};
|
|
533
|
-
logLevel?: "
|
|
540
|
+
logLevel?: "trace" | "debug" | "info" | "warn" | "error" | "fatal" | "log" | undefined;
|
|
534
541
|
defaultEnvironment?: "development" | "staging" | "production" | undefined;
|
|
535
542
|
defaultNetwork?: "development" | "rococo" | "shiden" | undefined;
|
|
536
543
|
networks?: Record<string, {
|
|
@@ -599,7 +606,7 @@ export declare const AccountCreatorConfigSchema: import("zod").ZodObject<{
|
|
|
599
606
|
}>;
|
|
600
607
|
export type ProsopoClientConfigInput = input<typeof ProsopoClientConfigSchema>;
|
|
601
608
|
export type ProsopoClientConfigOutput = output<typeof ProsopoClientConfigSchema>;
|
|
602
|
-
export declare const ProcaptchaConfigSchema: import("zod").ZodIntersection<import("zod").ZodObject<{
|
|
609
|
+
export declare const ProcaptchaConfigSchema: import("zod").ZodIntersection<import("zod").ZodObject<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<{
|
|
603
610
|
logLevel: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodEnum<["trace", "debug", "info", "warn", "error", "fatal", "log"]>>>;
|
|
604
611
|
defaultEnvironment: import("zod").ZodDefault<import("zod").ZodEnum<["development", "staging", "production"]>>;
|
|
605
612
|
defaultNetwork: import("zod").ZodDefault<import("zod").ZodEnum<["development", "rococo", "shiden"]>>;
|
|
@@ -616,6 +623,7 @@ export declare const ProcaptchaConfigSchema: import("zod").ZodIntersection<impor
|
|
|
616
623
|
secret?: string | undefined;
|
|
617
624
|
password?: string | undefined;
|
|
618
625
|
}>;
|
|
626
|
+
}, {
|
|
619
627
|
networks: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
620
628
|
contract: import("zod").ZodObject<{
|
|
621
629
|
address: import("zod").ZodString;
|
|
@@ -680,13 +688,14 @@ export declare const ProcaptchaConfigSchema: import("zod").ZodIntersection<impor
|
|
|
680
688
|
authSource: string;
|
|
681
689
|
}>>>;
|
|
682
690
|
devOnlyWatchEvents: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
691
|
+
}>, {
|
|
683
692
|
userAccountAddress: import("zod").ZodOptional<import("zod").ZodString>;
|
|
684
693
|
web2: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
685
694
|
solutionThreshold: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
686
695
|
dappName: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
687
696
|
serverUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
688
|
-
}
|
|
689
|
-
logLevel: "
|
|
697
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
698
|
+
logLevel: "trace" | "debug" | "info" | "warn" | "error" | "fatal" | "log";
|
|
690
699
|
defaultEnvironment: "development" | "staging" | "production";
|
|
691
700
|
defaultNetwork: "development" | "rococo" | "shiden";
|
|
692
701
|
account: {
|
|
@@ -721,7 +730,7 @@ export declare const ProcaptchaConfigSchema: import("zod").ZodIntersection<impor
|
|
|
721
730
|
secret?: string | undefined;
|
|
722
731
|
password?: string | undefined;
|
|
723
732
|
};
|
|
724
|
-
logLevel?: "
|
|
733
|
+
logLevel?: "trace" | "debug" | "info" | "warn" | "error" | "fatal" | "log" | undefined;
|
|
725
734
|
defaultEnvironment?: "development" | "staging" | "production" | undefined;
|
|
726
735
|
defaultNetwork?: "development" | "rococo" | "shiden" | undefined;
|
|
727
736
|
networks?: Record<string, {
|
|
@@ -821,7 +830,7 @@ export declare const ProcaptchaConfigSchema: import("zod").ZodIntersection<impor
|
|
|
821
830
|
}>>;
|
|
822
831
|
export type ProcaptchaClientConfigInput = input<typeof ProcaptchaConfigSchema>;
|
|
823
832
|
export type ProcaptchaClientConfigOutput = output<typeof ProcaptchaConfigSchema>;
|
|
824
|
-
export declare const ProsopoConfigSchema: import("zod").ZodObject<{
|
|
833
|
+
export declare const ProsopoConfigSchema: import("zod").ZodObject<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<{
|
|
825
834
|
logLevel: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodEnum<["trace", "debug", "info", "warn", "error", "fatal", "log"]>>>;
|
|
826
835
|
defaultEnvironment: import("zod").ZodDefault<import("zod").ZodEnum<["development", "staging", "production"]>>;
|
|
827
836
|
defaultNetwork: import("zod").ZodDefault<import("zod").ZodEnum<["development", "rococo", "shiden"]>>;
|
|
@@ -838,6 +847,7 @@ export declare const ProsopoConfigSchema: import("zod").ZodObject<{
|
|
|
838
847
|
secret?: string | undefined;
|
|
839
848
|
password?: string | undefined;
|
|
840
849
|
}>;
|
|
850
|
+
}, {
|
|
841
851
|
networks: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
842
852
|
contract: import("zod").ZodObject<{
|
|
843
853
|
address: import("zod").ZodString;
|
|
@@ -902,6 +912,7 @@ export declare const ProsopoConfigSchema: import("zod").ZodObject<{
|
|
|
902
912
|
authSource: string;
|
|
903
913
|
}>>>;
|
|
904
914
|
devOnlyWatchEvents: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
915
|
+
}>, {
|
|
905
916
|
captchas: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
906
917
|
solved: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
907
918
|
count: import("zod").ZodNumber;
|
|
@@ -966,7 +977,7 @@ export declare const ProsopoConfigSchema: import("zod").ZodObject<{
|
|
|
966
977
|
port?: number | undefined;
|
|
967
978
|
}>;
|
|
968
979
|
mongoEventsUri: import("zod").ZodOptional<import("zod").ZodString>;
|
|
969
|
-
}
|
|
980
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
970
981
|
captchas: {
|
|
971
982
|
solved: {
|
|
972
983
|
count: number;
|
|
@@ -975,7 +986,7 @@ export declare const ProsopoConfigSchema: import("zod").ZodObject<{
|
|
|
975
986
|
count: number;
|
|
976
987
|
};
|
|
977
988
|
};
|
|
978
|
-
logLevel: "
|
|
989
|
+
logLevel: "trace" | "debug" | "info" | "warn" | "error" | "fatal" | "log";
|
|
979
990
|
defaultEnvironment: "development" | "staging" | "production";
|
|
980
991
|
defaultNetwork: "development" | "rococo" | "shiden";
|
|
981
992
|
account: {
|
|
@@ -1023,7 +1034,15 @@ export declare const ProsopoConfigSchema: import("zod").ZodObject<{
|
|
|
1023
1034
|
baseURL: string;
|
|
1024
1035
|
port?: number | undefined;
|
|
1025
1036
|
};
|
|
1026
|
-
|
|
1037
|
+
captchas?: {
|
|
1038
|
+
solved?: {
|
|
1039
|
+
count: number;
|
|
1040
|
+
} | undefined;
|
|
1041
|
+
unsolved?: {
|
|
1042
|
+
count: number;
|
|
1043
|
+
} | undefined;
|
|
1044
|
+
} | undefined;
|
|
1045
|
+
logLevel?: "trace" | "debug" | "info" | "warn" | "error" | "fatal" | "log" | undefined;
|
|
1027
1046
|
defaultEnvironment?: "development" | "staging" | "production" | undefined;
|
|
1028
1047
|
defaultNetwork?: "development" | "rococo" | "shiden" | undefined;
|
|
1029
1048
|
networks?: Record<string, {
|
|
@@ -1042,14 +1061,6 @@ export declare const ProsopoConfigSchema: import("zod").ZodObject<{
|
|
|
1042
1061
|
authSource: string;
|
|
1043
1062
|
}>> | undefined;
|
|
1044
1063
|
devOnlyWatchEvents?: boolean | undefined;
|
|
1045
|
-
captchas?: {
|
|
1046
|
-
solved?: {
|
|
1047
|
-
count: number;
|
|
1048
|
-
} | undefined;
|
|
1049
|
-
unsolved?: {
|
|
1050
|
-
count: number;
|
|
1051
|
-
} | undefined;
|
|
1052
|
-
} | undefined;
|
|
1053
1064
|
captchaSolutions?: {
|
|
1054
1065
|
requiredNumberOfSolutions: number;
|
|
1055
1066
|
solutionWinningPercentage: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../src/config/config.ts"],"names":[],"mappings":"AAcA,OAAO,EAAsB,qBAAqB,EAAE,MAAM,cAAc,CAAA;AAExE,OAAO,EAAE,KAAK,EAAE,MAAM,KAAK,CAAA;AAI3B,OAAO,EAAE,MAAM,EAAE,MAAM,KAAK,CAAA;AAG5B,OAAO,EAAE,KAAK,IAAI,MAAM,EAAE,MAAM,KAAK,CAAA;AAKrC,eAAO,MAAM,aAAa,iDAAkC,CAAA;AAE5D,eAAO,MAAM,sBAAsB,iEAAkD,CAAA;AAErF,MAAM,MAAM,gBAAgB,GAAG,MAAM,CAAC,OAAO,sBAAsB,CAAC,CAAA;AAIpE,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;GAQhC,CAAA;AAED,eAAO,MAAM,uBAAuB;;;;;;;;;EAGlC,CAAA;AAEF,MAAM,MAAM,sBAAsB,GAAG,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAA;AAC1E,MAAM,MAAM,uBAAuB,GAAG,MAAM,CAAC,OAAO,uBAAuB,CAAC,CAAA;AAE5E,MAAM,MAAM,mBAAmB,GAAG,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAA;AACpE,MAAM,MAAM,oBAAoB,GAAG,MAAM,CAAC,OAAO,oBAAoB,CAAC,CAAA;AAEtE,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUlC,CAAA;AAEF,eAAO,MAAM,wBAAwB
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../src/config/config.ts"],"names":[],"mappings":"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"}
|