@vsniksnet/contracts 1.2.8 → 1.2.10

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 {
@@ -81,7 +81,7 @@ export interface Profile {
81
81
  gender: string;
82
82
  status: string;
83
83
  country: string;
84
- birdhDay: string;
84
+ birthDay: string;
85
85
  }
86
86
 
87
87
  export const USERS_V1_PACKAGE_NAME = "users.v1";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vsniksnet/contracts",
3
- "version": "1.2.8",
3
+ "version": "1.2.10",
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 {
@@ -87,5 +87,5 @@ message Profile {
87
87
  string gender = 6;
88
88
  string status = 7;
89
89
  string country = 8;
90
- string birdh_day = 9;
90
+ string birth_day = 9;
91
91
  }