@golemio/waze-tt 1.0.8 → 1.0.9-dev.634582944
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/db/migrations/postgresql/.config.json +3 -0
- package/db/migrations/postgresql/20220519071520-wazett.js +53 -0
- package/db/migrations/postgresql/20220908064516-analytic-function-and-views.js +53 -0
- package/db/migrations/postgresql/package.json +3 -0
- package/db/migrations/postgresql/sqls/20220519071520-wazett-down.sql +6 -0
- package/db/migrations/postgresql/sqls/20220519071520-wazett-up.sql +127 -0
- package/db/migrations/postgresql/sqls/20220908064516-analytic-function-and-views-down.sql +19 -0
- package/db/migrations/postgresql/sqls/20220908064516-analytic-function-and-views-up.sql +866 -0
- package/db/migrations/postgresql/sqls/package.json +3 -0
- package/dist/integration-engine/WazeTTWorker.d.ts +6 -0
- package/dist/integration-engine/WazeTTWorker.js +75 -52
- package/dist/integration-engine/WazeTTWorker.js.map +1 -1
- package/dist/integration-engine/wazeTTTransformations/WazeTTTransformationsSubRouteLives.d.ts +3 -2
- package/dist/integration-engine/wazeTTTransformations/WazeTTTransformationsSubRouteLives.js +0 -5
- package/dist/integration-engine/wazeTTTransformations/WazeTTTransformationsSubRouteLives.js.map +1 -1
- package/dist/integration-engine/wazeTTTransformations/WazeTTTransformationsSubRoutes.d.ts +3 -2
- package/dist/integration-engine/wazeTTTransformations/WazeTTTransformationsSubRoutes.js +7 -2
- package/dist/integration-engine/wazeTTTransformations/WazeTTTransformationsSubRoutes.js.map +1 -1
- package/dist/integration-engine/wazeTTTransformations/helpers/SubRouteIdHelper.d.ts +8 -0
- package/dist/integration-engine/wazeTTTransformations/helpers/SubRouteIdHelper.js +36 -0
- package/dist/integration-engine/wazeTTTransformations/helpers/SubRouteIdHelper.js.map +1 -0
- package/dist/integration-engine/wazeTTTransformations/interfaces/ISubRoute.d.ts +8 -0
- package/dist/integration-engine/wazeTTTransformations/interfaces/ISubRoute.js +3 -0
- package/dist/integration-engine/wazeTTTransformations/interfaces/ISubRoute.js.map +1 -0
- package/dist/integration-engine/wazeTTTransformations/interfaces/ISubRouteLives.d.ts +9 -0
- package/dist/integration-engine/wazeTTTransformations/interfaces/ISubRouteLives.js +3 -0
- package/dist/integration-engine/wazeTTTransformations/interfaces/ISubRouteLives.js.map +1 -0
- package/dist/schema-definitions/index.d.ts +3 -2
- package/dist/schema-definitions/index.js +15 -12
- package/dist/schema-definitions/index.js.map +1 -1
- package/package.json +70 -67
package/package.json
CHANGED
|
@@ -1,69 +1,72 @@
|
|
|
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
|
-
|
|
2
|
+
"name": "@golemio/waze-tt",
|
|
3
|
+
"version": "1.0.9-dev.634582944",
|
|
4
|
+
"description": "Golemio Waze TT Module",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "rimraf ./dist && ttsc -p ./tsconfig.build.json",
|
|
9
|
+
"build-minimal": "run-s 'build --sourceMap false --declaration false'",
|
|
10
|
+
"build-watch": "run-s 'build --watch --preserveWatchOutput'",
|
|
11
|
+
"test": "cross-env NODE_ENV=test TS_NODE_COMPILER='ttypescript' mocha --check-leaks --timeout 120000 -r ts-node/register test/**/*.test.ts --exit",
|
|
12
|
+
"test-debug": "run-s 'test --inspect-brk=9230'",
|
|
13
|
+
"code-coverage": "cross-env NODE_ENV=test TS_NODE_COMPILER='ttypescript' nyc mocha --timeout 120000 -r ts-node/register -r source-map-support/register test/**/*.test.ts --exit",
|
|
14
|
+
"generate-docs": "typedoc --out docs/typedoc src",
|
|
15
|
+
"lint_": "eslint {src,test}/**/*.ts",
|
|
16
|
+
"lint": "eslint -c .eslintrc.js {src,test}/**/*.ts"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"golemio"
|
|
20
|
+
],
|
|
21
|
+
"author": "Operator ICT, a.s.",
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "https://gitlab.com/operator-ict/golemio/code/modules/waze-tt"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@commitlint/cli": "^11.0.0",
|
|
29
|
+
"@commitlint/config-conventional": "^11.0.0",
|
|
30
|
+
"@golemio/cli": "1.2.2",
|
|
31
|
+
"@golemio/core": "1.2.13",
|
|
32
|
+
"@golemio/db-common": "1.0.0",
|
|
33
|
+
"@golemio/eslint-config": "1.1.0",
|
|
34
|
+
"@ovos-media/ts-transform-paths": "^1.7.18-1",
|
|
35
|
+
"@types/chai": "4.2.3",
|
|
36
|
+
"@types/chai-as-promised": "7.1.2",
|
|
37
|
+
"@types/geojson": "^7946.0.8",
|
|
38
|
+
"@types/mocha": "^8.2.0",
|
|
39
|
+
"@types/node": "^16.11.35",
|
|
40
|
+
"@types/object-hash": "^1.3.0",
|
|
41
|
+
"@types/sinon": "^9.0.10",
|
|
42
|
+
"chai": "4.2.0",
|
|
43
|
+
"chai-as-promised": "7.1.1",
|
|
44
|
+
"cross-env": "^7.0.3",
|
|
45
|
+
"eslint": "^7.17.0",
|
|
46
|
+
"husky": "^4.3.7",
|
|
47
|
+
"mocha": "^8.2.1",
|
|
48
|
+
"npm-run-all": "^4.1.5",
|
|
49
|
+
"nyc": "^15.1.0",
|
|
50
|
+
"prettier": "^2.2.1",
|
|
51
|
+
"pretty-quick": "^3.1.0",
|
|
52
|
+
"rimraf": "^3.0.2",
|
|
53
|
+
"sinon": "^9.2.3",
|
|
54
|
+
"source-map-support": "0.5.19",
|
|
55
|
+
"ts-node": "^10.7.0",
|
|
56
|
+
"ttypescript": "^1.5.13",
|
|
57
|
+
"typedoc": "^0.22.15",
|
|
58
|
+
"typescript": "4.6.4"
|
|
59
|
+
},
|
|
60
|
+
"peerDependencies": {
|
|
61
|
+
"@golemio/core": "^1.0.5"
|
|
62
|
+
},
|
|
63
|
+
"dependencies": {
|
|
64
|
+
"object-hash": "^2.0.0"
|
|
65
|
+
},
|
|
66
|
+
"resolutions": {
|
|
67
|
+
"hosted-git-info": "^3.0.8",
|
|
68
|
+
"lodash": "^4.17.21",
|
|
69
|
+
"trim-newlines": "^4.0.1",
|
|
70
|
+
"glob-parent": "^5.1.2"
|
|
71
|
+
}
|
|
69
72
|
}
|