Skip to content

Commit 3d21856

Browse files
author
Teamcity
committed
Release: 0.2.2
1 parent 9ff9866 commit 3d21856

File tree

9 files changed

+176
-117
lines changed

9 files changed

+176
-117
lines changed

forward_engineering/api.js

Lines changed: 61 additions & 65 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

forward_engineering/ddlProvider.js

Lines changed: 25 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

localization/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"TOOLBAR___ADD_ATTRIBUTE": "Add Column",
1717
"TOOLBAR___INSERT_FIELD": "Insert Column",
1818
"TOOLBAR___APPEND_FIELD": "Append Column",
19-
"TOOLBAR___TOGGLE_FIELD_DETAILS": "Toogle field details",
19+
"TOOLBAR___TOGGLE_FIELD_DETAILS": "Toggle field details",
2020
"TOOLBAR___SHOW_FOREIGN_MASTER": "Toggle foreign master",
2121
"TOOLBAR___SHOW_MODEL_VIEW": "Toggle model views",
2222
"TOOLBAR___DISTRIBUTE_ORTHOGONALLY": "Distribute tables orthogonally",

package.json

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "PostgreSQL",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"author": "hackolade",
55
"engines": {
66
"hackolade": "6.1.2",
@@ -61,24 +61,22 @@
6161
},
6262
"devDependencies": {
6363
"@hackolade/hck-esbuild-plugins-pack": "0.0.1",
64-
"esbuild": "0.21.3",
64+
"@typescript-eslint/parser": "7.11.0",
65+
"@typescript-eslint/eslint-plugin": "7.11.0",
66+
"esbuild": "0.20.2",
6567
"esbuild-plugin-clean": "1.0.1",
66-
"eslint": "9.3.0",
68+
"eslint": "8.57.0",
6769
"eslint-config-prettier": "9.1.0",
70+
"eslint-formatter-teamcity": "^1.0.0",
71+
"eslint-plugin-import": "^2.26.0",
6872
"eslint-plugin-prettier": "5.1.3",
73+
"eslint-plugin-unused-imports": "3.2.0",
6974
"lint-staged": "14.0.1",
7075
"prettier": "3.2.5",
7176
"simple-git-hooks": "2.11.1"
7277
},
7378
"dependencies": {
74-
"pg": "^8.7.1",
75-
"tunnel-ssh": "^4.1.6"
76-
},
77-
"overrides": {
78-
"tunnel-ssh": {
79-
"cpu-features": "npm:[email protected]",
80-
"ssh2": "npm:[email protected]"
81-
}
79+
"pg": "^8.7.1"
8280
},
8381
"release": true
8482
}

polyglot/adapter.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,5 +126,27 @@
126126
}
127127
}
128128
]
129+
},
130+
"postConvert": {
131+
"modify": {
132+
"field": [
133+
{
134+
"from": {
135+
"type": "jsonObject"
136+
},
137+
"to": {
138+
"subtype": "object"
139+
}
140+
},
141+
{
142+
"from": {
143+
"type": "jsonArray"
144+
},
145+
"to": {
146+
"subtype": "array"
147+
}
148+
}
149+
]
150+
}
129151
}
130152
}

properties_pane/field_level/fieldLevelConfig.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5425,6 +5425,24 @@ making sure that you maintain a proper JSON format.
54255425
"propertyType": "details",
54265426
"template": "textarea"
54275427
},
5428+
{
5429+
"propertyName": "Min Properties",
5430+
"propertyKeyword": "minProperties",
5431+
"propertyType": "numeric",
5432+
"dependency": {
5433+
"key": "subtype",
5434+
"value": "object"
5435+
}
5436+
},
5437+
{
5438+
"propertyName": "Max Properties",
5439+
"propertyKeyword": "maxProperties",
5440+
"propertyType": "numeric",
5441+
"dependency": {
5442+
"key": "subtype",
5443+
"value": "object"
5444+
}
5445+
},
54285446
{
54295447
"propertyName": "Array type",
54305448
"propertyType": "group",

reverse_engineering/api.js

Lines changed: 9 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tsconfig.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"compilerOptions": {
3+
"baseUrl": ".",
4+
"outDir": "./tscDist",
5+
"allowJs": true,
6+
"checkJs": false,
7+
"target": "ES2016",
8+
"lib": ["ESNext", "DOM"],
9+
"sourceMap": true,
10+
"jsx": "react-jsx",
11+
"moduleResolution": "node",
12+
"experimentalDecorators": true,
13+
"noUnusedParameters": true,
14+
"noUnusedLocals": true,
15+
"noImplicitThis": true,
16+
"noImplicitAny": false,
17+
"alwaysStrict": true,
18+
"skipLibCheck": true,
19+
"module": "ESNext",
20+
"strict": true,
21+
"useUnknownInCatchVariables": true,
22+
"allowSyntheticDefaultImports": true,
23+
"isolatedModules": true,
24+
"resolveJsonModule": true,
25+
"esModuleInterop": true,
26+
"forceConsistentCasingInFileNames": true,
27+
"typeRoots": ["./node_modules/@types", "./types"]
28+
},
29+
"include": ["reverse_engineering", "forward_engineering"],
30+
"exclude": ["**/node_modules/**", "release/**/*"]
31+
}

types/geometry.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
"foreignCollection": "",
1212
"foreignField": [],
1313
"dependencies": [],
14-
"minProperties": "",
15-
"maxProperties": "",
1614
"additionalProperties": false,
1715
"enum": []
1816
},

0 commit comments

Comments
 (0)