@learncard/learn-cloud-plugin 2.1.43 → 2.2.0
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/learn-cloud-plugin.cjs.development.js +6 -2
- package/dist/learn-cloud-plugin.cjs.development.js.map +2 -2
- package/dist/learn-cloud-plugin.cjs.production.min.js +6 -6
- package/dist/learn-cloud-plugin.cjs.production.min.js.map +2 -2
- package/dist/learn-cloud-plugin.esm.js +6 -2
- package/dist/learn-cloud-plugin.esm.js.map +2 -2
- package/dist/plugin.d.ts.map +1 -1
- package/package.json +7 -7
|
@@ -12477,6 +12477,7 @@ var require_types_cjs_development = __commonJS2({
|
|
|
12477
12477
|
controller: z2.string(),
|
|
12478
12478
|
publicKeyJwk: JWKValidator2.optional(),
|
|
12479
12479
|
publicKeyBase58: z2.string().optional(),
|
|
12480
|
+
publicKeyMultibase: z2.string().optional(),
|
|
12480
12481
|
blockChainAccountId: z2.string().optional()
|
|
12481
12482
|
}).catchall(z2.any())
|
|
12482
12483
|
);
|
|
@@ -12785,7 +12786,8 @@ var require_types_cjs_development = __commonJS2({
|
|
|
12785
12786
|
display: LCNProfileDisplayValidator2.optional().describe("Display settings for the profile."),
|
|
12786
12787
|
highlightedCredentials: z2.array(z2.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
|
|
12787
12788
|
role: z2.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
|
|
12788
|
-
dob: z2.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
|
|
12789
|
+
dob: z2.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".'),
|
|
12790
|
+
country: z2.string().optional().describe("Country for the profile.")
|
|
12789
12791
|
});
|
|
12790
12792
|
var LCNProfileQueryValidator2 = z2.object({
|
|
12791
12793
|
profileId: StringQuery2,
|
|
@@ -17500,6 +17502,7 @@ var VerificationMethodValidator = z.string().or(
|
|
|
17500
17502
|
controller: z.string(),
|
|
17501
17503
|
publicKeyJwk: JWKValidator.optional(),
|
|
17502
17504
|
publicKeyBase58: z.string().optional(),
|
|
17505
|
+
publicKeyMultibase: z.string().optional(),
|
|
17503
17506
|
blockChainAccountId: z.string().optional()
|
|
17504
17507
|
}).catchall(z.any())
|
|
17505
17508
|
);
|
|
@@ -17808,7 +17811,8 @@ var LCNProfileValidator = z.object({
|
|
|
17808
17811
|
display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
|
|
17809
17812
|
highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
|
|
17810
17813
|
role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
|
|
17811
|
-
dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
|
|
17814
|
+
dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".'),
|
|
17815
|
+
country: z.string().optional().describe("Country for the profile.")
|
|
17812
17816
|
});
|
|
17813
17817
|
var LCNProfileQueryValidator = z.object({
|
|
17814
17818
|
profileId: StringQuery,
|