@learncard/didkey-plugin 1.0.46 → 1.0.48
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 +13 -4
- 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 +13 -4
- 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
|
});
|
@@ -4805,7 +4806,7 @@ var require_types_cjs_development = __commonJS({
|
|
4805
4806
|
canManageChildrenProfiles: z.boolean(),
|
4806
4807
|
canViewAnalytics: z.boolean()
|
4807
4808
|
}).partial();
|
4808
|
-
var ClaimHookTypeValidator = z.enum(["GRANT_PERMISSIONS", "ADD_ADMIN"]);
|
4809
|
+
var ClaimHookTypeValidator = z.enum(["GRANT_PERMISSIONS", "ADD_ADMIN", "AUTO_CONNECT"]);
|
4809
4810
|
var ClaimHookValidator = z.discriminatedUnion("type", [
|
4810
4811
|
z.object({
|
4811
4812
|
type: z.literal(ClaimHookTypeValidator.Values.GRANT_PERMISSIONS),
|
@@ -4818,6 +4819,10 @@ var require_types_cjs_development = __commonJS({
|
|
4818
4819
|
z.object({
|
4819
4820
|
type: z.literal(ClaimHookTypeValidator.Values.ADD_ADMIN),
|
4820
4821
|
data: z.object({ claimUri: z.string(), targetUri: z.string() })
|
4822
|
+
}),
|
4823
|
+
z.object({
|
4824
|
+
type: z.literal(ClaimHookTypeValidator.Values.AUTO_CONNECT),
|
4825
|
+
data: z.object({ claimUri: z.string(), targetUri: z.string() })
|
4821
4826
|
})
|
4822
4827
|
]);
|
4823
4828
|
var ClaimHookQueryValidator = z.object({
|
@@ -5077,7 +5082,8 @@ var require_types_cjs_development = __commonJS({
|
|
5077
5082
|
"PRESENTATION_RECEIVED",
|
5078
5083
|
"CONSENT_FLOW_TRANSACTION",
|
5079
5084
|
"ISSUANCE_CLAIMED",
|
5080
|
-
"ISSUANCE_DELIVERED"
|
5085
|
+
"ISSUANCE_DELIVERED",
|
5086
|
+
"ISSUANCE_ERROR"
|
5081
5087
|
]);
|
5082
5088
|
var LCNNotificationMessageValidator = z.object({
|
5083
5089
|
title: z.string().optional(),
|
@@ -5194,8 +5200,10 @@ var require_types_cjs_development = __commonJS({
|
|
5194
5200
|
createdAt: z.string(),
|
5195
5201
|
issuerDid: z.string(),
|
5196
5202
|
webhookUrl: z.string().optional(),
|
5197
|
-
|
5198
|
-
|
5203
|
+
signingAuthority: z.object({
|
5204
|
+
endpoint: z.string().optional(),
|
5205
|
+
name: z.string().optional()
|
5206
|
+
}).optional()
|
5199
5207
|
});
|
5200
5208
|
var PaginatedInboxCredentialsValidator = z.object({
|
5201
5209
|
hasMore: z.boolean(),
|
@@ -5250,6 +5258,7 @@ var require_types_cjs_development = __commonJS({
|
|
5250
5258
|
var ClaimTokenValidator = z.object({
|
5251
5259
|
token: z.string(),
|
5252
5260
|
contactMethodId: z.string(),
|
5261
|
+
autoVerifyContactMethod: z.boolean().optional().default(false),
|
5253
5262
|
createdAt: z.string(),
|
5254
5263
|
expiresAt: z.string(),
|
5255
5264
|
used: z.boolean()
|