@learncard/learn-cloud-plugin 2.2.1 → 2.2.3

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.
@@ -12774,7 +12774,8 @@ var require_types_cjs_development = __commonJS2({
12774
12774
  highlightedCredentials: z2.array(z2.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
12775
12775
  role: z2.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
12776
12776
  dob: z2.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".'),
12777
- country: z2.string().optional().describe("Country for the profile.")
12777
+ country: z2.string().optional().describe("Country for the profile."),
12778
+ approved: z2.boolean().optional().describe("Approval status for the profile.")
12778
12779
  });
12779
12780
  var LCNProfileQueryValidator2 = z2.object({
12780
12781
  profileId: StringQuery2,
@@ -17799,7 +17800,8 @@ var LCNProfileValidator = z.object({
17799
17800
  highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
17800
17801
  role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
17801
17802
  dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".'),
17802
- country: z.string().optional().describe("Country for the profile.")
17803
+ country: z.string().optional().describe("Country for the profile."),
17804
+ approved: z.boolean().optional().describe("Approval status for the profile.")
17803
17805
  });
17804
17806
  var LCNProfileQueryValidator = z.object({
17805
17807
  profileId: StringQuery,