@aldiokta/protocgen 1.1.20 → 1.1.21
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/package.json +1 -1
- package/prisca/v1/bidding/bidding_grpc_pb.js +69 -13
- package/prisca/v1/bidding/bidding_pb.js +833 -114
- package/prisca/v1/core/file_upload/file_upload_pb.js +183 -3
- package/prisca/v1/core/item_transaction/item_transaction_pb.js +31 -1
- package/prisca/v1/purchase_order/purchase_order_grpc_pb.js +1 -1
- package/prisca/v1/purchase_order/purchase_order_pb.js +373 -403
- package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_grpc_pb.js +11 -0
- package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_pb.js +13 -13
- package/prisca/v1/valuation/valuation_grpc_pb.js +365 -0
- package/prisca/v1/valuation/valuation_pb.js +7729 -0
|
@@ -397,6 +397,17 @@ var PurchaseRequisitionTrxServiceService = exports.PurchaseRequisitionTrxService
|
|
|
397
397
|
responseSerialize: serialize_GetPurchaseRequisitionTrxListResponse,
|
|
398
398
|
responseDeserialize: deserialize_GetPurchaseRequisitionTrxListResponse,
|
|
399
399
|
},
|
|
400
|
+
getPurchaseRequisitionTrxListStatusApproved: {
|
|
401
|
+
path: '/PurchaseRequisitionTrxService/GetPurchaseRequisitionTrxListStatusApproved',
|
|
402
|
+
requestStream: false,
|
|
403
|
+
responseStream: false,
|
|
404
|
+
requestType: prisca_v1_purchase_requisition_trx_purchase_requisition_trx_pb.GetPurchaseRequisitionTrxListRequest,
|
|
405
|
+
responseType: prisca_v1_purchase_requisition_trx_purchase_requisition_trx_pb.GetPurchaseRequisitionTrxListResponse,
|
|
406
|
+
requestSerialize: serialize_GetPurchaseRequisitionTrxListRequest,
|
|
407
|
+
requestDeserialize: deserialize_GetPurchaseRequisitionTrxListRequest,
|
|
408
|
+
responseSerialize: serialize_GetPurchaseRequisitionTrxListResponse,
|
|
409
|
+
responseDeserialize: deserialize_GetPurchaseRequisitionTrxListResponse,
|
|
410
|
+
},
|
|
400
411
|
getPurchaseRequisitionWithTrxId: {
|
|
401
412
|
path: '/PurchaseRequisitionTrxService/GetPurchaseRequisitionWithTrxId',
|
|
402
413
|
requestStream: false,
|
|
@@ -4437,7 +4437,7 @@ proto.GetPurchaseRequisitionTrxDetailByIdRequest.prototype.toObject = function(o
|
|
|
4437
4437
|
*/
|
|
4438
4438
|
proto.GetPurchaseRequisitionTrxDetailByIdRequest.toObject = function(includeInstance, msg) {
|
|
4439
4439
|
var f, obj = {
|
|
4440
|
-
|
|
4440
|
+
referencesId: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
4441
4441
|
trxBuilderId: jspb.Message.getFieldWithDefault(msg, 2, 0)
|
|
4442
4442
|
};
|
|
4443
4443
|
|
|
@@ -4476,8 +4476,8 @@ proto.GetPurchaseRequisitionTrxDetailByIdRequest.deserializeBinaryFromReader = f
|
|
|
4476
4476
|
var field = reader.getFieldNumber();
|
|
4477
4477
|
switch (field) {
|
|
4478
4478
|
case 1:
|
|
4479
|
-
var value = /** @type {
|
|
4480
|
-
msg.
|
|
4479
|
+
var value = /** @type {string} */ (reader.readString());
|
|
4480
|
+
msg.setReferencesId(value);
|
|
4481
4481
|
break;
|
|
4482
4482
|
case 2:
|
|
4483
4483
|
var value = /** @type {number} */ (reader.readInt64());
|
|
@@ -4512,9 +4512,9 @@ proto.GetPurchaseRequisitionTrxDetailByIdRequest.prototype.serializeBinary = fun
|
|
|
4512
4512
|
*/
|
|
4513
4513
|
proto.GetPurchaseRequisitionTrxDetailByIdRequest.serializeBinaryToWriter = function(message, writer) {
|
|
4514
4514
|
var f = undefined;
|
|
4515
|
-
f = message.
|
|
4516
|
-
if (f
|
|
4517
|
-
writer.
|
|
4515
|
+
f = message.getReferencesId();
|
|
4516
|
+
if (f.length > 0) {
|
|
4517
|
+
writer.writeString(
|
|
4518
4518
|
1,
|
|
4519
4519
|
f
|
|
4520
4520
|
);
|
|
@@ -4530,20 +4530,20 @@ proto.GetPurchaseRequisitionTrxDetailByIdRequest.serializeBinaryToWriter = funct
|
|
|
4530
4530
|
|
|
4531
4531
|
|
|
4532
4532
|
/**
|
|
4533
|
-
* optional
|
|
4534
|
-
* @return {
|
|
4533
|
+
* optional string references_id = 1;
|
|
4534
|
+
* @return {string}
|
|
4535
4535
|
*/
|
|
4536
|
-
proto.GetPurchaseRequisitionTrxDetailByIdRequest.prototype.
|
|
4537
|
-
return /** @type {
|
|
4536
|
+
proto.GetPurchaseRequisitionTrxDetailByIdRequest.prototype.getReferencesId = function() {
|
|
4537
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
|
4538
4538
|
};
|
|
4539
4539
|
|
|
4540
4540
|
|
|
4541
4541
|
/**
|
|
4542
|
-
* @param {
|
|
4542
|
+
* @param {string} value
|
|
4543
4543
|
* @return {!proto.GetPurchaseRequisitionTrxDetailByIdRequest} returns this
|
|
4544
4544
|
*/
|
|
4545
|
-
proto.GetPurchaseRequisitionTrxDetailByIdRequest.prototype.
|
|
4546
|
-
return jspb.Message.
|
|
4545
|
+
proto.GetPurchaseRequisitionTrxDetailByIdRequest.prototype.setReferencesId = function(value) {
|
|
4546
|
+
return jspb.Message.setProto3StringField(this, 1, value);
|
|
4547
4547
|
};
|
|
4548
4548
|
|
|
4549
4549
|
|
|
@@ -0,0 +1,365 @@
|
|
|
1
|
+
// GENERATED CODE -- DO NOT EDIT!
|
|
2
|
+
|
|
3
|
+
'use strict';
|
|
4
|
+
var grpc = require('@grpc/grpc-js');
|
|
5
|
+
var prisca_v1_valuation_valuation_pb = require('../../../prisca/v1/valuation/valuation_pb.js');
|
|
6
|
+
var prisca_v1_core_employee_employee_pb = require('../../../prisca/v1/core/employee/employee_pb.js');
|
|
7
|
+
var prisca_v1_global_meta_meta_pb = require('../../../prisca/v1/global/meta/meta_pb.js');
|
|
8
|
+
|
|
9
|
+
function serialize_CreateValuationDefaultRequest(arg) {
|
|
10
|
+
if (!(arg instanceof prisca_v1_valuation_valuation_pb.CreateValuationDefaultRequest)) {
|
|
11
|
+
throw new Error('Expected argument of type CreateValuationDefaultRequest');
|
|
12
|
+
}
|
|
13
|
+
return Buffer.from(arg.serializeBinary());
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
function deserialize_CreateValuationDefaultRequest(buffer_arg) {
|
|
17
|
+
return prisca_v1_valuation_valuation_pb.CreateValuationDefaultRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
function serialize_CreateValuationIndicatorRequest(arg) {
|
|
21
|
+
if (!(arg instanceof prisca_v1_valuation_valuation_pb.CreateValuationIndicatorRequest)) {
|
|
22
|
+
throw new Error('Expected argument of type CreateValuationIndicatorRequest');
|
|
23
|
+
}
|
|
24
|
+
return Buffer.from(arg.serializeBinary());
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
function deserialize_CreateValuationIndicatorRequest(buffer_arg) {
|
|
28
|
+
return prisca_v1_valuation_valuation_pb.CreateValuationIndicatorRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
function serialize_CreateValuationIndicatorResponse(arg) {
|
|
32
|
+
if (!(arg instanceof prisca_v1_valuation_valuation_pb.CreateValuationIndicatorResponse)) {
|
|
33
|
+
throw new Error('Expected argument of type CreateValuationIndicatorResponse');
|
|
34
|
+
}
|
|
35
|
+
return Buffer.from(arg.serializeBinary());
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
function deserialize_CreateValuationIndicatorResponse(buffer_arg) {
|
|
39
|
+
return prisca_v1_valuation_valuation_pb.CreateValuationIndicatorResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
function serialize_CreateValuationScaleRequest(arg) {
|
|
43
|
+
if (!(arg instanceof prisca_v1_valuation_valuation_pb.CreateValuationScaleRequest)) {
|
|
44
|
+
throw new Error('Expected argument of type CreateValuationScaleRequest');
|
|
45
|
+
}
|
|
46
|
+
return Buffer.from(arg.serializeBinary());
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
function deserialize_CreateValuationScaleRequest(buffer_arg) {
|
|
50
|
+
return prisca_v1_valuation_valuation_pb.CreateValuationScaleRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
function serialize_CreateValuationScaleResponse(arg) {
|
|
54
|
+
if (!(arg instanceof prisca_v1_valuation_valuation_pb.CreateValuationScaleResponse)) {
|
|
55
|
+
throw new Error('Expected argument of type CreateValuationScaleResponse');
|
|
56
|
+
}
|
|
57
|
+
return Buffer.from(arg.serializeBinary());
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
function deserialize_CreateValuationScaleResponse(buffer_arg) {
|
|
61
|
+
return prisca_v1_valuation_valuation_pb.CreateValuationScaleResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
function serialize_DeleteValuationIndicatorRequest(arg) {
|
|
65
|
+
if (!(arg instanceof prisca_v1_valuation_valuation_pb.DeleteValuationIndicatorRequest)) {
|
|
66
|
+
throw new Error('Expected argument of type DeleteValuationIndicatorRequest');
|
|
67
|
+
}
|
|
68
|
+
return Buffer.from(arg.serializeBinary());
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
function deserialize_DeleteValuationIndicatorRequest(buffer_arg) {
|
|
72
|
+
return prisca_v1_valuation_valuation_pb.DeleteValuationIndicatorRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
function serialize_DeleteValuationIndicatorResponse(arg) {
|
|
76
|
+
if (!(arg instanceof prisca_v1_valuation_valuation_pb.DeleteValuationIndicatorResponse)) {
|
|
77
|
+
throw new Error('Expected argument of type DeleteValuationIndicatorResponse');
|
|
78
|
+
}
|
|
79
|
+
return Buffer.from(arg.serializeBinary());
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
function deserialize_DeleteValuationIndicatorResponse(buffer_arg) {
|
|
83
|
+
return prisca_v1_valuation_valuation_pb.DeleteValuationIndicatorResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
function serialize_DeleteValuationScaleRequest(arg) {
|
|
87
|
+
if (!(arg instanceof prisca_v1_valuation_valuation_pb.DeleteValuationScaleRequest)) {
|
|
88
|
+
throw new Error('Expected argument of type DeleteValuationScaleRequest');
|
|
89
|
+
}
|
|
90
|
+
return Buffer.from(arg.serializeBinary());
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
function deserialize_DeleteValuationScaleRequest(buffer_arg) {
|
|
94
|
+
return prisca_v1_valuation_valuation_pb.DeleteValuationScaleRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
function serialize_DeleteValuationScaleResponse(arg) {
|
|
98
|
+
if (!(arg instanceof prisca_v1_valuation_valuation_pb.DeleteValuationScaleResponse)) {
|
|
99
|
+
throw new Error('Expected argument of type DeleteValuationScaleResponse');
|
|
100
|
+
}
|
|
101
|
+
return Buffer.from(arg.serializeBinary());
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
function deserialize_DeleteValuationScaleResponse(buffer_arg) {
|
|
105
|
+
return prisca_v1_valuation_valuation_pb.DeleteValuationScaleResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
function serialize_GetListValuationIndicatorRequest(arg) {
|
|
109
|
+
if (!(arg instanceof prisca_v1_valuation_valuation_pb.GetListValuationIndicatorRequest)) {
|
|
110
|
+
throw new Error('Expected argument of type GetListValuationIndicatorRequest');
|
|
111
|
+
}
|
|
112
|
+
return Buffer.from(arg.serializeBinary());
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
function deserialize_GetListValuationIndicatorRequest(buffer_arg) {
|
|
116
|
+
return prisca_v1_valuation_valuation_pb.GetListValuationIndicatorRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
function serialize_GetListValuationIndicatorResponse(arg) {
|
|
120
|
+
if (!(arg instanceof prisca_v1_valuation_valuation_pb.GetListValuationIndicatorResponse)) {
|
|
121
|
+
throw new Error('Expected argument of type GetListValuationIndicatorResponse');
|
|
122
|
+
}
|
|
123
|
+
return Buffer.from(arg.serializeBinary());
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
function deserialize_GetListValuationIndicatorResponse(buffer_arg) {
|
|
127
|
+
return prisca_v1_valuation_valuation_pb.GetListValuationIndicatorResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
function serialize_GetListValuationRequest(arg) {
|
|
131
|
+
if (!(arg instanceof prisca_v1_valuation_valuation_pb.GetListValuationRequest)) {
|
|
132
|
+
throw new Error('Expected argument of type GetListValuationRequest');
|
|
133
|
+
}
|
|
134
|
+
return Buffer.from(arg.serializeBinary());
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
function deserialize_GetListValuationRequest(buffer_arg) {
|
|
138
|
+
return prisca_v1_valuation_valuation_pb.GetListValuationRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
function serialize_GetListValuationScaleRequest(arg) {
|
|
142
|
+
if (!(arg instanceof prisca_v1_valuation_valuation_pb.GetListValuationScaleRequest)) {
|
|
143
|
+
throw new Error('Expected argument of type GetListValuationScaleRequest');
|
|
144
|
+
}
|
|
145
|
+
return Buffer.from(arg.serializeBinary());
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
function deserialize_GetListValuationScaleRequest(buffer_arg) {
|
|
149
|
+
return prisca_v1_valuation_valuation_pb.GetListValuationScaleRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
function serialize_GetListValuationScaleResponse(arg) {
|
|
153
|
+
if (!(arg instanceof prisca_v1_valuation_valuation_pb.GetListValuationScaleResponse)) {
|
|
154
|
+
throw new Error('Expected argument of type GetListValuationScaleResponse');
|
|
155
|
+
}
|
|
156
|
+
return Buffer.from(arg.serializeBinary());
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
function deserialize_GetListValuationScaleResponse(buffer_arg) {
|
|
160
|
+
return prisca_v1_valuation_valuation_pb.GetListValuationScaleResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
function serialize_UpdateValuationIndicatorRequest(arg) {
|
|
164
|
+
if (!(arg instanceof prisca_v1_valuation_valuation_pb.UpdateValuationIndicatorRequest)) {
|
|
165
|
+
throw new Error('Expected argument of type UpdateValuationIndicatorRequest');
|
|
166
|
+
}
|
|
167
|
+
return Buffer.from(arg.serializeBinary());
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
function deserialize_UpdateValuationIndicatorRequest(buffer_arg) {
|
|
171
|
+
return prisca_v1_valuation_valuation_pb.UpdateValuationIndicatorRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
function serialize_UpdateValuationIndicatorResponse(arg) {
|
|
175
|
+
if (!(arg instanceof prisca_v1_valuation_valuation_pb.UpdateValuationIndicatorResponse)) {
|
|
176
|
+
throw new Error('Expected argument of type UpdateValuationIndicatorResponse');
|
|
177
|
+
}
|
|
178
|
+
return Buffer.from(arg.serializeBinary());
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
function deserialize_UpdateValuationIndicatorResponse(buffer_arg) {
|
|
182
|
+
return prisca_v1_valuation_valuation_pb.UpdateValuationIndicatorResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
function serialize_UpdateValuationScaleRequest(arg) {
|
|
186
|
+
if (!(arg instanceof prisca_v1_valuation_valuation_pb.UpdateValuationScaleRequest)) {
|
|
187
|
+
throw new Error('Expected argument of type UpdateValuationScaleRequest');
|
|
188
|
+
}
|
|
189
|
+
return Buffer.from(arg.serializeBinary());
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
function deserialize_UpdateValuationScaleRequest(buffer_arg) {
|
|
193
|
+
return prisca_v1_valuation_valuation_pb.UpdateValuationScaleRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
function serialize_UpdateValuationScaleResponse(arg) {
|
|
197
|
+
if (!(arg instanceof prisca_v1_valuation_valuation_pb.UpdateValuationScaleResponse)) {
|
|
198
|
+
throw new Error('Expected argument of type UpdateValuationScaleResponse');
|
|
199
|
+
}
|
|
200
|
+
return Buffer.from(arg.serializeBinary());
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
function deserialize_UpdateValuationScaleResponse(buffer_arg) {
|
|
204
|
+
return prisca_v1_valuation_valuation_pb.UpdateValuationScaleResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
function serialize_ValuationBuilderResponse(arg) {
|
|
208
|
+
if (!(arg instanceof prisca_v1_valuation_valuation_pb.ValuationBuilderResponse)) {
|
|
209
|
+
throw new Error('Expected argument of type ValuationBuilderResponse');
|
|
210
|
+
}
|
|
211
|
+
return Buffer.from(arg.serializeBinary());
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
function deserialize_ValuationBuilderResponse(buffer_arg) {
|
|
215
|
+
return prisca_v1_valuation_valuation_pb.ValuationBuilderResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
function serialize_ValuationUpdateRequest(arg) {
|
|
219
|
+
if (!(arg instanceof prisca_v1_valuation_valuation_pb.ValuationUpdateRequest)) {
|
|
220
|
+
throw new Error('Expected argument of type ValuationUpdateRequest');
|
|
221
|
+
}
|
|
222
|
+
return Buffer.from(arg.serializeBinary());
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
function deserialize_ValuationUpdateRequest(buffer_arg) {
|
|
226
|
+
return prisca_v1_valuation_valuation_pb.ValuationUpdateRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
function serialize_ValuationUpdateResponse(arg) {
|
|
230
|
+
if (!(arg instanceof prisca_v1_valuation_valuation_pb.ValuationUpdateResponse)) {
|
|
231
|
+
throw new Error('Expected argument of type ValuationUpdateResponse');
|
|
232
|
+
}
|
|
233
|
+
return Buffer.from(arg.serializeBinary());
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
function deserialize_ValuationUpdateResponse(buffer_arg) {
|
|
237
|
+
return prisca_v1_valuation_valuation_pb.ValuationUpdateResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
var ValuationServiceService = exports.ValuationServiceService = {
|
|
242
|
+
createValuationIndicator: {
|
|
243
|
+
path: '/ValuationService/CreateValuationIndicator',
|
|
244
|
+
requestStream: false,
|
|
245
|
+
responseStream: false,
|
|
246
|
+
requestType: prisca_v1_valuation_valuation_pb.CreateValuationIndicatorRequest,
|
|
247
|
+
responseType: prisca_v1_valuation_valuation_pb.CreateValuationIndicatorResponse,
|
|
248
|
+
requestSerialize: serialize_CreateValuationIndicatorRequest,
|
|
249
|
+
requestDeserialize: deserialize_CreateValuationIndicatorRequest,
|
|
250
|
+
responseSerialize: serialize_CreateValuationIndicatorResponse,
|
|
251
|
+
responseDeserialize: deserialize_CreateValuationIndicatorResponse,
|
|
252
|
+
},
|
|
253
|
+
updateValuationIndicator: {
|
|
254
|
+
path: '/ValuationService/UpdateValuationIndicator',
|
|
255
|
+
requestStream: false,
|
|
256
|
+
responseStream: false,
|
|
257
|
+
requestType: prisca_v1_valuation_valuation_pb.UpdateValuationIndicatorRequest,
|
|
258
|
+
responseType: prisca_v1_valuation_valuation_pb.UpdateValuationIndicatorResponse,
|
|
259
|
+
requestSerialize: serialize_UpdateValuationIndicatorRequest,
|
|
260
|
+
requestDeserialize: deserialize_UpdateValuationIndicatorRequest,
|
|
261
|
+
responseSerialize: serialize_UpdateValuationIndicatorResponse,
|
|
262
|
+
responseDeserialize: deserialize_UpdateValuationIndicatorResponse,
|
|
263
|
+
},
|
|
264
|
+
deleteValuationIndicator: {
|
|
265
|
+
path: '/ValuationService/DeleteValuationIndicator',
|
|
266
|
+
requestStream: false,
|
|
267
|
+
responseStream: false,
|
|
268
|
+
requestType: prisca_v1_valuation_valuation_pb.DeleteValuationIndicatorRequest,
|
|
269
|
+
responseType: prisca_v1_valuation_valuation_pb.DeleteValuationIndicatorResponse,
|
|
270
|
+
requestSerialize: serialize_DeleteValuationIndicatorRequest,
|
|
271
|
+
requestDeserialize: deserialize_DeleteValuationIndicatorRequest,
|
|
272
|
+
responseSerialize: serialize_DeleteValuationIndicatorResponse,
|
|
273
|
+
responseDeserialize: deserialize_DeleteValuationIndicatorResponse,
|
|
274
|
+
},
|
|
275
|
+
getListValuationIndicators: {
|
|
276
|
+
path: '/ValuationService/GetListValuationIndicators',
|
|
277
|
+
requestStream: false,
|
|
278
|
+
responseStream: false,
|
|
279
|
+
requestType: prisca_v1_valuation_valuation_pb.GetListValuationIndicatorRequest,
|
|
280
|
+
responseType: prisca_v1_valuation_valuation_pb.GetListValuationIndicatorResponse,
|
|
281
|
+
requestSerialize: serialize_GetListValuationIndicatorRequest,
|
|
282
|
+
requestDeserialize: deserialize_GetListValuationIndicatorRequest,
|
|
283
|
+
responseSerialize: serialize_GetListValuationIndicatorResponse,
|
|
284
|
+
responseDeserialize: deserialize_GetListValuationIndicatorResponse,
|
|
285
|
+
},
|
|
286
|
+
createValuationScale: {
|
|
287
|
+
path: '/ValuationService/CreateValuationScale',
|
|
288
|
+
requestStream: false,
|
|
289
|
+
responseStream: false,
|
|
290
|
+
requestType: prisca_v1_valuation_valuation_pb.CreateValuationScaleRequest,
|
|
291
|
+
responseType: prisca_v1_valuation_valuation_pb.CreateValuationScaleResponse,
|
|
292
|
+
requestSerialize: serialize_CreateValuationScaleRequest,
|
|
293
|
+
requestDeserialize: deserialize_CreateValuationScaleRequest,
|
|
294
|
+
responseSerialize: serialize_CreateValuationScaleResponse,
|
|
295
|
+
responseDeserialize: deserialize_CreateValuationScaleResponse,
|
|
296
|
+
},
|
|
297
|
+
updateValuationScale: {
|
|
298
|
+
path: '/ValuationService/UpdateValuationScale',
|
|
299
|
+
requestStream: false,
|
|
300
|
+
responseStream: false,
|
|
301
|
+
requestType: prisca_v1_valuation_valuation_pb.UpdateValuationScaleRequest,
|
|
302
|
+
responseType: prisca_v1_valuation_valuation_pb.UpdateValuationScaleResponse,
|
|
303
|
+
requestSerialize: serialize_UpdateValuationScaleRequest,
|
|
304
|
+
requestDeserialize: deserialize_UpdateValuationScaleRequest,
|
|
305
|
+
responseSerialize: serialize_UpdateValuationScaleResponse,
|
|
306
|
+
responseDeserialize: deserialize_UpdateValuationScaleResponse,
|
|
307
|
+
},
|
|
308
|
+
deleteValuationScale: {
|
|
309
|
+
path: '/ValuationService/DeleteValuationScale',
|
|
310
|
+
requestStream: false,
|
|
311
|
+
responseStream: false,
|
|
312
|
+
requestType: prisca_v1_valuation_valuation_pb.DeleteValuationScaleRequest,
|
|
313
|
+
responseType: prisca_v1_valuation_valuation_pb.DeleteValuationScaleResponse,
|
|
314
|
+
requestSerialize: serialize_DeleteValuationScaleRequest,
|
|
315
|
+
requestDeserialize: deserialize_DeleteValuationScaleRequest,
|
|
316
|
+
responseSerialize: serialize_DeleteValuationScaleResponse,
|
|
317
|
+
responseDeserialize: deserialize_DeleteValuationScaleResponse,
|
|
318
|
+
},
|
|
319
|
+
getListValuationScales: {
|
|
320
|
+
path: '/ValuationService/GetListValuationScales',
|
|
321
|
+
requestStream: false,
|
|
322
|
+
responseStream: false,
|
|
323
|
+
requestType: prisca_v1_valuation_valuation_pb.GetListValuationScaleRequest,
|
|
324
|
+
responseType: prisca_v1_valuation_valuation_pb.GetListValuationScaleResponse,
|
|
325
|
+
requestSerialize: serialize_GetListValuationScaleRequest,
|
|
326
|
+
requestDeserialize: deserialize_GetListValuationScaleRequest,
|
|
327
|
+
responseSerialize: serialize_GetListValuationScaleResponse,
|
|
328
|
+
responseDeserialize: deserialize_GetListValuationScaleResponse,
|
|
329
|
+
},
|
|
330
|
+
createValuationDefault: {
|
|
331
|
+
path: '/ValuationService/CreateValuationDefault',
|
|
332
|
+
requestStream: false,
|
|
333
|
+
responseStream: false,
|
|
334
|
+
requestType: prisca_v1_valuation_valuation_pb.CreateValuationDefaultRequest,
|
|
335
|
+
responseType: prisca_v1_valuation_valuation_pb.ValuationUpdateResponse,
|
|
336
|
+
requestSerialize: serialize_CreateValuationDefaultRequest,
|
|
337
|
+
requestDeserialize: deserialize_CreateValuationDefaultRequest,
|
|
338
|
+
responseSerialize: serialize_ValuationUpdateResponse,
|
|
339
|
+
responseDeserialize: deserialize_ValuationUpdateResponse,
|
|
340
|
+
},
|
|
341
|
+
findValuationBuilder: {
|
|
342
|
+
path: '/ValuationService/FindValuationBuilder',
|
|
343
|
+
requestStream: false,
|
|
344
|
+
responseStream: false,
|
|
345
|
+
requestType: prisca_v1_valuation_valuation_pb.GetListValuationRequest,
|
|
346
|
+
responseType: prisca_v1_valuation_valuation_pb.ValuationBuilderResponse,
|
|
347
|
+
requestSerialize: serialize_GetListValuationRequest,
|
|
348
|
+
requestDeserialize: deserialize_GetListValuationRequest,
|
|
349
|
+
responseSerialize: serialize_ValuationBuilderResponse,
|
|
350
|
+
responseDeserialize: deserialize_ValuationBuilderResponse,
|
|
351
|
+
},
|
|
352
|
+
setValuation: {
|
|
353
|
+
path: '/ValuationService/SetValuation',
|
|
354
|
+
requestStream: false,
|
|
355
|
+
responseStream: false,
|
|
356
|
+
requestType: prisca_v1_valuation_valuation_pb.ValuationUpdateRequest,
|
|
357
|
+
responseType: prisca_v1_valuation_valuation_pb.ValuationUpdateResponse,
|
|
358
|
+
requestSerialize: serialize_ValuationUpdateRequest,
|
|
359
|
+
requestDeserialize: deserialize_ValuationUpdateRequest,
|
|
360
|
+
responseSerialize: serialize_ValuationUpdateResponse,
|
|
361
|
+
responseDeserialize: deserialize_ValuationUpdateResponse,
|
|
362
|
+
},
|
|
363
|
+
};
|
|
364
|
+
|
|
365
|
+
exports.ValuationServiceClient = grpc.makeGenericClientConstructor(ValuationServiceService, 'ValuationService');
|