@learncard/helpers 1.1.30 → 1.1.31
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.
|
@@ -4773,7 +4773,8 @@ var require_types_cjs_development = __commonJS({
|
|
|
4773
4773
|
to: z.string(),
|
|
4774
4774
|
from: z.string(),
|
|
4775
4775
|
sent: z.string().datetime(),
|
|
4776
|
-
received: z.string().datetime().optional()
|
|
4776
|
+
received: z.string().datetime().optional(),
|
|
4777
|
+
metadata: z.record(z.unknown()).optional()
|
|
4777
4778
|
});
|
|
4778
4779
|
var BoostPermissionsValidator = z.object({
|
|
4779
4780
|
role: z.string(),
|
|
@@ -5142,8 +5143,9 @@ var require_types_cjs_development = __commonJS({
|
|
|
5142
5143
|
vcUris: z.array(z.string()).optional(),
|
|
5143
5144
|
vpUris: z.array(z.string()).optional(),
|
|
5144
5145
|
transaction: ConsentFlowTransactionValidator.optional(),
|
|
5145
|
-
inbox: LCNNotificationInboxValidator.optional()
|
|
5146
|
-
|
|
5146
|
+
inbox: LCNNotificationInboxValidator.optional(),
|
|
5147
|
+
metadata: z.record(z.unknown()).optional()
|
|
5148
|
+
}).passthrough();
|
|
5147
5149
|
var LCNNotificationValidator = z.object({
|
|
5148
5150
|
type: LCNNotificationTypeEnumValidator,
|
|
5149
5151
|
to: LCNProfileValidator.partial().and(z.object({ did: z.string() })),
|