Skip to content

Commit

Permalink
Release: 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Teamcity committed Jun 21, 2024
1 parent 064af89 commit 7c3cdca
Show file tree
Hide file tree
Showing 7 changed files with 65 additions and 12 deletions.
1 change: 1 addition & 0 deletions forward_engineering/api.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"use strict";
2 changes: 1 addition & 1 deletion localization/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"TOOLBAR___ADD_ATTRIBUTE": "Add Attribute",
"TOOLBAR___INSERT_FIELD": "Insert Field",
"TOOLBAR___APPEND_FIELD": "Append Field",
"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 collections orthogonally",
Expand Down
12 changes: 8 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"name": "Firestore",
"version": "0.1.5",
"versionDate": "2020-01-10",
"version": "0.2.1",
"author": "hackolade",
"engines": {
"hackolade": "1.12.x",
Expand Down Expand Up @@ -40,11 +39,16 @@
},
"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.2.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"
Expand Down
27 changes: 23 additions & 4 deletions properties_pane/field_level/fieldLevelConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
* Copyright © 2016-2017 by IntegrIT S.A. dba Hackolade. All rights reserved.
*
* The copyright to the computer software herein is the property of IntegrIT S.A.
* The software may be used and/or copied only with the written permission of
* IntegrIT S.A. or in accordance with the terms and conditions stipulated in
* the agreement/contract under which the software has been supplied.
* The software may be used and/or copied only with the written permission of
* IntegrIT S.A. or in accordance with the terms and conditions stipulated in
* the agreement/contract under which the software has been supplied.


In order to define custom properties for any object's properties pane, you may copy/paste from the following,
Expand Down Expand Up @@ -145,7 +145,26 @@ making sure that you maintain a proper JSON format.
"comments"
],
"boolean": "boolean",
"object": "document",
"object": [
"schemaId",
"type",
"description",
"dependencies",
"required",
"primaryKey",
"minProperties",
"maxProperties",
"additionalProperties",
"comments"
],
"geopoint": [
"schemaId",
"dependencies",
"required",
"primaryKey",
"additionalProperties",
"comments"
],
"array": "array",
"null": "null"
}
Expand Down
2 changes: 1 addition & 1 deletion reverse_engineering/api.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
"use strict";var t=Object.defineProperty;var c=(o,n)=>t(o,"name",{value:n,configurable:!0});module.exports={connect:c(function(o,n){n()},"connect"),disconnect:c(function(o,n){n()},"disconnect"),testConnection:c(function(o,n){n(!0)},"testConnection")};
"use strict";module.exports={connect:function(o,n){n()},disconnect:function(o,n){n()},testConnection:function(o,n){n(!0)}};
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/geopoint.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
"foreignField": [],
"properties": [],
"dependencies": [],
"minProperties": "",
"maxProperties": "",
"additionalProperties": false,
"enum": [],
"subTypes": [{ "name": "object", "snippet": "geopoint-object" }]
Expand Down

0 comments on commit 7c3cdca

Please sign in to comment.