@learncard/learn-cloud-plugin 2.1.40 → 2.1.41

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.
@@ -12781,6 +12781,7 @@ var require_types_cjs_development = __commonJS2({
12781
12781
  type: z2.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
12782
12782
  notificationsWebhook: z2.string().url().startsWith("http").optional().describe("URL to send notifications to."),
12783
12783
  display: LCNProfileDisplayValidator2.optional().describe("Display settings for the profile."),
12784
+ highlightedCredentials: z2.array(z2.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
12784
12785
  role: z2.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
12785
12786
  dob: z2.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
12786
12787
  });
@@ -17799,6 +17800,7 @@ var LCNProfileValidator = z.object({
17799
17800
  type: z.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
17800
17801
  notificationsWebhook: z.string().url().startsWith("http").optional().describe("URL to send notifications to."),
17801
17802
  display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
17803
+ highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
17802
17804
  role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
17803
17805
  dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
17804
17806
  });