@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.
package/dist/helpers.esm.js
CHANGED
@@ -98,6 +98,8 @@ var require_types_cjs_development = __commonJS({
|
|
98
98
|
LCNProfileValidator: () => LCNProfileValidator,
|
99
99
|
LCNSigningAuthorityForUserValidator: () => LCNSigningAuthorityForUserValidator,
|
100
100
|
LCNSigningAuthorityValidator: () => LCNSigningAuthorityValidator,
|
101
|
+
PaginatedBoostRecipientsValidator: () => PaginatedBoostRecipientsValidator,
|
102
|
+
PaginatedBoostsValidator: () => PaginatedBoostsValidator,
|
101
103
|
PaginatedConsentFlowContractsValidator: () => PaginatedConsentFlowContractsValidator,
|
102
104
|
PaginatedConsentFlowDataValidator: () => PaginatedConsentFlowDataValidator,
|
103
105
|
PaginatedConsentFlowTermsValidator: () => PaginatedConsentFlowTermsValidator,
|
@@ -3867,7 +3869,7 @@ var require_types_cjs_development = __commonJS({
|
|
3867
3869
|
websiteLink: mod.string().optional(),
|
3868
3870
|
isServiceProfile: mod.boolean().default(false).optional(),
|
3869
3871
|
type: mod.string().optional(),
|
3870
|
-
notificationsWebhook: mod.string().url().startsWith("
|
3872
|
+
notificationsWebhook: mod.string().url().startsWith("http").optional()
|
3871
3873
|
});
|
3872
3874
|
var PaginatedLCNProfilesValidator = PaginationResponseValidator.extend({
|
3873
3875
|
records: LCNProfileValidator.array()
|
@@ -3894,11 +3896,17 @@ var require_types_cjs_development = __commonJS({
|
|
3894
3896
|
status: LCNBoostStatus.optional(),
|
3895
3897
|
autoConnectRecipients: mod.boolean().optional()
|
3896
3898
|
});
|
3899
|
+
var PaginatedBoostsValidator = PaginationResponseValidator.extend({
|
3900
|
+
records: BoostValidator.array()
|
3901
|
+
});
|
3897
3902
|
var BoostRecipientValidator = mod.object({
|
3898
3903
|
to: LCNProfileValidator,
|
3899
3904
|
from: mod.string(),
|
3900
3905
|
received: mod.string().optional()
|
3901
3906
|
});
|
3907
|
+
var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
|
3908
|
+
records: BoostRecipientValidator.array()
|
3909
|
+
});
|
3902
3910
|
var LCNBoostClaimLinkSigningAuthorityValidator = mod.object({
|
3903
3911
|
endpoint: mod.string(),
|
3904
3912
|
name: mod.string(),
|