@nexeraid/identity-schemas 2.150.0-dev → 2.151.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.
@@ -1806,7 +1806,7 @@ var IndividualBeneficiaryRelation = zod.z.union([zod.z["enum"](INDIVIDUAL_BENEFI
1806
1806
  var BENEFICIARY_TYPES = ["ubo", "shareholder", "representative", "director"];
1807
1807
  var BeneficiaryType = zod.z["enum"](BENEFICIARY_TYPES);
1808
1808
  var BeneficiaryCompanyCustomerClaims = zod.z.object({
1809
- applicantId: zod.z.string(),
1809
+ applicantId: zod.z.string().nullish(),
1810
1810
  /**
1811
1811
  * @deprecated Types should be used instead in V2 SDK. Type is not populated in v2 sumsub sdk
1812
1812
  */
@@ -1806,7 +1806,7 @@ var IndividualBeneficiaryRelation = zod.z.union([zod.z["enum"](INDIVIDUAL_BENEFI
1806
1806
  var BENEFICIARY_TYPES = ["ubo", "shareholder", "representative", "director"];
1807
1807
  var BeneficiaryType = zod.z["enum"](BENEFICIARY_TYPES);
1808
1808
  var BeneficiaryCompanyCustomerClaims = zod.z.object({
1809
- applicantId: zod.z.string(),
1809
+ applicantId: zod.z.string().nullish(),
1810
1810
  /**
1811
1811
  * @deprecated Types should be used instead in V2 SDK. Type is not populated in v2 sumsub sdk
1812
1812
  */
@@ -1804,7 +1804,7 @@ var IndividualBeneficiaryRelation = z.union([z["enum"](INDIVIDUAL_BENEFICIARY_RE
1804
1804
  var BENEFICIARY_TYPES = ["ubo", "shareholder", "representative", "director"];
1805
1805
  var BeneficiaryType = z["enum"](BENEFICIARY_TYPES);
1806
1806
  var BeneficiaryCompanyCustomerClaims = z.object({
1807
- applicantId: z.string(),
1807
+ applicantId: z.string().nullish(),
1808
1808
  /**
1809
1809
  * @deprecated Types should be used instead in V2 SDK. Type is not populated in v2 sumsub sdk
1810
1810
  */
@@ -1150,7 +1150,7 @@ export declare const SumSubCompanyApplicantSchema: z.ZodObject<{
1150
1150
  website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1151
1151
  noUBOs: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1152
1152
  beneficiaries: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
1153
- applicantId: z.ZodString;
1153
+ applicantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1154
1154
  type: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ubo", "shareholder", "representative", "director"]>>>;
1155
1155
  inRegistry: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1156
1156
  types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["ubo", "shareholder", "representative", "director"]>, "many">>>;
@@ -1158,17 +1158,17 @@ export declare const SumSubCompanyApplicantSchema: z.ZodObject<{
1158
1158
  imageIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1159
1159
  shareSize: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1160
1160
  }, "strip", z.ZodTypeAny, {
1161
- applicantId: string;
1162
1161
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
1163
1162
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
1163
+ applicantId?: string | null | undefined;
1164
1164
  inRegistry?: boolean | null | undefined;
1165
1165
  positions?: string[] | null | undefined;
1166
1166
  imageIds?: string[] | null | undefined;
1167
1167
  shareSize?: number | null | undefined;
1168
1168
  }, {
1169
- applicantId: string;
1170
1169
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
1171
1170
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
1171
+ applicantId?: string | null | undefined;
1172
1172
  inRegistry?: boolean | null | undefined;
1173
1173
  positions?: string[] | null | undefined;
1174
1174
  imageIds?: string[] | null | undefined;
@@ -1191,9 +1191,9 @@ export declare const SumSubCompanyApplicantSchema: z.ZodObject<{
1191
1191
  website?: string | null | undefined;
1192
1192
  noUBOs?: boolean | null | undefined;
1193
1193
  beneficiaries?: {
1194
- applicantId: string;
1195
1194
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
1196
1195
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
1196
+ applicantId?: string | null | undefined;
1197
1197
  inRegistry?: boolean | null | undefined;
1198
1198
  positions?: string[] | null | undefined;
1199
1199
  imageIds?: string[] | null | undefined;
@@ -1216,9 +1216,9 @@ export declare const SumSubCompanyApplicantSchema: z.ZodObject<{
1216
1216
  website?: string | null | undefined;
1217
1217
  noUBOs?: boolean | null | undefined;
1218
1218
  beneficiaries?: {
1219
- applicantId: string;
1220
1219
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
1221
1220
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
1221
+ applicantId?: string | null | undefined;
1222
1222
  inRegistry?: boolean | null | undefined;
1223
1223
  positions?: string[] | null | undefined;
1224
1224
  imageIds?: string[] | null | undefined;
@@ -1243,9 +1243,9 @@ export declare const SumSubCompanyApplicantSchema: z.ZodObject<{
1243
1243
  website?: string | null | undefined;
1244
1244
  noUBOs?: boolean | null | undefined;
1245
1245
  beneficiaries?: {
1246
- applicantId: string;
1247
1246
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
1248
1247
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
1248
+ applicantId?: string | null | undefined;
1249
1249
  inRegistry?: boolean | null | undefined;
1250
1250
  positions?: string[] | null | undefined;
1251
1251
  imageIds?: string[] | null | undefined;
@@ -1270,9 +1270,9 @@ export declare const SumSubCompanyApplicantSchema: z.ZodObject<{
1270
1270
  website?: string | null | undefined;
1271
1271
  noUBOs?: boolean | null | undefined;
1272
1272
  beneficiaries?: {
1273
- applicantId: string;
1274
1273
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
1275
1274
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
1275
+ applicantId?: string | null | undefined;
1276
1276
  inRegistry?: boolean | null | undefined;
1277
1277
  positions?: string[] | null | undefined;
1278
1278
  imageIds?: string[] | null | undefined;
@@ -1446,9 +1446,9 @@ export declare const SumSubCompanyApplicantSchema: z.ZodObject<{
1446
1446
  website?: string | null | undefined;
1447
1447
  noUBOs?: boolean | null | undefined;
1448
1448
  beneficiaries?: {
1449
- applicantId: string;
1450
1449
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
1451
1450
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
1451
+ applicantId?: string | null | undefined;
1452
1452
  inRegistry?: boolean | null | undefined;
1453
1453
  positions?: string[] | null | undefined;
1454
1454
  imageIds?: string[] | null | undefined;
@@ -1520,9 +1520,9 @@ export declare const SumSubCompanyApplicantSchema: z.ZodObject<{
1520
1520
  website?: string | null | undefined;
1521
1521
  noUBOs?: boolean | null | undefined;
1522
1522
  beneficiaries?: {
1523
- applicantId: string;
1524
1523
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
1525
1524
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
1525
+ applicantId?: string | null | undefined;
1526
1526
  inRegistry?: boolean | null | undefined;
1527
1527
  positions?: string[] | null | undefined;
1528
1528
  imageIds?: string[] | null | undefined;
@@ -3815,7 +3815,7 @@ export declare const SumsubKybDataSchema: z.ZodObject<{
3815
3815
  website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3816
3816
  noUBOs: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3817
3817
  beneficiaries: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
3818
- applicantId: z.ZodString;
3818
+ applicantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3819
3819
  type: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ubo", "shareholder", "representative", "director"]>>>;
3820
3820
  inRegistry: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3821
3821
  types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["ubo", "shareholder", "representative", "director"]>, "many">>>;
@@ -3823,17 +3823,17 @@ export declare const SumsubKybDataSchema: z.ZodObject<{
3823
3823
  imageIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
3824
3824
  shareSize: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3825
3825
  }, "strip", z.ZodTypeAny, {
3826
- applicantId: string;
3827
3826
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
3828
3827
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
3828
+ applicantId?: string | null | undefined;
3829
3829
  inRegistry?: boolean | null | undefined;
3830
3830
  positions?: string[] | null | undefined;
3831
3831
  imageIds?: string[] | null | undefined;
3832
3832
  shareSize?: number | null | undefined;
3833
3833
  }, {
3834
- applicantId: string;
3835
3834
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
3836
3835
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
3836
+ applicantId?: string | null | undefined;
3837
3837
  inRegistry?: boolean | null | undefined;
3838
3838
  positions?: string[] | null | undefined;
3839
3839
  imageIds?: string[] | null | undefined;
@@ -3856,9 +3856,9 @@ export declare const SumsubKybDataSchema: z.ZodObject<{
3856
3856
  website?: string | null | undefined;
3857
3857
  noUBOs?: boolean | null | undefined;
3858
3858
  beneficiaries?: {
3859
- applicantId: string;
3860
3859
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
3861
3860
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
3861
+ applicantId?: string | null | undefined;
3862
3862
  inRegistry?: boolean | null | undefined;
3863
3863
  positions?: string[] | null | undefined;
3864
3864
  imageIds?: string[] | null | undefined;
@@ -3881,9 +3881,9 @@ export declare const SumsubKybDataSchema: z.ZodObject<{
3881
3881
  website?: string | null | undefined;
3882
3882
  noUBOs?: boolean | null | undefined;
3883
3883
  beneficiaries?: {
3884
- applicantId: string;
3885
3884
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
3886
3885
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
3886
+ applicantId?: string | null | undefined;
3887
3887
  inRegistry?: boolean | null | undefined;
3888
3888
  positions?: string[] | null | undefined;
3889
3889
  imageIds?: string[] | null | undefined;
@@ -3908,9 +3908,9 @@ export declare const SumsubKybDataSchema: z.ZodObject<{
3908
3908
  website?: string | null | undefined;
3909
3909
  noUBOs?: boolean | null | undefined;
3910
3910
  beneficiaries?: {
3911
- applicantId: string;
3912
3911
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
3913
3912
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
3913
+ applicantId?: string | null | undefined;
3914
3914
  inRegistry?: boolean | null | undefined;
3915
3915
  positions?: string[] | null | undefined;
3916
3916
  imageIds?: string[] | null | undefined;
@@ -3935,9 +3935,9 @@ export declare const SumsubKybDataSchema: z.ZodObject<{
3935
3935
  website?: string | null | undefined;
3936
3936
  noUBOs?: boolean | null | undefined;
3937
3937
  beneficiaries?: {
3938
- applicantId: string;
3939
3938
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
3940
3939
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
3940
+ applicantId?: string | null | undefined;
3941
3941
  inRegistry?: boolean | null | undefined;
3942
3942
  positions?: string[] | null | undefined;
3943
3943
  imageIds?: string[] | null | undefined;
@@ -4111,9 +4111,9 @@ export declare const SumsubKybDataSchema: z.ZodObject<{
4111
4111
  website?: string | null | undefined;
4112
4112
  noUBOs?: boolean | null | undefined;
4113
4113
  beneficiaries?: {
4114
- applicantId: string;
4115
4114
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
4116
4115
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
4116
+ applicantId?: string | null | undefined;
4117
4117
  inRegistry?: boolean | null | undefined;
4118
4118
  positions?: string[] | null | undefined;
4119
4119
  imageIds?: string[] | null | undefined;
@@ -4185,9 +4185,9 @@ export declare const SumsubKybDataSchema: z.ZodObject<{
4185
4185
  website?: string | null | undefined;
4186
4186
  noUBOs?: boolean | null | undefined;
4187
4187
  beneficiaries?: {
4188
- applicantId: string;
4189
4188
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
4190
4189
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
4190
+ applicantId?: string | null | undefined;
4191
4191
  inRegistry?: boolean | null | undefined;
4192
4192
  positions?: string[] | null | undefined;
4193
4193
  imageIds?: string[] | null | undefined;
@@ -4267,9 +4267,9 @@ export declare const SumsubKybDataSchema: z.ZodObject<{
4267
4267
  website?: string | null | undefined;
4268
4268
  noUBOs?: boolean | null | undefined;
4269
4269
  beneficiaries?: {
4270
- applicantId: string;
4271
4270
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
4272
4271
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
4272
+ applicantId?: string | null | undefined;
4273
4273
  inRegistry?: boolean | null | undefined;
4274
4274
  positions?: string[] | null | undefined;
4275
4275
  imageIds?: string[] | null | undefined;
@@ -4348,9 +4348,9 @@ export declare const SumsubKybDataSchema: z.ZodObject<{
4348
4348
  website?: string | null | undefined;
4349
4349
  noUBOs?: boolean | null | undefined;
4350
4350
  beneficiaries?: {
4351
- applicantId: string;
4352
4351
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
4353
4352
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
4353
+ applicantId?: string | null | undefined;
4354
4354
  inRegistry?: boolean | null | undefined;
4355
4355
  positions?: string[] | null | undefined;
4356
4356
  imageIds?: string[] | null | undefined;
@@ -5432,7 +5432,7 @@ export declare const SumSubApplicantSchema: z.ZodUnion<[z.ZodObject<{
5432
5432
  website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5433
5433
  noUBOs: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5434
5434
  beneficiaries: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
5435
- applicantId: z.ZodString;
5435
+ applicantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5436
5436
  type: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ubo", "shareholder", "representative", "director"]>>>;
5437
5437
  inRegistry: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5438
5438
  types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["ubo", "shareholder", "representative", "director"]>, "many">>>;
@@ -5440,17 +5440,17 @@ export declare const SumSubApplicantSchema: z.ZodUnion<[z.ZodObject<{
5440
5440
  imageIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
5441
5441
  shareSize: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5442
5442
  }, "strip", z.ZodTypeAny, {
5443
- applicantId: string;
5444
5443
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
5445
5444
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
5445
+ applicantId?: string | null | undefined;
5446
5446
  inRegistry?: boolean | null | undefined;
5447
5447
  positions?: string[] | null | undefined;
5448
5448
  imageIds?: string[] | null | undefined;
5449
5449
  shareSize?: number | null | undefined;
5450
5450
  }, {
5451
- applicantId: string;
5452
5451
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
5453
5452
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
5453
+ applicantId?: string | null | undefined;
5454
5454
  inRegistry?: boolean | null | undefined;
5455
5455
  positions?: string[] | null | undefined;
5456
5456
  imageIds?: string[] | null | undefined;
@@ -5473,9 +5473,9 @@ export declare const SumSubApplicantSchema: z.ZodUnion<[z.ZodObject<{
5473
5473
  website?: string | null | undefined;
5474
5474
  noUBOs?: boolean | null | undefined;
5475
5475
  beneficiaries?: {
5476
- applicantId: string;
5477
5476
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
5478
5477
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
5478
+ applicantId?: string | null | undefined;
5479
5479
  inRegistry?: boolean | null | undefined;
5480
5480
  positions?: string[] | null | undefined;
5481
5481
  imageIds?: string[] | null | undefined;
@@ -5498,9 +5498,9 @@ export declare const SumSubApplicantSchema: z.ZodUnion<[z.ZodObject<{
5498
5498
  website?: string | null | undefined;
5499
5499
  noUBOs?: boolean | null | undefined;
5500
5500
  beneficiaries?: {
5501
- applicantId: string;
5502
5501
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
5503
5502
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
5503
+ applicantId?: string | null | undefined;
5504
5504
  inRegistry?: boolean | null | undefined;
5505
5505
  positions?: string[] | null | undefined;
5506
5506
  imageIds?: string[] | null | undefined;
@@ -5525,9 +5525,9 @@ export declare const SumSubApplicantSchema: z.ZodUnion<[z.ZodObject<{
5525
5525
  website?: string | null | undefined;
5526
5526
  noUBOs?: boolean | null | undefined;
5527
5527
  beneficiaries?: {
5528
- applicantId: string;
5529
5528
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
5530
5529
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
5530
+ applicantId?: string | null | undefined;
5531
5531
  inRegistry?: boolean | null | undefined;
5532
5532
  positions?: string[] | null | undefined;
5533
5533
  imageIds?: string[] | null | undefined;
@@ -5552,9 +5552,9 @@ export declare const SumSubApplicantSchema: z.ZodUnion<[z.ZodObject<{
5552
5552
  website?: string | null | undefined;
5553
5553
  noUBOs?: boolean | null | undefined;
5554
5554
  beneficiaries?: {
5555
- applicantId: string;
5556
5555
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
5557
5556
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
5557
+ applicantId?: string | null | undefined;
5558
5558
  inRegistry?: boolean | null | undefined;
5559
5559
  positions?: string[] | null | undefined;
5560
5560
  imageIds?: string[] | null | undefined;
@@ -5728,9 +5728,9 @@ export declare const SumSubApplicantSchema: z.ZodUnion<[z.ZodObject<{
5728
5728
  website?: string | null | undefined;
5729
5729
  noUBOs?: boolean | null | undefined;
5730
5730
  beneficiaries?: {
5731
- applicantId: string;
5732
5731
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
5733
5732
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
5733
+ applicantId?: string | null | undefined;
5734
5734
  inRegistry?: boolean | null | undefined;
5735
5735
  positions?: string[] | null | undefined;
5736
5736
  imageIds?: string[] | null | undefined;
@@ -5802,9 +5802,9 @@ export declare const SumSubApplicantSchema: z.ZodUnion<[z.ZodObject<{
5802
5802
  website?: string | null | undefined;
5803
5803
  noUBOs?: boolean | null | undefined;
5804
5804
  beneficiaries?: {
5805
- applicantId: string;
5806
5805
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
5807
5806
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
5807
+ applicantId?: string | null | undefined;
5808
5808
  inRegistry?: boolean | null | undefined;
5809
5809
  positions?: string[] | null | undefined;
5810
5810
  imageIds?: string[] | null | undefined;
@@ -6916,7 +6916,7 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
6916
6916
  website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6917
6917
  noUBOs: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
6918
6918
  beneficiaries: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
6919
- applicantId: z.ZodString;
6919
+ applicantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6920
6920
  type: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ubo", "shareholder", "representative", "director"]>>>;
6921
6921
  inRegistry: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
6922
6922
  types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["ubo", "shareholder", "representative", "director"]>, "many">>>;
@@ -6924,17 +6924,17 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
6924
6924
  imageIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
6925
6925
  shareSize: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
6926
6926
  }, "strip", z.ZodTypeAny, {
6927
- applicantId: string;
6928
6927
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
6929
6928
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
6929
+ applicantId?: string | null | undefined;
6930
6930
  inRegistry?: boolean | null | undefined;
6931
6931
  positions?: string[] | null | undefined;
6932
6932
  imageIds?: string[] | null | undefined;
6933
6933
  shareSize?: number | null | undefined;
6934
6934
  }, {
6935
- applicantId: string;
6936
6935
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
6937
6936
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
6937
+ applicantId?: string | null | undefined;
6938
6938
  inRegistry?: boolean | null | undefined;
6939
6939
  positions?: string[] | null | undefined;
6940
6940
  imageIds?: string[] | null | undefined;
@@ -6957,9 +6957,9 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
6957
6957
  website?: string | null | undefined;
6958
6958
  noUBOs?: boolean | null | undefined;
6959
6959
  beneficiaries?: {
6960
- applicantId: string;
6961
6960
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
6962
6961
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
6962
+ applicantId?: string | null | undefined;
6963
6963
  inRegistry?: boolean | null | undefined;
6964
6964
  positions?: string[] | null | undefined;
6965
6965
  imageIds?: string[] | null | undefined;
@@ -6982,9 +6982,9 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
6982
6982
  website?: string | null | undefined;
6983
6983
  noUBOs?: boolean | null | undefined;
6984
6984
  beneficiaries?: {
6985
- applicantId: string;
6986
6985
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
6987
6986
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
6987
+ applicantId?: string | null | undefined;
6988
6988
  inRegistry?: boolean | null | undefined;
6989
6989
  positions?: string[] | null | undefined;
6990
6990
  imageIds?: string[] | null | undefined;
@@ -7009,9 +7009,9 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
7009
7009
  website?: string | null | undefined;
7010
7010
  noUBOs?: boolean | null | undefined;
7011
7011
  beneficiaries?: {
7012
- applicantId: string;
7013
7012
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
7014
7013
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
7014
+ applicantId?: string | null | undefined;
7015
7015
  inRegistry?: boolean | null | undefined;
7016
7016
  positions?: string[] | null | undefined;
7017
7017
  imageIds?: string[] | null | undefined;
@@ -7036,9 +7036,9 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
7036
7036
  website?: string | null | undefined;
7037
7037
  noUBOs?: boolean | null | undefined;
7038
7038
  beneficiaries?: {
7039
- applicantId: string;
7040
7039
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
7041
7040
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
7041
+ applicantId?: string | null | undefined;
7042
7042
  inRegistry?: boolean | null | undefined;
7043
7043
  positions?: string[] | null | undefined;
7044
7044
  imageIds?: string[] | null | undefined;
@@ -7212,9 +7212,9 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
7212
7212
  website?: string | null | undefined;
7213
7213
  noUBOs?: boolean | null | undefined;
7214
7214
  beneficiaries?: {
7215
- applicantId: string;
7216
7215
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
7217
7216
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
7217
+ applicantId?: string | null | undefined;
7218
7218
  inRegistry?: boolean | null | undefined;
7219
7219
  positions?: string[] | null | undefined;
7220
7220
  imageIds?: string[] | null | undefined;
@@ -7286,9 +7286,9 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
7286
7286
  website?: string | null | undefined;
7287
7287
  noUBOs?: boolean | null | undefined;
7288
7288
  beneficiaries?: {
7289
- applicantId: string;
7290
7289
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
7291
7290
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
7291
+ applicantId?: string | null | undefined;
7292
7292
  inRegistry?: boolean | null | undefined;
7293
7293
  positions?: string[] | null | undefined;
7294
7294
  imageIds?: string[] | null | undefined;
@@ -7540,9 +7540,9 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
7540
7540
  website?: string | null | undefined;
7541
7541
  noUBOs?: boolean | null | undefined;
7542
7542
  beneficiaries?: {
7543
- applicantId: string;
7544
7543
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
7545
7544
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
7545
+ applicantId?: string | null | undefined;
7546
7546
  inRegistry?: boolean | null | undefined;
7547
7547
  positions?: string[] | null | undefined;
7548
7548
  imageIds?: string[] | null | undefined;
@@ -7792,9 +7792,9 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
7792
7792
  website?: string | null | undefined;
7793
7793
  noUBOs?: boolean | null | undefined;
7794
7794
  beneficiaries?: {
7795
- applicantId: string;
7796
7795
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
7797
7796
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
7797
+ applicantId?: string | null | undefined;
7798
7798
  inRegistry?: boolean | null | undefined;
7799
7799
  positions?: string[] | null | undefined;
7800
7800
  imageIds?: string[] | null | undefined;
@@ -8882,7 +8882,7 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
8882
8882
  website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8883
8883
  noUBOs: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
8884
8884
  beneficiaries: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
8885
- applicantId: z.ZodString;
8885
+ applicantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8886
8886
  type: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ubo", "shareholder", "representative", "director"]>>>;
8887
8887
  inRegistry: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
8888
8888
  types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["ubo", "shareholder", "representative", "director"]>, "many">>>;
@@ -8890,17 +8890,17 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
8890
8890
  imageIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
8891
8891
  shareSize: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8892
8892
  }, "strip", z.ZodTypeAny, {
8893
- applicantId: string;
8894
8893
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
8895
8894
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
8895
+ applicantId?: string | null | undefined;
8896
8896
  inRegistry?: boolean | null | undefined;
8897
8897
  positions?: string[] | null | undefined;
8898
8898
  imageIds?: string[] | null | undefined;
8899
8899
  shareSize?: number | null | undefined;
8900
8900
  }, {
8901
- applicantId: string;
8902
8901
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
8903
8902
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
8903
+ applicantId?: string | null | undefined;
8904
8904
  inRegistry?: boolean | null | undefined;
8905
8905
  positions?: string[] | null | undefined;
8906
8906
  imageIds?: string[] | null | undefined;
@@ -8923,9 +8923,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
8923
8923
  website?: string | null | undefined;
8924
8924
  noUBOs?: boolean | null | undefined;
8925
8925
  beneficiaries?: {
8926
- applicantId: string;
8927
8926
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
8928
8927
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
8928
+ applicantId?: string | null | undefined;
8929
8929
  inRegistry?: boolean | null | undefined;
8930
8930
  positions?: string[] | null | undefined;
8931
8931
  imageIds?: string[] | null | undefined;
@@ -8948,9 +8948,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
8948
8948
  website?: string | null | undefined;
8949
8949
  noUBOs?: boolean | null | undefined;
8950
8950
  beneficiaries?: {
8951
- applicantId: string;
8952
8951
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
8953
8952
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
8953
+ applicantId?: string | null | undefined;
8954
8954
  inRegistry?: boolean | null | undefined;
8955
8955
  positions?: string[] | null | undefined;
8956
8956
  imageIds?: string[] | null | undefined;
@@ -8975,9 +8975,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
8975
8975
  website?: string | null | undefined;
8976
8976
  noUBOs?: boolean | null | undefined;
8977
8977
  beneficiaries?: {
8978
- applicantId: string;
8979
8978
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
8980
8979
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
8980
+ applicantId?: string | null | undefined;
8981
8981
  inRegistry?: boolean | null | undefined;
8982
8982
  positions?: string[] | null | undefined;
8983
8983
  imageIds?: string[] | null | undefined;
@@ -9002,9 +9002,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
9002
9002
  website?: string | null | undefined;
9003
9003
  noUBOs?: boolean | null | undefined;
9004
9004
  beneficiaries?: {
9005
- applicantId: string;
9006
9005
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
9007
9006
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
9007
+ applicantId?: string | null | undefined;
9008
9008
  inRegistry?: boolean | null | undefined;
9009
9009
  positions?: string[] | null | undefined;
9010
9010
  imageIds?: string[] | null | undefined;
@@ -9178,9 +9178,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
9178
9178
  website?: string | null | undefined;
9179
9179
  noUBOs?: boolean | null | undefined;
9180
9180
  beneficiaries?: {
9181
- applicantId: string;
9182
9181
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
9183
9182
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
9183
+ applicantId?: string | null | undefined;
9184
9184
  inRegistry?: boolean | null | undefined;
9185
9185
  positions?: string[] | null | undefined;
9186
9186
  imageIds?: string[] | null | undefined;
@@ -9252,9 +9252,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
9252
9252
  website?: string | null | undefined;
9253
9253
  noUBOs?: boolean | null | undefined;
9254
9254
  beneficiaries?: {
9255
- applicantId: string;
9256
9255
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
9257
9256
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
9257
+ applicantId?: string | null | undefined;
9258
9258
  inRegistry?: boolean | null | undefined;
9259
9259
  positions?: string[] | null | undefined;
9260
9260
  imageIds?: string[] | null | undefined;
@@ -9506,9 +9506,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
9506
9506
  website?: string | null | undefined;
9507
9507
  noUBOs?: boolean | null | undefined;
9508
9508
  beneficiaries?: {
9509
- applicantId: string;
9510
9509
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
9511
9510
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
9511
+ applicantId?: string | null | undefined;
9512
9512
  inRegistry?: boolean | null | undefined;
9513
9513
  positions?: string[] | null | undefined;
9514
9514
  imageIds?: string[] | null | undefined;
@@ -9758,9 +9758,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
9758
9758
  website?: string | null | undefined;
9759
9759
  noUBOs?: boolean | null | undefined;
9760
9760
  beneficiaries?: {
9761
- applicantId: string;
9762
9761
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
9763
9762
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
9763
+ applicantId?: string | null | undefined;
9764
9764
  inRegistry?: boolean | null | undefined;
9765
9765
  positions?: string[] | null | undefined;
9766
9766
  imageIds?: string[] | null | undefined;
@@ -10012,9 +10012,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
10012
10012
  website?: string | null | undefined;
10013
10013
  noUBOs?: boolean | null | undefined;
10014
10014
  beneficiaries?: {
10015
- applicantId: string;
10016
10015
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
10017
10016
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
10017
+ applicantId?: string | null | undefined;
10018
10018
  inRegistry?: boolean | null | undefined;
10019
10019
  positions?: string[] | null | undefined;
10020
10020
  imageIds?: string[] | null | undefined;
@@ -10266,9 +10266,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
10266
10266
  website?: string | null | undefined;
10267
10267
  noUBOs?: boolean | null | undefined;
10268
10268
  beneficiaries?: {
10269
- applicantId: string;
10270
10269
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
10271
10270
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
10271
+ applicantId?: string | null | undefined;
10272
10272
  inRegistry?: boolean | null | undefined;
10273
10273
  positions?: string[] | null | undefined;
10274
10274
  imageIds?: string[] | null | undefined;
@@ -351,7 +351,7 @@ export declare const BENEFICIARY_TYPES: readonly ["ubo", "shareholder", "represe
351
351
  export declare const BeneficiaryType: z.ZodEnum<["ubo", "shareholder", "representative", "director"]>;
352
352
  export type BeneficiaryType = z.infer<typeof BeneficiaryType>;
353
353
  export declare const BeneficiaryCompanyCustomerClaims: z.ZodObject<{
354
- applicantId: z.ZodString;
354
+ applicantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
355
355
  /**
356
356
  * @deprecated Types should be used instead in V2 SDK. Type is not populated in v2 sumsub sdk
357
357
  */
@@ -368,17 +368,17 @@ export declare const BeneficiaryCompanyCustomerClaims: z.ZodObject<{
368
368
  imageIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
369
369
  shareSize: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
370
370
  }, "strip", z.ZodTypeAny, {
371
- applicantId: string;
372
371
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
373
372
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
373
+ applicantId?: string | null | undefined;
374
374
  inRegistry?: boolean | null | undefined;
375
375
  positions?: string[] | null | undefined;
376
376
  imageIds?: string[] | null | undefined;
377
377
  shareSize?: number | null | undefined;
378
378
  }, {
379
- applicantId: string;
380
379
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
381
380
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
381
+ applicantId?: string | null | undefined;
382
382
  inRegistry?: boolean | null | undefined;
383
383
  positions?: string[] | null | undefined;
384
384
  imageIds?: string[] | null | undefined;
@@ -386,7 +386,7 @@ export declare const BeneficiaryCompanyCustomerClaims: z.ZodObject<{
386
386
  }>;
387
387
  export type BeneficiaryCompanyCustomerClaims = z.infer<typeof BeneficiaryCompanyCustomerClaims>;
388
388
  export declare const BeneficiaryCompanyCustomerClaimsArray: z.ZodArray<z.ZodObject<{
389
- applicantId: z.ZodString;
389
+ applicantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
390
390
  /**
391
391
  * @deprecated Types should be used instead in V2 SDK. Type is not populated in v2 sumsub sdk
392
392
  */
@@ -403,17 +403,17 @@ export declare const BeneficiaryCompanyCustomerClaimsArray: z.ZodArray<z.ZodObje
403
403
  imageIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
404
404
  shareSize: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
405
405
  }, "strip", z.ZodTypeAny, {
406
- applicantId: string;
407
406
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
408
407
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
408
+ applicantId?: string | null | undefined;
409
409
  inRegistry?: boolean | null | undefined;
410
410
  positions?: string[] | null | undefined;
411
411
  imageIds?: string[] | null | undefined;
412
412
  shareSize?: number | null | undefined;
413
413
  }, {
414
- applicantId: string;
415
414
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
416
415
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
416
+ applicantId?: string | null | undefined;
417
417
  inRegistry?: boolean | null | undefined;
418
418
  positions?: string[] | null | undefined;
419
419
  imageIds?: string[] | null | undefined;
@@ -437,7 +437,7 @@ export declare const SumSubCompanyApplicantInfo: z.ZodObject<{
437
437
  website: z.ZodOptional<z.ZodNullable<z.ZodString>>;
438
438
  noUBOs: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
439
439
  beneficiaries: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
440
- applicantId: z.ZodString;
440
+ applicantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
441
441
  /**
442
442
  * @deprecated Types should be used instead in V2 SDK. Type is not populated in v2 sumsub sdk
443
443
  */
@@ -454,17 +454,17 @@ export declare const SumSubCompanyApplicantInfo: z.ZodObject<{
454
454
  imageIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
455
455
  shareSize: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
456
456
  }, "strip", z.ZodTypeAny, {
457
- applicantId: string;
458
457
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
459
458
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
459
+ applicantId?: string | null | undefined;
460
460
  inRegistry?: boolean | null | undefined;
461
461
  positions?: string[] | null | undefined;
462
462
  imageIds?: string[] | null | undefined;
463
463
  shareSize?: number | null | undefined;
464
464
  }, {
465
- applicantId: string;
466
465
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
467
466
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
467
+ applicantId?: string | null | undefined;
468
468
  inRegistry?: boolean | null | undefined;
469
469
  positions?: string[] | null | undefined;
470
470
  imageIds?: string[] | null | undefined;
@@ -487,9 +487,9 @@ export declare const SumSubCompanyApplicantInfo: z.ZodObject<{
487
487
  website?: string | null | undefined;
488
488
  noUBOs?: boolean | null | undefined;
489
489
  beneficiaries?: {
490
- applicantId: string;
491
490
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
492
491
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
492
+ applicantId?: string | null | undefined;
493
493
  inRegistry?: boolean | null | undefined;
494
494
  positions?: string[] | null | undefined;
495
495
  imageIds?: string[] | null | undefined;
@@ -512,9 +512,9 @@ export declare const SumSubCompanyApplicantInfo: z.ZodObject<{
512
512
  website?: string | null | undefined;
513
513
  noUBOs?: boolean | null | undefined;
514
514
  beneficiaries?: {
515
- applicantId: string;
516
515
  type?: "director" | "shareholder" | "ubo" | "representative" | null | undefined;
517
516
  types?: ("director" | "shareholder" | "ubo" | "representative")[] | null | undefined;
517
+ applicantId?: string | null | undefined;
518
518
  inRegistry?: boolean | null | undefined;
519
519
  positions?: string[] | null | undefined;
520
520
  imageIds?: string[] | null | undefined;
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexeraid/identity-schemas",
3
- "version": "2.150.0",
3
+ "version": "2.151.0",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "license": "ISC",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexeraid/identity-schemas",
3
- "version": "2.150.0-dev",
3
+ "version": "2.151.0-dev",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "license": "ISC",
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var vault_schema = require('../../dist/vault.schema-b3e91b84.cjs.dev.cjs');
6
- var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-f36672ef.cjs.dev.cjs');
6
+ var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-28a667b8.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-516f8cf7.cjs.prod.cjs');
6
- var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-df24137f.cjs.prod.cjs');
6
+ var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-2b726ff4.cjs.prod.cjs');
7
7
  require('zod');
8
8
  require('nanoid');
9
9
  require('decimal.js');
@@ -1,5 +1,5 @@
1
1
  export { fD as ANALYSIS_TYPES, fE as AnalysisType, fM as Coin, fR as EntityRiskDefaultsMap, fQ as EntityRiskDefaultsValues, fX as GetActiveBlockchains, fW as GetActiveBlockchainsRequest, fY as GetActiveBlockchainsResponse, f$ as GetAddressAnalysis, fZ as GetAddressAnalysisRequest, g0 as GetAddressAnalysisResponse, fI as NonMinimalScorechainBlockchain, fF as OBJECT_TYPES, fG as ObjectType, g2 as RawScorechainResult, fP as RiskExplanation, fN as RiskSeverity, fU as ScorechainAnalysis, fH as ScorechainBlockchain, fJ as ScorechainBlockchainToNamespace, f_ as ScorechainEntity, fO as ScorechainEntityType, fT as ScorechainError, fS as ScorechainErrorResponse, g3 as ScorechainRiskToRiskLevel, g5 as ScorechainWalletRiskLevel, g4 as ScorechainWalletRiskLevels, g1 as ScoringAnalysisApiRequest, fB as ScoringAnalysisRequest, fV as ScoringAnalysisResponse, fC as WorkflowsScoringAnalysisRequest, fL as compareRiskLevels, fK as getRiskLevelByRiskScore } from '../../dist/vault.schema-88946b11.esm.mjs';
2
- export { K as AMLMetadata, cK as APPLICANT_CHECK_STATUSES, c$ as ApiErrorCommandResponse, c_ as ApiErrorResponse, d0 as ApiSuccessCommandResponse, cL as ApplicantCheckStatus, bw as ApplicantMemberOfSchema, bN as BENEFICIARY_TYPES, by as BaseApplicantActionSchema, b6 as BaseProvider, bP as BeneficiaryCompanyCustomerClaims, bQ as BeneficiaryCompanyCustomerClaimsArray, bO as BeneficiaryType, d9 as BeneficiaryVerificationStatus, da as BeneficiaryVerificationStatusArray, j as BigCSErrorCodes, b3 as BigConfig, B as BigCryptoChain, h as BigProperties, g as BigPropertiesLiteral, i as BigProperty, b9 as BigProvider, k as BitRankRequest, l as BitRankVerified, n as BitRankVerifiedError, m as BitRankVerifiedErrorResponse, o as BitRankVerifiedResponse, 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, du as ChainalysisApiError, a$ as ChainalysisConfig, ds as ChainalysisErrorCodes, bc as ChainalysisProvider, dq as ChainalysisRegisterApiResponse, dv as ChainalysisRegisterResponse, dp as ChainalysisRequest, dt as ChainalysisRiskAssessmentApiResponse, dw as ChainalysisRiskAssessmentResponse, dr as ChainalysisRiskLevel, a4 as CoerceDateUTC, dA as CoinMarketCapApiResponse, dB as CoinMarketCapFiatId, dy as CoinMarketCapQuote, dz as CoinMarketCapQuotes, dx as CoinMarketCapRequest, d8 as CompanyDocumentMetaData, 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, bh as ComplyAdvantageProvider, bg as ComplyAdvantageProviderConfigElement, bf as ComplyAdvantageProviderConfigFilters, be 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, bn as CreateProviderInput, bo as CreateProviderResponse, at as CreateSearchInput, cW as CredentialMetadata, cV as CustomerContactInformationOutput, df as CustomerDocumentMetaData, dg as CustomerStatusResults, aZ as DataProvider, aY as DataProviderOptions, bs as DeleteProviderInput, bt as DeleteProviderResponse, y as DocumentIdMetadata, x as DocumentIdType, D as DocumentIdTypes, cj as DocumentMetadataSchema, ck as DocumentSubmitResponse, J as EmailMetadata, E as EmailVerificationAnalysisResponse, cI as EmailVerificationResponse, F as File, cU as GetCredentialsOutput, dc as GetKybSessionInput, dd as GetKybSessionResponse, cO as GetKycSessionInput, cP as GetKycSessionResponse, cX as GetKycSessionResponseWithCredentialsMetadata, d1 as GetKycSessionsOutput, bm as GetProviderResponse, bl as GetProvidersResponse, ab as HIGH_RISK_TYPES, cY as IDImageMetaData, bL as INDIVIDUAL_BENEFICIARY_RELATIONS, aX as IdentityProvider, aW as IdentityProviderOptions, bM as IndividualBeneficiaryRelation, c as IpQualityAnalysisRequest, d as IpQualityAnalysisResponse, b2 as IpQualityConfig, e as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, f as IpQualityServiceErrorResponse, bd as IpqualityscoreProvider, d4 as KYB_RESULTS, d6 as KYB_SESSION_STATUSES, d2 as KYB_STEP_TYPES, b_ as KYC_DOC_SIDES, cE as KYC_RESULTS, cG as KYC_SESSION_STATUSES, cA as KYC_STEP_TYPES, d5 as KybResult, d7 as KybSessionStatus, d3 as KybStep, b$ as KycDocSide, cF as KycResult, cH as KycSessionStatus, cB as KycStep, cD as KycStepStatus, cC as KycStepStatuses, L as LivenessMetadata, ac as MEDIUM_RISK_TYPES, av as MatchStatus, au as MatchStatuses, aB as MatchTypeDetail, M as MergedProviders, dm as MerkleAddressApiError, dl as MerkleAddressApiResponse, dk as MerkleAddressRequest, dn as MerkleAddressResponse, dj as MerkleBlockChainCodes, di as MerkleBlockChainName, dh as MerkleBlockChainTypes, a_ as MerkleScienceConfig, bb as MerkleScienceProvider, N as NestedSession, b8 as NexeraIdKYBProvider, b7 as NexeraIdSSIDProvider, H as PhoneMetadata, P as PhoneVerificationAnalysisResponse, A as ProofOfAddressDocumentType, z as ProofOfAddressDocumentTypes, G as ProofOfAddressMetadata, cT as ProofOfResidenceDocumentType, cS as ProofOfResidenceMetaData, bj as ProviderData, bk as ProviderDataProject, b5 as ProviderIntegrationType, b4 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, bB as SUMSUB_APPLICANT_TYPES, cc as SUMSUB_COMPANY_BENEFICIARY_GROUP, bW as SUMSUB_DOC_TYPES, c0 as SUMSUB_FLOW_LEVEL, cs as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, bY as SUMSUB_KYC_DOC_TYPES, ch as SUMSUB_MEDIA_CONTENT_TYPES, bD as SUMSUB_REVIEW_ANSWERS, cx as SUMSUB_REVIEW_REJECT_LABELS, cz as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bF as SUMSUB_REVIEW_REJECT_TYPES, bU as SUMSUB_REVIEW_STATUSES, bz as SUMSUB_STEPS, bS as SUMSUB_WEBHOOK_INTERNAL_STATUS, b0 as ScorechainConfig, ba as ScorechainProvider, al as SearchEntityType, ak as SearchEntityTypes, aa as SearchFilterAdverseMediaType, a8 as SearchFilterPepType, a6 as SearchFilterSanctionType, aj as SearchFilterType, am as SearchFilters, db as SelectKybSession, cM as SelectKycSession, cJ as SelectKycSessionStep, cN as SelectKycSessionWithCompletedSteps, cZ as SelfieImageMetaData, r as Session, s as SessionWithoutSteps, p as Status, S as Statuses, O as Step, u as StepType, t as StepTypes, bJ as SumSubAddress, bK as SumSubApplicantInfo, cm as SumSubApplicantResetSchema, cl as SumSubApplicantReviewStatusSchema, cr as SumSubApplicantSchema, bC as SumSubApplicantType, cg as SumSubApplicantVerificationStepSchema, bR as SumSubCompanyApplicantInfo, ca as SumSubCompanyApplicantSchema, bX as SumSubDocType, c1 as SumSubFlowLevel, cn as SumSubGenerateExternalWebSdkLinkSchema, cb as SumSubImageId, c5 as SumSubImageReviewResultSchema, c6 as SumSubImageStatus, c9 as SumSubIndividualApplicantSchema, bZ as SumSubKycDocType, ci as SumSubMediaContentType, c2 as SumSubRequiredIdDoc, bE as SumSubReviewAnswer, cy as SumSubReviewRejectLabel, bG as SumSubReviewRejectType, c4 as SumSubReviewResultSchema, bV as SumSubReviewStatus, cw as SumSubSimilarApplicantsSchema, bA as SumSubStep, cf as SumSubVerificationStepSchema, bx as SumSubWebhookSchema, c8 as SumsubApplicantType, c7 as SumsubApplicantTypes, cd as SumsubCompanyBeneficiaryGroup, bI as SumsubCountryCode, cq as SumsubKybDataSchema, cv as SumsubKybSessionFlowSection, cu as SumsubKybSessionFlowSectionItem, ct as SumsubKybSessionFlowSectionStatus, cp as SumsubKycDataSchema, bH as SumsubReviewDecision, ce as SumsubStepStatus, co as SumsubVideoCallData, bT as SumsubWebhookInternalStatus, bi as SynapsProvider, _ as SynapsSessionErrorResponse, Q as SynapsSessionEvent, V as SynapsSessionRequest, $ as SynapsSessionResponse, a2 as SynapsStepErrorResponse, T as SynapsStepEvent, a0 as SynapsStepRequest, a3 as SynapsStepResponse, br as ToggleProviderInput, Y as UNKNOWN_ERROR, de as UpdateKybSessionOutput, cQ as UpdateKycSessionOutput, bp as UpdateProviderInput, bq as UpdateProviderResponse, az as UpdateSearchEntitiesInput, ay as UpdateSearchInput, c3 as UploadDocumentRequest, cR as VideoKycMetaData, bu as WEBHOOK_TYPES, q as WebhookPayload, bv as WebhookType, b1 as WorkflowsScorechainConfig, W as WrappedIpQualityServiceErrorResponse, af as mappingMatchTypeToLabel, U as typeToHumanReadable } from '../../dist/CoinMarketCap.schema-9357caad.esm.mjs';
2
+ export { K as AMLMetadata, cK as APPLICANT_CHECK_STATUSES, c$ as ApiErrorCommandResponse, c_ as ApiErrorResponse, d0 as ApiSuccessCommandResponse, cL as ApplicantCheckStatus, bw as ApplicantMemberOfSchema, bN as BENEFICIARY_TYPES, by as BaseApplicantActionSchema, b6 as BaseProvider, bP as BeneficiaryCompanyCustomerClaims, bQ as BeneficiaryCompanyCustomerClaimsArray, bO as BeneficiaryType, d9 as BeneficiaryVerificationStatus, da as BeneficiaryVerificationStatusArray, j as BigCSErrorCodes, b3 as BigConfig, B as BigCryptoChain, h as BigProperties, g as BigPropertiesLiteral, i as BigProperty, b9 as BigProvider, k as BitRankRequest, l as BitRankVerified, n as BitRankVerifiedError, m as BitRankVerifiedErrorResponse, o as BitRankVerifiedResponse, 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, du as ChainalysisApiError, a$ as ChainalysisConfig, ds as ChainalysisErrorCodes, bc as ChainalysisProvider, dq as ChainalysisRegisterApiResponse, dv as ChainalysisRegisterResponse, dp as ChainalysisRequest, dt as ChainalysisRiskAssessmentApiResponse, dw as ChainalysisRiskAssessmentResponse, dr as ChainalysisRiskLevel, a4 as CoerceDateUTC, dA as CoinMarketCapApiResponse, dB as CoinMarketCapFiatId, dy as CoinMarketCapQuote, dz as CoinMarketCapQuotes, dx as CoinMarketCapRequest, d8 as CompanyDocumentMetaData, 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, bh as ComplyAdvantageProvider, bg as ComplyAdvantageProviderConfigElement, bf as ComplyAdvantageProviderConfigFilters, be 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, bn as CreateProviderInput, bo as CreateProviderResponse, at as CreateSearchInput, cW as CredentialMetadata, cV as CustomerContactInformationOutput, df as CustomerDocumentMetaData, dg as CustomerStatusResults, aZ as DataProvider, aY as DataProviderOptions, bs as DeleteProviderInput, bt as DeleteProviderResponse, y as DocumentIdMetadata, x as DocumentIdType, D as DocumentIdTypes, cj as DocumentMetadataSchema, ck as DocumentSubmitResponse, J as EmailMetadata, E as EmailVerificationAnalysisResponse, cI as EmailVerificationResponse, F as File, cU as GetCredentialsOutput, dc as GetKybSessionInput, dd as GetKybSessionResponse, cO as GetKycSessionInput, cP as GetKycSessionResponse, cX as GetKycSessionResponseWithCredentialsMetadata, d1 as GetKycSessionsOutput, bm as GetProviderResponse, bl as GetProvidersResponse, ab as HIGH_RISK_TYPES, cY as IDImageMetaData, bL as INDIVIDUAL_BENEFICIARY_RELATIONS, aX as IdentityProvider, aW as IdentityProviderOptions, bM as IndividualBeneficiaryRelation, c as IpQualityAnalysisRequest, d as IpQualityAnalysisResponse, b2 as IpQualityConfig, e as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, f as IpQualityServiceErrorResponse, bd as IpqualityscoreProvider, d4 as KYB_RESULTS, d6 as KYB_SESSION_STATUSES, d2 as KYB_STEP_TYPES, b_ as KYC_DOC_SIDES, cE as KYC_RESULTS, cG as KYC_SESSION_STATUSES, cA as KYC_STEP_TYPES, d5 as KybResult, d7 as KybSessionStatus, d3 as KybStep, b$ as KycDocSide, cF as KycResult, cH as KycSessionStatus, cB as KycStep, cD as KycStepStatus, cC as KycStepStatuses, L as LivenessMetadata, ac as MEDIUM_RISK_TYPES, av as MatchStatus, au as MatchStatuses, aB as MatchTypeDetail, M as MergedProviders, dm as MerkleAddressApiError, dl as MerkleAddressApiResponse, dk as MerkleAddressRequest, dn as MerkleAddressResponse, dj as MerkleBlockChainCodes, di as MerkleBlockChainName, dh as MerkleBlockChainTypes, a_ as MerkleScienceConfig, bb as MerkleScienceProvider, N as NestedSession, b8 as NexeraIdKYBProvider, b7 as NexeraIdSSIDProvider, H as PhoneMetadata, P as PhoneVerificationAnalysisResponse, A as ProofOfAddressDocumentType, z as ProofOfAddressDocumentTypes, G as ProofOfAddressMetadata, cT as ProofOfResidenceDocumentType, cS as ProofOfResidenceMetaData, bj as ProviderData, bk as ProviderDataProject, b5 as ProviderIntegrationType, b4 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, bB as SUMSUB_APPLICANT_TYPES, cc as SUMSUB_COMPANY_BENEFICIARY_GROUP, bW as SUMSUB_DOC_TYPES, c0 as SUMSUB_FLOW_LEVEL, cs as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, bY as SUMSUB_KYC_DOC_TYPES, ch as SUMSUB_MEDIA_CONTENT_TYPES, bD as SUMSUB_REVIEW_ANSWERS, cx as SUMSUB_REVIEW_REJECT_LABELS, cz as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bF as SUMSUB_REVIEW_REJECT_TYPES, bU as SUMSUB_REVIEW_STATUSES, bz as SUMSUB_STEPS, bS as SUMSUB_WEBHOOK_INTERNAL_STATUS, b0 as ScorechainConfig, ba as ScorechainProvider, al as SearchEntityType, ak as SearchEntityTypes, aa as SearchFilterAdverseMediaType, a8 as SearchFilterPepType, a6 as SearchFilterSanctionType, aj as SearchFilterType, am as SearchFilters, db as SelectKybSession, cM as SelectKycSession, cJ as SelectKycSessionStep, cN as SelectKycSessionWithCompletedSteps, cZ as SelfieImageMetaData, r as Session, s as SessionWithoutSteps, p as Status, S as Statuses, O as Step, u as StepType, t as StepTypes, bJ as SumSubAddress, bK as SumSubApplicantInfo, cm as SumSubApplicantResetSchema, cl as SumSubApplicantReviewStatusSchema, cr as SumSubApplicantSchema, bC as SumSubApplicantType, cg as SumSubApplicantVerificationStepSchema, bR as SumSubCompanyApplicantInfo, ca as SumSubCompanyApplicantSchema, bX as SumSubDocType, c1 as SumSubFlowLevel, cn as SumSubGenerateExternalWebSdkLinkSchema, cb as SumSubImageId, c5 as SumSubImageReviewResultSchema, c6 as SumSubImageStatus, c9 as SumSubIndividualApplicantSchema, bZ as SumSubKycDocType, ci as SumSubMediaContentType, c2 as SumSubRequiredIdDoc, bE as SumSubReviewAnswer, cy as SumSubReviewRejectLabel, bG as SumSubReviewRejectType, c4 as SumSubReviewResultSchema, bV as SumSubReviewStatus, cw as SumSubSimilarApplicantsSchema, bA as SumSubStep, cf as SumSubVerificationStepSchema, bx as SumSubWebhookSchema, c8 as SumsubApplicantType, c7 as SumsubApplicantTypes, cd as SumsubCompanyBeneficiaryGroup, bI as SumsubCountryCode, cq as SumsubKybDataSchema, cv as SumsubKybSessionFlowSection, cu as SumsubKybSessionFlowSectionItem, ct as SumsubKybSessionFlowSectionStatus, cp as SumsubKycDataSchema, bH as SumsubReviewDecision, ce as SumsubStepStatus, co as SumsubVideoCallData, bT as SumsubWebhookInternalStatus, bi as SynapsProvider, _ as SynapsSessionErrorResponse, Q as SynapsSessionEvent, V as SynapsSessionRequest, $ as SynapsSessionResponse, a2 as SynapsStepErrorResponse, T as SynapsStepEvent, a0 as SynapsStepRequest, a3 as SynapsStepResponse, br as ToggleProviderInput, Y as UNKNOWN_ERROR, de as UpdateKybSessionOutput, cQ as UpdateKycSessionOutput, bp as UpdateProviderInput, bq as UpdateProviderResponse, az as UpdateSearchEntitiesInput, ay as UpdateSearchInput, c3 as UploadDocumentRequest, cR as VideoKycMetaData, bu as WEBHOOK_TYPES, q as WebhookPayload, bv as WebhookType, b1 as WorkflowsScorechainConfig, W as WrappedIpQualityServiceErrorResponse, af as mappingMatchTypeToLabel, U as typeToHumanReadable } from '../../dist/CoinMarketCap.schema-8d5e0232.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 zod = require('zod');
6
6
  var vault_schema = require('../../dist/vault.schema-b3e91b84.cjs.dev.cjs');
7
7
  var identityApi_schema = require('../../dist/identity-api.schema-65dd6440.cjs.dev.cjs');
8
- var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-f36672ef.cjs.dev.cjs');
8
+ var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-28a667b8.cjs.dev.cjs');
9
9
  var toArray = require('../../dist/toArray-37445ee3.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 zod = require('zod');
6
6
  var vault_schema = require('../../dist/vault.schema-516f8cf7.cjs.prod.cjs');
7
7
  var identityApi_schema = require('../../dist/identity-api.schema-6c70e3aa.cjs.prod.cjs');
8
- var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-df24137f.cjs.prod.cjs');
8
+ var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-2b726ff4.cjs.prod.cjs');
9
9
  var toArray = require('../../dist/toArray-bcc5ef4d.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, dn as ExternalCustomerId, dl as WorkflowId, be as RiskScoreType, bg as CustomerType, bm as CustomerOnboardingLevel, bo as CustomerStatus, b2 as ISO3CountryCode, at as BlockchainAddress, dI as GenericVerifiableCredentialSchema, fp as WalletScreeningData, e5 as TransactionTypes, eb as TransactionReviewStatuses, fv as _toConsumableArray, aV as EnvironmentSchema } from '../../dist/vault.schema-88946b11.esm.mjs';
3
3
  import { Y as RuleResultStatus } from '../../dist/identity-api.schema-362b1c56.esm.mjs';
4
- import { M as MergedProviders, I as IpQualityServiceAnalysisResponse, C as ComplyAdvantageSearchResponse, a as ComplyAdvantageSearchErrorResponse, b as ComplyAdvantageSearchSuccessResponse } from '../../dist/CoinMarketCap.schema-9357caad.esm.mjs';
4
+ import { M as MergedProviders, I as IpQualityServiceAnalysisResponse, C as ComplyAdvantageSearchResponse, a as ComplyAdvantageSearchErrorResponse, b as ComplyAdvantageSearchSuccessResponse } from '../../dist/CoinMarketCap.schema-8d5e0232.esm.mjs';
5
5
  import { _ as _toArray } from '../../dist/toArray-f38f22ea.esm.mjs';
6
6
  import { zodToJsonSchema } from 'zod-to-json-schema';
7
7
  import 'nanoid';