@learncard/didkey-plugin 1.0.10 → 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.
@@ -136,6 +136,8 @@ var require_types_cjs_development = __commonJS({
136
136
  LCNProfileValidator: () => LCNProfileValidator,
137
137
  LCNSigningAuthorityForUserValidator: () => LCNSigningAuthorityForUserValidator,
138
138
  LCNSigningAuthorityValidator: () => LCNSigningAuthorityValidator,
139
+ PaginatedBoostRecipientsValidator: () => PaginatedBoostRecipientsValidator,
140
+ PaginatedBoostsValidator: () => PaginatedBoostsValidator,
139
141
  PaginatedConsentFlowContractsValidator: () => PaginatedConsentFlowContractsValidator,
140
142
  PaginatedConsentFlowDataValidator: () => PaginatedConsentFlowDataValidator,
141
143
  PaginatedConsentFlowTermsValidator: () => PaginatedConsentFlowTermsValidator,
@@ -3920,7 +3922,7 @@ var require_types_cjs_development = __commonJS({
3920
3922
  websiteLink: mod.string().optional(),
3921
3923
  isServiceProfile: mod.boolean().default(false).optional(),
3922
3924
  type: mod.string().optional(),
3923
- notificationsWebhook: mod.string().url().startsWith("https://").optional()
3925
+ notificationsWebhook: mod.string().url().startsWith("http").optional()
3924
3926
  });
3925
3927
  var PaginatedLCNProfilesValidator = PaginationResponseValidator.extend({
3926
3928
  records: LCNProfileValidator.array()
@@ -3947,11 +3949,17 @@ var require_types_cjs_development = __commonJS({
3947
3949
  status: LCNBoostStatus.optional(),
3948
3950
  autoConnectRecipients: mod.boolean().optional()
3949
3951
  });
3952
+ var PaginatedBoostsValidator = PaginationResponseValidator.extend({
3953
+ records: BoostValidator.array()
3954
+ });
3950
3955
  var BoostRecipientValidator = mod.object({
3951
3956
  to: LCNProfileValidator,
3952
3957
  from: mod.string(),
3953
3958
  received: mod.string().optional()
3954
3959
  });
3960
+ var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
3961
+ records: BoostRecipientValidator.array()
3962
+ });
3955
3963
  var LCNBoostClaimLinkSigningAuthorityValidator = mod.object({
3956
3964
  endpoint: mod.string(),
3957
3965
  name: mod.string(),