@learncard/network-brain-client 2.2.29 → 2.2.31
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 +7 -3
- 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 +3 -3
- package/dist/brain-client.esm.js +7 -3
- package/dist/brain-client.esm.js.map +2 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @learncard/network-brain-client
|
|
2
2
|
|
|
3
|
+
## 2.2.31
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`319bd3a589e3529d162825d8f6b97268c44060f4`](https://github.com/learningeconomy/LearnCard/commit/319bd3a589e3529d162825d8f6b97268c44060f4), [`319bd3a589e3529d162825d8f6b97268c44060f4`](https://github.com/learningeconomy/LearnCard/commit/319bd3a589e3529d162825d8f6b97268c44060f4)]:
|
|
8
|
+
- @learncard/network-brain-service@3.3.30
|
|
9
|
+
|
|
10
|
+
## 2.2.30
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`ef22869f9e9b99200e46cbd82dfc4c41558afcd1`](https://github.com/learningeconomy/LearnCard/commit/ef22869f9e9b99200e46cbd82dfc4c41558afcd1)]:
|
|
15
|
+
- @learncard/network-brain-service@3.3.29
|
|
16
|
+
|
|
3
17
|
## 2.2.29
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -4026,7 +4026,9 @@ var require_helpers_cjs_development = __commonJS({
|
|
|
4026
4026
|
isServiceProfile: mod.boolean().default(false).optional(),
|
|
4027
4027
|
type: mod.string().optional(),
|
|
4028
4028
|
notificationsWebhook: mod.string().url().startsWith("http").optional(),
|
|
4029
|
-
display: LCNProfileDisplayValidator.optional()
|
|
4029
|
+
display: LCNProfileDisplayValidator.optional(),
|
|
4030
|
+
role: mod.string().default("").optional(),
|
|
4031
|
+
dob: mod.string().default("").optional()
|
|
4030
4032
|
});
|
|
4031
4033
|
var LCNProfileQueryValidator = mod.object({
|
|
4032
4034
|
profileId: StringQuery,
|
|
@@ -4222,7 +4224,8 @@ var require_helpers_cjs_development = __commonJS({
|
|
|
4222
4224
|
createdAt: mod.string(),
|
|
4223
4225
|
updatedAt: mod.string(),
|
|
4224
4226
|
expiresAt: mod.string().optional(),
|
|
4225
|
-
autoBoosts: mod.string().array().optional()
|
|
4227
|
+
autoBoosts: mod.string().array().optional(),
|
|
4228
|
+
writers: mod.array(LCNProfileValidator).optional()
|
|
4226
4229
|
});
|
|
4227
4230
|
var PaginatedConsentFlowContractsValidator = PaginationResponseValidator.extend({
|
|
4228
4231
|
records: ConsentFlowContractDetailsValidator.omit({ owner: true }).array()
|
|
@@ -4263,7 +4266,8 @@ var require_helpers_cjs_development = __commonJS({
|
|
|
4263
4266
|
write: mod.object({
|
|
4264
4267
|
credentials: mod.object({ categories: mod.record(mod.boolean()).default({}) }).default({}),
|
|
4265
4268
|
personal: mod.record(mod.boolean()).default({})
|
|
4266
|
-
}).default({})
|
|
4269
|
+
}).default({}),
|
|
4270
|
+
deniedWriters: mod.array(mod.string()).optional()
|
|
4267
4271
|
});
|
|
4268
4272
|
var PaginatedConsentFlowTermsValidator = PaginationResponseValidator.extend({
|
|
4269
4273
|
records: mod.object({
|