@learncard/ceramic-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/ceramic-plugin.cjs.development.js +5 -3
- package/dist/ceramic-plugin.cjs.development.js.map +2 -2
- package/dist/ceramic-plugin.cjs.production.min.js +1 -1
- package/dist/ceramic-plugin.cjs.production.min.js.map +2 -2
- package/dist/ceramic-plugin.esm.js +5 -3
- package/dist/ceramic-plugin.esm.js.map +2 -2
- package/package.json +4 -4
|
@@ -54451,7 +54451,8 @@ var SentCredentialInfoValidator = z.object({
|
|
|
54451
54451
|
to: z.string(),
|
|
54452
54452
|
from: z.string(),
|
|
54453
54453
|
sent: z.string().datetime(),
|
|
54454
|
-
received: z.string().datetime().optional()
|
|
54454
|
+
received: z.string().datetime().optional(),
|
|
54455
|
+
metadata: z.record(z.unknown()).optional()
|
|
54455
54456
|
});
|
|
54456
54457
|
var BoostPermissionsValidator = z.object({
|
|
54457
54458
|
role: z.string(),
|
|
@@ -54820,8 +54821,9 @@ var LCNNotificationDataValidator = z.object({
|
|
|
54820
54821
|
vcUris: z.array(z.string()).optional(),
|
|
54821
54822
|
vpUris: z.array(z.string()).optional(),
|
|
54822
54823
|
transaction: ConsentFlowTransactionValidator.optional(),
|
|
54823
|
-
inbox: LCNNotificationInboxValidator.optional()
|
|
54824
|
-
|
|
54824
|
+
inbox: LCNNotificationInboxValidator.optional(),
|
|
54825
|
+
metadata: z.record(z.unknown()).optional()
|
|
54826
|
+
}).passthrough();
|
|
54825
54827
|
var LCNNotificationValidator = z.object({
|
|
54826
54828
|
type: LCNNotificationTypeEnumValidator,
|
|
54827
54829
|
to: LCNProfileValidator.partial().and(z.object({ did: z.string() })),
|