@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.
@@ -4872,12 +4872,12 @@ var require_types_cjs_development = __commonJS({
4872
4872
  var ConsentFlowContractValidator = z.object({
4873
4873
  read: z.object({
4874
4874
  anonymize: z.boolean().optional(),
4875
- credentials: z.object({ categories: z.record(z.object({ required: z.boolean() })).default({}) }).default({}),
4876
- personal: z.record(z.object({ required: z.boolean() })).default({})
4875
+ credentials: z.object({ categories: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({}) }).default({}),
4876
+ personal: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({})
4877
4877
  }).default({}),
4878
4878
  write: z.object({
4879
- credentials: z.object({ categories: z.record(z.object({ required: z.boolean() })).default({}) }).default({}),
4880
- personal: z.record(z.object({ required: z.boolean() })).default({})
4879
+ credentials: z.object({ categories: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({}) }).default({}),
4880
+ personal: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({})
4881
4881
  }).default({})
4882
4882
  });
4883
4883
  var ConsentFlowContractDetailsValidator = z.object({