geniebox-shared-lib 1.0.3 → 1.0.4
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.
|
@@ -87,7 +87,7 @@ export declare const USER_SERVICE_NAME = "UserService";
|
|
|
87
87
|
export type UserServiceService = typeof UserServiceService;
|
|
88
88
|
export declare const UserServiceService: {
|
|
89
89
|
readonly create: {
|
|
90
|
-
readonly path: "/user.UserService/
|
|
90
|
+
readonly path: "/user.UserService/Create";
|
|
91
91
|
readonly requestStream: false;
|
|
92
92
|
readonly responseStream: false;
|
|
93
93
|
readonly requestSerialize: (value: CreateUserRequest) => Buffer;
|
|
@@ -96,7 +96,7 @@ export declare const UserServiceService: {
|
|
|
96
96
|
readonly responseDeserialize: (value: Buffer) => UserResponse;
|
|
97
97
|
};
|
|
98
98
|
readonly findOne: {
|
|
99
|
-
readonly path: "/user.UserService/
|
|
99
|
+
readonly path: "/user.UserService/FindOne";
|
|
100
100
|
readonly requestStream: false;
|
|
101
101
|
readonly responseStream: false;
|
|
102
102
|
readonly requestSerialize: (value: GetByIdRequest) => Buffer;
|
|
@@ -105,7 +105,7 @@ export declare const UserServiceService: {
|
|
|
105
105
|
readonly responseDeserialize: (value: Buffer) => UserResponse;
|
|
106
106
|
};
|
|
107
107
|
readonly findAll: {
|
|
108
|
-
readonly path: "/user.UserService/
|
|
108
|
+
readonly path: "/user.UserService/FindAll";
|
|
109
109
|
readonly requestStream: false;
|
|
110
110
|
readonly responseStream: false;
|
|
111
111
|
readonly requestSerialize: (value: Empty) => Buffer;
|
|
@@ -114,7 +114,7 @@ export declare const UserServiceService: {
|
|
|
114
114
|
readonly responseDeserialize: (value: Buffer) => UsersResponse;
|
|
115
115
|
};
|
|
116
116
|
readonly update: {
|
|
117
|
-
readonly path: "/user.UserService/
|
|
117
|
+
readonly path: "/user.UserService/Update";
|
|
118
118
|
readonly requestStream: false;
|
|
119
119
|
readonly responseStream: false;
|
|
120
120
|
readonly requestSerialize: (value: UpdateUserRequest) => Buffer;
|
|
@@ -123,7 +123,7 @@ export declare const UserServiceService: {
|
|
|
123
123
|
readonly responseDeserialize: (value: Buffer) => UserResponse;
|
|
124
124
|
};
|
|
125
125
|
readonly remove: {
|
|
126
|
-
readonly path: "/user.UserService/
|
|
126
|
+
readonly path: "/user.UserService/Remove";
|
|
127
127
|
readonly requestStream: false;
|
|
128
128
|
readonly responseStream: false;
|
|
129
129
|
readonly requestSerialize: (value: RemoveUserRequest) => Buffer;
|
|
@@ -611,7 +611,7 @@ function UserServiceControllerMethods() {
|
|
|
611
611
|
exports.USER_SERVICE_NAME = "UserService";
|
|
612
612
|
exports.UserServiceService = {
|
|
613
613
|
create: {
|
|
614
|
-
path: "/user.UserService/
|
|
614
|
+
path: "/user.UserService/Create",
|
|
615
615
|
requestStream: false,
|
|
616
616
|
responseStream: false,
|
|
617
617
|
requestSerialize: (value) => Buffer.from(exports.CreateUserRequest.encode(value).finish()),
|
|
@@ -620,7 +620,7 @@ exports.UserServiceService = {
|
|
|
620
620
|
responseDeserialize: (value) => exports.UserResponse.decode(value),
|
|
621
621
|
},
|
|
622
622
|
findOne: {
|
|
623
|
-
path: "/user.UserService/
|
|
623
|
+
path: "/user.UserService/FindOne",
|
|
624
624
|
requestStream: false,
|
|
625
625
|
responseStream: false,
|
|
626
626
|
requestSerialize: (value) => Buffer.from(exports.GetByIdRequest.encode(value).finish()),
|
|
@@ -629,7 +629,7 @@ exports.UserServiceService = {
|
|
|
629
629
|
responseDeserialize: (value) => exports.UserResponse.decode(value),
|
|
630
630
|
},
|
|
631
631
|
findAll: {
|
|
632
|
-
path: "/user.UserService/
|
|
632
|
+
path: "/user.UserService/FindAll",
|
|
633
633
|
requestStream: false,
|
|
634
634
|
responseStream: false,
|
|
635
635
|
requestSerialize: (value) => Buffer.from(empty_interface_1.Empty.encode(value).finish()),
|
|
@@ -638,7 +638,7 @@ exports.UserServiceService = {
|
|
|
638
638
|
responseDeserialize: (value) => exports.UsersResponse.decode(value),
|
|
639
639
|
},
|
|
640
640
|
update: {
|
|
641
|
-
path: "/user.UserService/
|
|
641
|
+
path: "/user.UserService/Update",
|
|
642
642
|
requestStream: false,
|
|
643
643
|
responseStream: false,
|
|
644
644
|
requestSerialize: (value) => Buffer.from(exports.UpdateUserRequest.encode(value).finish()),
|
|
@@ -647,7 +647,7 @@ exports.UserServiceService = {
|
|
|
647
647
|
responseDeserialize: (value) => exports.UserResponse.decode(value),
|
|
648
648
|
},
|
|
649
649
|
remove: {
|
|
650
|
-
path: "/user.UserService/
|
|
650
|
+
path: "/user.UserService/Remove",
|
|
651
651
|
requestStream: false,
|
|
652
652
|
responseStream: false,
|
|
653
653
|
requestSerialize: (value) => Buffer.from(exports.RemoveUserRequest.encode(value).finish()),
|