@nexeraid/identity-schemas 2.143.0-dev → 2.144.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/declarations/src/providers/sumsub/sumsub-applicant.schema.d.ts +4 -4
- package/dist/declarations/src/webhooks/svix.webhooks.schema.d.ts +668 -38
- package/dist/declarations/src/webhooks/svix.webhooks.schema.d.ts.map +1 -1
- package/dist/declarations/src/webhooks/tms.webhooks.schema.d.ts +41 -0
- package/dist/declarations/src/webhooks/tms.webhooks.schema.d.ts.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.cjs +38 -4
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.cjs +38 -4
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.mjs +36 -5
|
@@ -2157,11 +2157,11 @@ export declare const DocumentMetadataSchema: z.ZodObject<{
|
|
|
2157
2157
|
firstName?: string | null | undefined;
|
|
2158
2158
|
lastName?: string | null | undefined;
|
|
2159
2159
|
placeOfBirth?: string | null | undefined;
|
|
2160
|
+
errors?: string[] | null | undefined;
|
|
2160
2161
|
issuedDate?: string | null | undefined;
|
|
2161
2162
|
validUntil?: string | null | undefined;
|
|
2162
2163
|
dob?: string | null | undefined;
|
|
2163
2164
|
idDocSubType?: string | null | undefined;
|
|
2164
|
-
errors?: string[] | null | undefined;
|
|
2165
2165
|
warnings?: string[] | null | undefined;
|
|
2166
2166
|
}, {
|
|
2167
2167
|
country: string;
|
|
@@ -2170,11 +2170,11 @@ export declare const DocumentMetadataSchema: z.ZodObject<{
|
|
|
2170
2170
|
firstName?: string | null | undefined;
|
|
2171
2171
|
lastName?: string | null | undefined;
|
|
2172
2172
|
placeOfBirth?: string | null | undefined;
|
|
2173
|
+
errors?: string[] | null | undefined;
|
|
2173
2174
|
issuedDate?: string | null | undefined;
|
|
2174
2175
|
validUntil?: string | null | undefined;
|
|
2175
2176
|
dob?: string | null | undefined;
|
|
2176
2177
|
idDocSubType?: string | null | undefined;
|
|
2177
|
-
errors?: string[] | null | undefined;
|
|
2178
2178
|
warnings?: string[] | null | undefined;
|
|
2179
2179
|
}>;
|
|
2180
2180
|
export type DocumentMetadataSchema = z.infer<typeof DocumentMetadataSchema>;
|
|
@@ -2201,11 +2201,11 @@ export declare const DocumentSubmitResponse: z.ZodObject<{
|
|
|
2201
2201
|
firstName?: string | null | undefined;
|
|
2202
2202
|
lastName?: string | null | undefined;
|
|
2203
2203
|
placeOfBirth?: string | null | undefined;
|
|
2204
|
+
errors?: string[] | null | undefined;
|
|
2204
2205
|
issuedDate?: string | null | undefined;
|
|
2205
2206
|
validUntil?: string | null | undefined;
|
|
2206
2207
|
dob?: string | null | undefined;
|
|
2207
2208
|
idDocSubType?: string | null | undefined;
|
|
2208
|
-
errors?: string[] | null | undefined;
|
|
2209
2209
|
warnings?: string[] | null | undefined;
|
|
2210
2210
|
}, {
|
|
2211
2211
|
country: string;
|
|
@@ -2215,11 +2215,11 @@ export declare const DocumentSubmitResponse: z.ZodObject<{
|
|
|
2215
2215
|
firstName?: string | null | undefined;
|
|
2216
2216
|
lastName?: string | null | undefined;
|
|
2217
2217
|
placeOfBirth?: string | null | undefined;
|
|
2218
|
+
errors?: string[] | null | undefined;
|
|
2218
2219
|
issuedDate?: string | null | undefined;
|
|
2219
2220
|
validUntil?: string | null | undefined;
|
|
2220
2221
|
dob?: string | null | undefined;
|
|
2221
2222
|
idDocSubType?: string | null | undefined;
|
|
2222
|
-
errors?: string[] | null | undefined;
|
|
2223
2223
|
warnings?: string[] | null | undefined;
|
|
2224
2224
|
}>;
|
|
2225
2225
|
export type DocumentSubmitResponse = z.infer<typeof DocumentSubmitResponse>;
|