@hiennc24/constant 1.2.35 → 1.2.36

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.
@@ -46,6 +46,8 @@ declare const COLLECTIONS: {
46
46
  CUSTOMER_COLLECTION_NAME: string;
47
47
  CUSTOMER_DETAIL_REPOSITORY_NAME: string;
48
48
  CUSTOMER_DETAIL_COLLECTION_NAME: string;
49
+ VOUCHER_TYPE_REPOSITORY_NAME: string;
50
+ VOUCHER_TYPE_COLLECTION_NAME: string;
49
51
  EMPLOYEE_REPOSITORY_NAME: string;
50
52
  EMPLOYEE_COLLECTION_NAME: string;
51
53
  EMPLOYEE_DETAIL_REPOSITORY_NAME: string;
@@ -60,6 +60,9 @@ const COLLECTIONS = {
60
60
  // Customer Detail
61
61
  CUSTOMER_DETAIL_REPOSITORY_NAME: "customerDetail",
62
62
  CUSTOMER_DETAIL_COLLECTION_NAME: "customer_details",
63
+ // Voucher Type
64
+ VOUCHER_TYPE_REPOSITORY_NAME: "voucherType",
65
+ VOUCHER_TYPE_COLLECTION_NAME: "voucher_types",
63
66
  // ORGANIZATION SERVICE
64
67
  // Employee
65
68
  EMPLOYEE_REPOSITORY_NAME: "employee",
@@ -120,8 +120,8 @@
120
120
  "ACTION_UPDATE": "updateSettings",
121
121
  "ACTION_DELETE": "deleteSettings"
122
122
  },
123
- "SVC_ADMINISTRATION_LIST_TRANSACTION_LISTS": {
124
- "NAME": "svc-administration-list.transaction_lists",
123
+ "SVC_VOUCHER_TYPES": {
124
+ "NAME": "svc-administration-list.voucher-types",
125
125
  "ACTION_GET_DETAIL": "getDetail",
126
126
  "ACTION_GET_LIST": "getList",
127
127
  "ACTION_CREATE": "create",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hiennc24/constant",
3
- "version": "1.2.35",
3
+ "version": "1.2.36",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {