@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.
- package/dist/learn-cloud-plugin.cjs.development.js +2 -0
- package/dist/learn-cloud-plugin.cjs.development.js.map +2 -2
- package/dist/learn-cloud-plugin.cjs.production.min.js +1 -1
- package/dist/learn-cloud-plugin.cjs.production.min.js.map +2 -2
- package/dist/learn-cloud-plugin.esm.js +2 -0
- package/dist/learn-cloud-plugin.esm.js.map +2 -2
- package/package.json +7 -7
|
@@ -12768,6 +12768,7 @@ var require_types_cjs_development = __commonJS2({
|
|
|
12768
12768
|
type: z2.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
|
|
12769
12769
|
notificationsWebhook: z2.string().url().startsWith("http").optional().describe("URL to send notifications to."),
|
|
12770
12770
|
display: LCNProfileDisplayValidator2.optional().describe("Display settings for the profile."),
|
|
12771
|
+
highlightedCredentials: z2.array(z2.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
|
|
12771
12772
|
role: z2.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
|
|
12772
12773
|
dob: z2.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
|
|
12773
12774
|
});
|
|
@@ -17786,6 +17787,7 @@ var LCNProfileValidator = z.object({
|
|
|
17786
17787
|
type: z.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
|
|
17787
17788
|
notificationsWebhook: z.string().url().startsWith("http").optional().describe("URL to send notifications to."),
|
|
17788
17789
|
display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
|
|
17790
|
+
highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
|
|
17789
17791
|
role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
|
|
17790
17792
|
dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
|
|
17791
17793
|
});
|