@nexeraid/identity-schemas 2.102.0-dev → 2.103.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/webhooks/alert.webhooks.schema.d.ts +0 -6
- package/dist/declarations/src/webhooks/alert.webhooks.schema.d.ts.map +1 -1
- package/dist/declarations/src/webhooks/customer.webhooks.schema.d.ts +14 -14
- package/dist/declarations/src/webhooks/svix.webhooks.schema.d.ts +114 -384
- package/dist/declarations/src/webhooks/svix.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 +0 -2
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.cjs +0 -2
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.mjs +0 -2
|
@@ -31,8 +31,6 @@ export declare const AlertWebhookPayload: z.ZodObject<{
|
|
|
31
31
|
reason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32
32
|
createdAt: z.ZodDate;
|
|
33
33
|
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
34
|
-
createdBy: z.ZodString;
|
|
35
|
-
updatedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36
34
|
tags: z.ZodArray<z.ZodObject<{
|
|
37
35
|
id: z.ZodString;
|
|
38
36
|
title: z.ZodString;
|
|
@@ -65,14 +63,12 @@ export declare const AlertWebhookPayload: z.ZodObject<{
|
|
|
65
63
|
updatedAt: Date | null;
|
|
66
64
|
}[];
|
|
67
65
|
severity: "Low" | "Medium" | "High";
|
|
68
|
-
createdBy: string;
|
|
69
66
|
updatedAt?: Date | null | undefined;
|
|
70
67
|
workflowId?: string | null | undefined;
|
|
71
68
|
externalCustomerId?: string | null | undefined;
|
|
72
69
|
workflowName?: string | null | undefined;
|
|
73
70
|
reason?: string | null | undefined;
|
|
74
71
|
scenarioAlertCount?: number | null | undefined;
|
|
75
|
-
updatedBy?: string | null | undefined;
|
|
76
72
|
}, {
|
|
77
73
|
id: string;
|
|
78
74
|
status: "Escalated" | "Pending" | "Open" | "Under Investigation" | "Closed";
|
|
@@ -86,14 +82,12 @@ export declare const AlertWebhookPayload: z.ZodObject<{
|
|
|
86
82
|
updatedAt: Date | null;
|
|
87
83
|
}[];
|
|
88
84
|
severity: "Low" | "Medium" | "High";
|
|
89
|
-
createdBy: string;
|
|
90
85
|
updatedAt?: Date | null | undefined;
|
|
91
86
|
workflowId?: string | null | undefined;
|
|
92
87
|
externalCustomerId?: string | null | undefined;
|
|
93
88
|
workflowName?: string | null | undefined;
|
|
94
89
|
reason?: string | null | undefined;
|
|
95
90
|
scenarioAlertCount?: number | null | undefined;
|
|
96
|
-
updatedBy?: string | null | undefined;
|
|
97
91
|
}>;
|
|
98
92
|
export type AlertWebhookPayload = z.infer<typeof AlertWebhookPayload>;
|
|
99
93
|
//# sourceMappingURL=alert.webhooks.schema.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"alert.webhooks.schema.d.ts","sourceRoot":"../../../../src/webhooks","sources":["alert.webhooks.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;EAM/B,CAAC;AACH,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAExE,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"alert.webhooks.schema.d.ts","sourceRoot":"../../../../src/webhooks","sources":["alert.webhooks.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;EAM/B,CAAC;AACH,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAExE,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAa9B,CAAC;AAEH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC"}
|
|
@@ -19,9 +19,9 @@ export declare const CustomerWebhookPayload: z.ZodObject<{
|
|
|
19
19
|
id: string;
|
|
20
20
|
createdAt: Date;
|
|
21
21
|
customerId: string;
|
|
22
|
+
cmsProjectId: string;
|
|
22
23
|
createdBy: string;
|
|
23
24
|
updatedBy: string;
|
|
24
|
-
cmsProjectId: string;
|
|
25
25
|
type?: "Individual" | "Company" | null | undefined;
|
|
26
26
|
status?: "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status" | null | undefined;
|
|
27
27
|
updatedAt?: Date | null | undefined;
|
|
@@ -35,9 +35,9 @@ export declare const CustomerWebhookPayload: z.ZodObject<{
|
|
|
35
35
|
id: string;
|
|
36
36
|
createdAt: Date;
|
|
37
37
|
customerId: string;
|
|
38
|
+
cmsProjectId: string;
|
|
38
39
|
createdBy: string;
|
|
39
40
|
updatedBy: string;
|
|
40
|
-
cmsProjectId: string;
|
|
41
41
|
type?: "Individual" | "Company" | null | undefined;
|
|
42
42
|
status?: "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status" | null | undefined;
|
|
43
43
|
updatedAt?: Date | null | undefined;
|
|
@@ -76,9 +76,9 @@ export declare const CustomerEvents: {
|
|
|
76
76
|
id: string;
|
|
77
77
|
createdAt: Date;
|
|
78
78
|
customerId: string;
|
|
79
|
+
cmsProjectId: string;
|
|
79
80
|
createdBy: string;
|
|
80
81
|
updatedBy: string;
|
|
81
|
-
cmsProjectId: string;
|
|
82
82
|
type?: "Individual" | "Company" | null | undefined;
|
|
83
83
|
status?: "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status" | null | undefined;
|
|
84
84
|
updatedAt?: Date | null | undefined;
|
|
@@ -92,9 +92,9 @@ export declare const CustomerEvents: {
|
|
|
92
92
|
id: string;
|
|
93
93
|
createdAt: Date;
|
|
94
94
|
customerId: string;
|
|
95
|
+
cmsProjectId: string;
|
|
95
96
|
createdBy: string;
|
|
96
97
|
updatedBy: string;
|
|
97
|
-
cmsProjectId: string;
|
|
98
98
|
type?: "Individual" | "Company" | null | undefined;
|
|
99
99
|
status?: "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status" | null | undefined;
|
|
100
100
|
updatedAt?: Date | null | undefined;
|
|
@@ -110,9 +110,9 @@ export declare const CustomerEvents: {
|
|
|
110
110
|
id: string;
|
|
111
111
|
createdAt: Date;
|
|
112
112
|
customerId: string;
|
|
113
|
+
cmsProjectId: string;
|
|
113
114
|
createdBy: string;
|
|
114
115
|
updatedBy: string;
|
|
115
|
-
cmsProjectId: string;
|
|
116
116
|
type?: "Individual" | "Company" | null | undefined;
|
|
117
117
|
status?: "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status" | null | undefined;
|
|
118
118
|
updatedAt?: Date | null | undefined;
|
|
@@ -130,9 +130,9 @@ export declare const CustomerEvents: {
|
|
|
130
130
|
id: string;
|
|
131
131
|
createdAt: Date;
|
|
132
132
|
customerId: string;
|
|
133
|
+
cmsProjectId: string;
|
|
133
134
|
createdBy: string;
|
|
134
135
|
updatedBy: string;
|
|
135
|
-
cmsProjectId: string;
|
|
136
136
|
type?: "Individual" | "Company" | null | undefined;
|
|
137
137
|
status?: "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status" | null | undefined;
|
|
138
138
|
updatedAt?: Date | null | undefined;
|
|
@@ -169,9 +169,9 @@ export declare const CustomerEvents: {
|
|
|
169
169
|
id: string;
|
|
170
170
|
createdAt: Date;
|
|
171
171
|
customerId: string;
|
|
172
|
+
cmsProjectId: string;
|
|
172
173
|
createdBy: string;
|
|
173
174
|
updatedBy: string;
|
|
174
|
-
cmsProjectId: string;
|
|
175
175
|
type?: "Individual" | "Company" | null | undefined;
|
|
176
176
|
status?: "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status" | null | undefined;
|
|
177
177
|
updatedAt?: Date | null | undefined;
|
|
@@ -185,9 +185,9 @@ export declare const CustomerEvents: {
|
|
|
185
185
|
id: string;
|
|
186
186
|
createdAt: Date;
|
|
187
187
|
customerId: string;
|
|
188
|
+
cmsProjectId: string;
|
|
188
189
|
createdBy: string;
|
|
189
190
|
updatedBy: string;
|
|
190
|
-
cmsProjectId: string;
|
|
191
191
|
type?: "Individual" | "Company" | null | undefined;
|
|
192
192
|
status?: "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status" | null | undefined;
|
|
193
193
|
updatedAt?: Date | null | undefined;
|
|
@@ -203,9 +203,9 @@ export declare const CustomerEvents: {
|
|
|
203
203
|
id: string;
|
|
204
204
|
createdAt: Date;
|
|
205
205
|
customerId: string;
|
|
206
|
+
cmsProjectId: string;
|
|
206
207
|
createdBy: string;
|
|
207
208
|
updatedBy: string;
|
|
208
|
-
cmsProjectId: string;
|
|
209
209
|
type?: "Individual" | "Company" | null | undefined;
|
|
210
210
|
status?: "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status" | null | undefined;
|
|
211
211
|
updatedAt?: Date | null | undefined;
|
|
@@ -223,9 +223,9 @@ export declare const CustomerEvents: {
|
|
|
223
223
|
id: string;
|
|
224
224
|
createdAt: Date;
|
|
225
225
|
customerId: string;
|
|
226
|
+
cmsProjectId: string;
|
|
226
227
|
createdBy: string;
|
|
227
228
|
updatedBy: string;
|
|
228
|
-
cmsProjectId: string;
|
|
229
229
|
type?: "Individual" | "Company" | null | undefined;
|
|
230
230
|
status?: "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status" | null | undefined;
|
|
231
231
|
updatedAt?: Date | null | undefined;
|
|
@@ -262,9 +262,9 @@ export declare const CustomerEvents: {
|
|
|
262
262
|
id: string;
|
|
263
263
|
createdAt: Date;
|
|
264
264
|
customerId: string;
|
|
265
|
+
cmsProjectId: string;
|
|
265
266
|
createdBy: string;
|
|
266
267
|
updatedBy: string;
|
|
267
|
-
cmsProjectId: string;
|
|
268
268
|
type?: "Individual" | "Company" | null | undefined;
|
|
269
269
|
status?: "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status" | null | undefined;
|
|
270
270
|
updatedAt?: Date | null | undefined;
|
|
@@ -278,9 +278,9 @@ export declare const CustomerEvents: {
|
|
|
278
278
|
id: string;
|
|
279
279
|
createdAt: Date;
|
|
280
280
|
customerId: string;
|
|
281
|
+
cmsProjectId: string;
|
|
281
282
|
createdBy: string;
|
|
282
283
|
updatedBy: string;
|
|
283
|
-
cmsProjectId: string;
|
|
284
284
|
type?: "Individual" | "Company" | null | undefined;
|
|
285
285
|
status?: "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status" | null | undefined;
|
|
286
286
|
updatedAt?: Date | null | undefined;
|
|
@@ -296,9 +296,9 @@ export declare const CustomerEvents: {
|
|
|
296
296
|
id: string;
|
|
297
297
|
createdAt: Date;
|
|
298
298
|
customerId: string;
|
|
299
|
+
cmsProjectId: string;
|
|
299
300
|
createdBy: string;
|
|
300
301
|
updatedBy: string;
|
|
301
|
-
cmsProjectId: string;
|
|
302
302
|
type?: "Individual" | "Company" | null | undefined;
|
|
303
303
|
status?: "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status" | null | undefined;
|
|
304
304
|
updatedAt?: Date | null | undefined;
|
|
@@ -316,9 +316,9 @@ export declare const CustomerEvents: {
|
|
|
316
316
|
id: string;
|
|
317
317
|
createdAt: Date;
|
|
318
318
|
customerId: string;
|
|
319
|
+
cmsProjectId: string;
|
|
319
320
|
createdBy: string;
|
|
320
321
|
updatedBy: string;
|
|
321
|
-
cmsProjectId: string;
|
|
322
322
|
type?: "Individual" | "Company" | null | undefined;
|
|
323
323
|
status?: "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status" | null | undefined;
|
|
324
324
|
updatedAt?: Date | null | undefined;
|