@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
@@ -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
|
});
|
@@ -4781,7 +4782,7 @@ var require_types_cjs_development = __commonJS({
|
|
4781
4782
|
canManageChildrenProfiles: z.boolean(),
|
4782
4783
|
canViewAnalytics: z.boolean()
|
4783
4784
|
}).partial();
|
4784
|
-
var ClaimHookTypeValidator = z.enum(["GRANT_PERMISSIONS", "ADD_ADMIN"]);
|
4785
|
+
var ClaimHookTypeValidator = z.enum(["GRANT_PERMISSIONS", "ADD_ADMIN", "AUTO_CONNECT"]);
|
4785
4786
|
var ClaimHookValidator = z.discriminatedUnion("type", [
|
4786
4787
|
z.object({
|
4787
4788
|
type: z.literal(ClaimHookTypeValidator.Values.GRANT_PERMISSIONS),
|
@@ -4794,6 +4795,10 @@ var require_types_cjs_development = __commonJS({
|
|
4794
4795
|
z.object({
|
4795
4796
|
type: z.literal(ClaimHookTypeValidator.Values.ADD_ADMIN),
|
4796
4797
|
data: z.object({ claimUri: z.string(), targetUri: z.string() })
|
4798
|
+
}),
|
4799
|
+
z.object({
|
4800
|
+
type: z.literal(ClaimHookTypeValidator.Values.AUTO_CONNECT),
|
4801
|
+
data: z.object({ claimUri: z.string(), targetUri: z.string() })
|
4797
4802
|
})
|
4798
4803
|
]);
|
4799
4804
|
var ClaimHookQueryValidator = z.object({
|
@@ -5053,7 +5058,8 @@ var require_types_cjs_development = __commonJS({
|
|
5053
5058
|
"PRESENTATION_RECEIVED",
|
5054
5059
|
"CONSENT_FLOW_TRANSACTION",
|
5055
5060
|
"ISSUANCE_CLAIMED",
|
5056
|
-
"ISSUANCE_DELIVERED"
|
5061
|
+
"ISSUANCE_DELIVERED",
|
5062
|
+
"ISSUANCE_ERROR"
|
5057
5063
|
]);
|
5058
5064
|
var LCNNotificationMessageValidator = z.object({
|
5059
5065
|
title: z.string().optional(),
|
@@ -5170,8 +5176,10 @@ var require_types_cjs_development = __commonJS({
|
|
5170
5176
|
createdAt: z.string(),
|
5171
5177
|
issuerDid: z.string(),
|
5172
5178
|
webhookUrl: z.string().optional(),
|
5173
|
-
|
5174
|
-
|
5179
|
+
signingAuthority: z.object({
|
5180
|
+
endpoint: z.string().optional(),
|
5181
|
+
name: z.string().optional()
|
5182
|
+
}).optional()
|
5175
5183
|
});
|
5176
5184
|
var PaginatedInboxCredentialsValidator = z.object({
|
5177
5185
|
hasMore: z.boolean(),
|
@@ -5226,6 +5234,7 @@ var require_types_cjs_development = __commonJS({
|
|
5226
5234
|
var ClaimTokenValidator = z.object({
|
5227
5235
|
token: z.string(),
|
5228
5236
|
contactMethodId: z.string(),
|
5237
|
+
autoVerifyContactMethod: z.boolean().optional().default(false),
|
5229
5238
|
createdAt: z.string(),
|
5230
5239
|
expiresAt: z.string(),
|
5231
5240
|
used: z.boolean()
|