@aldiokta/protocgen 1.1.65 → 1.1.67
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/budget_planning/budget_planning_grpc_pb.js +33 -0
- package/prisca/v1/budget_planning/budget_planning_pb.js +1764 -0
- package/prisca/v1/core/auth/auth_grpc_pb.js +71 -0
- package/prisca/v1/core/auth/auth_pb.js +599 -1
- package/prisca/v1/core/currency_exchange_rate/currency_exchange_rate_grpc_pb.js +180 -0
- package/prisca/v1/core/currency_exchange_rate/currency_exchange_rate_pb.js +2696 -0
- package/prisca/v1/core/employee/employee_pb.js +61 -1
- package/prisca/v1/core/subscription/subscription_grpc_pb.js +82 -0
- package/prisca/v1/core/subscription/subscription_pb.js +1713 -0
- package/prisca/v1/invoice/invoice_grpc_pb.js +24 -0
- package/prisca/v1/invoice/invoice_pb.js +1102 -108
- package/prisca/v1/purchase_order/purchase_order_pb.js +62 -2
|
@@ -4438,7 +4438,8 @@ dpAmount: jspb.Message.getFloatingPointFieldWithDefault(msg, 46, 0.0),
|
|
|
4438
4438
|
dpInvoiceRef: jspb.Message.getFieldWithDefault(msg, 47, ""),
|
|
4439
4439
|
isDownPayment: jspb.Message.getBooleanFieldWithDefault(msg, 48, false),
|
|
4440
4440
|
department: jspb.Message.getFieldWithDefault(msg, 49, ""),
|
|
4441
|
-
documentType: jspb.Message.getFieldWithDefault(msg, 50, "")
|
|
4441
|
+
documentType: jspb.Message.getFieldWithDefault(msg, 50, ""),
|
|
4442
|
+
createdSource: jspb.Message.getFieldWithDefault(msg, 51, "")
|
|
4442
4443
|
};
|
|
4443
4444
|
|
|
4444
4445
|
if (includeInstance) {
|
|
@@ -4686,6 +4687,10 @@ proto.Invoice.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
4686
4687
|
var value = /** @type {string} */ (reader.readStringRequireUtf8());
|
|
4687
4688
|
msg.setDocumentType(value);
|
|
4688
4689
|
break;
|
|
4690
|
+
case 51:
|
|
4691
|
+
var value = /** @type {string} */ (reader.readStringRequireUtf8());
|
|
4692
|
+
msg.setCreatedSource(value);
|
|
4693
|
+
break;
|
|
4689
4694
|
default:
|
|
4690
4695
|
reader.skipField();
|
|
4691
4696
|
break;
|
|
@@ -5076,6 +5081,13 @@ proto.Invoice.serializeBinaryToWriter = function(message, writer) {
|
|
|
5076
5081
|
f
|
|
5077
5082
|
);
|
|
5078
5083
|
}
|
|
5084
|
+
f = message.getCreatedSource();
|
|
5085
|
+
if (f.length > 0) {
|
|
5086
|
+
writer.writeString(
|
|
5087
|
+
51,
|
|
5088
|
+
f
|
|
5089
|
+
);
|
|
5090
|
+
}
|
|
5079
5091
|
};
|
|
5080
5092
|
|
|
5081
5093
|
|
|
@@ -6193,6 +6205,24 @@ proto.Invoice.prototype.setDocumentType = function(value) {
|
|
|
6193
6205
|
};
|
|
6194
6206
|
|
|
6195
6207
|
|
|
6208
|
+
/**
|
|
6209
|
+
* optional string created_source = 51;
|
|
6210
|
+
* @return {string}
|
|
6211
|
+
*/
|
|
6212
|
+
proto.Invoice.prototype.getCreatedSource = function() {
|
|
6213
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 51, ""));
|
|
6214
|
+
};
|
|
6215
|
+
|
|
6216
|
+
|
|
6217
|
+
/**
|
|
6218
|
+
* @param {string} value
|
|
6219
|
+
* @return {!proto.Invoice} returns this
|
|
6220
|
+
*/
|
|
6221
|
+
proto.Invoice.prototype.setCreatedSource = function(value) {
|
|
6222
|
+
return jspb.Message.setProto3StringField(this, 51, value);
|
|
6223
|
+
};
|
|
6224
|
+
|
|
6225
|
+
|
|
6196
6226
|
|
|
6197
6227
|
|
|
6198
6228
|
|
|
@@ -12900,7 +12930,8 @@ goodsReceiptDate: jspb.Message.getFieldWithDefault(msg, 48, ""),
|
|
|
12900
12930
|
goodsReceiptCreatedByName: jspb.Message.getFieldWithDefault(msg, 49, ""),
|
|
12901
12931
|
assetNumber: jspb.Message.getFieldWithDefault(msg, 50, ""),
|
|
12902
12932
|
invoiceReceived: jspb.Message.getFieldWithDefault(msg, 51, ""),
|
|
12903
|
-
prCreatedByEmployeeName: jspb.Message.getFieldWithDefault(msg, 52, "")
|
|
12933
|
+
prCreatedByEmployeeName: jspb.Message.getFieldWithDefault(msg, 52, ""),
|
|
12934
|
+
paymentStatus: jspb.Message.getFieldWithDefault(msg, 53, "")
|
|
12904
12935
|
};
|
|
12905
12936
|
|
|
12906
12937
|
if (includeInstance) {
|
|
@@ -13145,6 +13176,10 @@ proto.PurchaseOrderReport.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
13145
13176
|
var value = /** @type {string} */ (reader.readStringRequireUtf8());
|
|
13146
13177
|
msg.setPrCreatedByEmployeeName(value);
|
|
13147
13178
|
break;
|
|
13179
|
+
case 53:
|
|
13180
|
+
var value = /** @type {string} */ (reader.readStringRequireUtf8());
|
|
13181
|
+
msg.setPaymentStatus(value);
|
|
13182
|
+
break;
|
|
13148
13183
|
default:
|
|
13149
13184
|
reader.skipField();
|
|
13150
13185
|
break;
|
|
@@ -13538,6 +13573,13 @@ proto.PurchaseOrderReport.serializeBinaryToWriter = function(message, writer) {
|
|
|
13538
13573
|
f
|
|
13539
13574
|
);
|
|
13540
13575
|
}
|
|
13576
|
+
f = message.getPaymentStatus();
|
|
13577
|
+
if (f.length > 0) {
|
|
13578
|
+
writer.writeString(
|
|
13579
|
+
53,
|
|
13580
|
+
f
|
|
13581
|
+
);
|
|
13582
|
+
}
|
|
13541
13583
|
};
|
|
13542
13584
|
|
|
13543
13585
|
|
|
@@ -14477,6 +14519,24 @@ proto.PurchaseOrderReport.prototype.setPrCreatedByEmployeeName = function(value)
|
|
|
14477
14519
|
};
|
|
14478
14520
|
|
|
14479
14521
|
|
|
14522
|
+
/**
|
|
14523
|
+
* optional string payment_status = 53;
|
|
14524
|
+
* @return {string}
|
|
14525
|
+
*/
|
|
14526
|
+
proto.PurchaseOrderReport.prototype.getPaymentStatus = function() {
|
|
14527
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 53, ""));
|
|
14528
|
+
};
|
|
14529
|
+
|
|
14530
|
+
|
|
14531
|
+
/**
|
|
14532
|
+
* @param {string} value
|
|
14533
|
+
* @return {!proto.PurchaseOrderReport} returns this
|
|
14534
|
+
*/
|
|
14535
|
+
proto.PurchaseOrderReport.prototype.setPaymentStatus = function(value) {
|
|
14536
|
+
return jspb.Message.setProto3StringField(this, 53, value);
|
|
14537
|
+
};
|
|
14538
|
+
|
|
14539
|
+
|
|
14480
14540
|
|
|
14481
14541
|
/**
|
|
14482
14542
|
* List of repeated fields within this message type.
|