@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.
@@ -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,
@@ -11268,7 +11283,8 @@ var require_types_cjs_development = __commonJS2({
11268
11283
  var BoostRecipientValidator2 = mod2.object({
11269
11284
  to: LCNProfileValidator2,
11270
11285
  from: mod2.string(),
11271
- received: mod2.string().optional()
11286
+ received: mod2.string().optional(),
11287
+ uri: mod2.string().optional()
11272
11288
  });
11273
11289
  var PaginatedBoostRecipientsValidator2 = PaginationResponseValidator2.extend({
11274
11290
  records: BoostRecipientValidator2.array()
@@ -15225,6 +15241,19 @@ var RegExpValidator = mod.instanceof(RegExp).or(
15225
15241
  })
15226
15242
  );
15227
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
+ });
15228
15257
  var LCNProfileValidator = mod.object({
15229
15258
  profileId: mod.string().min(3).max(40),
15230
15259
  displayName: mod.string().default(""),
@@ -15237,7 +15266,8 @@ var LCNProfileValidator = mod.object({
15237
15266
  websiteLink: mod.string().optional(),
15238
15267
  isServiceProfile: mod.boolean().default(false).optional(),
15239
15268
  type: mod.string().optional(),
15240
- notificationsWebhook: mod.string().url().startsWith("http").optional()
15269
+ notificationsWebhook: mod.string().url().startsWith("http").optional(),
15270
+ display: LCNProfileDisplayValidator.optional()
15241
15271
  });
15242
15272
  var LCNProfileQueryValidator = mod.object({
15243
15273
  profileId: StringQuery,
@@ -15304,7 +15334,8 @@ var PaginatedBoostsValidator = PaginationResponseValidator.extend({
15304
15334
  var BoostRecipientValidator = mod.object({
15305
15335
  to: LCNProfileValidator,
15306
15336
  from: mod.string(),
15307
- received: mod.string().optional()
15337
+ received: mod.string().optional(),
15338
+ uri: mod.string().optional()
15308
15339
  });
15309
15340
  var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
15310
15341
  records: BoostRecipientValidator.array()