@learncard/didkey-plugin 1.0.46 → 1.0.47
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/didkey-plugin.cjs.development.js +8 -3
- package/dist/didkey-plugin.cjs.development.js.map +2 -2
- package/dist/didkey-plugin.cjs.production.min.js +1 -1
- package/dist/didkey-plugin.cjs.production.min.js.map +2 -2
- package/dist/didkey-plugin.esm.js +8 -3
- package/dist/didkey-plugin.esm.js.map +2 -2
- package/package.json +4 -4
@@ -4698,6 +4698,7 @@ var require_types_cjs_development = __commonJS({
|
|
4698
4698
|
type: z.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
|
4699
4699
|
notificationsWebhook: z.string().url().startsWith("http").optional().describe("URL to send notifications to."),
|
4700
4700
|
display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
|
4701
|
+
highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
|
4701
4702
|
role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
|
4702
4703
|
dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
|
4703
4704
|
});
|
@@ -5053,7 +5054,8 @@ var require_types_cjs_development = __commonJS({
|
|
5053
5054
|
"PRESENTATION_RECEIVED",
|
5054
5055
|
"CONSENT_FLOW_TRANSACTION",
|
5055
5056
|
"ISSUANCE_CLAIMED",
|
5056
|
-
"ISSUANCE_DELIVERED"
|
5057
|
+
"ISSUANCE_DELIVERED",
|
5058
|
+
"ISSUANCE_ERROR"
|
5057
5059
|
]);
|
5058
5060
|
var LCNNotificationMessageValidator = z.object({
|
5059
5061
|
title: z.string().optional(),
|
@@ -5170,8 +5172,10 @@ var require_types_cjs_development = __commonJS({
|
|
5170
5172
|
createdAt: z.string(),
|
5171
5173
|
issuerDid: z.string(),
|
5172
5174
|
webhookUrl: z.string().optional(),
|
5173
|
-
|
5174
|
-
|
5175
|
+
signingAuthority: z.object({
|
5176
|
+
endpoint: z.string().optional(),
|
5177
|
+
name: z.string().optional()
|
5178
|
+
}).optional()
|
5175
5179
|
});
|
5176
5180
|
var PaginatedInboxCredentialsValidator = z.object({
|
5177
5181
|
hasMore: z.boolean(),
|
@@ -5226,6 +5230,7 @@ var require_types_cjs_development = __commonJS({
|
|
5226
5230
|
var ClaimTokenValidator = z.object({
|
5227
5231
|
token: z.string(),
|
5228
5232
|
contactMethodId: z.string(),
|
5233
|
+
autoVerifyContactMethod: z.boolean().optional().default(false),
|
5229
5234
|
createdAt: z.string(),
|
5230
5235
|
expiresAt: z.string(),
|
5231
5236
|
used: z.boolean()
|