@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.
@@ -12768,6 +12768,7 @@ var require_types_cjs_development = __commonJS2({
12768
12768
  type: z2.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
12769
12769
  notificationsWebhook: z2.string().url().startsWith("http").optional().describe("URL to send notifications to."),
12770
12770
  display: LCNProfileDisplayValidator2.optional().describe("Display settings for the profile."),
12771
+ highlightedCredentials: z2.array(z2.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
12771
12772
  role: z2.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
12772
12773
  dob: z2.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
12773
12774
  });
@@ -13123,7 +13124,8 @@ var require_types_cjs_development = __commonJS2({
13123
13124
  "PRESENTATION_RECEIVED",
13124
13125
  "CONSENT_FLOW_TRANSACTION",
13125
13126
  "ISSUANCE_CLAIMED",
13126
- "ISSUANCE_DELIVERED"
13127
+ "ISSUANCE_DELIVERED",
13128
+ "ISSUANCE_ERROR"
13127
13129
  ]);
13128
13130
  var LCNNotificationMessageValidator2 = z2.object({
13129
13131
  title: z2.string().optional(),
@@ -13240,8 +13242,10 @@ var require_types_cjs_development = __commonJS2({
13240
13242
  createdAt: z2.string(),
13241
13243
  issuerDid: z2.string(),
13242
13244
  webhookUrl: z2.string().optional(),
13243
- "signingAuthority.endpoint": z2.string().optional(),
13244
- "signingAuthority.name": z2.string().optional()
13245
+ signingAuthority: z2.object({
13246
+ endpoint: z2.string().optional(),
13247
+ name: z2.string().optional()
13248
+ }).optional()
13245
13249
  });
13246
13250
  var PaginatedInboxCredentialsValidator2 = z2.object({
13247
13251
  hasMore: z2.boolean(),
@@ -13296,6 +13300,7 @@ var require_types_cjs_development = __commonJS2({
13296
13300
  var ClaimTokenValidator2 = z2.object({
13297
13301
  token: z2.string(),
13298
13302
  contactMethodId: z2.string(),
13303
+ autoVerifyContactMethod: z2.boolean().optional().default(false),
13299
13304
  createdAt: z2.string(),
13300
13305
  expiresAt: z2.string(),
13301
13306
  used: z2.boolean()
@@ -17782,6 +17787,7 @@ var LCNProfileValidator = z.object({
17782
17787
  type: z.string().optional().describe('Profile type: e.g. "person", "organization", "service".'),
17783
17788
  notificationsWebhook: z.string().url().startsWith("http").optional().describe("URL to send notifications to."),
17784
17789
  display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
17790
+ highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
17785
17791
  role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
17786
17792
  dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
17787
17793
  });
@@ -18137,7 +18143,8 @@ var LCNNotificationTypeEnumValidator = z.enum([
18137
18143
  "PRESENTATION_RECEIVED",
18138
18144
  "CONSENT_FLOW_TRANSACTION",
18139
18145
  "ISSUANCE_CLAIMED",
18140
- "ISSUANCE_DELIVERED"
18146
+ "ISSUANCE_DELIVERED",
18147
+ "ISSUANCE_ERROR"
18141
18148
  ]);
18142
18149
  var LCNNotificationMessageValidator = z.object({
18143
18150
  title: z.string().optional(),
@@ -18254,8 +18261,10 @@ var InboxCredentialValidator = z.object({
18254
18261
  createdAt: z.string(),
18255
18262
  issuerDid: z.string(),
18256
18263
  webhookUrl: z.string().optional(),
18257
- "signingAuthority.endpoint": z.string().optional(),
18258
- "signingAuthority.name": z.string().optional()
18264
+ signingAuthority: z.object({
18265
+ endpoint: z.string().optional(),
18266
+ name: z.string().optional()
18267
+ }).optional()
18259
18268
  });
18260
18269
  var PaginatedInboxCredentialsValidator = z.object({
18261
18270
  hasMore: z.boolean(),
@@ -18310,6 +18319,7 @@ var IssueInboxCredentialResponseValidator = z.object({
18310
18319
  var ClaimTokenValidator = z.object({
18311
18320
  token: z.string(),
18312
18321
  contactMethodId: z.string(),
18322
+ autoVerifyContactMethod: z.boolean().optional().default(false),
18313
18323
  createdAt: z.string(),
18314
18324
  expiresAt: z.string(),
18315
18325
  used: z.boolean()