@learncard/ceramic-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.
@@ -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
  });
@@ -54530,6 +54531,16 @@ var BoostRecipientValidator = z.object({
54530
54531
  var PaginatedBoostRecipientsValidator = PaginationResponseValidator.extend({
54531
54532
  records: BoostRecipientValidator.array()
54532
54533
  });
54534
+ var BoostRecipientWithChildrenValidator = z.object({
54535
+ to: LCNProfileValidator,
54536
+ from: z.string(),
54537
+ received: z.string().optional(),
54538
+ boostUris: z.array(z.string()),
54539
+ credentialUris: z.array(z.string()).optional()
54540
+ });
54541
+ var PaginatedBoostRecipientsWithChildrenValidator = PaginationResponseValidator.extend({
54542
+ records: BoostRecipientWithChildrenValidator.array()
54543
+ });
54533
54544
  var LCNBoostClaimLinkSigningAuthorityValidator = z.object({
54534
54545
  endpoint: z.string(),
54535
54546
  name: z.string(),
@@ -54732,7 +54743,8 @@ var LCNNotificationTypeEnumValidator = z.enum([
54732
54743
  "PRESENTATION_RECEIVED",
54733
54744
  "CONSENT_FLOW_TRANSACTION",
54734
54745
  "ISSUANCE_CLAIMED",
54735
- "ISSUANCE_DELIVERED"
54746
+ "ISSUANCE_DELIVERED",
54747
+ "ISSUANCE_ERROR"
54736
54748
  ]);
54737
54749
  var LCNNotificationMessageValidator = z.object({
54738
54750
  title: z.string().optional(),
@@ -54849,8 +54861,10 @@ var InboxCredentialValidator = z.object({
54849
54861
  createdAt: z.string(),
54850
54862
  issuerDid: z.string(),
54851
54863
  webhookUrl: z.string().optional(),
54852
- "signingAuthority.endpoint": z.string().optional(),
54853
- "signingAuthority.name": z.string().optional()
54864
+ signingAuthority: z.object({
54865
+ endpoint: z.string().optional(),
54866
+ name: z.string().optional()
54867
+ }).optional()
54854
54868
  });
54855
54869
  var PaginatedInboxCredentialsValidator = z.object({
54856
54870
  hasMore: z.boolean(),
@@ -54905,6 +54919,7 @@ var IssueInboxCredentialResponseValidator = z.object({
54905
54919
  var ClaimTokenValidator = z.object({
54906
54920
  token: z.string(),
54907
54921
  contactMethodId: z.string(),
54922
+ autoVerifyContactMethod: z.boolean().optional().default(false),
54908
54923
  createdAt: z.string(),
54909
54924
  expiresAt: z.string(),
54910
54925
  used: z.boolean()