@nexeraid/identity-schemas 2.139.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.
- package/dist/{CoinMarketCap.schema-1ba28312.esm.mjs → CoinMarketCap.schema-2980efa5.esm.mjs} +6 -6
- package/dist/{CoinMarketCap.schema-9920d893.cjs.dev.cjs → CoinMarketCap.schema-454d4bf7.cjs.dev.cjs} +6 -6
- package/dist/{CoinMarketCap.schema-5cf2b011.cjs.prod.cjs → CoinMarketCap.schema-8555b1ff.cjs.prod.cjs} +6 -6
- package/dist/declarations/src/providers/sumsub/sumsub-applicant.schema.d.ts +559 -559
- package/dist/declarations/src/providers/sumsub/sumsub-applicant.schema.d.ts.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.cjs +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.cjs +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.esm.mjs +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.cjs +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.cjs +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.mjs +1 -1
package/dist/{CoinMarketCap.schema-1ba28312.esm.mjs → CoinMarketCap.schema-2980efa5.esm.mjs}
RENAMED
|
@@ -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);
|
|
@@ -1940,7 +1940,7 @@ var SumSubCompanyApplicantSchema = z.object({
|
|
|
1940
1940
|
fixedInfo: z.object({
|
|
1941
1941
|
companyInfo: SumSubCompanyApplicantInfo.nullish()
|
|
1942
1942
|
// More available fields in fixedInfo https://docs.sumsub.com/reference/get-applicant-data#fixedinfo-attributes
|
|
1943
|
-
}),
|
|
1943
|
+
}).nullish(),
|
|
1944
1944
|
applicantPlatform: z.string(),
|
|
1945
1945
|
ipCountry: z.string().nullish(),
|
|
1946
1946
|
agreement: z.object({
|
package/dist/{CoinMarketCap.schema-9920d893.cjs.dev.cjs → CoinMarketCap.schema-454d4bf7.cjs.dev.cjs}
RENAMED
|
@@ -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);
|
|
@@ -1942,7 +1942,7 @@ var SumSubCompanyApplicantSchema = zod.z.object({
|
|
|
1942
1942
|
fixedInfo: zod.z.object({
|
|
1943
1943
|
companyInfo: SumSubCompanyApplicantInfo.nullish()
|
|
1944
1944
|
// More available fields in fixedInfo https://docs.sumsub.com/reference/get-applicant-data#fixedinfo-attributes
|
|
1945
|
-
}),
|
|
1945
|
+
}).nullish(),
|
|
1946
1946
|
applicantPlatform: zod.z.string(),
|
|
1947
1947
|
ipCountry: zod.z.string().nullish(),
|
|
1948
1948
|
agreement: zod.z.object({
|
|
@@ -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);
|
|
@@ -1942,7 +1942,7 @@ var SumSubCompanyApplicantSchema = zod.z.object({
|
|
|
1942
1942
|
fixedInfo: zod.z.object({
|
|
1943
1943
|
companyInfo: SumSubCompanyApplicantInfo.nullish()
|
|
1944
1944
|
// More available fields in fixedInfo https://docs.sumsub.com/reference/get-applicant-data#fixedinfo-attributes
|
|
1945
|
-
}),
|
|
1945
|
+
}).nullish(),
|
|
1946
1946
|
applicantPlatform: zod.z.string(),
|
|
1947
1947
|
ipCountry: zod.z.string().nullish(),
|
|
1948
1948
|
agreement: zod.z.object({
|