@learncard/learn-card-plugin 1.1.16 → 1.1.18
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/learn-card-plugin.cjs.development.js +22 -1
- package/dist/learn-card-plugin.cjs.development.js.map +3 -3
- package/dist/learn-card-plugin.cjs.production.min.js +1 -1
- package/dist/learn-card-plugin.cjs.production.min.js.map +4 -4
- package/dist/learn-card-plugin.esm.js +22 -1
- package/dist/learn-card-plugin.esm.js.map +3 -3
- package/package.json +4 -4
|
@@ -3766,6 +3766,14 @@ var BoostValidator = mod.object({
|
|
|
3766
3766
|
status: LCNBoostStatus.optional(),
|
|
3767
3767
|
autoConnectRecipients: mod.boolean().optional()
|
|
3768
3768
|
});
|
|
3769
|
+
var BoostQueryValidator = mod.object({
|
|
3770
|
+
uri: mod.string().or(mod.object({ $in: mod.string().array() })),
|
|
3771
|
+
name: mod.string().or(mod.object({ $in: mod.string().array() })),
|
|
3772
|
+
type: mod.string().or(mod.object({ $in: mod.string().array() })),
|
|
3773
|
+
category: mod.string().or(mod.object({ $in: mod.string().array() })),
|
|
3774
|
+
status: LCNBoostStatus.or(mod.object({ $in: LCNBoostStatus.array() })),
|
|
3775
|
+
autoConnectRecipients: mod.boolean()
|
|
3776
|
+
}).partial();
|
|
3769
3777
|
var PaginatedBoostsValidator = PaginationResponseValidator.extend({
|
|
3770
3778
|
records: BoostValidator.array()
|
|
3771
3779
|
});
|
|
@@ -3786,6 +3794,19 @@ var LCNBoostClaimLinkOptionsValidator = mod.object({
|
|
|
3786
3794
|
ttlSeconds: mod.number().optional(),
|
|
3787
3795
|
totalUses: mod.number().optional()
|
|
3788
3796
|
});
|
|
3797
|
+
var BoostPermissionsValidator = mod.object({
|
|
3798
|
+
role: mod.string(),
|
|
3799
|
+
canEdit: mod.boolean(),
|
|
3800
|
+
canIssue: mod.boolean(),
|
|
3801
|
+
canRevoke: mod.boolean(),
|
|
3802
|
+
canManagePermissions: mod.boolean(),
|
|
3803
|
+
canIssueChildren: mod.string(),
|
|
3804
|
+
canCreateChildren: mod.string(),
|
|
3805
|
+
canEditChildren: mod.string(),
|
|
3806
|
+
canRevokeChildren: mod.string(),
|
|
3807
|
+
canManageChildrenPermissions: mod.string(),
|
|
3808
|
+
canViewAnalytics: mod.boolean()
|
|
3809
|
+
});
|
|
3789
3810
|
var LCNSigningAuthorityValidator = mod.object({
|
|
3790
3811
|
endpoint: mod.string()
|
|
3791
3812
|
});
|
|
@@ -3956,7 +3977,7 @@ var LCNNotificationValidator = mod.object({
|
|
|
3956
3977
|
sent: mod.string().datetime().optional()
|
|
3957
3978
|
});
|
|
3958
3979
|
|
|
3959
|
-
// ../../../node_modules/.pnpm/@babel+runtime@7.
|
|
3980
|
+
// ../../../node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/esm/typeof.js
|
|
3960
3981
|
function _typeof(o) {
|
|
3961
3982
|
"@babel/helpers - typeof";
|
|
3962
3983
|
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(o2) {
|