@learncard/didkey-plugin 1.0.13 → 1.0.15
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 +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
|
@@ -68,6 +68,7 @@ var require_types_cjs_development = __commonJS({
|
|
|
68
68
|
AddressValidator: () => AddressValidator,
|
|
69
69
|
AlignmentTargetTypeValidator: () => AlignmentTargetTypeValidator,
|
|
70
70
|
AlignmentValidator: () => AlignmentValidator,
|
|
71
|
+
BoostPermissionsValidator: () => BoostPermissionsValidator,
|
|
71
72
|
BoostRecipientValidator: () => BoostRecipientValidator,
|
|
72
73
|
BoostValidator: () => BoostValidator,
|
|
73
74
|
ConsentFlowContractDataValidator: () => ConsentFlowContractDataValidator,
|
|
@@ -3962,6 +3963,19 @@ var require_types_cjs_development = __commonJS({
|
|
|
3962
3963
|
ttlSeconds: mod.number().optional(),
|
|
3963
3964
|
totalUses: mod.number().optional()
|
|
3964
3965
|
});
|
|
3966
|
+
var BoostPermissionsValidator = mod.object({
|
|
3967
|
+
role: mod.string(),
|
|
3968
|
+
canEdit: mod.boolean(),
|
|
3969
|
+
canIssue: mod.boolean(),
|
|
3970
|
+
canRevoke: mod.boolean(),
|
|
3971
|
+
canManagePermissions: mod.boolean(),
|
|
3972
|
+
canIssueChildren: mod.string(),
|
|
3973
|
+
canCreateChildren: mod.string(),
|
|
3974
|
+
canEditChildren: mod.string(),
|
|
3975
|
+
canRevokeChildren: mod.string(),
|
|
3976
|
+
canManageChildrenPermissions: mod.string(),
|
|
3977
|
+
canViewAnalytics: mod.boolean()
|
|
3978
|
+
});
|
|
3965
3979
|
var LCNSigningAuthorityValidator = mod.object({
|
|
3966
3980
|
endpoint: mod.string()
|
|
3967
3981
|
});
|