@learncard/learn-card-plugin 1.1.54 → 1.1.56

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.
@@ -4466,6 +4466,7 @@ var LCNProfileValidator = z.object({
4466
4466
  type: z.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
4467
4467
  notificationsWebhook: z.string().url().startsWith("http").optional().describe("URL to send notifications to."),
4468
4468
  display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
4469
+ highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
4469
4470
  role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
4470
4471
  dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
4471
4472
  });
@@ -4821,7 +4822,8 @@ var LCNNotificationTypeEnumValidator = z.enum([
4821
4822
  "PRESENTATION_RECEIVED",
4822
4823
  "CONSENT_FLOW_TRANSACTION",
4823
4824
  "ISSUANCE_CLAIMED",
4824
- "ISSUANCE_DELIVERED"
4825
+ "ISSUANCE_DELIVERED",
4826
+ "ISSUANCE_ERROR"
4825
4827
  ]);
4826
4828
  var LCNNotificationMessageValidator = z.object({
4827
4829
  title: z.string().optional(),
@@ -4938,8 +4940,10 @@ var InboxCredentialValidator = z.object({
4938
4940
  createdAt: z.string(),
4939
4941
  issuerDid: z.string(),
4940
4942
  webhookUrl: z.string().optional(),
4941
- "signingAuthority.endpoint": z.string().optional(),
4942
- "signingAuthority.name": z.string().optional()
4943
+ signingAuthority: z.object({
4944
+ endpoint: z.string().optional(),
4945
+ name: z.string().optional()
4946
+ }).optional()
4943
4947
  });
4944
4948
  var PaginatedInboxCredentialsValidator = z.object({
4945
4949
  hasMore: z.boolean(),
@@ -4994,6 +4998,7 @@ var IssueInboxCredentialResponseValidator = z.object({
4994
4998
  var ClaimTokenValidator = z.object({
4995
4999
  token: z.string(),
4996
5000
  contactMethodId: z.string(),
5001
+ autoVerifyContactMethod: z.boolean().optional().default(false),
4997
5002
  createdAt: z.string(),
4998
5003
  expiresAt: z.string(),
4999
5004
  used: z.boolean()