@learncard/helpers 1.0.15 → 1.0.16
Sign up to get free protection for your applications and to get access to all the features.
package/dist/helpers.esm.js
CHANGED
@@ -53,6 +53,7 @@ var require_types_cjs_development = __commonJS({
|
|
53
53
|
AddressValidator: () => AddressValidator,
|
54
54
|
AlignmentTargetTypeValidator: () => AlignmentTargetTypeValidator,
|
55
55
|
AlignmentValidator: () => AlignmentValidator,
|
56
|
+
BoostPermissionsValidator: () => BoostPermissionsValidator,
|
56
57
|
BoostRecipientValidator: () => BoostRecipientValidator,
|
57
58
|
BoostValidator: () => BoostValidator,
|
58
59
|
ConsentFlowContractDataValidator: () => ConsentFlowContractDataValidator,
|
@@ -3932,6 +3933,19 @@ var require_types_cjs_development = __commonJS({
|
|
3932
3933
|
ttlSeconds: mod.number().optional(),
|
3933
3934
|
totalUses: mod.number().optional()
|
3934
3935
|
});
|
3936
|
+
var BoostPermissionsValidator = mod.object({
|
3937
|
+
role: mod.string(),
|
3938
|
+
canEdit: mod.boolean(),
|
3939
|
+
canIssue: mod.boolean(),
|
3940
|
+
canRevoke: mod.boolean(),
|
3941
|
+
canManagePermissions: mod.boolean(),
|
3942
|
+
canIssueChildren: mod.string(),
|
3943
|
+
canCreateChildren: mod.string(),
|
3944
|
+
canEditChildren: mod.string(),
|
3945
|
+
canRevokeChildren: mod.string(),
|
3946
|
+
canManageChildrenPermissions: mod.string(),
|
3947
|
+
canViewAnalytics: mod.boolean()
|
3948
|
+
});
|
3935
3949
|
var LCNSigningAuthorityValidator = mod.object({
|
3936
3950
|
endpoint: mod.string()
|
3937
3951
|
});
|