@nexeraid/identity-schemas 2.3.10-dev → 2.3.11-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.
Files changed (48) hide show
  1. package/dist/{customers.schema-bf6bd011.esm.js → customers.schema-2920175f.esm.js} +1 -1
  2. package/dist/{customers.schema-cc61d5f5.cjs.dev.js → customers.schema-55115ae0.cjs.dev.js} +1 -1
  3. package/dist/{customers.schema-f5e00e4b.cjs.prod.js → customers.schema-63a6dab0.cjs.prod.js} +1 -1
  4. package/dist/declarations/src/crypto.schema.d.ts +5 -0
  5. package/dist/declarations/src/crypto.schema.d.ts.map +1 -0
  6. package/dist/declarations/src/currency.schema.d.ts +5 -0
  7. package/dist/declarations/src/currency.schema.d.ts.map +1 -0
  8. package/dist/declarations/src/identity-ids.schema.d.ts +22 -2
  9. package/dist/declarations/src/identity-ids.schema.d.ts.map +1 -1
  10. package/dist/declarations/src/index.d.ts +4 -0
  11. package/dist/declarations/src/index.d.ts.map +1 -1
  12. package/dist/declarations/src/providers/big/BIGBitRankVerifiedScore.schema.d.ts +2 -2
  13. package/dist/declarations/src/providers/comply-advantage/comply-advantage.schema.d.ts +198 -198
  14. package/dist/declarations/src/providers/ipquality/ipquality.schema.d.ts +10 -10
  15. package/dist/declarations/src/providers/merkle-science/merkle-science.schema.d.ts +4 -4
  16. package/dist/declarations/src/providers/provider.schema.d.ts +558 -558
  17. package/dist/declarations/src/providers/scorechain/scorechain.schema.d.ts +140 -140
  18. package/dist/declarations/src/providers/sumsub/sumsub-applicant.schema.d.ts +144 -144
  19. package/dist/declarations/src/providers/sumsub/sumsub-webhooks.schema.d.ts +4 -4
  20. package/dist/declarations/src/tag.schema.d.ts +24 -0
  21. package/dist/declarations/src/tag.schema.d.ts.map +1 -0
  22. package/dist/declarations/src/transaction.schema.d.ts +23 -0
  23. package/dist/declarations/src/transaction.schema.d.ts.map +1 -0
  24. package/dist/declarations/src/webhooks/send-verification-flow-webhook.schema.d.ts +302 -302
  25. package/dist/declarations/src/webhooks/svix.webhooks.schema.d.ts +1460 -1460
  26. package/dist/{frontend-utilities.schema-f06cfbf0.cjs.dev.js → frontend-utilities.schema-6488d65f.cjs.dev.js} +1 -1
  27. package/dist/{frontend-utilities.schema-590fdc26.cjs.prod.js → frontend-utilities.schema-716fdfbe.cjs.prod.js} +1 -1
  28. package/dist/{frontend-utilities.schema-310c23a2.esm.js → frontend-utilities.schema-d269f411.esm.js} +1 -1
  29. package/dist/{identity-api.schema-e648ecb5.cjs.prod.js → identity-api.schema-7642a9d7.cjs.prod.js} +20 -0
  30. package/dist/{identity-api.schema-cc2f8a1b.cjs.dev.js → identity-api.schema-7e40f082.cjs.dev.js} +20 -0
  31. package/dist/{identity-api.schema-12609c1a.esm.js → identity-api.schema-bf32b414.esm.js} +11 -1
  32. package/dist/nexeraid-identity-schemas.cjs.dev.js +74 -2
  33. package/dist/nexeraid-identity-schemas.cjs.prod.js +74 -2
  34. package/dist/nexeraid-identity-schemas.esm.js +45 -4
  35. package/dist/package.json +1 -1
  36. package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.js +1 -1
  37. package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.js +1 -1
  38. package/identity/dist/nexeraid-identity-schemas-identity.esm.js +1 -1
  39. package/package.json +1 -1
  40. package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.js +2 -2
  41. package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.js +2 -2
  42. package/providers/dist/nexeraid-identity-schemas-providers.esm.js +2 -2
  43. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.js +2 -2
  44. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.js +2 -2
  45. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.js +2 -2
  46. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.js +2 -2
  47. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.js +2 -2
  48. package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.js +2 -2
@@ -728,12 +728,9 @@ export declare const SumSubIndividualApplicantSchema: z.ZodObject<{
728
728
  type: z.ZodEnum<["individual", "company"]>;
729
729
  }, "strip", z.ZodTypeAny, {
730
730
  id: string;
731
- type: "company" | "individual";
731
+ type: "individual" | "company";
732
732
  key: string;
733
733
  createdAt: string;
734
- inspectionId: string;
735
- externalUserId: string;
736
- clientId: string;
737
734
  review: {
738
735
  levelName: string;
739
736
  priority: number;
@@ -760,6 +757,9 @@ export declare const SumSubIndividualApplicantSchema: z.ZodObject<{
760
757
  confirmed?: boolean | undefined;
761
758
  autoChecked?: boolean | undefined;
762
759
  };
760
+ inspectionId: string;
761
+ externalUserId: string;
762
+ clientId: string;
763
763
  email?: string | undefined;
764
764
  phone?: string | undefined;
765
765
  metadata?: Record<string, string>[] | undefined;
@@ -895,12 +895,9 @@ export declare const SumSubIndividualApplicantSchema: z.ZodObject<{
895
895
  } | null | undefined;
896
896
  }, {
897
897
  id: string;
898
- type: "company" | "individual";
898
+ type: "individual" | "company";
899
899
  key: string;
900
900
  createdAt: string;
901
- inspectionId: string;
902
- externalUserId: string;
903
- clientId: string;
904
901
  review: {
905
902
  levelName: string;
906
903
  priority: number;
@@ -927,6 +924,9 @@ export declare const SumSubIndividualApplicantSchema: z.ZodObject<{
927
924
  confirmed?: boolean | undefined;
928
925
  autoChecked?: boolean | undefined;
929
926
  };
927
+ inspectionId: string;
928
+ externalUserId: string;
929
+ clientId: string;
930
930
  email?: string | undefined;
931
931
  phone?: string | undefined;
932
932
  metadata?: Record<string, string>[] | undefined;
@@ -1330,11 +1330,8 @@ export declare const SumSubCompanyApplicantSchema: z.ZodObject<{
1330
1330
  type: z.ZodEnum<["individual", "company"]>;
1331
1331
  }, "strip", z.ZodTypeAny, {
1332
1332
  id: string;
1333
- type: "company" | "individual";
1333
+ type: "individual" | "company";
1334
1334
  createdAt: string;
1335
- inspectionId: string;
1336
- externalUserId: string;
1337
- applicantPlatform: string;
1338
1335
  review: {
1339
1336
  levelName?: string | undefined;
1340
1337
  reviewDate?: Date | undefined;
@@ -1359,6 +1356,9 @@ export declare const SumSubCompanyApplicantSchema: z.ZodObject<{
1359
1356
  confirmed?: boolean | undefined;
1360
1357
  priority?: number | undefined;
1361
1358
  };
1359
+ inspectionId: string;
1360
+ externalUserId: string;
1361
+ applicantPlatform: string;
1362
1362
  info?: {
1363
1363
  idDocs: {
1364
1364
  country: string;
@@ -1400,11 +1400,8 @@ export declare const SumSubCompanyApplicantSchema: z.ZodObject<{
1400
1400
  } | null | undefined;
1401
1401
  }, {
1402
1402
  id: string;
1403
- type: "company" | "individual";
1403
+ type: "individual" | "company";
1404
1404
  createdAt: string;
1405
- inspectionId: string;
1406
- externalUserId: string;
1407
- applicantPlatform: string;
1408
1405
  review: {
1409
1406
  levelName?: string | undefined;
1410
1407
  reviewDate?: Date | undefined;
@@ -1429,6 +1426,9 @@ export declare const SumSubCompanyApplicantSchema: z.ZodObject<{
1429
1426
  confirmed?: boolean | undefined;
1430
1427
  priority?: number | undefined;
1431
1428
  };
1429
+ inspectionId: string;
1430
+ externalUserId: string;
1431
+ applicantPlatform: string;
1432
1432
  info?: {
1433
1433
  idDocs: {
1434
1434
  country: string;
@@ -2839,12 +2839,9 @@ export declare const SumsubKycDataSchema: z.ZodObject<{
2839
2839
  type: z.ZodEnum<["individual", "company"]>;
2840
2840
  }, "strip", z.ZodTypeAny, {
2841
2841
  id: string;
2842
- type: "company" | "individual";
2842
+ type: "individual" | "company";
2843
2843
  key: string;
2844
2844
  createdAt: string;
2845
- inspectionId: string;
2846
- externalUserId: string;
2847
- clientId: string;
2848
2845
  review: {
2849
2846
  levelName: string;
2850
2847
  priority: number;
@@ -2871,6 +2868,9 @@ export declare const SumsubKycDataSchema: z.ZodObject<{
2871
2868
  confirmed?: boolean | undefined;
2872
2869
  autoChecked?: boolean | undefined;
2873
2870
  };
2871
+ inspectionId: string;
2872
+ externalUserId: string;
2873
+ clientId: string;
2874
2874
  email?: string | undefined;
2875
2875
  phone?: string | undefined;
2876
2876
  metadata?: Record<string, string>[] | undefined;
@@ -3006,12 +3006,9 @@ export declare const SumsubKycDataSchema: z.ZodObject<{
3006
3006
  } | null | undefined;
3007
3007
  }, {
3008
3008
  id: string;
3009
- type: "company" | "individual";
3009
+ type: "individual" | "company";
3010
3010
  key: string;
3011
3011
  createdAt: string;
3012
- inspectionId: string;
3013
- externalUserId: string;
3014
- clientId: string;
3015
3012
  review: {
3016
3013
  levelName: string;
3017
3014
  priority: number;
@@ -3038,6 +3035,9 @@ export declare const SumsubKycDataSchema: z.ZodObject<{
3038
3035
  confirmed?: boolean | undefined;
3039
3036
  autoChecked?: boolean | undefined;
3040
3037
  };
3038
+ inspectionId: string;
3039
+ externalUserId: string;
3040
+ clientId: string;
3041
3041
  email?: string | undefined;
3042
3042
  phone?: string | undefined;
3043
3043
  metadata?: Record<string, string>[] | undefined;
@@ -3182,12 +3182,9 @@ export declare const SumsubKycDataSchema: z.ZodObject<{
3182
3182
  kycSessionId: string;
3183
3183
  applicantData: {
3184
3184
  id: string;
3185
- type: "company" | "individual";
3185
+ type: "individual" | "company";
3186
3186
  key: string;
3187
3187
  createdAt: string;
3188
- inspectionId: string;
3189
- externalUserId: string;
3190
- clientId: string;
3191
3188
  review: {
3192
3189
  levelName: string;
3193
3190
  priority: number;
@@ -3214,6 +3211,9 @@ export declare const SumsubKycDataSchema: z.ZodObject<{
3214
3211
  confirmed?: boolean | undefined;
3215
3212
  autoChecked?: boolean | undefined;
3216
3213
  };
3214
+ inspectionId: string;
3215
+ externalUserId: string;
3216
+ clientId: string;
3217
3217
  email?: string | undefined;
3218
3218
  phone?: string | undefined;
3219
3219
  metadata?: Record<string, string>[] | undefined;
@@ -3356,12 +3356,9 @@ export declare const SumsubKycDataSchema: z.ZodObject<{
3356
3356
  kycSessionId: string;
3357
3357
  applicantData: {
3358
3358
  id: string;
3359
- type: "company" | "individual";
3359
+ type: "individual" | "company";
3360
3360
  key: string;
3361
3361
  createdAt: string;
3362
- inspectionId: string;
3363
- externalUserId: string;
3364
- clientId: string;
3365
3362
  review: {
3366
3363
  levelName: string;
3367
3364
  priority: number;
@@ -3388,6 +3385,9 @@ export declare const SumsubKycDataSchema: z.ZodObject<{
3388
3385
  confirmed?: boolean | undefined;
3389
3386
  autoChecked?: boolean | undefined;
3390
3387
  };
3388
+ inspectionId: string;
3389
+ externalUserId: string;
3390
+ clientId: string;
3391
3391
  email?: string | undefined;
3392
3392
  phone?: string | undefined;
3393
3393
  metadata?: Record<string, string>[] | undefined;
@@ -3795,11 +3795,8 @@ export declare const SumsubKybDataSchema: z.ZodObject<{
3795
3795
  type: z.ZodEnum<["individual", "company"]>;
3796
3796
  }, "strip", z.ZodTypeAny, {
3797
3797
  id: string;
3798
- type: "company" | "individual";
3798
+ type: "individual" | "company";
3799
3799
  createdAt: string;
3800
- inspectionId: string;
3801
- externalUserId: string;
3802
- applicantPlatform: string;
3803
3800
  review: {
3804
3801
  levelName?: string | undefined;
3805
3802
  reviewDate?: Date | undefined;
@@ -3824,6 +3821,9 @@ export declare const SumsubKybDataSchema: z.ZodObject<{
3824
3821
  confirmed?: boolean | undefined;
3825
3822
  priority?: number | undefined;
3826
3823
  };
3824
+ inspectionId: string;
3825
+ externalUserId: string;
3826
+ applicantPlatform: string;
3827
3827
  info?: {
3828
3828
  idDocs: {
3829
3829
  country: string;
@@ -3865,11 +3865,8 @@ export declare const SumsubKybDataSchema: z.ZodObject<{
3865
3865
  } | null | undefined;
3866
3866
  }, {
3867
3867
  id: string;
3868
- type: "company" | "individual";
3868
+ type: "individual" | "company";
3869
3869
  createdAt: string;
3870
- inspectionId: string;
3871
- externalUserId: string;
3872
- applicantPlatform: string;
3873
3870
  review: {
3874
3871
  levelName?: string | undefined;
3875
3872
  reviewDate?: Date | undefined;
@@ -3894,6 +3891,9 @@ export declare const SumsubKybDataSchema: z.ZodObject<{
3894
3891
  confirmed?: boolean | undefined;
3895
3892
  priority?: number | undefined;
3896
3893
  };
3894
+ inspectionId: string;
3895
+ externalUserId: string;
3896
+ applicantPlatform: string;
3897
3897
  info?: {
3898
3898
  idDocs: {
3899
3899
  country: string;
@@ -3943,11 +3943,8 @@ export declare const SumsubKybDataSchema: z.ZodObject<{
3943
3943
  sumsubApplicantId: string;
3944
3944
  applicantData: {
3945
3945
  id: string;
3946
- type: "company" | "individual";
3946
+ type: "individual" | "company";
3947
3947
  createdAt: string;
3948
- inspectionId: string;
3949
- externalUserId: string;
3950
- applicantPlatform: string;
3951
3948
  review: {
3952
3949
  levelName?: string | undefined;
3953
3950
  reviewDate?: Date | undefined;
@@ -3972,6 +3969,9 @@ export declare const SumsubKybDataSchema: z.ZodObject<{
3972
3969
  confirmed?: boolean | undefined;
3973
3970
  priority?: number | undefined;
3974
3971
  };
3972
+ inspectionId: string;
3973
+ externalUserId: string;
3974
+ applicantPlatform: string;
3975
3975
  info?: {
3976
3976
  idDocs: {
3977
3977
  country: string;
@@ -4020,11 +4020,8 @@ export declare const SumsubKybDataSchema: z.ZodObject<{
4020
4020
  sumsubApplicantId: string;
4021
4021
  applicantData: {
4022
4022
  id: string;
4023
- type: "company" | "individual";
4023
+ type: "individual" | "company";
4024
4024
  createdAt: string;
4025
- inspectionId: string;
4026
- externalUserId: string;
4027
- applicantPlatform: string;
4028
4025
  review: {
4029
4026
  levelName?: string | undefined;
4030
4027
  reviewDate?: Date | undefined;
@@ -4049,6 +4046,9 @@ export declare const SumsubKybDataSchema: z.ZodObject<{
4049
4046
  confirmed?: boolean | undefined;
4050
4047
  priority?: number | undefined;
4051
4048
  };
4049
+ inspectionId: string;
4050
+ externalUserId: string;
4051
+ applicantPlatform: string;
4052
4052
  info?: {
4053
4053
  idDocs: {
4054
4054
  country: string;
@@ -4773,12 +4773,9 @@ export declare const SumSubApplicantSchema: z.ZodUnion<[z.ZodObject<{
4773
4773
  type: z.ZodEnum<["individual", "company"]>;
4774
4774
  }, "strip", z.ZodTypeAny, {
4775
4775
  id: string;
4776
- type: "company" | "individual";
4776
+ type: "individual" | "company";
4777
4777
  key: string;
4778
4778
  createdAt: string;
4779
- inspectionId: string;
4780
- externalUserId: string;
4781
- clientId: string;
4782
4779
  review: {
4783
4780
  levelName: string;
4784
4781
  priority: number;
@@ -4805,6 +4802,9 @@ export declare const SumSubApplicantSchema: z.ZodUnion<[z.ZodObject<{
4805
4802
  confirmed?: boolean | undefined;
4806
4803
  autoChecked?: boolean | undefined;
4807
4804
  };
4805
+ inspectionId: string;
4806
+ externalUserId: string;
4807
+ clientId: string;
4808
4808
  email?: string | undefined;
4809
4809
  phone?: string | undefined;
4810
4810
  metadata?: Record<string, string>[] | undefined;
@@ -4940,12 +4940,9 @@ export declare const SumSubApplicantSchema: z.ZodUnion<[z.ZodObject<{
4940
4940
  } | null | undefined;
4941
4941
  }, {
4942
4942
  id: string;
4943
- type: "company" | "individual";
4943
+ type: "individual" | "company";
4944
4944
  key: string;
4945
4945
  createdAt: string;
4946
- inspectionId: string;
4947
- externalUserId: string;
4948
- clientId: string;
4949
4946
  review: {
4950
4947
  levelName: string;
4951
4948
  priority: number;
@@ -4972,6 +4969,9 @@ export declare const SumSubApplicantSchema: z.ZodUnion<[z.ZodObject<{
4972
4969
  confirmed?: boolean | undefined;
4973
4970
  autoChecked?: boolean | undefined;
4974
4971
  };
4972
+ inspectionId: string;
4973
+ externalUserId: string;
4974
+ clientId: string;
4975
4975
  email?: string | undefined;
4976
4976
  phone?: string | undefined;
4977
4977
  metadata?: Record<string, string>[] | undefined;
@@ -5373,11 +5373,8 @@ export declare const SumSubApplicantSchema: z.ZodUnion<[z.ZodObject<{
5373
5373
  type: z.ZodEnum<["individual", "company"]>;
5374
5374
  }, "strip", z.ZodTypeAny, {
5375
5375
  id: string;
5376
- type: "company" | "individual";
5376
+ type: "individual" | "company";
5377
5377
  createdAt: string;
5378
- inspectionId: string;
5379
- externalUserId: string;
5380
- applicantPlatform: string;
5381
5378
  review: {
5382
5379
  levelName?: string | undefined;
5383
5380
  reviewDate?: Date | undefined;
@@ -5402,6 +5399,9 @@ export declare const SumSubApplicantSchema: z.ZodUnion<[z.ZodObject<{
5402
5399
  confirmed?: boolean | undefined;
5403
5400
  priority?: number | undefined;
5404
5401
  };
5402
+ inspectionId: string;
5403
+ externalUserId: string;
5404
+ applicantPlatform: string;
5405
5405
  info?: {
5406
5406
  idDocs: {
5407
5407
  country: string;
@@ -5443,11 +5443,8 @@ export declare const SumSubApplicantSchema: z.ZodUnion<[z.ZodObject<{
5443
5443
  } | null | undefined;
5444
5444
  }, {
5445
5445
  id: string;
5446
- type: "company" | "individual";
5446
+ type: "individual" | "company";
5447
5447
  createdAt: string;
5448
- inspectionId: string;
5449
- externalUserId: string;
5450
- applicantPlatform: string;
5451
5448
  review: {
5452
5449
  levelName?: string | undefined;
5453
5450
  reviewDate?: Date | undefined;
@@ -5472,6 +5469,9 @@ export declare const SumSubApplicantSchema: z.ZodUnion<[z.ZodObject<{
5472
5469
  confirmed?: boolean | undefined;
5473
5470
  priority?: number | undefined;
5474
5471
  };
5472
+ inspectionId: string;
5473
+ externalUserId: string;
5474
+ applicantPlatform: string;
5475
5475
  info?: {
5476
5476
  idDocs: {
5477
5477
  country: string;
@@ -6226,12 +6226,9 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
6226
6226
  type: z.ZodEnum<["individual", "company"]>;
6227
6227
  }, "strip", z.ZodTypeAny, {
6228
6228
  id: string;
6229
- type: "company" | "individual";
6229
+ type: "individual" | "company";
6230
6230
  key: string;
6231
6231
  createdAt: string;
6232
- inspectionId: string;
6233
- externalUserId: string;
6234
- clientId: string;
6235
6232
  review: {
6236
6233
  levelName: string;
6237
6234
  priority: number;
@@ -6258,6 +6255,9 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
6258
6255
  confirmed?: boolean | undefined;
6259
6256
  autoChecked?: boolean | undefined;
6260
6257
  };
6258
+ inspectionId: string;
6259
+ externalUserId: string;
6260
+ clientId: string;
6261
6261
  email?: string | undefined;
6262
6262
  phone?: string | undefined;
6263
6263
  metadata?: Record<string, string>[] | undefined;
@@ -6393,12 +6393,9 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
6393
6393
  } | null | undefined;
6394
6394
  }, {
6395
6395
  id: string;
6396
- type: "company" | "individual";
6396
+ type: "individual" | "company";
6397
6397
  key: string;
6398
6398
  createdAt: string;
6399
- inspectionId: string;
6400
- externalUserId: string;
6401
- clientId: string;
6402
6399
  review: {
6403
6400
  levelName: string;
6404
6401
  priority: number;
@@ -6425,6 +6422,9 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
6425
6422
  confirmed?: boolean | undefined;
6426
6423
  autoChecked?: boolean | undefined;
6427
6424
  };
6425
+ inspectionId: string;
6426
+ externalUserId: string;
6427
+ clientId: string;
6428
6428
  email?: string | undefined;
6429
6429
  phone?: string | undefined;
6430
6430
  metadata?: Record<string, string>[] | undefined;
@@ -6826,11 +6826,8 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
6826
6826
  type: z.ZodEnum<["individual", "company"]>;
6827
6827
  }, "strip", z.ZodTypeAny, {
6828
6828
  id: string;
6829
- type: "company" | "individual";
6829
+ type: "individual" | "company";
6830
6830
  createdAt: string;
6831
- inspectionId: string;
6832
- externalUserId: string;
6833
- applicantPlatform: string;
6834
6831
  review: {
6835
6832
  levelName?: string | undefined;
6836
6833
  reviewDate?: Date | undefined;
@@ -6855,6 +6852,9 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
6855
6852
  confirmed?: boolean | undefined;
6856
6853
  priority?: number | undefined;
6857
6854
  };
6855
+ inspectionId: string;
6856
+ externalUserId: string;
6857
+ applicantPlatform: string;
6858
6858
  info?: {
6859
6859
  idDocs: {
6860
6860
  country: string;
@@ -6896,11 +6896,8 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
6896
6896
  } | null | undefined;
6897
6897
  }, {
6898
6898
  id: string;
6899
- type: "company" | "individual";
6899
+ type: "individual" | "company";
6900
6900
  createdAt: string;
6901
- inspectionId: string;
6902
- externalUserId: string;
6903
- applicantPlatform: string;
6904
6901
  review: {
6905
6902
  levelName?: string | undefined;
6906
6903
  reviewDate?: Date | undefined;
@@ -6925,6 +6922,9 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
6925
6922
  confirmed?: boolean | undefined;
6926
6923
  priority?: number | undefined;
6927
6924
  };
6925
+ inspectionId: string;
6926
+ externalUserId: string;
6927
+ applicantPlatform: string;
6928
6928
  info?: {
6929
6929
  idDocs: {
6930
6930
  country: string;
@@ -6978,12 +6978,9 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
6978
6978
  exactMatch?: boolean | undefined;
6979
6979
  applicant?: {
6980
6980
  id: string;
6981
- type: "company" | "individual";
6981
+ type: "individual" | "company";
6982
6982
  key: string;
6983
6983
  createdAt: string;
6984
- inspectionId: string;
6985
- externalUserId: string;
6986
- clientId: string;
6987
6984
  review: {
6988
6985
  levelName: string;
6989
6986
  priority: number;
@@ -7010,6 +7007,9 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
7010
7007
  confirmed?: boolean | undefined;
7011
7008
  autoChecked?: boolean | undefined;
7012
7009
  };
7010
+ inspectionId: string;
7011
+ externalUserId: string;
7012
+ clientId: string;
7013
7013
  email?: string | undefined;
7014
7014
  phone?: string | undefined;
7015
7015
  metadata?: Record<string, string>[] | undefined;
@@ -7145,11 +7145,8 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
7145
7145
  } | null | undefined;
7146
7146
  } | {
7147
7147
  id: string;
7148
- type: "company" | "individual";
7148
+ type: "individual" | "company";
7149
7149
  createdAt: string;
7150
- inspectionId: string;
7151
- externalUserId: string;
7152
- applicantPlatform: string;
7153
7150
  review: {
7154
7151
  levelName?: string | undefined;
7155
7152
  reviewDate?: Date | undefined;
@@ -7174,6 +7171,9 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
7174
7171
  confirmed?: boolean | undefined;
7175
7172
  priority?: number | undefined;
7176
7173
  };
7174
+ inspectionId: string;
7175
+ externalUserId: string;
7176
+ applicantPlatform: string;
7177
7177
  info?: {
7178
7178
  idDocs: {
7179
7179
  country: string;
@@ -7225,12 +7225,9 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
7225
7225
  exactMatch?: boolean | undefined;
7226
7226
  applicant?: {
7227
7227
  id: string;
7228
- type: "company" | "individual";
7228
+ type: "individual" | "company";
7229
7229
  key: string;
7230
7230
  createdAt: string;
7231
- inspectionId: string;
7232
- externalUserId: string;
7233
- clientId: string;
7234
7231
  review: {
7235
7232
  levelName: string;
7236
7233
  priority: number;
@@ -7257,6 +7254,9 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
7257
7254
  confirmed?: boolean | undefined;
7258
7255
  autoChecked?: boolean | undefined;
7259
7256
  };
7257
+ inspectionId: string;
7258
+ externalUserId: string;
7259
+ clientId: string;
7260
7260
  email?: string | undefined;
7261
7261
  phone?: string | undefined;
7262
7262
  metadata?: Record<string, string>[] | undefined;
@@ -7392,11 +7392,8 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
7392
7392
  } | null | undefined;
7393
7393
  } | {
7394
7394
  id: string;
7395
- type: "company" | "individual";
7395
+ type: "individual" | "company";
7396
7396
  createdAt: string;
7397
- inspectionId: string;
7398
- externalUserId: string;
7399
- applicantPlatform: string;
7400
7397
  review: {
7401
7398
  levelName?: string | undefined;
7402
7399
  reviewDate?: Date | undefined;
@@ -7421,6 +7418,9 @@ declare const SumSubSimilarApplicantSchema: z.ZodObject<{
7421
7418
  confirmed?: boolean | undefined;
7422
7419
  priority?: number | undefined;
7423
7420
  };
7421
+ inspectionId: string;
7422
+ externalUserId: string;
7423
+ applicantPlatform: string;
7424
7424
  info?: {
7425
7425
  idDocs: {
7426
7426
  country: string;
@@ -8151,12 +8151,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
8151
8151
  type: z.ZodEnum<["individual", "company"]>;
8152
8152
  }, "strip", z.ZodTypeAny, {
8153
8153
  id: string;
8154
- type: "company" | "individual";
8154
+ type: "individual" | "company";
8155
8155
  key: string;
8156
8156
  createdAt: string;
8157
- inspectionId: string;
8158
- externalUserId: string;
8159
- clientId: string;
8160
8157
  review: {
8161
8158
  levelName: string;
8162
8159
  priority: number;
@@ -8183,6 +8180,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
8183
8180
  confirmed?: boolean | undefined;
8184
8181
  autoChecked?: boolean | undefined;
8185
8182
  };
8183
+ inspectionId: string;
8184
+ externalUserId: string;
8185
+ clientId: string;
8186
8186
  email?: string | undefined;
8187
8187
  phone?: string | undefined;
8188
8188
  metadata?: Record<string, string>[] | undefined;
@@ -8318,12 +8318,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
8318
8318
  } | null | undefined;
8319
8319
  }, {
8320
8320
  id: string;
8321
- type: "company" | "individual";
8321
+ type: "individual" | "company";
8322
8322
  key: string;
8323
8323
  createdAt: string;
8324
- inspectionId: string;
8325
- externalUserId: string;
8326
- clientId: string;
8327
8324
  review: {
8328
8325
  levelName: string;
8329
8326
  priority: number;
@@ -8350,6 +8347,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
8350
8347
  confirmed?: boolean | undefined;
8351
8348
  autoChecked?: boolean | undefined;
8352
8349
  };
8350
+ inspectionId: string;
8351
+ externalUserId: string;
8352
+ clientId: string;
8353
8353
  email?: string | undefined;
8354
8354
  phone?: string | undefined;
8355
8355
  metadata?: Record<string, string>[] | undefined;
@@ -8751,11 +8751,8 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
8751
8751
  type: z.ZodEnum<["individual", "company"]>;
8752
8752
  }, "strip", z.ZodTypeAny, {
8753
8753
  id: string;
8754
- type: "company" | "individual";
8754
+ type: "individual" | "company";
8755
8755
  createdAt: string;
8756
- inspectionId: string;
8757
- externalUserId: string;
8758
- applicantPlatform: string;
8759
8756
  review: {
8760
8757
  levelName?: string | undefined;
8761
8758
  reviewDate?: Date | undefined;
@@ -8780,6 +8777,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
8780
8777
  confirmed?: boolean | undefined;
8781
8778
  priority?: number | undefined;
8782
8779
  };
8780
+ inspectionId: string;
8781
+ externalUserId: string;
8782
+ applicantPlatform: string;
8783
8783
  info?: {
8784
8784
  idDocs: {
8785
8785
  country: string;
@@ -8821,11 +8821,8 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
8821
8821
  } | null | undefined;
8822
8822
  }, {
8823
8823
  id: string;
8824
- type: "company" | "individual";
8824
+ type: "individual" | "company";
8825
8825
  createdAt: string;
8826
- inspectionId: string;
8827
- externalUserId: string;
8828
- applicantPlatform: string;
8829
8826
  review: {
8830
8827
  levelName?: string | undefined;
8831
8828
  reviewDate?: Date | undefined;
@@ -8850,6 +8847,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
8850
8847
  confirmed?: boolean | undefined;
8851
8848
  priority?: number | undefined;
8852
8849
  };
8850
+ inspectionId: string;
8851
+ externalUserId: string;
8852
+ applicantPlatform: string;
8853
8853
  info?: {
8854
8854
  idDocs: {
8855
8855
  country: string;
@@ -8903,12 +8903,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
8903
8903
  exactMatch?: boolean | undefined;
8904
8904
  applicant?: {
8905
8905
  id: string;
8906
- type: "company" | "individual";
8906
+ type: "individual" | "company";
8907
8907
  key: string;
8908
8908
  createdAt: string;
8909
- inspectionId: string;
8910
- externalUserId: string;
8911
- clientId: string;
8912
8909
  review: {
8913
8910
  levelName: string;
8914
8911
  priority: number;
@@ -8935,6 +8932,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
8935
8932
  confirmed?: boolean | undefined;
8936
8933
  autoChecked?: boolean | undefined;
8937
8934
  };
8935
+ inspectionId: string;
8936
+ externalUserId: string;
8937
+ clientId: string;
8938
8938
  email?: string | undefined;
8939
8939
  phone?: string | undefined;
8940
8940
  metadata?: Record<string, string>[] | undefined;
@@ -9070,11 +9070,8 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
9070
9070
  } | null | undefined;
9071
9071
  } | {
9072
9072
  id: string;
9073
- type: "company" | "individual";
9073
+ type: "individual" | "company";
9074
9074
  createdAt: string;
9075
- inspectionId: string;
9076
- externalUserId: string;
9077
- applicantPlatform: string;
9078
9075
  review: {
9079
9076
  levelName?: string | undefined;
9080
9077
  reviewDate?: Date | undefined;
@@ -9099,6 +9096,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
9099
9096
  confirmed?: boolean | undefined;
9100
9097
  priority?: number | undefined;
9101
9098
  };
9099
+ inspectionId: string;
9100
+ externalUserId: string;
9101
+ applicantPlatform: string;
9102
9102
  info?: {
9103
9103
  idDocs: {
9104
9104
  country: string;
@@ -9150,12 +9150,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
9150
9150
  exactMatch?: boolean | undefined;
9151
9151
  applicant?: {
9152
9152
  id: string;
9153
- type: "company" | "individual";
9153
+ type: "individual" | "company";
9154
9154
  key: string;
9155
9155
  createdAt: string;
9156
- inspectionId: string;
9157
- externalUserId: string;
9158
- clientId: string;
9159
9156
  review: {
9160
9157
  levelName: string;
9161
9158
  priority: number;
@@ -9182,6 +9179,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
9182
9179
  confirmed?: boolean | undefined;
9183
9180
  autoChecked?: boolean | undefined;
9184
9181
  };
9182
+ inspectionId: string;
9183
+ externalUserId: string;
9184
+ clientId: string;
9185
9185
  email?: string | undefined;
9186
9186
  phone?: string | undefined;
9187
9187
  metadata?: Record<string, string>[] | undefined;
@@ -9317,11 +9317,8 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
9317
9317
  } | null | undefined;
9318
9318
  } | {
9319
9319
  id: string;
9320
- type: "company" | "individual";
9320
+ type: "individual" | "company";
9321
9321
  createdAt: string;
9322
- inspectionId: string;
9323
- externalUserId: string;
9324
- applicantPlatform: string;
9325
9322
  review: {
9326
9323
  levelName?: string | undefined;
9327
9324
  reviewDate?: Date | undefined;
@@ -9346,6 +9343,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
9346
9343
  confirmed?: boolean | undefined;
9347
9344
  priority?: number | undefined;
9348
9345
  };
9346
+ inspectionId: string;
9347
+ externalUserId: string;
9348
+ applicantPlatform: string;
9349
9349
  info?: {
9350
9350
  idDocs: {
9351
9351
  country: string;
@@ -9399,12 +9399,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
9399
9399
  exactMatch?: boolean | undefined;
9400
9400
  applicant?: {
9401
9401
  id: string;
9402
- type: "company" | "individual";
9402
+ type: "individual" | "company";
9403
9403
  key: string;
9404
9404
  createdAt: string;
9405
- inspectionId: string;
9406
- externalUserId: string;
9407
- clientId: string;
9408
9405
  review: {
9409
9406
  levelName: string;
9410
9407
  priority: number;
@@ -9431,6 +9428,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
9431
9428
  confirmed?: boolean | undefined;
9432
9429
  autoChecked?: boolean | undefined;
9433
9430
  };
9431
+ inspectionId: string;
9432
+ externalUserId: string;
9433
+ clientId: string;
9434
9434
  email?: string | undefined;
9435
9435
  phone?: string | undefined;
9436
9436
  metadata?: Record<string, string>[] | undefined;
@@ -9566,11 +9566,8 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
9566
9566
  } | null | undefined;
9567
9567
  } | {
9568
9568
  id: string;
9569
- type: "company" | "individual";
9569
+ type: "individual" | "company";
9570
9570
  createdAt: string;
9571
- inspectionId: string;
9572
- externalUserId: string;
9573
- applicantPlatform: string;
9574
9571
  review: {
9575
9572
  levelName?: string | undefined;
9576
9573
  reviewDate?: Date | undefined;
@@ -9595,6 +9592,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
9595
9592
  confirmed?: boolean | undefined;
9596
9593
  priority?: number | undefined;
9597
9594
  };
9595
+ inspectionId: string;
9596
+ externalUserId: string;
9597
+ applicantPlatform: string;
9598
9598
  info?: {
9599
9599
  idDocs: {
9600
9600
  country: string;
@@ -9648,12 +9648,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
9648
9648
  exactMatch?: boolean | undefined;
9649
9649
  applicant?: {
9650
9650
  id: string;
9651
- type: "company" | "individual";
9651
+ type: "individual" | "company";
9652
9652
  key: string;
9653
9653
  createdAt: string;
9654
- inspectionId: string;
9655
- externalUserId: string;
9656
- clientId: string;
9657
9654
  review: {
9658
9655
  levelName: string;
9659
9656
  priority: number;
@@ -9680,6 +9677,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
9680
9677
  confirmed?: boolean | undefined;
9681
9678
  autoChecked?: boolean | undefined;
9682
9679
  };
9680
+ inspectionId: string;
9681
+ externalUserId: string;
9682
+ clientId: string;
9683
9683
  email?: string | undefined;
9684
9684
  phone?: string | undefined;
9685
9685
  metadata?: Record<string, string>[] | undefined;
@@ -9815,11 +9815,8 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
9815
9815
  } | null | undefined;
9816
9816
  } | {
9817
9817
  id: string;
9818
- type: "company" | "individual";
9818
+ type: "individual" | "company";
9819
9819
  createdAt: string;
9820
- inspectionId: string;
9821
- externalUserId: string;
9822
- applicantPlatform: string;
9823
9820
  review: {
9824
9821
  levelName?: string | undefined;
9825
9822
  reviewDate?: Date | undefined;
@@ -9844,6 +9841,9 @@ export declare const SumSubSimilarApplicantsSchema: z.ZodObject<{
9844
9841
  confirmed?: boolean | undefined;
9845
9842
  priority?: number | undefined;
9846
9843
  };
9844
+ inspectionId: string;
9845
+ externalUserId: string;
9846
+ applicantPlatform: string;
9847
9847
  info?: {
9848
9848
  idDocs: {
9849
9849
  country: string;