@learncard/idx-plugin 1.0.53 → 1.0.54

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.
@@ -12119,7 +12119,8 @@ var SentCredentialInfoValidator = z.object({
12119
12119
  to: z.string(),
12120
12120
  from: z.string(),
12121
12121
  sent: z.string().datetime(),
12122
- received: z.string().datetime().optional()
12122
+ received: z.string().datetime().optional(),
12123
+ metadata: z.record(z.unknown()).optional()
12123
12124
  });
12124
12125
  var BoostPermissionsValidator = z.object({
12125
12126
  role: z.string(),
@@ -12488,8 +12489,9 @@ var LCNNotificationDataValidator = z.object({
12488
12489
  vcUris: z.array(z.string()).optional(),
12489
12490
  vpUris: z.array(z.string()).optional(),
12490
12491
  transaction: ConsentFlowTransactionValidator.optional(),
12491
- inbox: LCNNotificationInboxValidator.optional()
12492
- });
12492
+ inbox: LCNNotificationInboxValidator.optional(),
12493
+ metadata: z.record(z.unknown()).optional()
12494
+ }).passthrough();
12493
12495
  var LCNNotificationValidator = z.object({
12494
12496
  type: LCNNotificationTypeEnumValidator,
12495
12497
  to: LCNProfileValidator.partial().and(z.object({ did: z.string() })),
@@ -68312,7 +68314,8 @@ var SentCredentialInfoValidator2 = z2.object({
68312
68314
  to: z2.string(),
68313
68315
  from: z2.string(),
68314
68316
  sent: z2.string().datetime(),
68315
- received: z2.string().datetime().optional()
68317
+ received: z2.string().datetime().optional(),
68318
+ metadata: z2.record(z2.unknown()).optional()
68316
68319
  });
68317
68320
  var BoostPermissionsValidator2 = z2.object({
68318
68321
  role: z2.string(),
@@ -68681,8 +68684,9 @@ var LCNNotificationDataValidator2 = z2.object({
68681
68684
  vcUris: z2.array(z2.string()).optional(),
68682
68685
  vpUris: z2.array(z2.string()).optional(),
68683
68686
  transaction: ConsentFlowTransactionValidator2.optional(),
68684
- inbox: LCNNotificationInboxValidator2.optional()
68685
- });
68687
+ inbox: LCNNotificationInboxValidator2.optional(),
68688
+ metadata: z2.record(z2.unknown()).optional()
68689
+ }).passthrough();
68686
68690
  var LCNNotificationValidator2 = z2.object({
68687
68691
  type: LCNNotificationTypeEnumValidator2,
68688
68692
  to: LCNProfileValidator2.partial().and(z2.object({ did: z2.string() })),