@learncard/ceramic-plugin 1.0.11 → 1.0.12

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.
@@ -51389,7 +51389,7 @@ var LCNProfileValidator = mod.object({
51389
51389
  websiteLink: mod.string().optional(),
51390
51390
  isServiceProfile: mod.boolean().default(false).optional(),
51391
51391
  type: mod.string().optional(),
51392
- notificationsWebhook: mod.string().url().startsWith("https://").optional()
51392
+ notificationsWebhook: mod.string().url().startsWith("http").optional()
51393
51393
  });
51394
51394
  var PaginatedLCNProfilesValidator = PaginationResponseValidator.extend({
51395
51395
  records: LCNProfileValidator.array()
@@ -51416,11 +51416,17 @@ var BoostValidator = mod.object({
51416
51416
  status: LCNBoostStatus.optional(),
51417
51417
  autoConnectRecipients: mod.boolean().optional()
51418
51418
  });
51419
+ var PaginatedBoostsValidator = PaginationResponseValidator.extend({
51420
+ records: BoostValidator.array()
51421
+ });
51419
51422
  var BoostRecipientValidator = mod.object({
51420
51423
  to: LCNProfileValidator,
51421
51424
  from: mod.string(),
51422
51425
  received: mod.string().optional()
51423
51426
  });
51427
+ var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
51428
+ records: BoostRecipientValidator.array()
51429
+ });
51424
51430
  var LCNBoostClaimLinkSigningAuthorityValidator = mod.object({
51425
51431
  endpoint: mod.string(),
51426
51432
  name: mod.string(),