@learncard/network-brain-client 2.5.15 → 2.5.16
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 +7 -0
- package/dist/brain-client.cjs.development.js +6 -2
- 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 +6 -2
- package/dist/brain-client.esm.js.map +2 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @learncard/network-brain-client
|
|
2
2
|
|
|
3
|
+
## 2.5.16
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`495f2939cb6e4271cab0a88abea5105fb7e4f9b6`](https://github.com/learningeconomy/LearnCard/commit/495f2939cb6e4271cab0a88abea5105fb7e4f9b6), [`08a1c8a07501c2f426d16239c4b0551e518a7ed5`](https://github.com/learningeconomy/LearnCard/commit/08a1c8a07501c2f426d16239c4b0551e518a7ed5), [`f82707268adc17496b70cbcda5acb3d9750d8849`](https://github.com/learningeconomy/LearnCard/commit/f82707268adc17496b70cbcda5acb3d9750d8849), [`370d75b1f7095aade140bf63cc71f7168be3ba7b`](https://github.com/learningeconomy/LearnCard/commit/370d75b1f7095aade140bf63cc71f7168be3ba7b)]:
|
|
8
|
+
- @learncard/network-brain-service@3.12.0
|
|
9
|
+
|
|
3
10
|
## 2.5.15
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -15410,6 +15410,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
15410
15410
|
description: external_exports.string().optional(),
|
|
15411
15411
|
image: external_exports.string().optional(),
|
|
15412
15412
|
sourceURI: external_exports.string().url().optional(),
|
|
15413
|
+
isPublic: external_exports.boolean().default(false),
|
|
15413
15414
|
status: SkillFrameworkStatusEnum.default("active"),
|
|
15414
15415
|
createdAt: external_exports.string().optional(),
|
|
15415
15416
|
updatedAt: external_exports.string().optional()
|
|
@@ -15448,6 +15449,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
15448
15449
|
description: external_exports.string().optional(),
|
|
15449
15450
|
image: external_exports.string().optional(),
|
|
15450
15451
|
sourceURI: external_exports.string().url().optional(),
|
|
15452
|
+
isPublic: external_exports.boolean().optional(),
|
|
15451
15453
|
status: SkillFrameworkStatusEnum.optional(),
|
|
15452
15454
|
skills: external_exports.array(SkillTreeNodeInputValidator).optional(),
|
|
15453
15455
|
boostUris: external_exports.array(external_exports.string()).optional()
|
|
@@ -15458,9 +15460,10 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
15458
15460
|
description: external_exports.string().optional(),
|
|
15459
15461
|
image: external_exports.string().optional(),
|
|
15460
15462
|
sourceURI: external_exports.string().url().optional(),
|
|
15463
|
+
isPublic: external_exports.boolean().optional(),
|
|
15461
15464
|
status: SkillFrameworkStatusEnum.optional()
|
|
15462
15465
|
}).refine(
|
|
15463
|
-
(data) => data.name !== void 0 || data.description !== void 0 || data.image !== void 0 || data.sourceURI !== void 0 || data.status !== void 0,
|
|
15466
|
+
(data) => data.name !== void 0 || data.description !== void 0 || data.image !== void 0 || data.sourceURI !== void 0 || data.isPublic !== void 0 || data.status !== void 0,
|
|
15464
15467
|
{
|
|
15465
15468
|
message: "At least one field must be provided to update",
|
|
15466
15469
|
path: ["name"]
|
|
@@ -15640,7 +15643,8 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
15640
15643
|
"claim",
|
|
15641
15644
|
"inbox",
|
|
15642
15645
|
"claimLink",
|
|
15643
|
-
"acceptCredential"
|
|
15646
|
+
"acceptCredential",
|
|
15647
|
+
"appEvent"
|
|
15644
15648
|
]);
|
|
15645
15649
|
var CredentialActivityValidator = external_exports.object({
|
|
15646
15650
|
id: external_exports.string(),
|