@learncard/didkey-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/didkey-plugin.cjs.development.js +7 -3
- package/dist/didkey-plugin.cjs.development.js.map +2 -2
- package/dist/didkey-plugin.cjs.production.min.js +1 -1
- package/dist/didkey-plugin.cjs.production.min.js.map +2 -2
- package/dist/didkey-plugin.esm.js +7 -3
- package/dist/didkey-plugin.esm.js.map +2 -2
- package/package.json +4 -4
@@ -4027,7 +4027,9 @@ var require_types_cjs_development = __commonJS({
|
|
4027
4027
|
isServiceProfile: mod.boolean().default(false).optional(),
|
4028
4028
|
type: mod.string().optional(),
|
4029
4029
|
notificationsWebhook: mod.string().url().startsWith("http").optional(),
|
4030
|
-
display: LCNProfileDisplayValidator.optional()
|
4030
|
+
display: LCNProfileDisplayValidator.optional(),
|
4031
|
+
role: mod.string().default("").optional(),
|
4032
|
+
dob: mod.string().default("").optional()
|
4031
4033
|
});
|
4032
4034
|
var LCNProfileQueryValidator = mod.object({
|
4033
4035
|
profileId: StringQuery,
|
@@ -4223,7 +4225,8 @@ var require_types_cjs_development = __commonJS({
|
|
4223
4225
|
createdAt: mod.string(),
|
4224
4226
|
updatedAt: mod.string(),
|
4225
4227
|
expiresAt: mod.string().optional(),
|
4226
|
-
autoBoosts: mod.string().array().optional()
|
4228
|
+
autoBoosts: mod.string().array().optional(),
|
4229
|
+
writers: mod.array(LCNProfileValidator).optional()
|
4227
4230
|
});
|
4228
4231
|
var PaginatedConsentFlowContractsValidator = PaginationResponseValidator.extend({
|
4229
4232
|
records: ConsentFlowContractDetailsValidator.omit({ owner: true }).array()
|
@@ -4264,7 +4267,8 @@ var require_types_cjs_development = __commonJS({
|
|
4264
4267
|
write: mod.object({
|
4265
4268
|
credentials: mod.object({ categories: mod.record(mod.boolean()).default({}) }).default({}),
|
4266
4269
|
personal: mod.record(mod.boolean()).default({})
|
4267
|
-
}).default({})
|
4270
|
+
}).default({}),
|
4271
|
+
deniedWriters: mod.array(mod.string()).optional()
|
4268
4272
|
});
|
4269
4273
|
var PaginatedConsentFlowTermsValidator = PaginationResponseValidator.extend({
|
4270
4274
|
records: mod.object({
|