@learncard/didkey-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.
- package/dist/didkey-plugin.cjs.development.js +5 -3
- package/dist/didkey-plugin.cjs.development.js.map +2 -2
- package/dist/didkey-plugin.cjs.production.min.js +1 -1
- package/dist/didkey-plugin.cjs.production.min.js.map +2 -2
- package/dist/didkey-plugin.esm.js +5 -3
- package/dist/didkey-plugin.esm.js.map +2 -2
- package/package.json +4 -4
|
@@ -4806,7 +4806,8 @@ var require_types_cjs_development = __commonJS({
|
|
|
4806
4806
|
to: z.string(),
|
|
4807
4807
|
from: z.string(),
|
|
4808
4808
|
sent: z.string().datetime(),
|
|
4809
|
-
received: z.string().datetime().optional()
|
|
4809
|
+
received: z.string().datetime().optional(),
|
|
4810
|
+
metadata: z.record(z.unknown()).optional()
|
|
4810
4811
|
});
|
|
4811
4812
|
var BoostPermissionsValidator = z.object({
|
|
4812
4813
|
role: z.string(),
|
|
@@ -5175,8 +5176,9 @@ var require_types_cjs_development = __commonJS({
|
|
|
5175
5176
|
vcUris: z.array(z.string()).optional(),
|
|
5176
5177
|
vpUris: z.array(z.string()).optional(),
|
|
5177
5178
|
transaction: ConsentFlowTransactionValidator.optional(),
|
|
5178
|
-
inbox: LCNNotificationInboxValidator.optional()
|
|
5179
|
-
|
|
5179
|
+
inbox: LCNNotificationInboxValidator.optional(),
|
|
5180
|
+
metadata: z.record(z.unknown()).optional()
|
|
5181
|
+
}).passthrough();
|
|
5180
5182
|
var LCNNotificationValidator = z.object({
|
|
5181
5183
|
type: LCNNotificationTypeEnumValidator,
|
|
5182
5184
|
to: LCNProfileValidator.partial().and(z.object({ did: z.string() })),
|