@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.
@@ -46021,7 +46021,7 @@ var StreamRef;
46021
46021
  StreamRef2.from = from4;
46022
46022
  })(StreamRef || (StreamRef = {}));
46023
46023
 
46024
- // ../../../node_modules/.pnpm/tslib@2.7.0/node_modules/tslib/tslib.es6.mjs
46024
+ // ../../../node_modules/.pnpm/tslib@2.8.0/node_modules/tslib/tslib.es6.mjs
46025
46025
  var extendStatics = /* @__PURE__ */ __name(function(d, b) {
46026
46026
  extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
46027
46027
  d2.__proto__ = b2;
@@ -53528,6 +53528,14 @@ var BoostValidator = mod.object({
53528
53528
  status: LCNBoostStatus.optional(),
53529
53529
  autoConnectRecipients: mod.boolean().optional()
53530
53530
  });
53531
+ var BoostQueryValidator = mod.object({
53532
+ uri: mod.string().or(mod.object({ $in: mod.string().array() })),
53533
+ name: mod.string().or(mod.object({ $in: mod.string().array() })),
53534
+ type: mod.string().or(mod.object({ $in: mod.string().array() })),
53535
+ category: mod.string().or(mod.object({ $in: mod.string().array() })),
53536
+ status: LCNBoostStatus.or(mod.object({ $in: LCNBoostStatus.array() })),
53537
+ autoConnectRecipients: mod.boolean()
53538
+ }).partial();
53531
53539
  var PaginatedBoostsValidator = PaginationResponseValidator.extend({
53532
53540
  records: BoostValidator.array()
53533
53541
  });
@@ -53548,6 +53556,19 @@ var LCNBoostClaimLinkOptionsValidator = mod.object({
53548
53556
  ttlSeconds: mod.number().optional(),
53549
53557
  totalUses: mod.number().optional()
53550
53558
  });
53559
+ var BoostPermissionsValidator = mod.object({
53560
+ role: mod.string(),
53561
+ canEdit: mod.boolean(),
53562
+ canIssue: mod.boolean(),
53563
+ canRevoke: mod.boolean(),
53564
+ canManagePermissions: mod.boolean(),
53565
+ canIssueChildren: mod.string(),
53566
+ canCreateChildren: mod.string(),
53567
+ canEditChildren: mod.string(),
53568
+ canRevokeChildren: mod.string(),
53569
+ canManageChildrenPermissions: mod.string(),
53570
+ canViewAnalytics: mod.boolean()
53571
+ });
53551
53572
  var LCNSigningAuthorityValidator = mod.object({
53552
53573
  endpoint: mod.string()
53553
53574
  });