@nexeraid/identity-schemas 2.98.0-dev → 2.100.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.
Files changed (37) hide show
  1. package/dist/{CoinMarketCap.schema-f4085f83.cjs.dev.cjs → CoinMarketCap.schema-1f2b5ea7.cjs.dev.cjs} +1 -1
  2. package/dist/{CoinMarketCap.schema-f176b6e7.cjs.prod.cjs → CoinMarketCap.schema-deb194cc.cjs.prod.cjs} +1 -1
  3. package/dist/{CoinMarketCap.schema-6141ba93.esm.mjs → CoinMarketCap.schema-fa7abfc6.esm.mjs} +1 -1
  4. package/dist/declarations/src/identity/host-requests.schema.d.ts +10 -10
  5. package/dist/declarations/src/identity/identity-v2.schema.d.ts +10 -10
  6. package/dist/declarations/src/identity/kyc.schema.d.ts +5 -5
  7. package/dist/declarations/src/identity/txAuthData.schema.d.ts +37 -9
  8. package/dist/declarations/src/identity/txAuthData.schema.d.ts.map +1 -1
  9. package/dist/declarations/src/providers/chainalysis/chainalysis.schema.d.ts +8 -8
  10. package/dist/declarations/src/webhooks/alert.webhooks.schema.d.ts +75 -19
  11. package/dist/declarations/src/webhooks/alert.webhooks.schema.d.ts.map +1 -1
  12. package/dist/declarations/src/webhooks/customer.webhooks.schema.d.ts +28 -28
  13. package/dist/declarations/src/webhooks/svix.webhooks.schema.d.ts +2394 -1062
  14. package/dist/declarations/src/webhooks/svix.webhooks.schema.d.ts.map +1 -1
  15. package/dist/{identity-api.schema-7f88a50d.esm.mjs → identity-api.schema-7892c69f.esm.mjs} +7 -5
  16. package/dist/{identity-api.schema-e36b538f.cjs.dev.cjs → identity-api.schema-97ca9ce3.cjs.dev.cjs} +8 -4
  17. package/dist/{identity-api.schema-11bbb3f3.cjs.prod.cjs → identity-api.schema-ca68abcb.cjs.prod.cjs} +8 -4
  18. package/dist/nexeraid-identity-schemas.cjs.dev.cjs +4 -2
  19. package/dist/nexeraid-identity-schemas.cjs.prod.cjs +4 -2
  20. package/dist/nexeraid-identity-schemas.esm.mjs +3 -3
  21. package/dist/package.json +1 -1
  22. package/dist/{tfhe-utilities-3f572e70.esm.mjs → tfhe-utilities-dc49c4b4.esm.mjs} +1 -1
  23. package/dist/{tfhe-utilities-0c6a2490.cjs.prod.cjs → tfhe-utilities-ec9cd3dc.cjs.prod.cjs} +1 -1
  24. package/dist/{tfhe-utilities-bf816d6c.cjs.dev.cjs → tfhe-utilities-f9e640f3.cjs.dev.cjs} +1 -1
  25. package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.cjs +3 -1
  26. package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.cjs +3 -1
  27. package/identity/dist/nexeraid-identity-schemas-identity.esm.mjs +1 -1
  28. package/package.json +1 -1
  29. package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.cjs +2 -2
  30. package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.cjs +2 -2
  31. package/providers/dist/nexeraid-identity-schemas-providers.esm.mjs +2 -2
  32. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.cjs +2 -2
  33. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.cjs +2 -2
  34. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.mjs +2 -2
  35. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.cjs +20 -10
  36. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.cjs +20 -10
  37. package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.mjs +21 -12
@@ -19,34 +19,34 @@ export declare const CustomerWebhookPayload: z.ZodObject<{
19
19
  id: string;
20
20
  createdAt: Date;
21
21
  customerId: string;
22
- cmsProjectId: string;
23
22
  createdBy: string;
24
23
  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;
28
28
  externalCustomerId?: string | null | undefined;
29
29
  riskScore?: "Low" | "Medium" | "High" | "No risk" | null | undefined;
30
30
  reason?: string | null | undefined;
31
+ onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
31
32
  deletedBy?: string | null | undefined;
32
33
  deletedAt?: Date | null | undefined;
33
- onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
34
34
  }, {
35
35
  id: string;
36
36
  createdAt: Date;
37
37
  customerId: string;
38
- cmsProjectId: string;
39
38
  createdBy: string;
40
39
  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;
44
44
  externalCustomerId?: string | null | undefined;
45
45
  riskScore?: "Low" | "Medium" | "High" | "No risk" | null | undefined;
46
46
  reason?: string | null | undefined;
47
+ onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
47
48
  deletedBy?: string | null | undefined;
48
49
  deletedAt?: Date | null | undefined;
49
- onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
50
50
  }>;
51
51
  export type CustomerWebhookPayload = z.infer<typeof CustomerWebhookPayload>;
52
52
  export declare const CUSTOMER_TOPICS: readonly ["CUSTOMER_CREATED", "CUSTOMER_UPDATED", "CUSTOMER_DELETED", "CUSTOMER_STATUS_CHANGED", "CUSTOMER_RISK_LEVEL_CHANGED", "CUSTOMER_COUNTRY"];
@@ -76,52 +76,52 @@ export declare const CustomerEvents: {
76
76
  id: string;
77
77
  createdAt: Date;
78
78
  customerId: string;
79
- cmsProjectId: string;
80
79
  createdBy: string;
81
80
  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;
85
85
  externalCustomerId?: string | null | undefined;
86
86
  riskScore?: "Low" | "Medium" | "High" | "No risk" | null | undefined;
87
87
  reason?: string | null | undefined;
88
+ onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
88
89
  deletedBy?: string | null | undefined;
89
90
  deletedAt?: Date | null | undefined;
90
- onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
91
91
  }, {
92
92
  id: string;
93
93
  createdAt: Date;
94
94
  customerId: string;
95
- cmsProjectId: string;
96
95
  createdBy: string;
97
96
  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;
101
101
  externalCustomerId?: string | null | undefined;
102
102
  riskScore?: "Low" | "Medium" | "High" | "No risk" | null | undefined;
103
103
  reason?: string | null | undefined;
104
+ onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
104
105
  deletedBy?: string | null | undefined;
105
106
  deletedAt?: Date | null | undefined;
106
- onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
107
107
  }>;
108
108
  }, "strip", z.ZodTypeAny, {
109
109
  data: {
110
110
  id: string;
111
111
  createdAt: Date;
112
112
  customerId: string;
113
- cmsProjectId: string;
114
113
  createdBy: string;
115
114
  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;
119
119
  externalCustomerId?: string | null | undefined;
120
120
  riskScore?: "Low" | "Medium" | "High" | "No risk" | null | undefined;
121
121
  reason?: string | null | undefined;
122
+ onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
122
123
  deletedBy?: string | null | undefined;
123
124
  deletedAt?: Date | null | undefined;
124
- onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
125
125
  };
126
126
  topic: "CUSTOMER_CREATED";
127
127
  subject: string;
@@ -130,18 +130,18 @@ export declare const CustomerEvents: {
130
130
  id: string;
131
131
  createdAt: Date;
132
132
  customerId: string;
133
- cmsProjectId: string;
134
133
  createdBy: string;
135
134
  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;
139
139
  externalCustomerId?: string | null | undefined;
140
140
  riskScore?: "Low" | "Medium" | "High" | "No risk" | null | undefined;
141
141
  reason?: string | null | undefined;
142
+ onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
142
143
  deletedBy?: string | null | undefined;
143
144
  deletedAt?: Date | null | undefined;
144
- onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
145
145
  };
146
146
  topic: "CUSTOMER_CREATED";
147
147
  subject: string;
@@ -169,52 +169,52 @@ export declare const CustomerEvents: {
169
169
  id: string;
170
170
  createdAt: Date;
171
171
  customerId: string;
172
- cmsProjectId: string;
173
172
  createdBy: string;
174
173
  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;
178
178
  externalCustomerId?: string | null | undefined;
179
179
  riskScore?: "Low" | "Medium" | "High" | "No risk" | null | undefined;
180
180
  reason?: string | null | undefined;
181
+ onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
181
182
  deletedBy?: string | null | undefined;
182
183
  deletedAt?: Date | null | undefined;
183
- onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
184
184
  }, {
185
185
  id: string;
186
186
  createdAt: Date;
187
187
  customerId: string;
188
- cmsProjectId: string;
189
188
  createdBy: string;
190
189
  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;
194
194
  externalCustomerId?: string | null | undefined;
195
195
  riskScore?: "Low" | "Medium" | "High" | "No risk" | null | undefined;
196
196
  reason?: string | null | undefined;
197
+ onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
197
198
  deletedBy?: string | null | undefined;
198
199
  deletedAt?: Date | null | undefined;
199
- onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
200
200
  }>;
201
201
  }, "strip", z.ZodTypeAny, {
202
202
  data: {
203
203
  id: string;
204
204
  createdAt: Date;
205
205
  customerId: string;
206
- cmsProjectId: string;
207
206
  createdBy: string;
208
207
  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;
212
212
  externalCustomerId?: string | null | undefined;
213
213
  riskScore?: "Low" | "Medium" | "High" | "No risk" | null | undefined;
214
214
  reason?: string | null | undefined;
215
+ onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
215
216
  deletedBy?: string | null | undefined;
216
217
  deletedAt?: Date | null | undefined;
217
- onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
218
218
  };
219
219
  topic: "CUSTOMER_UPDATED";
220
220
  subject: string;
@@ -223,18 +223,18 @@ export declare const CustomerEvents: {
223
223
  id: string;
224
224
  createdAt: Date;
225
225
  customerId: string;
226
- cmsProjectId: string;
227
226
  createdBy: string;
228
227
  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;
232
232
  externalCustomerId?: string | null | undefined;
233
233
  riskScore?: "Low" | "Medium" | "High" | "No risk" | null | undefined;
234
234
  reason?: string | null | undefined;
235
+ onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
235
236
  deletedBy?: string | null | undefined;
236
237
  deletedAt?: Date | null | undefined;
237
- onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
238
238
  };
239
239
  topic: "CUSTOMER_UPDATED";
240
240
  subject: string;
@@ -262,52 +262,52 @@ export declare const CustomerEvents: {
262
262
  id: string;
263
263
  createdAt: Date;
264
264
  customerId: string;
265
- cmsProjectId: string;
266
265
  createdBy: string;
267
266
  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;
271
271
  externalCustomerId?: string | null | undefined;
272
272
  riskScore?: "Low" | "Medium" | "High" | "No risk" | null | undefined;
273
273
  reason?: string | null | undefined;
274
+ onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
274
275
  deletedBy?: string | null | undefined;
275
276
  deletedAt?: Date | null | undefined;
276
- onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
277
277
  }, {
278
278
  id: string;
279
279
  createdAt: Date;
280
280
  customerId: string;
281
- cmsProjectId: string;
282
281
  createdBy: string;
283
282
  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;
287
287
  externalCustomerId?: string | null | undefined;
288
288
  riskScore?: "Low" | "Medium" | "High" | "No risk" | null | undefined;
289
289
  reason?: string | null | undefined;
290
+ onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
290
291
  deletedBy?: string | null | undefined;
291
292
  deletedAt?: Date | null | undefined;
292
- onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
293
293
  }>;
294
294
  }, "strip", z.ZodTypeAny, {
295
295
  data: {
296
296
  id: string;
297
297
  createdAt: Date;
298
298
  customerId: string;
299
- cmsProjectId: string;
300
299
  createdBy: string;
301
300
  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;
305
305
  externalCustomerId?: string | null | undefined;
306
306
  riskScore?: "Low" | "Medium" | "High" | "No risk" | null | undefined;
307
307
  reason?: string | null | undefined;
308
+ onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
308
309
  deletedBy?: string | null | undefined;
309
310
  deletedAt?: Date | null | undefined;
310
- onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
311
311
  };
312
312
  topic: "CUSTOMER_DELETED";
313
313
  subject: string;
@@ -316,18 +316,18 @@ export declare const CustomerEvents: {
316
316
  id: string;
317
317
  createdAt: Date;
318
318
  customerId: string;
319
- cmsProjectId: string;
320
319
  createdBy: string;
321
320
  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;
325
325
  externalCustomerId?: string | null | undefined;
326
326
  riskScore?: "Low" | "Medium" | "High" | "No risk" | null | undefined;
327
327
  reason?: string | null | undefined;
328
+ onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
328
329
  deletedBy?: string | null | undefined;
329
330
  deletedAt?: Date | null | undefined;
330
- onboardingLevel?: "Sign-up" | "AML screening" | "KYC" | "Questionaire" | "Onboarded" | "Onboarding" | "KYB" | null | undefined;
331
331
  };
332
332
  topic: "CUSTOMER_DELETED";
333
333
  subject: string;