@learncard/ceramic-plugin 1.0.19 → 1.0.21

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.
@@ -53548,6 +53548,19 @@ var RegExpValidator = mod.instanceof(RegExp).or(
53548
53548
  })
53549
53549
  );
53550
53550
  var StringQuery = mod.string().or(mod.object({ $in: mod.string().array() })).or(mod.object({ $regex: RegExpValidator }));
53551
+ var LCNProfileDisplayValidator = mod.object({
53552
+ backgroundColor: mod.string().optional(),
53553
+ backgroundImage: mod.string().optional(),
53554
+ fadeBackgroundImage: mod.boolean().optional(),
53555
+ repeatBackgroundImage: mod.boolean().optional(),
53556
+ fontColor: mod.string().optional(),
53557
+ accentColor: mod.string().optional(),
53558
+ accentFontColor: mod.string().optional(),
53559
+ idBackgroundImage: mod.string().optional(),
53560
+ fadeIdBackgroundImage: mod.boolean().optional(),
53561
+ idBackgroundColor: mod.string().optional(),
53562
+ repeatIdBackgroundImage: mod.boolean().optional()
53563
+ });
53551
53564
  var LCNProfileValidator = mod.object({
53552
53565
  profileId: mod.string().min(3).max(40),
53553
53566
  displayName: mod.string().default(""),
@@ -53560,7 +53573,8 @@ var LCNProfileValidator = mod.object({
53560
53573
  websiteLink: mod.string().optional(),
53561
53574
  isServiceProfile: mod.boolean().default(false).optional(),
53562
53575
  type: mod.string().optional(),
53563
- notificationsWebhook: mod.string().url().startsWith("http").optional()
53576
+ notificationsWebhook: mod.string().url().startsWith("http").optional(),
53577
+ display: LCNProfileDisplayValidator.optional()
53564
53578
  });
53565
53579
  var LCNProfileQueryValidator = mod.object({
53566
53580
  profileId: StringQuery,
@@ -53627,7 +53641,8 @@ var PaginatedBoostsValidator = PaginationResponseValidator.extend({
53627
53641
  var BoostRecipientValidator = mod.object({
53628
53642
  to: LCNProfileValidator,
53629
53643
  from: mod.string(),
53630
- received: mod.string().optional()
53644
+ received: mod.string().optional(),
53645
+ uri: mod.string().optional()
53631
53646
  });
53632
53647
  var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
53633
53648
  records: BoostRecipientValidator.array()