@kernelminds/scailo-sdk 0.0.59 → 0.0.61

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.
Files changed (37) hide show
  1. package/lib/cjs/src/components.scailo_connect.js +34 -0
  2. package/lib/cjs/src/equipments.scailo_connect.js +34 -0
  3. package/lib/cjs/src/feedstocks.scailo_connect.js +34 -0
  4. package/lib/cjs/src/infrastructures.scailo_connect.js +34 -0
  5. package/lib/cjs/src/merchandises.scailo_connect.js +34 -0
  6. package/lib/cjs/src/products.scailo_connect.js +34 -0
  7. package/lib/cjs/types/src/components.scailo_connect.d.ts +35 -1
  8. package/lib/cjs/types/src/components.scailo_connect.d.ts.map +1 -1
  9. package/lib/cjs/types/src/equipments.scailo_connect.d.ts +35 -1
  10. package/lib/cjs/types/src/equipments.scailo_connect.d.ts.map +1 -1
  11. package/lib/cjs/types/src/feedstocks.scailo_connect.d.ts +35 -1
  12. package/lib/cjs/types/src/feedstocks.scailo_connect.d.ts.map +1 -1
  13. package/lib/cjs/types/src/infrastructures.scailo_connect.d.ts +35 -1
  14. package/lib/cjs/types/src/infrastructures.scailo_connect.d.ts.map +1 -1
  15. package/lib/cjs/types/src/merchandises.scailo_connect.d.ts +35 -1
  16. package/lib/cjs/types/src/merchandises.scailo_connect.d.ts.map +1 -1
  17. package/lib/cjs/types/src/products.scailo_connect.d.ts +35 -1
  18. package/lib/cjs/types/src/products.scailo_connect.d.ts.map +1 -1
  19. package/lib/esm/src/components.scailo_connect.js +34 -0
  20. package/lib/esm/src/equipments.scailo_connect.js +34 -0
  21. package/lib/esm/src/feedstocks.scailo_connect.js +34 -0
  22. package/lib/esm/src/infrastructures.scailo_connect.js +34 -0
  23. package/lib/esm/src/merchandises.scailo_connect.js +34 -0
  24. package/lib/esm/src/products.scailo_connect.js +34 -0
  25. package/lib/esm/types/src/components.scailo_connect.d.ts +35 -1
  26. package/lib/esm/types/src/components.scailo_connect.d.ts.map +1 -1
  27. package/lib/esm/types/src/equipments.scailo_connect.d.ts +35 -1
  28. package/lib/esm/types/src/equipments.scailo_connect.d.ts.map +1 -1
  29. package/lib/esm/types/src/feedstocks.scailo_connect.d.ts +35 -1
  30. package/lib/esm/types/src/feedstocks.scailo_connect.d.ts.map +1 -1
  31. package/lib/esm/types/src/infrastructures.scailo_connect.d.ts +35 -1
  32. package/lib/esm/types/src/infrastructures.scailo_connect.d.ts.map +1 -1
  33. package/lib/esm/types/src/merchandises.scailo_connect.d.ts +35 -1
  34. package/lib/esm/types/src/merchandises.scailo_connect.d.ts.map +1 -1
  35. package/lib/esm/types/src/products.scailo_connect.d.ts +35 -1
  36. package/lib/esm/types/src/products.scailo_connect.d.ts.map +1 -1
  37. package/package.json +1 -1
@@ -325,5 +325,39 @@ 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
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
+ * Download the CSV template that could be used to upload records
342
+ *
343
+ * @generated from rpc Scailo.ComponentsService.DownloadImportTemplate
344
+ */
345
+ downloadImportTemplate: {
346
+ name: "DownloadImportTemplate",
347
+ I: base_scailo_pb_js_1.Empty,
348
+ O: base_scailo_pb_js_1.StandardFile,
349
+ kind: protobuf_1.MethodKind.Unary,
350
+ },
351
+ /**
352
+ * Import records using a CSV file. Imports records as initial stock
353
+ *
354
+ * @generated from rpc Scailo.ComponentsService.ImportFromCSV
355
+ */
356
+ importFromCSV: {
357
+ name: "ImportFromCSV",
358
+ I: base_scailo_pb_js_1.StandardFile,
359
+ O: base_scailo_pb_js_1.IdentifierUUIDsList,
360
+ kind: protobuf_1.MethodKind.Unary,
361
+ },
328
362
  }
329
363
  };
@@ -325,5 +325,39 @@ 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
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
+ * Download the CSV template that could be used to upload records
342
+ *
343
+ * @generated from rpc Scailo.EquipmentsService.DownloadImportTemplate
344
+ */
345
+ downloadImportTemplate: {
346
+ name: "DownloadImportTemplate",
347
+ I: base_scailo_pb_js_1.Empty,
348
+ O: base_scailo_pb_js_1.StandardFile,
349
+ kind: protobuf_1.MethodKind.Unary,
350
+ },
351
+ /**
352
+ * Import records using a CSV file. Imports records as initial stock
353
+ *
354
+ * @generated from rpc Scailo.EquipmentsService.ImportFromCSV
355
+ */
356
+ importFromCSV: {
357
+ name: "ImportFromCSV",
358
+ I: base_scailo_pb_js_1.StandardFile,
359
+ O: base_scailo_pb_js_1.IdentifierUUIDsList,
360
+ kind: protobuf_1.MethodKind.Unary,
361
+ },
328
362
  }
329
363
  };
@@ -325,5 +325,39 @@ 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
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
+ * Download the CSV template that could be used to upload records
342
+ *
343
+ * @generated from rpc Scailo.FeedstocksService.DownloadImportTemplate
344
+ */
345
+ downloadImportTemplate: {
346
+ name: "DownloadImportTemplate",
347
+ I: base_scailo_pb_js_1.Empty,
348
+ O: base_scailo_pb_js_1.StandardFile,
349
+ kind: protobuf_1.MethodKind.Unary,
350
+ },
351
+ /**
352
+ * Import records using a CSV file. Imports records as initial stock
353
+ *
354
+ * @generated from rpc Scailo.FeedstocksService.ImportFromCSV
355
+ */
356
+ importFromCSV: {
357
+ name: "ImportFromCSV",
358
+ I: base_scailo_pb_js_1.StandardFile,
359
+ O: base_scailo_pb_js_1.IdentifierUUIDsList,
360
+ kind: protobuf_1.MethodKind.Unary,
361
+ },
328
362
  }
329
363
  };
@@ -325,5 +325,39 @@ 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
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
+ * Download the CSV template that could be used to upload records
342
+ *
343
+ * @generated from rpc Scailo.InfrastructuresService.DownloadImportTemplate
344
+ */
345
+ downloadImportTemplate: {
346
+ name: "DownloadImportTemplate",
347
+ I: base_scailo_pb_js_1.Empty,
348
+ O: base_scailo_pb_js_1.StandardFile,
349
+ kind: protobuf_1.MethodKind.Unary,
350
+ },
351
+ /**
352
+ * Import records using a CSV file. Imports records as initial stock
353
+ *
354
+ * @generated from rpc Scailo.InfrastructuresService.ImportFromCSV
355
+ */
356
+ importFromCSV: {
357
+ name: "ImportFromCSV",
358
+ I: base_scailo_pb_js_1.StandardFile,
359
+ O: base_scailo_pb_js_1.IdentifierUUIDsList,
360
+ kind: protobuf_1.MethodKind.Unary,
361
+ },
328
362
  }
329
363
  };
@@ -325,5 +325,39 @@ 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
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
+ * Download the CSV template that could be used to upload records
342
+ *
343
+ * @generated from rpc Scailo.MerchandisesService.DownloadImportTemplate
344
+ */
345
+ downloadImportTemplate: {
346
+ name: "DownloadImportTemplate",
347
+ I: base_scailo_pb_js_1.Empty,
348
+ O: base_scailo_pb_js_1.StandardFile,
349
+ kind: protobuf_1.MethodKind.Unary,
350
+ },
351
+ /**
352
+ * Import records using a CSV file. Imports records as initial stock
353
+ *
354
+ * @generated from rpc Scailo.MerchandisesService.ImportFromCSV
355
+ */
356
+ importFromCSV: {
357
+ name: "ImportFromCSV",
358
+ I: base_scailo_pb_js_1.StandardFile,
359
+ O: base_scailo_pb_js_1.IdentifierUUIDsList,
360
+ kind: protobuf_1.MethodKind.Unary,
361
+ },
328
362
  }
329
363
  };
@@ -314,5 +314,39 @@ 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
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
+ * Download the CSV template that could be used to upload records
331
+ *
332
+ * @generated from rpc Scailo.ProductsService.DownloadImportTemplate
333
+ */
334
+ downloadImportTemplate: {
335
+ name: "DownloadImportTemplate",
336
+ I: base_scailo_pb_js_1.Empty,
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.ProductsService.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
+ },
317
351
  }
318
352
  };
@@ -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, Empty, 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,40 @@ 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
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
+ * Download the CSV template that could be used to upload records
335
+ *
336
+ * @generated from rpc Scailo.ComponentsService.DownloadImportTemplate
337
+ */
338
+ readonly downloadImportTemplate: {
339
+ readonly name: "DownloadImportTemplate";
340
+ readonly I: typeof Empty;
341
+ readonly O: typeof StandardFile;
342
+ readonly kind: MethodKind.Unary;
343
+ };
344
+ /**
345
+ * Import records using a CSV file. Imports records as initial stock
346
+ *
347
+ * @generated from rpc Scailo.ComponentsService.ImportFromCSV
348
+ */
349
+ readonly importFromCSV: {
350
+ readonly name: "ImportFromCSV";
351
+ readonly I: typeof StandardFile;
352
+ readonly O: typeof IdentifierUUIDsList;
353
+ readonly kind: MethodKind.Unary;
354
+ };
321
355
  };
322
356
  };
323
357
  //# 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;AACtO,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;;;;;;;;CAQG,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,KAAK,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,mBAAmB,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAClQ,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;;;;;;;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, Empty, 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,40 @@ 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
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
+ * Download the CSV template that could be used to upload records
335
+ *
336
+ * @generated from rpc Scailo.EquipmentsService.DownloadImportTemplate
337
+ */
338
+ readonly downloadImportTemplate: {
339
+ readonly name: "DownloadImportTemplate";
340
+ readonly I: typeof Empty;
341
+ readonly O: typeof StandardFile;
342
+ readonly kind: MethodKind.Unary;
343
+ };
344
+ /**
345
+ * Import records using a CSV file. Imports records as initial stock
346
+ *
347
+ * @generated from rpc Scailo.EquipmentsService.ImportFromCSV
348
+ */
349
+ readonly importFromCSV: {
350
+ readonly name: "ImportFromCSV";
351
+ readonly I: typeof StandardFile;
352
+ readonly O: typeof IdentifierUUIDsList;
353
+ readonly kind: MethodKind.Unary;
354
+ };
321
355
  };
322
356
  };
323
357
  //# 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;AACtO,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;;;;;;;;CAQG,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,KAAK,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,mBAAmB,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAClQ,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;;;;;;;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, Empty, 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,40 @@ 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
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
+ * Download the CSV template that could be used to upload records
335
+ *
336
+ * @generated from rpc Scailo.FeedstocksService.DownloadImportTemplate
337
+ */
338
+ readonly downloadImportTemplate: {
339
+ readonly name: "DownloadImportTemplate";
340
+ readonly I: typeof Empty;
341
+ readonly O: typeof StandardFile;
342
+ readonly kind: MethodKind.Unary;
343
+ };
344
+ /**
345
+ * Import records using a CSV file. Imports records as initial stock
346
+ *
347
+ * @generated from rpc Scailo.FeedstocksService.ImportFromCSV
348
+ */
349
+ readonly importFromCSV: {
350
+ readonly name: "ImportFromCSV";
351
+ readonly I: typeof StandardFile;
352
+ readonly O: typeof IdentifierUUIDsList;
353
+ readonly kind: MethodKind.Unary;
354
+ };
321
355
  };
322
356
  };
323
357
  //# 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;AACtO,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;;;;;;;;CAQG,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,KAAK,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,mBAAmB,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAClQ,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;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
@@ -1,5 +1,5 @@
1
1
  import { Infrastructure, InfrastructuresList, InfrastructuresServiceCountReq, InfrastructuresServiceCreateRequest, InfrastructuresServiceFilterReq, InfrastructuresServicePaginationReq, InfrastructuresServicePaginationResponse, InfrastructuresServiceSearchAllReq, InfrastructuresServiceSendToStoreRequest, InfrastructuresServiceUpdateRequest } from "./infrastructures.scailo_pb.js";
2
- import { ActiveStatus, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithUserComment, InventoryInteractionsList, InventoryPartitionRequest, StandardFile } from "./base.scailo_pb.js";
2
+ import { ActiveStatus, CountResponse, Empty, 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,40 @@ export declare const InfrastructuresService: {
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
324
+ *
325
+ * @generated from rpc Scailo.InfrastructuresService.DownloadAsCSV
326
+ */
327
+ readonly downloadAsCSV: {
328
+ readonly name: "DownloadAsCSV";
329
+ readonly I: typeof InfrastructuresServiceFilterReq;
330
+ readonly O: typeof StandardFile;
331
+ readonly kind: MethodKind.Unary;
332
+ };
333
+ /**
334
+ * Download the CSV template that could be used to upload records
335
+ *
336
+ * @generated from rpc Scailo.InfrastructuresService.DownloadImportTemplate
337
+ */
338
+ readonly downloadImportTemplate: {
339
+ readonly name: "DownloadImportTemplate";
340
+ readonly I: typeof Empty;
341
+ readonly O: typeof StandardFile;
342
+ readonly kind: MethodKind.Unary;
343
+ };
344
+ /**
345
+ * Import records using a CSV file. Imports records as initial stock
346
+ *
347
+ * @generated from rpc Scailo.InfrastructuresService.ImportFromCSV
348
+ */
349
+ readonly importFromCSV: {
350
+ readonly name: "ImportFromCSV";
351
+ readonly I: typeof StandardFile;
352
+ readonly O: typeof IdentifierUUIDsList;
353
+ readonly kind: MethodKind.Unary;
354
+ };
321
355
  };
322
356
  };
323
357
  //# sourceMappingURL=infrastructures.scailo_connect.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"infrastructures.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/infrastructures.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAE,mBAAmB,EAAE,8BAA8B,EAAE,mCAAmC,EAAE,+BAA+B,EAAE,mCAAmC,EAAE,wCAAwC,EAAE,kCAAkC,EAAE,wCAAwC,EAAE,mCAAmC,EAAE,MAAM,gCAAgC,CAAC;AAC7X,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;AACtO,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,sBAAsB;;;QAG/B;;;;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;;;;;;;;CAQG,CAAC"}
1
+ {"version":3,"file":"infrastructures.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/infrastructures.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAE,mBAAmB,EAAE,8BAA8B,EAAE,mCAAmC,EAAE,+BAA+B,EAAE,mCAAmC,EAAE,wCAAwC,EAAE,kCAAkC,EAAE,wCAAwC,EAAE,mCAAmC,EAAE,MAAM,gCAAgC,CAAC;AAC7X,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,KAAK,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,mBAAmB,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAClQ,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,sBAAsB;;;QAG/B;;;;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;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
@@ -1,5 +1,5 @@
1
1
  import { Merchandise, MerchandisesList, MerchandisesServiceCountReq, MerchandisesServiceCreateRequest, MerchandisesServiceFilterReq, MerchandisesServicePaginationReq, MerchandisesServicePaginationResponse, MerchandisesServiceSearchAllReq, MerchandisesServiceSendToStoreRequest, MerchandisesServiceUpdateRequest } from "./merchandises.scailo_pb.js";
2
- import { ActiveStatus, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithUserComment, InventoryInteractionsList, InventoryPartitionRequest, StandardFile } from "./base.scailo_pb.js";
2
+ import { ActiveStatus, CountResponse, Empty, 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,40 @@ export declare const MerchandisesService: {
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
324
+ *
325
+ * @generated from rpc Scailo.MerchandisesService.DownloadAsCSV
326
+ */
327
+ readonly downloadAsCSV: {
328
+ readonly name: "DownloadAsCSV";
329
+ readonly I: typeof MerchandisesServiceFilterReq;
330
+ readonly O: typeof StandardFile;
331
+ readonly kind: MethodKind.Unary;
332
+ };
333
+ /**
334
+ * Download the CSV template that could be used to upload records
335
+ *
336
+ * @generated from rpc Scailo.MerchandisesService.DownloadImportTemplate
337
+ */
338
+ readonly downloadImportTemplate: {
339
+ readonly name: "DownloadImportTemplate";
340
+ readonly I: typeof Empty;
341
+ readonly O: typeof StandardFile;
342
+ readonly kind: MethodKind.Unary;
343
+ };
344
+ /**
345
+ * Import records using a CSV file. Imports records as initial stock
346
+ *
347
+ * @generated from rpc Scailo.MerchandisesService.ImportFromCSV
348
+ */
349
+ readonly importFromCSV: {
350
+ readonly name: "ImportFromCSV";
351
+ readonly I: typeof StandardFile;
352
+ readonly O: typeof IdentifierUUIDsList;
353
+ readonly kind: MethodKind.Unary;
354
+ };
321
355
  };
322
356
  };
323
357
  //# sourceMappingURL=merchandises.scailo_connect.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"merchandises.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/merchandises.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAE,2BAA2B,EAAE,gCAAgC,EAAE,4BAA4B,EAAE,gCAAgC,EAAE,qCAAqC,EAAE,+BAA+B,EAAE,qCAAqC,EAAE,gCAAgC,EAAE,MAAM,6BAA6B,CAAC;AAC5V,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;AACtO,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,mBAAmB;;;QAG5B;;;;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;;;;;;;;CAQG,CAAC"}
1
+ {"version":3,"file":"merchandises.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/merchandises.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAE,2BAA2B,EAAE,gCAAgC,EAAE,4BAA4B,EAAE,gCAAgC,EAAE,qCAAqC,EAAE,+BAA+B,EAAE,qCAAqC,EAAE,gCAAgC,EAAE,MAAM,6BAA6B,CAAC;AAC5V,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,KAAK,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,mBAAmB,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAClQ,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,mBAAmB;;;QAG5B;;;;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;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
@@ -1,5 +1,5 @@
1
1
  import { Product, ProductsList, ProductsServiceCountReq, ProductsServiceCreateRequest, ProductsServiceFilterReq, ProductsServicePaginationReq, ProductsServicePaginationResponse, ProductsServiceSearchAllReq, ProductsServiceSendToStoreRequest, ProductsServiceUpdateRequest } from "./products.scailo_pb.js";
2
- import { ActiveStatus, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithUserComment, InventoryInteractionsList, InventoryPartitionRequest, StandardFile } from "./base.scailo_pb.js";
2
+ import { ActiveStatus, CountResponse, Empty, 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
  *
@@ -307,6 +307,40 @@ export declare const ProductsService: {
307
307
  readonly O: typeof CountResponse;
308
308
  readonly kind: MethodKind.Unary;
309
309
  };
310
+ /**
311
+ * CSV operations
312
+ * Download the CSV file that consists of the list of records according to the given filter request
313
+ *
314
+ * @generated from rpc Scailo.ProductsService.DownloadAsCSV
315
+ */
316
+ readonly downloadAsCSV: {
317
+ readonly name: "DownloadAsCSV";
318
+ readonly I: typeof ProductsServiceFilterReq;
319
+ readonly O: typeof StandardFile;
320
+ readonly kind: MethodKind.Unary;
321
+ };
322
+ /**
323
+ * Download the CSV template that could be used to upload records
324
+ *
325
+ * @generated from rpc Scailo.ProductsService.DownloadImportTemplate
326
+ */
327
+ readonly downloadImportTemplate: {
328
+ readonly name: "DownloadImportTemplate";
329
+ readonly I: typeof Empty;
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.ProductsService.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
+ };
310
344
  };
311
345
  };
312
346
  //# sourceMappingURL=products.scailo_connect.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"products.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/products.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,uBAAuB,EAAE,4BAA4B,EAAE,wBAAwB,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,2BAA2B,EAAE,iCAAiC,EAAE,4BAA4B,EAAE,MAAM,yBAAyB,CAAC;AAChT,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;AACtO,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,eAAe;;;QAGxB;;;;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;;;;;;;;CAQG,CAAC"}
1
+ {"version":3,"file":"products.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/products.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,uBAAuB,EAAE,4BAA4B,EAAE,wBAAwB,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,2BAA2B,EAAE,iCAAiC,EAAE,4BAA4B,EAAE,MAAM,yBAAyB,CAAC;AAChT,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,KAAK,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,mBAAmB,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAClQ,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,eAAe;;;QAGxB;;;;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;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
@@ -325,5 +325,39 @@ 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
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
+ * Download the CSV template that could be used to upload records
342
+ *
343
+ * @generated from rpc Scailo.ComponentsService.DownloadImportTemplate
344
+ */
345
+ downloadImportTemplate: {
346
+ name: "DownloadImportTemplate",
347
+ I: base_scailo_pb_js_1.Empty,
348
+ O: base_scailo_pb_js_1.StandardFile,
349
+ kind: protobuf_1.MethodKind.Unary,
350
+ },
351
+ /**
352
+ * Import records using a CSV file. Imports records as initial stock
353
+ *
354
+ * @generated from rpc Scailo.ComponentsService.ImportFromCSV
355
+ */
356
+ importFromCSV: {
357
+ name: "ImportFromCSV",
358
+ I: base_scailo_pb_js_1.StandardFile,
359
+ O: base_scailo_pb_js_1.IdentifierUUIDsList,
360
+ kind: protobuf_1.MethodKind.Unary,
361
+ },
328
362
  }
329
363
  };
@@ -325,5 +325,39 @@ 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
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
+ * Download the CSV template that could be used to upload records
342
+ *
343
+ * @generated from rpc Scailo.EquipmentsService.DownloadImportTemplate
344
+ */
345
+ downloadImportTemplate: {
346
+ name: "DownloadImportTemplate",
347
+ I: base_scailo_pb_js_1.Empty,
348
+ O: base_scailo_pb_js_1.StandardFile,
349
+ kind: protobuf_1.MethodKind.Unary,
350
+ },
351
+ /**
352
+ * Import records using a CSV file. Imports records as initial stock
353
+ *
354
+ * @generated from rpc Scailo.EquipmentsService.ImportFromCSV
355
+ */
356
+ importFromCSV: {
357
+ name: "ImportFromCSV",
358
+ I: base_scailo_pb_js_1.StandardFile,
359
+ O: base_scailo_pb_js_1.IdentifierUUIDsList,
360
+ kind: protobuf_1.MethodKind.Unary,
361
+ },
328
362
  }
329
363
  };
@@ -325,5 +325,39 @@ 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
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
+ * Download the CSV template that could be used to upload records
342
+ *
343
+ * @generated from rpc Scailo.FeedstocksService.DownloadImportTemplate
344
+ */
345
+ downloadImportTemplate: {
346
+ name: "DownloadImportTemplate",
347
+ I: base_scailo_pb_js_1.Empty,
348
+ O: base_scailo_pb_js_1.StandardFile,
349
+ kind: protobuf_1.MethodKind.Unary,
350
+ },
351
+ /**
352
+ * Import records using a CSV file. Imports records as initial stock
353
+ *
354
+ * @generated from rpc Scailo.FeedstocksService.ImportFromCSV
355
+ */
356
+ importFromCSV: {
357
+ name: "ImportFromCSV",
358
+ I: base_scailo_pb_js_1.StandardFile,
359
+ O: base_scailo_pb_js_1.IdentifierUUIDsList,
360
+ kind: protobuf_1.MethodKind.Unary,
361
+ },
328
362
  }
329
363
  };
@@ -325,5 +325,39 @@ 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
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
+ * Download the CSV template that could be used to upload records
342
+ *
343
+ * @generated from rpc Scailo.InfrastructuresService.DownloadImportTemplate
344
+ */
345
+ downloadImportTemplate: {
346
+ name: "DownloadImportTemplate",
347
+ I: base_scailo_pb_js_1.Empty,
348
+ O: base_scailo_pb_js_1.StandardFile,
349
+ kind: protobuf_1.MethodKind.Unary,
350
+ },
351
+ /**
352
+ * Import records using a CSV file. Imports records as initial stock
353
+ *
354
+ * @generated from rpc Scailo.InfrastructuresService.ImportFromCSV
355
+ */
356
+ importFromCSV: {
357
+ name: "ImportFromCSV",
358
+ I: base_scailo_pb_js_1.StandardFile,
359
+ O: base_scailo_pb_js_1.IdentifierUUIDsList,
360
+ kind: protobuf_1.MethodKind.Unary,
361
+ },
328
362
  }
329
363
  };
@@ -325,5 +325,39 @@ 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
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
+ * Download the CSV template that could be used to upload records
342
+ *
343
+ * @generated from rpc Scailo.MerchandisesService.DownloadImportTemplate
344
+ */
345
+ downloadImportTemplate: {
346
+ name: "DownloadImportTemplate",
347
+ I: base_scailo_pb_js_1.Empty,
348
+ O: base_scailo_pb_js_1.StandardFile,
349
+ kind: protobuf_1.MethodKind.Unary,
350
+ },
351
+ /**
352
+ * Import records using a CSV file. Imports records as initial stock
353
+ *
354
+ * @generated from rpc Scailo.MerchandisesService.ImportFromCSV
355
+ */
356
+ importFromCSV: {
357
+ name: "ImportFromCSV",
358
+ I: base_scailo_pb_js_1.StandardFile,
359
+ O: base_scailo_pb_js_1.IdentifierUUIDsList,
360
+ kind: protobuf_1.MethodKind.Unary,
361
+ },
328
362
  }
329
363
  };
@@ -314,5 +314,39 @@ 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
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
+ * Download the CSV template that could be used to upload records
331
+ *
332
+ * @generated from rpc Scailo.ProductsService.DownloadImportTemplate
333
+ */
334
+ downloadImportTemplate: {
335
+ name: "DownloadImportTemplate",
336
+ I: base_scailo_pb_js_1.Empty,
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.ProductsService.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
+ },
317
351
  }
318
352
  };
@@ -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, Empty, 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,40 @@ 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
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
+ * Download the CSV template that could be used to upload records
335
+ *
336
+ * @generated from rpc Scailo.ComponentsService.DownloadImportTemplate
337
+ */
338
+ readonly downloadImportTemplate: {
339
+ readonly name: "DownloadImportTemplate";
340
+ readonly I: typeof Empty;
341
+ readonly O: typeof StandardFile;
342
+ readonly kind: MethodKind.Unary;
343
+ };
344
+ /**
345
+ * Import records using a CSV file. Imports records as initial stock
346
+ *
347
+ * @generated from rpc Scailo.ComponentsService.ImportFromCSV
348
+ */
349
+ readonly importFromCSV: {
350
+ readonly name: "ImportFromCSV";
351
+ readonly I: typeof StandardFile;
352
+ readonly O: typeof IdentifierUUIDsList;
353
+ readonly kind: MethodKind.Unary;
354
+ };
321
355
  };
322
356
  };
323
357
  //# 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;AACtO,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;;;;;;;;CAQG,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,KAAK,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,mBAAmB,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAClQ,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;;;;;;;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, Empty, 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,40 @@ 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
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
+ * Download the CSV template that could be used to upload records
335
+ *
336
+ * @generated from rpc Scailo.EquipmentsService.DownloadImportTemplate
337
+ */
338
+ readonly downloadImportTemplate: {
339
+ readonly name: "DownloadImportTemplate";
340
+ readonly I: typeof Empty;
341
+ readonly O: typeof StandardFile;
342
+ readonly kind: MethodKind.Unary;
343
+ };
344
+ /**
345
+ * Import records using a CSV file. Imports records as initial stock
346
+ *
347
+ * @generated from rpc Scailo.EquipmentsService.ImportFromCSV
348
+ */
349
+ readonly importFromCSV: {
350
+ readonly name: "ImportFromCSV";
351
+ readonly I: typeof StandardFile;
352
+ readonly O: typeof IdentifierUUIDsList;
353
+ readonly kind: MethodKind.Unary;
354
+ };
321
355
  };
322
356
  };
323
357
  //# 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;AACtO,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;;;;;;;;CAQG,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,KAAK,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,mBAAmB,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAClQ,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;;;;;;;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, Empty, 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,40 @@ 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
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
+ * Download the CSV template that could be used to upload records
335
+ *
336
+ * @generated from rpc Scailo.FeedstocksService.DownloadImportTemplate
337
+ */
338
+ readonly downloadImportTemplate: {
339
+ readonly name: "DownloadImportTemplate";
340
+ readonly I: typeof Empty;
341
+ readonly O: typeof StandardFile;
342
+ readonly kind: MethodKind.Unary;
343
+ };
344
+ /**
345
+ * Import records using a CSV file. Imports records as initial stock
346
+ *
347
+ * @generated from rpc Scailo.FeedstocksService.ImportFromCSV
348
+ */
349
+ readonly importFromCSV: {
350
+ readonly name: "ImportFromCSV";
351
+ readonly I: typeof StandardFile;
352
+ readonly O: typeof IdentifierUUIDsList;
353
+ readonly kind: MethodKind.Unary;
354
+ };
321
355
  };
322
356
  };
323
357
  //# 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;AACtO,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;;;;;;;;CAQG,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,KAAK,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,mBAAmB,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAClQ,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;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
@@ -1,5 +1,5 @@
1
1
  import { Infrastructure, InfrastructuresList, InfrastructuresServiceCountReq, InfrastructuresServiceCreateRequest, InfrastructuresServiceFilterReq, InfrastructuresServicePaginationReq, InfrastructuresServicePaginationResponse, InfrastructuresServiceSearchAllReq, InfrastructuresServiceSendToStoreRequest, InfrastructuresServiceUpdateRequest } from "./infrastructures.scailo_pb.js";
2
- import { ActiveStatus, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithUserComment, InventoryInteractionsList, InventoryPartitionRequest, StandardFile } from "./base.scailo_pb.js";
2
+ import { ActiveStatus, CountResponse, Empty, 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,40 @@ export declare const InfrastructuresService: {
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
324
+ *
325
+ * @generated from rpc Scailo.InfrastructuresService.DownloadAsCSV
326
+ */
327
+ readonly downloadAsCSV: {
328
+ readonly name: "DownloadAsCSV";
329
+ readonly I: typeof InfrastructuresServiceFilterReq;
330
+ readonly O: typeof StandardFile;
331
+ readonly kind: MethodKind.Unary;
332
+ };
333
+ /**
334
+ * Download the CSV template that could be used to upload records
335
+ *
336
+ * @generated from rpc Scailo.InfrastructuresService.DownloadImportTemplate
337
+ */
338
+ readonly downloadImportTemplate: {
339
+ readonly name: "DownloadImportTemplate";
340
+ readonly I: typeof Empty;
341
+ readonly O: typeof StandardFile;
342
+ readonly kind: MethodKind.Unary;
343
+ };
344
+ /**
345
+ * Import records using a CSV file. Imports records as initial stock
346
+ *
347
+ * @generated from rpc Scailo.InfrastructuresService.ImportFromCSV
348
+ */
349
+ readonly importFromCSV: {
350
+ readonly name: "ImportFromCSV";
351
+ readonly I: typeof StandardFile;
352
+ readonly O: typeof IdentifierUUIDsList;
353
+ readonly kind: MethodKind.Unary;
354
+ };
321
355
  };
322
356
  };
323
357
  //# sourceMappingURL=infrastructures.scailo_connect.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"infrastructures.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/infrastructures.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAE,mBAAmB,EAAE,8BAA8B,EAAE,mCAAmC,EAAE,+BAA+B,EAAE,mCAAmC,EAAE,wCAAwC,EAAE,kCAAkC,EAAE,wCAAwC,EAAE,mCAAmC,EAAE,MAAM,gCAAgC,CAAC;AAC7X,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;AACtO,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,sBAAsB;;;QAG/B;;;;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;;;;;;;;CAQG,CAAC"}
1
+ {"version":3,"file":"infrastructures.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/infrastructures.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAE,mBAAmB,EAAE,8BAA8B,EAAE,mCAAmC,EAAE,+BAA+B,EAAE,mCAAmC,EAAE,wCAAwC,EAAE,kCAAkC,EAAE,wCAAwC,EAAE,mCAAmC,EAAE,MAAM,gCAAgC,CAAC;AAC7X,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,KAAK,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,mBAAmB,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAClQ,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,sBAAsB;;;QAG/B;;;;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;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
@@ -1,5 +1,5 @@
1
1
  import { Merchandise, MerchandisesList, MerchandisesServiceCountReq, MerchandisesServiceCreateRequest, MerchandisesServiceFilterReq, MerchandisesServicePaginationReq, MerchandisesServicePaginationResponse, MerchandisesServiceSearchAllReq, MerchandisesServiceSendToStoreRequest, MerchandisesServiceUpdateRequest } from "./merchandises.scailo_pb.js";
2
- import { ActiveStatus, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithUserComment, InventoryInteractionsList, InventoryPartitionRequest, StandardFile } from "./base.scailo_pb.js";
2
+ import { ActiveStatus, CountResponse, Empty, 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,40 @@ export declare const MerchandisesService: {
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
324
+ *
325
+ * @generated from rpc Scailo.MerchandisesService.DownloadAsCSV
326
+ */
327
+ readonly downloadAsCSV: {
328
+ readonly name: "DownloadAsCSV";
329
+ readonly I: typeof MerchandisesServiceFilterReq;
330
+ readonly O: typeof StandardFile;
331
+ readonly kind: MethodKind.Unary;
332
+ };
333
+ /**
334
+ * Download the CSV template that could be used to upload records
335
+ *
336
+ * @generated from rpc Scailo.MerchandisesService.DownloadImportTemplate
337
+ */
338
+ readonly downloadImportTemplate: {
339
+ readonly name: "DownloadImportTemplate";
340
+ readonly I: typeof Empty;
341
+ readonly O: typeof StandardFile;
342
+ readonly kind: MethodKind.Unary;
343
+ };
344
+ /**
345
+ * Import records using a CSV file. Imports records as initial stock
346
+ *
347
+ * @generated from rpc Scailo.MerchandisesService.ImportFromCSV
348
+ */
349
+ readonly importFromCSV: {
350
+ readonly name: "ImportFromCSV";
351
+ readonly I: typeof StandardFile;
352
+ readonly O: typeof IdentifierUUIDsList;
353
+ readonly kind: MethodKind.Unary;
354
+ };
321
355
  };
322
356
  };
323
357
  //# sourceMappingURL=merchandises.scailo_connect.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"merchandises.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/merchandises.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAE,2BAA2B,EAAE,gCAAgC,EAAE,4BAA4B,EAAE,gCAAgC,EAAE,qCAAqC,EAAE,+BAA+B,EAAE,qCAAqC,EAAE,gCAAgC,EAAE,MAAM,6BAA6B,CAAC;AAC5V,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;AACtO,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,mBAAmB;;;QAG5B;;;;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;;;;;;;;CAQG,CAAC"}
1
+ {"version":3,"file":"merchandises.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/merchandises.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAE,2BAA2B,EAAE,gCAAgC,EAAE,4BAA4B,EAAE,gCAAgC,EAAE,qCAAqC,EAAE,+BAA+B,EAAE,qCAAqC,EAAE,gCAAgC,EAAE,MAAM,6BAA6B,CAAC;AAC5V,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,KAAK,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,mBAAmB,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAClQ,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,mBAAmB;;;QAG5B;;;;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;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
@@ -1,5 +1,5 @@
1
1
  import { Product, ProductsList, ProductsServiceCountReq, ProductsServiceCreateRequest, ProductsServiceFilterReq, ProductsServicePaginationReq, ProductsServicePaginationResponse, ProductsServiceSearchAllReq, ProductsServiceSendToStoreRequest, ProductsServiceUpdateRequest } from "./products.scailo_pb.js";
2
- import { ActiveStatus, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithUserComment, InventoryInteractionsList, InventoryPartitionRequest, StandardFile } from "./base.scailo_pb.js";
2
+ import { ActiveStatus, CountResponse, Empty, 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
  *
@@ -307,6 +307,40 @@ export declare const ProductsService: {
307
307
  readonly O: typeof CountResponse;
308
308
  readonly kind: MethodKind.Unary;
309
309
  };
310
+ /**
311
+ * CSV operations
312
+ * Download the CSV file that consists of the list of records according to the given filter request
313
+ *
314
+ * @generated from rpc Scailo.ProductsService.DownloadAsCSV
315
+ */
316
+ readonly downloadAsCSV: {
317
+ readonly name: "DownloadAsCSV";
318
+ readonly I: typeof ProductsServiceFilterReq;
319
+ readonly O: typeof StandardFile;
320
+ readonly kind: MethodKind.Unary;
321
+ };
322
+ /**
323
+ * Download the CSV template that could be used to upload records
324
+ *
325
+ * @generated from rpc Scailo.ProductsService.DownloadImportTemplate
326
+ */
327
+ readonly downloadImportTemplate: {
328
+ readonly name: "DownloadImportTemplate";
329
+ readonly I: typeof Empty;
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.ProductsService.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
+ };
310
344
  };
311
345
  };
312
346
  //# sourceMappingURL=products.scailo_connect.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"products.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/products.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,uBAAuB,EAAE,4BAA4B,EAAE,wBAAwB,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,2BAA2B,EAAE,iCAAiC,EAAE,4BAA4B,EAAE,MAAM,yBAAyB,CAAC;AAChT,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;AACtO,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,eAAe;;;QAGxB;;;;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;;;;;;;;CAQG,CAAC"}
1
+ {"version":3,"file":"products.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/products.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,uBAAuB,EAAE,4BAA4B,EAAE,wBAAwB,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,2BAA2B,EAAE,iCAAiC,EAAE,4BAA4B,EAAE,MAAM,yBAAyB,CAAC;AAChT,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,KAAK,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,mBAAmB,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAClQ,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,eAAe;;;QAGxB;;;;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;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kernelminds/scailo-sdk",
3
- "version": "0.0.59",
3
+ "version": "0.0.61",
4
4
  "description": "NPM module that provides access to Scailo's API",
5
5
  "types": "./lib/cjs/types/index.d.ts",
6
6
  "main": "./lib/cjs/index.js",