@learncard/learn-cloud-plugin 2.1.39 → 2.1.40
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 +14 -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 +14 -6
- package/dist/learn-cloud-plugin.esm.js.map +2 -2
- package/package.json +4 -4
|
@@ -13123,7 +13123,8 @@ var require_types_cjs_development = __commonJS2({
|
|
|
13123
13123
|
"PRESENTATION_RECEIVED",
|
|
13124
13124
|
"CONSENT_FLOW_TRANSACTION",
|
|
13125
13125
|
"ISSUANCE_CLAIMED",
|
|
13126
|
-
"ISSUANCE_DELIVERED"
|
|
13126
|
+
"ISSUANCE_DELIVERED",
|
|
13127
|
+
"ISSUANCE_ERROR"
|
|
13127
13128
|
]);
|
|
13128
13129
|
var LCNNotificationMessageValidator2 = z2.object({
|
|
13129
13130
|
title: z2.string().optional(),
|
|
@@ -13240,8 +13241,10 @@ var require_types_cjs_development = __commonJS2({
|
|
|
13240
13241
|
createdAt: z2.string(),
|
|
13241
13242
|
issuerDid: z2.string(),
|
|
13242
13243
|
webhookUrl: z2.string().optional(),
|
|
13243
|
-
|
|
13244
|
-
|
|
13244
|
+
signingAuthority: z2.object({
|
|
13245
|
+
endpoint: z2.string().optional(),
|
|
13246
|
+
name: z2.string().optional()
|
|
13247
|
+
}).optional()
|
|
13245
13248
|
});
|
|
13246
13249
|
var PaginatedInboxCredentialsValidator2 = z2.object({
|
|
13247
13250
|
hasMore: z2.boolean(),
|
|
@@ -13296,6 +13299,7 @@ var require_types_cjs_development = __commonJS2({
|
|
|
13296
13299
|
var ClaimTokenValidator2 = z2.object({
|
|
13297
13300
|
token: z2.string(),
|
|
13298
13301
|
contactMethodId: z2.string(),
|
|
13302
|
+
autoVerifyContactMethod: z2.boolean().optional().default(false),
|
|
13299
13303
|
createdAt: z2.string(),
|
|
13300
13304
|
expiresAt: z2.string(),
|
|
13301
13305
|
used: z2.boolean()
|
|
@@ -18137,7 +18141,8 @@ var LCNNotificationTypeEnumValidator = z.enum([
|
|
|
18137
18141
|
"PRESENTATION_RECEIVED",
|
|
18138
18142
|
"CONSENT_FLOW_TRANSACTION",
|
|
18139
18143
|
"ISSUANCE_CLAIMED",
|
|
18140
|
-
"ISSUANCE_DELIVERED"
|
|
18144
|
+
"ISSUANCE_DELIVERED",
|
|
18145
|
+
"ISSUANCE_ERROR"
|
|
18141
18146
|
]);
|
|
18142
18147
|
var LCNNotificationMessageValidator = z.object({
|
|
18143
18148
|
title: z.string().optional(),
|
|
@@ -18254,8 +18259,10 @@ var InboxCredentialValidator = z.object({
|
|
|
18254
18259
|
createdAt: z.string(),
|
|
18255
18260
|
issuerDid: z.string(),
|
|
18256
18261
|
webhookUrl: z.string().optional(),
|
|
18257
|
-
|
|
18258
|
-
|
|
18262
|
+
signingAuthority: z.object({
|
|
18263
|
+
endpoint: z.string().optional(),
|
|
18264
|
+
name: z.string().optional()
|
|
18265
|
+
}).optional()
|
|
18259
18266
|
});
|
|
18260
18267
|
var PaginatedInboxCredentialsValidator = z.object({
|
|
18261
18268
|
hasMore: z.boolean(),
|
|
@@ -18310,6 +18317,7 @@ var IssueInboxCredentialResponseValidator = z.object({
|
|
|
18310
18317
|
var ClaimTokenValidator = z.object({
|
|
18311
18318
|
token: z.string(),
|
|
18312
18319
|
contactMethodId: z.string(),
|
|
18320
|
+
autoVerifyContactMethod: z.boolean().optional().default(false),
|
|
18313
18321
|
createdAt: z.string(),
|
|
18314
18322
|
expiresAt: z.string(),
|
|
18315
18323
|
used: z.boolean()
|