@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 +9 -0
- package/README.md +6 -6
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
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
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
25
|
+
email: 'user@example.com',
|
|
26
|
+
firstName: 'John',
|
|
27
|
+
lastName: 'Doe',
|
|
28
|
+
password: '...',
|
|
29
|
+
role: 'USER'
|
|
30
30
|
};
|
|
31
31
|
```
|
|
32
32
|
|
|
33
|
-
##
|
|
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.
|
|
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.
|
|
42
|
+
"@volontariapp/logger": "0.2.7",
|
|
43
43
|
"protobufjs": "^7.5.8"
|
|
44
44
|
}
|
|
45
45
|
}
|