@learncard/network-brain-client 2.3.27 → 2.3.28

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,12 @@
1
1
  # @learncard/network-brain-client
2
2
 
3
+ ## 2.3.28
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`f61e75a7a1de5913e4a7a2b381aa9815e726cec3`](https://github.com/learningeconomy/LearnCard/commit/f61e75a7a1de5913e4a7a2b381aa9815e726cec3), [`3627c858a339630e4cf033b64cb04564ff78040c`](https://github.com/learningeconomy/LearnCard/commit/3627c858a339630e4cf033b64cb04564ff78040c), [`beb9c54789a2f48b06e1f82082e1dd51eab6b51d`](https://github.com/learningeconomy/LearnCard/commit/beb9c54789a2f48b06e1f82082e1dd51eab6b51d)]:
8
+ - @learncard/network-brain-service@3.5.22
9
+
3
10
  ## 2.3.27
4
11
 
5
12
  ### Patch Changes
@@ -4415,6 +4415,7 @@ var require_helpers_cjs_development = __commonJS({
4415
4415
  controller: z.string(),
4416
4416
  publicKeyJwk: JWKValidator.optional(),
4417
4417
  publicKeyBase58: z.string().optional(),
4418
+ publicKeyMultibase: z.string().optional(),
4418
4419
  blockChainAccountId: z.string().optional()
4419
4420
  }).catchall(z.any())
4420
4421
  );
@@ -4723,7 +4724,8 @@ var require_helpers_cjs_development = __commonJS({
4723
4724
  display: LCNProfileDisplayValidator.optional().describe("Display settings for the profile."),
4724
4725
  highlightedCredentials: z.array(z.string()).max(5).optional().describe("Up to 5 unique boost URIs to highlight on the profile."),
4725
4726
  role: z.string().default("").optional().describe('Role of the profile: e.g. "teacher", "student".'),
4726
- dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".')
4727
+ dob: z.string().default("").optional().describe('Date of birth of the profile: e.g. "1990-01-01".'),
4728
+ country: z.string().optional().describe("Country for the profile.")
4727
4729
  });
4728
4730
  var LCNProfileQueryValidator = z.object({
4729
4731
  profileId: StringQuery,