@learncard/learn-card-plugin 1.1.58 → 1.1.59

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.
@@ -4494,7 +4494,8 @@ var LCNProfileValidator = z.object({
4494
4494
  highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
4495
4495
  role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
4496
4496
  dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".'),
4497
- country: z.string().optional().describe("Country for the profile.")
4497
+ country: z.string().optional().describe("Country for the profile."),
4498
+ approved: z.boolean().optional().describe("Approval status for the profile.")
4498
4499
  });
4499
4500
  var LCNProfileQueryValidator = z.object({
4500
4501
  profileId: StringQuery,