@learncard/network-plugin 2.1.2 → 2.1.4
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/lcn-plugin.cjs.development.js +15 -14
- package/dist/lcn-plugin.cjs.development.js.map +2 -2
- package/dist/lcn-plugin.cjs.production.min.js +2 -2
- package/dist/lcn-plugin.cjs.production.min.js.map +3 -3
- package/dist/lcn-plugin.esm.js +15 -14
- package/dist/lcn-plugin.esm.js.map +2 -2
- package/package.json +8 -8
|
@@ -4986,6 +4986,19 @@ var SentCredentialInfoValidator = mod.object({
|
|
|
4986
4986
|
sent: mod.string().datetime(),
|
|
4987
4987
|
received: mod.string().datetime().optional()
|
|
4988
4988
|
});
|
|
4989
|
+
var BoostPermissionsValidator = mod.object({
|
|
4990
|
+
role: mod.string(),
|
|
4991
|
+
canEdit: mod.boolean(),
|
|
4992
|
+
canIssue: mod.boolean(),
|
|
4993
|
+
canRevoke: mod.boolean(),
|
|
4994
|
+
canManagePermissions: mod.boolean(),
|
|
4995
|
+
canIssueChildren: mod.string(),
|
|
4996
|
+
canCreateChildren: mod.string(),
|
|
4997
|
+
canEditChildren: mod.string(),
|
|
4998
|
+
canRevokeChildren: mod.string(),
|
|
4999
|
+
canManageChildrenPermissions: mod.string(),
|
|
5000
|
+
canViewAnalytics: mod.boolean()
|
|
5001
|
+
});
|
|
4989
5002
|
var LCNBoostStatus = mod.enum(["DRAFT", "LIVE"]);
|
|
4990
5003
|
var BoostValidator = mod.object({
|
|
4991
5004
|
uri: mod.string(),
|
|
@@ -4993,7 +5006,8 @@ var BoostValidator = mod.object({
|
|
|
4993
5006
|
type: mod.string().optional(),
|
|
4994
5007
|
category: mod.string().optional(),
|
|
4995
5008
|
status: LCNBoostStatus.optional(),
|
|
4996
|
-
autoConnectRecipients: mod.boolean().optional()
|
|
5009
|
+
autoConnectRecipients: mod.boolean().optional(),
|
|
5010
|
+
claimPermissions: BoostPermissionsValidator.optional()
|
|
4997
5011
|
});
|
|
4998
5012
|
var BoostQueryValidator = mod.object({
|
|
4999
5013
|
uri: mod.string().or(mod.object({ $in: mod.string().array() })),
|
|
@@ -5023,19 +5037,6 @@ var LCNBoostClaimLinkOptionsValidator = mod.object({
|
|
|
5023
5037
|
ttlSeconds: mod.number().optional(),
|
|
5024
5038
|
totalUses: mod.number().optional()
|
|
5025
5039
|
});
|
|
5026
|
-
var BoostPermissionsValidator = mod.object({
|
|
5027
|
-
role: mod.string(),
|
|
5028
|
-
canEdit: mod.boolean(),
|
|
5029
|
-
canIssue: mod.boolean(),
|
|
5030
|
-
canRevoke: mod.boolean(),
|
|
5031
|
-
canManagePermissions: mod.boolean(),
|
|
5032
|
-
canIssueChildren: mod.string(),
|
|
5033
|
-
canCreateChildren: mod.string(),
|
|
5034
|
-
canEditChildren: mod.string(),
|
|
5035
|
-
canRevokeChildren: mod.string(),
|
|
5036
|
-
canManageChildrenPermissions: mod.string(),
|
|
5037
|
-
canViewAnalytics: mod.boolean()
|
|
5038
|
-
});
|
|
5039
5040
|
var LCNSigningAuthorityValidator = mod.object({
|
|
5040
5041
|
endpoint: mod.string()
|
|
5041
5042
|
});
|