@learncard/didkey-plugin 1.0.13 → 1.0.15
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/didkey-plugin.cjs.development.js +14 -0
- 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 +3 -3
- package/dist/didkey-plugin.esm.js +14 -0
- package/dist/didkey-plugin.esm.js.map +2 -2
- package/package.json +4 -4
@@ -92,6 +92,7 @@ var require_types_cjs_development = __commonJS({
|
|
92
92
|
AddressValidator: () => AddressValidator,
|
93
93
|
AlignmentTargetTypeValidator: () => AlignmentTargetTypeValidator,
|
94
94
|
AlignmentValidator: () => AlignmentValidator,
|
95
|
+
BoostPermissionsValidator: () => BoostPermissionsValidator,
|
95
96
|
BoostRecipientValidator: () => BoostRecipientValidator,
|
96
97
|
BoostValidator: () => BoostValidator,
|
97
98
|
ConsentFlowContractDataValidator: () => ConsentFlowContractDataValidator,
|
@@ -3986,6 +3987,19 @@ var require_types_cjs_development = __commonJS({
|
|
3986
3987
|
ttlSeconds: mod.number().optional(),
|
3987
3988
|
totalUses: mod.number().optional()
|
3988
3989
|
});
|
3990
|
+
var BoostPermissionsValidator = mod.object({
|
3991
|
+
role: mod.string(),
|
3992
|
+
canEdit: mod.boolean(),
|
3993
|
+
canIssue: mod.boolean(),
|
3994
|
+
canRevoke: mod.boolean(),
|
3995
|
+
canManagePermissions: mod.boolean(),
|
3996
|
+
canIssueChildren: mod.string(),
|
3997
|
+
canCreateChildren: mod.string(),
|
3998
|
+
canEditChildren: mod.string(),
|
3999
|
+
canRevokeChildren: mod.string(),
|
4000
|
+
canManageChildrenPermissions: mod.string(),
|
4001
|
+
canViewAnalytics: mod.boolean()
|
4002
|
+
});
|
3989
4003
|
var LCNSigningAuthorityValidator = mod.object({
|
3990
4004
|
endpoint: mod.string()
|
3991
4005
|
});
|