@learncard/helpers 1.1.23 → 1.1.24

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.
@@ -4660,6 +4660,7 @@ var require_types_cjs_development = __commonJS({
4660
4660
  type: z.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
4661
4661
  notificationsWebhook: z.string().url().startsWith("http").optional().describe("URL to send notifications to."),
4662
4662
  display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
4663
+ highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
4663
4664
  role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
4664
4665
  dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
4665
4666
  });
@@ -5015,7 +5016,8 @@ var require_types_cjs_development = __commonJS({
5015
5016
  "PRESENTATION_RECEIVED",
5016
5017
  "CONSENT_FLOW_TRANSACTION",
5017
5018
  "ISSUANCE_CLAIMED",
5018
- "ISSUANCE_DELIVERED"
5019
+ "ISSUANCE_DELIVERED",
5020
+ "ISSUANCE_ERROR"
5019
5021
  ]);
5020
5022
  var LCNNotificationMessageValidator = z.object({
5021
5023
  title: z.string().optional(),
@@ -5132,8 +5134,10 @@ var require_types_cjs_development = __commonJS({
5132
5134
  createdAt: z.string(),
5133
5135
  issuerDid: z.string(),
5134
5136
  webhookUrl: z.string().optional(),
5135
- "signingAuthority.endpoint": z.string().optional(),
5136
- "signingAuthority.name": z.string().optional()
5137
+ signingAuthority: z.object({
5138
+ endpoint: z.string().optional(),
5139
+ name: z.string().optional()
5140
+ }).optional()
5137
5141
  });
5138
5142
  var PaginatedInboxCredentialsValidator = z.object({
5139
5143
  hasMore: z.boolean(),
@@ -5188,6 +5192,7 @@ var require_types_cjs_development = __commonJS({
5188
5192
  var ClaimTokenValidator = z.object({
5189
5193
  token: z.string(),
5190
5194
  contactMethodId: z.string(),
5195
+ autoVerifyContactMethod: z.boolean().optional().default(false),
5191
5196
  createdAt: z.string(),
5192
5197
  expiresAt: z.string(),
5193
5198
  used: z.boolean()