@learncard/network-plugin 2.1.3 → 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
package/dist/lcn-plugin.esm.js
CHANGED
|
@@ -4961,6 +4961,19 @@ var SentCredentialInfoValidator = mod.object({
|
|
|
4961
4961
|
sent: mod.string().datetime(),
|
|
4962
4962
|
received: mod.string().datetime().optional()
|
|
4963
4963
|
});
|
|
4964
|
+
var BoostPermissionsValidator = mod.object({
|
|
4965
|
+
role: mod.string(),
|
|
4966
|
+
canEdit: mod.boolean(),
|
|
4967
|
+
canIssue: mod.boolean(),
|
|
4968
|
+
canRevoke: mod.boolean(),
|
|
4969
|
+
canManagePermissions: mod.boolean(),
|
|
4970
|
+
canIssueChildren: mod.string(),
|
|
4971
|
+
canCreateChildren: mod.string(),
|
|
4972
|
+
canEditChildren: mod.string(),
|
|
4973
|
+
canRevokeChildren: mod.string(),
|
|
4974
|
+
canManageChildrenPermissions: mod.string(),
|
|
4975
|
+
canViewAnalytics: mod.boolean()
|
|
4976
|
+
});
|
|
4964
4977
|
var LCNBoostStatus = mod.enum(["DRAFT", "LIVE"]);
|
|
4965
4978
|
var BoostValidator = mod.object({
|
|
4966
4979
|
uri: mod.string(),
|
|
@@ -4968,7 +4981,8 @@ var BoostValidator = mod.object({
|
|
|
4968
4981
|
type: mod.string().optional(),
|
|
4969
4982
|
category: mod.string().optional(),
|
|
4970
4983
|
status: LCNBoostStatus.optional(),
|
|
4971
|
-
autoConnectRecipients: mod.boolean().optional()
|
|
4984
|
+
autoConnectRecipients: mod.boolean().optional(),
|
|
4985
|
+
claimPermissions: BoostPermissionsValidator.optional()
|
|
4972
4986
|
});
|
|
4973
4987
|
var BoostQueryValidator = mod.object({
|
|
4974
4988
|
uri: mod.string().or(mod.object({ $in: mod.string().array() })),
|
|
@@ -4998,19 +5012,6 @@ var LCNBoostClaimLinkOptionsValidator = mod.object({
|
|
|
4998
5012
|
ttlSeconds: mod.number().optional(),
|
|
4999
5013
|
totalUses: mod.number().optional()
|
|
5000
5014
|
});
|
|
5001
|
-
var BoostPermissionsValidator = mod.object({
|
|
5002
|
-
role: mod.string(),
|
|
5003
|
-
canEdit: mod.boolean(),
|
|
5004
|
-
canIssue: mod.boolean(),
|
|
5005
|
-
canRevoke: mod.boolean(),
|
|
5006
|
-
canManagePermissions: mod.boolean(),
|
|
5007
|
-
canIssueChildren: mod.string(),
|
|
5008
|
-
canCreateChildren: mod.string(),
|
|
5009
|
-
canEditChildren: mod.string(),
|
|
5010
|
-
canRevokeChildren: mod.string(),
|
|
5011
|
-
canManageChildrenPermissions: mod.string(),
|
|
5012
|
-
canViewAnalytics: mod.boolean()
|
|
5013
|
-
});
|
|
5014
5015
|
var LCNSigningAuthorityValidator = mod.object({
|
|
5015
5016
|
endpoint: mod.string()
|
|
5016
5017
|
});
|