@learncard/learn-cloud-plugin 2.1.43 → 2.1.44

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.
@@ -12464,6 +12464,7 @@ var require_types_cjs_development = __commonJS2({
12464
12464
  controller: z2.string(),
12465
12465
  publicKeyJwk: JWKValidator2.optional(),
12466
12466
  publicKeyBase58: z2.string().optional(),
12467
+ publicKeyMultibase: z2.string().optional(),
12467
12468
  blockChainAccountId: z2.string().optional()
12468
12469
  }).catchall(z2.any())
12469
12470
  );
@@ -12772,7 +12773,8 @@ var require_types_cjs_development = __commonJS2({
12772
12773
  display: LCNProfileDisplayValidator2.optional().describe("Display settings for the profile."),
12773
12774
  highlightedCredentials: z2.array(z2.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
12774
12775
  role: z2.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
12775
- dob: z2.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
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.")
12776
12778
  });
12777
12779
  var LCNProfileQueryValidator2 = z2.object({
12778
12780
  profileId: StringQuery2,
@@ -17487,6 +17489,7 @@ var VerificationMethodValidator = z.string().or(
17487
17489
  controller: z.string(),
17488
17490
  publicKeyJwk: JWKValidator.optional(),
17489
17491
  publicKeyBase58: z.string().optional(),
17492
+ publicKeyMultibase: z.string().optional(),
17490
17493
  blockChainAccountId: z.string().optional()
17491
17494
  }).catchall(z.any())
17492
17495
  );
@@ -17795,7 +17798,8 @@ var LCNProfileValidator = z.object({
17795
17798
  display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
17796
17799
  highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
17797
17800
  role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
17798
- dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
17801
+ 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.")
17799
17803
  });
17800
17804
  var LCNProfileQueryValidator = z.object({
17801
17805
  profileId: StringQuery,