@learncard/learn-card-plugin 1.1.10 → 1.1.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.
@@ -3726,7 +3726,7 @@ var LCNProfileValidator = mod.object({
3726
3726
  websiteLink: mod.string().optional(),
3727
3727
  isServiceProfile: mod.boolean().default(false).optional(),
3728
3728
  type: mod.string().optional(),
3729
- notificationsWebhook: mod.string().url().startsWith("https://").optional()
3729
+ notificationsWebhook: mod.string().url().startsWith("http").optional()
3730
3730
  });
3731
3731
  var PaginatedLCNProfilesValidator = PaginationResponseValidator.extend({
3732
3732
  records: LCNProfileValidator.array()
@@ -3753,11 +3753,17 @@ var BoostValidator = mod.object({
3753
3753
  status: LCNBoostStatus.optional(),
3754
3754
  autoConnectRecipients: mod.boolean().optional()
3755
3755
  });
3756
+ var PaginatedBoostsValidator = PaginationResponseValidator.extend({
3757
+ records: BoostValidator.array()
3758
+ });
3756
3759
  var BoostRecipientValidator = mod.object({
3757
3760
  to: LCNProfileValidator,
3758
3761
  from: mod.string(),
3759
3762
  received: mod.string().optional()
3760
3763
  });
3764
+ var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
3765
+ records: BoostRecipientValidator.array()
3766
+ });
3761
3767
  var LCNBoostClaimLinkSigningAuthorityValidator = mod.object({
3762
3768
  endpoint: mod.string(),
3763
3769
  name: mod.string(),