@learncard/learn-cloud-plugin 2.0.23 → 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 +35 -4
- 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 +35 -4
- 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,
|
|
@@ -11281,7 +11296,8 @@ var require_types_cjs_development = __commonJS2({
|
|
|
11281
11296
|
var BoostRecipientValidator2 = mod2.object({
|
|
11282
11297
|
to: LCNProfileValidator2,
|
|
11283
11298
|
from: mod2.string(),
|
|
11284
|
-
received: mod2.string().optional()
|
|
11299
|
+
received: mod2.string().optional(),
|
|
11300
|
+
uri: mod2.string().optional()
|
|
11285
11301
|
});
|
|
11286
11302
|
var PaginatedBoostRecipientsValidator2 = PaginationResponseValidator2.extend({
|
|
11287
11303
|
records: BoostRecipientValidator2.array()
|
|
@@ -15238,6 +15254,19 @@ var RegExpValidator = mod.instanceof(RegExp).or(
|
|
|
15238
15254
|
})
|
|
15239
15255
|
);
|
|
15240
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
|
+
});
|
|
15241
15270
|
var LCNProfileValidator = mod.object({
|
|
15242
15271
|
profileId: mod.string().min(3).max(40),
|
|
15243
15272
|
displayName: mod.string().default(""),
|
|
@@ -15250,7 +15279,8 @@ var LCNProfileValidator = mod.object({
|
|
|
15250
15279
|
websiteLink: mod.string().optional(),
|
|
15251
15280
|
isServiceProfile: mod.boolean().default(false).optional(),
|
|
15252
15281
|
type: mod.string().optional(),
|
|
15253
|
-
notificationsWebhook: mod.string().url().startsWith("http").optional()
|
|
15282
|
+
notificationsWebhook: mod.string().url().startsWith("http").optional(),
|
|
15283
|
+
display: LCNProfileDisplayValidator.optional()
|
|
15254
15284
|
});
|
|
15255
15285
|
var LCNProfileQueryValidator = mod.object({
|
|
15256
15286
|
profileId: StringQuery,
|
|
@@ -15317,7 +15347,8 @@ var PaginatedBoostsValidator = PaginationResponseValidator.extend({
|
|
|
15317
15347
|
var BoostRecipientValidator = mod.object({
|
|
15318
15348
|
to: LCNProfileValidator,
|
|
15319
15349
|
from: mod.string(),
|
|
15320
|
-
received: mod.string().optional()
|
|
15350
|
+
received: mod.string().optional(),
|
|
15351
|
+
uri: mod.string().optional()
|
|
15321
15352
|
});
|
|
15322
15353
|
var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
|
|
15323
15354
|
records: BoostRecipientValidator.array()
|