@learncard/network-brain-client 2.5.13 → 2.5.15
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/CHANGELOG.md +14 -0
- package/dist/brain-client.cjs.development.js +9 -1
- package/dist/brain-client.cjs.development.js.map +2 -2
- package/dist/brain-client.cjs.production.min.js +1 -1
- package/dist/brain-client.cjs.production.min.js.map +2 -2
- package/dist/brain-client.esm.js +9 -1
- package/dist/brain-client.esm.js.map +2 -2
- package/package.json +4 -4
- package/scripts/build.mjs +2 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @learncard/network-brain-client
|
|
2
2
|
|
|
3
|
+
## 2.5.15
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`f5a9c0bdd87a073f3e9ac575538cdbdcaa48e58e`](https://github.com/learningeconomy/LearnCard/commit/f5a9c0bdd87a073f3e9ac575538cdbdcaa48e58e), [`caf231b53707174ea49f0eb2b65885a36b3e7228`](https://github.com/learningeconomy/LearnCard/commit/caf231b53707174ea49f0eb2b65885a36b3e7228)]:
|
|
8
|
+
- @learncard/network-brain-service@3.11.3
|
|
9
|
+
|
|
10
|
+
## 2.5.14
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`d73ec6ef3f41f5eb53dc4ce43e6ceff94eccb556`](https://github.com/learningeconomy/LearnCard/commit/d73ec6ef3f41f5eb53dc4ce43e6ceff94eccb556), [`5b76830d328bd38b4f184458414ef478c9cc118a`](https://github.com/learningeconomy/LearnCard/commit/5b76830d328bd38b4f184458414ef478c9cc118a), [`758d92b1f247c539905ae5a761fdce366fa8a52d`](https://github.com/learningeconomy/LearnCard/commit/758d92b1f247c539905ae5a761fdce366fa8a52d)]:
|
|
15
|
+
- @learncard/network-brain-service@3.11.2
|
|
16
|
+
|
|
3
17
|
## 2.5.13
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -14644,6 +14644,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
14644
14644
|
});
|
|
14645
14645
|
var BoostPermissionsValidator = external_exports.object({
|
|
14646
14646
|
role: external_exports.string(),
|
|
14647
|
+
canView: external_exports.boolean().default(true),
|
|
14647
14648
|
canEdit: external_exports.boolean(),
|
|
14648
14649
|
canIssue: external_exports.boolean(),
|
|
14649
14650
|
canRevoke: external_exports.boolean(),
|
|
@@ -14658,6 +14659,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
14658
14659
|
});
|
|
14659
14660
|
var BoostPermissionsQueryValidator = external_exports.object({
|
|
14660
14661
|
role: StringQuery,
|
|
14662
|
+
canView: external_exports.boolean(),
|
|
14661
14663
|
canEdit: external_exports.boolean(),
|
|
14662
14664
|
canIssue: external_exports.boolean(),
|
|
14663
14665
|
canRevoke: external_exports.boolean(),
|
|
@@ -14783,7 +14785,13 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
14783
14785
|
var SendBoostTemplateValidator = BoostValidator.partial().omit({ uri: true, claimPermissions: true }).extend({
|
|
14784
14786
|
credential: VCValidator.or(UnsignedVCValidator),
|
|
14785
14787
|
claimPermissions: BoostPermissionsValidator.partial().optional(),
|
|
14786
|
-
skills: external_exports.array(
|
|
14788
|
+
skills: external_exports.array(
|
|
14789
|
+
external_exports.object({
|
|
14790
|
+
frameworkId: external_exports.string(),
|
|
14791
|
+
id: external_exports.string(),
|
|
14792
|
+
proficiencyLevel: external_exports.number().optional()
|
|
14793
|
+
})
|
|
14794
|
+
).min(1).optional()
|
|
14787
14795
|
});
|
|
14788
14796
|
var SendBrandingOptionsValidator = external_exports.object({
|
|
14789
14797
|
issuerName: external_exports.string().optional().describe("Name of the issuing organization"),
|