@golemio/city-districts 1.2.5 → 1.2.6-dev.893764797

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.
@@ -17,7 +17,7 @@ export declare class CityDistrictsPostgresRepository extends SequelizeModel impl
17
17
  GetAll: (options?: IGeoJsonAllFilterParameters) => Promise<IGeoJSONFeatureCollection>;
18
18
  GetOne: (id: string) => Promise<{
19
19
  geometry: {
20
- coordinates: (number | null)[] | number[][] | number[][][] | number[][][][];
20
+ coordinates: number[][] | number[][][] | (number | null)[] | number[][][][];
21
21
  type: import("@golemio/core/dist/output-gateway").GeoCoordinatesType.Point | import("@golemio/core/dist/output-gateway").GeoCoordinatesType.Polygon | import("@golemio/core/dist/output-gateway").GeoCoordinatesType.MultiPolygon;
22
22
  };
23
23
  properties: Omit<ICityDistrictsOutput & Record<"geom", import("@golemio/core/dist/output-gateway").TGeoCoordinates>, "geom">;
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@golemio/city-districts",
3
- "version": "1.2.5",
3
+ "version": "1.2.6-dev.893764797",
4
4
  "description": "Golemio City Districts Module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "scripts": {
8
- "build": "rimraf ./dist && ttsc -p ./tsconfig.build.json",
8
+ "build": "rimraf ./dist && tspc -p ./tsconfig.build.json",
9
9
  "build-minimal": "run-s 'build -- --sourceMap false --declaration false'",
10
10
  "build-watch": "run-s 'build -- --watch --preserveWatchOutput'",
11
11
  "pretest": "golemio import-db-data --postgres",
12
- "test": "cross-env NODE_ENV=test TS_NODE_COMPILER='ttypescript' mocha --exit --check-leaks --timeout 120000 -r ts-node/register -r dotenv/config --file 'test/setup.ts' 'test/**/*.test.ts'",
12
+ "test": "cross-env NODE_ENV=test mocha --exit --check-leaks --timeout 120000 -r ts-node/register -r tsconfig-paths/register -r dotenv/config --file 'test/setup.ts' 'test/**/*.test.ts'",
13
13
  "test-debug": "run-s 'test -- --inspect-brk=9230'",
14
14
  "code-coverage": "nyc run-s 'test -- -r source-map-support/register'",
15
15
  "generate-docs": "typedoc --out docs/typedoc src",
@@ -33,11 +33,10 @@
33
33
  "@commitlint/cli": "^11.0.0",
34
34
  "@commitlint/config-conventional": "^11.0.0",
35
35
  "@golemio/cli": "1.4.2",
36
- "@golemio/core": "1.7.0",
36
+ "@golemio/core": "1.7.5-dev.893702206",
37
37
  "@golemio/db-common": "1.1.1",
38
38
  "@golemio/eslint-config": "1.1.0",
39
39
  "@golemio/schema-definitions": "2.3.5",
40
- "@ovos-media/ts-transform-paths": "^1.7.18-1",
41
40
  "@types/chai": "4.2.3",
42
41
  "@types/chai-as-promised": "7.1.2",
43
42
  "@types/mocha": "^9.1.0",
@@ -57,12 +56,14 @@
57
56
  "pretty-quick": "^3.1.3",
58
57
  "rimraf": "^3.0.2",
59
58
  "sinon": "^9.2.3",
60
- "source-map-support": "0.5.19",
59
+ "source-map-support": "0.5.21",
61
60
  "supertest": "^6.3.3",
62
- "ts-node": "^10.7.0",
63
- "ttypescript": "^1.5.13",
64
- "typedoc": "^0.22.15",
65
- "typescript": "4.7.2"
61
+ "ts-node": "^10.9.1",
62
+ "ts-patch": "3.0.0-beta3",
63
+ "tsconfig-paths": "^4.2.0",
64
+ "typedoc": "^0.24.8",
65
+ "typescript": "5.1.3",
66
+ "typescript-transform-paths": "^3.4.6"
66
67
  },
67
68
  "peerDependencies": {
68
69
  "@golemio/core": ">=1.7.0"