@vsniksnet/contracts 1.2.8 → 1.2.9

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/gen/users.ts CHANGED
@@ -58,7 +58,7 @@ export interface UpdateUserRequest {
58
58
  gender?: string | undefined;
59
59
  status?: string | undefined;
60
60
  country?: string | undefined;
61
- birdhDay?: string | undefined;
61
+ birthDay?: string | undefined;
62
62
  }
63
63
 
64
64
  export interface UpdateUserResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vsniksnet/contracts",
3
- "version": "1.2.8",
3
+ "version": "1.2.9",
4
4
  "description": "Protobuf definitions and generated typescript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/proto/users.proto CHANGED
@@ -64,7 +64,7 @@ message UpdateUserRequest {
64
64
  optional string gender = 6;
65
65
  optional string status = 7;
66
66
  optional string country = 8;
67
- optional string birdh_day = 9;
67
+ optional string birth_day = 9;
68
68
  }
69
69
 
70
70
  message UpdateUserResponse {