@hiennc24/constant 1.2.18 → 1.2.20

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.
@@ -380,6 +380,8 @@ declare const COLLECTIONS: {
380
380
  VENDOR_CONFIRM_COLLECTION_NAME: string;
381
381
  INVOICES_REPOSITORY_NAME: string;
382
382
  INVOICES_COLLECTION_NAME: string;
383
+ INVOICE_PRODUCT_ITEMS_REPOSITORY_NAME: string;
384
+ INVOICE_PRODUCT_ITEMS_COLLECTION_NAME: string;
383
385
  SALE_TYPES_REPOSITORY_NAME: string;
384
386
  SALE_TYPES_COLLECTION_NAME: string;
385
387
  SALE_ORDERS_REPOSITORY_NAME: string;
@@ -480,6 +480,8 @@ const COLLECTIONS = {
480
480
  VENDOR_CONFIRM_COLLECTION_NAME: "vendor_confirm",
481
481
  INVOICES_REPOSITORY_NAME: "invoice",
482
482
  INVOICES_COLLECTION_NAME: "invoices",
483
+ INVOICE_PRODUCT_ITEMS_REPOSITORY_NAME: "eInvoiceProductItems",
484
+ INVOICE_PRODUCT_ITEMS_COLLECTION_NAME: "e_invoice_product_items",
483
485
  SALE_TYPES_REPOSITORY_NAME: "saleType",
484
486
  SALE_TYPES_COLLECTION_NAME: "sale_types",
485
487
  SALE_ORDERS_REPOSITORY_NAME: "salesOrder",
@@ -14,6 +14,9 @@
14
14
  "ACTION_UPDATE": "update",
15
15
  "ACTION_DELETE": "delete"
16
16
  },
17
+ "SVC_INVOICE_PRODUCT_ITEMS": {
18
+ "NAME": "svc-shared.invoice-product-items"
19
+ },
17
20
  "SCHEDULE": {
18
21
  "NAME": "schedule",
19
22
  "ACTION_CREATE_SCHEDULE": "createSchedule",
@@ -437,14 +440,6 @@
437
440
  "ACTION_DELETE": "deleteVendorConfirm",
438
441
  "ACTION_CREATE": "createVendorConfirm"
439
442
  },
440
- "API_SALES_INVOICE": {
441
- "NAME": "api-sales.invoices",
442
- "ACTION_GET_LIST": "getListInvoice",
443
- "ACTION_GET_DETAIL": "getDetailInvoice",
444
- "ACTION_UPDATE": "updateInvoice",
445
- "ACTION_DELETE": "deleteInvoice",
446
- "ACTION_CREATE": "createInvoice"
447
- },
448
443
  "API_SALES_SALES_ORDER_HISTORY": {
449
444
  "NAME": "api-sales.salesOrderHistories",
450
445
  "ACTION_GET_LIST": "getListSaleOrderHistory"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hiennc24/constant",
3
- "version": "1.2.18",
3
+ "version": "1.2.20",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {