@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.
package/dist/helpers.esm.js
CHANGED
|
@@ -4768,7 +4768,8 @@ var require_types_cjs_development = __commonJS({
|
|
|
4768
4768
|
to: z.string(),
|
|
4769
4769
|
from: z.string(),
|
|
4770
4770
|
sent: z.string().datetime(),
|
|
4771
|
-
received: z.string().datetime().optional()
|
|
4771
|
+
received: z.string().datetime().optional(),
|
|
4772
|
+
metadata: z.record(z.unknown()).optional()
|
|
4772
4773
|
});
|
|
4773
4774
|
var BoostPermissionsValidator = z.object({
|
|
4774
4775
|
role: z.string(),
|
|
@@ -5137,8 +5138,9 @@ var require_types_cjs_development = __commonJS({
|
|
|
5137
5138
|
vcUris: z.array(z.string()).optional(),
|
|
5138
5139
|
vpUris: z.array(z.string()).optional(),
|
|
5139
5140
|
transaction: ConsentFlowTransactionValidator.optional(),
|
|
5140
|
-
inbox: LCNNotificationInboxValidator.optional()
|
|
5141
|
-
|
|
5141
|
+
inbox: LCNNotificationInboxValidator.optional(),
|
|
5142
|
+
metadata: z.record(z.unknown()).optional()
|
|
5143
|
+
}).passthrough();
|
|
5142
5144
|
var LCNNotificationValidator = z.object({
|
|
5143
5145
|
type: LCNNotificationTypeEnumValidator,
|
|
5144
5146
|
to: LCNProfileValidator.partial().and(z.object({ did: z.string() })),
|