Skip to content

Commit

Permalink
Release: 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Teamcity committed Jun 14, 2024
1 parent 9ff9866 commit 3d21856
Show file tree
Hide file tree
Showing 9 changed files with 176 additions and 117 deletions.
126 changes: 61 additions & 65 deletions forward_engineering/api.js

Large diffs are not rendered by default.

50 changes: 25 additions & 25 deletions forward_engineering/ddlProvider.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion localization/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"TOOLBAR___ADD_ATTRIBUTE": "Add Column",
"TOOLBAR___INSERT_FIELD": "Insert Column",
"TOOLBAR___APPEND_FIELD": "Append Column",
"TOOLBAR___TOGGLE_FIELD_DETAILS": "Toogle field details",
"TOOLBAR___TOGGLE_FIELD_DETAILS": "Toggle field details",
"TOOLBAR___SHOW_FOREIGN_MASTER": "Toggle foreign master",
"TOOLBAR___SHOW_MODEL_VIEW": "Toggle model views",
"TOOLBAR___DISTRIBUTE_ORTHOGONALLY": "Distribute tables orthogonally",
Expand Down
20 changes: 9 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "PostgreSQL",
"version": "0.2.1",
"version": "0.2.2",
"author": "hackolade",
"engines": {
"hackolade": "6.1.2",
Expand Down Expand Up @@ -61,24 +61,22 @@
},
"devDependencies": {
"@hackolade/hck-esbuild-plugins-pack": "0.0.1",
"esbuild": "0.21.3",
"@typescript-eslint/parser": "7.11.0",
"@typescript-eslint/eslint-plugin": "7.11.0",
"esbuild": "0.20.2",
"esbuild-plugin-clean": "1.0.1",
"eslint": "9.3.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-formatter-teamcity": "^1.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-unused-imports": "3.2.0",
"lint-staged": "14.0.1",
"prettier": "3.2.5",
"simple-git-hooks": "2.11.1"
},
"dependencies": {
"pg": "^8.7.1",
"tunnel-ssh": "^4.1.6"
},
"overrides": {
"tunnel-ssh": {
"cpu-features": "npm:-@0.0.1",
"ssh2": "npm:-@0.0.1"
}
"pg": "^8.7.1"
},
"release": true
}
22 changes: 22 additions & 0 deletions polyglot/adapter.json
Original file line number Diff line number Diff line change
Expand Up @@ -126,5 +126,27 @@
}
}
]
},
"postConvert": {
"modify": {
"field": [
{
"from": {
"type": "jsonObject"
},
"to": {
"subtype": "object"
}
},
{
"from": {
"type": "jsonArray"
},
"to": {
"subtype": "array"
}
}
]
}
}
}
18 changes: 18 additions & 0 deletions properties_pane/field_level/fieldLevelConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5425,6 +5425,24 @@ making sure that you maintain a proper JSON format.
"propertyType": "details",
"template": "textarea"
},
{
"propertyName": "Min Properties",
"propertyKeyword": "minProperties",
"propertyType": "numeric",
"dependency": {
"key": "subtype",
"value": "object"
}
},
{
"propertyName": "Max Properties",
"propertyKeyword": "maxProperties",
"propertyType": "numeric",
"dependency": {
"key": "subtype",
"value": "object"
}
},
{
"propertyName": "Array type",
"propertyType": "group",
Expand Down
22 changes: 9 additions & 13 deletions reverse_engineering/api.js

Large diffs are not rendered by default.

31 changes: 31 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"compilerOptions": {
"baseUrl": ".",
"outDir": "./tscDist",
"allowJs": true,
"checkJs": false,
"target": "ES2016",
"lib": ["ESNext", "DOM"],
"sourceMap": true,
"jsx": "react-jsx",
"moduleResolution": "node",
"experimentalDecorators": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"noImplicitThis": true,
"noImplicitAny": false,
"alwaysStrict": true,
"skipLibCheck": true,
"module": "ESNext",
"strict": true,
"useUnknownInCatchVariables": true,
"allowSyntheticDefaultImports": true,
"isolatedModules": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"typeRoots": ["./node_modules/@types", "./types"]
},
"include": ["reverse_engineering", "forward_engineering"],
"exclude": ["**/node_modules/**", "release/**/*"]
}
2 changes: 0 additions & 2 deletions types/geometry.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
"foreignCollection": "",
"foreignField": [],
"dependencies": [],
"minProperties": "",
"maxProperties": "",
"additionalProperties": false,
"enum": []
},
Expand Down

0 comments on commit 3d21856

Please sign in to comment.