@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
|
@@ -53724,7 +53724,9 @@ var LCNProfileValidator = mod.object({
|
|
|
53724
53724
|
isServiceProfile: mod.boolean().default(false).optional(),
|
|
53725
53725
|
type: mod.string().optional(),
|
|
53726
53726
|
notificationsWebhook: mod.string().url().startsWith("http").optional(),
|
|
53727
|
-
display: LCNProfileDisplayValidator.optional()
|
|
53727
|
+
display: LCNProfileDisplayValidator.optional(),
|
|
53728
|
+
role: mod.string().default("").optional(),
|
|
53729
|
+
dob: mod.string().default("").optional()
|
|
53728
53730
|
});
|
|
53729
53731
|
var LCNProfileQueryValidator = mod.object({
|
|
53730
53732
|
profileId: StringQuery,
|
|
@@ -53920,7 +53922,8 @@ var ConsentFlowContractDetailsValidator = mod.object({
|
|
|
53920
53922
|
createdAt: mod.string(),
|
|
53921
53923
|
updatedAt: mod.string(),
|
|
53922
53924
|
expiresAt: mod.string().optional(),
|
|
53923
|
-
autoBoosts: mod.string().array().optional()
|
|
53925
|
+
autoBoosts: mod.string().array().optional(),
|
|
53926
|
+
writers: mod.array(LCNProfileValidator).optional()
|
|
53924
53927
|
});
|
|
53925
53928
|
var PaginatedConsentFlowContractsValidator = PaginationResponseValidator.extend({
|
|
53926
53929
|
records: ConsentFlowContractDetailsValidator.omit({ owner: true }).array()
|
|
@@ -53961,7 +53964,8 @@ var ConsentFlowTermsValidator = mod.object({
|
|
|
53961
53964
|
write: mod.object({
|
|
53962
53965
|
credentials: mod.object({ categories: mod.record(mod.boolean()).default({}) }).default({}),
|
|
53963
53966
|
personal: mod.record(mod.boolean()).default({})
|
|
53964
|
-
}).default({})
|
|
53967
|
+
}).default({}),
|
|
53968
|
+
deniedWriters: mod.array(mod.string()).optional()
|
|
53965
53969
|
});
|
|
53966
53970
|
var PaginatedConsentFlowTermsValidator = PaginationResponseValidator.extend({
|
|
53967
53971
|
records: mod.object({
|