@learncard/idx-plugin 1.0.48 → 1.0.49

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.
@@ -11749,6 +11749,7 @@ var VerificationMethodValidator = z.string().or(
11749
11749
  controller: z.string(),
11750
11750
  publicKeyJwk: JWKValidator.optional(),
11751
11751
  publicKeyBase58: z.string().optional(),
11752
+ publicKeyMultibase: z.string().optional(),
11752
11753
  blockChainAccountId: z.string().optional()
11753
11754
  }).catchall(z.any())
11754
11755
  );
@@ -12057,7 +12058,8 @@ var LCNProfileValidator = z.object({
12057
12058
  display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
12058
12059
  highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
12059
12060
  role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
12060
- dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
12061
+ dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".'),
12062
+ country: z.string().optional().describe("Country for the profile.")
12061
12063
  });
12062
12064
  var LCNProfileQueryValidator = z.object({
12063
12065
  profileId: StringQuery,
@@ -67631,6 +67633,7 @@ var VerificationMethodValidator2 = z2.string().or(
67631
67633
  controller: z2.string(),
67632
67634
  publicKeyJwk: JWKValidator2.optional(),
67633
67635
  publicKeyBase58: z2.string().optional(),
67636
+ publicKeyMultibase: z2.string().optional(),
67634
67637
  blockChainAccountId: z2.string().optional()
67635
67638
  }).catchall(z2.any())
67636
67639
  );
@@ -67939,7 +67942,8 @@ var LCNProfileValidator2 = z2.object({
67939
67942
  display: LCNProfileDisplayValidator2.optional().describe("Display settings for the profile."),
67940
67943
  highlightedCredentials: z2.array(z2.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
67941
67944
  role: z2.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
67942
- dob: z2.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
67945
+ dob: z2.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".'),
67946
+ country: z2.string().optional().describe("Country for the profile.")
67943
67947
  });
67944
67948
  var LCNProfileQueryValidator2 = z2.object({
67945
67949
  profileId: StringQuery2,