@learncard/learn-card-plugin 1.1.53 → 1.1.55
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-card-plugin.cjs.development.js +7 -3
- package/dist/learn-card-plugin.cjs.development.js.map +2 -2
- package/dist/learn-card-plugin.cjs.production.min.js +1 -1
- package/dist/learn-card-plugin.cjs.production.min.js.map +2 -2
- package/dist/learn-card-plugin.esm.js +7 -3
- package/dist/learn-card-plugin.esm.js.map +2 -2
- package/package.json +2 -2
|
@@ -4845,7 +4845,8 @@ var LCNNotificationTypeEnumValidator = z.enum([
|
|
|
4845
4845
|
"PRESENTATION_RECEIVED",
|
|
4846
4846
|
"CONSENT_FLOW_TRANSACTION",
|
|
4847
4847
|
"ISSUANCE_CLAIMED",
|
|
4848
|
-
"ISSUANCE_DELIVERED"
|
|
4848
|
+
"ISSUANCE_DELIVERED",
|
|
4849
|
+
"ISSUANCE_ERROR"
|
|
4849
4850
|
]);
|
|
4850
4851
|
var LCNNotificationMessageValidator = z.object({
|
|
4851
4852
|
title: z.string().optional(),
|
|
@@ -4962,8 +4963,10 @@ var InboxCredentialValidator = z.object({
|
|
|
4962
4963
|
createdAt: z.string(),
|
|
4963
4964
|
issuerDid: z.string(),
|
|
4964
4965
|
webhookUrl: z.string().optional(),
|
|
4965
|
-
|
|
4966
|
-
|
|
4966
|
+
signingAuthority: z.object({
|
|
4967
|
+
endpoint: z.string().optional(),
|
|
4968
|
+
name: z.string().optional()
|
|
4969
|
+
}).optional()
|
|
4967
4970
|
});
|
|
4968
4971
|
var PaginatedInboxCredentialsValidator = z.object({
|
|
4969
4972
|
hasMore: z.boolean(),
|
|
@@ -5018,6 +5021,7 @@ var IssueInboxCredentialResponseValidator = z.object({
|
|
|
5018
5021
|
var ClaimTokenValidator = z.object({
|
|
5019
5022
|
token: z.string(),
|
|
5020
5023
|
contactMethodId: z.string(),
|
|
5024
|
+
autoVerifyContactMethod: z.boolean().optional().default(false),
|
|
5021
5025
|
createdAt: z.string(),
|
|
5022
5026
|
expiresAt: z.string(),
|
|
5023
5027
|
used: z.boolean()
|