@learncard/learn-card-plugin 1.1.54 → 1.1.56
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 +8 -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 +8 -3
- package/dist/learn-card-plugin.esm.js.map +2 -2
- package/package.json +4 -4
|
@@ -4490,6 +4490,7 @@ var LCNProfileValidator = z.object({
|
|
|
4490
4490
|
type: z.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
|
|
4491
4491
|
notificationsWebhook: z.string().url().startsWith("http").optional().describe("URL to send notifications to."),
|
|
4492
4492
|
display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
|
|
4493
|
+
highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
|
|
4493
4494
|
role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
|
|
4494
4495
|
dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
|
|
4495
4496
|
});
|
|
@@ -4845,7 +4846,8 @@ var LCNNotificationTypeEnumValidator = z.enum([
|
|
|
4845
4846
|
"PRESENTATION_RECEIVED",
|
|
4846
4847
|
"CONSENT_FLOW_TRANSACTION",
|
|
4847
4848
|
"ISSUANCE_CLAIMED",
|
|
4848
|
-
"ISSUANCE_DELIVERED"
|
|
4849
|
+
"ISSUANCE_DELIVERED",
|
|
4850
|
+
"ISSUANCE_ERROR"
|
|
4849
4851
|
]);
|
|
4850
4852
|
var LCNNotificationMessageValidator = z.object({
|
|
4851
4853
|
title: z.string().optional(),
|
|
@@ -4962,8 +4964,10 @@ var InboxCredentialValidator = z.object({
|
|
|
4962
4964
|
createdAt: z.string(),
|
|
4963
4965
|
issuerDid: z.string(),
|
|
4964
4966
|
webhookUrl: z.string().optional(),
|
|
4965
|
-
|
|
4966
|
-
|
|
4967
|
+
signingAuthority: z.object({
|
|
4968
|
+
endpoint: z.string().optional(),
|
|
4969
|
+
name: z.string().optional()
|
|
4970
|
+
}).optional()
|
|
4967
4971
|
});
|
|
4968
4972
|
var PaginatedInboxCredentialsValidator = z.object({
|
|
4969
4973
|
hasMore: z.boolean(),
|
|
@@ -5018,6 +5022,7 @@ var IssueInboxCredentialResponseValidator = z.object({
|
|
|
5018
5022
|
var ClaimTokenValidator = z.object({
|
|
5019
5023
|
token: z.string(),
|
|
5020
5024
|
contactMethodId: z.string(),
|
|
5025
|
+
autoVerifyContactMethod: z.boolean().optional().default(false),
|
|
5021
5026
|
createdAt: z.string(),
|
|
5022
5027
|
expiresAt: z.string(),
|
|
5023
5028
|
used: z.boolean()
|