@learncard/idx-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/idx-plugin.cjs.development.js +10 -6
- package/dist/idx-plugin.cjs.development.js.map +2 -2
- package/dist/idx-plugin.cjs.production.min.js +28 -28
- package/dist/idx-plugin.cjs.production.min.js.map +3 -3
- package/dist/idx-plugin.esm.js +10 -6
- package/dist/idx-plugin.esm.js.map +2 -2
- package/package.json +4 -4
package/dist/idx-plugin.esm.js
CHANGED
|
@@ -12113,7 +12113,8 @@ var SentCredentialInfoValidator = z.object({
|
|
|
12113
12113
|
to: z.string(),
|
|
12114
12114
|
from: z.string(),
|
|
12115
12115
|
sent: z.string().datetime(),
|
|
12116
|
-
received: z.string().datetime().optional()
|
|
12116
|
+
received: z.string().datetime().optional(),
|
|
12117
|
+
metadata: z.record(z.unknown()).optional()
|
|
12117
12118
|
});
|
|
12118
12119
|
var BoostPermissionsValidator = z.object({
|
|
12119
12120
|
role: z.string(),
|
|
@@ -12482,8 +12483,9 @@ var LCNNotificationDataValidator = z.object({
|
|
|
12482
12483
|
vcUris: z.array(z.string()).optional(),
|
|
12483
12484
|
vpUris: z.array(z.string()).optional(),
|
|
12484
12485
|
transaction: ConsentFlowTransactionValidator.optional(),
|
|
12485
|
-
inbox: LCNNotificationInboxValidator.optional()
|
|
12486
|
-
|
|
12486
|
+
inbox: LCNNotificationInboxValidator.optional(),
|
|
12487
|
+
metadata: z.record(z.unknown()).optional()
|
|
12488
|
+
}).passthrough();
|
|
12487
12489
|
var LCNNotificationValidator = z.object({
|
|
12488
12490
|
type: LCNNotificationTypeEnumValidator,
|
|
12489
12491
|
to: LCNProfileValidator.partial().and(z.object({ did: z.string() })),
|
|
@@ -68306,7 +68308,8 @@ var SentCredentialInfoValidator2 = z2.object({
|
|
|
68306
68308
|
to: z2.string(),
|
|
68307
68309
|
from: z2.string(),
|
|
68308
68310
|
sent: z2.string().datetime(),
|
|
68309
|
-
received: z2.string().datetime().optional()
|
|
68311
|
+
received: z2.string().datetime().optional(),
|
|
68312
|
+
metadata: z2.record(z2.unknown()).optional()
|
|
68310
68313
|
});
|
|
68311
68314
|
var BoostPermissionsValidator2 = z2.object({
|
|
68312
68315
|
role: z2.string(),
|
|
@@ -68675,8 +68678,9 @@ var LCNNotificationDataValidator2 = z2.object({
|
|
|
68675
68678
|
vcUris: z2.array(z2.string()).optional(),
|
|
68676
68679
|
vpUris: z2.array(z2.string()).optional(),
|
|
68677
68680
|
transaction: ConsentFlowTransactionValidator2.optional(),
|
|
68678
|
-
inbox: LCNNotificationInboxValidator2.optional()
|
|
68679
|
-
|
|
68681
|
+
inbox: LCNNotificationInboxValidator2.optional(),
|
|
68682
|
+
metadata: z2.record(z2.unknown()).optional()
|
|
68683
|
+
}).passthrough();
|
|
68680
68684
|
var LCNNotificationValidator2 = z2.object({
|
|
68681
68685
|
type: LCNNotificationTypeEnumValidator2,
|
|
68682
68686
|
to: LCNProfileValidator2.partial().and(z2.object({ did: z2.string() })),
|