@aldiokta/protocgen 1.1.21 → 1.1.22
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 +33 -0
- package/prisca/v1/bidding/bidding_pb.js +613 -4
- package/prisca/v1/core/company/company_pb.js +77 -25
- package/prisca/v1/core/employee/employee_pb.js +74 -22
- package/prisca/v1/core/incoterm/incoterm_grpc_pb.js +33 -0
- package/prisca/v1/core/incoterm/incoterm_pb.js +407 -0
- package/prisca/v1/core/item_transaction/item_transaction_pb.js +274 -4
- package/prisca/v1/core/job_grade/job_grade_pb.js +80 -28
- package/prisca/v1/core/job_position/job_position_pb.js +74 -22
- package/prisca/v1/core/job_title/job_title_pb.js +80 -28
- package/prisca/v1/core/line_of_approval/line_of_approval_pb.js +61 -1
- package/prisca/v1/core/material/material_pb.js +74 -22
- package/prisca/v1/core/material_group/material_group_pb.js +77 -25
- package/prisca/v1/core/material_type/material_type_grpc_pb.js +33 -0
- package/prisca/v1/core/material_type/material_type_pb.js +407 -0
- package/prisca/v1/core/number_range/number_range_pb.js +74 -22
- package/prisca/v1/core/organization/organization_pb.js +80 -28
- package/prisca/v1/core/organization_level/organization_level_pb.js +80 -28
- package/prisca/v1/core/price_condition/price_condition_grpc_pb.js +33 -0
- package/prisca/v1/core/price_condition/price_condition_pb.js +407 -0
- package/prisca/v1/core/tax_code/tax_code_pb.js +152 -2
- package/prisca/v1/core/term_of_payment/term_of_payment_grpc_pb.js +33 -0
- package/prisca/v1/core/term_of_payment/term_of_payment_pb.js +407 -0
- package/prisca/v1/core/users/users_grpc_pb.js +33 -0
- package/prisca/v1/core/users/users_pb.js +407 -0
- package/prisca/v1/core/work_location/work_location_pb.js +74 -22
- package/prisca/v1/core/workflow/workflow_pb.js +74 -22
- package/prisca/v1/delivery_order/delivery_order_grpc_pb.js +229 -0
- package/prisca/v1/delivery_order/delivery_order_pb.js +4661 -0
- package/prisca/v1/good_receipt/good_receipt_grpc_pb.js +1 -0
- package/prisca/v1/good_receipt/good_receipt_pb.js +35 -0
- package/prisca/v1/purchase_order/purchase_order_pb.js +98 -8
- package/prisca/v1/purchasing_group/purchasing_group_pb.js +80 -28
- package/prisca/v1/purchasing_organization/purchasing_organization_grpc_pb.js +33 -0
- package/prisca/v1/purchasing_organization/purchasing_organization_pb.js +407 -0
- package/prisca/v1/purchasing_organization_assignment/purchasing_organization_assignment_grpc_pb.js +33 -0
- package/prisca/v1/purchasing_organization_assignment/purchasing_organization_assignment_pb.js +407 -0
- package/prisca/v1/quotation/quotation_grpc_pb.js +14 -3
- package/prisca/v1/quotation/quotation_pb.js +479 -2
- package/prisca/v1/request_for_quotation/request_for_quotation_grpc_pb.js +1 -0
- package/prisca/v1/request_for_quotation/request_for_quotation_pb.js +262 -4
- package/prisca/v1/vendor_domain/vendor_domain_pb.js +31 -1
package/package.json
CHANGED
|
@@ -67,6 +67,17 @@ function deserialize_GetDetailBiddingByReferences(buffer_arg) {
|
|
|
67
67
|
return prisca_v1_bidding_bidding_pb.GetDetailBiddingByReferences.deserializeBinary(new Uint8Array(buffer_arg));
|
|
68
68
|
}
|
|
69
69
|
|
|
70
|
+
function serialize_RequestAddVendorBidding(arg) {
|
|
71
|
+
if (!(arg instanceof prisca_v1_bidding_bidding_pb.RequestAddVendorBidding)) {
|
|
72
|
+
throw new Error('Expected argument of type RequestAddVendorBidding');
|
|
73
|
+
}
|
|
74
|
+
return Buffer.from(arg.serializeBinary());
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
function deserialize_RequestAddVendorBidding(buffer_arg) {
|
|
78
|
+
return prisca_v1_bidding_bidding_pb.RequestAddVendorBidding.deserializeBinary(new Uint8Array(buffer_arg));
|
|
79
|
+
}
|
|
80
|
+
|
|
70
81
|
function serialize_RequestGetListBidding(arg) {
|
|
71
82
|
if (!(arg instanceof prisca_v1_bidding_bidding_pb.RequestGetListBidding)) {
|
|
72
83
|
throw new Error('Expected argument of type RequestGetListBidding');
|
|
@@ -89,6 +100,17 @@ function deserialize_RequestPO(buffer_arg) {
|
|
|
89
100
|
return prisca_v1_bidding_bidding_pb.RequestPO.deserializeBinary(new Uint8Array(buffer_arg));
|
|
90
101
|
}
|
|
91
102
|
|
|
103
|
+
function serialize_ResponseAddVendorBidding(arg) {
|
|
104
|
+
if (!(arg instanceof prisca_v1_bidding_bidding_pb.ResponseAddVendorBidding)) {
|
|
105
|
+
throw new Error('Expected argument of type ResponseAddVendorBidding');
|
|
106
|
+
}
|
|
107
|
+
return Buffer.from(arg.serializeBinary());
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
function deserialize_ResponseAddVendorBidding(buffer_arg) {
|
|
111
|
+
return prisca_v1_bidding_bidding_pb.ResponseAddVendorBidding.deserializeBinary(new Uint8Array(buffer_arg));
|
|
112
|
+
}
|
|
113
|
+
|
|
92
114
|
function serialize_ResponseBidding(arg) {
|
|
93
115
|
if (!(arg instanceof prisca_v1_bidding_bidding_pb.ResponseBidding)) {
|
|
94
116
|
throw new Error('Expected argument of type ResponseBidding');
|
|
@@ -223,6 +245,17 @@ var BiddingServiceService = exports.BiddingServiceService = {
|
|
|
223
245
|
responseSerialize: serialize_ResponseBidding,
|
|
224
246
|
responseDeserialize: deserialize_ResponseBidding,
|
|
225
247
|
},
|
|
248
|
+
addVendorBidding: {
|
|
249
|
+
path: '/BiddingService/AddVendorBidding',
|
|
250
|
+
requestStream: false,
|
|
251
|
+
responseStream: false,
|
|
252
|
+
requestType: prisca_v1_bidding_bidding_pb.RequestAddVendorBidding,
|
|
253
|
+
responseType: prisca_v1_bidding_bidding_pb.ResponseAddVendorBidding,
|
|
254
|
+
requestSerialize: serialize_RequestAddVendorBidding,
|
|
255
|
+
requestDeserialize: deserialize_RequestAddVendorBidding,
|
|
256
|
+
responseSerialize: serialize_ResponseAddVendorBidding,
|
|
257
|
+
responseDeserialize: deserialize_ResponseAddVendorBidding,
|
|
258
|
+
},
|
|
226
259
|
// rpc SetValuation (ValuationReq) returns (ValuationRes);
|
|
227
260
|
};
|
|
228
261
|
|