@kernelminds/scailo-sdk 0.0.58 → 0.0.60
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/lib/cjs/src/components.scailo_connect.js +23 -0
- package/lib/cjs/src/equipments.scailo_connect.js +23 -0
- package/lib/cjs/src/feedstocks.scailo_connect.js +23 -0
- package/lib/cjs/src/goods_receipts.scailo_pb.js +45 -19
- package/lib/cjs/src/infrastructures.scailo_connect.js +23 -0
- package/lib/cjs/src/merchandises.scailo_connect.js +23 -0
- package/lib/cjs/src/products.scailo_connect.js +23 -0
- package/lib/cjs/types/src/components.scailo_connect.d.ts +24 -1
- package/lib/cjs/types/src/components.scailo_connect.d.ts.map +1 -1
- package/lib/cjs/types/src/equipments.scailo_connect.d.ts +24 -1
- package/lib/cjs/types/src/equipments.scailo_connect.d.ts.map +1 -1
- package/lib/cjs/types/src/feedstocks.scailo_connect.d.ts +24 -1
- package/lib/cjs/types/src/feedstocks.scailo_connect.d.ts.map +1 -1
- package/lib/cjs/types/src/goods_receipts.scailo_pb.d.ts +32 -12
- package/lib/cjs/types/src/goods_receipts.scailo_pb.d.ts.map +1 -1
- package/lib/cjs/types/src/infrastructures.scailo_connect.d.ts +24 -1
- package/lib/cjs/types/src/infrastructures.scailo_connect.d.ts.map +1 -1
- package/lib/cjs/types/src/merchandises.scailo_connect.d.ts +24 -1
- package/lib/cjs/types/src/merchandises.scailo_connect.d.ts.map +1 -1
- package/lib/cjs/types/src/products.scailo_connect.d.ts +24 -1
- package/lib/cjs/types/src/products.scailo_connect.d.ts.map +1 -1
- package/lib/esm/src/components.scailo_connect.js +23 -0
- package/lib/esm/src/equipments.scailo_connect.js +23 -0
- package/lib/esm/src/feedstocks.scailo_connect.js +23 -0
- package/lib/esm/src/goods_receipts.scailo_pb.js +45 -19
- package/lib/esm/src/infrastructures.scailo_connect.js +23 -0
- package/lib/esm/src/merchandises.scailo_connect.js +23 -0
- package/lib/esm/src/products.scailo_connect.js +23 -0
- package/lib/esm/types/src/components.scailo_connect.d.ts +24 -1
- package/lib/esm/types/src/components.scailo_connect.d.ts.map +1 -1
- package/lib/esm/types/src/equipments.scailo_connect.d.ts +24 -1
- package/lib/esm/types/src/equipments.scailo_connect.d.ts.map +1 -1
- package/lib/esm/types/src/feedstocks.scailo_connect.d.ts +24 -1
- package/lib/esm/types/src/feedstocks.scailo_connect.d.ts.map +1 -1
- package/lib/esm/types/src/goods_receipts.scailo_pb.d.ts +32 -12
- package/lib/esm/types/src/goods_receipts.scailo_pb.d.ts.map +1 -1
- package/lib/esm/types/src/infrastructures.scailo_connect.d.ts +24 -1
- package/lib/esm/types/src/infrastructures.scailo_connect.d.ts.map +1 -1
- package/lib/esm/types/src/merchandises.scailo_connect.d.ts +24 -1
- package/lib/esm/types/src/merchandises.scailo_connect.d.ts.map +1 -1
- package/lib/esm/types/src/products.scailo_connect.d.ts +24 -1
- package/lib/esm/types/src/products.scailo_connect.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -325,5 +325,28 @@ exports.ComponentsService = {
|
|
|
325
325
|
O: base_scailo_pb_js_1.CountResponse,
|
|
326
326
|
kind: protobuf_1.MethodKind.Unary,
|
|
327
327
|
},
|
|
328
|
+
/**
|
|
329
|
+
* CSV operations
|
|
330
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
331
|
+
*
|
|
332
|
+
* @generated from rpc Scailo.ComponentsService.DownloadAsCSV
|
|
333
|
+
*/
|
|
334
|
+
downloadAsCSV: {
|
|
335
|
+
name: "DownloadAsCSV",
|
|
336
|
+
I: components_scailo_pb_js_1.ComponentsServiceFilterReq,
|
|
337
|
+
O: base_scailo_pb_js_1.StandardFile,
|
|
338
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
339
|
+
},
|
|
340
|
+
/**
|
|
341
|
+
* Import records using a CSV file. Imports records as initial stock
|
|
342
|
+
*
|
|
343
|
+
* @generated from rpc Scailo.ComponentsService.ImportFromCSV
|
|
344
|
+
*/
|
|
345
|
+
importFromCSV: {
|
|
346
|
+
name: "ImportFromCSV",
|
|
347
|
+
I: base_scailo_pb_js_1.StandardFile,
|
|
348
|
+
O: base_scailo_pb_js_1.IdentifierUUIDsList,
|
|
349
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
350
|
+
},
|
|
328
351
|
}
|
|
329
352
|
};
|
|
@@ -325,5 +325,28 @@ exports.EquipmentsService = {
|
|
|
325
325
|
O: base_scailo_pb_js_1.CountResponse,
|
|
326
326
|
kind: protobuf_1.MethodKind.Unary,
|
|
327
327
|
},
|
|
328
|
+
/**
|
|
329
|
+
* CSV operations
|
|
330
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
331
|
+
*
|
|
332
|
+
* @generated from rpc Scailo.EquipmentsService.DownloadAsCSV
|
|
333
|
+
*/
|
|
334
|
+
downloadAsCSV: {
|
|
335
|
+
name: "DownloadAsCSV",
|
|
336
|
+
I: equipments_scailo_pb_js_1.EquipmentsServiceFilterReq,
|
|
337
|
+
O: base_scailo_pb_js_1.StandardFile,
|
|
338
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
339
|
+
},
|
|
340
|
+
/**
|
|
341
|
+
* Import records using a CSV file. Imports records as initial stock
|
|
342
|
+
*
|
|
343
|
+
* @generated from rpc Scailo.EquipmentsService.ImportFromCSV
|
|
344
|
+
*/
|
|
345
|
+
importFromCSV: {
|
|
346
|
+
name: "ImportFromCSV",
|
|
347
|
+
I: base_scailo_pb_js_1.StandardFile,
|
|
348
|
+
O: base_scailo_pb_js_1.IdentifierUUIDsList,
|
|
349
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
350
|
+
},
|
|
328
351
|
}
|
|
329
352
|
};
|
|
@@ -325,5 +325,28 @@ exports.FeedstocksService = {
|
|
|
325
325
|
O: base_scailo_pb_js_1.CountResponse,
|
|
326
326
|
kind: protobuf_1.MethodKind.Unary,
|
|
327
327
|
},
|
|
328
|
+
/**
|
|
329
|
+
* CSV operations
|
|
330
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
331
|
+
*
|
|
332
|
+
* @generated from rpc Scailo.FeedstocksService.DownloadAsCSV
|
|
333
|
+
*/
|
|
334
|
+
downloadAsCSV: {
|
|
335
|
+
name: "DownloadAsCSV",
|
|
336
|
+
I: feedstocks_scailo_pb_js_1.FeedstocksServiceFilterReq,
|
|
337
|
+
O: base_scailo_pb_js_1.StandardFile,
|
|
338
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
339
|
+
},
|
|
340
|
+
/**
|
|
341
|
+
* Import records using a CSV file. Imports records as initial stock
|
|
342
|
+
*
|
|
343
|
+
* @generated from rpc Scailo.FeedstocksService.ImportFromCSV
|
|
344
|
+
*/
|
|
345
|
+
importFromCSV: {
|
|
346
|
+
name: "ImportFromCSV",
|
|
347
|
+
I: base_scailo_pb_js_1.StandardFile,
|
|
348
|
+
O: base_scailo_pb_js_1.IdentifierUUIDsList,
|
|
349
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
350
|
+
},
|
|
328
351
|
}
|
|
329
352
|
};
|
|
@@ -4,10 +4,36 @@
|
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
// @ts-nocheck
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.GoodsReceiptsServiceSearchAllReq = exports.GoodsReceiptsServiceCountReq = exports.GoodsReceiptsServiceFilterReq = exports.GoodsReceiptsServicePaginationResponse = exports.GoodsReceiptsServicePaginationReq = exports.GoodsReceiptsServiceAlreadyAddedQuantityForSourceRequest = exports.GoodsReceiptsServicePaginatedItemsResponse = exports.GoodsReceiptItemsSearchRequest = exports.GoodsReceiptItemProspectiveInfoRequest = exports.GoodsReceiptItemHistoryRequest = exports.GoodsReceiptsItemsList = exports.GoodsReceiptsList = exports.GoodsReceiptItem = exports.GoodsReceiptsServiceItemUpdateRequest = exports.GoodsReceiptsServiceItemCreateRequest = exports.GoodsReceipt = exports.GoodsReceiptAncillaryParameters = exports.GoodsReceiptsServiceAutofillRequest = exports.GoodsReceiptsServiceUpdateRequest = exports.GoodsReceiptsServiceCreateRequest = exports.GOODS_RECEIPT_BILLING_STATUS = exports.GOODS_RECEIPT_SORT_KEY = exports.GOODS_RECEIPT_ITEM_STATUS = exports.GOODS_RECEIPT_ITEM_SORT_KEY = void 0;
|
|
7
|
+
exports.GoodsReceiptsServiceSearchAllReq = exports.GoodsReceiptsServiceCountReq = exports.GoodsReceiptsServiceFilterReq = exports.GoodsReceiptsServicePaginationResponse = exports.GoodsReceiptsServicePaginationReq = exports.GoodsReceiptsServiceAlreadyAddedQuantityForSourceRequest = exports.GoodsReceiptsServicePaginatedItemsResponse = exports.GoodsReceiptItemsSearchRequest = exports.GoodsReceiptItemProspectiveInfoRequest = exports.GoodsReceiptItemHistoryRequest = exports.GoodsReceiptsItemsList = exports.GoodsReceiptsList = exports.GoodsReceiptItem = exports.GoodsReceiptsServiceItemUpdateRequest = exports.GoodsReceiptsServiceItemCreateRequest = exports.GoodsReceipt = exports.GoodsReceiptAncillaryParameters = exports.GoodsReceiptsServiceAutofillRequest = exports.GoodsReceiptsServiceUpdateRequest = exports.GoodsReceiptsServiceCreateRequest = exports.GOODS_RECEIPT_BILLING_STATUS = exports.GOODS_RECEIPT_SORT_KEY = exports.GOODS_RECEIPT_ITEM_STATUS = exports.GOODS_RECEIPT_ITEM_SORT_KEY = exports.GOODS_RECEIPT_REF_FROM = void 0;
|
|
8
8
|
const protobuf_1 = require("@bufbuild/protobuf");
|
|
9
9
|
const forms_fields_data_scailo_pb_js_1 = require("./forms_fields_data.scailo_pb.js");
|
|
10
10
|
const base_scailo_pb_js_1 = require("./base.scailo_pb.js");
|
|
11
|
+
/**
|
|
12
|
+
*
|
|
13
|
+
* Stores all the possible references from which a goods receipt can be added
|
|
14
|
+
*
|
|
15
|
+
* @generated from enum Scailo.GOODS_RECEIPT_REF_FROM
|
|
16
|
+
*/
|
|
17
|
+
var GOODS_RECEIPT_REF_FROM;
|
|
18
|
+
(function (GOODS_RECEIPT_REF_FROM) {
|
|
19
|
+
/**
|
|
20
|
+
* Used only in filters
|
|
21
|
+
*
|
|
22
|
+
* @generated from enum value: GOODS_RECEIPT_REF_FROM_ANY_UNSPECIFIED = 0;
|
|
23
|
+
*/
|
|
24
|
+
GOODS_RECEIPT_REF_FROM[GOODS_RECEIPT_REF_FROM["GOODS_RECEIPT_REF_FROM_ANY_UNSPECIFIED"] = 0] = "GOODS_RECEIPT_REF_FROM_ANY_UNSPECIFIED";
|
|
25
|
+
/**
|
|
26
|
+
* Denotes that the goods receipt originated from a purchase order
|
|
27
|
+
*
|
|
28
|
+
* @generated from enum value: GOODS_RECEIPT_REF_FROM_PURCHASE_ORDER = 1;
|
|
29
|
+
*/
|
|
30
|
+
GOODS_RECEIPT_REF_FROM[GOODS_RECEIPT_REF_FROM["GOODS_RECEIPT_REF_FROM_PURCHASE_ORDER"] = 1] = "GOODS_RECEIPT_REF_FROM_PURCHASE_ORDER";
|
|
31
|
+
})(GOODS_RECEIPT_REF_FROM || (exports.GOODS_RECEIPT_REF_FROM = GOODS_RECEIPT_REF_FROM = {}));
|
|
32
|
+
// Retrieve enum metadata with: proto3.getEnumType(GOODS_RECEIPT_REF_FROM)
|
|
33
|
+
protobuf_1.proto3.util.setEnumType(GOODS_RECEIPT_REF_FROM, "Scailo.GOODS_RECEIPT_REF_FROM", [
|
|
34
|
+
{ no: 0, name: "GOODS_RECEIPT_REF_FROM_ANY_UNSPECIFIED" },
|
|
35
|
+
{ no: 1, name: "GOODS_RECEIPT_REF_FROM_PURCHASE_ORDER" },
|
|
36
|
+
]);
|
|
11
37
|
/**
|
|
12
38
|
*
|
|
13
39
|
* Describes the available sort keys
|
|
@@ -281,9 +307,9 @@ class GoodsReceiptsServiceCreateRequest extends protobuf_1.Message {
|
|
|
281
307
|
/**
|
|
282
308
|
* The associated reference
|
|
283
309
|
*
|
|
284
|
-
* @generated from field:
|
|
310
|
+
* @generated from field: Scailo.GOODS_RECEIPT_REF_FROM ref_from = 12;
|
|
285
311
|
*/
|
|
286
|
-
this.refFrom =
|
|
312
|
+
this.refFrom = GOODS_RECEIPT_REF_FROM.GOODS_RECEIPT_REF_FROM_ANY_UNSPECIFIED;
|
|
287
313
|
/**
|
|
288
314
|
* The associated ID of the reference
|
|
289
315
|
*
|
|
@@ -331,7 +357,7 @@ GoodsReceiptsServiceCreateRequest.fields = protobuf_1.proto3.util.newFieldList((
|
|
|
331
357
|
{ no: 2, name: "user_comment", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
332
358
|
{ no: 9, name: "vault_folder_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
333
359
|
{ no: 10, name: "reference_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
334
|
-
{ no: 12, name: "ref_from", kind: "
|
|
360
|
+
{ no: 12, name: "ref_from", kind: "enum", T: protobuf_1.proto3.getEnumType(GOODS_RECEIPT_REF_FROM) },
|
|
335
361
|
{ no: 13, name: "ref_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
336
362
|
{ no: 14, name: "vendor_bill_no", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
337
363
|
{ no: 15, name: "vendor_bill_date", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -555,9 +581,9 @@ class GoodsReceipt extends protobuf_1.Message {
|
|
|
555
581
|
/**
|
|
556
582
|
* The associated reference
|
|
557
583
|
*
|
|
558
|
-
* @generated from field:
|
|
584
|
+
* @generated from field: Scailo.GOODS_RECEIPT_REF_FROM ref_from = 12;
|
|
559
585
|
*/
|
|
560
|
-
this.refFrom =
|
|
586
|
+
this.refFrom = GOODS_RECEIPT_REF_FROM.GOODS_RECEIPT_REF_FROM_ANY_UNSPECIFIED;
|
|
561
587
|
/**
|
|
562
588
|
* The associated ID of the reference
|
|
563
589
|
*
|
|
@@ -616,7 +642,7 @@ GoodsReceipt.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
|
616
642
|
{ no: 9, name: "vault_folder_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
617
643
|
{ no: 10, name: "reference_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
618
644
|
{ no: 11, name: "final_ref_number", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
619
|
-
{ no: 12, name: "ref_from", kind: "
|
|
645
|
+
{ no: 12, name: "ref_from", kind: "enum", T: protobuf_1.proto3.getEnumType(GOODS_RECEIPT_REF_FROM) },
|
|
620
646
|
{ no: 13, name: "ref_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
621
647
|
{ no: 14, name: "vendor_bill_no", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
622
648
|
{ no: 15, name: "vendor_bill_date", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -1234,9 +1260,9 @@ class GoodsReceiptsServiceAlreadyAddedQuantityForSourceRequest extends protobuf_
|
|
|
1234
1260
|
/**
|
|
1235
1261
|
* The associated reference
|
|
1236
1262
|
*
|
|
1237
|
-
* @generated from field:
|
|
1263
|
+
* @generated from field: Scailo.GOODS_RECEIPT_REF_FROM ref_from = 1;
|
|
1238
1264
|
*/
|
|
1239
|
-
this.refFrom =
|
|
1265
|
+
this.refFrom = GOODS_RECEIPT_REF_FROM.GOODS_RECEIPT_REF_FROM_ANY_UNSPECIFIED;
|
|
1240
1266
|
/**
|
|
1241
1267
|
* The associated ID of the reference
|
|
1242
1268
|
*
|
|
@@ -1268,7 +1294,7 @@ exports.GoodsReceiptsServiceAlreadyAddedQuantityForSourceRequest = GoodsReceipts
|
|
|
1268
1294
|
GoodsReceiptsServiceAlreadyAddedQuantityForSourceRequest.runtime = protobuf_1.proto3;
|
|
1269
1295
|
GoodsReceiptsServiceAlreadyAddedQuantityForSourceRequest.typeName = "Scailo.GoodsReceiptsServiceAlreadyAddedQuantityForSourceRequest";
|
|
1270
1296
|
GoodsReceiptsServiceAlreadyAddedQuantityForSourceRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1271
|
-
{ no: 1, name: "ref_from", kind: "
|
|
1297
|
+
{ no: 1, name: "ref_from", kind: "enum", T: protobuf_1.proto3.getEnumType(GOODS_RECEIPT_REF_FROM) },
|
|
1272
1298
|
{ no: 2, name: "ref_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
1273
1299
|
{ no: 3, name: "family_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
1274
1300
|
]);
|
|
@@ -1526,9 +1552,9 @@ class GoodsReceiptsServiceFilterReq extends protobuf_1.Message {
|
|
|
1526
1552
|
/**
|
|
1527
1553
|
* The associated reference
|
|
1528
1554
|
*
|
|
1529
|
-
* @generated from field:
|
|
1555
|
+
* @generated from field: Scailo.GOODS_RECEIPT_REF_FROM ref_from = 22;
|
|
1530
1556
|
*/
|
|
1531
|
-
this.refFrom =
|
|
1557
|
+
this.refFrom = GOODS_RECEIPT_REF_FROM.GOODS_RECEIPT_REF_FROM_ANY_UNSPECIFIED;
|
|
1532
1558
|
/**
|
|
1533
1559
|
* The associated ID of the reference
|
|
1534
1560
|
*
|
|
@@ -1621,7 +1647,7 @@ GoodsReceiptsServiceFilterReq.fields = protobuf_1.proto3.util.newFieldList(() =>
|
|
|
1621
1647
|
{ no: 16, name: "completed_on_end", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
1622
1648
|
{ no: 20, name: "reference_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1623
1649
|
{ no: 21, name: "final_ref_number", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1624
|
-
{ no: 22, name: "ref_from", kind: "
|
|
1650
|
+
{ no: 22, name: "ref_from", kind: "enum", T: protobuf_1.proto3.getEnumType(GOODS_RECEIPT_REF_FROM) },
|
|
1625
1651
|
{ no: 23, name: "ref_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
1626
1652
|
{ no: 24, name: "vendor_bill_no", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1627
1653
|
{ no: 25, name: "vendor_bill_date_start", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -1734,9 +1760,9 @@ class GoodsReceiptsServiceCountReq extends protobuf_1.Message {
|
|
|
1734
1760
|
/**
|
|
1735
1761
|
* The associated reference
|
|
1736
1762
|
*
|
|
1737
|
-
* @generated from field:
|
|
1763
|
+
* @generated from field: Scailo.GOODS_RECEIPT_REF_FROM ref_from = 22;
|
|
1738
1764
|
*/
|
|
1739
|
-
this.refFrom =
|
|
1765
|
+
this.refFrom = GOODS_RECEIPT_REF_FROM.GOODS_RECEIPT_REF_FROM_ANY_UNSPECIFIED;
|
|
1740
1766
|
/**
|
|
1741
1767
|
* The associated ID of the reference
|
|
1742
1768
|
*
|
|
@@ -1825,7 +1851,7 @@ GoodsReceiptsServiceCountReq.fields = protobuf_1.proto3.util.newFieldList(() =>
|
|
|
1825
1851
|
{ no: 16, name: "completed_on_end", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
1826
1852
|
{ no: 20, name: "reference_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1827
1853
|
{ no: 21, name: "final_ref_number", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1828
|
-
{ no: 22, name: "ref_from", kind: "
|
|
1854
|
+
{ no: 22, name: "ref_from", kind: "enum", T: protobuf_1.proto3.getEnumType(GOODS_RECEIPT_REF_FROM) },
|
|
1829
1855
|
{ no: 23, name: "ref_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
1830
1856
|
{ no: 24, name: "vendor_bill_no", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1831
1857
|
{ no: 25, name: "vendor_bill_date_start", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -1896,9 +1922,9 @@ class GoodsReceiptsServiceSearchAllReq extends protobuf_1.Message {
|
|
|
1896
1922
|
/**
|
|
1897
1923
|
* The associated reference
|
|
1898
1924
|
*
|
|
1899
|
-
* @generated from field:
|
|
1925
|
+
* @generated from field: Scailo.GOODS_RECEIPT_REF_FROM ref_from = 22;
|
|
1900
1926
|
*/
|
|
1901
|
-
this.refFrom =
|
|
1927
|
+
this.refFrom = GOODS_RECEIPT_REF_FROM.GOODS_RECEIPT_REF_FROM_ANY_UNSPECIFIED;
|
|
1902
1928
|
/**
|
|
1903
1929
|
* The associated ID of the reference
|
|
1904
1930
|
*
|
|
@@ -1944,7 +1970,7 @@ GoodsReceiptsServiceSearchAllReq.fields = protobuf_1.proto3.util.newFieldList(()
|
|
|
1944
1970
|
{ no: 6, name: "entity_uuid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1945
1971
|
{ no: 10, name: "status", kind: "enum", T: protobuf_1.proto3.getEnumType(base_scailo_pb_js_1.STANDARD_LIFECYCLE_STATUS) },
|
|
1946
1972
|
{ no: 11, name: "search_key", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1947
|
-
{ no: 22, name: "ref_from", kind: "
|
|
1973
|
+
{ no: 22, name: "ref_from", kind: "enum", T: protobuf_1.proto3.getEnumType(GOODS_RECEIPT_REF_FROM) },
|
|
1948
1974
|
{ no: 23, name: "ref_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
1949
1975
|
{ no: 40, name: "billing_status", kind: "enum", T: protobuf_1.proto3.getEnumType(GOODS_RECEIPT_BILLING_STATUS) },
|
|
1950
1976
|
{ no: 50, name: "vendor_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
@@ -325,5 +325,28 @@ exports.InfrastructuresService = {
|
|
|
325
325
|
O: base_scailo_pb_js_1.CountResponse,
|
|
326
326
|
kind: protobuf_1.MethodKind.Unary,
|
|
327
327
|
},
|
|
328
|
+
/**
|
|
329
|
+
* CSV operations
|
|
330
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
331
|
+
*
|
|
332
|
+
* @generated from rpc Scailo.InfrastructuresService.DownloadAsCSV
|
|
333
|
+
*/
|
|
334
|
+
downloadAsCSV: {
|
|
335
|
+
name: "DownloadAsCSV",
|
|
336
|
+
I: infrastructures_scailo_pb_js_1.InfrastructuresServiceFilterReq,
|
|
337
|
+
O: base_scailo_pb_js_1.StandardFile,
|
|
338
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
339
|
+
},
|
|
340
|
+
/**
|
|
341
|
+
* Import records using a CSV file. Imports records as initial stock
|
|
342
|
+
*
|
|
343
|
+
* @generated from rpc Scailo.InfrastructuresService.ImportFromCSV
|
|
344
|
+
*/
|
|
345
|
+
importFromCSV: {
|
|
346
|
+
name: "ImportFromCSV",
|
|
347
|
+
I: base_scailo_pb_js_1.StandardFile,
|
|
348
|
+
O: base_scailo_pb_js_1.IdentifierUUIDsList,
|
|
349
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
350
|
+
},
|
|
328
351
|
}
|
|
329
352
|
};
|
|
@@ -325,5 +325,28 @@ exports.MerchandisesService = {
|
|
|
325
325
|
O: base_scailo_pb_js_1.CountResponse,
|
|
326
326
|
kind: protobuf_1.MethodKind.Unary,
|
|
327
327
|
},
|
|
328
|
+
/**
|
|
329
|
+
* CSV operations
|
|
330
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
331
|
+
*
|
|
332
|
+
* @generated from rpc Scailo.MerchandisesService.DownloadAsCSV
|
|
333
|
+
*/
|
|
334
|
+
downloadAsCSV: {
|
|
335
|
+
name: "DownloadAsCSV",
|
|
336
|
+
I: merchandises_scailo_pb_js_1.MerchandisesServiceFilterReq,
|
|
337
|
+
O: base_scailo_pb_js_1.StandardFile,
|
|
338
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
339
|
+
},
|
|
340
|
+
/**
|
|
341
|
+
* Import records using a CSV file. Imports records as initial stock
|
|
342
|
+
*
|
|
343
|
+
* @generated from rpc Scailo.MerchandisesService.ImportFromCSV
|
|
344
|
+
*/
|
|
345
|
+
importFromCSV: {
|
|
346
|
+
name: "ImportFromCSV",
|
|
347
|
+
I: base_scailo_pb_js_1.StandardFile,
|
|
348
|
+
O: base_scailo_pb_js_1.IdentifierUUIDsList,
|
|
349
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
350
|
+
},
|
|
328
351
|
}
|
|
329
352
|
};
|
|
@@ -314,5 +314,28 @@ exports.ProductsService = {
|
|
|
314
314
|
O: base_scailo_pb_js_1.CountResponse,
|
|
315
315
|
kind: protobuf_1.MethodKind.Unary,
|
|
316
316
|
},
|
|
317
|
+
/**
|
|
318
|
+
* CSV operations
|
|
319
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
320
|
+
*
|
|
321
|
+
* @generated from rpc Scailo.ProductsService.DownloadAsCSV
|
|
322
|
+
*/
|
|
323
|
+
downloadAsCSV: {
|
|
324
|
+
name: "DownloadAsCSV",
|
|
325
|
+
I: products_scailo_pb_js_1.ProductsServiceFilterReq,
|
|
326
|
+
O: base_scailo_pb_js_1.StandardFile,
|
|
327
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
328
|
+
},
|
|
329
|
+
/**
|
|
330
|
+
* Import records using a CSV file. Imports records as initial stock
|
|
331
|
+
*
|
|
332
|
+
* @generated from rpc Scailo.ProductsService.ImportFromCSV
|
|
333
|
+
*/
|
|
334
|
+
importFromCSV: {
|
|
335
|
+
name: "ImportFromCSV",
|
|
336
|
+
I: base_scailo_pb_js_1.StandardFile,
|
|
337
|
+
O: base_scailo_pb_js_1.IdentifierUUIDsList,
|
|
338
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
339
|
+
},
|
|
317
340
|
}
|
|
318
341
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Component, ComponentsList, ComponentsServiceCountReq, ComponentsServiceCreateRequest, ComponentsServiceFilterReq, ComponentsServicePaginationReq, ComponentsServicePaginationResponse, ComponentsServiceSearchAllReq, ComponentsServiceSendToStoreRequest, ComponentsServiceUpdateRequest } from "./components.scailo_pb.js";
|
|
2
|
-
import { ActiveStatus, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithUserComment, InventoryInteractionsList, InventoryPartitionRequest, StandardFile } from "./base.scailo_pb.js";
|
|
2
|
+
import { ActiveStatus, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDsList, IdentifierUUIDWithUserComment, InventoryInteractionsList, InventoryPartitionRequest, StandardFile } from "./base.scailo_pb.js";
|
|
3
3
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
4
4
|
/**
|
|
5
5
|
*
|
|
@@ -318,6 +318,29 @@ export declare const ComponentsService: {
|
|
|
318
318
|
readonly O: typeof CountResponse;
|
|
319
319
|
readonly kind: MethodKind.Unary;
|
|
320
320
|
};
|
|
321
|
+
/**
|
|
322
|
+
* CSV operations
|
|
323
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
324
|
+
*
|
|
325
|
+
* @generated from rpc Scailo.ComponentsService.DownloadAsCSV
|
|
326
|
+
*/
|
|
327
|
+
readonly downloadAsCSV: {
|
|
328
|
+
readonly name: "DownloadAsCSV";
|
|
329
|
+
readonly I: typeof ComponentsServiceFilterReq;
|
|
330
|
+
readonly O: typeof StandardFile;
|
|
331
|
+
readonly kind: MethodKind.Unary;
|
|
332
|
+
};
|
|
333
|
+
/**
|
|
334
|
+
* Import records using a CSV file. Imports records as initial stock
|
|
335
|
+
*
|
|
336
|
+
* @generated from rpc Scailo.ComponentsService.ImportFromCSV
|
|
337
|
+
*/
|
|
338
|
+
readonly importFromCSV: {
|
|
339
|
+
readonly name: "ImportFromCSV";
|
|
340
|
+
readonly I: typeof StandardFile;
|
|
341
|
+
readonly O: typeof IdentifierUUIDsList;
|
|
342
|
+
readonly kind: MethodKind.Unary;
|
|
343
|
+
};
|
|
321
344
|
};
|
|
322
345
|
};
|
|
323
346
|
//# sourceMappingURL=components.scailo_connect.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"components.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/components.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,yBAAyB,EAAE,8BAA8B,EAAE,0BAA0B,EAAE,8BAA8B,EAAE,mCAAmC,EAAE,6BAA6B,EAAE,mCAAmC,EAAE,8BAA8B,EAAE,MAAM,2BAA2B,CAAC;AACtU,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"components.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/components.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,yBAAyB,EAAE,8BAA8B,EAAE,0BAA0B,EAAE,8BAA8B,EAAE,mCAAmC,EAAE,6BAA6B,EAAE,mCAAmC,EAAE,8BAA8B,EAAE,MAAM,2BAA2B,CAAC;AACtU,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,mBAAmB,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAC3P,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,iBAAiB;;;QAG1B;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Equipment, EquipmentsList, EquipmentsServiceCountReq, EquipmentsServiceCreateRequest, EquipmentsServiceFilterReq, EquipmentsServicePaginationReq, EquipmentsServicePaginationResponse, EquipmentsServiceSearchAllReq, EquipmentsServiceSendToStoreRequest, EquipmentsServiceUpdateRequest } from "./equipments.scailo_pb.js";
|
|
2
|
-
import { ActiveStatus, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithUserComment, InventoryInteractionsList, InventoryPartitionRequest, StandardFile } from "./base.scailo_pb.js";
|
|
2
|
+
import { ActiveStatus, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDsList, IdentifierUUIDWithUserComment, InventoryInteractionsList, InventoryPartitionRequest, StandardFile } from "./base.scailo_pb.js";
|
|
3
3
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
4
4
|
/**
|
|
5
5
|
*
|
|
@@ -318,6 +318,29 @@ export declare const EquipmentsService: {
|
|
|
318
318
|
readonly O: typeof CountResponse;
|
|
319
319
|
readonly kind: MethodKind.Unary;
|
|
320
320
|
};
|
|
321
|
+
/**
|
|
322
|
+
* CSV operations
|
|
323
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
324
|
+
*
|
|
325
|
+
* @generated from rpc Scailo.EquipmentsService.DownloadAsCSV
|
|
326
|
+
*/
|
|
327
|
+
readonly downloadAsCSV: {
|
|
328
|
+
readonly name: "DownloadAsCSV";
|
|
329
|
+
readonly I: typeof EquipmentsServiceFilterReq;
|
|
330
|
+
readonly O: typeof StandardFile;
|
|
331
|
+
readonly kind: MethodKind.Unary;
|
|
332
|
+
};
|
|
333
|
+
/**
|
|
334
|
+
* Import records using a CSV file. Imports records as initial stock
|
|
335
|
+
*
|
|
336
|
+
* @generated from rpc Scailo.EquipmentsService.ImportFromCSV
|
|
337
|
+
*/
|
|
338
|
+
readonly importFromCSV: {
|
|
339
|
+
readonly name: "ImportFromCSV";
|
|
340
|
+
readonly I: typeof StandardFile;
|
|
341
|
+
readonly O: typeof IdentifierUUIDsList;
|
|
342
|
+
readonly kind: MethodKind.Unary;
|
|
343
|
+
};
|
|
321
344
|
};
|
|
322
345
|
};
|
|
323
346
|
//# sourceMappingURL=equipments.scailo_connect.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"equipments.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/equipments.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,yBAAyB,EAAE,8BAA8B,EAAE,0BAA0B,EAAE,8BAA8B,EAAE,mCAAmC,EAAE,6BAA6B,EAAE,mCAAmC,EAAE,8BAA8B,EAAE,MAAM,2BAA2B,CAAC;AACtU,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"equipments.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/equipments.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,yBAAyB,EAAE,8BAA8B,EAAE,0BAA0B,EAAE,8BAA8B,EAAE,mCAAmC,EAAE,6BAA6B,EAAE,mCAAmC,EAAE,8BAA8B,EAAE,MAAM,2BAA2B,CAAC;AACtU,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,mBAAmB,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAC3P,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,iBAAiB;;;QAG1B;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Feedstock, FeedstocksList, FeedstocksServiceCountReq, FeedstocksServiceCreateRequest, FeedstocksServiceFilterReq, FeedstocksServicePaginationReq, FeedstocksServicePaginationResponse, FeedstocksServiceSearchAllReq, FeedstocksServiceSendToStoreRequest, FeedstocksServiceUpdateRequest } from "./feedstocks.scailo_pb.js";
|
|
2
|
-
import { ActiveStatus, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithUserComment, InventoryInteractionsList, InventoryPartitionRequest, StandardFile } from "./base.scailo_pb.js";
|
|
2
|
+
import { ActiveStatus, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDsList, IdentifierUUIDWithUserComment, InventoryInteractionsList, InventoryPartitionRequest, StandardFile } from "./base.scailo_pb.js";
|
|
3
3
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
4
4
|
/**
|
|
5
5
|
*
|
|
@@ -318,6 +318,29 @@ export declare const FeedstocksService: {
|
|
|
318
318
|
readonly O: typeof CountResponse;
|
|
319
319
|
readonly kind: MethodKind.Unary;
|
|
320
320
|
};
|
|
321
|
+
/**
|
|
322
|
+
* CSV operations
|
|
323
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
324
|
+
*
|
|
325
|
+
* @generated from rpc Scailo.FeedstocksService.DownloadAsCSV
|
|
326
|
+
*/
|
|
327
|
+
readonly downloadAsCSV: {
|
|
328
|
+
readonly name: "DownloadAsCSV";
|
|
329
|
+
readonly I: typeof FeedstocksServiceFilterReq;
|
|
330
|
+
readonly O: typeof StandardFile;
|
|
331
|
+
readonly kind: MethodKind.Unary;
|
|
332
|
+
};
|
|
333
|
+
/**
|
|
334
|
+
* Import records using a CSV file. Imports records as initial stock
|
|
335
|
+
*
|
|
336
|
+
* @generated from rpc Scailo.FeedstocksService.ImportFromCSV
|
|
337
|
+
*/
|
|
338
|
+
readonly importFromCSV: {
|
|
339
|
+
readonly name: "ImportFromCSV";
|
|
340
|
+
readonly I: typeof StandardFile;
|
|
341
|
+
readonly O: typeof IdentifierUUIDsList;
|
|
342
|
+
readonly kind: MethodKind.Unary;
|
|
343
|
+
};
|
|
321
344
|
};
|
|
322
345
|
};
|
|
323
346
|
//# sourceMappingURL=feedstocks.scailo_connect.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"feedstocks.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/feedstocks.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,yBAAyB,EAAE,8BAA8B,EAAE,0BAA0B,EAAE,8BAA8B,EAAE,mCAAmC,EAAE,6BAA6B,EAAE,mCAAmC,EAAE,8BAA8B,EAAE,MAAM,2BAA2B,CAAC;AACtU,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"feedstocks.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/feedstocks.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,yBAAyB,EAAE,8BAA8B,EAAE,0BAA0B,EAAE,8BAA8B,EAAE,mCAAmC,EAAE,6BAA6B,EAAE,mCAAmC,EAAE,8BAA8B,EAAE,MAAM,2BAA2B,CAAC;AACtU,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,mBAAmB,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAC3P,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,iBAAiB;;;QAG1B;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
|
|
@@ -2,6 +2,26 @@ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialM
|
|
|
2
2
|
import { Message, proto3 } from "@bufbuild/protobuf";
|
|
3
3
|
import { FormFieldDatum, FormFieldDatumCreateRequest } from "./forms_fields_data.scailo_pb.js";
|
|
4
4
|
import { ApprovalMetadata, BOOL_FILTER, EmployeeMetadata, LogbookLogConciseSLC, SORT_ORDER, STANDARD_LIFECYCLE_STATUS } from "./base.scailo_pb.js";
|
|
5
|
+
/**
|
|
6
|
+
*
|
|
7
|
+
* Stores all the possible references from which a goods receipt can be added
|
|
8
|
+
*
|
|
9
|
+
* @generated from enum Scailo.GOODS_RECEIPT_REF_FROM
|
|
10
|
+
*/
|
|
11
|
+
export declare enum GOODS_RECEIPT_REF_FROM {
|
|
12
|
+
/**
|
|
13
|
+
* Used only in filters
|
|
14
|
+
*
|
|
15
|
+
* @generated from enum value: GOODS_RECEIPT_REF_FROM_ANY_UNSPECIFIED = 0;
|
|
16
|
+
*/
|
|
17
|
+
GOODS_RECEIPT_REF_FROM_ANY_UNSPECIFIED = 0,
|
|
18
|
+
/**
|
|
19
|
+
* Denotes that the goods receipt originated from a purchase order
|
|
20
|
+
*
|
|
21
|
+
* @generated from enum value: GOODS_RECEIPT_REF_FROM_PURCHASE_ORDER = 1;
|
|
22
|
+
*/
|
|
23
|
+
GOODS_RECEIPT_REF_FROM_PURCHASE_ORDER = 1
|
|
24
|
+
}
|
|
5
25
|
/**
|
|
6
26
|
*
|
|
7
27
|
* Describes the available sort keys
|
|
@@ -230,9 +250,9 @@ export declare class GoodsReceiptsServiceCreateRequest extends Message<GoodsRece
|
|
|
230
250
|
/**
|
|
231
251
|
* The associated reference
|
|
232
252
|
*
|
|
233
|
-
* @generated from field:
|
|
253
|
+
* @generated from field: Scailo.GOODS_RECEIPT_REF_FROM ref_from = 12;
|
|
234
254
|
*/
|
|
235
|
-
refFrom:
|
|
255
|
+
refFrom: GOODS_RECEIPT_REF_FROM;
|
|
236
256
|
/**
|
|
237
257
|
* The associated ID of the reference
|
|
238
258
|
*
|
|
@@ -444,9 +464,9 @@ export declare class GoodsReceipt extends Message<GoodsReceipt> {
|
|
|
444
464
|
/**
|
|
445
465
|
* The associated reference
|
|
446
466
|
*
|
|
447
|
-
* @generated from field:
|
|
467
|
+
* @generated from field: Scailo.GOODS_RECEIPT_REF_FROM ref_from = 12;
|
|
448
468
|
*/
|
|
449
|
-
refFrom:
|
|
469
|
+
refFrom: GOODS_RECEIPT_REF_FROM;
|
|
450
470
|
/**
|
|
451
471
|
* The associated ID of the reference
|
|
452
472
|
*
|
|
@@ -941,9 +961,9 @@ export declare class GoodsReceiptsServiceAlreadyAddedQuantityForSourceRequest ex
|
|
|
941
961
|
/**
|
|
942
962
|
* The associated reference
|
|
943
963
|
*
|
|
944
|
-
* @generated from field:
|
|
964
|
+
* @generated from field: Scailo.GOODS_RECEIPT_REF_FROM ref_from = 1;
|
|
945
965
|
*/
|
|
946
|
-
refFrom:
|
|
966
|
+
refFrom: GOODS_RECEIPT_REF_FROM;
|
|
947
967
|
/**
|
|
948
968
|
* The associated ID of the reference
|
|
949
969
|
*
|
|
@@ -1181,9 +1201,9 @@ export declare class GoodsReceiptsServiceFilterReq extends Message<GoodsReceipts
|
|
|
1181
1201
|
/**
|
|
1182
1202
|
* The associated reference
|
|
1183
1203
|
*
|
|
1184
|
-
* @generated from field:
|
|
1204
|
+
* @generated from field: Scailo.GOODS_RECEIPT_REF_FROM ref_from = 22;
|
|
1185
1205
|
*/
|
|
1186
|
-
refFrom:
|
|
1206
|
+
refFrom: GOODS_RECEIPT_REF_FROM;
|
|
1187
1207
|
/**
|
|
1188
1208
|
* The associated ID of the reference
|
|
1189
1209
|
*
|
|
@@ -1347,9 +1367,9 @@ export declare class GoodsReceiptsServiceCountReq extends Message<GoodsReceiptsS
|
|
|
1347
1367
|
/**
|
|
1348
1368
|
* The associated reference
|
|
1349
1369
|
*
|
|
1350
|
-
* @generated from field:
|
|
1370
|
+
* @generated from field: Scailo.GOODS_RECEIPT_REF_FROM ref_from = 22;
|
|
1351
1371
|
*/
|
|
1352
|
-
refFrom:
|
|
1372
|
+
refFrom: GOODS_RECEIPT_REF_FROM;
|
|
1353
1373
|
/**
|
|
1354
1374
|
* The associated ID of the reference
|
|
1355
1375
|
*
|
|
@@ -1471,9 +1491,9 @@ export declare class GoodsReceiptsServiceSearchAllReq extends Message<GoodsRecei
|
|
|
1471
1491
|
/**
|
|
1472
1492
|
* The associated reference
|
|
1473
1493
|
*
|
|
1474
|
-
* @generated from field:
|
|
1494
|
+
* @generated from field: Scailo.GOODS_RECEIPT_REF_FROM ref_from = 22;
|
|
1475
1495
|
*/
|
|
1476
|
-
refFrom:
|
|
1496
|
+
refFrom: GOODS_RECEIPT_REF_FROM;
|
|
1477
1497
|
/**
|
|
1478
1498
|
* The associated ID of the reference
|
|
1479
1499
|
*
|