@learncard/network-plugin 2.5.14 → 2.5.16

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.
@@ -7039,7 +7039,8 @@ var require_helpers_cjs_development = __commonJS({
7039
7039
  "PRESENTATION_RECEIVED",
7040
7040
  "CONSENT_FLOW_TRANSACTION",
7041
7041
  "ISSUANCE_CLAIMED",
7042
- "ISSUANCE_DELIVERED"
7042
+ "ISSUANCE_DELIVERED",
7043
+ "ISSUANCE_ERROR"
7043
7044
  ]);
7044
7045
  var LCNNotificationMessageValidator2 = z2.object({
7045
7046
  title: z2.string().optional(),
@@ -7156,8 +7157,10 @@ var require_helpers_cjs_development = __commonJS({
7156
7157
  createdAt: z2.string(),
7157
7158
  issuerDid: z2.string(),
7158
7159
  webhookUrl: z2.string().optional(),
7159
- "signingAuthority.endpoint": z2.string().optional(),
7160
- "signingAuthority.name": z2.string().optional()
7160
+ signingAuthority: z2.object({
7161
+ endpoint: z2.string().optional(),
7162
+ name: z2.string().optional()
7163
+ }).optional()
7161
7164
  });
7162
7165
  var PaginatedInboxCredentialsValidator2 = z2.object({
7163
7166
  hasMore: z2.boolean(),
@@ -7212,6 +7215,7 @@ var require_helpers_cjs_development = __commonJS({
7212
7215
  var ClaimTokenValidator2 = z2.object({
7213
7216
  token: z2.string(),
7214
7217
  contactMethodId: z2.string(),
7218
+ autoVerifyContactMethod: z2.boolean().optional().default(false),
7215
7219
  createdAt: z2.string(),
7216
7220
  expiresAt: z2.string(),
7217
7221
  used: z2.boolean()
@@ -12185,7 +12189,8 @@ var LCNNotificationTypeEnumValidator = z.enum([
12185
12189
  "PRESENTATION_RECEIVED",
12186
12190
  "CONSENT_FLOW_TRANSACTION",
12187
12191
  "ISSUANCE_CLAIMED",
12188
- "ISSUANCE_DELIVERED"
12192
+ "ISSUANCE_DELIVERED",
12193
+ "ISSUANCE_ERROR"
12189
12194
  ]);
12190
12195
  var LCNNotificationMessageValidator = z.object({
12191
12196
  title: z.string().optional(),
@@ -12302,8 +12307,10 @@ var InboxCredentialValidator = z.object({
12302
12307
  createdAt: z.string(),
12303
12308
  issuerDid: z.string(),
12304
12309
  webhookUrl: z.string().optional(),
12305
- "signingAuthority.endpoint": z.string().optional(),
12306
- "signingAuthority.name": z.string().optional()
12310
+ signingAuthority: z.object({
12311
+ endpoint: z.string().optional(),
12312
+ name: z.string().optional()
12313
+ }).optional()
12307
12314
  });
12308
12315
  var PaginatedInboxCredentialsValidator = z.object({
12309
12316
  hasMore: z.boolean(),
@@ -12358,6 +12365,7 @@ var IssueInboxCredentialResponseValidator = z.object({
12358
12365
  var ClaimTokenValidator = z.object({
12359
12366
  token: z.string(),
12360
12367
  contactMethodId: z.string(),
12368
+ autoVerifyContactMethod: z.boolean().optional().default(false),
12361
12369
  createdAt: z.string(),
12362
12370
  expiresAt: z.string(),
12363
12371
  used: z.boolean()
@@ -17402,7 +17410,8 @@ var require_types_cjs_development = __commonJS2({
17402
17410
  "PRESENTATION_RECEIVED",
17403
17411
  "CONSENT_FLOW_TRANSACTION",
17404
17412
  "ISSUANCE_CLAIMED",
17405
- "ISSUANCE_DELIVERED"
17413
+ "ISSUANCE_DELIVERED",
17414
+ "ISSUANCE_ERROR"
17406
17415
  ]);
17407
17416
  var LCNNotificationMessageValidator2 = z2.object({
17408
17417
  title: z2.string().optional(),
@@ -17519,8 +17528,10 @@ var require_types_cjs_development = __commonJS2({
17519
17528
  createdAt: z2.string(),
17520
17529
  issuerDid: z2.string(),
17521
17530
  webhookUrl: z2.string().optional(),
17522
- "signingAuthority.endpoint": z2.string().optional(),
17523
- "signingAuthority.name": z2.string().optional()
17531
+ signingAuthority: z2.object({
17532
+ endpoint: z2.string().optional(),
17533
+ name: z2.string().optional()
17534
+ }).optional()
17524
17535
  });
17525
17536
  var PaginatedInboxCredentialsValidator2 = z2.object({
17526
17537
  hasMore: z2.boolean(),
@@ -17575,6 +17586,7 @@ var require_types_cjs_development = __commonJS2({
17575
17586
  var ClaimTokenValidator2 = z2.object({
17576
17587
  token: z2.string(),
17577
17588
  contactMethodId: z2.string(),
17589
+ autoVerifyContactMethod: z2.boolean().optional().default(false),
17578
17590
  createdAt: z2.string(),
17579
17591
  expiresAt: z2.string(),
17580
17592
  used: z2.boolean()