@learncard/ceramic-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/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/dist/ceramic.d.ts.map +1 -1
- package/package.json +4 -4
|
@@ -51389,7 +51389,7 @@ var LCNProfileValidator = mod.object({
|
|
|
51389
51389
|
websiteLink: mod.string().optional(),
|
|
51390
51390
|
isServiceProfile: mod.boolean().default(false).optional(),
|
|
51391
51391
|
type: mod.string().optional(),
|
|
51392
|
-
notificationsWebhook: mod.string().url().startsWith("
|
|
51392
|
+
notificationsWebhook: mod.string().url().startsWith("http").optional()
|
|
51393
51393
|
});
|
|
51394
51394
|
var PaginatedLCNProfilesValidator = PaginationResponseValidator.extend({
|
|
51395
51395
|
records: LCNProfileValidator.array()
|
|
@@ -51416,11 +51416,17 @@ var BoostValidator = mod.object({
|
|
|
51416
51416
|
status: LCNBoostStatus.optional(),
|
|
51417
51417
|
autoConnectRecipients: mod.boolean().optional()
|
|
51418
51418
|
});
|
|
51419
|
+
var PaginatedBoostsValidator = PaginationResponseValidator.extend({
|
|
51420
|
+
records: BoostValidator.array()
|
|
51421
|
+
});
|
|
51419
51422
|
var BoostRecipientValidator = mod.object({
|
|
51420
51423
|
to: LCNProfileValidator,
|
|
51421
51424
|
from: mod.string(),
|
|
51422
51425
|
received: mod.string().optional()
|
|
51423
51426
|
});
|
|
51427
|
+
var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
|
|
51428
|
+
records: BoostRecipientValidator.array()
|
|
51429
|
+
});
|
|
51424
51430
|
var LCNBoostClaimLinkSigningAuthorityValidator = mod.object({
|
|
51425
51431
|
endpoint: mod.string(),
|
|
51426
51432
|
name: mod.string(),
|