@learncard/idx-plugin 1.0.46 → 1.0.47

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.
@@ -12055,6 +12055,7 @@ var LCNProfileValidator = z.object({
12055
12055
  type: z.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
12056
12056
  notificationsWebhook: z.string().url().startsWith("http").optional().describe("URL to send notifications to."),
12057
12057
  display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
12058
+ highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
12058
12059
  role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
12059
12060
  dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
12060
12061
  });
@@ -12410,7 +12411,8 @@ var LCNNotificationTypeEnumValidator = z.enum([
12410
12411
  "PRESENTATION_RECEIVED",
12411
12412
  "CONSENT_FLOW_TRANSACTION",
12412
12413
  "ISSUANCE_CLAIMED",
12413
- "ISSUANCE_DELIVERED"
12414
+ "ISSUANCE_DELIVERED",
12415
+ "ISSUANCE_ERROR"
12414
12416
  ]);
12415
12417
  var LCNNotificationMessageValidator = z.object({
12416
12418
  title: z.string().optional(),
@@ -12527,8 +12529,10 @@ var InboxCredentialValidator = z.object({
12527
12529
  createdAt: z.string(),
12528
12530
  issuerDid: z.string(),
12529
12531
  webhookUrl: z.string().optional(),
12530
- "signingAuthority.endpoint": z.string().optional(),
12531
- "signingAuthority.name": z.string().optional()
12532
+ signingAuthority: z.object({
12533
+ endpoint: z.string().optional(),
12534
+ name: z.string().optional()
12535
+ }).optional()
12532
12536
  });
12533
12537
  var PaginatedInboxCredentialsValidator = z.object({
12534
12538
  hasMore: z.boolean(),
@@ -12583,6 +12587,7 @@ var IssueInboxCredentialResponseValidator = z.object({
12583
12587
  var ClaimTokenValidator = z.object({
12584
12588
  token: z.string(),
12585
12589
  contactMethodId: z.string(),
12590
+ autoVerifyContactMethod: z.boolean().optional().default(false),
12586
12591
  createdAt: z.string(),
12587
12592
  expiresAt: z.string(),
12588
12593
  used: z.boolean()
@@ -67928,6 +67933,7 @@ var LCNProfileValidator2 = z2.object({
67928
67933
  type: z2.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
67929
67934
  notificationsWebhook: z2.string().url().startsWith("http").optional().describe("URL to send notifications to."),
67930
67935
  display: LCNProfileDisplayValidator2.optional().describe("Display settings for the profile."),
67936
+ highlightedCredentials: z2.array(z2.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
67931
67937
  role: z2.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
67932
67938
  dob: z2.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
67933
67939
  });
@@ -68283,7 +68289,8 @@ var LCNNotificationTypeEnumValidator2 = z2.enum([
68283
68289
  "PRESENTATION_RECEIVED",
68284
68290
  "CONSENT_FLOW_TRANSACTION",
68285
68291
  "ISSUANCE_CLAIMED",
68286
- "ISSUANCE_DELIVERED"
68292
+ "ISSUANCE_DELIVERED",
68293
+ "ISSUANCE_ERROR"
68287
68294
  ]);
68288
68295
  var LCNNotificationMessageValidator2 = z2.object({
68289
68296
  title: z2.string().optional(),
@@ -68400,8 +68407,10 @@ var InboxCredentialValidator2 = z2.object({
68400
68407
  createdAt: z2.string(),
68401
68408
  issuerDid: z2.string(),
68402
68409
  webhookUrl: z2.string().optional(),
68403
- "signingAuthority.endpoint": z2.string().optional(),
68404
- "signingAuthority.name": z2.string().optional()
68410
+ signingAuthority: z2.object({
68411
+ endpoint: z2.string().optional(),
68412
+ name: z2.string().optional()
68413
+ }).optional()
68405
68414
  });
68406
68415
  var PaginatedInboxCredentialsValidator2 = z2.object({
68407
68416
  hasMore: z2.boolean(),
@@ -68456,6 +68465,7 @@ var IssueInboxCredentialResponseValidator2 = z2.object({
68456
68465
  var ClaimTokenValidator2 = z2.object({
68457
68466
  token: z2.string(),
68458
68467
  contactMethodId: z2.string(),
68468
+ autoVerifyContactMethod: z2.boolean().optional().default(false),
68459
68469
  createdAt: z2.string(),
68460
68470
  expiresAt: z2.string(),
68461
68471
  used: z2.boolean()