taon-type-sql 21.0.21 → 21.0.22
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/browser/package.json +1 -1
- package/browser-prod/package.json +1 -1
- package/lib/build-info._auto-generated_.d.ts +1 -1
- package/lib/build-info._auto-generated_.js +1 -1
- package/lib/package.json +1 -1
- package/lib-prod/build-info._auto-generated_.ts +27 -0
- package/lib-prod/builder/column/basic-column.ts +17 -0
- package/lib-prod/builder/column/boolean-column.ts +19 -0
- package/lib-prod/builder/column/comparable-column.ts +56 -0
- package/lib-prod/builder/column/date-column.ts +19 -0
- package/lib-prod/builder/column/number-column.ts +25 -0
- package/lib-prod/builder/column/query-column.ts +34 -0
- package/lib-prod/builder/column/string-column.ts +47 -0
- package/lib-prod/builder/column/value-column.ts +39 -0
- package/lib-prod/builder/condition/{query-column-condition.d.ts → query-column-condition.ts} +20 -5
- package/lib-prod/builder/condition/query-condition-chain.ts +42 -0
- package/lib-prod/builder/condition/{query-condition.d.ts → query-condition.ts} +8 -2
- package/lib-prod/builder/condition/{query-join-condition.d.ts → query-join-condition.ts} +19 -4
- package/lib-prod/builder/helpers/generics-helper.ts +2 -0
- package/lib-prod/builder/helpers/{internal-types.d.ts → internal-types.ts} +25 -9
- package/lib-prod/builder/join/joined-tables-chain.ts +17 -0
- package/lib-prod/builder/join/joined-tables.ts +28 -0
- package/lib-prod/builder/other/{query-ordering.d.ts → query-ordering.ts} +20 -4
- package/lib-prod/builder/query/select-query.ts +68 -0
- package/lib-prod/builder/query/table-condition-query.ts +35 -0
- package/lib-prod/builder/query/table-query.ts +72 -0
- package/lib-prod/builder/{query-source.d.ts → query-source.ts} +19 -8
- package/lib-prod/builder/query-table.ts +34 -0
- package/lib-prod/client/mysql.ts +9 -0
- package/lib-prod/client/pg.ts +9 -0
- package/lib-prod/client/query-processor.ts +89 -0
- package/lib-prod/converter/{param-converter.js → param-converter.ts} +8 -16
- package/lib-prod/converter/parameterized-converter.ts +20 -0
- package/lib-prod/converter/{query-converter.js → query-converter.ts} +113 -101
- package/lib-prod/converter/result-converter.ts +88 -0
- package/lib-prod/converter/sql-converter.ts +7 -0
- package/lib-prod/converter/type-converter.ts +29 -0
- package/lib-prod/converter/{types.d.ts → types.ts} +4 -3
- package/lib-prod/env/env.angular-node-app.ts +66 -0
- package/lib-prod/env/env.docs-webapp.ts +66 -0
- package/lib-prod/env/env.electron-app.ts +66 -0
- package/lib-prod/env/env.mobile-app.ts +66 -0
- package/lib-prod/env/env.npm-lib-and-cli-tool.ts +66 -0
- package/lib-prod/env/env.vscode-plugin.ts +66 -0
- package/lib-prod/{index._auto-generated_.js → index._auto-generated_.ts} +0 -1
- package/lib-prod/{index.d.ts → index.ts} +15 -3
- package/lib-prod/lib-info.md +8 -0
- package/lib-prod/migrations/index.ts +2 -0
- package/lib-prod/migrations/migrations-info.md +6 -0
- package/lib-prod/migrations/{migrations_index._auto-generated_.js → migrations_index._auto-generated_.ts} +2 -1
- package/lib-prod/package.json +1 -1
- package/package.json +1 -1
- package/websql/package.json +1 -1
- package/websql-prod/package.json +1 -1
- package/lib-prod/build-info._auto-generated_.d.ts +0 -24
- package/lib-prod/build-info._auto-generated_.js +0 -30
- package/lib-prod/build-info._auto-generated_.js.map +0 -1
- package/lib-prod/builder/column/basic-column.d.ts +0 -8
- package/lib-prod/builder/column/basic-column.js +0 -15
- package/lib-prod/builder/column/basic-column.js.map +0 -1
- package/lib-prod/builder/column/boolean-column.d.ts +0 -9
- package/lib-prod/builder/column/boolean-column.js +0 -15
- package/lib-prod/builder/column/boolean-column.js.map +0 -1
- package/lib-prod/builder/column/comparable-column.d.ts +0 -18
- package/lib-prod/builder/column/comparable-column.js +0 -42
- package/lib-prod/builder/column/comparable-column.js.map +0 -1
- package/lib-prod/builder/column/date-column.d.ts +0 -9
- package/lib-prod/builder/column/date-column.js +0 -15
- package/lib-prod/builder/column/date-column.js.map +0 -1
- package/lib-prod/builder/column/number-column.d.ts +0 -10
- package/lib-prod/builder/column/number-column.js +0 -20
- package/lib-prod/builder/column/number-column.js.map +0 -1
- package/lib-prod/builder/column/query-column.d.ts +0 -18
- package/lib-prod/builder/column/query-column.js +0 -26
- package/lib-prod/builder/column/query-column.js.map +0 -1
- package/lib-prod/builder/column/string-column.d.ts +0 -17
- package/lib-prod/builder/column/string-column.js +0 -37
- package/lib-prod/builder/column/string-column.js.map +0 -1
- package/lib-prod/builder/column/value-column.d.ts +0 -15
- package/lib-prod/builder/column/value-column.js +0 -30
- package/lib-prod/builder/column/value-column.js.map +0 -1
- package/lib-prod/builder/condition/query-column-condition.js +0 -23
- package/lib-prod/builder/condition/query-column-condition.js.map +0 -1
- package/lib-prod/builder/condition/query-condition-chain.d.ts +0 -17
- package/lib-prod/builder/condition/query-condition-chain.js +0 -34
- package/lib-prod/builder/condition/query-condition-chain.js.map +0 -1
- package/lib-prod/builder/condition/query-condition.js +0 -7
- package/lib-prod/builder/condition/query-condition.js.map +0 -1
- package/lib-prod/builder/condition/query-join-condition.js +0 -23
- package/lib-prod/builder/condition/query-join-condition.js.map +0 -1
- package/lib-prod/builder/helpers/generics-helper.d.ts +0 -2
- package/lib-prod/builder/helpers/generics-helper.js +0 -7
- package/lib-prod/builder/helpers/generics-helper.js.map +0 -1
- package/lib-prod/builder/helpers/internal-types.js +0 -4
- package/lib-prod/builder/helpers/internal-types.js.map +0 -1
- package/lib-prod/builder/join/joined-tables-chain.d.ts +0 -11
- package/lib-prod/builder/join/joined-tables-chain.js +0 -18
- package/lib-prod/builder/join/joined-tables-chain.js.map +0 -1
- package/lib-prod/builder/join/joined-tables.d.ts +0 -12
- package/lib-prod/builder/join/joined-tables.js +0 -25
- package/lib-prod/builder/join/joined-tables.js.map +0 -1
- package/lib-prod/builder/other/query-ordering.js +0 -21
- package/lib-prod/builder/other/query-ordering.js.map +0 -1
- package/lib-prod/builder/query/select-query.d.ts +0 -29
- package/lib-prod/builder/query/select-query.js +0 -54
- package/lib-prod/builder/query/select-query.js.map +0 -1
- package/lib-prod/builder/query/table-condition-query.d.ts +0 -16
- package/lib-prod/builder/query/table-condition-query.js +0 -31
- package/lib-prod/builder/query/table-condition-query.js.map +0 -1
- package/lib-prod/builder/query/table-query.d.ts +0 -23
- package/lib-prod/builder/query/table-query.js +0 -60
- package/lib-prod/builder/query/table-query.js.map +0 -1
- package/lib-prod/builder/query-source.js +0 -22
- package/lib-prod/builder/query-source.js.map +0 -1
- package/lib-prod/builder/query-table.d.ts +0 -15
- package/lib-prod/builder/query-table.js +0 -28
- package/lib-prod/builder/query-table.js.map +0 -1
- package/lib-prod/client/mysql.d.ts +0 -5
- package/lib-prod/client/mysql.js +0 -11
- package/lib-prod/client/mysql.js.map +0 -1
- package/lib-prod/client/pg.d.ts +0 -5
- package/lib-prod/client/pg.js +0 -11
- package/lib-prod/client/pg.js.map +0 -1
- package/lib-prod/client/query-processor.d.ts +0 -10
- package/lib-prod/client/query-processor.js +0 -73
- package/lib-prod/client/query-processor.js.map +0 -1
- package/lib-prod/converter/param-converter.d.ts +0 -2
- package/lib-prod/converter/param-converter.js.map +0 -1
- package/lib-prod/converter/parameterized-converter.d.ts +0 -5
- package/lib-prod/converter/parameterized-converter.js +0 -18
- package/lib-prod/converter/parameterized-converter.js.map +0 -1
- package/lib-prod/converter/query-converter.d.ts +0 -2
- package/lib-prod/converter/query-converter.js.map +0 -1
- package/lib-prod/converter/result-converter.d.ts +0 -2
- package/lib-prod/converter/result-converter.js +0 -89
- package/lib-prod/converter/result-converter.js.map +0 -1
- package/lib-prod/converter/sql-converter.d.ts +0 -2
- package/lib-prod/converter/sql-converter.js +0 -9
- package/lib-prod/converter/sql-converter.js.map +0 -1
- package/lib-prod/converter/type-converter.d.ts +0 -4
- package/lib-prod/converter/type-converter.js +0 -43
- package/lib-prod/converter/type-converter.js.map +0 -1
- package/lib-prod/converter/types.js +0 -3
- package/lib-prod/converter/types.js.map +0 -1
- package/lib-prod/env/env.angular-node-app.d.ts +0 -64
- package/lib-prod/env/env.angular-node-app.js +0 -71
- package/lib-prod/env/env.angular-node-app.js.map +0 -1
- package/lib-prod/env/env.docs-webapp.d.ts +0 -64
- package/lib-prod/env/env.docs-webapp.js +0 -71
- package/lib-prod/env/env.docs-webapp.js.map +0 -1
- package/lib-prod/env/env.electron-app.d.ts +0 -64
- package/lib-prod/env/env.electron-app.js +0 -71
- package/lib-prod/env/env.electron-app.js.map +0 -1
- package/lib-prod/env/env.mobile-app.d.ts +0 -64
- package/lib-prod/env/env.mobile-app.js +0 -71
- package/lib-prod/env/env.mobile-app.js.map +0 -1
- package/lib-prod/env/env.npm-lib-and-cli-tool.d.ts +0 -64
- package/lib-prod/env/env.npm-lib-and-cli-tool.js +0 -71
- package/lib-prod/env/env.npm-lib-and-cli-tool.js.map +0 -1
- package/lib-prod/env/env.vscode-plugin.d.ts +0 -64
- package/lib-prod/env/env.vscode-plugin.js +0 -71
- package/lib-prod/env/env.vscode-plugin.js.map +0 -1
- package/lib-prod/env/index.js +0 -23
- package/lib-prod/env/index.js.map +0 -1
- package/lib-prod/index._auto-generated_.d.ts +0 -0
- package/lib-prod/index._auto-generated_.js.map +0 -1
- package/lib-prod/index.js +0 -48
- package/lib-prod/index.js.map +0 -1
- package/lib-prod/migrations/index.d.ts +0 -1
- package/lib-prod/migrations/index.js +0 -19
- package/lib-prod/migrations/index.js.map +0 -1
- package/lib-prod/migrations/migrations_index._auto-generated_.d.ts +0 -0
- package/lib-prod/migrations/migrations_index._auto-generated_.js.map +0 -1
- /package/lib-prod/env/{index.d.ts → index.ts} +0 -0
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
// THIS FILE IS GENERATED - DO NOT MODIFY
|
|
2
|
+
export const ENV_ELECTRON_APP_WEBSITE_DOMAIN = 'taon-type-sql.example.domain.com';
|
|
3
|
+
export const ENV_ELECTRON_APP_WEBSITE_TITLE = 'Taon Type Sql';
|
|
4
|
+
export const ENV_ELECTRON_APP_RELEASE_TARGET_ARTIFACT = 'electron-app';
|
|
5
|
+
export const ENV_ELECTRON_APP_RELEASE_ENV_NAME = '__';
|
|
6
|
+
export const ENV_ELECTRON_APP_CONTAINER_ONLY = undefined;
|
|
7
|
+
export const ENV_ELECTRON_APP_CONTAINER_END = undefined;
|
|
8
|
+
export const ENV_ELECTRON_APP_CONTAINER_START = undefined;
|
|
9
|
+
export const ENV_ELECTRON_APP_CONTAINER_SKIP_RELEASED = undefined;
|
|
10
|
+
export const ENV_ELECTRON_APP_CONTAINER_SKIP = undefined;
|
|
11
|
+
export const ENV_ELECTRON_APP_INIT_BRANDING = undefined;
|
|
12
|
+
export const ENV_ELECTRON_APP_INIT_STRUCT = undefined;
|
|
13
|
+
export const ENV_ELECTRON_APP_BUILD_PWA_DISABLE_SERVICE_WORKER = undefined;
|
|
14
|
+
export const ENV_ELECTRON_APP_BUILD_PWA_NAME = undefined;
|
|
15
|
+
export const ENV_ELECTRON_APP_BUILD_PWA_SHORT_NAME = undefined;
|
|
16
|
+
export const ENV_ELECTRON_APP_BUILD_PWA_START_URL = undefined;
|
|
17
|
+
export const ENV_ELECTRON_APP_BUILD_ELECTRON_SHOW_DEV_TOOLS = undefined;
|
|
18
|
+
export const ENV_ELECTRON_APP_BUILD_SSR = undefined;
|
|
19
|
+
export const ENV_ELECTRON_APP_BUILD_WEBSQL = undefined;
|
|
20
|
+
export const ENV_ELECTRON_APP_BUILD_PROD = undefined;
|
|
21
|
+
export const ENV_ELECTRON_APP_BUILD_OVERRIDE_OUTPUT_PATH = undefined;
|
|
22
|
+
export const ENV_ELECTRON_APP_BUILD_BASE_HREF = undefined;
|
|
23
|
+
export const ENV_ELECTRON_APP_BUILD_WATCH = undefined;
|
|
24
|
+
export const ENV_ELECTRON_APP_BUILD_GEN_ONLY_CLIENT_CODE = undefined;
|
|
25
|
+
export const ENV_ELECTRON_APP_LOADING_PRE_ANGULAR_BOOTSTRAP_LOADER = undefined;
|
|
26
|
+
export const ENV_ELECTRON_APP_LOADING_PRE_ANGULAR_BOOTSTRAP_BACKGROUND = undefined;
|
|
27
|
+
export const ENV_ELECTRON_APP_RELEASE_CLI_MINIFY = undefined;
|
|
28
|
+
export const ENV_ELECTRON_APP_RELEASE_CLI_INCLUDE_NODE_MODULES = undefined;
|
|
29
|
+
export const ENV_ELECTRON_APP_RELEASE_CLI_UGLIFY = undefined;
|
|
30
|
+
export const ENV_ELECTRON_APP_RELEASE_CLI_OBSCURE = undefined;
|
|
31
|
+
export const ENV_ELECTRON_APP_RELEASE_CLI_COMPRESS = undefined;
|
|
32
|
+
export const ENV_ELECTRON_APP_RELEASE_NODE_BACKEND_APP_MINIFY = undefined;
|
|
33
|
+
export const ENV_ELECTRON_APP_RELEASE_LIB_REMOVE_DTS = undefined;
|
|
34
|
+
export const ENV_ELECTRON_APP_RELEASE_LIB_OBSCURE_FILE_BY_FILE = undefined;
|
|
35
|
+
export const ENV_ELECTRON_APP_RELEASE_LIB_UGLIFY_FILE_BY_FILE = undefined;
|
|
36
|
+
export const ENV_ELECTRON_APP_RELEASE_LIB_INCLUDE_SOURCE_MAPS = undefined;
|
|
37
|
+
export const ENV_ELECTRON_APP_RELEASE_LIB_COMPRESS = undefined;
|
|
38
|
+
export const ENV_ELECTRON_APP_RELEASE_LIB_DO_NOT_INCLUDE_LIB_FILES = undefined;
|
|
39
|
+
export const ENV_ELECTRON_APP_RELEASE_RESOLVED_NEW_VERSION = undefined;
|
|
40
|
+
export const ENV_ELECTRON_APP_RELEASE_RELEASE_VERSION_BUMP_TYPE = undefined;
|
|
41
|
+
export const ENV_ELECTRON_APP_RELEASE_ENV_NUMBER = undefined;
|
|
42
|
+
export const ENV_ELECTRON_APP_RELEASE_INSTALL_LOCALLY = undefined;
|
|
43
|
+
export const ENV_ELECTRON_APP_RELEASE_REMOVE_RELEASE_OUTPUT_AFTER_LOCAL_INSTALL = undefined;
|
|
44
|
+
export const ENV_ELECTRON_APP_RELEASE_RELEASE_TYPE = undefined;
|
|
45
|
+
export const ENV_ELECTRON_APP_RELEASE_AUTO_RELEASE_USING_CONFIG = undefined;
|
|
46
|
+
export const ENV_ELECTRON_APP_RELEASE_AUTO_RELEASE_TASK_NAME = undefined;
|
|
47
|
+
export const ENV_ELECTRON_APP_RELEASE_TAON_INSTANCE_IP = undefined;
|
|
48
|
+
export const ENV_ELECTRON_APP_RELEASE_SKIP_NPM_PUBLISH = undefined;
|
|
49
|
+
export const ENV_ELECTRON_APP_RELEASE_SKIP_DEPLOY = undefined;
|
|
50
|
+
export const ENV_ELECTRON_APP_RELEASE_SKIP_TAG_GIT_PUSH = undefined;
|
|
51
|
+
export const ENV_ELECTRON_APP_RELEASE_SKIP_RELEASE_QUESTION = undefined;
|
|
52
|
+
export const ENV_ELECTRON_APP_RELEASE_SKIP_RESOLVING_GIT_CHANGES = undefined;
|
|
53
|
+
export const ENV_ELECTRON_APP_RELEASE_SKIP_CODE_CUTTING = undefined;
|
|
54
|
+
export const ENV_ELECTRON_APP_RELEASE_SKIP_BUILDING_ARTIFACTS = undefined;
|
|
55
|
+
export const ENV_ELECTRON_APP_COPY_TO_MANAGER_BEFORE_COPY_HOOK = undefined;
|
|
56
|
+
export const ENV_ELECTRON_APP_COPY_TO_MANAGER_COPY_TO_LOCATIONS = undefined;
|
|
57
|
+
export const ENV_ELECTRON_APP_COPY_TO_MANAGER_COPY_TO_PROJECTS = undefined;
|
|
58
|
+
export const ENV_ELECTRON_APP_COPY_TO_MANAGER_SKIP = undefined;
|
|
59
|
+
export const ENV_ELECTRON_APP_WEBSITE_USE_DOMAIN = undefined;
|
|
60
|
+
export const ENV_ELECTRON_APP_PURPOSE = undefined;
|
|
61
|
+
export const ENV_ELECTRON_APP_RECURSIVE_ACTION = undefined;
|
|
62
|
+
export const ENV_ELECTRON_APP_IS_CI_PROCESS = undefined;
|
|
63
|
+
export const ENV_ELECTRON_APP_DOCKER_ADDITIONAL_CONTAINER = undefined;
|
|
64
|
+
export const ENV_ELECTRON_APP_DOCKER_SKIP_START_IN_ORDER = undefined;
|
|
65
|
+
export const ENV_ELECTRON_APP_DOCKER_SKIP_USING_MYSQL_DB = undefined;
|
|
66
|
+
// THIS FILE IS GENERATED - DO NOT MODIFY
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
// THIS FILE IS GENERATED - DO NOT MODIFY
|
|
2
|
+
export const ENV_MOBILE_APP_WEBSITE_DOMAIN = 'taon-type-sql.example.domain.com';
|
|
3
|
+
export const ENV_MOBILE_APP_WEBSITE_TITLE = 'Taon Type Sql';
|
|
4
|
+
export const ENV_MOBILE_APP_RELEASE_TARGET_ARTIFACT = 'mobile-app';
|
|
5
|
+
export const ENV_MOBILE_APP_RELEASE_ENV_NAME = '__';
|
|
6
|
+
export const ENV_MOBILE_APP_CONTAINER_ONLY = undefined;
|
|
7
|
+
export const ENV_MOBILE_APP_CONTAINER_END = undefined;
|
|
8
|
+
export const ENV_MOBILE_APP_CONTAINER_START = undefined;
|
|
9
|
+
export const ENV_MOBILE_APP_CONTAINER_SKIP_RELEASED = undefined;
|
|
10
|
+
export const ENV_MOBILE_APP_CONTAINER_SKIP = undefined;
|
|
11
|
+
export const ENV_MOBILE_APP_INIT_BRANDING = undefined;
|
|
12
|
+
export const ENV_MOBILE_APP_INIT_STRUCT = undefined;
|
|
13
|
+
export const ENV_MOBILE_APP_BUILD_PWA_DISABLE_SERVICE_WORKER = undefined;
|
|
14
|
+
export const ENV_MOBILE_APP_BUILD_PWA_NAME = undefined;
|
|
15
|
+
export const ENV_MOBILE_APP_BUILD_PWA_SHORT_NAME = undefined;
|
|
16
|
+
export const ENV_MOBILE_APP_BUILD_PWA_START_URL = undefined;
|
|
17
|
+
export const ENV_MOBILE_APP_BUILD_ELECTRON_SHOW_DEV_TOOLS = undefined;
|
|
18
|
+
export const ENV_MOBILE_APP_BUILD_SSR = undefined;
|
|
19
|
+
export const ENV_MOBILE_APP_BUILD_WEBSQL = undefined;
|
|
20
|
+
export const ENV_MOBILE_APP_BUILD_PROD = undefined;
|
|
21
|
+
export const ENV_MOBILE_APP_BUILD_OVERRIDE_OUTPUT_PATH = undefined;
|
|
22
|
+
export const ENV_MOBILE_APP_BUILD_BASE_HREF = undefined;
|
|
23
|
+
export const ENV_MOBILE_APP_BUILD_WATCH = undefined;
|
|
24
|
+
export const ENV_MOBILE_APP_BUILD_GEN_ONLY_CLIENT_CODE = undefined;
|
|
25
|
+
export const ENV_MOBILE_APP_LOADING_PRE_ANGULAR_BOOTSTRAP_LOADER = undefined;
|
|
26
|
+
export const ENV_MOBILE_APP_LOADING_PRE_ANGULAR_BOOTSTRAP_BACKGROUND = undefined;
|
|
27
|
+
export const ENV_MOBILE_APP_RELEASE_CLI_MINIFY = undefined;
|
|
28
|
+
export const ENV_MOBILE_APP_RELEASE_CLI_INCLUDE_NODE_MODULES = undefined;
|
|
29
|
+
export const ENV_MOBILE_APP_RELEASE_CLI_UGLIFY = undefined;
|
|
30
|
+
export const ENV_MOBILE_APP_RELEASE_CLI_OBSCURE = undefined;
|
|
31
|
+
export const ENV_MOBILE_APP_RELEASE_CLI_COMPRESS = undefined;
|
|
32
|
+
export const ENV_MOBILE_APP_RELEASE_NODE_BACKEND_APP_MINIFY = undefined;
|
|
33
|
+
export const ENV_MOBILE_APP_RELEASE_LIB_REMOVE_DTS = undefined;
|
|
34
|
+
export const ENV_MOBILE_APP_RELEASE_LIB_OBSCURE_FILE_BY_FILE = undefined;
|
|
35
|
+
export const ENV_MOBILE_APP_RELEASE_LIB_UGLIFY_FILE_BY_FILE = undefined;
|
|
36
|
+
export const ENV_MOBILE_APP_RELEASE_LIB_INCLUDE_SOURCE_MAPS = undefined;
|
|
37
|
+
export const ENV_MOBILE_APP_RELEASE_LIB_COMPRESS = undefined;
|
|
38
|
+
export const ENV_MOBILE_APP_RELEASE_LIB_DO_NOT_INCLUDE_LIB_FILES = undefined;
|
|
39
|
+
export const ENV_MOBILE_APP_RELEASE_RESOLVED_NEW_VERSION = undefined;
|
|
40
|
+
export const ENV_MOBILE_APP_RELEASE_RELEASE_VERSION_BUMP_TYPE = undefined;
|
|
41
|
+
export const ENV_MOBILE_APP_RELEASE_ENV_NUMBER = undefined;
|
|
42
|
+
export const ENV_MOBILE_APP_RELEASE_INSTALL_LOCALLY = undefined;
|
|
43
|
+
export const ENV_MOBILE_APP_RELEASE_REMOVE_RELEASE_OUTPUT_AFTER_LOCAL_INSTALL = undefined;
|
|
44
|
+
export const ENV_MOBILE_APP_RELEASE_RELEASE_TYPE = undefined;
|
|
45
|
+
export const ENV_MOBILE_APP_RELEASE_AUTO_RELEASE_USING_CONFIG = undefined;
|
|
46
|
+
export const ENV_MOBILE_APP_RELEASE_AUTO_RELEASE_TASK_NAME = undefined;
|
|
47
|
+
export const ENV_MOBILE_APP_RELEASE_TAON_INSTANCE_IP = undefined;
|
|
48
|
+
export const ENV_MOBILE_APP_RELEASE_SKIP_NPM_PUBLISH = undefined;
|
|
49
|
+
export const ENV_MOBILE_APP_RELEASE_SKIP_DEPLOY = undefined;
|
|
50
|
+
export const ENV_MOBILE_APP_RELEASE_SKIP_TAG_GIT_PUSH = undefined;
|
|
51
|
+
export const ENV_MOBILE_APP_RELEASE_SKIP_RELEASE_QUESTION = undefined;
|
|
52
|
+
export const ENV_MOBILE_APP_RELEASE_SKIP_RESOLVING_GIT_CHANGES = undefined;
|
|
53
|
+
export const ENV_MOBILE_APP_RELEASE_SKIP_CODE_CUTTING = undefined;
|
|
54
|
+
export const ENV_MOBILE_APP_RELEASE_SKIP_BUILDING_ARTIFACTS = undefined;
|
|
55
|
+
export const ENV_MOBILE_APP_COPY_TO_MANAGER_BEFORE_COPY_HOOK = undefined;
|
|
56
|
+
export const ENV_MOBILE_APP_COPY_TO_MANAGER_COPY_TO_LOCATIONS = undefined;
|
|
57
|
+
export const ENV_MOBILE_APP_COPY_TO_MANAGER_COPY_TO_PROJECTS = undefined;
|
|
58
|
+
export const ENV_MOBILE_APP_COPY_TO_MANAGER_SKIP = undefined;
|
|
59
|
+
export const ENV_MOBILE_APP_WEBSITE_USE_DOMAIN = undefined;
|
|
60
|
+
export const ENV_MOBILE_APP_PURPOSE = undefined;
|
|
61
|
+
export const ENV_MOBILE_APP_RECURSIVE_ACTION = undefined;
|
|
62
|
+
export const ENV_MOBILE_APP_IS_CI_PROCESS = undefined;
|
|
63
|
+
export const ENV_MOBILE_APP_DOCKER_ADDITIONAL_CONTAINER = undefined;
|
|
64
|
+
export const ENV_MOBILE_APP_DOCKER_SKIP_START_IN_ORDER = undefined;
|
|
65
|
+
export const ENV_MOBILE_APP_DOCKER_SKIP_USING_MYSQL_DB = undefined;
|
|
66
|
+
// THIS FILE IS GENERATED - DO NOT MODIFY
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
// THIS FILE IS GENERATED - DO NOT MODIFY
|
|
2
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_WEBSITE_DOMAIN = 'taon-type-sql.example.domain.com';
|
|
3
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_WEBSITE_TITLE = 'Taon Type Sql';
|
|
4
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_TARGET_ARTIFACT = 'npm-lib-and-cli-tool';
|
|
5
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_ENV_NAME = '__';
|
|
6
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_CONTAINER_ONLY = undefined;
|
|
7
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_CONTAINER_END = undefined;
|
|
8
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_CONTAINER_START = undefined;
|
|
9
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_CONTAINER_SKIP_RELEASED = undefined;
|
|
10
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_CONTAINER_SKIP = undefined;
|
|
11
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_INIT_BRANDING = undefined;
|
|
12
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_INIT_STRUCT = undefined;
|
|
13
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_BUILD_PWA_DISABLE_SERVICE_WORKER = undefined;
|
|
14
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_BUILD_PWA_NAME = undefined;
|
|
15
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_BUILD_PWA_SHORT_NAME = undefined;
|
|
16
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_BUILD_PWA_START_URL = undefined;
|
|
17
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_BUILD_ELECTRON_SHOW_DEV_TOOLS = undefined;
|
|
18
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_BUILD_SSR = undefined;
|
|
19
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_BUILD_WEBSQL = undefined;
|
|
20
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_BUILD_PROD = undefined;
|
|
21
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_BUILD_OVERRIDE_OUTPUT_PATH = undefined;
|
|
22
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_BUILD_BASE_HREF = undefined;
|
|
23
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_BUILD_WATCH = undefined;
|
|
24
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_BUILD_GEN_ONLY_CLIENT_CODE = undefined;
|
|
25
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_LOADING_PRE_ANGULAR_BOOTSTRAP_LOADER = undefined;
|
|
26
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_LOADING_PRE_ANGULAR_BOOTSTRAP_BACKGROUND = undefined;
|
|
27
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_CLI_MINIFY = undefined;
|
|
28
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_CLI_INCLUDE_NODE_MODULES = undefined;
|
|
29
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_CLI_UGLIFY = undefined;
|
|
30
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_CLI_OBSCURE = undefined;
|
|
31
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_CLI_COMPRESS = undefined;
|
|
32
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_NODE_BACKEND_APP_MINIFY = undefined;
|
|
33
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_LIB_REMOVE_DTS = undefined;
|
|
34
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_LIB_OBSCURE_FILE_BY_FILE = undefined;
|
|
35
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_LIB_UGLIFY_FILE_BY_FILE = undefined;
|
|
36
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_LIB_INCLUDE_SOURCE_MAPS = undefined;
|
|
37
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_LIB_COMPRESS = undefined;
|
|
38
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_LIB_DO_NOT_INCLUDE_LIB_FILES = undefined;
|
|
39
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_RESOLVED_NEW_VERSION = undefined;
|
|
40
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_RELEASE_VERSION_BUMP_TYPE = undefined;
|
|
41
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_ENV_NUMBER = undefined;
|
|
42
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_INSTALL_LOCALLY = undefined;
|
|
43
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_REMOVE_RELEASE_OUTPUT_AFTER_LOCAL_INSTALL = undefined;
|
|
44
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_RELEASE_TYPE = undefined;
|
|
45
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_AUTO_RELEASE_USING_CONFIG = undefined;
|
|
46
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_AUTO_RELEASE_TASK_NAME = undefined;
|
|
47
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_TAON_INSTANCE_IP = undefined;
|
|
48
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_SKIP_NPM_PUBLISH = undefined;
|
|
49
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_SKIP_DEPLOY = undefined;
|
|
50
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_SKIP_TAG_GIT_PUSH = undefined;
|
|
51
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_SKIP_RELEASE_QUESTION = undefined;
|
|
52
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_SKIP_RESOLVING_GIT_CHANGES = undefined;
|
|
53
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_SKIP_CODE_CUTTING = undefined;
|
|
54
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RELEASE_SKIP_BUILDING_ARTIFACTS = undefined;
|
|
55
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_COPY_TO_MANAGER_BEFORE_COPY_HOOK = undefined;
|
|
56
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_COPY_TO_MANAGER_COPY_TO_LOCATIONS = undefined;
|
|
57
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_COPY_TO_MANAGER_COPY_TO_PROJECTS = undefined;
|
|
58
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_COPY_TO_MANAGER_SKIP = undefined;
|
|
59
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_WEBSITE_USE_DOMAIN = undefined;
|
|
60
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_PURPOSE = undefined;
|
|
61
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_RECURSIVE_ACTION = undefined;
|
|
62
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_IS_CI_PROCESS = undefined;
|
|
63
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_DOCKER_ADDITIONAL_CONTAINER = undefined;
|
|
64
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_DOCKER_SKIP_START_IN_ORDER = undefined;
|
|
65
|
+
export const ENV_NPM_LIB_AND_CLI_TOOL_DOCKER_SKIP_USING_MYSQL_DB = undefined;
|
|
66
|
+
// THIS FILE IS GENERATED - DO NOT MODIFY
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
// THIS FILE IS GENERATED - DO NOT MODIFY
|
|
2
|
+
export const ENV_VSCODE_PLUGIN_WEBSITE_DOMAIN = 'taon-type-sql.example.domain.com';
|
|
3
|
+
export const ENV_VSCODE_PLUGIN_WEBSITE_TITLE = 'Taon Type Sql';
|
|
4
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_TARGET_ARTIFACT = 'vscode-plugin';
|
|
5
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_ENV_NAME = '__';
|
|
6
|
+
export const ENV_VSCODE_PLUGIN_CONTAINER_ONLY = undefined;
|
|
7
|
+
export const ENV_VSCODE_PLUGIN_CONTAINER_END = undefined;
|
|
8
|
+
export const ENV_VSCODE_PLUGIN_CONTAINER_START = undefined;
|
|
9
|
+
export const ENV_VSCODE_PLUGIN_CONTAINER_SKIP_RELEASED = undefined;
|
|
10
|
+
export const ENV_VSCODE_PLUGIN_CONTAINER_SKIP = undefined;
|
|
11
|
+
export const ENV_VSCODE_PLUGIN_INIT_BRANDING = undefined;
|
|
12
|
+
export const ENV_VSCODE_PLUGIN_INIT_STRUCT = undefined;
|
|
13
|
+
export const ENV_VSCODE_PLUGIN_BUILD_PWA_DISABLE_SERVICE_WORKER = undefined;
|
|
14
|
+
export const ENV_VSCODE_PLUGIN_BUILD_PWA_NAME = undefined;
|
|
15
|
+
export const ENV_VSCODE_PLUGIN_BUILD_PWA_SHORT_NAME = undefined;
|
|
16
|
+
export const ENV_VSCODE_PLUGIN_BUILD_PWA_START_URL = undefined;
|
|
17
|
+
export const ENV_VSCODE_PLUGIN_BUILD_ELECTRON_SHOW_DEV_TOOLS = undefined;
|
|
18
|
+
export const ENV_VSCODE_PLUGIN_BUILD_SSR = undefined;
|
|
19
|
+
export const ENV_VSCODE_PLUGIN_BUILD_WEBSQL = undefined;
|
|
20
|
+
export const ENV_VSCODE_PLUGIN_BUILD_PROD = undefined;
|
|
21
|
+
export const ENV_VSCODE_PLUGIN_BUILD_OVERRIDE_OUTPUT_PATH = undefined;
|
|
22
|
+
export const ENV_VSCODE_PLUGIN_BUILD_BASE_HREF = undefined;
|
|
23
|
+
export const ENV_VSCODE_PLUGIN_BUILD_WATCH = undefined;
|
|
24
|
+
export const ENV_VSCODE_PLUGIN_BUILD_GEN_ONLY_CLIENT_CODE = undefined;
|
|
25
|
+
export const ENV_VSCODE_PLUGIN_LOADING_PRE_ANGULAR_BOOTSTRAP_LOADER = undefined;
|
|
26
|
+
export const ENV_VSCODE_PLUGIN_LOADING_PRE_ANGULAR_BOOTSTRAP_BACKGROUND = undefined;
|
|
27
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_CLI_MINIFY = undefined;
|
|
28
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_CLI_INCLUDE_NODE_MODULES = undefined;
|
|
29
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_CLI_UGLIFY = undefined;
|
|
30
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_CLI_OBSCURE = undefined;
|
|
31
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_CLI_COMPRESS = undefined;
|
|
32
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_NODE_BACKEND_APP_MINIFY = undefined;
|
|
33
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_LIB_REMOVE_DTS = undefined;
|
|
34
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_LIB_OBSCURE_FILE_BY_FILE = undefined;
|
|
35
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_LIB_UGLIFY_FILE_BY_FILE = undefined;
|
|
36
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_LIB_INCLUDE_SOURCE_MAPS = undefined;
|
|
37
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_LIB_COMPRESS = undefined;
|
|
38
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_LIB_DO_NOT_INCLUDE_LIB_FILES = undefined;
|
|
39
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_RESOLVED_NEW_VERSION = undefined;
|
|
40
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_RELEASE_VERSION_BUMP_TYPE = undefined;
|
|
41
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_ENV_NUMBER = undefined;
|
|
42
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_INSTALL_LOCALLY = undefined;
|
|
43
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_REMOVE_RELEASE_OUTPUT_AFTER_LOCAL_INSTALL = undefined;
|
|
44
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_RELEASE_TYPE = undefined;
|
|
45
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_AUTO_RELEASE_USING_CONFIG = undefined;
|
|
46
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_AUTO_RELEASE_TASK_NAME = undefined;
|
|
47
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_TAON_INSTANCE_IP = undefined;
|
|
48
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_SKIP_NPM_PUBLISH = undefined;
|
|
49
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_SKIP_DEPLOY = undefined;
|
|
50
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_SKIP_TAG_GIT_PUSH = undefined;
|
|
51
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_SKIP_RELEASE_QUESTION = undefined;
|
|
52
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_SKIP_RESOLVING_GIT_CHANGES = undefined;
|
|
53
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_SKIP_CODE_CUTTING = undefined;
|
|
54
|
+
export const ENV_VSCODE_PLUGIN_RELEASE_SKIP_BUILDING_ARTIFACTS = undefined;
|
|
55
|
+
export const ENV_VSCODE_PLUGIN_COPY_TO_MANAGER_BEFORE_COPY_HOOK = undefined;
|
|
56
|
+
export const ENV_VSCODE_PLUGIN_COPY_TO_MANAGER_COPY_TO_LOCATIONS = undefined;
|
|
57
|
+
export const ENV_VSCODE_PLUGIN_COPY_TO_MANAGER_COPY_TO_PROJECTS = undefined;
|
|
58
|
+
export const ENV_VSCODE_PLUGIN_COPY_TO_MANAGER_SKIP = undefined;
|
|
59
|
+
export const ENV_VSCODE_PLUGIN_WEBSITE_USE_DOMAIN = undefined;
|
|
60
|
+
export const ENV_VSCODE_PLUGIN_PURPOSE = undefined;
|
|
61
|
+
export const ENV_VSCODE_PLUGIN_RECURSIVE_ACTION = undefined;
|
|
62
|
+
export const ENV_VSCODE_PLUGIN_IS_CI_PROCESS = undefined;
|
|
63
|
+
export const ENV_VSCODE_PLUGIN_DOCKER_ADDITIONAL_CONTAINER = undefined;
|
|
64
|
+
export const ENV_VSCODE_PLUGIN_DOCKER_SKIP_START_IN_ORDER = undefined;
|
|
65
|
+
export const ENV_VSCODE_PLUGIN_DOCKER_SKIP_USING_MYSQL_DB = undefined;
|
|
66
|
+
// THIS FILE IS GENERATED - DO NOT MODIFY
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
// Builder:
|
|
2
|
+
|
|
1
3
|
export { default as BasicColumn } from './builder/column/basic-column';
|
|
2
4
|
export { default as BooleanColumn } from './builder/column/boolean-column';
|
|
3
5
|
export { default as ComparableColumn } from './builder/column/comparable-column';
|
|
@@ -6,20 +8,30 @@ export { default as NumberColumn } from './builder/column/number-column';
|
|
|
6
8
|
export { default as QueryColumn } from './builder/column/query-column';
|
|
7
9
|
export { default as StringColumn } from './builder/column/string-column';
|
|
8
10
|
export { default as ValueColumn } from './builder/column/value-column';
|
|
11
|
+
|
|
9
12
|
export { default as QueryColumnCondition } from './builder/condition/query-column-condition';
|
|
10
13
|
export { default as QueryCondition } from './builder/condition/query-condition';
|
|
11
14
|
export { default as QueryConditionChain } from './builder/condition/query-condition-chain';
|
|
12
15
|
export { default as QueryJoinCondition } from './builder/condition/query-join-condition';
|
|
16
|
+
|
|
13
17
|
export { default as JoinedTables } from './builder/join/joined-tables';
|
|
14
18
|
export { default as JoinedTablesChain } from './builder/join/joined-tables-chain';
|
|
19
|
+
|
|
15
20
|
export { default as QueryOrdering } from './builder/other/query-ordering';
|
|
21
|
+
|
|
16
22
|
export { default as SelectQuery } from './builder/query/select-query';
|
|
17
23
|
export { default as TableQuery } from './builder/query/table-query';
|
|
18
24
|
export { default as TableConditionQuery } from './builder/query/table-condition-query';
|
|
25
|
+
|
|
19
26
|
export { default as QuerySource } from './builder/query-source';
|
|
20
27
|
export { default as QueryTable } from './builder/query-table';
|
|
28
|
+
|
|
29
|
+
// Client:
|
|
30
|
+
|
|
21
31
|
export { default as MySqlQuerySource } from './client/mysql';
|
|
32
|
+
// export { default as PgQuerySource } from './client/pg';
|
|
33
|
+
|
|
22
34
|
export { QueryProcessorOptions } from './client/query-processor';
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
}
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
export type PropsEntitySQL<IEntityType> = { [prop in keyof Required<IEntityType>]: any; }
|
package/lib-prod/package.json
CHANGED
package/package.json
CHANGED
package/websql/package.json
CHANGED
package/websql-prod/package.json
CHANGED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Autogenerated by current cli tool
|
|
3
|
-
*/
|
|
4
|
-
export declare const BUILD_FRAMEWORK_CLI_NAME = "tnp";
|
|
5
|
-
/**
|
|
6
|
-
* This value can be change in taon.jsonc (appId)
|
|
7
|
-
*/
|
|
8
|
-
export declare const APP_ID = "com.domain.example.taon-type-sql";
|
|
9
|
-
/**
|
|
10
|
-
* Autogenerated by current cli tool
|
|
11
|
-
*/
|
|
12
|
-
export declare const BUILD_BASE_HREF = "";
|
|
13
|
-
/**
|
|
14
|
-
* This value can be change in taon.jsonc (overrideNpmName)
|
|
15
|
-
*/
|
|
16
|
-
export declare const PROJECT_NPM_NAME = "taon-type-sql";
|
|
17
|
-
/**
|
|
18
|
-
* Taon version from you project taon.json
|
|
19
|
-
*/
|
|
20
|
-
export declare const CURRENT_PACKAGE_TAON_VERSION = "v21";
|
|
21
|
-
/**
|
|
22
|
-
* Autogenerated by current cli tool. Use *tnp release* to bump version.
|
|
23
|
-
*/
|
|
24
|
-
export declare const CURRENT_PACKAGE_VERSION = "21.0.21";
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CURRENT_PACKAGE_VERSION = exports.CURRENT_PACKAGE_TAON_VERSION = exports.PROJECT_NPM_NAME = exports.BUILD_BASE_HREF = exports.APP_ID = exports.BUILD_FRAMEWORK_CLI_NAME = void 0;
|
|
4
|
-
// THIS FILE IS GENERATED - DO NOT MODIFY
|
|
5
|
-
/**
|
|
6
|
-
* Autogenerated by current cli tool
|
|
7
|
-
*/
|
|
8
|
-
exports.BUILD_FRAMEWORK_CLI_NAME = 'tnp';
|
|
9
|
-
/**
|
|
10
|
-
* This value can be change in taon.jsonc (appId)
|
|
11
|
-
*/
|
|
12
|
-
exports.APP_ID = 'com.domain.example.taon-type-sql';
|
|
13
|
-
/**
|
|
14
|
-
* Autogenerated by current cli tool
|
|
15
|
-
*/
|
|
16
|
-
exports.BUILD_BASE_HREF = '';
|
|
17
|
-
/**
|
|
18
|
-
* This value can be change in taon.jsonc (overrideNpmName)
|
|
19
|
-
*/
|
|
20
|
-
exports.PROJECT_NPM_NAME = 'taon-type-sql';
|
|
21
|
-
/**
|
|
22
|
-
* Taon version from you project taon.json
|
|
23
|
-
*/
|
|
24
|
-
exports.CURRENT_PACKAGE_TAON_VERSION = 'v21';
|
|
25
|
-
/**
|
|
26
|
-
* Autogenerated by current cli tool. Use *tnp release* to bump version.
|
|
27
|
-
*/
|
|
28
|
-
exports.CURRENT_PACKAGE_VERSION = '21.0.21';
|
|
29
|
-
// THIS FILE IS GENERATED - DO NOT MODIFY
|
|
30
|
-
//# sourceMappingURL=build-info._auto-generated_.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"build-info._auto-generated_.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;;AAAA,yCAAyC;AACzC;;GAEG;AACU,QAAA,wBAAwB,GAAG,KAAK,CAAC;AAC9C;;GAEG;AACU,QAAA,MAAM,GAAG,kCAAkC,CAAC;AACzD;;GAEG;AACU,QAAA,eAAe,GAAG,EAAE,CAAC;AAClC;;GAEG;AACU,QAAA,gBAAgB,GAAG,eAAe,CAAC;AAChD;;GAEG;AACU,QAAA,4BAA4B,GAAG,KAAK,CAAC;AAClD;;GAEG;AACU,QAAA,uBAAuB,GAAG,SAAS,CAAC;AACjD,yCAAyC"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import QueryTable from "../query-table";
|
|
2
|
-
import QueryColumn from "./query-column";
|
|
3
|
-
import NumberColumn from "./number-column";
|
|
4
|
-
import { ColumnModifier, ColumnName } from "../helpers/internal-types";
|
|
5
|
-
export default class BasicColumn<Table extends QueryTable<any, any>, T> extends QueryColumn<Table, T> {
|
|
6
|
-
constructor(table: Table, name: ColumnName, modifiers?: ColumnModifier[]);
|
|
7
|
-
count(): NumberColumn<Table>;
|
|
8
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const query_column_1 = require("./query-column");
|
|
4
|
-
const number_column_1 = require("./number-column");
|
|
5
|
-
// This file is only needed because the QueryColumn can't implement its count method b. of circular dependencies
|
|
6
|
-
class BasicColumn extends query_column_1.default {
|
|
7
|
-
constructor(table, name, modifiers = []) {
|
|
8
|
-
super(table, name, modifiers);
|
|
9
|
-
}
|
|
10
|
-
count() {
|
|
11
|
-
return new number_column_1.default(this._table, this._name, this._modifiers.concat({ name: 'count' }));
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
exports.default = BasicColumn;
|
|
15
|
-
//# sourceMappingURL=basic-column.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"basic-column.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;AACA,iDAAyC;AACzC,mDAA2C;AAG3C,gHAAgH;AAEhH,MAAqB,WAAmD,SAAQ,sBAAqB;IAEjG,YAAY,KAAY,EAAE,IAAgB,EAAE,YAA8B,EAAE;QACxE,KAAK,CAAC,KAAK,EAAE,IAAI,EAAE,SAAS,CAAC,CAAC;IAClC,CAAC;IAED,KAAK;QACD,OAAO,IAAI,uBAAY,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC,CAAC,CAAC;IAChG,CAAC;CACJ;AATD,8BASC"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import QueryTable from "../query-table";
|
|
2
|
-
import NumberColumn from "./number-column";
|
|
3
|
-
import ValueColumn from "./value-column";
|
|
4
|
-
import { ColumnModifier, ColumnName } from "../helpers/internal-types";
|
|
5
|
-
export default class BooleanColumn<Table extends QueryTable<any, any>> extends ValueColumn<Table, boolean> {
|
|
6
|
-
protected _type: string;
|
|
7
|
-
constructor(table: Table, name: ColumnName, modifiers?: ColumnModifier[]);
|
|
8
|
-
count(): NumberColumn<Table>;
|
|
9
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const number_column_1 = require("./number-column");
|
|
4
|
-
const value_column_1 = require("./value-column");
|
|
5
|
-
class BooleanColumn extends value_column_1.default {
|
|
6
|
-
_type = 'boolean';
|
|
7
|
-
constructor(table, name, modifiers = []) {
|
|
8
|
-
super(table, name, modifiers);
|
|
9
|
-
}
|
|
10
|
-
count() {
|
|
11
|
-
return new number_column_1.default(this._table, this._name, this._modifiers.concat({ name: 'count' }));
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
exports.default = BooleanColumn;
|
|
15
|
-
//# sourceMappingURL=boolean-column.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"boolean-column.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;AACA,mDAA2C;AAC3C,iDAAyC;AAIzC,MAAqB,aAAkD,SAAQ,sBAA2B;IAE5F,KAAK,GAAG,SAAS,CAAC;IAE5B,YAAY,KAAY,EAAE,IAAgB,EAAE,YAA8B,EAAE;QACxE,KAAK,CAAC,KAAK,EAAE,IAAI,EAAE,SAAS,CAAC,CAAC;IAClC,CAAC;IAED,KAAK;QACD,OAAO,IAAI,uBAAY,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC,CAAC,CAAC;IAChG,CAAC;CAEJ;AAZD,gCAYC"}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import QueryColumnCondition from "../condition/query-column-condition";
|
|
2
|
-
import QueryTable from "../query-table";
|
|
3
|
-
import ValueColumn from "./value-column";
|
|
4
|
-
import { ColumnModifier, ColumnName } from "../helpers/internal-types";
|
|
5
|
-
declare abstract class ComparableColumn<Table extends QueryTable<any, any>, T> extends ValueColumn<Table, T> {
|
|
6
|
-
constructor(table: Table, name: ColumnName, modifiers?: ColumnModifier[]);
|
|
7
|
-
lt(value: T): QueryColumnCondition<Table, T>;
|
|
8
|
-
gt(value: T): QueryColumnCondition<Table, T>;
|
|
9
|
-
lte(value: T): QueryColumnCondition<Table, T>;
|
|
10
|
-
gte(value: T): QueryColumnCondition<Table, T>;
|
|
11
|
-
in(values: T[]): QueryColumnCondition<Table, T>;
|
|
12
|
-
notIn(values: T[]): QueryColumnCondition<Table, T>;
|
|
13
|
-
between(value1: T, value2: T): QueryColumnCondition<Table, T>;
|
|
14
|
-
notBetween(value1: T, value2: T): QueryColumnCondition<Table, T>;
|
|
15
|
-
min(): this;
|
|
16
|
-
max(): this;
|
|
17
|
-
}
|
|
18
|
-
export default ComparableColumn;
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const query_column_condition_1 = require("../condition/query-column-condition");
|
|
4
|
-
const value_column_1 = require("./value-column");
|
|
5
|
-
class ComparableColumn extends value_column_1.default {
|
|
6
|
-
constructor(table, name, modifiers = []) {
|
|
7
|
-
super(table, name, modifiers);
|
|
8
|
-
}
|
|
9
|
-
lt(value) {
|
|
10
|
-
return new query_column_condition_1.default(this, 'lt', value);
|
|
11
|
-
}
|
|
12
|
-
gt(value) {
|
|
13
|
-
return new query_column_condition_1.default(this, 'gt', value);
|
|
14
|
-
}
|
|
15
|
-
lte(value) {
|
|
16
|
-
return new query_column_condition_1.default(this, 'lte', value);
|
|
17
|
-
}
|
|
18
|
-
gte(value) {
|
|
19
|
-
return new query_column_condition_1.default(this, 'gte', value);
|
|
20
|
-
}
|
|
21
|
-
in(values) {
|
|
22
|
-
return new query_column_condition_1.default(this, 'in', ...values);
|
|
23
|
-
}
|
|
24
|
-
notIn(values) {
|
|
25
|
-
return new query_column_condition_1.default(this, 'not-in', ...values);
|
|
26
|
-
}
|
|
27
|
-
between(value1, value2) {
|
|
28
|
-
return new query_column_condition_1.default(this, 'between', value1, value2);
|
|
29
|
-
}
|
|
30
|
-
notBetween(value1, value2) {
|
|
31
|
-
return new query_column_condition_1.default(this, 'not-between', value1, value2);
|
|
32
|
-
}
|
|
33
|
-
// min/max exists for text columns too, not just numeric and date
|
|
34
|
-
min() {
|
|
35
|
-
return new this.constructor(this._table, this._name, this._modifiers.concat({ name: 'min' }));
|
|
36
|
-
}
|
|
37
|
-
max() {
|
|
38
|
-
return new this.constructor(this._table, this._name, this._modifiers.concat({ name: 'max' }));
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
exports.default = ComparableColumn;
|
|
42
|
-
//# sourceMappingURL=comparable-column.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"comparable-column.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;AAAA,gFAAuE;AAEvE,iDAAyC;AAIzC,MAAe,gBAAwD,SAAQ,sBAAqB;IAEhG,YAAY,KAAY,EAAE,IAAgB,EAAE,YAA8B,EAAE;QACxE,KAAK,CAAC,KAAK,EAAE,IAAI,EAAE,SAAS,CAAC,CAAC;IAClC,CAAC;IAED,EAAE,CAAC,KAAQ;QACP,OAAO,IAAI,gCAAoB,CAAW,IAAI,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC;IACjE,CAAC;IAED,EAAE,CAAC,KAAQ;QACP,OAAO,IAAI,gCAAoB,CAAW,IAAI,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC;IACjE,CAAC;IAED,GAAG,CAAC,KAAQ;QACR,OAAO,IAAI,gCAAoB,CAAW,IAAI,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;IAClE,CAAC;IAED,GAAG,CAAC,KAAQ;QACR,OAAO,IAAI,gCAAoB,CAAW,IAAI,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;IAClE,CAAC;IAED,EAAE,CAAC,MAAW;QACV,OAAO,IAAI,gCAAoB,CAAW,IAAI,EAAE,IAAI,EAAE,GAAG,MAAM,CAAC,CAAC;IACrE,CAAC;IAED,KAAK,CAAC,MAAW;QACb,OAAO,IAAI,gCAAoB,CAAW,IAAI,EAAE,QAAQ,EAAE,GAAG,MAAM,CAAC,CAAC;IACzE,CAAC;IAED,OAAO,CAAC,MAAS,EAAE,MAAS;QACxB,OAAO,IAAI,gCAAoB,CAAW,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC;IAC/E,CAAC;IAED,UAAU,CAAC,MAAS,EAAE,MAAS;QAC3B,OAAO,IAAI,gCAAoB,CAAW,IAAI,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC;IACnF,CAAC;IAED,iEAAiE;IAEjE,GAAG;QACC,OAAO,IAAU,IAAI,CAAC,WAAY,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC;IACzG,CAAC;IAED,GAAG;QACC,OAAO,IAAU,IAAI,CAAC,WAAY,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC;IACzG,CAAC;CACJ;AAED,kBAAe,gBAAgB,CAAC"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import QueryTable from "../query-table";
|
|
2
|
-
import ComparableColumn from "./comparable-column";
|
|
3
|
-
import NumberColumn from "./number-column";
|
|
4
|
-
import { ColumnModifier, ColumnName } from "../helpers/internal-types";
|
|
5
|
-
export default class DateColumn<Table extends QueryTable<any, any>> extends ComparableColumn<Table, Date> {
|
|
6
|
-
protected _type: string;
|
|
7
|
-
constructor(table: Table, name: ColumnName, modifiers?: ColumnModifier[]);
|
|
8
|
-
count(): NumberColumn<Table>;
|
|
9
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const comparable_column_1 = require("./comparable-column");
|
|
4
|
-
const number_column_1 = require("./number-column");
|
|
5
|
-
class DateColumn extends comparable_column_1.default {
|
|
6
|
-
_type = 'date';
|
|
7
|
-
constructor(table, name, modifiers = []) {
|
|
8
|
-
super(table, name, modifiers);
|
|
9
|
-
}
|
|
10
|
-
count() {
|
|
11
|
-
return new number_column_1.default(this._table, this._name, this._modifiers.concat({ name: 'count' }));
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
exports.default = DateColumn;
|
|
15
|
-
//# sourceMappingURL=date-column.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"date-column.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;AACA,2DAAmD;AACnD,mDAA2C;AAI3C,MAAqB,UAA+C,SAAQ,2BAA6B;IAE3F,KAAK,GAAG,MAAM,CAAC;IAEzB,YAAY,KAAY,EAAE,IAAgB,EAAE,YAA8B,EAAE;QACxE,KAAK,CAAC,KAAK,EAAE,IAAI,EAAE,SAAS,CAAC,CAAC;IAClC,CAAC;IAED,KAAK;QACD,OAAO,IAAI,uBAAY,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC,CAAC,CAAC;IAChG,CAAC;CAEJ;AAZD,6BAYC"}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import QueryTable from "../query-table";
|
|
2
|
-
import ComparableColumn from "./comparable-column";
|
|
3
|
-
import { ColumnModifier, ColumnName } from "../helpers/internal-types";
|
|
4
|
-
export default class NumberColumn<Table extends QueryTable<any, any>> extends ComparableColumn<Table, number> {
|
|
5
|
-
protected _type: string;
|
|
6
|
-
constructor(table: Table, name: ColumnName, modifiers?: ColumnModifier[]);
|
|
7
|
-
count(): NumberColumn<Table>;
|
|
8
|
-
sum(): NumberColumn<Table>;
|
|
9
|
-
avg(): NumberColumn<Table>;
|
|
10
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const comparable_column_1 = require("./comparable-column");
|
|
4
|
-
class NumberColumn extends comparable_column_1.default {
|
|
5
|
-
_type = 'number';
|
|
6
|
-
constructor(table, name, modifiers = []) {
|
|
7
|
-
super(table, name, modifiers);
|
|
8
|
-
}
|
|
9
|
-
count() {
|
|
10
|
-
return new NumberColumn(this._table, this._name, this._modifiers.concat({ name: 'count' }));
|
|
11
|
-
}
|
|
12
|
-
sum() {
|
|
13
|
-
return new NumberColumn(this._table, this._name, this._modifiers.concat({ name: 'sum' }));
|
|
14
|
-
}
|
|
15
|
-
avg() {
|
|
16
|
-
return new NumberColumn(this._table, this._name, this._modifiers.concat({ name: 'avg' }));
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
exports.default = NumberColumn;
|
|
20
|
-
//# sourceMappingURL=number-column.js.map
|