@learncard/learn-cloud-plugin 2.2.8 → 2.2.9
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-cloud-plugin.cjs.development.js +10 -6
- package/dist/learn-cloud-plugin.cjs.development.js.map +2 -2
- package/dist/learn-cloud-plugin.cjs.production.min.js +1 -1
- package/dist/learn-cloud-plugin.cjs.production.min.js.map +2 -2
- package/dist/learn-cloud-plugin.esm.js +10 -6
- package/dist/learn-cloud-plugin.esm.js.map +2 -2
- package/package.json +7 -7
|
@@ -12878,7 +12878,8 @@ var require_types_cjs_development = __commonJS2({
|
|
|
12878
12878
|
to: z2.string(),
|
|
12879
12879
|
from: z2.string(),
|
|
12880
12880
|
sent: z2.string().datetime(),
|
|
12881
|
-
received: z2.string().datetime().optional()
|
|
12881
|
+
received: z2.string().datetime().optional(),
|
|
12882
|
+
metadata: z2.record(z2.unknown()).optional()
|
|
12882
12883
|
});
|
|
12883
12884
|
var BoostPermissionsValidator2 = z2.object({
|
|
12884
12885
|
role: z2.string(),
|
|
@@ -13247,8 +13248,9 @@ var require_types_cjs_development = __commonJS2({
|
|
|
13247
13248
|
vcUris: z2.array(z2.string()).optional(),
|
|
13248
13249
|
vpUris: z2.array(z2.string()).optional(),
|
|
13249
13250
|
transaction: ConsentFlowTransactionValidator2.optional(),
|
|
13250
|
-
inbox: LCNNotificationInboxValidator2.optional()
|
|
13251
|
-
|
|
13251
|
+
inbox: LCNNotificationInboxValidator2.optional(),
|
|
13252
|
+
metadata: z2.record(z2.unknown()).optional()
|
|
13253
|
+
}).passthrough();
|
|
13252
13254
|
var LCNNotificationValidator2 = z2.object({
|
|
13253
13255
|
type: LCNNotificationTypeEnumValidator2,
|
|
13254
13256
|
to: LCNProfileValidator2.partial().and(z2.object({ did: z2.string() })),
|
|
@@ -18212,7 +18214,8 @@ var SentCredentialInfoValidator = z.object({
|
|
|
18212
18214
|
to: z.string(),
|
|
18213
18215
|
from: z.string(),
|
|
18214
18216
|
sent: z.string().datetime(),
|
|
18215
|
-
received: z.string().datetime().optional()
|
|
18217
|
+
received: z.string().datetime().optional(),
|
|
18218
|
+
metadata: z.record(z.unknown()).optional()
|
|
18216
18219
|
});
|
|
18217
18220
|
var BoostPermissionsValidator = z.object({
|
|
18218
18221
|
role: z.string(),
|
|
@@ -18581,8 +18584,9 @@ var LCNNotificationDataValidator = z.object({
|
|
|
18581
18584
|
vcUris: z.array(z.string()).optional(),
|
|
18582
18585
|
vpUris: z.array(z.string()).optional(),
|
|
18583
18586
|
transaction: ConsentFlowTransactionValidator.optional(),
|
|
18584
|
-
inbox: LCNNotificationInboxValidator.optional()
|
|
18585
|
-
|
|
18587
|
+
inbox: LCNNotificationInboxValidator.optional(),
|
|
18588
|
+
metadata: z.record(z.unknown()).optional()
|
|
18589
|
+
}).passthrough();
|
|
18586
18590
|
var LCNNotificationValidator = z.object({
|
|
18587
18591
|
type: LCNNotificationTypeEnumValidator,
|
|
18588
18592
|
to: LCNProfileValidator.partial().and(z.object({ did: z.string() })),
|