@learncard/idx-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.
@@ -12055,6 +12055,7 @@ var LCNProfileValidator = z.object({
12055
12055
  type: z.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
12056
12056
  notificationsWebhook: z.string().url().startsWith("http").optional().describe("URL to send notifications to."),
12057
12057
  display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
12058
+ highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
12058
12059
  role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
12059
12060
  dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
12060
12061
  });
@@ -12198,6 +12199,16 @@ var BoostRecipientValidator = z.object({
12198
12199
  var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
12199
12200
  records: BoostRecipientValidator.array()
12200
12201
  });
12202
+ var BoostRecipientWithChildrenValidator = z.object({
12203
+ to: LCNProfileValidator,
12204
+ from: z.string(),
12205
+ received: z.string().optional(),
12206
+ boostUris: z.array(z.string()),
12207
+ credentialUris: z.array(z.string()).optional()
12208
+ });
12209
+ var PaginatedBoostRecipientsWithChildrenValidator = PaginationResponseValidator.extend({
12210
+ records: BoostRecipientWithChildrenValidator.array()
12211
+ });
12201
12212
  var LCNBoostClaimLinkSigningAuthorityValidator = z.object({
12202
12213
  endpoint: z.string(),
12203
12214
  name: z.string(),
@@ -12400,7 +12411,8 @@ var LCNNotificationTypeEnumValidator = z.enum([
12400
12411
  "PRESENTATION_RECEIVED",
12401
12412
  "CONSENT_FLOW_TRANSACTION",
12402
12413
  "ISSUANCE_CLAIMED",
12403
- "ISSUANCE_DELIVERED"
12414
+ "ISSUANCE_DELIVERED",
12415
+ "ISSUANCE_ERROR"
12404
12416
  ]);
12405
12417
  var LCNNotificationMessageValidator = z.object({
12406
12418
  title: z.string().optional(),
@@ -12517,8 +12529,10 @@ var InboxCredentialValidator = z.object({
12517
12529
  createdAt: z.string(),
12518
12530
  issuerDid: z.string(),
12519
12531
  webhookUrl: z.string().optional(),
12520
- "signingAuthority.endpoint": z.string().optional(),
12521
- "signingAuthority.name": z.string().optional()
12532
+ signingAuthority: z.object({
12533
+ endpoint: z.string().optional(),
12534
+ name: z.string().optional()
12535
+ }).optional()
12522
12536
  });
12523
12537
  var PaginatedInboxCredentialsValidator = z.object({
12524
12538
  hasMore: z.boolean(),
@@ -12573,6 +12587,7 @@ var IssueInboxCredentialResponseValidator = z.object({
12573
12587
  var ClaimTokenValidator = z.object({
12574
12588
  token: z.string(),
12575
12589
  contactMethodId: z.string(),
12590
+ autoVerifyContactMethod: z.boolean().optional().default(false),
12576
12591
  createdAt: z.string(),
12577
12592
  expiresAt: z.string(),
12578
12593
  used: z.boolean()
@@ -67918,6 +67933,7 @@ var LCNProfileValidator2 = z2.object({
67918
67933
  type: z2.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
67919
67934
  notificationsWebhook: z2.string().url().startsWith("http").optional().describe("URL to send notifications to."),
67920
67935
  display: LCNProfileDisplayValidator2.optional().describe("Display settings for the profile."),
67936
+ highlightedCredentials: z2.array(z2.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
67921
67937
  role: z2.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
67922
67938
  dob: z2.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
67923
67939
  });
@@ -68061,6 +68077,16 @@ var BoostRecipientValidator2 = z2.object({
68061
68077
  var PaginatedBoostRecipientsValidator2 = PaginationResponseValidator2.extend({
68062
68078
  records: BoostRecipientValidator2.array()
68063
68079
  });
68080
+ var BoostRecipientWithChildrenValidator2 = z2.object({
68081
+ to: LCNProfileValidator2,
68082
+ from: z2.string(),
68083
+ received: z2.string().optional(),
68084
+ boostUris: z2.array(z2.string()),
68085
+ credentialUris: z2.array(z2.string()).optional()
68086
+ });
68087
+ var PaginatedBoostRecipientsWithChildrenValidator2 = PaginationResponseValidator2.extend({
68088
+ records: BoostRecipientWithChildrenValidator2.array()
68089
+ });
68064
68090
  var LCNBoostClaimLinkSigningAuthorityValidator2 = z2.object({
68065
68091
  endpoint: z2.string(),
68066
68092
  name: z2.string(),
@@ -68263,7 +68289,8 @@ var LCNNotificationTypeEnumValidator2 = z2.enum([
68263
68289
  "PRESENTATION_RECEIVED",
68264
68290
  "CONSENT_FLOW_TRANSACTION",
68265
68291
  "ISSUANCE_CLAIMED",
68266
- "ISSUANCE_DELIVERED"
68292
+ "ISSUANCE_DELIVERED",
68293
+ "ISSUANCE_ERROR"
68267
68294
  ]);
68268
68295
  var LCNNotificationMessageValidator2 = z2.object({
68269
68296
  title: z2.string().optional(),
@@ -68380,8 +68407,10 @@ var InboxCredentialValidator2 = z2.object({
68380
68407
  createdAt: z2.string(),
68381
68408
  issuerDid: z2.string(),
68382
68409
  webhookUrl: z2.string().optional(),
68383
- "signingAuthority.endpoint": z2.string().optional(),
68384
- "signingAuthority.name": z2.string().optional()
68410
+ signingAuthority: z2.object({
68411
+ endpoint: z2.string().optional(),
68412
+ name: z2.string().optional()
68413
+ }).optional()
68385
68414
  });
68386
68415
  var PaginatedInboxCredentialsValidator2 = z2.object({
68387
68416
  hasMore: z2.boolean(),
@@ -68436,6 +68465,7 @@ var IssueInboxCredentialResponseValidator2 = z2.object({
68436
68465
  var ClaimTokenValidator2 = z2.object({
68437
68466
  token: z2.string(),
68438
68467
  contactMethodId: z2.string(),
68468
+ autoVerifyContactMethod: z2.boolean().optional().default(false),
68439
68469
  createdAt: z2.string(),
68440
68470
  expiresAt: z2.string(),
68441
68471
  used: z2.boolean()