@learncard/idx-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.
@@ -12225,12 +12225,12 @@ var ConsentFlowTermsStatusValidator = z.enum(["live", "stale", "withdrawn"]);
12225
12225
  var ConsentFlowContractValidator = z.object({
12226
12226
  read: z.object({
12227
12227
  anonymize: z.boolean().optional(),
12228
- credentials: z.object({ categories: z.record(z.object({ required: z.boolean() })).default({}) }).default({}),
12229
- personal: z.record(z.object({ required: z.boolean() })).default({})
12228
+ credentials: z.object({ categories: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({}) }).default({}),
12229
+ personal: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({})
12230
12230
  }).default({}),
12231
12231
  write: z.object({
12232
- credentials: z.object({ categories: z.record(z.object({ required: z.boolean() })).default({}) }).default({}),
12233
- personal: z.record(z.object({ required: z.boolean() })).default({})
12232
+ credentials: z.object({ categories: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({}) }).default({}),
12233
+ personal: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({})
12234
12234
  }).default({})
12235
12235
  });
12236
12236
  var ConsentFlowContractDetailsValidator = z.object({
@@ -68088,12 +68088,12 @@ var ConsentFlowTermsStatusValidator2 = z2.enum(["live", "stale", "withdrawn"]);
68088
68088
  var ConsentFlowContractValidator2 = z2.object({
68089
68089
  read: z2.object({
68090
68090
  anonymize: z2.boolean().optional(),
68091
- credentials: z2.object({ categories: z2.record(z2.object({ required: z2.boolean() })).default({}) }).default({}),
68092
- personal: z2.record(z2.object({ required: z2.boolean() })).default({})
68091
+ credentials: z2.object({ categories: z2.record(z2.object({ required: z2.boolean(), defaultEnabled: z2.boolean().optional() })).default({}) }).default({}),
68092
+ personal: z2.record(z2.object({ required: z2.boolean(), defaultEnabled: z2.boolean().optional() })).default({})
68093
68093
  }).default({}),
68094
68094
  write: z2.object({
68095
- credentials: z2.object({ categories: z2.record(z2.object({ required: z2.boolean() })).default({}) }).default({}),
68096
- personal: z2.record(z2.object({ required: z2.boolean() })).default({})
68095
+ credentials: z2.object({ categories: z2.record(z2.object({ required: z2.boolean(), defaultEnabled: z2.boolean().optional() })).default({}) }).default({}),
68096
+ personal: z2.record(z2.object({ required: z2.boolean(), defaultEnabled: z2.boolean().optional() })).default({})
68097
68097
  }).default({})
68098
68098
  });
68099
68099
  var ConsentFlowContractDetailsValidator2 = z2.object({