@learncard/network-brain-client 2.3.20 → 2.3.21

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.
@@ -5071,7 +5071,8 @@ var require_helpers_cjs_development = __commonJS({
5071
5071
  "PRESENTATION_RECEIVED",
5072
5072
  "CONSENT_FLOW_TRANSACTION",
5073
5073
  "ISSUANCE_CLAIMED",
5074
- "ISSUANCE_DELIVERED"
5074
+ "ISSUANCE_DELIVERED",
5075
+ "ISSUANCE_ERROR"
5075
5076
  ]);
5076
5077
  var LCNNotificationMessageValidator = z.object({
5077
5078
  title: z.string().optional(),
@@ -5188,8 +5189,10 @@ var require_helpers_cjs_development = __commonJS({
5188
5189
  createdAt: z.string(),
5189
5190
  issuerDid: z.string(),
5190
5191
  webhookUrl: z.string().optional(),
5191
- "signingAuthority.endpoint": z.string().optional(),
5192
- "signingAuthority.name": z.string().optional()
5192
+ signingAuthority: z.object({
5193
+ endpoint: z.string().optional(),
5194
+ name: z.string().optional()
5195
+ }).optional()
5193
5196
  });
5194
5197
  var PaginatedInboxCredentialsValidator = z.object({
5195
5198
  hasMore: z.boolean(),
@@ -5244,6 +5247,7 @@ var require_helpers_cjs_development = __commonJS({
5244
5247
  var ClaimTokenValidator = z.object({
5245
5248
  token: z.string(),
5246
5249
  contactMethodId: z.string(),
5250
+ autoVerifyContactMethod: z.boolean().optional().default(false),
5247
5251
  createdAt: z.string(),
5248
5252
  expiresAt: z.string(),
5249
5253
  used: z.boolean()