@learncard/network-plugin 2.5.15 → 2.5.17
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/lcn-plugin.cjs.development.js +21 -9
- package/dist/lcn-plugin.cjs.development.js.map +2 -2
- package/dist/lcn-plugin.cjs.production.min.js +1 -1
- package/dist/lcn-plugin.cjs.production.min.js.map +2 -2
- package/dist/lcn-plugin.esm.js +21 -9
- package/dist/lcn-plugin.esm.js.map +2 -2
- package/dist/types.d.ts +2 -2
- package/dist/types.d.ts.map +1 -1
- package/package.json +4 -4
|
@@ -7064,7 +7064,8 @@ var require_helpers_cjs_development = __commonJS({
|
|
|
7064
7064
|
"PRESENTATION_RECEIVED",
|
|
7065
7065
|
"CONSENT_FLOW_TRANSACTION",
|
|
7066
7066
|
"ISSUANCE_CLAIMED",
|
|
7067
|
-
"ISSUANCE_DELIVERED"
|
|
7067
|
+
"ISSUANCE_DELIVERED",
|
|
7068
|
+
"ISSUANCE_ERROR"
|
|
7068
7069
|
]);
|
|
7069
7070
|
var LCNNotificationMessageValidator2 = z2.object({
|
|
7070
7071
|
title: z2.string().optional(),
|
|
@@ -7181,8 +7182,10 @@ var require_helpers_cjs_development = __commonJS({
|
|
|
7181
7182
|
createdAt: z2.string(),
|
|
7182
7183
|
issuerDid: z2.string(),
|
|
7183
7184
|
webhookUrl: z2.string().optional(),
|
|
7184
|
-
|
|
7185
|
-
|
|
7185
|
+
signingAuthority: z2.object({
|
|
7186
|
+
endpoint: z2.string().optional(),
|
|
7187
|
+
name: z2.string().optional()
|
|
7188
|
+
}).optional()
|
|
7186
7189
|
});
|
|
7187
7190
|
var PaginatedInboxCredentialsValidator2 = z2.object({
|
|
7188
7191
|
hasMore: z2.boolean(),
|
|
@@ -7237,6 +7240,7 @@ var require_helpers_cjs_development = __commonJS({
|
|
|
7237
7240
|
var ClaimTokenValidator2 = z2.object({
|
|
7238
7241
|
token: z2.string(),
|
|
7239
7242
|
contactMethodId: z2.string(),
|
|
7243
|
+
autoVerifyContactMethod: z2.boolean().optional().default(false),
|
|
7240
7244
|
createdAt: z2.string(),
|
|
7241
7245
|
expiresAt: z2.string(),
|
|
7242
7246
|
used: z2.boolean()
|
|
@@ -12210,7 +12214,8 @@ var LCNNotificationTypeEnumValidator = z.enum([
|
|
|
12210
12214
|
"PRESENTATION_RECEIVED",
|
|
12211
12215
|
"CONSENT_FLOW_TRANSACTION",
|
|
12212
12216
|
"ISSUANCE_CLAIMED",
|
|
12213
|
-
"ISSUANCE_DELIVERED"
|
|
12217
|
+
"ISSUANCE_DELIVERED",
|
|
12218
|
+
"ISSUANCE_ERROR"
|
|
12214
12219
|
]);
|
|
12215
12220
|
var LCNNotificationMessageValidator = z.object({
|
|
12216
12221
|
title: z.string().optional(),
|
|
@@ -12327,8 +12332,10 @@ var InboxCredentialValidator = z.object({
|
|
|
12327
12332
|
createdAt: z.string(),
|
|
12328
12333
|
issuerDid: z.string(),
|
|
12329
12334
|
webhookUrl: z.string().optional(),
|
|
12330
|
-
|
|
12331
|
-
|
|
12335
|
+
signingAuthority: z.object({
|
|
12336
|
+
endpoint: z.string().optional(),
|
|
12337
|
+
name: z.string().optional()
|
|
12338
|
+
}).optional()
|
|
12332
12339
|
});
|
|
12333
12340
|
var PaginatedInboxCredentialsValidator = z.object({
|
|
12334
12341
|
hasMore: z.boolean(),
|
|
@@ -12383,6 +12390,7 @@ var IssueInboxCredentialResponseValidator = z.object({
|
|
|
12383
12390
|
var ClaimTokenValidator = z.object({
|
|
12384
12391
|
token: z.string(),
|
|
12385
12392
|
contactMethodId: z.string(),
|
|
12393
|
+
autoVerifyContactMethod: z.boolean().optional().default(false),
|
|
12386
12394
|
createdAt: z.string(),
|
|
12387
12395
|
expiresAt: z.string(),
|
|
12388
12396
|
used: z.boolean()
|
|
@@ -17427,7 +17435,8 @@ var require_types_cjs_development = __commonJS2({
|
|
|
17427
17435
|
"PRESENTATION_RECEIVED",
|
|
17428
17436
|
"CONSENT_FLOW_TRANSACTION",
|
|
17429
17437
|
"ISSUANCE_CLAIMED",
|
|
17430
|
-
"ISSUANCE_DELIVERED"
|
|
17438
|
+
"ISSUANCE_DELIVERED",
|
|
17439
|
+
"ISSUANCE_ERROR"
|
|
17431
17440
|
]);
|
|
17432
17441
|
var LCNNotificationMessageValidator2 = z2.object({
|
|
17433
17442
|
title: z2.string().optional(),
|
|
@@ -17544,8 +17553,10 @@ var require_types_cjs_development = __commonJS2({
|
|
|
17544
17553
|
createdAt: z2.string(),
|
|
17545
17554
|
issuerDid: z2.string(),
|
|
17546
17555
|
webhookUrl: z2.string().optional(),
|
|
17547
|
-
|
|
17548
|
-
|
|
17556
|
+
signingAuthority: z2.object({
|
|
17557
|
+
endpoint: z2.string().optional(),
|
|
17558
|
+
name: z2.string().optional()
|
|
17559
|
+
}).optional()
|
|
17549
17560
|
});
|
|
17550
17561
|
var PaginatedInboxCredentialsValidator2 = z2.object({
|
|
17551
17562
|
hasMore: z2.boolean(),
|
|
@@ -17600,6 +17611,7 @@ var require_types_cjs_development = __commonJS2({
|
|
|
17600
17611
|
var ClaimTokenValidator2 = z2.object({
|
|
17601
17612
|
token: z2.string(),
|
|
17602
17613
|
contactMethodId: z2.string(),
|
|
17614
|
+
autoVerifyContactMethod: z2.boolean().optional().default(false),
|
|
17603
17615
|
createdAt: z2.string(),
|
|
17604
17616
|
expiresAt: z2.string(),
|
|
17605
17617
|
used: z2.boolean()
|