@learncard/network-brain-client 2.3.13 → 2.3.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 CHANGED
@@ -1,5 +1,19 @@
1
1
  # @learncard/network-brain-client
2
2
 
3
+ ## 2.3.15
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`dd5bfff7d94670f43e53d6e7c86a6fd3f80d92b8`](https://github.com/learningeconomy/LearnCard/commit/dd5bfff7d94670f43e53d6e7c86a6fd3f80d92b8), [`dd5bfff7d94670f43e53d6e7c86a6fd3f80d92b8`](https://github.com/learningeconomy/LearnCard/commit/dd5bfff7d94670f43e53d6e7c86a6fd3f80d92b8)]:
8
+ - @learncard/network-brain-service@3.5.9
9
+
10
+ ## 2.3.14
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies []:
15
+ - @learncard/network-brain-service@3.5.8
16
+
3
17
  ## 2.3.13
4
18
 
5
19
  ### Patch Changes
@@ -4895,12 +4895,12 @@ var require_helpers_cjs_development = __commonJS({
4895
4895
  var ConsentFlowContractValidator = z.object({
4896
4896
  read: z.object({
4897
4897
  anonymize: z.boolean().optional(),
4898
- credentials: z.object({ categories: z.record(z.object({ required: z.boolean() })).default({}) }).default({}),
4899
- personal: z.record(z.object({ required: z.boolean() })).default({})
4898
+ credentials: z.object({ categories: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({}) }).default({}),
4899
+ personal: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({})
4900
4900
  }).default({}),
4901
4901
  write: z.object({
4902
- credentials: z.object({ categories: z.record(z.object({ required: z.boolean() })).default({}) }).default({}),
4903
- personal: z.record(z.object({ required: z.boolean() })).default({})
4902
+ credentials: z.object({ categories: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({}) }).default({}),
4903
+ personal: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({})
4904
4904
  }).default({})
4905
4905
  });
4906
4906
  var ConsentFlowContractDetailsValidator = z.object({