@learncard/ceramic-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.
@@ -54387,6 +54387,7 @@ var LCNProfileValidator = z.object({
54387
54387
  type: z.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
54388
54388
  notificationsWebhook: z.string().url().startsWith("http").optional().describe("URL to send notifications to."),
54389
54389
  display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
54390
+ highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
54390
54391
  role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
54391
54392
  dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
54392
54393
  });
@@ -54742,7 +54743,8 @@ var LCNNotificationTypeEnumValidator = z.enum([
54742
54743
  "PRESENTATION_RECEIVED",
54743
54744
  "CONSENT_FLOW_TRANSACTION",
54744
54745
  "ISSUANCE_CLAIMED",
54745
- "ISSUANCE_DELIVERED"
54746
+ "ISSUANCE_DELIVERED",
54747
+ "ISSUANCE_ERROR"
54746
54748
  ]);
54747
54749
  var LCNNotificationMessageValidator = z.object({
54748
54750
  title: z.string().optional(),
@@ -54859,8 +54861,10 @@ var InboxCredentialValidator = z.object({
54859
54861
  createdAt: z.string(),
54860
54862
  issuerDid: z.string(),
54861
54863
  webhookUrl: z.string().optional(),
54862
- "signingAuthority.endpoint": z.string().optional(),
54863
- "signingAuthority.name": z.string().optional()
54864
+ signingAuthority: z.object({
54865
+ endpoint: z.string().optional(),
54866
+ name: z.string().optional()
54867
+ }).optional()
54864
54868
  });
54865
54869
  var PaginatedInboxCredentialsValidator = z.object({
54866
54870
  hasMore: z.boolean(),
@@ -54915,6 +54919,7 @@ var IssueInboxCredentialResponseValidator = z.object({
54915
54919
  var ClaimTokenValidator = z.object({
54916
54920
  token: z.string(),
54917
54921
  contactMethodId: z.string(),
54922
+ autoVerifyContactMethod: z.boolean().optional().default(false),
54918
54923
  createdAt: z.string(),
54919
54924
  expiresAt: z.string(),
54920
54925
  used: z.boolean()