@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.
@@ -12787,7 +12787,8 @@ var require_types_cjs_development = __commonJS2({
12787
12787
  highlightedCredentials: z2.array(z2.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
12788
12788
  role: z2.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
12789
12789
  dob: z2.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".'),
12790
- country: z2.string().optional().describe("Country for the profile.")
12790
+ country: z2.string().optional().describe("Country for the profile."),
12791
+ approved: z2.boolean().optional().describe("Approval status for the profile.")
12791
12792
  });
12792
12793
  var LCNProfileQueryValidator2 = z2.object({
12793
12794
  profileId: StringQuery2,
@@ -17812,7 +17813,8 @@ var LCNProfileValidator = z.object({
17812
17813
  highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
17813
17814
  role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
17814
17815
  dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".'),
17815
- country: z.string().optional().describe("Country for the profile.")
17816
+ country: z.string().optional().describe("Country for the profile."),
17817
+ approved: z.boolean().optional().describe("Approval status for the profile.")
17816
17818
  });
17817
17819
  var LCNProfileQueryValidator = z.object({
17818
17820
  profileId: StringQuery,