@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
|
@@ -4830,7 +4830,8 @@ var require_types_cjs_development = __commonJS({
|
|
|
4830
4830
|
to: z.string(),
|
|
4831
4831
|
from: z.string(),
|
|
4832
4832
|
sent: z.string().datetime(),
|
|
4833
|
-
received: z.string().datetime().optional()
|
|
4833
|
+
received: z.string().datetime().optional(),
|
|
4834
|
+
metadata: z.record(z.unknown()).optional()
|
|
4834
4835
|
});
|
|
4835
4836
|
var BoostPermissionsValidator = z.object({
|
|
4836
4837
|
role: z.string(),
|
|
@@ -5199,8 +5200,9 @@ var require_types_cjs_development = __commonJS({
|
|
|
5199
5200
|
vcUris: z.array(z.string()).optional(),
|
|
5200
5201
|
vpUris: z.array(z.string()).optional(),
|
|
5201
5202
|
transaction: ConsentFlowTransactionValidator.optional(),
|
|
5202
|
-
inbox: LCNNotificationInboxValidator.optional()
|
|
5203
|
-
|
|
5203
|
+
inbox: LCNNotificationInboxValidator.optional(),
|
|
5204
|
+
metadata: z.record(z.unknown()).optional()
|
|
5205
|
+
}).passthrough();
|
|
5204
5206
|
var LCNNotificationValidator = z.object({
|
|
5205
5207
|
type: LCNNotificationTypeEnumValidator,
|
|
5206
5208
|
to: LCNProfileValidator.partial().and(z.object({ did: z.string() })),
|