@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
|
@@ -7369,6 +7369,7 @@ var require_types_cjs_development = __commonJS2({
|
|
|
7369
7369
|
LCNNotificationTypeEnumValidator: () => LCNNotificationTypeEnumValidator2,
|
|
7370
7370
|
LCNNotificationValidator: () => LCNNotificationValidator2,
|
|
7371
7371
|
LCNProfileConnectionStatusEnum: () => LCNProfileConnectionStatusEnum2,
|
|
7372
|
+
LCNProfileDisplayValidator: () => LCNProfileDisplayValidator2,
|
|
7372
7373
|
LCNProfileQueryValidator: () => LCNProfileQueryValidator2,
|
|
7373
7374
|
LCNProfileValidator: () => LCNProfileValidator2,
|
|
7374
7375
|
LCNSigningAuthorityForUserValidator: () => LCNSigningAuthorityForUserValidator2,
|
|
@@ -11189,6 +11190,19 @@ var require_types_cjs_development = __commonJS2({
|
|
|
11189
11190
|
})
|
|
11190
11191
|
);
|
|
11191
11192
|
var StringQuery2 = mod2.string().or(mod2.object({ $in: mod2.string().array() })).or(mod2.object({ $regex: RegExpValidator2 }));
|
|
11193
|
+
var LCNProfileDisplayValidator2 = mod2.object({
|
|
11194
|
+
backgroundColor: mod2.string().optional(),
|
|
11195
|
+
backgroundImage: mod2.string().optional(),
|
|
11196
|
+
fadeBackgroundImage: mod2.boolean().optional(),
|
|
11197
|
+
repeatBackgroundImage: mod2.boolean().optional(),
|
|
11198
|
+
fontColor: mod2.string().optional(),
|
|
11199
|
+
accentColor: mod2.string().optional(),
|
|
11200
|
+
accentFontColor: mod2.string().optional(),
|
|
11201
|
+
idBackgroundImage: mod2.string().optional(),
|
|
11202
|
+
fadeIdBackgroundImage: mod2.boolean().optional(),
|
|
11203
|
+
idBackgroundColor: mod2.string().optional(),
|
|
11204
|
+
repeatIdBackgroundImage: mod2.boolean().optional()
|
|
11205
|
+
});
|
|
11192
11206
|
var LCNProfileValidator2 = mod2.object({
|
|
11193
11207
|
profileId: mod2.string().min(3).max(40),
|
|
11194
11208
|
displayName: mod2.string().default(""),
|
|
@@ -11201,7 +11215,8 @@ var require_types_cjs_development = __commonJS2({
|
|
|
11201
11215
|
websiteLink: mod2.string().optional(),
|
|
11202
11216
|
isServiceProfile: mod2.boolean().default(false).optional(),
|
|
11203
11217
|
type: mod2.string().optional(),
|
|
11204
|
-
notificationsWebhook: mod2.string().url().startsWith("http").optional()
|
|
11218
|
+
notificationsWebhook: mod2.string().url().startsWith("http").optional(),
|
|
11219
|
+
display: LCNProfileDisplayValidator2.optional()
|
|
11205
11220
|
});
|
|
11206
11221
|
var LCNProfileQueryValidator2 = mod2.object({
|
|
11207
11222
|
profileId: StringQuery2,
|
|
@@ -15226,6 +15241,19 @@ var RegExpValidator = mod.instanceof(RegExp).or(
|
|
|
15226
15241
|
})
|
|
15227
15242
|
);
|
|
15228
15243
|
var StringQuery = mod.string().or(mod.object({ $in: mod.string().array() })).or(mod.object({ $regex: RegExpValidator }));
|
|
15244
|
+
var LCNProfileDisplayValidator = mod.object({
|
|
15245
|
+
backgroundColor: mod.string().optional(),
|
|
15246
|
+
backgroundImage: mod.string().optional(),
|
|
15247
|
+
fadeBackgroundImage: mod.boolean().optional(),
|
|
15248
|
+
repeatBackgroundImage: mod.boolean().optional(),
|
|
15249
|
+
fontColor: mod.string().optional(),
|
|
15250
|
+
accentColor: mod.string().optional(),
|
|
15251
|
+
accentFontColor: mod.string().optional(),
|
|
15252
|
+
idBackgroundImage: mod.string().optional(),
|
|
15253
|
+
fadeIdBackgroundImage: mod.boolean().optional(),
|
|
15254
|
+
idBackgroundColor: mod.string().optional(),
|
|
15255
|
+
repeatIdBackgroundImage: mod.boolean().optional()
|
|
15256
|
+
});
|
|
15229
15257
|
var LCNProfileValidator = mod.object({
|
|
15230
15258
|
profileId: mod.string().min(3).max(40),
|
|
15231
15259
|
displayName: mod.string().default(""),
|
|
@@ -15238,7 +15266,8 @@ var LCNProfileValidator = mod.object({
|
|
|
15238
15266
|
websiteLink: mod.string().optional(),
|
|
15239
15267
|
isServiceProfile: mod.boolean().default(false).optional(),
|
|
15240
15268
|
type: mod.string().optional(),
|
|
15241
|
-
notificationsWebhook: mod.string().url().startsWith("http").optional()
|
|
15269
|
+
notificationsWebhook: mod.string().url().startsWith("http").optional(),
|
|
15270
|
+
display: LCNProfileDisplayValidator.optional()
|
|
15242
15271
|
});
|
|
15243
15272
|
var LCNProfileQueryValidator = mod.object({
|
|
15244
15273
|
profileId: StringQuery,
|