@aldiokta/protocgen 1.1.48 → 1.1.50
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_pb.js +62 -2
- package/prisca/v1/business_fields/business_fields_grpc_pb.js +180 -0
- package/prisca/v1/business_fields/business_fields_pb.js +4372 -0
- package/prisca/v1/core/auth/auth_grpc_pb.js +1 -0
- package/prisca/v1/core/auth/auth_pb.js +57 -2
- package/prisca/v1/core/bank/bank_grpc_pb.js +156 -0
- package/prisca/v1/core/bank/bank_pb.js +1988 -0
- package/prisca/v1/core/file_upload/file_upload_pb.js +31 -1
- package/prisca/v1/core/item_transaction/item_transaction_pb.js +1783 -593
- package/prisca/v1/core/line_of_approval/line_of_approval_grpc_pb.js +1 -0
- package/prisca/v1/core/line_of_approval/line_of_approval_pb.js +102 -1
- package/prisca/v1/core/line_of_approval_delegation/line_of_approval_delegation_grpc_pb.js +180 -0
- package/prisca/v1/core/line_of_approval_delegation/line_of_approval_delegation_pb.js +3707 -0
- package/prisca/v1/core/plant/plant_grpc_pb.js +156 -0
- package/prisca/v1/core/plant/plant_pb.js +2078 -0
- package/prisca/v1/delivery_order/delivery_order_pb.js +31 -1
- package/prisca/v1/global/meta/meta_pb.js +452 -0
- package/prisca/v1/good_receipt/good_receipt_grpc_pb.js +11 -0
- package/prisca/v1/good_receipt/good_receipt_pb.js +31 -1
- package/prisca/v1/invoice/invoice_grpc_pb.js +11 -0
- package/prisca/v1/invoice/invoice_pb.js +55 -2
- package/prisca/v1/invoice_type/invoice_type_grpc_pb.js +202 -0
- package/prisca/v1/invoice_type/invoice_type_pb.js +3598 -0
- package/prisca/v1/purchase_order/purchase_order_grpc_pb.js +66 -0
- package/prisca/v1/purchase_order/purchase_order_pb.js +3670 -2242
- package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_grpc_pb.js +44 -0
- package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_pb.js +1802 -0
- package/prisca/v1/vendor_domain/vendor_domain_pb.js +224 -2
|
@@ -139,7 +139,8 @@ proto.FileInfo.toObject = function(includeInstance, msg) {
|
|
|
139
139
|
fileName: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
140
140
|
name: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
141
141
|
description: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
142
|
-
documentType: jspb.Message.getFieldWithDefault(msg, 4, "")
|
|
142
|
+
documentType: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
143
|
+
referencesId: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
143
144
|
};
|
|
144
145
|
|
|
145
146
|
if (includeInstance) {
|
|
@@ -192,6 +193,10 @@ proto.FileInfo.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
192
193
|
var value = /** @type {string} */ (reader.readStringRequireUtf8());
|
|
193
194
|
msg.setDocumentType(value);
|
|
194
195
|
break;
|
|
196
|
+
case 5:
|
|
197
|
+
var value = /** @type {string} */ (reader.readStringRequireUtf8());
|
|
198
|
+
msg.setReferencesId(value);
|
|
199
|
+
break;
|
|
195
200
|
default:
|
|
196
201
|
reader.skipField();
|
|
197
202
|
break;
|
|
@@ -249,6 +254,13 @@ proto.FileInfo.serializeBinaryToWriter = function(message, writer) {
|
|
|
249
254
|
f
|
|
250
255
|
);
|
|
251
256
|
}
|
|
257
|
+
f = message.getReferencesId();
|
|
258
|
+
if (f.length > 0) {
|
|
259
|
+
writer.writeString(
|
|
260
|
+
5,
|
|
261
|
+
f
|
|
262
|
+
);
|
|
263
|
+
}
|
|
252
264
|
};
|
|
253
265
|
|
|
254
266
|
|
|
@@ -324,6 +336,24 @@ proto.FileInfo.prototype.setDocumentType = function(value) {
|
|
|
324
336
|
};
|
|
325
337
|
|
|
326
338
|
|
|
339
|
+
/**
|
|
340
|
+
* optional string references_id = 5;
|
|
341
|
+
* @return {string}
|
|
342
|
+
*/
|
|
343
|
+
proto.FileInfo.prototype.getReferencesId = function() {
|
|
344
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
345
|
+
};
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
/**
|
|
349
|
+
* @param {string} value
|
|
350
|
+
* @return {!proto.FileInfo} returns this
|
|
351
|
+
*/
|
|
352
|
+
proto.FileInfo.prototype.setReferencesId = function(value) {
|
|
353
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
|
354
|
+
};
|
|
355
|
+
|
|
356
|
+
|
|
327
357
|
|
|
328
358
|
/**
|
|
329
359
|
* Oneof group definitions for this message. Each group defines the field
|