@learncard/idx-plugin 1.0.48 → 1.0.50

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,9 @@ 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."),
12063
+ approved: z.boolean().optional().describe("Approval status for the profile.")
12061
12064
  });
12062
12065
  var LCNProfileQueryValidator = z.object({
12063
12066
  profileId: StringQuery,
@@ -67631,6 +67634,7 @@ var VerificationMethodValidator2 = z2.string().or(
67631
67634
  controller: z2.string(),
67632
67635
  publicKeyJwk: JWKValidator2.optional(),
67633
67636
  publicKeyBase58: z2.string().optional(),
67637
+ publicKeyMultibase: z2.string().optional(),
67634
67638
  blockChainAccountId: z2.string().optional()
67635
67639
  }).catchall(z2.any())
67636
67640
  );
@@ -67939,7 +67943,9 @@ var LCNProfileValidator2 = z2.object({
67939
67943
  display: LCNProfileDisplayValidator2.optional().describe("Display settings for the profile."),
67940
67944
  highlightedCredentials: z2.array(z2.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
67941
67945
  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".')
67946
+ dob: z2.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".'),
67947
+ country: z2.string().optional().describe("Country for the profile."),
67948
+ approved: z2.boolean().optional().describe("Approval status for the profile.")
67943
67949
  });
67944
67950
  var LCNProfileQueryValidator2 = z2.object({
67945
67951
  profileId: StringQuery2,