@nexeraid/identity-schemas 2.84.0-dev → 2.85.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/package.json
CHANGED
package/package.json
CHANGED
|
@@ -32,6 +32,7 @@ var CustomerWebhookPayload = zod.z.object({
|
|
|
32
32
|
createdBy: zod.z.string(),
|
|
33
33
|
updatedBy: zod.z.string(),
|
|
34
34
|
id: zod.z.string(),
|
|
35
|
+
// webhook id itself... an id of the webhook event that was sent.. TODO probably we should make named ID like we do with others
|
|
35
36
|
riskScore: identityApi_schema.RiskScoreType.nullish(),
|
|
36
37
|
type: identityApi_schema.CustomerType.nullish(),
|
|
37
38
|
onboardingLevel: identityApi_schema.CustomerOnboardingLevel.nullish(),
|
|
@@ -32,6 +32,7 @@ var CustomerWebhookPayload = zod.z.object({
|
|
|
32
32
|
createdBy: zod.z.string(),
|
|
33
33
|
updatedBy: zod.z.string(),
|
|
34
34
|
id: zod.z.string(),
|
|
35
|
+
// webhook id itself... an id of the webhook event that was sent.. TODO probably we should make named ID like we do with others
|
|
35
36
|
riskScore: identityApi_schema.RiskScoreType.nullish(),
|
|
36
37
|
type: identityApi_schema.CustomerType.nullish(),
|
|
37
38
|
onboardingLevel: identityApi_schema.CustomerOnboardingLevel.nullish(),
|
|
@@ -29,6 +29,7 @@ var CustomerWebhookPayload = z.object({
|
|
|
29
29
|
createdBy: z.string(),
|
|
30
30
|
updatedBy: z.string(),
|
|
31
31
|
id: z.string(),
|
|
32
|
+
// webhook id itself... an id of the webhook event that was sent.. TODO probably we should make named ID like we do with others
|
|
32
33
|
riskScore: RiskScoreType.nullish(),
|
|
33
34
|
type: CustomerType.nullish(),
|
|
34
35
|
onboardingLevel: CustomerOnboardingLevel.nullish(),
|