@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.
@@ -4890,12 +4890,12 @@ var require_helpers_cjs_development = __commonJS({
4890
4890
  var ConsentFlowContractValidator = z.object({
4891
4891
  read: z.object({
4892
4892
  anonymize: z.boolean().optional(),
4893
- credentials: z.object({ categories: z.record(z.object({ required: z.boolean() })).default({}) }).default({}),
4894
- personal: z.record(z.object({ required: z.boolean() })).default({})
4893
+ credentials: z.object({ categories: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({}) }).default({}),
4894
+ personal: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({})
4895
4895
  }).default({}),
4896
4896
  write: z.object({
4897
- credentials: z.object({ categories: z.record(z.object({ required: z.boolean() })).default({}) }).default({}),
4898
- personal: z.record(z.object({ required: z.boolean() })).default({})
4897
+ credentials: z.object({ categories: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({}) }).default({}),
4898
+ personal: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({})
4899
4899
  }).default({})
4900
4900
  });
4901
4901
  var ConsentFlowContractDetailsValidator = z.object({