@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.
@@ -101,6 +101,7 @@ var require_types_cjs_development = __commonJS({
101
101
  BoostPermissionsValidator: () => BoostPermissionsValidator,
102
102
  BoostQueryValidator: () => BoostQueryValidator,
103
103
  BoostRecipientValidator: () => BoostRecipientValidator,
104
+ BoostRecipientWithChildrenValidator: () => BoostRecipientWithChildrenValidator,
104
105
  BoostValidator: () => BoostValidator,
105
106
  ClaimHookQueryValidator: () => ClaimHookQueryValidator,
106
107
  ClaimHookTypeValidator: () => ClaimHookTypeValidator,
@@ -176,6 +177,7 @@ var require_types_cjs_development = __commonJS({
176
177
  LCNSigningAuthorityForUserValidator: () => LCNSigningAuthorityForUserValidator,
177
178
  LCNSigningAuthorityValidator: () => LCNSigningAuthorityValidator,
178
179
  PaginatedBoostRecipientsValidator: () => PaginatedBoostRecipientsValidator,
180
+ PaginatedBoostRecipientsWithChildrenValidator: () => PaginatedBoostRecipientsWithChildrenValidator,
179
181
  PaginatedBoostsValidator: () => PaginatedBoostsValidator,
180
182
  PaginatedClaimHooksValidator: () => PaginatedClaimHooksValidator,
181
183
  PaginatedConsentFlowContractsValidator: () => PaginatedConsentFlowContractsValidator,
@@ -4720,6 +4722,7 @@ var require_types_cjs_development = __commonJS({
4720
4722
  type: z.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
4721
4723
  notificationsWebhook: z.string().url().startsWith("http").optional().describe("URL to send notifications to."),
4722
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."),
4723
4726
  role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
4724
4727
  dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
4725
4728
  });
@@ -4863,6 +4866,16 @@ var require_types_cjs_development = __commonJS({
4863
4866
  var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
4864
4867
  records: BoostRecipientValidator.array()
4865
4868
  });
4869
+ var BoostRecipientWithChildrenValidator = z.object({
4870
+ to: LCNProfileValidator,
4871
+ from: z.string(),
4872
+ received: z.string().optional(),
4873
+ boostUris: z.array(z.string()),
4874
+ credentialUris: z.array(z.string()).optional()
4875
+ });
4876
+ var PaginatedBoostRecipientsWithChildrenValidator = PaginationResponseValidator.extend({
4877
+ records: BoostRecipientWithChildrenValidator.array()
4878
+ });
4866
4879
  var LCNBoostClaimLinkSigningAuthorityValidator = z.object({
4867
4880
  endpoint: z.string(),
4868
4881
  name: z.string(),
@@ -5065,7 +5078,8 @@ var require_types_cjs_development = __commonJS({
5065
5078
  "PRESENTATION_RECEIVED",
5066
5079
  "CONSENT_FLOW_TRANSACTION",
5067
5080
  "ISSUANCE_CLAIMED",
5068
- "ISSUANCE_DELIVERED"
5081
+ "ISSUANCE_DELIVERED",
5082
+ "ISSUANCE_ERROR"
5069
5083
  ]);
5070
5084
  var LCNNotificationMessageValidator = z.object({
5071
5085
  title: z.string().optional(),
@@ -5182,8 +5196,10 @@ var require_types_cjs_development = __commonJS({
5182
5196
  createdAt: z.string(),
5183
5197
  issuerDid: z.string(),
5184
5198
  webhookUrl: z.string().optional(),
5185
- "signingAuthority.endpoint": z.string().optional(),
5186
- "signingAuthority.name": z.string().optional()
5199
+ signingAuthority: z.object({
5200
+ endpoint: z.string().optional(),
5201
+ name: z.string().optional()
5202
+ }).optional()
5187
5203
  });
5188
5204
  var PaginatedInboxCredentialsValidator = z.object({
5189
5205
  hasMore: z.boolean(),
@@ -5238,6 +5254,7 @@ var require_types_cjs_development = __commonJS({
5238
5254
  var ClaimTokenValidator = z.object({
5239
5255
  token: z.string(),
5240
5256
  contactMethodId: z.string(),
5257
+ autoVerifyContactMethod: z.boolean().optional().default(false),
5241
5258
  createdAt: z.string(),
5242
5259
  expiresAt: z.string(),
5243
5260
  used: z.boolean()