@learncard/idx-plugin 1.0.46 → 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.
@@ -12049,6 +12049,7 @@ var LCNProfileValidator = z.object({
12049
12049
  type: z.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
12050
12050
  notificationsWebhook: z.string().url().startsWith("http").optional().describe("URL to send notifications to."),
12051
12051
  display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
12052
+ highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
12052
12053
  role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
12053
12054
  dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
12054
12055
  });
@@ -12404,7 +12405,8 @@ var LCNNotificationTypeEnumValidator = z.enum([
12404
12405
  "PRESENTATION_RECEIVED",
12405
12406
  "CONSENT_FLOW_TRANSACTION",
12406
12407
  "ISSUANCE_CLAIMED",
12407
- "ISSUANCE_DELIVERED"
12408
+ "ISSUANCE_DELIVERED",
12409
+ "ISSUANCE_ERROR"
12408
12410
  ]);
12409
12411
  var LCNNotificationMessageValidator = z.object({
12410
12412
  title: z.string().optional(),
@@ -12521,8 +12523,10 @@ var InboxCredentialValidator = z.object({
12521
12523
  createdAt: z.string(),
12522
12524
  issuerDid: z.string(),
12523
12525
  webhookUrl: z.string().optional(),
12524
- "signingAuthority.endpoint": z.string().optional(),
12525
- "signingAuthority.name": z.string().optional()
12526
+ signingAuthority: z.object({
12527
+ endpoint: z.string().optional(),
12528
+ name: z.string().optional()
12529
+ }).optional()
12526
12530
  });
12527
12531
  var PaginatedInboxCredentialsValidator = z.object({
12528
12532
  hasMore: z.boolean(),
@@ -12577,6 +12581,7 @@ var IssueInboxCredentialResponseValidator = z.object({
12577
12581
  var ClaimTokenValidator = z.object({
12578
12582
  token: z.string(),
12579
12583
  contactMethodId: z.string(),
12584
+ autoVerifyContactMethod: z.boolean().optional().default(false),
12580
12585
  createdAt: z.string(),
12581
12586
  expiresAt: z.string(),
12582
12587
  used: z.boolean()
@@ -67922,6 +67927,7 @@ var LCNProfileValidator2 = z2.object({
67922
67927
  type: z2.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
67923
67928
  notificationsWebhook: z2.string().url().startsWith("http").optional().describe("URL to send notifications to."),
67924
67929
  display: LCNProfileDisplayValidator2.optional().describe("Display settings for the profile."),
67930
+ highlightedCredentials: z2.array(z2.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
67925
67931
  role: z2.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
67926
67932
  dob: z2.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
67927
67933
  });
@@ -68277,7 +68283,8 @@ var LCNNotificationTypeEnumValidator2 = z2.enum([
68277
68283
  "PRESENTATION_RECEIVED",
68278
68284
  "CONSENT_FLOW_TRANSACTION",
68279
68285
  "ISSUANCE_CLAIMED",
68280
- "ISSUANCE_DELIVERED"
68286
+ "ISSUANCE_DELIVERED",
68287
+ "ISSUANCE_ERROR"
68281
68288
  ]);
68282
68289
  var LCNNotificationMessageValidator2 = z2.object({
68283
68290
  title: z2.string().optional(),
@@ -68394,8 +68401,10 @@ var InboxCredentialValidator2 = z2.object({
68394
68401
  createdAt: z2.string(),
68395
68402
  issuerDid: z2.string(),
68396
68403
  webhookUrl: z2.string().optional(),
68397
- "signingAuthority.endpoint": z2.string().optional(),
68398
- "signingAuthority.name": z2.string().optional()
68404
+ signingAuthority: z2.object({
68405
+ endpoint: z2.string().optional(),
68406
+ name: z2.string().optional()
68407
+ }).optional()
68399
68408
  });
68400
68409
  var PaginatedInboxCredentialsValidator2 = z2.object({
68401
68410
  hasMore: z2.boolean(),
@@ -68450,6 +68459,7 @@ var IssueInboxCredentialResponseValidator2 = z2.object({
68450
68459
  var ClaimTokenValidator2 = z2.object({
68451
68460
  token: z2.string(),
68452
68461
  contactMethodId: z2.string(),
68462
+ autoVerifyContactMethod: z2.boolean().optional().default(false),
68453
68463
  createdAt: z2.string(),
68454
68464
  expiresAt: z2.string(),
68455
68465
  used: z2.boolean()