hgs-twilio-class-lib 1.1.74 → 1.1.76
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.
- package/README.md +5 -5
- package/lib/index.js +1 -0
- package/package.json +56 -56
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
# Flex V2 Backend Code
|
|
2
|
-
|
|
3
|
-
Package to manage Flex V2 Backend.
|
|
4
|
-
|
|
5
|
-
Run "npm install hgs-twilio-class-lib --save"
|
|
1
|
+
# Flex V2 Backend Code
|
|
2
|
+
|
|
3
|
+
Package to manage Flex V2 Backend.
|
|
4
|
+
|
|
5
|
+
Run "npm install hgs-twilio-class-lib --save"
|
package/lib/index.js
CHANGED
|
@@ -96,5 +96,6 @@ const AgentScorecardController_1 = require("./controller/twilio/AgentScorecardCo
|
|
|
96
96
|
Object.defineProperty(exports, "AgentScorecardController", { enumerable: true, get: function () { return AgentScorecardController_1.AgentScorecardController; } });
|
|
97
97
|
const AgentActionsController_1 = require("./controller/twilio/AgentActionsController");
|
|
98
98
|
Object.defineProperty(exports, "AgentActionsController", { enumerable: true, get: function () { return AgentActionsController_1.AgentActionsController; } });
|
|
99
|
+
// import { RealTimeDashboardController } from "./controller/RealTimeDashboardController";
|
|
99
100
|
const models = __importStar(require("./models"));
|
|
100
101
|
exports.models = models;
|
package/package.json
CHANGED
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "hgs-twilio-class-lib",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "Flex 2.0 backend to connect with any database ",
|
|
5
|
-
"main": "./lib/index.js",
|
|
6
|
-
"types": "./types/index.d.ts",
|
|
7
|
-
"type": "commonjs",
|
|
8
|
-
"files": [
|
|
9
|
-
"lib",
|
|
10
|
-
"types",
|
|
11
|
-
"package.json"
|
|
12
|
-
],
|
|
13
|
-
"publishConfig": {
|
|
14
|
-
"directory": "lib"
|
|
15
|
-
},
|
|
16
|
-
"scripts": {
|
|
17
|
-
"clean": "rimraf lib types",
|
|
18
|
-
"build": "npm run clean && tsc",
|
|
19
|
-
"start": "node lib/server.js",
|
|
20
|
-
"dev": "nodemon server.ts",
|
|
21
|
-
"test": "echo \"Error: no test specified\" && exit 1",
|
|
22
|
-
"check:unused": "ts-prune"
|
|
23
|
-
},
|
|
24
|
-
"author": "HGS",
|
|
25
|
-
"license": "",
|
|
26
|
-
"devDependencies": {
|
|
27
|
-
"@rollup/plugin-commonjs": "^28.0.3",
|
|
28
|
-
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
29
|
-
"@rollup/plugin-typescript": "^12.1.2",
|
|
30
|
-
"@types/express": "4.17.21",
|
|
31
|
-
"@types/node": "20.11.17",
|
|
32
|
-
"@types/uuid": "9.0.8",
|
|
33
|
-
"esbuild": "^0.25.4",
|
|
34
|
-
"express": "^4.18.2",
|
|
35
|
-
"fast-glob": "^3.3.3",
|
|
36
|
-
"nodemon": "^3.1.0",
|
|
37
|
-
"rimraf": "^6.0.1",
|
|
38
|
-
"rollup": "^2.79.2",
|
|
39
|
-
"rollup-plugin-terser": "^7.0.2",
|
|
40
|
-
"rollup-plugin-visualizer": "^5.14.0",
|
|
41
|
-
"ts-loader": "9.5.1",
|
|
42
|
-
"ts-node": "^10.9.2",
|
|
43
|
-
"typescript": "5.3.3"
|
|
44
|
-
},
|
|
45
|
-
"dependencies": {
|
|
46
|
-
"@aws-sdk/client-connect": "3.723.0",
|
|
47
|
-
"cors": "^2.8.5",
|
|
48
|
-
"moment": "2.30.1",
|
|
49
|
-
"moment-timezone": "^0.5.46",
|
|
50
|
-
"twilio": "4.22.0",
|
|
51
|
-
"uuid": "^9.0.1"
|
|
52
|
-
},
|
|
53
|
-
"engines": {
|
|
54
|
-
"node": ">=18"
|
|
55
|
-
}
|
|
56
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "hgs-twilio-class-lib",
|
|
3
|
+
"version": "1.1.76",
|
|
4
|
+
"description": "Flex 2.0 backend to connect with any database ",
|
|
5
|
+
"main": "./lib/index.js",
|
|
6
|
+
"types": "./types/index.d.ts",
|
|
7
|
+
"type": "commonjs",
|
|
8
|
+
"files": [
|
|
9
|
+
"lib",
|
|
10
|
+
"types",
|
|
11
|
+
"package.json"
|
|
12
|
+
],
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"directory": "lib"
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"clean": "rimraf lib types",
|
|
18
|
+
"build": "npm run clean && tsc",
|
|
19
|
+
"start": "node lib/server.js",
|
|
20
|
+
"dev": "nodemon server.ts",
|
|
21
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
22
|
+
"check:unused": "ts-prune"
|
|
23
|
+
},
|
|
24
|
+
"author": "HGS",
|
|
25
|
+
"license": "",
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@rollup/plugin-commonjs": "^28.0.3",
|
|
28
|
+
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
29
|
+
"@rollup/plugin-typescript": "^12.1.2",
|
|
30
|
+
"@types/express": "4.17.21",
|
|
31
|
+
"@types/node": "20.11.17",
|
|
32
|
+
"@types/uuid": "9.0.8",
|
|
33
|
+
"esbuild": "^0.25.4",
|
|
34
|
+
"express": "^4.18.2",
|
|
35
|
+
"fast-glob": "^3.3.3",
|
|
36
|
+
"nodemon": "^3.1.0",
|
|
37
|
+
"rimraf": "^6.0.1",
|
|
38
|
+
"rollup": "^2.79.2",
|
|
39
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
40
|
+
"rollup-plugin-visualizer": "^5.14.0",
|
|
41
|
+
"ts-loader": "9.5.1",
|
|
42
|
+
"ts-node": "^10.9.2",
|
|
43
|
+
"typescript": "5.3.3"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@aws-sdk/client-connect": "3.723.0",
|
|
47
|
+
"cors": "^2.8.5",
|
|
48
|
+
"moment": "2.30.1",
|
|
49
|
+
"moment-timezone": "^0.5.46",
|
|
50
|
+
"twilio": "4.22.0",
|
|
51
|
+
"uuid": "^9.0.1"
|
|
52
|
+
},
|
|
53
|
+
"engines": {
|
|
54
|
+
"node": ">=18"
|
|
55
|
+
}
|
|
56
|
+
}
|