@learncard/network-brain-client 2.3.20 → 2.3.22

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @learncard/network-brain-client
2
2
 
3
+ ## 2.3.22
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies []:
8
+ - @learncard/network-brain-service@3.5.16
9
+
10
+ ## 2.3.21
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [[`98a86fb6fda26f5bb83e72da655e7acf4acaf260`](https://github.com/learningeconomy/LearnCard/commit/98a86fb6fda26f5bb83e72da655e7acf4acaf260)]:
15
+ - @learncard/network-brain-service@3.5.15
16
+
3
17
  ## 2.3.20
4
18
 
5
19
  ### Patch Changes
@@ -5076,7 +5076,8 @@ var require_helpers_cjs_development = __commonJS({
5076
5076
  "PRESENTATION_RECEIVED",
5077
5077
  "CONSENT_FLOW_TRANSACTION",
5078
5078
  "ISSUANCE_CLAIMED",
5079
- "ISSUANCE_DELIVERED"
5079
+ "ISSUANCE_DELIVERED",
5080
+ "ISSUANCE_ERROR"
5080
5081
  ]);
5081
5082
  var LCNNotificationMessageValidator = z.object({
5082
5083
  title: z.string().optional(),
@@ -5193,8 +5194,10 @@ var require_helpers_cjs_development = __commonJS({
5193
5194
  createdAt: z.string(),
5194
5195
  issuerDid: z.string(),
5195
5196
  webhookUrl: z.string().optional(),
5196
- "signingAuthority.endpoint": z.string().optional(),
5197
- "signingAuthority.name": z.string().optional()
5197
+ signingAuthority: z.object({
5198
+ endpoint: z.string().optional(),
5199
+ name: z.string().optional()
5200
+ }).optional()
5198
5201
  });
5199
5202
  var PaginatedInboxCredentialsValidator = z.object({
5200
5203
  hasMore: z.boolean(),
@@ -5249,6 +5252,7 @@ var require_helpers_cjs_development = __commonJS({
5249
5252
  var ClaimTokenValidator = z.object({
5250
5253
  token: z.string(),
5251
5254
  contactMethodId: z.string(),
5255
+ autoVerifyContactMethod: z.boolean().optional().default(false),
5252
5256
  createdAt: z.string(),
5253
5257
  expiresAt: z.string(),
5254
5258
  used: z.boolean()