@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.
- package/dist/didkey-plugin.cjs.development.js +9 -1
- package/dist/didkey-plugin.cjs.development.js.map +2 -2
- package/dist/didkey-plugin.cjs.production.min.js +1 -1
- package/dist/didkey-plugin.cjs.production.min.js.map +2 -2
- package/dist/didkey-plugin.esm.js +9 -1
- package/dist/didkey-plugin.esm.js.map +2 -2
- package/dist/helpers.d.ts.map +1 -1
- package/dist/index.d.ts +1 -221
- package/dist/index.d.ts.map +1 -1
- package/package.json +4 -4
@@ -113,6 +113,8 @@ var require_types_cjs_development = __commonJS({
|
|
113
113
|
LCNProfileValidator: () => LCNProfileValidator,
|
114
114
|
LCNSigningAuthorityForUserValidator: () => LCNSigningAuthorityForUserValidator,
|
115
115
|
LCNSigningAuthorityValidator: () => LCNSigningAuthorityValidator,
|
116
|
+
PaginatedBoostRecipientsValidator: () => PaginatedBoostRecipientsValidator,
|
117
|
+
PaginatedBoostsValidator: () => PaginatedBoostsValidator,
|
116
118
|
PaginatedConsentFlowContractsValidator: () => PaginatedConsentFlowContractsValidator,
|
117
119
|
PaginatedConsentFlowDataValidator: () => PaginatedConsentFlowDataValidator,
|
118
120
|
PaginatedConsentFlowTermsValidator: () => PaginatedConsentFlowTermsValidator,
|
@@ -3897,7 +3899,7 @@ var require_types_cjs_development = __commonJS({
|
|
3897
3899
|
websiteLink: mod.string().optional(),
|
3898
3900
|
isServiceProfile: mod.boolean().default(false).optional(),
|
3899
3901
|
type: mod.string().optional(),
|
3900
|
-
notificationsWebhook: mod.string().url().startsWith("
|
3902
|
+
notificationsWebhook: mod.string().url().startsWith("http").optional()
|
3901
3903
|
});
|
3902
3904
|
var PaginatedLCNProfilesValidator = PaginationResponseValidator.extend({
|
3903
3905
|
records: LCNProfileValidator.array()
|
@@ -3924,11 +3926,17 @@ var require_types_cjs_development = __commonJS({
|
|
3924
3926
|
status: LCNBoostStatus.optional(),
|
3925
3927
|
autoConnectRecipients: mod.boolean().optional()
|
3926
3928
|
});
|
3929
|
+
var PaginatedBoostsValidator = PaginationResponseValidator.extend({
|
3930
|
+
records: BoostValidator.array()
|
3931
|
+
});
|
3927
3932
|
var BoostRecipientValidator = mod.object({
|
3928
3933
|
to: LCNProfileValidator,
|
3929
3934
|
from: mod.string(),
|
3930
3935
|
received: mod.string().optional()
|
3931
3936
|
});
|
3937
|
+
var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
|
3938
|
+
records: BoostRecipientValidator.array()
|
3939
|
+
});
|
3932
3940
|
var LCNBoostClaimLinkSigningAuthorityValidator = mod.object({
|
3933
3941
|
endpoint: mod.string(),
|
3934
3942
|
name: mod.string(),
|