@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
@@ -4722,6 +4722,7 @@ var require_types_cjs_development = __commonJS({
|
|
4722
4722
|
type: z.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
|
4723
4723
|
notificationsWebhook: z.string().url().startsWith("http").optional().describe("URL to send notifications to."),
|
4724
4724
|
display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
|
4725
|
+
highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
|
4725
4726
|
role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
|
4726
4727
|
dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
|
4727
4728
|
});
|
@@ -5077,7 +5078,8 @@ var require_types_cjs_development = __commonJS({
|
|
5077
5078
|
"PRESENTATION_RECEIVED",
|
5078
5079
|
"CONSENT_FLOW_TRANSACTION",
|
5079
5080
|
"ISSUANCE_CLAIMED",
|
5080
|
-
"ISSUANCE_DELIVERED"
|
5081
|
+
"ISSUANCE_DELIVERED",
|
5082
|
+
"ISSUANCE_ERROR"
|
5081
5083
|
]);
|
5082
5084
|
var LCNNotificationMessageValidator = z.object({
|
5083
5085
|
title: z.string().optional(),
|
@@ -5194,8 +5196,10 @@ var require_types_cjs_development = __commonJS({
|
|
5194
5196
|
createdAt: z.string(),
|
5195
5197
|
issuerDid: z.string(),
|
5196
5198
|
webhookUrl: z.string().optional(),
|
5197
|
-
|
5198
|
-
|
5199
|
+
signingAuthority: z.object({
|
5200
|
+
endpoint: z.string().optional(),
|
5201
|
+
name: z.string().optional()
|
5202
|
+
}).optional()
|
5199
5203
|
});
|
5200
5204
|
var PaginatedInboxCredentialsValidator = z.object({
|
5201
5205
|
hasMore: z.boolean(),
|
@@ -5250,6 +5254,7 @@ var require_types_cjs_development = __commonJS({
|
|
5250
5254
|
var ClaimTokenValidator = z.object({
|
5251
5255
|
token: z.string(),
|
5252
5256
|
contactMethodId: z.string(),
|
5257
|
+
autoVerifyContactMethod: z.boolean().optional().default(false),
|
5253
5258
|
createdAt: z.string(),
|
5254
5259
|
expiresAt: z.string(),
|
5255
5260
|
used: z.boolean()
|