@bringg/dashboard-sdk 0.4.67 → 0.4.68
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/dist/ApplicationTeamConfiguration/ApplicationTeamConfigurationApi.d.ts +9 -0
- package/dist/ApplicationTeamConfiguration/ApplicationTeamConfigurationApi.js +77 -0
- package/dist/ApplicationTeamConfiguration/ApplicationTeamConfigurationApi.js.map +1 -0
- package/dist/ApplicationTeamConfiguration/Entity/ApplicationTeamConfigurationEntity.d.ts +9 -0
- package/dist/ApplicationTeamConfiguration/Entity/ApplicationTeamConfigurationEntity.js +107 -0
- package/dist/ApplicationTeamConfiguration/Entity/ApplicationTeamConfigurationEntity.js.map +1 -0
- package/dist/BringgDashboardSDK.d.ts +2 -0
- package/dist/BringgDashboardSDK.js +3 -0
- package/dist/BringgDashboardSDK.js.map +1 -1
- package/dist/Services/ServiceRequest.js +1 -1
- package/dist/bringg-dashboard-sdk-cjs2.js +529 -211
- package/dist/bringg-dashboard-sdk-cjs2.js.map +1 -1
- package/dist/bringg-dashboard-sdk.js +62 -10
- package/dist/bringg-dashboard-sdk.min.js +2 -2
- package/dist/bringg-dashboard-sdk.min.js.map +1 -1
- package/dist/stats.json +2265 -1793
- package/package.json +87 -87
package/package.json
CHANGED
|
@@ -1,89 +1,89 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
2
|
+
"name": "@bringg/dashboard-sdk",
|
|
3
|
+
"version": "0.4.68",
|
|
4
|
+
"description": "Bringg dashboard SDK",
|
|
5
|
+
"main": "dist/bringg-dashboard-sdk.js",
|
|
6
|
+
"typings": "dist/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"test": "jest --runInBand",
|
|
9
|
+
"test-with-coverage": "rm -rf ./coverage && jest --coverage",
|
|
10
|
+
"jest": "jest --watchAll",
|
|
11
|
+
"lint": "tslint \"src/**/*.ts\" -e \"**/__test__/**\"",
|
|
12
|
+
"fix": "npm run prettier && npm run lint",
|
|
13
|
+
"build": "git clean -fdx ./dist && tsc --project tsconfig.json && webpack --config ./webpack.config.js",
|
|
14
|
+
"entity-generator": "chmod 777 scripts/* && scripts/file_generator.sh $1 $2",
|
|
15
|
+
"bundle-report": "webpack-bundle-analyzer --port 4200 dist/stats.json",
|
|
16
|
+
"bump-version": "npm_config_allow_same_version=true npm_config_git_tag_version=false npm version patch",
|
|
17
|
+
"build-docs": "typedoc --out docs src",
|
|
18
|
+
"build-sandbox-sdk": "git clean -fdx .sandbox/dist && tsc --project tsconfig.json --outDir ./sandbox/dist && webpack --config ./webpack_sandbox.config.js",
|
|
19
|
+
"sandbox": "npm run build-sandbox-sdk && cd sandbox && npm run start",
|
|
20
|
+
"prettier": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
|
|
21
|
+
"prettier-check": "prettier -c \"src/**/*.{ts,tsx,json,md}\"",
|
|
22
|
+
"vulnerability-report": "npm audit --json | npm-audit-html",
|
|
23
|
+
"vulnerability-fix": "npm audit fix",
|
|
24
|
+
"precommit": "npm run prettier && npm run build && npm run test",
|
|
25
|
+
"bundlesize": "bundlesize"
|
|
26
|
+
},
|
|
27
|
+
"prettier": "@bringg/prettier-config",
|
|
28
|
+
"lint-staged": {
|
|
29
|
+
"src/**/*.{ts,tsx,json,md }": [
|
|
30
|
+
"prettier --write",
|
|
31
|
+
"git add"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
"husky": {
|
|
35
|
+
"hooks": {
|
|
36
|
+
"pre-commit": "lint-staged"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"files": [
|
|
40
|
+
"dist/*"
|
|
41
|
+
],
|
|
42
|
+
"author": "",
|
|
43
|
+
"license": "ISC",
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@bringg/analytics-api": "^1.0.1",
|
|
46
|
+
"axios": "0.21.1",
|
|
47
|
+
"deepmerge": "^4.2.2",
|
|
48
|
+
"http-status-codes": "1.3.0",
|
|
49
|
+
"lodash": "^4.17.21",
|
|
50
|
+
"moment": "^2.22.2",
|
|
51
|
+
"rxjs": "^6.5.3",
|
|
52
|
+
"sha1": "1.1.1",
|
|
53
|
+
"socket.io-client": "^4.1.3",
|
|
54
|
+
"uuid": "^8.1.0"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@bringg/prettier-config": "^1.1.0",
|
|
58
|
+
"@bringg/types": "^3.12.1",
|
|
59
|
+
"@types/faker": "^4.1.5",
|
|
60
|
+
"@types/jest": "^24.0.13",
|
|
61
|
+
"@types/lodash": "^4.14.133",
|
|
62
|
+
"@types/node": "^12.0.4",
|
|
63
|
+
"axios-mock-adapter": "1.15.0",
|
|
64
|
+
"bundlesize": "^0.18.1",
|
|
65
|
+
"codecov": "^3.8.2",
|
|
66
|
+
"faker": "4.1.0",
|
|
67
|
+
"generate-package-json-webpack-plugin": "^1.0.1",
|
|
68
|
+
"husky": "^3.0.4",
|
|
69
|
+
"jest": "^24.8.0",
|
|
70
|
+
"jest-cli": "^24.8.0",
|
|
71
|
+
"jest-fetch-mock": "^2.1.2",
|
|
72
|
+
"lint-staged": "^9.2.5",
|
|
73
|
+
"npm-audit-html": "^1.4.0",
|
|
74
|
+
"prettier": "^2.5.1",
|
|
75
|
+
"promise-polyfill": "^8.1.0",
|
|
76
|
+
"replace-in-file-webpack-plugin": "^1.0.6",
|
|
77
|
+
"socket.io-mock": "^1.2.3",
|
|
78
|
+
"ts-import-plugin": "^1.5.5",
|
|
79
|
+
"ts-jest": "^24.0.2",
|
|
80
|
+
"ts-loader": "4.3.1",
|
|
81
|
+
"tslint": "^5.17.0",
|
|
82
|
+
"tslint-config-prettier": "^1.18.0",
|
|
83
|
+
"typedoc": "^0.15.3",
|
|
84
|
+
"typescript": "^4.2.3",
|
|
85
|
+
"webpack": "4.41.2",
|
|
86
|
+
"webpack-bundle-analyzer": "^3.3.2",
|
|
87
|
+
"webpack-cli": "^3.3.2"
|
|
88
|
+
}
|
|
89
89
|
}
|