@aldiokta/protocgen 1.1.63 → 1.1.64
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/accurate_oauth/accurate_oauth_grpc_pb.js +210 -0
- package/prisca/v1/accurate_oauth/accurate_oauth_pb.js +2330 -0
- package/prisca/v1/bidding/bidding_pb.js +43 -13
- package/prisca/v1/core/messaging/notification_event_grpc_pb.js +211 -0
- package/prisca/v1/core/messaging/notification_event_pb.js +3015 -0
- package/prisca/v1/core/user_device/user_device_grpc_pb.js +144 -0
- package/prisca/v1/core/user_device/user_device_pb.js +2255 -0
- package/prisca/v1/general_ledger_account/general_ledger_account_grpc_pb.js +41 -0
- package/prisca/v1/general_ledger_account/general_ledger_account_pb.js +991 -0
- package/prisca/v1/good_receipt/good_receipt_pb.js +61 -1
- package/prisca/v1/invoice/invoice_pb.js +61 -1
- package/prisca/v1/purchase_order/purchase_order_grpc_pb.js +0 -1
- package/prisca/v1/purchase_order/purchase_order_pb.js +154 -138
- package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_grpc_pb.js +0 -1
- package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_pb.js +18 -71
- package/prisca/v1/quotation/quotation_grpc_pb.js +33 -0
- package/prisca/v1/quotation/quotation_pb.js +1030 -131
- package/prisca/v1/request_for_quotation/request_for_quotation_grpc_pb.js +33 -0
- package/prisca/v1/request_for_quotation/request_for_quotation_pb.js +603 -4
|
@@ -10,6 +10,28 @@ var prisca_v1_core_item_transaction_item_transaction_pb = require('../../../pris
|
|
|
10
10
|
var prisca_v1_core_employee_employee_pb = require('../../../prisca/v1/core/employee/employee_pb.js');
|
|
11
11
|
var prisca_v1_core_file_upload_file_upload_pb = require('../../../prisca/v1/core/file_upload/file_upload_pb.js');
|
|
12
12
|
|
|
13
|
+
function serialize_CheckAvailableRFQReq(arg) {
|
|
14
|
+
if (!(arg instanceof prisca_v1_request_for_quotation_request_for_quotation_pb.CheckAvailableRFQReq)) {
|
|
15
|
+
throw new Error('Expected argument of type CheckAvailableRFQReq');
|
|
16
|
+
}
|
|
17
|
+
return Buffer.from(arg.serializeBinary());
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
function deserialize_CheckAvailableRFQReq(buffer_arg) {
|
|
21
|
+
return prisca_v1_request_for_quotation_request_for_quotation_pb.CheckAvailableRFQReq.deserializeBinary(new Uint8Array(buffer_arg));
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
function serialize_CheckAvailableRFQRes(arg) {
|
|
25
|
+
if (!(arg instanceof prisca_v1_request_for_quotation_request_for_quotation_pb.CheckAvailableRFQRes)) {
|
|
26
|
+
throw new Error('Expected argument of type CheckAvailableRFQRes');
|
|
27
|
+
}
|
|
28
|
+
return Buffer.from(arg.serializeBinary());
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
function deserialize_CheckAvailableRFQRes(buffer_arg) {
|
|
32
|
+
return prisca_v1_request_for_quotation_request_for_quotation_pb.CheckAvailableRFQRes.deserializeBinary(new Uint8Array(buffer_arg));
|
|
33
|
+
}
|
|
34
|
+
|
|
13
35
|
function serialize_DeleteRFQRequest(arg) {
|
|
14
36
|
if (!(arg instanceof prisca_v1_request_for_quotation_request_for_quotation_pb.DeleteRFQRequest)) {
|
|
15
37
|
throw new Error('Expected argument of type DeleteRFQRequest');
|
|
@@ -287,6 +309,17 @@ var RequestForQuotationServiceService = exports.RequestForQuotationServiceServic
|
|
|
287
309
|
responseSerialize: serialize_DeleteRFQResponse,
|
|
288
310
|
responseDeserialize: deserialize_DeleteRFQResponse,
|
|
289
311
|
},
|
|
312
|
+
checkAvailable: {
|
|
313
|
+
path: '/RequestForQuotationService/CheckAvailable',
|
|
314
|
+
requestStream: false,
|
|
315
|
+
responseStream: false,
|
|
316
|
+
requestType: prisca_v1_request_for_quotation_request_for_quotation_pb.CheckAvailableRFQReq,
|
|
317
|
+
responseType: prisca_v1_request_for_quotation_request_for_quotation_pb.CheckAvailableRFQRes,
|
|
318
|
+
requestSerialize: serialize_CheckAvailableRFQReq,
|
|
319
|
+
requestDeserialize: deserialize_CheckAvailableRFQReq,
|
|
320
|
+
responseSerialize: serialize_CheckAvailableRFQRes,
|
|
321
|
+
responseDeserialize: deserialize_CheckAvailableRFQRes,
|
|
322
|
+
},
|
|
290
323
|
};
|
|
291
324
|
|
|
292
325
|
exports.RequestForQuotationServiceClient = grpc.makeGenericClientConstructor(RequestForQuotationServiceService, 'RequestForQuotationService');
|