@learncard/idx-plugin 1.0.42 → 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.
- package/dist/idx-plugin.cjs.development.js +8 -8
- package/dist/idx-plugin.cjs.development.js.map +2 -2
- package/dist/idx-plugin.cjs.production.min.js +2 -2
- package/dist/idx-plugin.cjs.production.min.js.map +2 -2
- package/dist/idx-plugin.esm.js +8 -8
- package/dist/idx-plugin.esm.js.map +2 -2
- package/package.json +4 -4
|
@@ -12231,12 +12231,12 @@ var ConsentFlowTermsStatusValidator = z.enum(["live", "stale", "withdrawn"]);
|
|
|
12231
12231
|
var ConsentFlowContractValidator = z.object({
|
|
12232
12232
|
read: z.object({
|
|
12233
12233
|
anonymize: z.boolean().optional(),
|
|
12234
|
-
credentials: z.object({ categories: z.record(z.object({ required: z.boolean() })).default({}) }).default({}),
|
|
12235
|
-
personal: z.record(z.object({ required: z.boolean() })).default({})
|
|
12234
|
+
credentials: z.object({ categories: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({}) }).default({}),
|
|
12235
|
+
personal: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({})
|
|
12236
12236
|
}).default({}),
|
|
12237
12237
|
write: z.object({
|
|
12238
|
-
credentials: z.object({ categories: z.record(z.object({ required: z.boolean() })).default({}) }).default({}),
|
|
12239
|
-
personal: z.record(z.object({ required: z.boolean() })).default({})
|
|
12238
|
+
credentials: z.object({ categories: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({}) }).default({}),
|
|
12239
|
+
personal: z.record(z.object({ required: z.boolean(), defaultEnabled: z.boolean().optional() })).default({})
|
|
12240
12240
|
}).default({})
|
|
12241
12241
|
});
|
|
12242
12242
|
var ConsentFlowContractDetailsValidator = z.object({
|
|
@@ -68094,12 +68094,12 @@ var ConsentFlowTermsStatusValidator2 = z2.enum(["live", "stale", "withdrawn"]);
|
|
|
68094
68094
|
var ConsentFlowContractValidator2 = z2.object({
|
|
68095
68095
|
read: z2.object({
|
|
68096
68096
|
anonymize: z2.boolean().optional(),
|
|
68097
|
-
credentials: z2.object({ categories: z2.record(z2.object({ required: z2.boolean() })).default({}) }).default({}),
|
|
68098
|
-
personal: z2.record(z2.object({ required: z2.boolean() })).default({})
|
|
68097
|
+
credentials: z2.object({ categories: z2.record(z2.object({ required: z2.boolean(), defaultEnabled: z2.boolean().optional() })).default({}) }).default({}),
|
|
68098
|
+
personal: z2.record(z2.object({ required: z2.boolean(), defaultEnabled: z2.boolean().optional() })).default({})
|
|
68099
68099
|
}).default({}),
|
|
68100
68100
|
write: z2.object({
|
|
68101
|
-
credentials: z2.object({ categories: z2.record(z2.object({ required: z2.boolean() })).default({}) }).default({}),
|
|
68102
|
-
personal: z2.record(z2.object({ required: z2.boolean() })).default({})
|
|
68101
|
+
credentials: z2.object({ categories: z2.record(z2.object({ required: z2.boolean(), defaultEnabled: z2.boolean().optional() })).default({}) }).default({}),
|
|
68102
|
+
personal: z2.record(z2.object({ required: z2.boolean(), defaultEnabled: z2.boolean().optional() })).default({})
|
|
68103
68103
|
}).default({})
|
|
68104
68104
|
});
|
|
68105
68105
|
var ConsentFlowContractDetailsValidator2 = z2.object({
|