@learncard/idx-plugin 1.0.47 → 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.
@@ -11743,6 +11743,7 @@ var VerificationMethodValidator = z.string().or(
11743
11743
  controller: z.string(),
11744
11744
  publicKeyJwk: JWKValidator.optional(),
11745
11745
  publicKeyBase58: z.string().optional(),
11746
+ publicKeyMultibase: z.string().optional(),
11746
11747
  blockChainAccountId: z.string().optional()
11747
11748
  }).catchall(z.any())
11748
11749
  );
@@ -12051,7 +12052,8 @@ var LCNProfileValidator = z.object({
12051
12052
  display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
12052
12053
  highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
12053
12054
  role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
12054
- dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
12055
+ dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".'),
12056
+ country: z.string().optional().describe("Country for the profile.")
12055
12057
  });
12056
12058
  var LCNProfileQueryValidator = z.object({
12057
12059
  profileId: StringQuery,
@@ -12133,7 +12135,7 @@ var BoostPermissionsQueryValidator = z.object({
12133
12135
  canManageChildrenProfiles: z.boolean(),
12134
12136
  canViewAnalytics: z.boolean()
12135
12137
  }).partial();
12136
- var ClaimHookTypeValidator = z.enum(["GRANT_PERMISSIONS", "ADD_ADMIN"]);
12138
+ var ClaimHookTypeValidator = z.enum(["GRANT_PERMISSIONS", "ADD_ADMIN", "AUTO_CONNECT"]);
12137
12139
  var ClaimHookValidator = z.discriminatedUnion("type", [
12138
12140
  z.object({
12139
12141
  type: z.literal(ClaimHookTypeValidator.Values.GRANT_PERMISSIONS),
@@ -12146,6 +12148,10 @@ var ClaimHookValidator = z.discriminatedUnion("type", [
12146
12148
  z.object({
12147
12149
  type: z.literal(ClaimHookTypeValidator.Values.ADD_ADMIN),
12148
12150
  data: z.object({ claimUri: z.string(), targetUri: z.string() })
12151
+ }),
12152
+ z.object({
12153
+ type: z.literal(ClaimHookTypeValidator.Values.AUTO_CONNECT),
12154
+ data: z.object({ claimUri: z.string(), targetUri: z.string() })
12149
12155
  })
12150
12156
  ]);
12151
12157
  var ClaimHookQueryValidator = z.object({
@@ -67621,6 +67627,7 @@ var VerificationMethodValidator2 = z2.string().or(
67621
67627
  controller: z2.string(),
67622
67628
  publicKeyJwk: JWKValidator2.optional(),
67623
67629
  publicKeyBase58: z2.string().optional(),
67630
+ publicKeyMultibase: z2.string().optional(),
67624
67631
  blockChainAccountId: z2.string().optional()
67625
67632
  }).catchall(z2.any())
67626
67633
  );
@@ -67929,7 +67936,8 @@ var LCNProfileValidator2 = z2.object({
67929
67936
  display: LCNProfileDisplayValidator2.optional().describe("Display settings for the profile."),
67930
67937
  highlightedCredentials: z2.array(z2.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
67931
67938
  role: z2.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
67932
- dob: z2.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
67939
+ dob: z2.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".'),
67940
+ country: z2.string().optional().describe("Country for the profile.")
67933
67941
  });
67934
67942
  var LCNProfileQueryValidator2 = z2.object({
67935
67943
  profileId: StringQuery2,
@@ -68011,7 +68019,7 @@ var BoostPermissionsQueryValidator2 = z2.object({
68011
68019
  canManageChildrenProfiles: z2.boolean(),
68012
68020
  canViewAnalytics: z2.boolean()
68013
68021
  }).partial();
68014
- var ClaimHookTypeValidator2 = z2.enum(["GRANT_PERMISSIONS", "ADD_ADMIN"]);
68022
+ var ClaimHookTypeValidator2 = z2.enum(["GRANT_PERMISSIONS", "ADD_ADMIN", "AUTO_CONNECT"]);
68015
68023
  var ClaimHookValidator2 = z2.discriminatedUnion("type", [
68016
68024
  z2.object({
68017
68025
  type: z2.literal(ClaimHookTypeValidator2.Values.GRANT_PERMISSIONS),
@@ -68024,6 +68032,10 @@ var ClaimHookValidator2 = z2.discriminatedUnion("type", [
68024
68032
  z2.object({
68025
68033
  type: z2.literal(ClaimHookTypeValidator2.Values.ADD_ADMIN),
68026
68034
  data: z2.object({ claimUri: z2.string(), targetUri: z2.string() })
68035
+ }),
68036
+ z2.object({
68037
+ type: z2.literal(ClaimHookTypeValidator2.Values.AUTO_CONNECT),
68038
+ data: z2.object({ claimUri: z2.string(), targetUri: z2.string() })
68027
68039
  })
68028
68040
  ]);
68029
68041
  var ClaimHookQueryValidator2 = z2.object({