client-core-services 1.0.0

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 (120) hide show
  1. package/README.md +24 -0
  2. package/esm2020/client-core-services.mjs +5 -0
  3. package/esm2020/lib/my-lib.module.mjs +98 -0
  4. package/esm2020/lib/services/api/api-call/api-call.service.mjs +766 -0
  5. package/esm2020/lib/services/api/api-call-responce/api-call-responce.service.mjs +191 -0
  6. package/esm2020/lib/services/api/api.service.mjs +611 -0
  7. package/esm2020/lib/services/api/auth/auth-guard.service.mjs +37 -0
  8. package/esm2020/lib/services/api/auth/auth.service.mjs +500 -0
  9. package/esm2020/lib/services/api/aws-secret-manager/aws-secret-manager.service.mjs +78 -0
  10. package/esm2020/lib/services/api/common-api/common-api.service.mjs +97 -0
  11. package/esm2020/lib/services/api/doc-api/doc-api.service.mjs +221 -0
  12. package/esm2020/lib/services/api/public-api/public-api.service.mjs +37 -0
  13. package/esm2020/lib/services/chart/chart.service.mjs +166 -0
  14. package/esm2020/lib/services/check-if/check-if.service.mjs +830 -0
  15. package/esm2020/lib/services/common-utils/common-function.service.mjs +1277 -0
  16. package/esm2020/lib/services/common-utils/core-function/core-function.service.mjs +283 -0
  17. package/esm2020/lib/services/customvalidation/customvalidation.service.mjs +202 -0
  18. package/esm2020/lib/services/data-share/auth-data-share/auth-data-share.service.mjs +70 -0
  19. package/esm2020/lib/services/data-share/common-app-data-share/common-app-data-share.service.mjs +82 -0
  20. package/esm2020/lib/services/data-share/data-share.service.mjs +370 -0
  21. package/esm2020/lib/services/data-share/doc-data-share/doc-data-share.service.mjs +81 -0
  22. package/esm2020/lib/services/data-share/public-data-share/public-data-share.service.mjs +25 -0
  23. package/esm2020/lib/services/download/download.service.mjs +151 -0
  24. package/esm2020/lib/services/encryption/encryption.service.mjs +20 -0
  25. package/esm2020/lib/services/env/env.service.mjs +232 -0
  26. package/esm2020/lib/services/env/serverHostList.mjs +56 -0
  27. package/esm2020/lib/services/fileHandler/file-handler.service.mjs +136 -0
  28. package/esm2020/lib/services/form/form-control/form-control.service.mjs +654 -0
  29. package/esm2020/lib/services/form/form-creation/form-creation.service.mjs +880 -0
  30. package/esm2020/lib/services/form/form-value/form-value.service.mjs +464 -0
  31. package/esm2020/lib/services/form/multiple-form/multiple-form.service.mjs +346 -0
  32. package/esm2020/lib/services/grid/grid-common-function/grid-common-function.service.mjs +875 -0
  33. package/esm2020/lib/services/grid/grid-selection/grid-selection.service.mjs +84 -0
  34. package/esm2020/lib/services/lims-calculations/lims-calculations.service.mjs +2304 -0
  35. package/esm2020/lib/services/loader/loader.service.mjs +17 -0
  36. package/esm2020/lib/services/menu-or-module-common/menu-or-module-common.service.mjs +558 -0
  37. package/esm2020/lib/services/model/model.service.mjs +30 -0
  38. package/esm2020/lib/services/notify/notification.service.mjs +84 -0
  39. package/esm2020/lib/services/operator/operator.service.mjs +58 -0
  40. package/esm2020/lib/services/permission/permission.service.mjs +88 -0
  41. package/esm2020/lib/services/router/router.service.mjs +78 -0
  42. package/esm2020/lib/services/storage/cookies.service.mjs +56 -0
  43. package/esm2020/lib/services/storage/storage.service.mjs +749 -0
  44. package/esm2020/lib/services/tree-component/interface.mjs +6 -0
  45. package/esm2020/lib/services/tree-component/tree-component.service.mjs +394 -0
  46. package/esm2020/lib/services/userPrefrence/user-prefrence.service.mjs +767 -0
  47. package/esm2020/lib/services/voice-recognition/voice-recognition.service.mjs +97 -0
  48. package/esm2020/lib/shared/configuration/config.mjs +76 -0
  49. package/esm2020/lib/shared/configuration/editor-config.mjs +121 -0
  50. package/esm2020/lib/shared/enums/common.enum.mjs +18 -0
  51. package/esm2020/lib/shared/enums/config.enum.mjs +56 -0
  52. package/esm2020/lib/shared/enums/end-point.enum.mjs +69 -0
  53. package/esm2020/lib/shared/enums/flags.enum.mjs +20 -0
  54. package/esm2020/lib/shared/enums/keycodes.enum.mjs +122 -0
  55. package/esm2020/lib/shared/enums/operator_type.enum.mjs +13 -0
  56. package/esm2020/lib/shared/enums/storage-token-status.enum.mjs +10 -0
  57. package/esm2020/lib/shared/platform.mjs +2 -0
  58. package/esm2020/public-api.mjs +53 -0
  59. package/fesm2015/client-core-services.mjs +15487 -0
  60. package/fesm2015/client-core-services.mjs.map +1 -0
  61. package/fesm2020/client-core-services.mjs +15482 -0
  62. package/fesm2020/client-core-services.mjs.map +1 -0
  63. package/index.d.ts +5 -0
  64. package/lib/my-lib.module.d.ts +18 -0
  65. package/lib/services/api/api-call/api-call.service.d.ts +60 -0
  66. package/lib/services/api/api-call-responce/api-call-responce.service.d.ts +43 -0
  67. package/lib/services/api/api.service.d.ts +88 -0
  68. package/lib/services/api/auth/auth-guard.service.d.ts +13 -0
  69. package/lib/services/api/auth/auth.service.d.ts +50 -0
  70. package/lib/services/api/aws-secret-manager/aws-secret-manager.service.d.ts +22 -0
  71. package/lib/services/api/common-api/common-api.service.d.ts +22 -0
  72. package/lib/services/api/doc-api/doc-api.service.d.ts +35 -0
  73. package/lib/services/api/public-api/public-api.service.d.ts +14 -0
  74. package/lib/services/chart/chart.service.d.ts +21 -0
  75. package/lib/services/check-if/check-if.service.d.ts +50 -0
  76. package/lib/services/common-utils/common-function.service.d.ts +84 -0
  77. package/lib/services/common-utils/core-function/core-function.service.d.ts +21 -0
  78. package/lib/services/customvalidation/customvalidation.service.d.ts +21 -0
  79. package/lib/services/data-share/auth-data-share/auth-data-share.service.d.ts +33 -0
  80. package/lib/services/data-share/common-app-data-share/common-app-data-share.service.d.ts +36 -0
  81. package/lib/services/data-share/data-share.service.d.ts +174 -0
  82. package/lib/services/data-share/doc-data-share/doc-data-share.service.d.ts +33 -0
  83. package/lib/services/data-share/public-data-share/public-data-share.service.d.ts +12 -0
  84. package/lib/services/download/download.service.d.ts +35 -0
  85. package/lib/services/encryption/encryption.service.d.ts +8 -0
  86. package/lib/services/env/env.service.d.ts +44 -0
  87. package/lib/services/env/serverHostList.d.ts +9 -0
  88. package/lib/services/fileHandler/file-handler.service.d.ts +17 -0
  89. package/lib/services/form/form-control/form-control.service.d.ts +44 -0
  90. package/lib/services/form/form-creation/form-creation.service.d.ts +41 -0
  91. package/lib/services/form/form-value/form-value.service.d.ts +32 -0
  92. package/lib/services/form/multiple-form/multiple-form.service.d.ts +54 -0
  93. package/lib/services/grid/grid-common-function/grid-common-function.service.d.ts +74 -0
  94. package/lib/services/grid/grid-selection/grid-selection.service.d.ts +16 -0
  95. package/lib/services/lims-calculations/lims-calculations.service.d.ts +87 -0
  96. package/lib/services/loader/loader.service.d.ts +8 -0
  97. package/lib/services/menu-or-module-common/menu-or-module-common.service.d.ts +59 -0
  98. package/lib/services/model/model.service.d.ts +11 -0
  99. package/lib/services/notify/notification.service.d.ts +22 -0
  100. package/lib/services/operator/operator.service.d.ts +27 -0
  101. package/lib/services/permission/permission.service.d.ts +18 -0
  102. package/lib/services/router/router.service.d.ts +14 -0
  103. package/lib/services/storage/cookies.service.d.ts +11 -0
  104. package/lib/services/storage/storage.service.d.ts +132 -0
  105. package/lib/services/tree-component/interface.d.ts +13 -0
  106. package/lib/services/tree-component/tree-component.service.d.ts +38 -0
  107. package/lib/services/userPrefrence/user-prefrence.service.d.ts +75 -0
  108. package/lib/services/voice-recognition/voice-recognition.service.d.ts +36 -0
  109. package/lib/shared/configuration/config.d.ts +144 -0
  110. package/lib/shared/configuration/editor-config.d.ts +72 -0
  111. package/lib/shared/enums/common.enum.d.ts +16 -0
  112. package/lib/shared/enums/config.enum.d.ts +54 -0
  113. package/lib/shared/enums/end-point.enum.d.ts +66 -0
  114. package/lib/shared/enums/flags.enum.d.ts +18 -0
  115. package/lib/shared/enums/keycodes.enum.d.ts +120 -0
  116. package/lib/shared/enums/operator_type.enum.d.ts +9 -0
  117. package/lib/shared/enums/storage-token-status.enum.d.ts +8 -0
  118. package/lib/shared/platform.d.ts +1 -0
  119. package/package.json +40 -0
  120. package/public-api.d.ts +49 -0
@@ -0,0 +1,144 @@
1
+ import { Common } from '../enums/common.enum';
2
+ export declare const AppConfig: {
3
+ treeView: boolean;
4
+ isShowDiv: boolean;
5
+ gridDisable: boolean;
6
+ selectAllcheck: boolean;
7
+ isBulkUpdate: boolean;
8
+ checkForDownloadReport: boolean;
9
+ flagForTdsForm: boolean;
10
+ checkPreviewData: boolean;
11
+ isHidePrintbtn: boolean;
12
+ updateGridData: boolean;
13
+ pageLoading: boolean;
14
+ createFilterFormgroup: boolean;
15
+ createFilterHeadElement: boolean;
16
+ updateNotification: boolean;
17
+ heavyDownload: boolean;
18
+ isAdFilter: boolean;
19
+ fixedcolwidth: number;
20
+ sortingColumnName: null;
21
+ pageSizes: number[];
22
+ orderBy: string;
23
+ pageNumber: Common;
24
+ total: number;
25
+ itemNumOfGrid: null;
26
+ currentMenu: {};
27
+ sortIcon: string;
28
+ filterdata: string;
29
+ rowSelectionIndex: number;
30
+ selectedRowIndex: number;
31
+ editedRowIndex: number;
32
+ columnSelectionIndex: number;
33
+ currentRowIndex: number;
34
+ formName: string;
35
+ selectContactAdd: string;
36
+ currentBrowseUrl: string;
37
+ recordId: string;
38
+ rowId: string;
39
+ menuTopLeftPosition: {
40
+ x: string;
41
+ y: string;
42
+ };
43
+ downloadPdfCheck: string;
44
+ downloadQRCode: string;
45
+ selectedViewRowIndex: number;
46
+ viewColumnName: string;
47
+ editedRowCopyData: {};
48
+ selectedRowData: {};
49
+ userInfo: {};
50
+ headElements: never[];
51
+ gridButtons: never[];
52
+ actionButtons: never[];
53
+ elements: never[];
54
+ modifyGridData: never[];
55
+ tabs: never[];
56
+ tab: {};
57
+ bulkuploadList: never[];
58
+ treeViewData: {};
59
+ curTreeViewField: {};
60
+ staticData: {};
61
+ copyStaticData: {};
62
+ typeAheadData: never[];
63
+ details: {};
64
+ dinamic_form: {};
65
+ tableFields: never[];
66
+ queryParams: {};
67
+ tabFilterData: never[];
68
+ typegrapyCriteriaList: never[];
69
+ previewData: string;
70
+ downloadClick: string;
71
+ forms: {};
72
+ adFilterList: never[];
73
+ currentActionButton: {};
74
+ };
75
+ export interface AppConfigInterface {
76
+ treeView: boolean;
77
+ isShowDiv: boolean;
78
+ gridDisable: boolean;
79
+ selectAllcheck: boolean;
80
+ isBulkUpdate: boolean;
81
+ checkForDownloadReport: boolean;
82
+ flagForTdsForm: boolean;
83
+ checkPreviewData: boolean;
84
+ isHidePrintbtn: boolean;
85
+ updateGridData: boolean;
86
+ pageLoading: boolean;
87
+ createFilterFormgroup: boolean;
88
+ createFilterHeadElement: boolean;
89
+ updateNotification: boolean;
90
+ heavyDownload: boolean;
91
+ isAdFilter: boolean;
92
+ fixedcolwidth: any;
93
+ sortingColumnName: any;
94
+ pageSizes: any;
95
+ orderBy: any;
96
+ pageNumber: any;
97
+ total: any;
98
+ itemNumOfGrid: any;
99
+ currentMenu: any;
100
+ sortIcon: any;
101
+ filterdata: any;
102
+ rowSelectionIndex: any;
103
+ selectedRowIndex: any;
104
+ editedRowIndex: any;
105
+ columnSelectionIndex: any;
106
+ currentRowIndex: any;
107
+ formName: any;
108
+ selectContactAdd: any;
109
+ currentBrowseUrl: any;
110
+ recordId: any;
111
+ rowId: any;
112
+ menuTopLeftPosition: any;
113
+ downloadPdfCheck: any;
114
+ downloadQRCode: any;
115
+ selectedViewRowIndex: any;
116
+ viewColumnName: any;
117
+ editedRowCopyData: any;
118
+ selectedRowData: any;
119
+ userInfo: any;
120
+ headElements: any;
121
+ gridButtons: any;
122
+ actionButtons: any;
123
+ elements: any;
124
+ modifyGridData: any;
125
+ tabs: any;
126
+ tab: any;
127
+ bulkuploadList: any;
128
+ treeViewData: any;
129
+ curTreeViewField: any;
130
+ staticData: any;
131
+ copyStaticData: any;
132
+ typeAheadData: any;
133
+ details: any;
134
+ dinamic_form: any;
135
+ tableFields: any;
136
+ queryParams: any;
137
+ tabFilterData: any;
138
+ typegrapyCriteriaList: any;
139
+ previewData: any;
140
+ downloadClick: any;
141
+ forms: any;
142
+ adFilterList: any;
143
+ currentActionButton: any;
144
+ }
@@ -0,0 +1,72 @@
1
+ export declare const editorConfig: {
2
+ editable: boolean;
3
+ spellcheck: boolean;
4
+ height: string;
5
+ minHeight: string;
6
+ maxHeight: string;
7
+ width: string;
8
+ minWidth: string;
9
+ translate: string;
10
+ enableToolbar: boolean;
11
+ showToolbar: boolean;
12
+ placeholder: string;
13
+ defaultParagraphSeparator: string;
14
+ defaultFontName: string;
15
+ defaultFontSize: string;
16
+ fonts: {
17
+ class: string;
18
+ name: string;
19
+ }[];
20
+ customClasses: ({
21
+ name: string;
22
+ class: string;
23
+ tag?: undefined;
24
+ } | {
25
+ name: string;
26
+ class: string;
27
+ tag: string;
28
+ })[];
29
+ uploadUrl: string;
30
+ uploadWithCredentials: boolean;
31
+ sanitize: boolean;
32
+ toolbarPosition: string;
33
+ toolbarHiddenButtons: string[][];
34
+ };
35
+ export declare const minieditorConfig: {
36
+ editable: boolean;
37
+ spellcheck: boolean;
38
+ height: string;
39
+ minHeight: string;
40
+ maxHeight: string;
41
+ width: string;
42
+ minWidth: string;
43
+ translate: string;
44
+ enableToolbar: boolean;
45
+ showToolbar: boolean;
46
+ placeholder: string;
47
+ defaultParagraphSeparator: string;
48
+ defaultFontName: string;
49
+ defaultFontSize: string;
50
+ fonts: {
51
+ class: string;
52
+ name: string;
53
+ }[];
54
+ customClasses: ({
55
+ name: string;
56
+ class: string;
57
+ tag?: undefined;
58
+ } | {
59
+ name: string;
60
+ class: string;
61
+ tag: string;
62
+ })[];
63
+ uploadUrl: string;
64
+ uploadWithCredentials: boolean;
65
+ sanitize: boolean;
66
+ toolbarPosition: string;
67
+ toolbarHiddenButtons: string[][];
68
+ };
69
+ export declare const htmlViewConfig: {
70
+ editable: boolean;
71
+ showToolbar: boolean;
72
+ };
@@ -0,0 +1,16 @@
1
+ export declare enum Common {
2
+ AUTH_TYPE = "USER",
3
+ VERIFY_WITH_OTP = "true",
4
+ GOOGLE_MAP_IN_FORM = "true",
5
+ AUT_OGEN = "/AUTOGEN",
6
+ API_KEY = "ef1674ab-4e49-11eb-8153-0200cd936042",
7
+ BASE_URL = "https://sitserverpharmalinkage.pharmalinkage.com/rest/",
8
+ ITEM_NUM_OF_GRID = 25,
9
+ PAGE_NO = 1,
10
+ GOOGLE_API_KEY = "AIzaSyAZG9mCLgVxc4Y9MGAaRxPlyU8I7VON3Sg",
11
+ DEFAULT_OPERATOR = "stwic",
12
+ TINYMICAPIKEY = "iao4rl1otk4n9or5nn6wkyo63ni2jxiud9ul5tkh6dxibdb2",
13
+ AWS_ACCESSKEYID = "QUtJQVFMVlFSQ1pOUTVZNlBES1k=",
14
+ AWS_SECRETKEY = "Q1UxbWdGQ004dFhTTVU2OUw1KzVHVnFoSWpnc1lnNFpEdGd2Z3R6SA==",
15
+ AWS_REGION = "YXAtc291dGgtMQ=="
16
+ }
@@ -0,0 +1,54 @@
1
+ export declare enum Config {
2
+ Fixedcolwidth = "fixedcolwidth",
3
+ SortingColumnName = "sortingColumnName",
4
+ PageSizes = "pageSizes",
5
+ OrderBy = "orderBy",
6
+ PageNumber = "pageNumber",
7
+ Total = "total",
8
+ ItemNumOfGrid = "itemNumOfGrid",
9
+ CurrentMenu = "currentMenu",
10
+ SortIcon = "sortIcon",
11
+ Filterdata = "filterdata",
12
+ RowSelectionIndex = "rowSelectionIndex",
13
+ SelectedRowIndex = "selectedRowIndex",
14
+ EditedRowIndex = "editedRowIndex",
15
+ ColumnSelectionIndex = "columnSelectionIndex",
16
+ CurrentRowIndex = "currentRowIndex",
17
+ FormName = "formName",
18
+ SelectContactAdd = "selectContactAdd",
19
+ CurrentBrowseUrl = "currentBrowseUrl",
20
+ RecordId = "recordId",
21
+ RowId = "rowId",
22
+ MenuTopLeftPosition = "menuTopLeftPosition",
23
+ DownloadPdfCheck = "downloadPdfCheck",
24
+ DownloadQRCode = "downloadQRCode",
25
+ SelectedViewRowIndex = "selectedViewRowIndex",
26
+ ViewColumnName = "viewColumnName",
27
+ EditedRowCopyData = "editedRowCopyData",
28
+ SelectedRowData = "selectedRowData",
29
+ UserInfo = "userInfo",
30
+ HeadElements = "headElements",
31
+ GridButtons = "gridButtons",
32
+ ActionButtons = "actionButtons",
33
+ Elements = "elements",
34
+ ModifyGridData = "modifyGridData",
35
+ Tabs = "tabs",
36
+ Tab = "tab",
37
+ BulkuploadList = "bulkuploadList",
38
+ TreeViewData = "treeViewData",
39
+ CurTreeViewField = "curTreeViewField",
40
+ StaticData = "staticData",
41
+ CopyStaticData = "copyStaticData",
42
+ TypeAheadData = "typeAheadData",
43
+ Details = "details",
44
+ Dinamic_form = "dinamic_form",
45
+ TableFields = "tableFields",
46
+ QueryParams = "queryParams",
47
+ TabFilterData = "tabFilterData",
48
+ TypegrapyCriteriaList = "typegrapyCriteriaList",
49
+ PreviewData = "previewData",
50
+ DownloadClick = "downloadClick",
51
+ Forms = "forms",
52
+ AdFilterList = "adFilterList",
53
+ CurrentActionButton = "currentActionButton"
54
+ }
@@ -0,0 +1,66 @@
1
+ export declare enum EndPoint {
2
+ GET_USER_PERMISSION = "user/utvn/v2",
3
+ SAVE_CUSTOM_TEMPLATE = "ins/save/templates",
4
+ SAVE_FORM_DATA = "ins/save",
5
+ DELETE_GRID_ROW = "del/delete",
6
+ SEND_EMAIL = "ins/send_mail",
7
+ GET_CUSTOM_TEMPLATE = "rpts/sobj",
8
+ GET_GRID_DATA = "rpts/gd",
9
+ GET_COUNT_DATA = "rpts/gd_list",
10
+ GET_TEMPLATE_NAMES = "template/names",
11
+ EXPORT_GRID_DATA = "downloads/excelExport",
12
+ CSV_EXPORT_GRID_DATA = "downloads/csvExport",
13
+ SAVE_NAVIGATION = "ins/save/navigation",
14
+ SAVE_PERMISSION = "ins/save/permissions",
15
+ GET_STATIC_DATA = "rpts/gsd",
16
+ SAVE_QUOTE = "ins/save/request_qoute",
17
+ AUTH_SIGNIN = "login/si/",
18
+ AUTH_SIGNUP = "login/su/",
19
+ AU_SIGNIN = "login/signIn",
20
+ AU_SIGNUP = "login/signUp",
21
+ USER_VARIFY = "login/verify",
22
+ AUTH_SIGNOUT = "login/signOut",
23
+ AUTH_FORGET_PASSWORD = "login/fp",
24
+ AUTH_RESET_PASSWORD = "login/rp",
25
+ AUTH_CHANGE_PASSWORD = "login/cp",
26
+ TWO_FACTOR_AUTHENTICATION = "login/tfa",
27
+ GET_AUTH_APP = "user/auth/app/",
28
+ SAVE_CONTACT_US = "ins/save/contact_us_query",
29
+ SAVE_CAREER_WITH_US = "ins/save/career_with_us",
30
+ GET_PREVIEW_HTML = "rpts/get_html",
31
+ GET_PARAMETER_LIST = "qt/sobj",
32
+ SAVE_PARAMETER_LIST = "qt/popbranch",
33
+ GET_PDF = "rpts/get_pdf",
34
+ GET_PUBLIC_PDF = "get_pdf",
35
+ DOWNLOAD_PDF = "rpts/getfl",
36
+ PATAINT_REPORT = "get_report",
37
+ GET_CHART_DATA = "rpts/get_chart_data",
38
+ GET_FORM = "rpts/get_form",
39
+ GET_FORM_PUBLIC = "get_form",
40
+ GET_FILE = "rpts/get_file",
41
+ RESET_PASSWORD = "login/cnp",
42
+ GET_DASHLET_DATA = "generic/retrieve/dashlet_data",
43
+ OTP_VARIFICATION = "login/confirmUserWithToken/",
44
+ GET_COMPARE_DATA = "mig/send_menu_by_module/",
45
+ GET_QR_CODE = "rpts/qrGen/",
46
+ PUBLIC = "public/",
47
+ GET_VDR_DATA = "vdrn/getRefCodeRootFolderForAppId/e",
48
+ MOVE_FOLDER_CHILD = "vdrn/getch",
49
+ UPLOAD_DOC_FILE = "vdrn/crtfl/e",
50
+ INSERT_FILE_AFTER_UPLOAD = "vdrn/crtflaftupl/e",
51
+ CREATE_FOLDER = "vdrn/crtfd/e",
52
+ GET_CHILD_FOLDER_BY_KEY = "vdrn/getchbk",
53
+ GET_DOC_AUDIT = "vdrn/getAudit/",
54
+ DOC_FILE_DOWNLOAD = "vdrn/getfl/download",
55
+ SET_DOC_FILE_AUDIT_AFTER_DOWNLOAD = "vdrn/setflaud/download",
56
+ DOC_FILE_VIEW = "vdrn/getfl/view",
57
+ DOC_DELETE = "vdrn/fo/",
58
+ DOC_SHARE = "vdrn/shr",
59
+ GET_FOLDER_BY_KEY = "vdrn/getS3FolderDataByKey",
60
+ GIT_VERSION = "git/version",
61
+ DOC_PERMISSION = "vdrn/svper",
62
+ AUDIT_HISTORY = "getAuditHistory",
63
+ AUDIT_VERSION_LIST = "getAuditVersionList",
64
+ DOWNLOAD_MANUAL = "s3/getSignedS3Url",
65
+ GET_NOTIFICATION_SETTING = "rpts/getNotification"
66
+ }
@@ -0,0 +1,18 @@
1
+ export declare enum Flags {
2
+ TreeView = "treeView",
3
+ IsShowDiv = "isShowDiv",
4
+ GridDisable = "gridDisable",
5
+ SelectAllcheck = "selectAllcheck",
6
+ IsBulkUpdate = "isBulkUpdate",
7
+ CheckForDownloadReport = "checkForDownloadReport",
8
+ FlagForTdsForm = "flagForTdsForm",
9
+ CheckPreviewData = "checkPreviewData",
10
+ IsHidePrintbtn = "isHidePrintbtn",
11
+ UpdateGridData = "updateGridData",
12
+ PageLoading = "pageLoading",
13
+ CreateFilterFormgroup = "createFilterFormgroup",
14
+ CreateFilterHeadElement = "createFilterHeadElement",
15
+ UpdateNotification = "updateNotification",
16
+ HeavyDownload = "heavyDownload",
17
+ IsAdFilter = "isAdFilter"
18
+ }
@@ -0,0 +1,120 @@
1
+ export declare enum KeyCode {
2
+ MAC_ENTER = 3,
3
+ BACKSPACE = 8,
4
+ TAB = 9,
5
+ NUM_CENTER = 12,
6
+ ENTER = 13,
7
+ SHIFT = 16,
8
+ CONTROL = 17,
9
+ ALT = 18,
10
+ PAUSE = 19,
11
+ CAPS_LOCK = 20,
12
+ ESCAPE = 27,
13
+ SPACE = 32,
14
+ PAGE_UP = 33,
15
+ PAGE_DOWN = 34,
16
+ END = 35,
17
+ HOME = 36,
18
+ LEFT_ARROW = 37,
19
+ UP_ARROW = 38,
20
+ RIGHT_ARROW = 39,
21
+ DOWN_ARROW = 40,
22
+ PLUS_SIGN = 43,
23
+ PRINT_SCREEN = 44,
24
+ INSERT = 45,
25
+ DELETE = 46,
26
+ ZERO = 48,
27
+ ONE = 49,
28
+ TWO = 50,
29
+ THREE = 51,
30
+ FOUR = 52,
31
+ FIVE = 53,
32
+ SIX = 54,
33
+ SEVEN = 55,
34
+ EIGHT = 56,
35
+ NINE = 57,
36
+ FF_SEMICOLON = 59,
37
+ FF_EQUALS = 61,
38
+ QUESTION_MARK = 63,
39
+ AT_SIGN = 64,
40
+ A = 65,
41
+ B = 66,
42
+ C = 67,
43
+ D = 68,
44
+ E = 69,
45
+ F = 70,
46
+ G = 71,
47
+ H = 72,
48
+ I = 73,
49
+ J = 74,
50
+ K = 75,
51
+ L = 76,
52
+ M = 77,
53
+ N = 78,
54
+ O = 79,
55
+ P = 80,
56
+ Q = 81,
57
+ R = 82,
58
+ S = 83,
59
+ T = 84,
60
+ U = 85,
61
+ V = 86,
62
+ W = 87,
63
+ X = 88,
64
+ Y = 89,
65
+ Z = 90,
66
+ META = 91,
67
+ MAC_WK_CMD_LEFT = 91,
68
+ MAC_WK_CMD_RIGHT = 93,
69
+ CONTEXT_MENU = 93,
70
+ NUMPAD_ZERO = 96,
71
+ NUMPAD_ONE = 97,
72
+ NUMPAD_TWO = 98,
73
+ NUMPAD_THREE = 99,
74
+ NUMPAD_FOUR = 100,
75
+ NUMPAD_FIVE = 101,
76
+ NUMPAD_SIX = 102,
77
+ NUMPAD_SEVEN = 103,
78
+ NUMPAD_EIGHT = 104,
79
+ NUMPAD_NINE = 105,
80
+ NUMPAD_MULTIPLY = 106,
81
+ NUMPAD_PLUS = 107,
82
+ NUMPAD_MINUS = 109,
83
+ NUMPAD_PERIOD = 110,
84
+ NUMPAD_DIVIDE = 111,
85
+ F1 = 112,
86
+ F2 = 113,
87
+ F3 = 114,
88
+ F4 = 115,
89
+ F5 = 116,
90
+ F6 = 117,
91
+ F7 = 118,
92
+ F8 = 119,
93
+ F9 = 120,
94
+ F10 = 121,
95
+ F11 = 122,
96
+ F12 = 123,
97
+ NUM_LOCK = 144,
98
+ SCROLL_LOCK = 145,
99
+ FIRST_MEDIA = 166,
100
+ FF_MINUS = 173,
101
+ MUTE = 173,
102
+ VOLUME_DOWN = 174,
103
+ VOLUME_UP = 175,
104
+ FF_MUTE = 181,
105
+ FF_VOLUME_DOWN = 182,
106
+ LAST_MEDIA = 183,
107
+ FF_VOLUME_UP = 183,
108
+ SEMICOLON = 186,
109
+ EQUALS = 187,
110
+ COMMA = 188,
111
+ DASH = 189,
112
+ SLASH = 191,
113
+ APOSTROPHE = 192,
114
+ TILDE = 192,
115
+ OPEN_SQUARE_BRACKET = 219,
116
+ BACKSLASH = 220,
117
+ CLOSE_SQUARE_BRACKET = 221,
118
+ SINGLE_QUOTE = 222,
119
+ MAC_META = 224
120
+ }
@@ -0,0 +1,9 @@
1
+ export declare enum OperatorType {
2
+ STRING = "string",
3
+ NUMBER = "number",
4
+ DATE = "date"
5
+ }
6
+ export declare enum OperatorKey {
7
+ SHORTNAME = "shortName",
8
+ NAME = "name"
9
+ }
@@ -0,0 +1,8 @@
1
+ export declare enum StorageTokenStatus {
2
+ ID_TOKEN_NOT_CREATED = 0,
3
+ ID_TOKEN_ACTIVE = 1,
4
+ ID_TOKEN_EXPIRED = 2,
5
+ REFRESH_TOKEN_NOT_CREATED = 3,
6
+ REFRESH_TOKEN_ACTIVE = 4,
7
+ REFRESH_TOKEN_EXPIRED = 5
8
+ }
@@ -0,0 +1 @@
1
+ export declare const PLATFORM_NAME: string[];
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "client-core-services",
3
+ "version": "1.0.0",
4
+ "peerDependencies": {
5
+ "@angular/common": "^15.2.10",
6
+ "@angular/core": "^15.2.10",
7
+ "@angular/animations": "^15.2.10",
8
+ "@angular/cdk": "^15.2.9",
9
+ "@angular/compiler": "^15.2.10",
10
+ "@angular/forms": "^15.2.10",
11
+ "@angular/material": "^15.2.9",
12
+ "@angular/platform-browser": "^15.2.10",
13
+ "@angular/platform-browser-dynamic": "^15.2.10",
14
+ "@angular/router": "^15.2.10",
15
+ "rxjs": "^7.8.0"
16
+ },
17
+ "dependencies": {
18
+ "tslib": "^2.2.0"
19
+ },
20
+ "module": "fesm2015/client-core-services.mjs",
21
+ "es2020": "fesm2020/client-core-services.mjs",
22
+ "esm2020": "esm2020/client-core-services.mjs",
23
+ "fesm2020": "fesm2020/client-core-services.mjs",
24
+ "fesm2015": "fesm2015/client-core-services.mjs",
25
+ "typings": "index.d.ts",
26
+ "exports": {
27
+ "./package.json": {
28
+ "default": "./package.json"
29
+ },
30
+ ".": {
31
+ "types": "./index.d.ts",
32
+ "esm2020": "./esm2020/client-core-services.mjs",
33
+ "es2020": "./fesm2020/client-core-services.mjs",
34
+ "es2015": "./fesm2015/client-core-services.mjs",
35
+ "node": "./fesm2015/client-core-services.mjs",
36
+ "default": "./fesm2020/client-core-services.mjs"
37
+ }
38
+ },
39
+ "sideEffects": false
40
+ }
@@ -0,0 +1,49 @@
1
+ export * from './lib/my-lib.module';
2
+ export * from './lib/services/api/api.service';
3
+ export * from './lib/services/api/auth/auth-guard.service';
4
+ export * from './lib/services/api/auth/auth.service';
5
+ export * from './lib/services/api/common-api/common-api.service';
6
+ export * from './lib/services/api/doc-api/doc-api.service';
7
+ export * from './lib/services/api/public-api/public-api.service';
8
+ export * from './lib/services/chart/chart.service';
9
+ export * from './lib/services/common-utils/common-function.service';
10
+ export * from './lib/services/common-utils/core-function/core-function.service';
11
+ export * from './lib/services/customvalidation/customvalidation.service';
12
+ export * from './lib/services/data-share/data-share.service';
13
+ export * from './lib/services/data-share/doc-data-share/doc-data-share.service';
14
+ export * from './lib/services/data-share/public-data-share/public-data-share.service';
15
+ export * from './lib/services/encryption/encryption.service';
16
+ export * from './lib/services/env/env.service';
17
+ export * from './lib/services/grid/grid-common-function/grid-common-function.service';
18
+ export * from './lib/services/grid/grid-selection/grid-selection.service';
19
+ export * from './lib/services/loader/loader.service';
20
+ export * from './lib/services/menu-or-module-common/menu-or-module-common.service';
21
+ export * from './lib/services/model/model.service';
22
+ export * from './lib/services/notify/notification.service';
23
+ export * from './lib/services/permission/permission.service';
24
+ export * from './lib/services/storage/storage.service';
25
+ export * from './lib/services/lims-calculations/lims-calculations.service';
26
+ export * from './lib/services/tree-component/tree-component.service';
27
+ export * from './lib/services/voice-recognition/voice-recognition.service';
28
+ export * from './lib/shared/enums/common.enum';
29
+ export * from './lib/shared/enums/end-point.enum';
30
+ export * from './lib/shared/enums/storage-token-status.enum';
31
+ export * from './lib/shared/enums/keycodes.enum';
32
+ export * from './lib/shared/enums/operator_type.enum';
33
+ export * from './lib/services/data-share/auth-data-share/auth-data-share.service';
34
+ export * from './lib/services/data-share/common-app-data-share/common-app-data-share.service';
35
+ export * from './lib/services/fileHandler/file-handler.service';
36
+ export * from './lib/shared/configuration/editor-config';
37
+ export * from './lib/shared/configuration/config';
38
+ export * from './lib/services/form/form-creation/form-creation.service';
39
+ export * from './lib/services/form/form-value/form-value.service';
40
+ export * from './lib/services/api/api-call/api-call.service';
41
+ export * from './lib/services/form/form-control/form-control.service';
42
+ export * from './lib/services/check-if/check-if.service';
43
+ export * from './lib/services/api/api-call-responce/api-call-responce.service';
44
+ export * from './lib/services/form/multiple-form/multiple-form.service';
45
+ export * from './lib/services/download/download.service';
46
+ export * from './lib/services/userPrefrence/user-prefrence.service';
47
+ export * from './lib/services/api/aws-secret-manager/aws-secret-manager.service';
48
+ export * from './lib/services/storage/cookies.service';
49
+ export * from './lib/services/router/router.service';