@learncard/learn-cloud-plugin 2.1.39 → 2.1.40

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.
@@ -13136,7 +13136,8 @@ var require_types_cjs_development = __commonJS2({
13136
13136
  "PRESENTATION_RECEIVED",
13137
13137
  "CONSENT_FLOW_TRANSACTION",
13138
13138
  "ISSUANCE_CLAIMED",
13139
- "ISSUANCE_DELIVERED"
13139
+ "ISSUANCE_DELIVERED",
13140
+ "ISSUANCE_ERROR"
13140
13141
  ]);
13141
13142
  var LCNNotificationMessageValidator2 = z2.object({
13142
13143
  title: z2.string().optional(),
@@ -13253,8 +13254,10 @@ var require_types_cjs_development = __commonJS2({
13253
13254
  createdAt: z2.string(),
13254
13255
  issuerDid: z2.string(),
13255
13256
  webhookUrl: z2.string().optional(),
13256
- "signingAuthority.endpoint": z2.string().optional(),
13257
- "signingAuthority.name": z2.string().optional()
13257
+ signingAuthority: z2.object({
13258
+ endpoint: z2.string().optional(),
13259
+ name: z2.string().optional()
13260
+ }).optional()
13258
13261
  });
13259
13262
  var PaginatedInboxCredentialsValidator2 = z2.object({
13260
13263
  hasMore: z2.boolean(),
@@ -13309,6 +13312,7 @@ var require_types_cjs_development = __commonJS2({
13309
13312
  var ClaimTokenValidator2 = z2.object({
13310
13313
  token: z2.string(),
13311
13314
  contactMethodId: z2.string(),
13315
+ autoVerifyContactMethod: z2.boolean().optional().default(false),
13312
13316
  createdAt: z2.string(),
13313
13317
  expiresAt: z2.string(),
13314
13318
  used: z2.boolean()
@@ -18150,7 +18154,8 @@ var LCNNotificationTypeEnumValidator = z.enum([
18150
18154
  "PRESENTATION_RECEIVED",
18151
18155
  "CONSENT_FLOW_TRANSACTION",
18152
18156
  "ISSUANCE_CLAIMED",
18153
- "ISSUANCE_DELIVERED"
18157
+ "ISSUANCE_DELIVERED",
18158
+ "ISSUANCE_ERROR"
18154
18159
  ]);
18155
18160
  var LCNNotificationMessageValidator = z.object({
18156
18161
  title: z.string().optional(),
@@ -18267,8 +18272,10 @@ var InboxCredentialValidator = z.object({
18267
18272
  createdAt: z.string(),
18268
18273
  issuerDid: z.string(),
18269
18274
  webhookUrl: z.string().optional(),
18270
- "signingAuthority.endpoint": z.string().optional(),
18271
- "signingAuthority.name": z.string().optional()
18275
+ signingAuthority: z.object({
18276
+ endpoint: z.string().optional(),
18277
+ name: z.string().optional()
18278
+ }).optional()
18272
18279
  });
18273
18280
  var PaginatedInboxCredentialsValidator = z.object({
18274
18281
  hasMore: z.boolean(),
@@ -18323,6 +18330,7 @@ var IssueInboxCredentialResponseValidator = z.object({
18323
18330
  var ClaimTokenValidator = z.object({
18324
18331
  token: z.string(),
18325
18332
  contactMethodId: z.string(),
18333
+ autoVerifyContactMethod: z.boolean().optional().default(false),
18326
18334
  createdAt: z.string(),
18327
18335
  expiresAt: z.string(),
18328
18336
  used: z.boolean()