@learncard/didkey-plugin 1.0.43 → 1.0.44

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.
@@ -4896,12 +4896,12 @@ var require_types_cjs_development = __commonJS({
4896
4896
  var ConsentFlowContractValidator = z.object({
4897
4897
  read: z.object({
4898
4898
  anonymize: z.boolean().optional(),
4899
- credentials: z.object({ categories: z.record(z.object({ required: z.boolean() })).default({}) }).default({}),
4900
- personal: z.record(z.object({ required: z.boolean() })).default({})
4899
+ credentials: z.object({ categories: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({}) }).default({}),
4900
+ personal: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({})
4901
4901
  }).default({}),
4902
4902
  write: z.object({
4903
- credentials: z.object({ categories: z.record(z.object({ required: z.boolean() })).default({}) }).default({}),
4904
- personal: z.record(z.object({ required: z.boolean() })).default({})
4903
+ credentials: z.object({ categories: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({}) }).default({}),
4904
+ personal: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({})
4905
4905
  }).default({})
4906
4906
  });
4907
4907
  var ConsentFlowContractDetailsValidator = z.object({