@learncard/ceramic-plugin 1.0.36 → 1.0.37
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/ceramic-plugin.cjs.development.js +4 -2
- package/dist/ceramic-plugin.cjs.development.js.map +2 -2
- package/dist/ceramic-plugin.cjs.production.min.js +18 -18
- package/dist/ceramic-plugin.cjs.production.min.js.map +2 -2
- package/dist/ceramic-plugin.esm.js +4 -2
- package/dist/ceramic-plugin.esm.js.map +2 -2
- package/package.json +4 -4
|
@@ -53922,7 +53922,8 @@ var ConsentFlowContractDetailsValidator = mod.object({
|
|
|
53922
53922
|
createdAt: mod.string(),
|
|
53923
53923
|
updatedAt: mod.string(),
|
|
53924
53924
|
expiresAt: mod.string().optional(),
|
|
53925
|
-
autoBoosts: mod.string().array().optional()
|
|
53925
|
+
autoBoosts: mod.string().array().optional(),
|
|
53926
|
+
writers: mod.array(LCNProfileValidator).optional()
|
|
53926
53927
|
});
|
|
53927
53928
|
var PaginatedConsentFlowContractsValidator = PaginationResponseValidator.extend({
|
|
53928
53929
|
records: ConsentFlowContractDetailsValidator.omit({ owner: true }).array()
|
|
@@ -53963,7 +53964,8 @@ var ConsentFlowTermsValidator = mod.object({
|
|
|
53963
53964
|
write: mod.object({
|
|
53964
53965
|
credentials: mod.object({ categories: mod.record(mod.boolean()).default({}) }).default({}),
|
|
53965
53966
|
personal: mod.record(mod.boolean()).default({})
|
|
53966
|
-
}).default({})
|
|
53967
|
+
}).default({}),
|
|
53968
|
+
deniedWriters: mod.array(mod.string()).optional()
|
|
53967
53969
|
});
|
|
53968
53970
|
var PaginatedConsentFlowTermsValidator = PaginationResponseValidator.extend({
|
|
53969
53971
|
records: mod.object({
|