@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.
@@ -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,
@@ -12139,7 +12141,7 @@ var BoostPermissionsQueryValidator = z.object({
12139
12141
  canManageChildrenProfiles: z.boolean(),
12140
12142
  canViewAnalytics: z.boolean()
12141
12143
  }).partial();
12142
- var ClaimHookTypeValidator = z.enum(["GRANT_PERMISSIONS", "ADD_ADMIN"]);
12144
+ var ClaimHookTypeValidator = z.enum(["GRANT_PERMISSIONS", "ADD_ADMIN", "AUTO_CONNECT"]);
12143
12145
  var ClaimHookValidator = z.discriminatedUnion("type", [
12144
12146
  z.object({
12145
12147
  type: z.literal(ClaimHookTypeValidator.Values.GRANT_PERMISSIONS),
@@ -12152,6 +12154,10 @@ var ClaimHookValidator = z.discriminatedUnion("type", [
12152
12154
  z.object({
12153
12155
  type: z.literal(ClaimHookTypeValidator.Values.ADD_ADMIN),
12154
12156
  data: z.object({ claimUri: z.string(), targetUri: z.string() })
12157
+ }),
12158
+ z.object({
12159
+ type: z.literal(ClaimHookTypeValidator.Values.AUTO_CONNECT),
12160
+ data: z.object({ claimUri: z.string(), targetUri: z.string() })
12155
12161
  })
12156
12162
  ]);
12157
12163
  var ClaimHookQueryValidator = z.object({
@@ -67627,6 +67633,7 @@ var VerificationMethodValidator2 = z2.string().or(
67627
67633
  controller: z2.string(),
67628
67634
  publicKeyJwk: JWKValidator2.optional(),
67629
67635
  publicKeyBase58: z2.string().optional(),
67636
+ publicKeyMultibase: z2.string().optional(),
67630
67637
  blockChainAccountId: z2.string().optional()
67631
67638
  }).catchall(z2.any())
67632
67639
  );
@@ -67935,7 +67942,8 @@ var LCNProfileValidator2 = z2.object({
67935
67942
  display: LCNProfileDisplayValidator2.optional().describe("Display settings for the profile."),
67936
67943
  highlightedCredentials: z2.array(z2.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
67937
67944
  role: z2.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
67938
- 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.")
67939
67947
  });
67940
67948
  var LCNProfileQueryValidator2 = z2.object({
67941
67949
  profileId: StringQuery2,
@@ -68017,7 +68025,7 @@ var BoostPermissionsQueryValidator2 = z2.object({
68017
68025
  canManageChildrenProfiles: z2.boolean(),
68018
68026
  canViewAnalytics: z2.boolean()
68019
68027
  }).partial();
68020
- var ClaimHookTypeValidator2 = z2.enum(["GRANT_PERMISSIONS", "ADD_ADMIN"]);
68028
+ var ClaimHookTypeValidator2 = z2.enum(["GRANT_PERMISSIONS", "ADD_ADMIN", "AUTO_CONNECT"]);
68021
68029
  var ClaimHookValidator2 = z2.discriminatedUnion("type", [
68022
68030
  z2.object({
68023
68031
  type: z2.literal(ClaimHookTypeValidator2.Values.GRANT_PERMISSIONS),
@@ -68030,6 +68038,10 @@ var ClaimHookValidator2 = z2.discriminatedUnion("type", [
68030
68038
  z2.object({
68031
68039
  type: z2.literal(ClaimHookTypeValidator2.Values.ADD_ADMIN),
68032
68040
  data: z2.object({ claimUri: z2.string(), targetUri: z2.string() })
68041
+ }),
68042
+ z2.object({
68043
+ type: z2.literal(ClaimHookTypeValidator2.Values.AUTO_CONNECT),
68044
+ data: z2.object({ claimUri: z2.string(), targetUri: z2.string() })
68033
68045
  })
68034
68046
  ]);
68035
68047
  var ClaimHookQueryValidator2 = z2.object({