@alexochihua/protos 1.0.30 → 1.0.32
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/dist/generated/kapital/contracts/v1/contracts.d.ts +0 -4
- package/dist/generated/kapital/contracts/v1/contracts.js +110 -158
- package/dist/generated/kapital/contracts/v1/contracts.js.map +1 -1
- package/dist/generated/kapital/customers/v1/customers.d.ts +2 -0
- package/dist/generated/kapital/customers/v1/customers.js +24 -0
- package/dist/generated/kapital/customers/v1/customers.js.map +1 -1
- package/dist/generated/kapital/customers/v1/customers_types.d.ts +25 -16
- package/dist/generated/kapital/customers/v1/customers_types.js +172 -97
- package/dist/generated/kapital/customers/v1/customers_types.js.map +1 -1
- package/dist/generated/kapital/payments_methods/v1/payments_methods.d.ts +13 -0
- package/dist/generated/kapital/payments_methods/v1/payments_methods.js +156 -0
- package/dist/generated/kapital/payments_methods/v1/payments_methods.js.map +1 -1
- package/package.json +1 -1
- package/proto/kapital/contracts/v1/contracts.proto +50 -56
- package/proto/kapital/customers/v1/customers.proto +2 -0
- package/proto/kapital/customers/v1/customers_types.proto +28 -18
- package/proto/kapital/payments_methods/v1/payments_methods.proto +13 -0
|
@@ -1059,6 +1059,19 @@ function createBaseGetManufacturingBatchesRequest() {
|
|
|
1059
1059
|
client: "",
|
|
1060
1060
|
generation_date: "",
|
|
1061
1061
|
id_batch: "",
|
|
1062
|
+
generation_date_from: "",
|
|
1063
|
+
generation_date_to: "",
|
|
1064
|
+
initial_bin: "",
|
|
1065
|
+
final_bin: "",
|
|
1066
|
+
created_from: "",
|
|
1067
|
+
created_to: "",
|
|
1068
|
+
quantity: 0,
|
|
1069
|
+
batch_status: "",
|
|
1070
|
+
status_value: "",
|
|
1071
|
+
status_label: "",
|
|
1072
|
+
id: "",
|
|
1073
|
+
priority_label: "",
|
|
1074
|
+
priority_value: "",
|
|
1062
1075
|
};
|
|
1063
1076
|
}
|
|
1064
1077
|
exports.GetManufacturingBatchesRequest = {
|
|
@@ -1096,6 +1109,45 @@ exports.GetManufacturingBatchesRequest = {
|
|
|
1096
1109
|
if (message.id_batch !== "") {
|
|
1097
1110
|
writer.uint32(90).string(message.id_batch);
|
|
1098
1111
|
}
|
|
1112
|
+
if (message.generation_date_from !== "") {
|
|
1113
|
+
writer.uint32(98).string(message.generation_date_from);
|
|
1114
|
+
}
|
|
1115
|
+
if (message.generation_date_to !== "") {
|
|
1116
|
+
writer.uint32(106).string(message.generation_date_to);
|
|
1117
|
+
}
|
|
1118
|
+
if (message.initial_bin !== "") {
|
|
1119
|
+
writer.uint32(114).string(message.initial_bin);
|
|
1120
|
+
}
|
|
1121
|
+
if (message.final_bin !== "") {
|
|
1122
|
+
writer.uint32(122).string(message.final_bin);
|
|
1123
|
+
}
|
|
1124
|
+
if (message.created_from !== "") {
|
|
1125
|
+
writer.uint32(130).string(message.created_from);
|
|
1126
|
+
}
|
|
1127
|
+
if (message.created_to !== "") {
|
|
1128
|
+
writer.uint32(138).string(message.created_to);
|
|
1129
|
+
}
|
|
1130
|
+
if (message.quantity !== 0) {
|
|
1131
|
+
writer.uint32(144).int32(message.quantity);
|
|
1132
|
+
}
|
|
1133
|
+
if (message.batch_status !== "") {
|
|
1134
|
+
writer.uint32(154).string(message.batch_status);
|
|
1135
|
+
}
|
|
1136
|
+
if (message.status_value !== "") {
|
|
1137
|
+
writer.uint32(162).string(message.status_value);
|
|
1138
|
+
}
|
|
1139
|
+
if (message.status_label !== "") {
|
|
1140
|
+
writer.uint32(170).string(message.status_label);
|
|
1141
|
+
}
|
|
1142
|
+
if (message.id !== "") {
|
|
1143
|
+
writer.uint32(178).string(message.id);
|
|
1144
|
+
}
|
|
1145
|
+
if (message.priority_label !== "") {
|
|
1146
|
+
writer.uint32(186).string(message.priority_label);
|
|
1147
|
+
}
|
|
1148
|
+
if (message.priority_value !== "") {
|
|
1149
|
+
writer.uint32(194).string(message.priority_value);
|
|
1150
|
+
}
|
|
1099
1151
|
return writer;
|
|
1100
1152
|
},
|
|
1101
1153
|
decode(input, length) {
|
|
@@ -1182,6 +1234,97 @@ exports.GetManufacturingBatchesRequest = {
|
|
|
1182
1234
|
message.id_batch = reader.string();
|
|
1183
1235
|
continue;
|
|
1184
1236
|
}
|
|
1237
|
+
case 12: {
|
|
1238
|
+
if (tag !== 98) {
|
|
1239
|
+
break;
|
|
1240
|
+
}
|
|
1241
|
+
message.generation_date_from = reader.string();
|
|
1242
|
+
continue;
|
|
1243
|
+
}
|
|
1244
|
+
case 13: {
|
|
1245
|
+
if (tag !== 106) {
|
|
1246
|
+
break;
|
|
1247
|
+
}
|
|
1248
|
+
message.generation_date_to = reader.string();
|
|
1249
|
+
continue;
|
|
1250
|
+
}
|
|
1251
|
+
case 14: {
|
|
1252
|
+
if (tag !== 114) {
|
|
1253
|
+
break;
|
|
1254
|
+
}
|
|
1255
|
+
message.initial_bin = reader.string();
|
|
1256
|
+
continue;
|
|
1257
|
+
}
|
|
1258
|
+
case 15: {
|
|
1259
|
+
if (tag !== 122) {
|
|
1260
|
+
break;
|
|
1261
|
+
}
|
|
1262
|
+
message.final_bin = reader.string();
|
|
1263
|
+
continue;
|
|
1264
|
+
}
|
|
1265
|
+
case 16: {
|
|
1266
|
+
if (tag !== 130) {
|
|
1267
|
+
break;
|
|
1268
|
+
}
|
|
1269
|
+
message.created_from = reader.string();
|
|
1270
|
+
continue;
|
|
1271
|
+
}
|
|
1272
|
+
case 17: {
|
|
1273
|
+
if (tag !== 138) {
|
|
1274
|
+
break;
|
|
1275
|
+
}
|
|
1276
|
+
message.created_to = reader.string();
|
|
1277
|
+
continue;
|
|
1278
|
+
}
|
|
1279
|
+
case 18: {
|
|
1280
|
+
if (tag !== 144) {
|
|
1281
|
+
break;
|
|
1282
|
+
}
|
|
1283
|
+
message.quantity = reader.int32();
|
|
1284
|
+
continue;
|
|
1285
|
+
}
|
|
1286
|
+
case 19: {
|
|
1287
|
+
if (tag !== 154) {
|
|
1288
|
+
break;
|
|
1289
|
+
}
|
|
1290
|
+
message.batch_status = reader.string();
|
|
1291
|
+
continue;
|
|
1292
|
+
}
|
|
1293
|
+
case 20: {
|
|
1294
|
+
if (tag !== 162) {
|
|
1295
|
+
break;
|
|
1296
|
+
}
|
|
1297
|
+
message.status_value = reader.string();
|
|
1298
|
+
continue;
|
|
1299
|
+
}
|
|
1300
|
+
case 21: {
|
|
1301
|
+
if (tag !== 170) {
|
|
1302
|
+
break;
|
|
1303
|
+
}
|
|
1304
|
+
message.status_label = reader.string();
|
|
1305
|
+
continue;
|
|
1306
|
+
}
|
|
1307
|
+
case 22: {
|
|
1308
|
+
if (tag !== 178) {
|
|
1309
|
+
break;
|
|
1310
|
+
}
|
|
1311
|
+
message.id = reader.string();
|
|
1312
|
+
continue;
|
|
1313
|
+
}
|
|
1314
|
+
case 23: {
|
|
1315
|
+
if (tag !== 186) {
|
|
1316
|
+
break;
|
|
1317
|
+
}
|
|
1318
|
+
message.priority_label = reader.string();
|
|
1319
|
+
continue;
|
|
1320
|
+
}
|
|
1321
|
+
case 24: {
|
|
1322
|
+
if (tag !== 194) {
|
|
1323
|
+
break;
|
|
1324
|
+
}
|
|
1325
|
+
message.priority_value = reader.string();
|
|
1326
|
+
continue;
|
|
1327
|
+
}
|
|
1185
1328
|
}
|
|
1186
1329
|
if ((tag & 7) === 4 || tag === 0) {
|
|
1187
1330
|
break;
|
|
@@ -1208,6 +1351,19 @@ exports.GetManufacturingBatchesRequest = {
|
|
|
1208
1351
|
message.client = object.client ?? "";
|
|
1209
1352
|
message.generation_date = object.generation_date ?? "";
|
|
1210
1353
|
message.id_batch = object.id_batch ?? "";
|
|
1354
|
+
message.generation_date_from = object.generation_date_from ?? "";
|
|
1355
|
+
message.generation_date_to = object.generation_date_to ?? "";
|
|
1356
|
+
message.initial_bin = object.initial_bin ?? "";
|
|
1357
|
+
message.final_bin = object.final_bin ?? "";
|
|
1358
|
+
message.created_from = object.created_from ?? "";
|
|
1359
|
+
message.created_to = object.created_to ?? "";
|
|
1360
|
+
message.quantity = object.quantity ?? 0;
|
|
1361
|
+
message.batch_status = object.batch_status ?? "";
|
|
1362
|
+
message.status_value = object.status_value ?? "";
|
|
1363
|
+
message.status_label = object.status_label ?? "";
|
|
1364
|
+
message.id = object.id ?? "";
|
|
1365
|
+
message.priority_label = object.priority_label ?? "";
|
|
1366
|
+
message.priority_value = object.priority_value ?? "";
|
|
1211
1367
|
return message;
|
|
1212
1368
|
},
|
|
1213
1369
|
};
|