@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
|
@@ -4530,7 +4530,8 @@ var SentCredentialInfoValidator = z.object({
|
|
|
4530
4530
|
to: z.string(),
|
|
4531
4531
|
from: z.string(),
|
|
4532
4532
|
sent: z.string().datetime(),
|
|
4533
|
-
received: z.string().datetime().optional()
|
|
4533
|
+
received: z.string().datetime().optional(),
|
|
4534
|
+
metadata: z.record(z.unknown()).optional()
|
|
4534
4535
|
});
|
|
4535
4536
|
var BoostPermissionsValidator = z.object({
|
|
4536
4537
|
role: z.string(),
|
|
@@ -4899,8 +4900,9 @@ var LCNNotificationDataValidator = z.object({
|
|
|
4899
4900
|
vcUris: z.array(z.string()).optional(),
|
|
4900
4901
|
vpUris: z.array(z.string()).optional(),
|
|
4901
4902
|
transaction: ConsentFlowTransactionValidator.optional(),
|
|
4902
|
-
inbox: LCNNotificationInboxValidator.optional()
|
|
4903
|
-
|
|
4903
|
+
inbox: LCNNotificationInboxValidator.optional(),
|
|
4904
|
+
metadata: z.record(z.unknown()).optional()
|
|
4905
|
+
}).passthrough();
|
|
4904
4906
|
var LCNNotificationValidator = z.object({
|
|
4905
4907
|
type: LCNNotificationTypeEnumValidator,
|
|
4906
4908
|
to: LCNProfileValidator.partial().and(z.object({ did: z.string() })),
|