@nexeraid/identity-schemas 2.140.0-dev → 2.141.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.
@@ -1875,11 +1875,11 @@ var SumSubImageStatus = z.object({
1875
1875
  imageId: z.number(),
1876
1876
  idDocSubType: z.string(),
1877
1877
  reviewResult: z.object({
1878
- moderationComment: z.string(),
1879
- clientComment: z.string(),
1880
- reviewAnswer: z.string(),
1881
- reviewRejectType: z.string()
1882
- })
1878
+ moderationComment: z.string().optional(),
1879
+ clientComment: z.string().optional(),
1880
+ reviewAnswer: z.string().optional(),
1881
+ reviewRejectType: z.string().optional()
1882
+ }).nullish()
1883
1883
  });
1884
1884
  var SumsubApplicantTypes = ["individual", "company"];
1885
1885
  var SumsubApplicantType = z["enum"](SumsubApplicantTypes);
@@ -1877,11 +1877,11 @@ var SumSubImageStatus = zod.z.object({
1877
1877
  imageId: zod.z.number(),
1878
1878
  idDocSubType: zod.z.string(),
1879
1879
  reviewResult: zod.z.object({
1880
- moderationComment: zod.z.string(),
1881
- clientComment: zod.z.string(),
1882
- reviewAnswer: zod.z.string(),
1883
- reviewRejectType: zod.z.string()
1884
- })
1880
+ moderationComment: zod.z.string().optional(),
1881
+ clientComment: zod.z.string().optional(),
1882
+ reviewAnswer: zod.z.string().optional(),
1883
+ reviewRejectType: zod.z.string().optional()
1884
+ }).nullish()
1885
1885
  });
1886
1886
  var SumsubApplicantTypes = ["individual", "company"];
1887
1887
  var SumsubApplicantType = zod.z["enum"](SumsubApplicantTypes);
@@ -1877,11 +1877,11 @@ var SumSubImageStatus = zod.z.object({
1877
1877
  imageId: zod.z.number(),
1878
1878
  idDocSubType: zod.z.string(),
1879
1879
  reviewResult: zod.z.object({
1880
- moderationComment: zod.z.string(),
1881
- clientComment: zod.z.string(),
1882
- reviewAnswer: zod.z.string(),
1883
- reviewRejectType: zod.z.string()
1884
- })
1880
+ moderationComment: zod.z.string().optional(),
1881
+ clientComment: zod.z.string().optional(),
1882
+ reviewAnswer: zod.z.string().optional(),
1883
+ reviewRejectType: zod.z.string().optional()
1884
+ }).nullish()
1885
1885
  });
1886
1886
  var SumsubApplicantTypes = ["individual", "company"];
1887
1887
  var SumsubApplicantType = zod.z["enum"](SumsubApplicantTypes);
@@ -47,40 +47,40 @@ export declare const SumSubImageReviewResultSchema: z.ZodObject<{
47
47
  export declare const SumSubImageStatus: z.ZodObject<{
48
48
  imageId: z.ZodNumber;
49
49
  idDocSubType: z.ZodString;
50
- reviewResult: z.ZodObject<{
51
- moderationComment: z.ZodString;
52
- clientComment: z.ZodString;
53
- reviewAnswer: z.ZodString;
54
- reviewRejectType: z.ZodString;
50
+ reviewResult: z.ZodOptional<z.ZodNullable<z.ZodObject<{
51
+ moderationComment: z.ZodOptional<z.ZodString>;
52
+ clientComment: z.ZodOptional<z.ZodString>;
53
+ reviewAnswer: z.ZodOptional<z.ZodString>;
54
+ reviewRejectType: z.ZodOptional<z.ZodString>;
55
55
  }, "strip", z.ZodTypeAny, {
56
- reviewAnswer: string;
57
- reviewRejectType: string;
58
- clientComment: string;
59
- moderationComment: string;
56
+ reviewAnswer?: string | undefined;
57
+ reviewRejectType?: string | undefined;
58
+ clientComment?: string | undefined;
59
+ moderationComment?: string | undefined;
60
60
  }, {
61
- reviewAnswer: string;
62
- reviewRejectType: string;
63
- clientComment: string;
64
- moderationComment: string;
65
- }>;
61
+ reviewAnswer?: string | undefined;
62
+ reviewRejectType?: string | undefined;
63
+ clientComment?: string | undefined;
64
+ moderationComment?: string | undefined;
65
+ }>>>;
66
66
  }, "strip", z.ZodTypeAny, {
67
- reviewResult: {
68
- reviewAnswer: string;
69
- reviewRejectType: string;
70
- clientComment: string;
71
- moderationComment: string;
72
- };
73
67
  imageId: number;
74
68
  idDocSubType: string;
69
+ reviewResult?: {
70
+ reviewAnswer?: string | undefined;
71
+ reviewRejectType?: string | undefined;
72
+ clientComment?: string | undefined;
73
+ moderationComment?: string | undefined;
74
+ } | null | undefined;
75
75
  }, {
76
- reviewResult: {
77
- reviewAnswer: string;
78
- reviewRejectType: string;
79
- clientComment: string;
80
- moderationComment: string;
81
- };
82
76
  imageId: number;
83
77
  idDocSubType: string;
78
+ reviewResult?: {
79
+ reviewAnswer?: string | undefined;
80
+ reviewRejectType?: string | undefined;
81
+ clientComment?: string | undefined;
82
+ moderationComment?: string | undefined;
83
+ } | null | undefined;
84
84
  }>;
85
85
  export declare const SumsubApplicantTypes: readonly ["individual", "company"];
86
86
  export declare const SumsubApplicantType: z.ZodEnum<["individual", "company"]>;
@@ -1666,40 +1666,40 @@ export declare const SumSubVerificationStepSchema: z.ZodObject<{
1666
1666
  imageStatuses: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
1667
1667
  imageId: z.ZodNumber;
1668
1668
  idDocSubType: z.ZodString;
1669
- reviewResult: z.ZodObject<{
1670
- moderationComment: z.ZodString;
1671
- clientComment: z.ZodString;
1672
- reviewAnswer: z.ZodString;
1673
- reviewRejectType: z.ZodString;
1669
+ reviewResult: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1670
+ moderationComment: z.ZodOptional<z.ZodString>;
1671
+ clientComment: z.ZodOptional<z.ZodString>;
1672
+ reviewAnswer: z.ZodOptional<z.ZodString>;
1673
+ reviewRejectType: z.ZodOptional<z.ZodString>;
1674
1674
  }, "strip", z.ZodTypeAny, {
1675
- reviewAnswer: string;
1676
- reviewRejectType: string;
1677
- clientComment: string;
1678
- moderationComment: string;
1675
+ reviewAnswer?: string | undefined;
1676
+ reviewRejectType?: string | undefined;
1677
+ clientComment?: string | undefined;
1678
+ moderationComment?: string | undefined;
1679
1679
  }, {
1680
- reviewAnswer: string;
1681
- reviewRejectType: string;
1682
- clientComment: string;
1683
- moderationComment: string;
1684
- }>;
1680
+ reviewAnswer?: string | undefined;
1681
+ reviewRejectType?: string | undefined;
1682
+ clientComment?: string | undefined;
1683
+ moderationComment?: string | undefined;
1684
+ }>>>;
1685
1685
  }, "strip", z.ZodTypeAny, {
1686
- reviewResult: {
1687
- reviewAnswer: string;
1688
- reviewRejectType: string;
1689
- clientComment: string;
1690
- moderationComment: string;
1691
- };
1692
1686
  imageId: number;
1693
1687
  idDocSubType: string;
1688
+ reviewResult?: {
1689
+ reviewAnswer?: string | undefined;
1690
+ reviewRejectType?: string | undefined;
1691
+ clientComment?: string | undefined;
1692
+ moderationComment?: string | undefined;
1693
+ } | null | undefined;
1694
1694
  }, {
1695
- reviewResult: {
1696
- reviewAnswer: string;
1697
- reviewRejectType: string;
1698
- clientComment: string;
1699
- moderationComment: string;
1700
- };
1701
1695
  imageId: number;
1702
1696
  idDocSubType: string;
1697
+ reviewResult?: {
1698
+ reviewAnswer?: string | undefined;
1699
+ reviewRejectType?: string | undefined;
1700
+ clientComment?: string | undefined;
1701
+ moderationComment?: string | undefined;
1702
+ } | null | undefined;
1703
1703
  }>, "many">>>;
1704
1704
  stepStatuses: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
1705
1705
  name: z.ZodEnum<["company", "ubos", "shareholders", "representatives", "directors"]>;
@@ -1798,14 +1798,14 @@ export declare const SumSubVerificationStepSchema: z.ZodObject<{
1798
1798
  moderationComment?: string | undefined;
1799
1799
  }> | null | undefined;
1800
1800
  imageStatuses?: {
1801
- reviewResult: {
1802
- reviewAnswer: string;
1803
- reviewRejectType: string;
1804
- clientComment: string;
1805
- moderationComment: string;
1806
- };
1807
1801
  imageId: number;
1808
1802
  idDocSubType: string;
1803
+ reviewResult?: {
1804
+ reviewAnswer?: string | undefined;
1805
+ reviewRejectType?: string | undefined;
1806
+ clientComment?: string | undefined;
1807
+ moderationComment?: string | undefined;
1808
+ } | null | undefined;
1809
1809
  }[] | null | undefined;
1810
1810
  stepStatuses?: {
1811
1811
  name: "company" | "ubos" | "shareholders" | "representatives" | "directors";
@@ -1846,14 +1846,14 @@ export declare const SumSubVerificationStepSchema: z.ZodObject<{
1846
1846
  moderationComment?: string | undefined;
1847
1847
  }> | null | undefined;
1848
1848
  imageStatuses?: {
1849
- reviewResult: {
1850
- reviewAnswer: string;
1851
- reviewRejectType: string;
1852
- clientComment: string;
1853
- moderationComment: string;
1854
- };
1855
1849
  imageId: number;
1856
1850
  idDocSubType: string;
1851
+ reviewResult?: {
1852
+ reviewAnswer?: string | undefined;
1853
+ reviewRejectType?: string | undefined;
1854
+ clientComment?: string | undefined;
1855
+ moderationComment?: string | undefined;
1856
+ } | null | undefined;
1857
1857
  }[] | null | undefined;
1858
1858
  stepStatuses?: {
1859
1859
  name: "company" | "ubos" | "shareholders" | "representatives" | "directors";
@@ -1926,40 +1926,40 @@ export declare const SumSubApplicantVerificationStepSchema: z.ZodOptional<z.ZodN
1926
1926
  imageStatuses: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
1927
1927
  imageId: z.ZodNumber;
1928
1928
  idDocSubType: z.ZodString;
1929
- reviewResult: z.ZodObject<{
1930
- moderationComment: z.ZodString;
1931
- clientComment: z.ZodString;
1932
- reviewAnswer: z.ZodString;
1933
- reviewRejectType: z.ZodString;
1929
+ reviewResult: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1930
+ moderationComment: z.ZodOptional<z.ZodString>;
1931
+ clientComment: z.ZodOptional<z.ZodString>;
1932
+ reviewAnswer: z.ZodOptional<z.ZodString>;
1933
+ reviewRejectType: z.ZodOptional<z.ZodString>;
1934
1934
  }, "strip", z.ZodTypeAny, {
1935
- reviewAnswer: string;
1936
- reviewRejectType: string;
1937
- clientComment: string;
1938
- moderationComment: string;
1935
+ reviewAnswer?: string | undefined;
1936
+ reviewRejectType?: string | undefined;
1937
+ clientComment?: string | undefined;
1938
+ moderationComment?: string | undefined;
1939
1939
  }, {
1940
- reviewAnswer: string;
1941
- reviewRejectType: string;
1942
- clientComment: string;
1943
- moderationComment: string;
1944
- }>;
1940
+ reviewAnswer?: string | undefined;
1941
+ reviewRejectType?: string | undefined;
1942
+ clientComment?: string | undefined;
1943
+ moderationComment?: string | undefined;
1944
+ }>>>;
1945
1945
  }, "strip", z.ZodTypeAny, {
1946
- reviewResult: {
1947
- reviewAnswer: string;
1948
- reviewRejectType: string;
1949
- clientComment: string;
1950
- moderationComment: string;
1951
- };
1952
1946
  imageId: number;
1953
1947
  idDocSubType: string;
1948
+ reviewResult?: {
1949
+ reviewAnswer?: string | undefined;
1950
+ reviewRejectType?: string | undefined;
1951
+ clientComment?: string | undefined;
1952
+ moderationComment?: string | undefined;
1953
+ } | null | undefined;
1954
1954
  }, {
1955
- reviewResult: {
1956
- reviewAnswer: string;
1957
- reviewRejectType: string;
1958
- clientComment: string;
1959
- moderationComment: string;
1960
- };
1961
1955
  imageId: number;
1962
1956
  idDocSubType: string;
1957
+ reviewResult?: {
1958
+ reviewAnswer?: string | undefined;
1959
+ reviewRejectType?: string | undefined;
1960
+ clientComment?: string | undefined;
1961
+ moderationComment?: string | undefined;
1962
+ } | null | undefined;
1963
1963
  }>, "many">>>;
1964
1964
  stepStatuses: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
1965
1965
  name: z.ZodEnum<["company", "ubos", "shareholders", "representatives", "directors"]>;
@@ -2058,14 +2058,14 @@ export declare const SumSubApplicantVerificationStepSchema: z.ZodOptional<z.ZodN
2058
2058
  moderationComment?: string | undefined;
2059
2059
  }> | null | undefined;
2060
2060
  imageStatuses?: {
2061
- reviewResult: {
2062
- reviewAnswer: string;
2063
- reviewRejectType: string;
2064
- clientComment: string;
2065
- moderationComment: string;
2066
- };
2067
2061
  imageId: number;
2068
2062
  idDocSubType: string;
2063
+ reviewResult?: {
2064
+ reviewAnswer?: string | undefined;
2065
+ reviewRejectType?: string | undefined;
2066
+ clientComment?: string | undefined;
2067
+ moderationComment?: string | undefined;
2068
+ } | null | undefined;
2069
2069
  }[] | null | undefined;
2070
2070
  stepStatuses?: {
2071
2071
  name: "company" | "ubos" | "shareholders" | "representatives" | "directors";
@@ -2106,14 +2106,14 @@ export declare const SumSubApplicantVerificationStepSchema: z.ZodOptional<z.ZodN
2106
2106
  moderationComment?: string | undefined;
2107
2107
  }> | null | undefined;
2108
2108
  imageStatuses?: {
2109
- reviewResult: {
2110
- reviewAnswer: string;
2111
- reviewRejectType: string;
2112
- clientComment: string;
2113
- moderationComment: string;
2114
- };
2115
2109
  imageId: number;
2116
2110
  idDocSubType: string;
2111
+ reviewResult?: {
2112
+ reviewAnswer?: string | undefined;
2113
+ reviewRejectType?: string | undefined;
2114
+ clientComment?: string | undefined;
2115
+ moderationComment?: string | undefined;
2116
+ } | null | undefined;
2117
2117
  }[] | null | undefined;
2118
2118
  stepStatuses?: {
2119
2119
  name: "company" | "ubos" | "shareholders" | "representatives" | "directors";
@@ -1 +1 @@
1
- {"version":3,"file":"sumsub-applicant.schema.d.ts","sourceRoot":"../../../../../src/providers/sumsub","sources":["sumsub-applicant.schema.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAGhC,CAAC;AAEH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE1E,eAAO,MAAM,sCAAsC,2CAIzC,CAAC;AACX,eAAO,MAAM,iCAAiC,6CAE7C,CAAC;AACF,MAAM,MAAM,iCAAiC,GAAG,CAAC,CAAC,KAAK,CACrD,OAAO,iCAAiC,CACzC,CAAC;AAEF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;EAI1C,CAAC;AAEH,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,KAAK,CACnD,OAAO,+BAA+B,CACvC,CAAC;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;WAEvC,CAAC;AAEF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAC/C,OAAO,2BAA2B,CACnC,CAAC;AAGF,QAAA,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUhC,CAAC;AAEH,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAExC,CAAC;AAEH,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAChD,OAAO,4BAA4B,CACpC,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC"}
1
+ {"version":3,"file":"sumsub-applicant.schema.d.ts","sourceRoot":"../../../../../src/providers/sumsub","sources":["sumsub-applicant.schema.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAGhC,CAAC;AAEH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE1E,eAAO,MAAM,sCAAsC,2CAIzC,CAAC;AACX,eAAO,MAAM,iCAAiC,6CAE7C,CAAC;AACF,MAAM,MAAM,iCAAiC,GAAG,CAAC,CAAC,KAAK,CACrD,OAAO,iCAAiC,CACzC,CAAC;AAEF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;EAI1C,CAAC;AAEH,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,KAAK,CACnD,OAAO,+BAA+B,CACvC,CAAC;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;WAEvC,CAAC;AAEF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAC/C,OAAO,2BAA2B,CACnC,CAAC;AAGF,QAAA,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUhC,CAAC;AAEH,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAExC,CAAC;AAEH,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAChD,OAAO,4BAA4B,CACpC,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC"}
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexeraid/identity-schemas",
3
- "version": "2.140.0",
3
+ "version": "2.141.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.140.0-dev",
3
+ "version": "2.141.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-ca8b1f74.cjs.dev.cjs');
6
- var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-0a5cb67c.cjs.dev.cjs');
6
+ var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-454d4bf7.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-6bdf1394.cjs.prod.cjs');
6
- var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-e629194a.cjs.prod.cjs');
6
+ var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-8555b1ff.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-fb877b1d.esm.mjs';
2
- export { K as AMLMetadata, cY as ApiErrorCommandResponse, cX as ApiErrorResponse, cZ as ApiSuccessCommandResponse, bw as ApplicantMemberOfSchema, bM as BENEFICIARY_TYPES, by as BaseApplicantActionSchema, b6 as BaseProvider, bO as BeneficiaryCompanyCustomerClaims, bP as BeneficiaryCompanyCustomerClaimsArray, bN as BeneficiaryType, d6 as BeneficiaryVerificationStatus, d7 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, dr as ChainalysisApiError, a$ as ChainalysisConfig, dp as ChainalysisErrorCodes, bc as ChainalysisProvider, dm as ChainalysisRegisterApiResponse, ds as ChainalysisRegisterResponse, dl as ChainalysisRequest, dq as ChainalysisRiskAssessmentApiResponse, dt as ChainalysisRiskAssessmentResponse, dn as ChainalysisRiskLevel, a4 as CoerceDateUTC, dx as CoinMarketCapApiResponse, dy as CoinMarketCapFiatId, dv as CoinMarketCapQuote, dw as CoinMarketCapQuotes, du as CoinMarketCapRequest, d5 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, cT as CredentialMetadata, cS as CustomerContactInformationOutput, dc as CustomerDocumentMetaData, dd as CustomerStatusResults, aZ as DataProvider, aY as DataProviderOptions, bs as DeleteProviderInput, bt as DeleteProviderResponse, y as DocumentIdMetadata, x as DocumentIdType, D as DocumentIdTypes, ci as DocumentMetadataSchema, cj as DocumentSubmitResponse, J as EmailMetadata, E as EmailVerificationAnalysisResponse, cH as EmailVerificationResponse, F as File, cR as GetCredentialsOutput, d9 as GetKybSessionInput, da as GetKybSessionResponse, cL as GetKycSessionInput, cM as GetKycSessionResponse, cU as GetKycSessionResponseWithCredentialsMetadata, c_ as GetKycSessionsOutput, bm as GetProviderResponse, bl as GetProvidersResponse, ab as HIGH_RISK_TYPES, cV as IDImageMetaData, bK as INDIVIDUAL_BENEFICIARY_RELATIONS, aX as IdentityProvider, aW as IdentityProviderOptions, bL as IndividualBeneficiaryRelation, c as IpQualityAnalysisRequest, d as IpQualityAnalysisResponse, b2 as IpQualityConfig, e as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, f as IpQualityServiceErrorResponse, bd as IpqualityscoreProvider, d1 as KYB_RESULTS, d3 as KYB_SESSION_STATUSES, c$ as KYB_STEP_TYPES, bZ as KYC_DOC_SIDES, cD as KYC_RESULTS, cF as KYC_SESSION_STATUSES, cz as KYC_STEP_TYPES, d2 as KybResult, d4 as KybSessionStatus, d0 as KybStep, b_ as KycDocSide, cE as KycResult, cG as KycSessionStatus, cA as KycStep, cC as KycStepStatus, cB as KycStepStatuses, L as LivenessMetadata, ac as MEDIUM_RISK_TYPES, av as MatchStatus, au as MatchStatuses, aB as MatchTypeDetail, M as MergedProviders, dj as MerkleAddressApiError, di as MerkleAddressApiResponse, dh as MerkleAddressRequest, dk as MerkleAddressResponse, dg as MerkleBlockChainCodes, df as MerkleBlockChainName, de 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, cQ as ProofOfResidenceDocumentType, cP 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, cb as SUMSUB_COMPANY_BENEFICIARY_GROUP, bV as SUMSUB_DOC_TYPES, b$ as SUMSUB_FLOW_LEVEL, cr as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, bX as SUMSUB_KYC_DOC_TYPES, cg as SUMSUB_MEDIA_CONTENT_TYPES, bD as SUMSUB_REVIEW_ANSWERS, cw as SUMSUB_REVIEW_REJECT_LABELS, cy as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bF as SUMSUB_REVIEW_REJECT_TYPES, bT as SUMSUB_REVIEW_STATUSES, bz as SUMSUB_STEPS, bR 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, d8 as SelectKybSession, cJ as SelectKycSession, cI as SelectKycSessionStep, cK as SelectKycSessionWithCompletedSteps, cW as SelfieImageMetaData, r as Session, s as SessionWithoutSteps, p as Status, S as Statuses, O as Step, u as StepType, t as StepTypes, bI as SumSubAddress, bJ as SumSubApplicantInfo, cl as SumSubApplicantResetSchema, ck as SumSubApplicantReviewStatusSchema, cq as SumSubApplicantSchema, bC as SumSubApplicantType, cf as SumSubApplicantVerificationStepSchema, bQ as SumSubCompanyApplicantInfo, c9 as SumSubCompanyApplicantSchema, bW as SumSubDocType, c0 as SumSubFlowLevel, cm as SumSubGenerateExternalWebSdkLinkSchema, ca as SumSubImageId, c4 as SumSubImageReviewResultSchema, c5 as SumSubImageStatus, c8 as SumSubIndividualApplicantSchema, bY as SumSubKycDocType, ch as SumSubMediaContentType, c1 as SumSubRequiredIdDoc, bE as SumSubReviewAnswer, cx as SumSubReviewRejectLabel, bG as SumSubReviewRejectType, c3 as SumSubReviewResultSchema, bU as SumSubReviewStatus, cv as SumSubSimilarApplicantsSchema, bA as SumSubStep, ce as SumSubVerificationStepSchema, bx as SumSubWebhookSchema, c7 as SumsubApplicantType, c6 as SumsubApplicantTypes, cc as SumsubCompanyBeneficiaryGroup, bH as SumsubCountryCode, cp as SumsubKybDataSchema, cu as SumsubKybSessionFlowSection, ct as SumsubKybSessionFlowSectionItem, cs as SumsubKybSessionFlowSectionStatus, co as SumsubKycDataSchema, cd as SumsubStepStatus, cn as SumsubVideoCallData, bS 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, db as UpdateKybSessionOutput, cN as UpdateKycSessionOutput, bp as UpdateProviderInput, bq as UpdateProviderResponse, az as UpdateSearchEntitiesInput, ay as UpdateSearchInput, c2 as UploadDocumentRequest, cO 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-5d7663bf.esm.mjs';
2
+ export { K as AMLMetadata, cY as ApiErrorCommandResponse, cX as ApiErrorResponse, cZ as ApiSuccessCommandResponse, bw as ApplicantMemberOfSchema, bM as BENEFICIARY_TYPES, by as BaseApplicantActionSchema, b6 as BaseProvider, bO as BeneficiaryCompanyCustomerClaims, bP as BeneficiaryCompanyCustomerClaimsArray, bN as BeneficiaryType, d6 as BeneficiaryVerificationStatus, d7 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, dr as ChainalysisApiError, a$ as ChainalysisConfig, dp as ChainalysisErrorCodes, bc as ChainalysisProvider, dm as ChainalysisRegisterApiResponse, ds as ChainalysisRegisterResponse, dl as ChainalysisRequest, dq as ChainalysisRiskAssessmentApiResponse, dt as ChainalysisRiskAssessmentResponse, dn as ChainalysisRiskLevel, a4 as CoerceDateUTC, dx as CoinMarketCapApiResponse, dy as CoinMarketCapFiatId, dv as CoinMarketCapQuote, dw as CoinMarketCapQuotes, du as CoinMarketCapRequest, d5 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, cT as CredentialMetadata, cS as CustomerContactInformationOutput, dc as CustomerDocumentMetaData, dd as CustomerStatusResults, aZ as DataProvider, aY as DataProviderOptions, bs as DeleteProviderInput, bt as DeleteProviderResponse, y as DocumentIdMetadata, x as DocumentIdType, D as DocumentIdTypes, ci as DocumentMetadataSchema, cj as DocumentSubmitResponse, J as EmailMetadata, E as EmailVerificationAnalysisResponse, cH as EmailVerificationResponse, F as File, cR as GetCredentialsOutput, d9 as GetKybSessionInput, da as GetKybSessionResponse, cL as GetKycSessionInput, cM as GetKycSessionResponse, cU as GetKycSessionResponseWithCredentialsMetadata, c_ as GetKycSessionsOutput, bm as GetProviderResponse, bl as GetProvidersResponse, ab as HIGH_RISK_TYPES, cV as IDImageMetaData, bK as INDIVIDUAL_BENEFICIARY_RELATIONS, aX as IdentityProvider, aW as IdentityProviderOptions, bL as IndividualBeneficiaryRelation, c as IpQualityAnalysisRequest, d as IpQualityAnalysisResponse, b2 as IpQualityConfig, e as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, f as IpQualityServiceErrorResponse, bd as IpqualityscoreProvider, d1 as KYB_RESULTS, d3 as KYB_SESSION_STATUSES, c$ as KYB_STEP_TYPES, bZ as KYC_DOC_SIDES, cD as KYC_RESULTS, cF as KYC_SESSION_STATUSES, cz as KYC_STEP_TYPES, d2 as KybResult, d4 as KybSessionStatus, d0 as KybStep, b_ as KycDocSide, cE as KycResult, cG as KycSessionStatus, cA as KycStep, cC as KycStepStatus, cB as KycStepStatuses, L as LivenessMetadata, ac as MEDIUM_RISK_TYPES, av as MatchStatus, au as MatchStatuses, aB as MatchTypeDetail, M as MergedProviders, dj as MerkleAddressApiError, di as MerkleAddressApiResponse, dh as MerkleAddressRequest, dk as MerkleAddressResponse, dg as MerkleBlockChainCodes, df as MerkleBlockChainName, de 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, cQ as ProofOfResidenceDocumentType, cP 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, cb as SUMSUB_COMPANY_BENEFICIARY_GROUP, bV as SUMSUB_DOC_TYPES, b$ as SUMSUB_FLOW_LEVEL, cr as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, bX as SUMSUB_KYC_DOC_TYPES, cg as SUMSUB_MEDIA_CONTENT_TYPES, bD as SUMSUB_REVIEW_ANSWERS, cw as SUMSUB_REVIEW_REJECT_LABELS, cy as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bF as SUMSUB_REVIEW_REJECT_TYPES, bT as SUMSUB_REVIEW_STATUSES, bz as SUMSUB_STEPS, bR 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, d8 as SelectKybSession, cJ as SelectKycSession, cI as SelectKycSessionStep, cK as SelectKycSessionWithCompletedSteps, cW as SelfieImageMetaData, r as Session, s as SessionWithoutSteps, p as Status, S as Statuses, O as Step, u as StepType, t as StepTypes, bI as SumSubAddress, bJ as SumSubApplicantInfo, cl as SumSubApplicantResetSchema, ck as SumSubApplicantReviewStatusSchema, cq as SumSubApplicantSchema, bC as SumSubApplicantType, cf as SumSubApplicantVerificationStepSchema, bQ as SumSubCompanyApplicantInfo, c9 as SumSubCompanyApplicantSchema, bW as SumSubDocType, c0 as SumSubFlowLevel, cm as SumSubGenerateExternalWebSdkLinkSchema, ca as SumSubImageId, c4 as SumSubImageReviewResultSchema, c5 as SumSubImageStatus, c8 as SumSubIndividualApplicantSchema, bY as SumSubKycDocType, ch as SumSubMediaContentType, c1 as SumSubRequiredIdDoc, bE as SumSubReviewAnswer, cx as SumSubReviewRejectLabel, bG as SumSubReviewRejectType, c3 as SumSubReviewResultSchema, bU as SumSubReviewStatus, cv as SumSubSimilarApplicantsSchema, bA as SumSubStep, ce as SumSubVerificationStepSchema, bx as SumSubWebhookSchema, c7 as SumsubApplicantType, c6 as SumsubApplicantTypes, cc as SumsubCompanyBeneficiaryGroup, bH as SumsubCountryCode, cp as SumsubKybDataSchema, cu as SumsubKybSessionFlowSection, ct as SumsubKybSessionFlowSectionItem, cs as SumsubKybSessionFlowSectionStatus, co as SumsubKycDataSchema, cd as SumsubStepStatus, cn as SumsubVideoCallData, bS 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, db as UpdateKybSessionOutput, cN as UpdateKycSessionOutput, bp as UpdateProviderInput, bq as UpdateProviderResponse, az as UpdateSearchEntitiesInput, ay as UpdateSearchInput, c2 as UploadDocumentRequest, cO 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-2980efa5.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-ca8b1f74.cjs.dev.cjs');
7
7
  var identityApi_schema = require('../../dist/identity-api.schema-f4262095.cjs.dev.cjs');
8
- var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-0a5cb67c.cjs.dev.cjs');
8
+ var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-454d4bf7.cjs.dev.cjs');
9
9
  var toArray = require('../../dist/toArray-f9f50575.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-6bdf1394.cjs.prod.cjs');
7
7
  var identityApi_schema = require('../../dist/identity-api.schema-68f0860b.cjs.prod.cjs');
8
- var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-e629194a.cjs.prod.cjs');
8
+ var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-8555b1ff.cjs.prod.cjs');
9
9
  var toArray = require('../../dist/toArray-1c8dc217.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-fb877b1d.esm.mjs';
3
3
  import { Y as RuleResultStatus } from '../../dist/identity-api.schema-808c5bcf.esm.mjs';
4
- import { M as MergedProviders, I as IpQualityServiceAnalysisResponse, C as ComplyAdvantageSearchResponse, a as ComplyAdvantageSearchErrorResponse, b as ComplyAdvantageSearchSuccessResponse } from '../../dist/CoinMarketCap.schema-5d7663bf.esm.mjs';
4
+ import { M as MergedProviders, I as IpQualityServiceAnalysisResponse, C as ComplyAdvantageSearchResponse, a as ComplyAdvantageSearchErrorResponse, b as ComplyAdvantageSearchSuccessResponse } from '../../dist/CoinMarketCap.schema-2980efa5.esm.mjs';
5
5
  import { _ as _toArray } from '../../dist/toArray-07d8f1c2.esm.mjs';
6
6
  import { zodToJsonSchema } from 'zod-to-json-schema';
7
7
  import 'nanoid';