@learncard/didkey-plugin 1.0.44 → 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 +20 -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 +3 -3
- package/dist/didkey-plugin.esm.js +20 -3
- package/dist/didkey-plugin.esm.js.map +2 -2
- package/package.json +4 -4
@@ -77,6 +77,7 @@ var require_types_cjs_development = __commonJS({
|
|
77
77
|
BoostPermissionsValidator: () => BoostPermissionsValidator,
|
78
78
|
BoostQueryValidator: () => BoostQueryValidator,
|
79
79
|
BoostRecipientValidator: () => BoostRecipientValidator,
|
80
|
+
BoostRecipientWithChildrenValidator: () => BoostRecipientWithChildrenValidator,
|
80
81
|
BoostValidator: () => BoostValidator,
|
81
82
|
ClaimHookQueryValidator: () => ClaimHookQueryValidator,
|
82
83
|
ClaimHookTypeValidator: () => ClaimHookTypeValidator,
|
@@ -152,6 +153,7 @@ var require_types_cjs_development = __commonJS({
|
|
152
153
|
LCNSigningAuthorityForUserValidator: () => LCNSigningAuthorityForUserValidator,
|
153
154
|
LCNSigningAuthorityValidator: () => LCNSigningAuthorityValidator,
|
154
155
|
PaginatedBoostRecipientsValidator: () => PaginatedBoostRecipientsValidator,
|
156
|
+
PaginatedBoostRecipientsWithChildrenValidator: () => PaginatedBoostRecipientsWithChildrenValidator,
|
155
157
|
PaginatedBoostsValidator: () => PaginatedBoostsValidator,
|
156
158
|
PaginatedClaimHooksValidator: () => PaginatedClaimHooksValidator,
|
157
159
|
PaginatedConsentFlowContractsValidator: () => PaginatedConsentFlowContractsValidator,
|
@@ -4696,6 +4698,7 @@ var require_types_cjs_development = __commonJS({
|
|
4696
4698
|
type: z.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
|
4697
4699
|
notificationsWebhook: z.string().url().startsWith("http").optional().describe("URL to send notifications to."),
|
4698
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."),
|
4699
4702
|
role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
|
4700
4703
|
dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
|
4701
4704
|
});
|
@@ -4839,6 +4842,16 @@ var require_types_cjs_development = __commonJS({
|
|
4839
4842
|
var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
|
4840
4843
|
records: BoostRecipientValidator.array()
|
4841
4844
|
});
|
4845
|
+
var BoostRecipientWithChildrenValidator = z.object({
|
4846
|
+
to: LCNProfileValidator,
|
4847
|
+
from: z.string(),
|
4848
|
+
received: z.string().optional(),
|
4849
|
+
boostUris: z.array(z.string()),
|
4850
|
+
credentialUris: z.array(z.string()).optional()
|
4851
|
+
});
|
4852
|
+
var PaginatedBoostRecipientsWithChildrenValidator = PaginationResponseValidator.extend({
|
4853
|
+
records: BoostRecipientWithChildrenValidator.array()
|
4854
|
+
});
|
4842
4855
|
var LCNBoostClaimLinkSigningAuthorityValidator = z.object({
|
4843
4856
|
endpoint: z.string(),
|
4844
4857
|
name: z.string(),
|
@@ -5041,7 +5054,8 @@ var require_types_cjs_development = __commonJS({
|
|
5041
5054
|
"PRESENTATION_RECEIVED",
|
5042
5055
|
"CONSENT_FLOW_TRANSACTION",
|
5043
5056
|
"ISSUANCE_CLAIMED",
|
5044
|
-
"ISSUANCE_DELIVERED"
|
5057
|
+
"ISSUANCE_DELIVERED",
|
5058
|
+
"ISSUANCE_ERROR"
|
5045
5059
|
]);
|
5046
5060
|
var LCNNotificationMessageValidator = z.object({
|
5047
5061
|
title: z.string().optional(),
|
@@ -5158,8 +5172,10 @@ var require_types_cjs_development = __commonJS({
|
|
5158
5172
|
createdAt: z.string(),
|
5159
5173
|
issuerDid: z.string(),
|
5160
5174
|
webhookUrl: z.string().optional(),
|
5161
|
-
|
5162
|
-
|
5175
|
+
signingAuthority: z.object({
|
5176
|
+
endpoint: z.string().optional(),
|
5177
|
+
name: z.string().optional()
|
5178
|
+
}).optional()
|
5163
5179
|
});
|
5164
5180
|
var PaginatedInboxCredentialsValidator = z.object({
|
5165
5181
|
hasMore: z.boolean(),
|
@@ -5214,6 +5230,7 @@ var require_types_cjs_development = __commonJS({
|
|
5214
5230
|
var ClaimTokenValidator = z.object({
|
5215
5231
|
token: z.string(),
|
5216
5232
|
contactMethodId: z.string(),
|
5233
|
+
autoVerifyContactMethod: z.boolean().optional().default(false),
|
5217
5234
|
createdAt: z.string(),
|
5218
5235
|
expiresAt: z.string(),
|
5219
5236
|
used: z.boolean()
|