@learncard/ceramic-plugin 1.0.20 → 1.0.21
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 +15 -1
- package/dist/ceramic-plugin.cjs.development.js.map +2 -2
- package/dist/ceramic-plugin.cjs.production.min.js +105 -105
- package/dist/ceramic-plugin.cjs.production.min.js.map +3 -3
- package/dist/ceramic-plugin.esm.js +15 -1
- package/dist/ceramic-plugin.esm.js.map +2 -2
- package/package.json +4 -4
|
@@ -53548,6 +53548,19 @@ var RegExpValidator = mod.instanceof(RegExp).or(
|
|
|
53548
53548
|
})
|
|
53549
53549
|
);
|
|
53550
53550
|
var StringQuery = mod.string().or(mod.object({ $in: mod.string().array() })).or(mod.object({ $regex: RegExpValidator }));
|
|
53551
|
+
var LCNProfileDisplayValidator = mod.object({
|
|
53552
|
+
backgroundColor: mod.string().optional(),
|
|
53553
|
+
backgroundImage: mod.string().optional(),
|
|
53554
|
+
fadeBackgroundImage: mod.boolean().optional(),
|
|
53555
|
+
repeatBackgroundImage: mod.boolean().optional(),
|
|
53556
|
+
fontColor: mod.string().optional(),
|
|
53557
|
+
accentColor: mod.string().optional(),
|
|
53558
|
+
accentFontColor: mod.string().optional(),
|
|
53559
|
+
idBackgroundImage: mod.string().optional(),
|
|
53560
|
+
fadeIdBackgroundImage: mod.boolean().optional(),
|
|
53561
|
+
idBackgroundColor: mod.string().optional(),
|
|
53562
|
+
repeatIdBackgroundImage: mod.boolean().optional()
|
|
53563
|
+
});
|
|
53551
53564
|
var LCNProfileValidator = mod.object({
|
|
53552
53565
|
profileId: mod.string().min(3).max(40),
|
|
53553
53566
|
displayName: mod.string().default(""),
|
|
@@ -53560,7 +53573,8 @@ var LCNProfileValidator = mod.object({
|
|
|
53560
53573
|
websiteLink: mod.string().optional(),
|
|
53561
53574
|
isServiceProfile: mod.boolean().default(false).optional(),
|
|
53562
53575
|
type: mod.string().optional(),
|
|
53563
|
-
notificationsWebhook: mod.string().url().startsWith("http").optional()
|
|
53576
|
+
notificationsWebhook: mod.string().url().startsWith("http").optional(),
|
|
53577
|
+
display: LCNProfileDisplayValidator.optional()
|
|
53564
53578
|
});
|
|
53565
53579
|
var LCNProfileQueryValidator = mod.object({
|
|
53566
53580
|
profileId: StringQuery,
|