@learncard/learn-card-plugin 1.1.64 → 1.1.65
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/learn-card-plugin.cjs.development.js +5 -3
- package/dist/learn-card-plugin.cjs.development.js.map +2 -2
- package/dist/learn-card-plugin.cjs.production.min.js +1 -1
- package/dist/learn-card-plugin.cjs.production.min.js.map +2 -2
- package/dist/learn-card-plugin.esm.js +5 -3
- package/dist/learn-card-plugin.esm.js.map +2 -2
- package/package.json +4 -4
|
@@ -4554,7 +4554,8 @@ var SentCredentialInfoValidator = z.object({
|
|
|
4554
4554
|
to: z.string(),
|
|
4555
4555
|
from: z.string(),
|
|
4556
4556
|
sent: z.string().datetime(),
|
|
4557
|
-
received: z.string().datetime().optional()
|
|
4557
|
+
received: z.string().datetime().optional(),
|
|
4558
|
+
metadata: z.record(z.unknown()).optional()
|
|
4558
4559
|
});
|
|
4559
4560
|
var BoostPermissionsValidator = z.object({
|
|
4560
4561
|
role: z.string(),
|
|
@@ -4923,8 +4924,9 @@ var LCNNotificationDataValidator = z.object({
|
|
|
4923
4924
|
vcUris: z.array(z.string()).optional(),
|
|
4924
4925
|
vpUris: z.array(z.string()).optional(),
|
|
4925
4926
|
transaction: ConsentFlowTransactionValidator.optional(),
|
|
4926
|
-
inbox: LCNNotificationInboxValidator.optional()
|
|
4927
|
-
|
|
4927
|
+
inbox: LCNNotificationInboxValidator.optional(),
|
|
4928
|
+
metadata: z.record(z.unknown()).optional()
|
|
4929
|
+
}).passthrough();
|
|
4928
4930
|
var LCNNotificationValidator = z.object({
|
|
4929
4931
|
type: LCNNotificationTypeEnumValidator,
|
|
4930
4932
|
to: LCNProfileValidator.partial().and(z.object({ did: z.string() })),
|