@learncard/ceramic-plugin 1.0.11 → 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/ceramic-plugin.cjs.development.js +7 -1
- package/dist/ceramic-plugin.cjs.development.js.map +2 -2
- package/dist/ceramic-plugin.cjs.production.min.js +23 -23
- package/dist/ceramic-plugin.cjs.production.min.js.map +2 -2
- package/dist/ceramic-plugin.esm.js +7 -1
- package/dist/ceramic-plugin.esm.js.map +2 -2
- package/package.json +4 -4
|
@@ -51392,7 +51392,7 @@ var LCNProfileValidator = mod.object({
|
|
|
51392
51392
|
websiteLink: mod.string().optional(),
|
|
51393
51393
|
isServiceProfile: mod.boolean().default(false).optional(),
|
|
51394
51394
|
type: mod.string().optional(),
|
|
51395
|
-
notificationsWebhook: mod.string().url().startsWith("
|
|
51395
|
+
notificationsWebhook: mod.string().url().startsWith("http").optional()
|
|
51396
51396
|
});
|
|
51397
51397
|
var PaginatedLCNProfilesValidator = PaginationResponseValidator.extend({
|
|
51398
51398
|
records: LCNProfileValidator.array()
|
|
@@ -51419,11 +51419,17 @@ var BoostValidator = mod.object({
|
|
|
51419
51419
|
status: LCNBoostStatus.optional(),
|
|
51420
51420
|
autoConnectRecipients: mod.boolean().optional()
|
|
51421
51421
|
});
|
|
51422
|
+
var PaginatedBoostsValidator = PaginationResponseValidator.extend({
|
|
51423
|
+
records: BoostValidator.array()
|
|
51424
|
+
});
|
|
51422
51425
|
var BoostRecipientValidator = mod.object({
|
|
51423
51426
|
to: LCNProfileValidator,
|
|
51424
51427
|
from: mod.string(),
|
|
51425
51428
|
received: mod.string().optional()
|
|
51426
51429
|
});
|
|
51430
|
+
var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
|
|
51431
|
+
records: BoostRecipientValidator.array()
|
|
51432
|
+
});
|
|
51427
51433
|
var LCNBoostClaimLinkSigningAuthorityValidator = mod.object({
|
|
51428
51434
|
endpoint: mod.string(),
|
|
51429
51435
|
name: mod.string(),
|