@learncard/learn-card-plugin 1.1.55 → 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.
@@ -4490,6 +4490,7 @@ var LCNProfileValidator = z.object({
4490
4490
  type: z.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
4491
4491
  notificationsWebhook: z.string().url().startsWith("http").optional().describe("URL to send notifications to."),
4492
4492
  display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
4493
+ highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
4493
4494
  role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
4494
4495
  dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
4495
4496
  });