@volontariapp/contracts 4.3.2 → 4.3.3

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,14 @@
1
1
  # Changelog
2
2
 
3
+ ## 4.3.3
4
+
5
+ ### Patch Changes
6
+
7
+ - README bump
8
+
9
+ - Updated dependencies []:
10
+ - @volontariapp/logger@0.2.7
11
+
3
12
  ## 4.3.2
4
13
 
5
14
  ### Patch Changes
package/README.md CHANGED
@@ -22,14 +22,14 @@ This package is **isomorphic** and **front-end compatible**. It contains pure Ty
22
22
  import { User, CreateUserCommand } from '@volontariapp/contracts';
23
23
 
24
24
  const newUser: CreateUserCommand = {
25
- email: 'user@example.com',
26
- firstName: 'John',
27
- lastName: 'Doe',
28
- password: '...',
29
- role: 'USER'
25
+ email: 'user@example.com',
26
+ firstName: 'John',
27
+ lastName: 'Doe',
28
+ password: '...',
29
+ role: 'USER'
30
30
  };
31
31
  ```
32
32
 
33
- ## 🛠 Maintenance
33
+ ## Maintenance
34
34
 
35
35
  The source code in `src/` is automatically generated by the CI from the `proto-registry`. Do **not** edit files inside `src/` manually.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volontariapp/contracts",
3
- "version": "4.3.2",
3
+ "version": "4.3.3",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -39,7 +39,7 @@
39
39
  "typescript": "5.7.3"
40
40
  },
41
41
  "dependencies": {
42
- "@volontariapp/logger": "0.2.6",
42
+ "@volontariapp/logger": "0.2.7",
43
43
  "protobufjs": "^7.5.8"
44
44
  }
45
45
  }