@learncard/learn-cloud-plugin 2.0.24 → 2.0.25
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/learn-cloud-plugin.cjs.development.js +31 -2
- package/dist/learn-cloud-plugin.cjs.development.js.map +3 -3
- package/dist/learn-cloud-plugin.cjs.production.min.js +7 -7
- package/dist/learn-cloud-plugin.cjs.production.min.js.map +3 -3
- package/dist/learn-cloud-plugin.esm.js +31 -2
- package/dist/learn-cloud-plugin.esm.js.map +3 -3
- package/package.json +7 -7
|
@@ -7382,6 +7382,7 @@ var require_types_cjs_development = __commonJS2({
|
|
|
7382
7382
|
LCNNotificationTypeEnumValidator: () => LCNNotificationTypeEnumValidator2,
|
|
7383
7383
|
LCNNotificationValidator: () => LCNNotificationValidator2,
|
|
7384
7384
|
LCNProfileConnectionStatusEnum: () => LCNProfileConnectionStatusEnum2,
|
|
7385
|
+
LCNProfileDisplayValidator: () => LCNProfileDisplayValidator2,
|
|
7385
7386
|
LCNProfileQueryValidator: () => LCNProfileQueryValidator2,
|
|
7386
7387
|
LCNProfileValidator: () => LCNProfileValidator2,
|
|
7387
7388
|
LCNSigningAuthorityForUserValidator: () => LCNSigningAuthorityForUserValidator2,
|
|
@@ -11202,6 +11203,19 @@ var require_types_cjs_development = __commonJS2({
|
|
|
11202
11203
|
})
|
|
11203
11204
|
);
|
|
11204
11205
|
var StringQuery2 = mod2.string().or(mod2.object({ $in: mod2.string().array() })).or(mod2.object({ $regex: RegExpValidator2 }));
|
|
11206
|
+
var LCNProfileDisplayValidator2 = mod2.object({
|
|
11207
|
+
backgroundColor: mod2.string().optional(),
|
|
11208
|
+
backgroundImage: mod2.string().optional(),
|
|
11209
|
+
fadeBackgroundImage: mod2.boolean().optional(),
|
|
11210
|
+
repeatBackgroundImage: mod2.boolean().optional(),
|
|
11211
|
+
fontColor: mod2.string().optional(),
|
|
11212
|
+
accentColor: mod2.string().optional(),
|
|
11213
|
+
accentFontColor: mod2.string().optional(),
|
|
11214
|
+
idBackgroundImage: mod2.string().optional(),
|
|
11215
|
+
fadeIdBackgroundImage: mod2.boolean().optional(),
|
|
11216
|
+
idBackgroundColor: mod2.string().optional(),
|
|
11217
|
+
repeatIdBackgroundImage: mod2.boolean().optional()
|
|
11218
|
+
});
|
|
11205
11219
|
var LCNProfileValidator2 = mod2.object({
|
|
11206
11220
|
profileId: mod2.string().min(3).max(40),
|
|
11207
11221
|
displayName: mod2.string().default(""),
|
|
@@ -11214,7 +11228,8 @@ var require_types_cjs_development = __commonJS2({
|
|
|
11214
11228
|
websiteLink: mod2.string().optional(),
|
|
11215
11229
|
isServiceProfile: mod2.boolean().default(false).optional(),
|
|
11216
11230
|
type: mod2.string().optional(),
|
|
11217
|
-
notificationsWebhook: mod2.string().url().startsWith("http").optional()
|
|
11231
|
+
notificationsWebhook: mod2.string().url().startsWith("http").optional(),
|
|
11232
|
+
display: LCNProfileDisplayValidator2.optional()
|
|
11218
11233
|
});
|
|
11219
11234
|
var LCNProfileQueryValidator2 = mod2.object({
|
|
11220
11235
|
profileId: StringQuery2,
|
|
@@ -15239,6 +15254,19 @@ var RegExpValidator = mod.instanceof(RegExp).or(
|
|
|
15239
15254
|
})
|
|
15240
15255
|
);
|
|
15241
15256
|
var StringQuery = mod.string().or(mod.object({ $in: mod.string().array() })).or(mod.object({ $regex: RegExpValidator }));
|
|
15257
|
+
var LCNProfileDisplayValidator = mod.object({
|
|
15258
|
+
backgroundColor: mod.string().optional(),
|
|
15259
|
+
backgroundImage: mod.string().optional(),
|
|
15260
|
+
fadeBackgroundImage: mod.boolean().optional(),
|
|
15261
|
+
repeatBackgroundImage: mod.boolean().optional(),
|
|
15262
|
+
fontColor: mod.string().optional(),
|
|
15263
|
+
accentColor: mod.string().optional(),
|
|
15264
|
+
accentFontColor: mod.string().optional(),
|
|
15265
|
+
idBackgroundImage: mod.string().optional(),
|
|
15266
|
+
fadeIdBackgroundImage: mod.boolean().optional(),
|
|
15267
|
+
idBackgroundColor: mod.string().optional(),
|
|
15268
|
+
repeatIdBackgroundImage: mod.boolean().optional()
|
|
15269
|
+
});
|
|
15242
15270
|
var LCNProfileValidator = mod.object({
|
|
15243
15271
|
profileId: mod.string().min(3).max(40),
|
|
15244
15272
|
displayName: mod.string().default(""),
|
|
@@ -15251,7 +15279,8 @@ var LCNProfileValidator = mod.object({
|
|
|
15251
15279
|
websiteLink: mod.string().optional(),
|
|
15252
15280
|
isServiceProfile: mod.boolean().default(false).optional(),
|
|
15253
15281
|
type: mod.string().optional(),
|
|
15254
|
-
notificationsWebhook: mod.string().url().startsWith("http").optional()
|
|
15282
|
+
notificationsWebhook: mod.string().url().startsWith("http").optional(),
|
|
15283
|
+
display: LCNProfileDisplayValidator.optional()
|
|
15255
15284
|
});
|
|
15256
15285
|
var LCNProfileQueryValidator = mod.object({
|
|
15257
15286
|
profileId: StringQuery,
|