@learncard/learn-card-plugin 1.1.50 → 1.1.51
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/dist/learn-card-plugin.cjs.development.js +4 -4
- package/dist/learn-card-plugin.cjs.development.js.map +2 -2
- package/dist/learn-card-plugin.cjs.production.min.js +1 -1
- package/dist/learn-card-plugin.cjs.production.min.js.map +2 -2
- package/dist/learn-card-plugin.esm.js +4 -4
- package/dist/learn-card-plugin.esm.js.map +2 -2
- package/package.json +4 -4
|
@@ -4642,12 +4642,12 @@ var ConsentFlowTermsStatusValidator = z.enum(["live", "stale", "withdrawn"]);
|
|
|
4642
4642
|
var ConsentFlowContractValidator = z.object({
|
|
4643
4643
|
read: z.object({
|
|
4644
4644
|
anonymize: z.boolean().optional(),
|
|
4645
|
-
credentials: z.object({ categories: z.record(z.object({ required: z.boolean() })).default({}) }).default({}),
|
|
4646
|
-
personal: z.record(z.object({ required: z.boolean() })).default({})
|
|
4645
|
+
credentials: z.object({ categories: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({}) }).default({}),
|
|
4646
|
+
personal: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({})
|
|
4647
4647
|
}).default({}),
|
|
4648
4648
|
write: z.object({
|
|
4649
|
-
credentials: z.object({ categories: z.record(z.object({ required: z.boolean() })).default({}) }).default({}),
|
|
4650
|
-
personal: z.record(z.object({ required: z.boolean() })).default({})
|
|
4649
|
+
credentials: z.object({ categories: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({}) }).default({}),
|
|
4650
|
+
personal: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({})
|
|
4651
4651
|
}).default({})
|
|
4652
4652
|
});
|
|
4653
4653
|
var ConsentFlowContractDetailsValidator = z.object({
|