@vsniksnet/contracts 1.2.6 → 1.2.7
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 +5 -7
- package/package.json +1 -1
- package/proto/users.proto +5 -7
package/gen/users.ts
CHANGED
|
@@ -11,17 +11,15 @@ import { Observable } from "rxjs";
|
|
|
11
11
|
export const protobufPackage = "users.v1";
|
|
12
12
|
|
|
13
13
|
export enum Gender {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
FAMALE = 2,
|
|
14
|
+
MALE = 0,
|
|
15
|
+
FAMALE = 1,
|
|
17
16
|
UNRECOGNIZED = -1,
|
|
18
17
|
}
|
|
19
18
|
|
|
20
19
|
export enum Status {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
MARRIED = 3,
|
|
20
|
+
SINGLE = 0,
|
|
21
|
+
RELATIONS = 1,
|
|
22
|
+
MARRIED = 2,
|
|
25
23
|
UNRECOGNIZED = -1,
|
|
26
24
|
}
|
|
27
25
|
|
package/package.json
CHANGED
package/proto/users.proto
CHANGED
|
@@ -91,14 +91,12 @@ message Profile {
|
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
enum Gender {
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
FAMALE = 2;
|
|
94
|
+
MALE = 0;
|
|
95
|
+
FAMALE = 1;
|
|
97
96
|
}
|
|
98
97
|
|
|
99
98
|
enum Status {
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
MARRIED = 3;
|
|
99
|
+
SINGLE = 0;
|
|
100
|
+
RELATIONS = 1;
|
|
101
|
+
MARRIED = 2;
|
|
104
102
|
}
|