@learncard/ceramic-plugin 1.0.35 → 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 +7 -3
- 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 +7 -3
- package/dist/ceramic-plugin.esm.js.map +2 -2
- package/package.json +4 -4
|
@@ -53720,7 +53720,9 @@ var LCNProfileValidator = mod.object({
|
|
|
53720
53720
|
isServiceProfile: mod.boolean().default(false).optional(),
|
|
53721
53721
|
type: mod.string().optional(),
|
|
53722
53722
|
notificationsWebhook: mod.string().url().startsWith("http").optional(),
|
|
53723
|
-
display: LCNProfileDisplayValidator.optional()
|
|
53723
|
+
display: LCNProfileDisplayValidator.optional(),
|
|
53724
|
+
role: mod.string().default("").optional(),
|
|
53725
|
+
dob: mod.string().default("").optional()
|
|
53724
53726
|
});
|
|
53725
53727
|
var LCNProfileQueryValidator = mod.object({
|
|
53726
53728
|
profileId: StringQuery,
|
|
@@ -53916,7 +53918,8 @@ var ConsentFlowContractDetailsValidator = mod.object({
|
|
|
53916
53918
|
createdAt: mod.string(),
|
|
53917
53919
|
updatedAt: mod.string(),
|
|
53918
53920
|
expiresAt: mod.string().optional(),
|
|
53919
|
-
autoBoosts: mod.string().array().optional()
|
|
53921
|
+
autoBoosts: mod.string().array().optional(),
|
|
53922
|
+
writers: mod.array(LCNProfileValidator).optional()
|
|
53920
53923
|
});
|
|
53921
53924
|
var PaginatedConsentFlowContractsValidator = PaginationResponseValidator.extend({
|
|
53922
53925
|
records: ConsentFlowContractDetailsValidator.omit({ owner: true }).array()
|
|
@@ -53957,7 +53960,8 @@ var ConsentFlowTermsValidator = mod.object({
|
|
|
53957
53960
|
write: mod.object({
|
|
53958
53961
|
credentials: mod.object({ categories: mod.record(mod.boolean()).default({}) }).default({}),
|
|
53959
53962
|
personal: mod.record(mod.boolean()).default({})
|
|
53960
|
-
}).default({})
|
|
53963
|
+
}).default({}),
|
|
53964
|
+
deniedWriters: mod.array(mod.string()).optional()
|
|
53961
53965
|
});
|
|
53962
53966
|
var PaginatedConsentFlowTermsValidator = PaginationResponseValidator.extend({
|
|
53963
53967
|
records: mod.object({
|