@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.
@@ -58,6 +58,7 @@ var require_types_cjs_development = __commonJS({
|
|
58
58
|
AddressValidator: () => AddressValidator,
|
59
59
|
AlignmentTargetTypeValidator: () => AlignmentTargetTypeValidator,
|
60
60
|
AlignmentValidator: () => AlignmentValidator,
|
61
|
+
BoostPermissionsValidator: () => BoostPermissionsValidator,
|
61
62
|
BoostRecipientValidator: () => BoostRecipientValidator,
|
62
63
|
BoostValidator: () => BoostValidator,
|
63
64
|
ConsentFlowContractDataValidator: () => ConsentFlowContractDataValidator,
|
@@ -3937,6 +3938,19 @@ var require_types_cjs_development = __commonJS({
|
|
3937
3938
|
ttlSeconds: mod.number().optional(),
|
3938
3939
|
totalUses: mod.number().optional()
|
3939
3940
|
});
|
3941
|
+
var BoostPermissionsValidator = mod.object({
|
3942
|
+
role: mod.string(),
|
3943
|
+
canEdit: mod.boolean(),
|
3944
|
+
canIssue: mod.boolean(),
|
3945
|
+
canRevoke: mod.boolean(),
|
3946
|
+
canManagePermissions: mod.boolean(),
|
3947
|
+
canIssueChildren: mod.string(),
|
3948
|
+
canCreateChildren: mod.string(),
|
3949
|
+
canEditChildren: mod.string(),
|
3950
|
+
canRevokeChildren: mod.string(),
|
3951
|
+
canManageChildrenPermissions: mod.string(),
|
3952
|
+
canViewAnalytics: mod.boolean()
|
3953
|
+
});
|
3940
3954
|
var LCNSigningAuthorityValidator = mod.object({
|
3941
3955
|
endpoint: mod.string()
|
3942
3956
|
});
|