@learncard/ceramic-plugin 1.0.14 → 1.0.16
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/ceramic-plugin.cjs.development.js +22 -1
- package/dist/ceramic-plugin.cjs.development.js.map +3 -3
- package/dist/ceramic-plugin.cjs.production.min.js +114 -114
- package/dist/ceramic-plugin.cjs.production.min.js.map +4 -4
- package/dist/ceramic-plugin.esm.js +22 -1
- package/dist/ceramic-plugin.esm.js.map +3 -3
- package/package.json +4 -4
|
@@ -46017,7 +46017,7 @@ var StreamRef;
|
|
|
46017
46017
|
StreamRef2.from = from4;
|
|
46018
46018
|
})(StreamRef || (StreamRef = {}));
|
|
46019
46019
|
|
|
46020
|
-
// ../../../node_modules/.pnpm/tslib@2.
|
|
46020
|
+
// ../../../node_modules/.pnpm/tslib@2.8.0/node_modules/tslib/tslib.es6.mjs
|
|
46021
46021
|
var extendStatics = /* @__PURE__ */ __name(function(d, b) {
|
|
46022
46022
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
46023
46023
|
d2.__proto__ = b2;
|
|
@@ -53524,6 +53524,14 @@ var BoostValidator = mod.object({
|
|
|
53524
53524
|
status: LCNBoostStatus.optional(),
|
|
53525
53525
|
autoConnectRecipients: mod.boolean().optional()
|
|
53526
53526
|
});
|
|
53527
|
+
var BoostQueryValidator = mod.object({
|
|
53528
|
+
uri: mod.string().or(mod.object({ $in: mod.string().array() })),
|
|
53529
|
+
name: mod.string().or(mod.object({ $in: mod.string().array() })),
|
|
53530
|
+
type: mod.string().or(mod.object({ $in: mod.string().array() })),
|
|
53531
|
+
category: mod.string().or(mod.object({ $in: mod.string().array() })),
|
|
53532
|
+
status: LCNBoostStatus.or(mod.object({ $in: LCNBoostStatus.array() })),
|
|
53533
|
+
autoConnectRecipients: mod.boolean()
|
|
53534
|
+
}).partial();
|
|
53527
53535
|
var PaginatedBoostsValidator = PaginationResponseValidator.extend({
|
|
53528
53536
|
records: BoostValidator.array()
|
|
53529
53537
|
});
|
|
@@ -53544,6 +53552,19 @@ var LCNBoostClaimLinkOptionsValidator = mod.object({
|
|
|
53544
53552
|
ttlSeconds: mod.number().optional(),
|
|
53545
53553
|
totalUses: mod.number().optional()
|
|
53546
53554
|
});
|
|
53555
|
+
var BoostPermissionsValidator = mod.object({
|
|
53556
|
+
role: mod.string(),
|
|
53557
|
+
canEdit: mod.boolean(),
|
|
53558
|
+
canIssue: mod.boolean(),
|
|
53559
|
+
canRevoke: mod.boolean(),
|
|
53560
|
+
canManagePermissions: mod.boolean(),
|
|
53561
|
+
canIssueChildren: mod.string(),
|
|
53562
|
+
canCreateChildren: mod.string(),
|
|
53563
|
+
canEditChildren: mod.string(),
|
|
53564
|
+
canRevokeChildren: mod.string(),
|
|
53565
|
+
canManageChildrenPermissions: mod.string(),
|
|
53566
|
+
canViewAnalytics: mod.boolean()
|
|
53567
|
+
});
|
|
53547
53568
|
var LCNSigningAuthorityValidator = mod.object({
|
|
53548
53569
|
endpoint: mod.string()
|
|
53549
53570
|
});
|