@learncard/learn-cloud-plugin 2.1.42 → 2.1.44
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 +8 -2
- package/dist/learn-cloud-plugin.cjs.development.js.map +2 -2
- package/dist/learn-cloud-plugin.cjs.production.min.js +1 -1
- package/dist/learn-cloud-plugin.cjs.production.min.js.map +2 -2
- package/dist/learn-cloud-plugin.esm.js +8 -2
- package/dist/learn-cloud-plugin.esm.js.map +2 -2
- package/package.json +7 -7
|
@@ -8069,6 +8069,7 @@ var getClient = /* @__PURE__ */ __name2(async (url, didAuthFunction) => {
|
|
|
8069
8069
|
methodOverride: "POST",
|
|
8070
8070
|
url,
|
|
8071
8071
|
maxURLLength: 3072,
|
|
8072
|
+
maxItems: 50,
|
|
8072
8073
|
headers: { Authorization: `Bearer ${await didAuthFunction()}` }
|
|
8073
8074
|
})
|
|
8074
8075
|
]
|
|
@@ -8085,6 +8086,7 @@ var getClient = /* @__PURE__ */ __name2(async (url, didAuthFunction) => {
|
|
|
8085
8086
|
httpBatchLink({
|
|
8086
8087
|
methodOverride: "POST",
|
|
8087
8088
|
url,
|
|
8089
|
+
maxItems: 50,
|
|
8088
8090
|
maxURLLength: 3072,
|
|
8089
8091
|
headers: async () => {
|
|
8090
8092
|
if (challenges.length === 0)
|
|
@@ -12475,6 +12477,7 @@ var require_types_cjs_development = __commonJS2({
|
|
|
12475
12477
|
controller: z2.string(),
|
|
12476
12478
|
publicKeyJwk: JWKValidator2.optional(),
|
|
12477
12479
|
publicKeyBase58: z2.string().optional(),
|
|
12480
|
+
publicKeyMultibase: z2.string().optional(),
|
|
12478
12481
|
blockChainAccountId: z2.string().optional()
|
|
12479
12482
|
}).catchall(z2.any())
|
|
12480
12483
|
);
|
|
@@ -12783,7 +12786,8 @@ var require_types_cjs_development = __commonJS2({
|
|
|
12783
12786
|
display: LCNProfileDisplayValidator2.optional().describe("Display settings for the profile."),
|
|
12784
12787
|
highlightedCredentials: z2.array(z2.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
|
|
12785
12788
|
role: z2.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
|
|
12786
|
-
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.")
|
|
12787
12791
|
});
|
|
12788
12792
|
var LCNProfileQueryValidator2 = z2.object({
|
|
12789
12793
|
profileId: StringQuery2,
|
|
@@ -17498,6 +17502,7 @@ var VerificationMethodValidator = z.string().or(
|
|
|
17498
17502
|
controller: z.string(),
|
|
17499
17503
|
publicKeyJwk: JWKValidator.optional(),
|
|
17500
17504
|
publicKeyBase58: z.string().optional(),
|
|
17505
|
+
publicKeyMultibase: z.string().optional(),
|
|
17501
17506
|
blockChainAccountId: z.string().optional()
|
|
17502
17507
|
}).catchall(z.any())
|
|
17503
17508
|
);
|
|
@@ -17806,7 +17811,8 @@ var LCNProfileValidator = z.object({
|
|
|
17806
17811
|
display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
|
|
17807
17812
|
highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
|
|
17808
17813
|
role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
|
|
17809
|
-
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.")
|
|
17810
17816
|
});
|
|
17811
17817
|
var LCNProfileQueryValidator = z.object({
|
|
17812
17818
|
profileId: StringQuery,
|