@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
|
@@ -3790,6 +3790,14 @@ var BoostValidator = mod.object({
|
|
|
3790
3790
|
status: LCNBoostStatus.optional(),
|
|
3791
3791
|
autoConnectRecipients: mod.boolean().optional()
|
|
3792
3792
|
});
|
|
3793
|
+
var BoostQueryValidator = mod.object({
|
|
3794
|
+
uri: mod.string().or(mod.object({ $in: mod.string().array() })),
|
|
3795
|
+
name: mod.string().or(mod.object({ $in: mod.string().array() })),
|
|
3796
|
+
type: mod.string().or(mod.object({ $in: mod.string().array() })),
|
|
3797
|
+
category: mod.string().or(mod.object({ $in: mod.string().array() })),
|
|
3798
|
+
status: LCNBoostStatus.or(mod.object({ $in: LCNBoostStatus.array() })),
|
|
3799
|
+
autoConnectRecipients: mod.boolean()
|
|
3800
|
+
}).partial();
|
|
3793
3801
|
var PaginatedBoostsValidator = PaginationResponseValidator.extend({
|
|
3794
3802
|
records: BoostValidator.array()
|
|
3795
3803
|
});
|
|
@@ -3810,6 +3818,19 @@ var LCNBoostClaimLinkOptionsValidator = mod.object({
|
|
|
3810
3818
|
ttlSeconds: mod.number().optional(),
|
|
3811
3819
|
totalUses: mod.number().optional()
|
|
3812
3820
|
});
|
|
3821
|
+
var BoostPermissionsValidator = mod.object({
|
|
3822
|
+
role: mod.string(),
|
|
3823
|
+
canEdit: mod.boolean(),
|
|
3824
|
+
canIssue: mod.boolean(),
|
|
3825
|
+
canRevoke: mod.boolean(),
|
|
3826
|
+
canManagePermissions: mod.boolean(),
|
|
3827
|
+
canIssueChildren: mod.string(),
|
|
3828
|
+
canCreateChildren: mod.string(),
|
|
3829
|
+
canEditChildren: mod.string(),
|
|
3830
|
+
canRevokeChildren: mod.string(),
|
|
3831
|
+
canManageChildrenPermissions: mod.string(),
|
|
3832
|
+
canViewAnalytics: mod.boolean()
|
|
3833
|
+
});
|
|
3813
3834
|
var LCNSigningAuthorityValidator = mod.object({
|
|
3814
3835
|
endpoint: mod.string()
|
|
3815
3836
|
});
|
|
@@ -3980,7 +4001,7 @@ var LCNNotificationValidator = mod.object({
|
|
|
3980
4001
|
sent: mod.string().datetime().optional()
|
|
3981
4002
|
});
|
|
3982
4003
|
|
|
3983
|
-
// ../../../node_modules/.pnpm/@babel+runtime@7.
|
|
4004
|
+
// ../../../node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/esm/typeof.js
|
|
3984
4005
|
function _typeof(o) {
|
|
3985
4006
|
"@babel/helpers - typeof";
|
|
3986
4007
|
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(o2) {
|