@learncard/learn-cloud-plugin 2.1.39 → 2.1.41

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.
@@ -12781,6 +12781,7 @@ var require_types_cjs_development = __commonJS2({
12781
12781
  type: z2.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
12782
12782
  notificationsWebhook: z2.string().url().startsWith("http").optional().describe("URL to send notifications to."),
12783
12783
  display: LCNProfileDisplayValidator2.optional().describe("Display settings for the profile."),
12784
+ highlightedCredentials: z2.array(z2.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
12784
12785
  role: z2.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
12785
12786
  dob: z2.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
12786
12787
  });
@@ -13136,7 +13137,8 @@ var require_types_cjs_development = __commonJS2({
13136
13137
  "PRESENTATION_RECEIVED",
13137
13138
  "CONSENT_FLOW_TRANSACTION",
13138
13139
  "ISSUANCE_CLAIMED",
13139
- "ISSUANCE_DELIVERED"
13140
+ "ISSUANCE_DELIVERED",
13141
+ "ISSUANCE_ERROR"
13140
13142
  ]);
13141
13143
  var LCNNotificationMessageValidator2 = z2.object({
13142
13144
  title: z2.string().optional(),
@@ -13253,8 +13255,10 @@ var require_types_cjs_development = __commonJS2({
13253
13255
  createdAt: z2.string(),
13254
13256
  issuerDid: z2.string(),
13255
13257
  webhookUrl: z2.string().optional(),
13256
- "signingAuthority.endpoint": z2.string().optional(),
13257
- "signingAuthority.name": z2.string().optional()
13258
+ signingAuthority: z2.object({
13259
+ endpoint: z2.string().optional(),
13260
+ name: z2.string().optional()
13261
+ }).optional()
13258
13262
  });
13259
13263
  var PaginatedInboxCredentialsValidator2 = z2.object({
13260
13264
  hasMore: z2.boolean(),
@@ -13309,6 +13313,7 @@ var require_types_cjs_development = __commonJS2({
13309
13313
  var ClaimTokenValidator2 = z2.object({
13310
13314
  token: z2.string(),
13311
13315
  contactMethodId: z2.string(),
13316
+ autoVerifyContactMethod: z2.boolean().optional().default(false),
13312
13317
  createdAt: z2.string(),
13313
13318
  expiresAt: z2.string(),
13314
13319
  used: z2.boolean()
@@ -17795,6 +17800,7 @@ var LCNProfileValidator = z.object({
17795
17800
  type: z.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
17796
17801
  notificationsWebhook: z.string().url().startsWith("http").optional().describe("URL to send notifications to."),
17797
17802
  display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
17803
+ highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
17798
17804
  role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
17799
17805
  dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
17800
17806
  });
@@ -18150,7 +18156,8 @@ var LCNNotificationTypeEnumValidator = z.enum([
18150
18156
  "PRESENTATION_RECEIVED",
18151
18157
  "CONSENT_FLOW_TRANSACTION",
18152
18158
  "ISSUANCE_CLAIMED",
18153
- "ISSUANCE_DELIVERED"
18159
+ "ISSUANCE_DELIVERED",
18160
+ "ISSUANCE_ERROR"
18154
18161
  ]);
18155
18162
  var LCNNotificationMessageValidator = z.object({
18156
18163
  title: z.string().optional(),
@@ -18267,8 +18274,10 @@ var InboxCredentialValidator = z.object({
18267
18274
  createdAt: z.string(),
18268
18275
  issuerDid: z.string(),
18269
18276
  webhookUrl: z.string().optional(),
18270
- "signingAuthority.endpoint": z.string().optional(),
18271
- "signingAuthority.name": z.string().optional()
18277
+ signingAuthority: z.object({
18278
+ endpoint: z.string().optional(),
18279
+ name: z.string().optional()
18280
+ }).optional()
18272
18281
  });
18273
18282
  var PaginatedInboxCredentialsValidator = z.object({
18274
18283
  hasMore: z.boolean(),
@@ -18323,6 +18332,7 @@ var IssueInboxCredentialResponseValidator = z.object({
18323
18332
  var ClaimTokenValidator = z.object({
18324
18333
  token: z.string(),
18325
18334
  contactMethodId: z.string(),
18335
+ autoVerifyContactMethod: z.boolean().optional().default(false),
18326
18336
  createdAt: z.string(),
18327
18337
  expiresAt: z.string(),
18328
18338
  used: z.boolean()