@learncard/helpers 1.1.23 → 1.1.24
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.
@@ -4665,6 +4665,7 @@ var require_types_cjs_development = __commonJS({
|
|
4665
4665
|
type: z.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
|
4666
4666
|
notificationsWebhook: z.string().url().startsWith("http").optional().describe("URL to send notifications to."),
|
4667
4667
|
display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
|
4668
|
+
highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
|
4668
4669
|
role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
|
4669
4670
|
dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
|
4670
4671
|
});
|
@@ -5020,7 +5021,8 @@ var require_types_cjs_development = __commonJS({
|
|
5020
5021
|
"PRESENTATION_RECEIVED",
|
5021
5022
|
"CONSENT_FLOW_TRANSACTION",
|
5022
5023
|
"ISSUANCE_CLAIMED",
|
5023
|
-
"ISSUANCE_DELIVERED"
|
5024
|
+
"ISSUANCE_DELIVERED",
|
5025
|
+
"ISSUANCE_ERROR"
|
5024
5026
|
]);
|
5025
5027
|
var LCNNotificationMessageValidator = z.object({
|
5026
5028
|
title: z.string().optional(),
|
@@ -5137,8 +5139,10 @@ var require_types_cjs_development = __commonJS({
|
|
5137
5139
|
createdAt: z.string(),
|
5138
5140
|
issuerDid: z.string(),
|
5139
5141
|
webhookUrl: z.string().optional(),
|
5140
|
-
|
5141
|
-
|
5142
|
+
signingAuthority: z.object({
|
5143
|
+
endpoint: z.string().optional(),
|
5144
|
+
name: z.string().optional()
|
5145
|
+
}).optional()
|
5142
5146
|
});
|
5143
5147
|
var PaginatedInboxCredentialsValidator = z.object({
|
5144
5148
|
hasMore: z.boolean(),
|
@@ -5193,6 +5197,7 @@ var require_types_cjs_development = __commonJS({
|
|
5193
5197
|
var ClaimTokenValidator = z.object({
|
5194
5198
|
token: z.string(),
|
5195
5199
|
contactMethodId: z.string(),
|
5200
|
+
autoVerifyContactMethod: z.boolean().optional().default(false),
|
5196
5201
|
createdAt: z.string(),
|
5197
5202
|
expiresAt: z.string(),
|
5198
5203
|
used: z.boolean()
|