@learncard/learn-card-plugin 1.1.54 → 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
|
@@ -4821,7 +4821,8 @@ var LCNNotificationTypeEnumValidator = z.enum([
|
|
|
4821
4821
|
"PRESENTATION_RECEIVED",
|
|
4822
4822
|
"CONSENT_FLOW_TRANSACTION",
|
|
4823
4823
|
"ISSUANCE_CLAIMED",
|
|
4824
|
-
"ISSUANCE_DELIVERED"
|
|
4824
|
+
"ISSUANCE_DELIVERED",
|
|
4825
|
+
"ISSUANCE_ERROR"
|
|
4825
4826
|
]);
|
|
4826
4827
|
var LCNNotificationMessageValidator = z.object({
|
|
4827
4828
|
title: z.string().optional(),
|
|
@@ -4938,8 +4939,10 @@ var InboxCredentialValidator = z.object({
|
|
|
4938
4939
|
createdAt: z.string(),
|
|
4939
4940
|
issuerDid: z.string(),
|
|
4940
4941
|
webhookUrl: z.string().optional(),
|
|
4941
|
-
|
|
4942
|
-
|
|
4942
|
+
signingAuthority: z.object({
|
|
4943
|
+
endpoint: z.string().optional(),
|
|
4944
|
+
name: z.string().optional()
|
|
4945
|
+
}).optional()
|
|
4943
4946
|
});
|
|
4944
4947
|
var PaginatedInboxCredentialsValidator = z.object({
|
|
4945
4948
|
hasMore: z.boolean(),
|
|
@@ -4994,6 +4997,7 @@ var IssueInboxCredentialResponseValidator = z.object({
|
|
|
4994
4997
|
var ClaimTokenValidator = z.object({
|
|
4995
4998
|
token: z.string(),
|
|
4996
4999
|
contactMethodId: z.string(),
|
|
5000
|
+
autoVerifyContactMethod: z.boolean().optional().default(false),
|
|
4997
5001
|
createdAt: z.string(),
|
|
4998
5002
|
expiresAt: z.string(),
|
|
4999
5003
|
used: z.boolean()
|