@learncard/helpers 1.0.13 → 1.0.14
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.
@@ -103,6 +103,8 @@ var require_types_cjs_development = __commonJS({
|
|
103
103
|
LCNProfileValidator: () => LCNProfileValidator,
|
104
104
|
LCNSigningAuthorityForUserValidator: () => LCNSigningAuthorityForUserValidator,
|
105
105
|
LCNSigningAuthorityValidator: () => LCNSigningAuthorityValidator,
|
106
|
+
PaginatedBoostRecipientsValidator: () => PaginatedBoostRecipientsValidator,
|
107
|
+
PaginatedBoostsValidator: () => PaginatedBoostsValidator,
|
106
108
|
PaginatedConsentFlowContractsValidator: () => PaginatedConsentFlowContractsValidator,
|
107
109
|
PaginatedConsentFlowDataValidator: () => PaginatedConsentFlowDataValidator,
|
108
110
|
PaginatedConsentFlowTermsValidator: () => PaginatedConsentFlowTermsValidator,
|
@@ -3872,7 +3874,7 @@ var require_types_cjs_development = __commonJS({
|
|
3872
3874
|
websiteLink: mod.string().optional(),
|
3873
3875
|
isServiceProfile: mod.boolean().default(false).optional(),
|
3874
3876
|
type: mod.string().optional(),
|
3875
|
-
notificationsWebhook: mod.string().url().startsWith("
|
3877
|
+
notificationsWebhook: mod.string().url().startsWith("http").optional()
|
3876
3878
|
});
|
3877
3879
|
var PaginatedLCNProfilesValidator = PaginationResponseValidator.extend({
|
3878
3880
|
records: LCNProfileValidator.array()
|
@@ -3899,11 +3901,17 @@ var require_types_cjs_development = __commonJS({
|
|
3899
3901
|
status: LCNBoostStatus.optional(),
|
3900
3902
|
autoConnectRecipients: mod.boolean().optional()
|
3901
3903
|
});
|
3904
|
+
var PaginatedBoostsValidator = PaginationResponseValidator.extend({
|
3905
|
+
records: BoostValidator.array()
|
3906
|
+
});
|
3902
3907
|
var BoostRecipientValidator = mod.object({
|
3903
3908
|
to: LCNProfileValidator,
|
3904
3909
|
from: mod.string(),
|
3905
3910
|
received: mod.string().optional()
|
3906
3911
|
});
|
3912
|
+
var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
|
3913
|
+
records: BoostRecipientValidator.array()
|
3914
|
+
});
|
3907
3915
|
var LCNBoostClaimLinkSigningAuthorityValidator = mod.object({
|
3908
3916
|
endpoint: mod.string(),
|
3909
3917
|
name: mod.string(),
|