@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
|
@@ -53918,7 +53918,8 @@ var ConsentFlowContractDetailsValidator = mod.object({
|
|
|
53918
53918
|
createdAt: mod.string(),
|
|
53919
53919
|
updatedAt: mod.string(),
|
|
53920
53920
|
expiresAt: mod.string().optional(),
|
|
53921
|
-
autoBoosts: mod.string().array().optional()
|
|
53921
|
+
autoBoosts: mod.string().array().optional(),
|
|
53922
|
+
writers: mod.array(LCNProfileValidator).optional()
|
|
53922
53923
|
});
|
|
53923
53924
|
var PaginatedConsentFlowContractsValidator = PaginationResponseValidator.extend({
|
|
53924
53925
|
records: ConsentFlowContractDetailsValidator.omit({ owner: true }).array()
|
|
@@ -53959,7 +53960,8 @@ var ConsentFlowTermsValidator = mod.object({
|
|
|
53959
53960
|
write: mod.object({
|
|
53960
53961
|
credentials: mod.object({ categories: mod.record(mod.boolean()).default({}) }).default({}),
|
|
53961
53962
|
personal: mod.record(mod.boolean()).default({})
|
|
53962
|
-
}).default({})
|
|
53963
|
+
}).default({}),
|
|
53964
|
+
deniedWriters: mod.array(mod.string()).optional()
|
|
53963
53965
|
});
|
|
53964
53966
|
var PaginatedConsentFlowTermsValidator = PaginationResponseValidator.extend({
|
|
53965
53967
|
records: mod.object({
|