@hiennc24/constant 1.2.36 → 1.2.38

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.
@@ -714,5 +714,9 @@ declare const COLLECTIONS: {
714
714
  PARTNER_HISTORY_COLLECTION_NAME: string;
715
715
  PARTNER_GROUP_REPOSITORY_NAME: string;
716
716
  PARTNER_GROUP_COLLECTION_NAME: string;
717
+ PRINT_TEMPLATE_KEY_REPOSITORY_NAME: string;
718
+ PRINT_TEMPLATE_KEY_COLLECTION_NAME: string;
719
+ PRINT_TEMPLATE_LIBRARY_REPOSITORY_NAME: string;
720
+ PRINT_TEMPLATE_LIBRARY_COLLECTION_NAME: string;
717
721
  };
718
722
  export default COLLECTIONS;
@@ -894,5 +894,11 @@ const COLLECTIONS = {
894
894
  // Partner Group
895
895
  PARTNER_GROUP_REPOSITORY_NAME: "partnerGroup",
896
896
  PARTNER_GROUP_COLLECTION_NAME: "partner_groups",
897
+ // Print Template Keys
898
+ PRINT_TEMPLATE_KEY_REPOSITORY_NAME: "printTemplateKey",
899
+ PRINT_TEMPLATE_KEY_COLLECTION_NAME: "print_template_keys",
900
+ // Print Template Libraries
901
+ PRINT_TEMPLATE_LIBRARY_REPOSITORY_NAME: "printTemplateLibrary",
902
+ PRINT_TEMPLATE_LIBRARY_COLLECTION_NAME: "print_template_libraries",
897
903
  };
898
904
  exports.default = COLLECTIONS;
@@ -2037,6 +2037,20 @@
2037
2037
  "ACTION_DELETE": "delete",
2038
2038
  "ACTION_GET": "get"
2039
2039
  },
2040
+ "SVC_SHARED_PRINT_TEMPLATE_KEYS": {
2041
+ "NAME": "svc-shared.print-template-key",
2042
+ "ACTION_GET_LIST": "getPrintTemplateKeys",
2043
+ "ACTION_CREATE": "createPrintTemplateKey",
2044
+ "ACTION_UPDATE": "updatePrintTemplateKey"
2045
+ },
2046
+ "SVC_SHARED_PRINT_TEMPLATE_LIBRARIES": {
2047
+ "NAME": "svc-shared.print-template-library",
2048
+ "ACTION_GET_LIST": "getPrintTemplateLibraries",
2049
+ "ACTION_GET_DETAIL": "getPrintTemplateLibraryDetail",
2050
+ "ACTION_CREATE": "createPrintTemplateLibrary",
2051
+ "ACTION_UPDATE": "updatePrintTemplateLibrary",
2052
+ "ACTION_DELETE_MANY": "deleteManyPrintTemplateLibrary"
2053
+ },
2040
2054
  "COMMON_METHODS": {
2041
2055
  "FIND_ONE_AND_UPDATE": "_findOneAndUpdate",
2042
2056
  "COUNT_DOCUMENTS": "_countDocuments",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hiennc24/constant",
3
- "version": "1.2.36",
3
+ "version": "1.2.38",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {