@learncard/ceramic-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.
@@ -54455,7 +54455,8 @@ var SentCredentialInfoValidator = z.object({
54455
54455
  to: z.string(),
54456
54456
  from: z.string(),
54457
54457
  sent: z.string().datetime(),
54458
- received: z.string().datetime().optional()
54458
+ received: z.string().datetime().optional(),
54459
+ metadata: z.record(z.unknown()).optional()
54459
54460
  });
54460
54461
  var BoostPermissionsValidator = z.object({
54461
54462
  role: z.string(),
@@ -54824,8 +54825,9 @@ var LCNNotificationDataValidator = z.object({
54824
54825
  vcUris: z.array(z.string()).optional(),
54825
54826
  vpUris: z.array(z.string()).optional(),
54826
54827
  transaction: ConsentFlowTransactionValidator.optional(),
54827
- inbox: LCNNotificationInboxValidator.optional()
54828
- });
54828
+ inbox: LCNNotificationInboxValidator.optional(),
54829
+ metadata: z.record(z.unknown()).optional()
54830
+ }).passthrough();
54829
54831
  var LCNNotificationValidator = z.object({
54830
54832
  type: LCNNotificationTypeEnumValidator,
54831
54833
  to: LCNProfileValidator.partial().and(z.object({ did: z.string() })),