@learncard/learn-cloud-plugin 2.2.8 → 2.2.9

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.
@@ -12891,7 +12891,8 @@ var require_types_cjs_development = __commonJS2({
12891
12891
  to: z2.string(),
12892
12892
  from: z2.string(),
12893
12893
  sent: z2.string().datetime(),
12894
- received: z2.string().datetime().optional()
12894
+ received: z2.string().datetime().optional(),
12895
+ metadata: z2.record(z2.unknown()).optional()
12895
12896
  });
12896
12897
  var BoostPermissionsValidator2 = z2.object({
12897
12898
  role: z2.string(),
@@ -13260,8 +13261,9 @@ var require_types_cjs_development = __commonJS2({
13260
13261
  vcUris: z2.array(z2.string()).optional(),
13261
13262
  vpUris: z2.array(z2.string()).optional(),
13262
13263
  transaction: ConsentFlowTransactionValidator2.optional(),
13263
- inbox: LCNNotificationInboxValidator2.optional()
13264
- });
13264
+ inbox: LCNNotificationInboxValidator2.optional(),
13265
+ metadata: z2.record(z2.unknown()).optional()
13266
+ }).passthrough();
13265
13267
  var LCNNotificationValidator2 = z2.object({
13266
13268
  type: LCNNotificationTypeEnumValidator2,
13267
13269
  to: LCNProfileValidator2.partial().and(z2.object({ did: z2.string() })),
@@ -18225,7 +18227,8 @@ var SentCredentialInfoValidator = z.object({
18225
18227
  to: z.string(),
18226
18228
  from: z.string(),
18227
18229
  sent: z.string().datetime(),
18228
- received: z.string().datetime().optional()
18230
+ received: z.string().datetime().optional(),
18231
+ metadata: z.record(z.unknown()).optional()
18229
18232
  });
18230
18233
  var BoostPermissionsValidator = z.object({
18231
18234
  role: z.string(),
@@ -18594,8 +18597,9 @@ var LCNNotificationDataValidator = z.object({
18594
18597
  vcUris: z.array(z.string()).optional(),
18595
18598
  vpUris: z.array(z.string()).optional(),
18596
18599
  transaction: ConsentFlowTransactionValidator.optional(),
18597
- inbox: LCNNotificationInboxValidator.optional()
18598
- });
18600
+ inbox: LCNNotificationInboxValidator.optional(),
18601
+ metadata: z.record(z.unknown()).optional()
18602
+ }).passthrough();
18599
18603
  var LCNNotificationValidator = z.object({
18600
18604
  type: LCNNotificationTypeEnumValidator,
18601
18605
  to: LCNProfileValidator.partial().and(z.object({ did: z.string() })),