@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.
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,+BAA+B,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAG3E,cAAc,SAAS,CAAC;AAExB;;GAEG;AACH,eAAO,MAAM,kBAAkB,cAChB,UAAU,GAAG,EAAE,GAAG,EAAE,+BAA+B,CAAC,KAChE,eAOD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,+BAA+B,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAG3E,cAAc,SAAS,CAAC;AAExB;;GAEG;AACH,eAAO,MAAM,kBAAkB,cAChB,SAAS,CAAC,GAAG,EAAE,GAAG,EAAE,+BAA+B,CAAC,KAChE,eAOD,CAAC"}
@@ -3749,7 +3749,7 @@ var LCNProfileValidator = mod.object({
3749
3749
  websiteLink: mod.string().optional(),
3750
3750
  isServiceProfile: mod.boolean().default(false).optional(),
3751
3751
  type: mod.string().optional(),
3752
- notificationsWebhook: mod.string().url().startsWith("https://").optional()
3752
+ notificationsWebhook: mod.string().url().startsWith("http").optional()
3753
3753
  });
3754
3754
  var PaginatedLCNProfilesValidator = PaginationResponseValidator.extend({
3755
3755
  records: LCNProfileValidator.array()
@@ -3776,11 +3776,17 @@ var BoostValidator = mod.object({
3776
3776
  status: LCNBoostStatus.optional(),
3777
3777
  autoConnectRecipients: mod.boolean().optional()
3778
3778
  });
3779
+ var PaginatedBoostsValidator = PaginationResponseValidator.extend({
3780
+ records: BoostValidator.array()
3781
+ });
3779
3782
  var BoostRecipientValidator = mod.object({
3780
3783
  to: LCNProfileValidator,
3781
3784
  from: mod.string(),
3782
3785
  received: mod.string().optional()
3783
3786
  });
3787
+ var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
3788
+ records: BoostRecipientValidator.array()
3789
+ });
3784
3790
  var LCNBoostClaimLinkSigningAuthorityValidator = mod.object({
3785
3791
  endpoint: mod.string(),
3786
3792
  name: mod.string(),