@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.
- package/dist/idx-plugin.cjs.development.js +8 -2
- package/dist/idx-plugin.cjs.development.js.map +2 -2
- package/dist/idx-plugin.cjs.production.min.js +2 -2
- package/dist/idx-plugin.cjs.production.min.js.map +2 -2
- package/dist/idx-plugin.esm.js +8 -2
- package/dist/idx-plugin.esm.js.map +2 -2
- package/package.json +4 -4
package/dist/idx-plugin.esm.js
CHANGED
|
@@ -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,9 @@ 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."),
|
|
12057
|
+
approved: z.boolean().optional().describe("Approval status for the profile.")
|
|
12055
12058
|
});
|
|
12056
12059
|
var LCNProfileQueryValidator = z.object({
|
|
12057
12060
|
profileId: StringQuery,
|
|
@@ -67625,6 +67628,7 @@ var VerificationMethodValidator2 = z2.string().or(
|
|
|
67625
67628
|
controller: z2.string(),
|
|
67626
67629
|
publicKeyJwk: JWKValidator2.optional(),
|
|
67627
67630
|
publicKeyBase58: z2.string().optional(),
|
|
67631
|
+
publicKeyMultibase: z2.string().optional(),
|
|
67628
67632
|
blockChainAccountId: z2.string().optional()
|
|
67629
67633
|
}).catchall(z2.any())
|
|
67630
67634
|
);
|
|
@@ -67933,7 +67937,9 @@ var LCNProfileValidator2 = z2.object({
|
|
|
67933
67937
|
display: LCNProfileDisplayValidator2.optional().describe("Display settings for the profile."),
|
|
67934
67938
|
highlightedCredentials: z2.array(z2.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
|
|
67935
67939
|
role: z2.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
|
|
67936
|
-
dob: z2.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
|
|
67940
|
+
dob: z2.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".'),
|
|
67941
|
+
country: z2.string().optional().describe("Country for the profile."),
|
|
67942
|
+
approved: z2.boolean().optional().describe("Approval status for the profile.")
|
|
67937
67943
|
});
|
|
67938
67944
|
var LCNProfileQueryValidator2 = z2.object({
|
|
67939
67945
|
profileId: StringQuery2,
|