@learncard/network-brain-client 2.4.12 → 2.4.13

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.
@@ -4824,7 +4824,8 @@ var require_helpers_cjs_development = __commonJS({
4824
4824
  to: z.string(),
4825
4825
  from: z.string(),
4826
4826
  sent: z.string().datetime(),
4827
- received: z.string().datetime().optional()
4827
+ received: z.string().datetime().optional(),
4828
+ metadata: z.record(z.unknown()).optional()
4828
4829
  });
4829
4830
  var BoostPermissionsValidator = z.object({
4830
4831
  role: z.string(),
@@ -5193,8 +5194,9 @@ var require_helpers_cjs_development = __commonJS({
5193
5194
  vcUris: z.array(z.string()).optional(),
5194
5195
  vpUris: z.array(z.string()).optional(),
5195
5196
  transaction: ConsentFlowTransactionValidator.optional(),
5196
- inbox: LCNNotificationInboxValidator.optional()
5197
- });
5197
+ inbox: LCNNotificationInboxValidator.optional(),
5198
+ metadata: z.record(z.unknown()).optional()
5199
+ }).passthrough();
5198
5200
  var LCNNotificationValidator = z.object({
5199
5201
  type: LCNNotificationTypeEnumValidator,
5200
5202
  to: LCNProfileValidator.partial().and(z.object({ did: z.string() })),