@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
|
@@ -8056,6 +8056,7 @@ var getClient = /* @__PURE__ */ __name2(async (url, didAuthFunction) => {
|
|
|
8056
8056
|
methodOverride: "POST",
|
|
8057
8057
|
url,
|
|
8058
8058
|
maxURLLength: 3072,
|
|
8059
|
+
maxItems: 50,
|
|
8059
8060
|
headers: { Authorization: `Bearer ${await didAuthFunction()}` }
|
|
8060
8061
|
})
|
|
8061
8062
|
]
|
|
@@ -8072,6 +8073,7 @@ var getClient = /* @__PURE__ */ __name2(async (url, didAuthFunction) => {
|
|
|
8072
8073
|
httpBatchLink({
|
|
8073
8074
|
methodOverride: "POST",
|
|
8074
8075
|
url,
|
|
8076
|
+
maxItems: 50,
|
|
8075
8077
|
maxURLLength: 3072,
|
|
8076
8078
|
headers: async () => {
|
|
8077
8079
|
if (challenges.length === 0)
|
|
@@ -12462,6 +12464,7 @@ var require_types_cjs_development = __commonJS2({
|
|
|
12462
12464
|
controller: z2.string(),
|
|
12463
12465
|
publicKeyJwk: JWKValidator2.optional(),
|
|
12464
12466
|
publicKeyBase58: z2.string().optional(),
|
|
12467
|
+
publicKeyMultibase: z2.string().optional(),
|
|
12465
12468
|
blockChainAccountId: z2.string().optional()
|
|
12466
12469
|
}).catchall(z2.any())
|
|
12467
12470
|
);
|
|
@@ -12770,7 +12773,8 @@ var require_types_cjs_development = __commonJS2({
|
|
|
12770
12773
|
display: LCNProfileDisplayValidator2.optional().describe("Display settings for the profile."),
|
|
12771
12774
|
highlightedCredentials: z2.array(z2.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
|
|
12772
12775
|
role: z2.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
|
|
12773
|
-
dob: z2.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
|
|
12776
|
+
dob: z2.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".'),
|
|
12777
|
+
country: z2.string().optional().describe("Country for the profile.")
|
|
12774
12778
|
});
|
|
12775
12779
|
var LCNProfileQueryValidator2 = z2.object({
|
|
12776
12780
|
profileId: StringQuery2,
|
|
@@ -17485,6 +17489,7 @@ var VerificationMethodValidator = z.string().or(
|
|
|
17485
17489
|
controller: z.string(),
|
|
17486
17490
|
publicKeyJwk: JWKValidator.optional(),
|
|
17487
17491
|
publicKeyBase58: z.string().optional(),
|
|
17492
|
+
publicKeyMultibase: z.string().optional(),
|
|
17488
17493
|
blockChainAccountId: z.string().optional()
|
|
17489
17494
|
}).catchall(z.any())
|
|
17490
17495
|
);
|
|
@@ -17793,7 +17798,8 @@ var LCNProfileValidator = z.object({
|
|
|
17793
17798
|
display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
|
|
17794
17799
|
highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
|
|
17795
17800
|
role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
|
|
17796
|
-
dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
|
|
17801
|
+
dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".'),
|
|
17802
|
+
country: z.string().optional().describe("Country for the profile.")
|
|
17797
17803
|
});
|
|
17798
17804
|
var LCNProfileQueryValidator = z.object({
|
|
17799
17805
|
profileId: StringQuery,
|