@nexeraid/identity-schemas 2.183.0-dev → 2.184.0-dev
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/{CoinMarketCap.schema-2e51f6f1.cjs.dev.cjs → CoinMarketCap.schema-38ed7315.cjs.dev.cjs} +2 -2
- package/dist/{CoinMarketCap.schema-b2b2f4b5.esm.mjs → CoinMarketCap.schema-744a4171.esm.mjs} +2 -2
- package/dist/{CoinMarketCap.schema-f1f9e816.cjs.prod.cjs → CoinMarketCap.schema-8ec7443d.cjs.prod.cjs} +2 -2
- package/dist/declarations/src/providers/sumsub/sumsub-applicant.schema.d.ts +66 -66
- package/dist/package.json +1 -1
- package/package.json +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.cjs +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.cjs +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.esm.mjs +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.cjs +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.cjs +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.mjs +1 -1
package/dist/{CoinMarketCap.schema-2e51f6f1.cjs.dev.cjs → CoinMarketCap.schema-38ed7315.cjs.dev.cjs}
RENAMED
|
@@ -2206,8 +2206,8 @@ var SumSubIndividualApplicantSchema = z.z.object({
|
|
|
2206
2206
|
applicantPlatform: z.z.string().optional(),
|
|
2207
2207
|
ipCountry: z.z.string().optional(),
|
|
2208
2208
|
agreement: z.z.object({
|
|
2209
|
-
createdAt: z.z.string(),
|
|
2210
|
-
source: z.z.string(),
|
|
2209
|
+
createdAt: z.z.string().optional(),
|
|
2210
|
+
source: z.z.string().optional(),
|
|
2211
2211
|
targets: z.z.array(z.z.string()).optional(),
|
|
2212
2212
|
privacyNoticeUrl: z.z.string().nullish()
|
|
2213
2213
|
}).nullish(),
|
package/dist/{CoinMarketCap.schema-b2b2f4b5.esm.mjs → CoinMarketCap.schema-744a4171.esm.mjs}
RENAMED
|
@@ -2200,8 +2200,8 @@ var SumSubIndividualApplicantSchema = z.object({
|
|
|
2200
2200
|
applicantPlatform: z.string().optional(),
|
|
2201
2201
|
ipCountry: z.string().optional(),
|
|
2202
2202
|
agreement: z.object({
|
|
2203
|
-
createdAt: z.string(),
|
|
2204
|
-
source: z.string(),
|
|
2203
|
+
createdAt: z.string().optional(),
|
|
2204
|
+
source: z.string().optional(),
|
|
2205
2205
|
targets: z.array(z.string()).optional(),
|
|
2206
2206
|
privacyNoticeUrl: z.string().nullish()
|
|
2207
2207
|
}).nullish(),
|
|
@@ -2206,8 +2206,8 @@ var SumSubIndividualApplicantSchema = z.z.object({
|
|
|
2206
2206
|
applicantPlatform: z.z.string().optional(),
|
|
2207
2207
|
ipCountry: z.z.string().optional(),
|
|
2208
2208
|
agreement: z.z.object({
|
|
2209
|
-
createdAt: z.z.string(),
|
|
2210
|
-
source: z.z.string(),
|
|
2209
|
+
createdAt: z.z.string().optional(),
|
|
2210
|
+
source: z.z.string().optional(),
|
|
2211
2211
|
targets: z.z.array(z.z.string()).optional(),
|
|
2212
2212
|
privacyNoticeUrl: z.z.string().nullish()
|
|
2213
2213
|
}).nullish(),
|
|
@@ -664,18 +664,18 @@ export declare const SumSubIndividualApplicantSchema: z.ZodObject<{
|
|
|
664
664
|
applicantPlatform: z.ZodOptional<z.ZodString>;
|
|
665
665
|
ipCountry: z.ZodOptional<z.ZodString>;
|
|
666
666
|
agreement: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
667
|
-
createdAt: z.ZodString
|
|
668
|
-
source: z.ZodString
|
|
667
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
668
|
+
source: z.ZodOptional<z.ZodString>;
|
|
669
669
|
targets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
670
670
|
privacyNoticeUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
671
671
|
}, "strip", z.ZodTypeAny, {
|
|
672
|
-
createdAt
|
|
673
|
-
source
|
|
672
|
+
createdAt?: string | undefined;
|
|
673
|
+
source?: string | undefined;
|
|
674
674
|
targets?: string[] | undefined;
|
|
675
675
|
privacyNoticeUrl?: string | null | undefined;
|
|
676
676
|
}, {
|
|
677
|
-
createdAt
|
|
678
|
-
source
|
|
677
|
+
createdAt?: string | undefined;
|
|
678
|
+
source?: string | undefined;
|
|
679
679
|
targets?: string[] | undefined;
|
|
680
680
|
privacyNoticeUrl?: string | null | undefined;
|
|
681
681
|
}>>>;
|
|
@@ -935,8 +935,8 @@ export declare const SumSubIndividualApplicantSchema: z.ZodObject<{
|
|
|
935
935
|
} | null | undefined;
|
|
936
936
|
applicantPlatform?: string | undefined;
|
|
937
937
|
agreement?: {
|
|
938
|
-
createdAt
|
|
939
|
-
source
|
|
938
|
+
createdAt?: string | undefined;
|
|
939
|
+
source?: string | undefined;
|
|
940
940
|
targets?: string[] | undefined;
|
|
941
941
|
privacyNoticeUrl?: string | null | undefined;
|
|
942
942
|
} | null | undefined;
|
|
@@ -1103,8 +1103,8 @@ export declare const SumSubIndividualApplicantSchema: z.ZodObject<{
|
|
|
1103
1103
|
} | null | undefined;
|
|
1104
1104
|
applicantPlatform?: string | undefined;
|
|
1105
1105
|
agreement?: {
|
|
1106
|
-
createdAt
|
|
1107
|
-
source
|
|
1106
|
+
createdAt?: string | undefined;
|
|
1107
|
+
source?: string | undefined;
|
|
1108
1108
|
targets?: string[] | undefined;
|
|
1109
1109
|
privacyNoticeUrl?: string | null | undefined;
|
|
1110
1110
|
} | null | undefined;
|
|
@@ -2988,18 +2988,18 @@ export declare const SumsubKycDataSchema: z.ZodObject<{
|
|
|
2988
2988
|
applicantPlatform: z.ZodOptional<z.ZodString>;
|
|
2989
2989
|
ipCountry: z.ZodOptional<z.ZodString>;
|
|
2990
2990
|
agreement: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2991
|
-
createdAt: z.ZodString
|
|
2992
|
-
source: z.ZodString
|
|
2991
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2992
|
+
source: z.ZodOptional<z.ZodString>;
|
|
2993
2993
|
targets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2994
2994
|
privacyNoticeUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2995
2995
|
}, "strip", z.ZodTypeAny, {
|
|
2996
|
-
createdAt
|
|
2997
|
-
source
|
|
2996
|
+
createdAt?: string | undefined;
|
|
2997
|
+
source?: string | undefined;
|
|
2998
2998
|
targets?: string[] | undefined;
|
|
2999
2999
|
privacyNoticeUrl?: string | null | undefined;
|
|
3000
3000
|
}, {
|
|
3001
|
-
createdAt
|
|
3002
|
-
source
|
|
3001
|
+
createdAt?: string | undefined;
|
|
3002
|
+
source?: string | undefined;
|
|
3003
3003
|
targets?: string[] | undefined;
|
|
3004
3004
|
privacyNoticeUrl?: string | null | undefined;
|
|
3005
3005
|
}>>>;
|
|
@@ -3259,8 +3259,8 @@ export declare const SumsubKycDataSchema: z.ZodObject<{
|
|
|
3259
3259
|
} | null | undefined;
|
|
3260
3260
|
applicantPlatform?: string | undefined;
|
|
3261
3261
|
agreement?: {
|
|
3262
|
-
createdAt
|
|
3263
|
-
source
|
|
3262
|
+
createdAt?: string | undefined;
|
|
3263
|
+
source?: string | undefined;
|
|
3264
3264
|
targets?: string[] | undefined;
|
|
3265
3265
|
privacyNoticeUrl?: string | null | undefined;
|
|
3266
3266
|
} | null | undefined;
|
|
@@ -3427,8 +3427,8 @@ export declare const SumsubKycDataSchema: z.ZodObject<{
|
|
|
3427
3427
|
} | null | undefined;
|
|
3428
3428
|
applicantPlatform?: string | undefined;
|
|
3429
3429
|
agreement?: {
|
|
3430
|
-
createdAt
|
|
3431
|
-
source
|
|
3430
|
+
createdAt?: string | undefined;
|
|
3431
|
+
source?: string | undefined;
|
|
3432
3432
|
targets?: string[] | undefined;
|
|
3433
3433
|
privacyNoticeUrl?: string | null | undefined;
|
|
3434
3434
|
} | null | undefined;
|
|
@@ -3604,8 +3604,8 @@ export declare const SumsubKycDataSchema: z.ZodObject<{
|
|
|
3604
3604
|
} | null | undefined;
|
|
3605
3605
|
applicantPlatform?: string | undefined;
|
|
3606
3606
|
agreement?: {
|
|
3607
|
-
createdAt
|
|
3608
|
-
source
|
|
3607
|
+
createdAt?: string | undefined;
|
|
3608
|
+
source?: string | undefined;
|
|
3609
3609
|
targets?: string[] | undefined;
|
|
3610
3610
|
privacyNoticeUrl?: string | null | undefined;
|
|
3611
3611
|
} | null | undefined;
|
|
@@ -3779,8 +3779,8 @@ export declare const SumsubKycDataSchema: z.ZodObject<{
|
|
|
3779
3779
|
} | null | undefined;
|
|
3780
3780
|
applicantPlatform?: string | undefined;
|
|
3781
3781
|
agreement?: {
|
|
3782
|
-
createdAt
|
|
3783
|
-
source
|
|
3782
|
+
createdAt?: string | undefined;
|
|
3783
|
+
source?: string | undefined;
|
|
3784
3784
|
targets?: string[] | undefined;
|
|
3785
3785
|
privacyNoticeUrl?: string | null | undefined;
|
|
3786
3786
|
} | null | undefined;
|
|
@@ -4963,18 +4963,18 @@ export declare const SumSubApplicantSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4963
4963
|
applicantPlatform: z.ZodOptional<z.ZodString>;
|
|
4964
4964
|
ipCountry: z.ZodOptional<z.ZodString>;
|
|
4965
4965
|
agreement: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4966
|
-
createdAt: z.ZodString
|
|
4967
|
-
source: z.ZodString
|
|
4966
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
4967
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4968
4968
|
targets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4969
4969
|
privacyNoticeUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4970
4970
|
}, "strip", z.ZodTypeAny, {
|
|
4971
|
-
createdAt
|
|
4972
|
-
source
|
|
4971
|
+
createdAt?: string | undefined;
|
|
4972
|
+
source?: string | undefined;
|
|
4973
4973
|
targets?: string[] | undefined;
|
|
4974
4974
|
privacyNoticeUrl?: string | null | undefined;
|
|
4975
4975
|
}, {
|
|
4976
|
-
createdAt
|
|
4977
|
-
source
|
|
4976
|
+
createdAt?: string | undefined;
|
|
4977
|
+
source?: string | undefined;
|
|
4978
4978
|
targets?: string[] | undefined;
|
|
4979
4979
|
privacyNoticeUrl?: string | null | undefined;
|
|
4980
4980
|
}>>>;
|
|
@@ -5234,8 +5234,8 @@ export declare const SumSubApplicantSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5234
5234
|
} | null | undefined;
|
|
5235
5235
|
applicantPlatform?: string | undefined;
|
|
5236
5236
|
agreement?: {
|
|
5237
|
-
createdAt
|
|
5238
|
-
source
|
|
5237
|
+
createdAt?: string | undefined;
|
|
5238
|
+
source?: string | undefined;
|
|
5239
5239
|
targets?: string[] | undefined;
|
|
5240
5240
|
privacyNoticeUrl?: string | null | undefined;
|
|
5241
5241
|
} | null | undefined;
|
|
@@ -5402,8 +5402,8 @@ export declare const SumSubApplicantSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5402
5402
|
} | null | undefined;
|
|
5403
5403
|
applicantPlatform?: string | undefined;
|
|
5404
5404
|
agreement?: {
|
|
5405
|
-
createdAt
|
|
5406
|
-
source
|
|
5405
|
+
createdAt?: string | undefined;
|
|
5406
|
+
source?: string | undefined;
|
|
5407
5407
|
targets?: string[] | undefined;
|
|
5408
5408
|
privacyNoticeUrl?: string | null | undefined;
|
|
5409
5409
|
} | null | undefined;
|
|
@@ -6447,18 +6447,18 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
|
|
|
6447
6447
|
applicantPlatform: z.ZodOptional<z.ZodString>;
|
|
6448
6448
|
ipCountry: z.ZodOptional<z.ZodString>;
|
|
6449
6449
|
agreement: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6450
|
-
createdAt: z.ZodString
|
|
6451
|
-
source: z.ZodString
|
|
6450
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
6451
|
+
source: z.ZodOptional<z.ZodString>;
|
|
6452
6452
|
targets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6453
6453
|
privacyNoticeUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6454
6454
|
}, "strip", z.ZodTypeAny, {
|
|
6455
|
-
createdAt
|
|
6456
|
-
source
|
|
6455
|
+
createdAt?: string | undefined;
|
|
6456
|
+
source?: string | undefined;
|
|
6457
6457
|
targets?: string[] | undefined;
|
|
6458
6458
|
privacyNoticeUrl?: string | null | undefined;
|
|
6459
6459
|
}, {
|
|
6460
|
-
createdAt
|
|
6461
|
-
source
|
|
6460
|
+
createdAt?: string | undefined;
|
|
6461
|
+
source?: string | undefined;
|
|
6462
6462
|
targets?: string[] | undefined;
|
|
6463
6463
|
privacyNoticeUrl?: string | null | undefined;
|
|
6464
6464
|
}>>>;
|
|
@@ -6718,8 +6718,8 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
|
|
|
6718
6718
|
} | null | undefined;
|
|
6719
6719
|
applicantPlatform?: string | undefined;
|
|
6720
6720
|
agreement?: {
|
|
6721
|
-
createdAt
|
|
6722
|
-
source
|
|
6721
|
+
createdAt?: string | undefined;
|
|
6722
|
+
source?: string | undefined;
|
|
6723
6723
|
targets?: string[] | undefined;
|
|
6724
6724
|
privacyNoticeUrl?: string | null | undefined;
|
|
6725
6725
|
} | null | undefined;
|
|
@@ -6886,8 +6886,8 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
|
|
|
6886
6886
|
} | null | undefined;
|
|
6887
6887
|
applicantPlatform?: string | undefined;
|
|
6888
6888
|
agreement?: {
|
|
6889
|
-
createdAt
|
|
6890
|
-
source
|
|
6889
|
+
createdAt?: string | undefined;
|
|
6890
|
+
source?: string | undefined;
|
|
6891
6891
|
targets?: string[] | undefined;
|
|
6892
6892
|
privacyNoticeUrl?: string | null | undefined;
|
|
6893
6893
|
} | null | undefined;
|
|
@@ -7498,8 +7498,8 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
|
|
|
7498
7498
|
} | null | undefined;
|
|
7499
7499
|
applicantPlatform?: string | undefined;
|
|
7500
7500
|
agreement?: {
|
|
7501
|
-
createdAt
|
|
7502
|
-
source
|
|
7501
|
+
createdAt?: string | undefined;
|
|
7502
|
+
source?: string | undefined;
|
|
7503
7503
|
targets?: string[] | undefined;
|
|
7504
7504
|
privacyNoticeUrl?: string | null | undefined;
|
|
7505
7505
|
} | null | undefined;
|
|
@@ -7750,8 +7750,8 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
|
|
|
7750
7750
|
} | null | undefined;
|
|
7751
7751
|
applicantPlatform?: string | undefined;
|
|
7752
7752
|
agreement?: {
|
|
7753
|
-
createdAt
|
|
7754
|
-
source
|
|
7753
|
+
createdAt?: string | undefined;
|
|
7754
|
+
source?: string | undefined;
|
|
7755
7755
|
targets?: string[] | undefined;
|
|
7756
7756
|
privacyNoticeUrl?: string | null | undefined;
|
|
7757
7757
|
} | null | undefined;
|
|
@@ -8413,18 +8413,18 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
|
|
|
8413
8413
|
applicantPlatform: z.ZodOptional<z.ZodString>;
|
|
8414
8414
|
ipCountry: z.ZodOptional<z.ZodString>;
|
|
8415
8415
|
agreement: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
8416
|
-
createdAt: z.ZodString
|
|
8417
|
-
source: z.ZodString
|
|
8416
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8417
|
+
source: z.ZodOptional<z.ZodString>;
|
|
8418
8418
|
targets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8419
8419
|
privacyNoticeUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8420
8420
|
}, "strip", z.ZodTypeAny, {
|
|
8421
|
-
createdAt
|
|
8422
|
-
source
|
|
8421
|
+
createdAt?: string | undefined;
|
|
8422
|
+
source?: string | undefined;
|
|
8423
8423
|
targets?: string[] | undefined;
|
|
8424
8424
|
privacyNoticeUrl?: string | null | undefined;
|
|
8425
8425
|
}, {
|
|
8426
|
-
createdAt
|
|
8427
|
-
source
|
|
8426
|
+
createdAt?: string | undefined;
|
|
8427
|
+
source?: string | undefined;
|
|
8428
8428
|
targets?: string[] | undefined;
|
|
8429
8429
|
privacyNoticeUrl?: string | null | undefined;
|
|
8430
8430
|
}>>>;
|
|
@@ -8684,8 +8684,8 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
|
|
|
8684
8684
|
} | null | undefined;
|
|
8685
8685
|
applicantPlatform?: string | undefined;
|
|
8686
8686
|
agreement?: {
|
|
8687
|
-
createdAt
|
|
8688
|
-
source
|
|
8687
|
+
createdAt?: string | undefined;
|
|
8688
|
+
source?: string | undefined;
|
|
8689
8689
|
targets?: string[] | undefined;
|
|
8690
8690
|
privacyNoticeUrl?: string | null | undefined;
|
|
8691
8691
|
} | null | undefined;
|
|
@@ -8852,8 +8852,8 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
|
|
|
8852
8852
|
} | null | undefined;
|
|
8853
8853
|
applicantPlatform?: string | undefined;
|
|
8854
8854
|
agreement?: {
|
|
8855
|
-
createdAt
|
|
8856
|
-
source
|
|
8855
|
+
createdAt?: string | undefined;
|
|
8856
|
+
source?: string | undefined;
|
|
8857
8857
|
targets?: string[] | undefined;
|
|
8858
8858
|
privacyNoticeUrl?: string | null | undefined;
|
|
8859
8859
|
} | null | undefined;
|
|
@@ -9464,8 +9464,8 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
|
|
|
9464
9464
|
} | null | undefined;
|
|
9465
9465
|
applicantPlatform?: string | undefined;
|
|
9466
9466
|
agreement?: {
|
|
9467
|
-
createdAt
|
|
9468
|
-
source
|
|
9467
|
+
createdAt?: string | undefined;
|
|
9468
|
+
source?: string | undefined;
|
|
9469
9469
|
targets?: string[] | undefined;
|
|
9470
9470
|
privacyNoticeUrl?: string | null | undefined;
|
|
9471
9471
|
} | null | undefined;
|
|
@@ -9716,8 +9716,8 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
|
|
|
9716
9716
|
} | null | undefined;
|
|
9717
9717
|
applicantPlatform?: string | undefined;
|
|
9718
9718
|
agreement?: {
|
|
9719
|
-
createdAt
|
|
9720
|
-
source
|
|
9719
|
+
createdAt?: string | undefined;
|
|
9720
|
+
source?: string | undefined;
|
|
9721
9721
|
targets?: string[] | undefined;
|
|
9722
9722
|
privacyNoticeUrl?: string | null | undefined;
|
|
9723
9723
|
} | null | undefined;
|
|
@@ -9970,8 +9970,8 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
|
|
|
9970
9970
|
} | null | undefined;
|
|
9971
9971
|
applicantPlatform?: string | undefined;
|
|
9972
9972
|
agreement?: {
|
|
9973
|
-
createdAt
|
|
9974
|
-
source
|
|
9973
|
+
createdAt?: string | undefined;
|
|
9974
|
+
source?: string | undefined;
|
|
9975
9975
|
targets?: string[] | undefined;
|
|
9976
9976
|
privacyNoticeUrl?: string | null | undefined;
|
|
9977
9977
|
} | null | undefined;
|
|
@@ -10224,8 +10224,8 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
|
|
|
10224
10224
|
} | null | undefined;
|
|
10225
10225
|
applicantPlatform?: string | undefined;
|
|
10226
10226
|
agreement?: {
|
|
10227
|
-
createdAt
|
|
10228
|
-
source
|
|
10227
|
+
createdAt?: string | undefined;
|
|
10228
|
+
source?: string | undefined;
|
|
10229
10229
|
targets?: string[] | undefined;
|
|
10230
10230
|
privacyNoticeUrl?: string | null | undefined;
|
|
10231
10231
|
} | null | undefined;
|
package/dist/package.json
CHANGED
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var vault_schema = require('../../dist/vault.schema-f442cec3.cjs.dev.cjs');
|
|
6
|
-
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-
|
|
6
|
+
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-38ed7315.cjs.dev.cjs');
|
|
7
7
|
require('zod');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
require('decimal.js');
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var vault_schema = require('../../dist/vault.schema-85de81dc.cjs.prod.cjs');
|
|
6
|
-
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-
|
|
6
|
+
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-8ec7443d.cjs.prod.cjs');
|
|
7
7
|
require('zod');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
require('decimal.js');
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { g2 as ANALYSIS_TYPES, g3 as AnalysisType, gb as Coin, gg as EntityRiskDefaultsMap, gf as EntityRiskDefaultsValues, gm as GetActiveBlockchains, gl as GetActiveBlockchainsRequest, gn as GetActiveBlockchainsResponse, gr as GetAddressAnalysis, go as GetAddressAnalysisRequest, gt as GetAddressAnalysisResponse, gs as GetTransactionAnalysis, gp as GetTransactionAnalysisRequest, gu as GetTransactionAnalysisResponse, g7 as NonMinimalScorechainBlockchain, g4 as OBJECT_TYPES, g5 as ObjectType, gw as RawScorechainResult, ge as RiskExplanation, gc as RiskSeverity, gj as ScorechainAnalysis, g6 as ScorechainBlockchain, g8 as ScorechainBlockchainToNamespace, gq as ScorechainEntity, gd as ScorechainEntityType, gi as ScorechainError, gh as ScorechainErrorResponse, gx as ScorechainRiskToRiskLevel, gA as ScorechainTransactionRiskLevel, gz as ScorechainWalletRiskLevel, gy as ScorechainWalletRiskLevels, gv as ScoringAnalysisApiRequest, g0 as ScoringAnalysisRequest, gk as ScoringAnalysisResponse, g1 as WorkflowsScoringAnalysisRequest, ga as compareRiskLevels, g9 as getRiskLevelByRiskScore } from '../../dist/vault.schema-46659b02.esm.mjs';
|
|
2
|
-
export { K as AMLMetadata, cP as APPLICANT_CHECK_STATUSES, d4 as ApiErrorCommandResponse, d3 as ApiErrorResponse, d5 as ApiSuccessCommandResponse, cQ as ApplicantCheckStatus, cB as ApplicantImages, bA as ApplicantMemberOfSchema, bR as BENEFICIARY_TYPES, bC as BaseApplicantActionSchema, b8 as BaseProvider, bT as BeneficiaryCompanyCustomerClaims, bU as BeneficiaryCompanyCustomerClaimsArray, bS as BeneficiaryType, dg as BeneficiaryVerificationStatus, dh as BeneficiaryVerificationStatusArray, j as BigCSErrorCodes, b4 as BigConfig, B as BigCryptoChain, h as BigProperties, g as BigPropertiesLiteral, i as BigProperty, bb as BigProvider, k as BitRankRequest, l as BitRankVerified, n as BitRankVerifiedError, m as BitRankVerifiedErrorResponse, o as BitRankVerifiedResponse, dd as COMPANY_DOCUMENT_STATUS, ap as COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES, ar as COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES, an as COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES, ag as COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS, ad as COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE, dB as ChainalysisApiError, a$ as ChainalysisConfig, dz as ChainalysisErrorCodes, be as ChainalysisProvider, dx as ChainalysisRegisterApiResponse, dC as ChainalysisRegisterResponse, dw as ChainalysisRequest, dA as ChainalysisRiskAssessmentApiResponse, dD as ChainalysisRiskAssessmentResponse, dy as ChainalysisRiskLevel, a4 as CoerceDateUTC, dH as CoinMarketCapApiResponse, dI as CoinMarketCapFiatId, dF as CoinMarketCapQuote, dG as CoinMarketCapQuotes, dE as CoinMarketCapRequest, df as CompanyDocumentMetaData, de as CompanyDocumentStatus, aH as ComplyAdvantageAmlFullListing, aG as ComplyAdvantageAmlItemSource, aq as ComplyAdvantageCountryFieldSources, as as ComplyAdvantageDateOfBirthFieldSources, aF as ComplyAdvantageKeyInformation, aC as ComplyAdvantageMedia, aR as ComplyAdvantageMonitorSearchDataResponse, aT as ComplyAdvantageMonitorSearchResponse, aS as ComplyAdvantageMonitorSearchSuccessResponse, aU as ComplyAdvantageMonitoredSearchUpdate, ao as ComplyAdvantageNationalityFieldSources, bl as ComplyAdvantageProvider, bk as ComplyAdvantageProviderConfigElement, bj as ComplyAdvantageProviderConfigFilters, bi as ComplyAdvantageProviderConfigTypes, ah as ComplyAdvantageReponseMatchStatus, ae as ComplyAdvantageResponseMatchType, aE as ComplyAdvantageSearchDataResponse, aD as ComplyAdvantageSearchDataResponseHit, aI as ComplyAdvantageSearchEntitiesDataResponse, aK as ComplyAdvantageSearchEntitiesResponse, aJ as ComplyAdvantageSearchEntitiesSuccessResponse, a as ComplyAdvantageSearchErrorResponse, aL as ComplyAdvantageSearchRequest, aM as ComplyAdvantageSearchRequests, C as ComplyAdvantageSearchResponse, b as ComplyAdvantageSearchSuccessResponse, aO as ComplyAdvantageUpdateSearchEntitiesRequest, aQ as ComplyAdvantageUpdateSearchEntitiesResponse, aP as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, aN as ComplyAdvantageUpdateSearchRequest, aA as ComplyAdvantageUser, br as CreateProviderInput, bs as CreateProviderResponse, at as CreateSearchInput, c$ as CredentialMetadata, b1 as CrystalIntelligenceConfig, bg as CrystalIntelligenceProvider, dP as CrystalWalletScreeningApiRequest, dQ as CrystalWalletScreeningResponse, c_ as CustomerContactInformationOutput, dm as CustomerDocumentMetaData, dn as CustomerStatusResults, aZ as DataProvider, aY as DataProviderOptions, bw as DeleteProviderInput, bx as DeleteProviderResponse, y as DocumentIdMetadata, x as DocumentIdType, D as DocumentIdTypes, cn as DocumentMetadataSchema, co as DocumentSubmitResponse, J as EmailMetadata, E as EmailVerificationAnalysisResponse, cN as EmailVerificationResponse, F as File, cZ as GetCredentialsOutput, dj as GetKybSessionInput, dk as GetKybSessionResponse, cT as GetKycSessionInput, cU as GetKycSessionResponse, d0 as GetKycSessionResponseWithCredentialsMetadata, d6 as GetKycSessionsOutput, bq as GetProviderResponse, bp as GetProvidersResponse, ab as HIGH_RISK_TYPES, d1 as IDImageMetaData, bP as INDIVIDUAL_BENEFICIARY_RELATIONS, aX as IdentityProvider, aW as IdentityProviderOptions, bQ as IndividualBeneficiaryRelation, c as IpQualityAnalysisRequest, d as IpQualityAnalysisResponse, b5 as IpQualityConfig, e as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, f as IpQualityServiceErrorResponse, bh as IpqualityscoreProvider, d9 as KYB_RESULTS, db as KYB_SESSION_STATUSES, d7 as KYB_STEP_TYPES, c2 as KYC_DOC_SIDES, cJ as KYC_RESULTS, cL as KYC_SESSION_STATUSES, cF as KYC_STEP_TYPES, da as KybResult, dc as KybSessionStatus, d8 as KybStep, c3 as KycDocSide, cK as KycResult, cM as KycSessionStatus, cG as KycStep, cI as KycStepStatus, cH as KycStepStatuses, L as LivenessMetadata, ac as MEDIUM_RISK_TYPES, av as MatchStatus, au as MatchStatuses, aB as MatchTypeDetail, M as MergedProviders, du as MerkleAddressApiError, dt as MerkleAddressApiResponse, ds as MerkleAddressRequest, dv as MerkleAddressResponse, dr as MerkleBlockChainCodes, dq as MerkleBlockChainName, dp as MerkleBlockChainTypes, a_ as MerkleScienceConfig, bd as MerkleScienceProvider, N as NestedSession, ba as NexeraIdKYBProvider, b9 as NexeraIdSSIDProvider, H as PhoneMetadata, P as PhoneVerificationAnalysisResponse, A as ProofOfAddressDocumentType, z as ProofOfAddressDocumentTypes, G as ProofOfAddressMetadata, cY as ProofOfResidenceDocumentType, cX as ProofOfResidenceMetaData, bn as ProviderData, bo as ProviderDataProject, b7 as ProviderIntegrationType, b6 as ProviderIntegrationTypeOptions, aV as ProviderWithoutConfig, Z as RESULT_PARSER_ERROR, w as ReasonCode, v as ReasonCodes, R as RequestProperty, ax as RiskLevel, aw as RiskLevels, a9 as SEARCH_FILTER_ADVERSE_MEDIA_TYPE, a7 as SEARCH_FILTER_PEP_TYPE, a5 as SEARCH_FILTER_SANCTION_TYPE, ai as SEARCH_FILTER_TYPES, X as SESSION_NOT_FOUND, a1 as STEP_NOT_FOUND, bF as SUMSUB_APPLICANT_TYPES, cg as SUMSUB_COMPANY_BENEFICIARY_GROUP, b_ as SUMSUB_DOC_TYPES, c4 as SUMSUB_FLOW_LEVEL, cw as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, c0 as SUMSUB_KYC_DOC_TYPES, cl as SUMSUB_MEDIA_CONTENT_TYPES, bH as SUMSUB_REVIEW_ANSWERS, cC as SUMSUB_REVIEW_REJECT_LABELS, cE as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bJ as SUMSUB_REVIEW_REJECT_TYPES, bY as SUMSUB_REVIEW_STATUSES, bD as SUMSUB_STEPS, bW as SUMSUB_WEBHOOK_INTERNAL_STATUS, b2 as ScorechainConfig, bc as ScorechainProvider, al as SearchEntityType, ak as SearchEntityTypes, aa as SearchFilterAdverseMediaType, a8 as SearchFilterPepType, a6 as SearchFilterSanctionType, aj as SearchFilterType, am as SearchFilters, di as SelectKybSession, cR as SelectKycSession, cO as SelectKycSessionStep, cS as SelectKycSessionWithCompletedSteps, d2 as SelfieImageMetaData, r as Session, s as SessionWithoutSteps, p as Status, S as Statuses, O as Step, u as StepType, t as StepTypes, bN as SumSubAddress, bO as SumSubApplicantInfo, cq as SumSubApplicantResetSchema, cp as SumSubApplicantReviewStatusSchema, cv as SumSubApplicantSchema, bG as SumSubApplicantType, ck as SumSubApplicantVerificationStepSchema, bV as SumSubCompanyApplicantInfo, ce as SumSubCompanyApplicantSchema, b$ as SumSubDocType, c5 as SumSubFlowLevel, cr as SumSubGenerateExternalWebSdkLinkSchema, cf as SumSubImageId, c9 as SumSubImageReviewResultSchema, ca as SumSubImageStatus, cd as SumSubIndividualApplicantSchema, c1 as SumSubKycDocType, cm as SumSubMediaContentType, c6 as SumSubRequiredIdDoc, bI as SumSubReviewAnswer, cD as SumSubReviewRejectLabel, bK as SumSubReviewRejectType, c8 as SumSubReviewResultSchema, bZ as SumSubReviewStatus, cA as SumSubSimilarApplicantsSchema, bE as SumSubStep, cj as SumSubVerificationStepSchema, bB as SumSubWebhookSchema, cc as SumsubApplicantType, cb as SumsubApplicantTypes, ch as SumsubCompanyBeneficiaryGroup, bM as SumsubCountryCode, cu as SumsubKybDataSchema, cz as SumsubKybSessionFlowSection, cy as SumsubKybSessionFlowSectionItem, cx as SumsubKybSessionFlowSectionStatus, ct as SumsubKycDataSchema, bL as SumsubReviewDecision, ci as SumsubStepStatus, cs as SumsubVideoCallData, bX as SumsubWebhookInternalStatus, bm as SynapsProvider, _ as SynapsSessionErrorResponse, Q as SynapsSessionEvent, V as SynapsSessionRequest, $ as SynapsSessionResponse, a2 as SynapsStepErrorResponse, T as SynapsStepEvent, a0 as SynapsStepRequest, a3 as SynapsStepResponse, dN as TRMLabsAddressesScreening, dJ as TRMLabsAddressesScreeningApiRequest, dO as TRMLabsAddressesScreeningResponse, b0 as TRMLabsConfig, bf as TRMLabsProvider, dM as TRMLabsRiskScoreToScorechainRiskMapping, dK as TRM_RISK_SCORE_LEVEL, dL as TRM_RISK_SCORE_LEVEL_LABEL, bv as ToggleProviderInput, Y as UNKNOWN_ERROR, dl as UpdateKybSessionOutput, cV as UpdateKycSessionOutput, bt as UpdateProviderInput, bu as UpdateProviderResponse, az as UpdateSearchEntitiesInput, ay as UpdateSearchInput, c7 as UploadDocumentRequest, cW as VideoKycMetaData, by as WEBHOOK_TYPES, q as WebhookPayload, bz as WebhookType, b3 as WorkflowsScorechainConfig, W as WrappedIpQualityServiceErrorResponse, af as mappingMatchTypeToLabel, U as typeToHumanReadable } from '../../dist/CoinMarketCap.schema-
|
|
2
|
+
export { K as AMLMetadata, cP as APPLICANT_CHECK_STATUSES, d4 as ApiErrorCommandResponse, d3 as ApiErrorResponse, d5 as ApiSuccessCommandResponse, cQ as ApplicantCheckStatus, cB as ApplicantImages, bA as ApplicantMemberOfSchema, bR as BENEFICIARY_TYPES, bC as BaseApplicantActionSchema, b8 as BaseProvider, bT as BeneficiaryCompanyCustomerClaims, bU as BeneficiaryCompanyCustomerClaimsArray, bS as BeneficiaryType, dg as BeneficiaryVerificationStatus, dh as BeneficiaryVerificationStatusArray, j as BigCSErrorCodes, b4 as BigConfig, B as BigCryptoChain, h as BigProperties, g as BigPropertiesLiteral, i as BigProperty, bb as BigProvider, k as BitRankRequest, l as BitRankVerified, n as BitRankVerifiedError, m as BitRankVerifiedErrorResponse, o as BitRankVerifiedResponse, dd as COMPANY_DOCUMENT_STATUS, ap as COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES, ar as COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES, an as COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES, ag as COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS, ad as COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE, dB as ChainalysisApiError, a$ as ChainalysisConfig, dz as ChainalysisErrorCodes, be as ChainalysisProvider, dx as ChainalysisRegisterApiResponse, dC as ChainalysisRegisterResponse, dw as ChainalysisRequest, dA as ChainalysisRiskAssessmentApiResponse, dD as ChainalysisRiskAssessmentResponse, dy as ChainalysisRiskLevel, a4 as CoerceDateUTC, dH as CoinMarketCapApiResponse, dI as CoinMarketCapFiatId, dF as CoinMarketCapQuote, dG as CoinMarketCapQuotes, dE as CoinMarketCapRequest, df as CompanyDocumentMetaData, de as CompanyDocumentStatus, aH as ComplyAdvantageAmlFullListing, aG as ComplyAdvantageAmlItemSource, aq as ComplyAdvantageCountryFieldSources, as as ComplyAdvantageDateOfBirthFieldSources, aF as ComplyAdvantageKeyInformation, aC as ComplyAdvantageMedia, aR as ComplyAdvantageMonitorSearchDataResponse, aT as ComplyAdvantageMonitorSearchResponse, aS as ComplyAdvantageMonitorSearchSuccessResponse, aU as ComplyAdvantageMonitoredSearchUpdate, ao as ComplyAdvantageNationalityFieldSources, bl as ComplyAdvantageProvider, bk as ComplyAdvantageProviderConfigElement, bj as ComplyAdvantageProviderConfigFilters, bi as ComplyAdvantageProviderConfigTypes, ah as ComplyAdvantageReponseMatchStatus, ae as ComplyAdvantageResponseMatchType, aE as ComplyAdvantageSearchDataResponse, aD as ComplyAdvantageSearchDataResponseHit, aI as ComplyAdvantageSearchEntitiesDataResponse, aK as ComplyAdvantageSearchEntitiesResponse, aJ as ComplyAdvantageSearchEntitiesSuccessResponse, a as ComplyAdvantageSearchErrorResponse, aL as ComplyAdvantageSearchRequest, aM as ComplyAdvantageSearchRequests, C as ComplyAdvantageSearchResponse, b as ComplyAdvantageSearchSuccessResponse, aO as ComplyAdvantageUpdateSearchEntitiesRequest, aQ as ComplyAdvantageUpdateSearchEntitiesResponse, aP as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, aN as ComplyAdvantageUpdateSearchRequest, aA as ComplyAdvantageUser, br as CreateProviderInput, bs as CreateProviderResponse, at as CreateSearchInput, c$ as CredentialMetadata, b1 as CrystalIntelligenceConfig, bg as CrystalIntelligenceProvider, dP as CrystalWalletScreeningApiRequest, dQ as CrystalWalletScreeningResponse, c_ as CustomerContactInformationOutput, dm as CustomerDocumentMetaData, dn as CustomerStatusResults, aZ as DataProvider, aY as DataProviderOptions, bw as DeleteProviderInput, bx as DeleteProviderResponse, y as DocumentIdMetadata, x as DocumentIdType, D as DocumentIdTypes, cn as DocumentMetadataSchema, co as DocumentSubmitResponse, J as EmailMetadata, E as EmailVerificationAnalysisResponse, cN as EmailVerificationResponse, F as File, cZ as GetCredentialsOutput, dj as GetKybSessionInput, dk as GetKybSessionResponse, cT as GetKycSessionInput, cU as GetKycSessionResponse, d0 as GetKycSessionResponseWithCredentialsMetadata, d6 as GetKycSessionsOutput, bq as GetProviderResponse, bp as GetProvidersResponse, ab as HIGH_RISK_TYPES, d1 as IDImageMetaData, bP as INDIVIDUAL_BENEFICIARY_RELATIONS, aX as IdentityProvider, aW as IdentityProviderOptions, bQ as IndividualBeneficiaryRelation, c as IpQualityAnalysisRequest, d as IpQualityAnalysisResponse, b5 as IpQualityConfig, e as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, f as IpQualityServiceErrorResponse, bh as IpqualityscoreProvider, d9 as KYB_RESULTS, db as KYB_SESSION_STATUSES, d7 as KYB_STEP_TYPES, c2 as KYC_DOC_SIDES, cJ as KYC_RESULTS, cL as KYC_SESSION_STATUSES, cF as KYC_STEP_TYPES, da as KybResult, dc as KybSessionStatus, d8 as KybStep, c3 as KycDocSide, cK as KycResult, cM as KycSessionStatus, cG as KycStep, cI as KycStepStatus, cH as KycStepStatuses, L as LivenessMetadata, ac as MEDIUM_RISK_TYPES, av as MatchStatus, au as MatchStatuses, aB as MatchTypeDetail, M as MergedProviders, du as MerkleAddressApiError, dt as MerkleAddressApiResponse, ds as MerkleAddressRequest, dv as MerkleAddressResponse, dr as MerkleBlockChainCodes, dq as MerkleBlockChainName, dp as MerkleBlockChainTypes, a_ as MerkleScienceConfig, bd as MerkleScienceProvider, N as NestedSession, ba as NexeraIdKYBProvider, b9 as NexeraIdSSIDProvider, H as PhoneMetadata, P as PhoneVerificationAnalysisResponse, A as ProofOfAddressDocumentType, z as ProofOfAddressDocumentTypes, G as ProofOfAddressMetadata, cY as ProofOfResidenceDocumentType, cX as ProofOfResidenceMetaData, bn as ProviderData, bo as ProviderDataProject, b7 as ProviderIntegrationType, b6 as ProviderIntegrationTypeOptions, aV as ProviderWithoutConfig, Z as RESULT_PARSER_ERROR, w as ReasonCode, v as ReasonCodes, R as RequestProperty, ax as RiskLevel, aw as RiskLevels, a9 as SEARCH_FILTER_ADVERSE_MEDIA_TYPE, a7 as SEARCH_FILTER_PEP_TYPE, a5 as SEARCH_FILTER_SANCTION_TYPE, ai as SEARCH_FILTER_TYPES, X as SESSION_NOT_FOUND, a1 as STEP_NOT_FOUND, bF as SUMSUB_APPLICANT_TYPES, cg as SUMSUB_COMPANY_BENEFICIARY_GROUP, b_ as SUMSUB_DOC_TYPES, c4 as SUMSUB_FLOW_LEVEL, cw as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, c0 as SUMSUB_KYC_DOC_TYPES, cl as SUMSUB_MEDIA_CONTENT_TYPES, bH as SUMSUB_REVIEW_ANSWERS, cC as SUMSUB_REVIEW_REJECT_LABELS, cE as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bJ as SUMSUB_REVIEW_REJECT_TYPES, bY as SUMSUB_REVIEW_STATUSES, bD as SUMSUB_STEPS, bW as SUMSUB_WEBHOOK_INTERNAL_STATUS, b2 as ScorechainConfig, bc as ScorechainProvider, al as SearchEntityType, ak as SearchEntityTypes, aa as SearchFilterAdverseMediaType, a8 as SearchFilterPepType, a6 as SearchFilterSanctionType, aj as SearchFilterType, am as SearchFilters, di as SelectKybSession, cR as SelectKycSession, cO as SelectKycSessionStep, cS as SelectKycSessionWithCompletedSteps, d2 as SelfieImageMetaData, r as Session, s as SessionWithoutSteps, p as Status, S as Statuses, O as Step, u as StepType, t as StepTypes, bN as SumSubAddress, bO as SumSubApplicantInfo, cq as SumSubApplicantResetSchema, cp as SumSubApplicantReviewStatusSchema, cv as SumSubApplicantSchema, bG as SumSubApplicantType, ck as SumSubApplicantVerificationStepSchema, bV as SumSubCompanyApplicantInfo, ce as SumSubCompanyApplicantSchema, b$ as SumSubDocType, c5 as SumSubFlowLevel, cr as SumSubGenerateExternalWebSdkLinkSchema, cf as SumSubImageId, c9 as SumSubImageReviewResultSchema, ca as SumSubImageStatus, cd as SumSubIndividualApplicantSchema, c1 as SumSubKycDocType, cm as SumSubMediaContentType, c6 as SumSubRequiredIdDoc, bI as SumSubReviewAnswer, cD as SumSubReviewRejectLabel, bK as SumSubReviewRejectType, c8 as SumSubReviewResultSchema, bZ as SumSubReviewStatus, cA as SumSubSimilarApplicantsSchema, bE as SumSubStep, cj as SumSubVerificationStepSchema, bB as SumSubWebhookSchema, cc as SumsubApplicantType, cb as SumsubApplicantTypes, ch as SumsubCompanyBeneficiaryGroup, bM as SumsubCountryCode, cu as SumsubKybDataSchema, cz as SumsubKybSessionFlowSection, cy as SumsubKybSessionFlowSectionItem, cx as SumsubKybSessionFlowSectionStatus, ct as SumsubKycDataSchema, bL as SumsubReviewDecision, ci as SumsubStepStatus, cs as SumsubVideoCallData, bX as SumsubWebhookInternalStatus, bm as SynapsProvider, _ as SynapsSessionErrorResponse, Q as SynapsSessionEvent, V as SynapsSessionRequest, $ as SynapsSessionResponse, a2 as SynapsStepErrorResponse, T as SynapsStepEvent, a0 as SynapsStepRequest, a3 as SynapsStepResponse, dN as TRMLabsAddressesScreening, dJ as TRMLabsAddressesScreeningApiRequest, dO as TRMLabsAddressesScreeningResponse, b0 as TRMLabsConfig, bf as TRMLabsProvider, dM as TRMLabsRiskScoreToScorechainRiskMapping, dK as TRM_RISK_SCORE_LEVEL, dL as TRM_RISK_SCORE_LEVEL_LABEL, bv as ToggleProviderInput, Y as UNKNOWN_ERROR, dl as UpdateKybSessionOutput, cV as UpdateKycSessionOutput, bt as UpdateProviderInput, bu as UpdateProviderResponse, az as UpdateSearchEntitiesInput, ay as UpdateSearchInput, c7 as UploadDocumentRequest, cW as VideoKycMetaData, by as WEBHOOK_TYPES, q as WebhookPayload, bz as WebhookType, b3 as WorkflowsScorechainConfig, W as WrappedIpQualityServiceErrorResponse, af as mappingMatchTypeToLabel, U as typeToHumanReadable } from '../../dist/CoinMarketCap.schema-744a4171.esm.mjs';
|
|
3
3
|
import 'zod';
|
|
4
4
|
import 'nanoid';
|
|
5
5
|
import 'decimal.js';
|
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var z = require('zod');
|
|
6
6
|
var vault_schema = require('../../dist/vault.schema-f442cec3.cjs.dev.cjs');
|
|
7
7
|
var identityApi_schema = require('../../dist/identity-api.schema-69f67fc6.cjs.dev.cjs');
|
|
8
|
-
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-
|
|
8
|
+
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-38ed7315.cjs.dev.cjs');
|
|
9
9
|
var toArray = require('../../dist/toArray-39416e31.cjs.dev.cjs');
|
|
10
10
|
var zodToJsonSchema = require('zod-to-json-schema');
|
|
11
11
|
require('nanoid');
|
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var z = require('zod');
|
|
6
6
|
var vault_schema = require('../../dist/vault.schema-85de81dc.cjs.prod.cjs');
|
|
7
7
|
var identityApi_schema = require('../../dist/identity-api.schema-1656a2df.cjs.prod.cjs');
|
|
8
|
-
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-
|
|
8
|
+
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-8ec7443d.cjs.prod.cjs');
|
|
9
9
|
var toArray = require('../../dist/toArray-cf0b1880.cjs.prod.cjs');
|
|
10
10
|
var zodToJsonSchema = require('zod-to-json-schema');
|
|
11
11
|
require('nanoid');
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { aW as UuidString, dL as ExternalCustomerId, dJ as WorkflowId, be as RiskScoreType, bg as CustomerType, bm as CustomerOnboardingLevel, bo as CustomerStatus, b2 as ISO3CountryCode, at as BlockchainAddress, e3 as GenericVerifiableCredentialSchema, fM as WalletScreeningData, es as TransactionTypes, ey as TransactionReviewStatuses, fW as _toConsumableArray, aV as EnvironmentSchema } from '../../dist/vault.schema-46659b02.esm.mjs';
|
|
3
3
|
import { Y as RuleResultStatus } from '../../dist/identity-api.schema-fe2df999.esm.mjs';
|
|
4
|
-
import { M as MergedProviders, I as IpQualityServiceAnalysisResponse, C as ComplyAdvantageSearchResponse, a as ComplyAdvantageSearchErrorResponse, b as ComplyAdvantageSearchSuccessResponse } from '../../dist/CoinMarketCap.schema-
|
|
4
|
+
import { M as MergedProviders, I as IpQualityServiceAnalysisResponse, C as ComplyAdvantageSearchResponse, a as ComplyAdvantageSearchErrorResponse, b as ComplyAdvantageSearchSuccessResponse } from '../../dist/CoinMarketCap.schema-744a4171.esm.mjs';
|
|
5
5
|
import { _ as _toArray } from '../../dist/toArray-0db50818.esm.mjs';
|
|
6
6
|
import { zodToJsonSchema } from 'zod-to-json-schema';
|
|
7
7
|
import 'nanoid';
|