taon-type-sql 18.0.9
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/assets/shared/shared_folder_info.txt +7 -0
- package/browser/README.md +24 -0
- package/browser/esm2022/lib/builder/column/basic-column.mjs +13 -0
- package/browser/esm2022/lib/builder/column/boolean-column.mjs +14 -0
- package/browser/esm2022/lib/builder/column/comparable-column.mjs +41 -0
- package/browser/esm2022/lib/builder/column/date-column.mjs +14 -0
- package/browser/esm2022/lib/builder/column/number-column.mjs +19 -0
- package/browser/esm2022/lib/builder/column/query-column.mjs +21 -0
- package/browser/esm2022/lib/builder/column/string-column.mjs +36 -0
- package/browser/esm2022/lib/builder/column/value-column.mjs +30 -0
- package/browser/esm2022/lib/builder/condition/query-column-condition.mjs +19 -0
- package/browser/esm2022/lib/builder/condition/query-condition-chain.mjs +28 -0
- package/browser/esm2022/lib/builder/condition/query-condition.mjs +6 -0
- package/browser/esm2022/lib/builder/condition/query-join-condition.mjs +19 -0
- package/browser/esm2022/lib/builder/helpers/generics-helper.mjs +5 -0
- package/browser/esm2022/lib/builder/helpers/internal-types.mjs +4 -0
- package/browser/esm2022/lib/builder/join/joined-tables-chain.mjs +14 -0
- package/browser/esm2022/lib/builder/join/joined-tables.mjs +22 -0
- package/browser/esm2022/lib/builder/other/query-ordering.mjs +17 -0
- package/browser/esm2022/lib/builder/query/select-query.mjs +48 -0
- package/browser/esm2022/lib/builder/query/table-condition-query.mjs +25 -0
- package/browser/esm2022/lib/builder/query/table-query.mjs +54 -0
- package/browser/esm2022/lib/builder/query-source.mjs +20 -0
- package/browser/esm2022/lib/builder/query-table.mjs +24 -0
- package/browser/esm2022/lib/client/mysql.mjs +10 -0
- package/browser/esm2022/lib/client/query-processor.mjs +45 -0
- package/browser/esm2022/lib/converter/param-converter.mjs +27 -0
- package/browser/esm2022/lib/converter/parameterized-converter.mjs +17 -0
- package/browser/esm2022/lib/converter/query-converter.mjs +282 -0
- package/browser/esm2022/lib/converter/result-converter.mjs +88 -0
- package/browser/esm2022/lib/converter/sql-converter.mjs +8 -0
- package/browser/esm2022/lib/converter/type-converter.mjs +39 -0
- package/browser/esm2022/lib/converter/types.mjs +4 -0
- package/browser/esm2022/lib/index.mjs +23 -0
- package/browser/esm2022/public-api.mjs +2 -0
- package/browser/esm2022/taon-type-sql.mjs +5 -0
- package/browser/fesm2022/taon-type-sql.mjs +877 -0
- package/browser/fesm2022/taon-type-sql.mjs.map +1 -0
- package/browser/index.d.ts +6 -0
- package/browser/lib/builder/column/basic-column.d.ts +9 -0
- package/browser/lib/builder/column/boolean-column.d.ts +10 -0
- package/browser/lib/builder/column/comparable-column.d.ts +19 -0
- package/browser/lib/builder/column/date-column.d.ts +10 -0
- package/browser/lib/builder/column/number-column.d.ts +11 -0
- package/browser/lib/builder/column/query-column.d.ts +19 -0
- package/browser/lib/builder/column/string-column.d.ts +18 -0
- package/browser/lib/builder/column/value-column.d.ts +16 -0
- package/browser/lib/builder/condition/query-column-condition.d.ts +14 -0
- package/browser/lib/builder/condition/query-condition-chain.d.ts +18 -0
- package/browser/lib/builder/condition/query-condition.d.ts +8 -0
- package/browser/lib/builder/condition/query-join-condition.d.ts +13 -0
- package/browser/lib/builder/helpers/generics-helper.d.ts +3 -0
- package/browser/lib/builder/helpers/internal-types.d.ts +16 -0
- package/browser/lib/builder/join/joined-tables-chain.d.ts +12 -0
- package/browser/lib/builder/join/joined-tables.d.ts +13 -0
- package/browser/lib/builder/other/query-ordering.d.ts +11 -0
- package/browser/lib/builder/query/select-query.d.ts +30 -0
- package/browser/lib/builder/query/table-condition-query.d.ts +17 -0
- package/browser/lib/builder/query/table-query.d.ts +24 -0
- package/browser/lib/builder/query-source.d.ts +15 -0
- package/browser/lib/builder/query-table.d.ts +16 -0
- package/browser/lib/client/mysql.d.ts +6 -0
- package/browser/lib/client/query-processor.d.ts +11 -0
- package/browser/lib/converter/param-converter.d.ts +3 -0
- package/browser/lib/converter/parameterized-converter.d.ts +6 -0
- package/browser/lib/converter/query-converter.d.ts +3 -0
- package/browser/lib/converter/result-converter.d.ts +3 -0
- package/browser/lib/converter/sql-converter.d.ts +3 -0
- package/browser/lib/converter/type-converter.d.ts +5 -0
- package/browser/lib/converter/types.d.ts +6 -0
- package/browser/lib/index.d.ts +26 -0
- package/browser/package.json +25 -0
- package/browser/public-api.d.ts +2 -0
- package/client/README.md +24 -0
- package/client/esm2022/lib/builder/column/basic-column.mjs +13 -0
- package/client/esm2022/lib/builder/column/boolean-column.mjs +14 -0
- package/client/esm2022/lib/builder/column/comparable-column.mjs +41 -0
- package/client/esm2022/lib/builder/column/date-column.mjs +14 -0
- package/client/esm2022/lib/builder/column/number-column.mjs +19 -0
- package/client/esm2022/lib/builder/column/query-column.mjs +21 -0
- package/client/esm2022/lib/builder/column/string-column.mjs +36 -0
- package/client/esm2022/lib/builder/column/value-column.mjs +30 -0
- package/client/esm2022/lib/builder/condition/query-column-condition.mjs +19 -0
- package/client/esm2022/lib/builder/condition/query-condition-chain.mjs +28 -0
- package/client/esm2022/lib/builder/condition/query-condition.mjs +6 -0
- package/client/esm2022/lib/builder/condition/query-join-condition.mjs +19 -0
- package/client/esm2022/lib/builder/helpers/generics-helper.mjs +5 -0
- package/client/esm2022/lib/builder/helpers/internal-types.mjs +4 -0
- package/client/esm2022/lib/builder/join/joined-tables-chain.mjs +14 -0
- package/client/esm2022/lib/builder/join/joined-tables.mjs +22 -0
- package/client/esm2022/lib/builder/other/query-ordering.mjs +17 -0
- package/client/esm2022/lib/builder/query/select-query.mjs +48 -0
- package/client/esm2022/lib/builder/query/table-condition-query.mjs +25 -0
- package/client/esm2022/lib/builder/query/table-query.mjs +54 -0
- package/client/esm2022/lib/builder/query-source.mjs +20 -0
- package/client/esm2022/lib/builder/query-table.mjs +24 -0
- package/client/esm2022/lib/client/mysql.mjs +10 -0
- package/client/esm2022/lib/client/query-processor.mjs +45 -0
- package/client/esm2022/lib/converter/param-converter.mjs +27 -0
- package/client/esm2022/lib/converter/parameterized-converter.mjs +17 -0
- package/client/esm2022/lib/converter/query-converter.mjs +282 -0
- package/client/esm2022/lib/converter/result-converter.mjs +88 -0
- package/client/esm2022/lib/converter/sql-converter.mjs +8 -0
- package/client/esm2022/lib/converter/type-converter.mjs +39 -0
- package/client/esm2022/lib/converter/types.mjs +4 -0
- package/client/esm2022/lib/index.mjs +23 -0
- package/client/esm2022/public-api.mjs +2 -0
- package/client/esm2022/taon-type-sql.mjs +5 -0
- package/client/fesm2022/taon-type-sql.mjs +877 -0
- package/client/fesm2022/taon-type-sql.mjs.map +1 -0
- package/client/index.d.ts +6 -0
- package/client/lib/builder/column/basic-column.d.ts +9 -0
- package/client/lib/builder/column/boolean-column.d.ts +10 -0
- package/client/lib/builder/column/comparable-column.d.ts +19 -0
- package/client/lib/builder/column/date-column.d.ts +10 -0
- package/client/lib/builder/column/number-column.d.ts +11 -0
- package/client/lib/builder/column/query-column.d.ts +19 -0
- package/client/lib/builder/column/string-column.d.ts +18 -0
- package/client/lib/builder/column/value-column.d.ts +16 -0
- package/client/lib/builder/condition/query-column-condition.d.ts +14 -0
- package/client/lib/builder/condition/query-condition-chain.d.ts +18 -0
- package/client/lib/builder/condition/query-condition.d.ts +8 -0
- package/client/lib/builder/condition/query-join-condition.d.ts +13 -0
- package/client/lib/builder/helpers/generics-helper.d.ts +3 -0
- package/client/lib/builder/helpers/internal-types.d.ts +16 -0
- package/client/lib/builder/join/joined-tables-chain.d.ts +12 -0
- package/client/lib/builder/join/joined-tables.d.ts +13 -0
- package/client/lib/builder/other/query-ordering.d.ts +11 -0
- package/client/lib/builder/query/select-query.d.ts +30 -0
- package/client/lib/builder/query/table-condition-query.d.ts +17 -0
- package/client/lib/builder/query/table-query.d.ts +24 -0
- package/client/lib/builder/query-source.d.ts +15 -0
- package/client/lib/builder/query-table.d.ts +16 -0
- package/client/lib/client/mysql.d.ts +6 -0
- package/client/lib/client/query-processor.d.ts +11 -0
- package/client/lib/converter/param-converter.d.ts +3 -0
- package/client/lib/converter/parameterized-converter.d.ts +6 -0
- package/client/lib/converter/query-converter.d.ts +3 -0
- package/client/lib/converter/result-converter.d.ts +3 -0
- package/client/lib/converter/sql-converter.d.ts +3 -0
- package/client/lib/converter/type-converter.d.ts +5 -0
- package/client/lib/converter/types.d.ts +6 -0
- package/client/lib/index.d.ts +26 -0
- package/client/public-api.d.ts +2 -0
- package/index.d.ts +1 -0
- package/index.js +7 -0
- package/index.js.map +1 -0
- package/lib/build-info._auto-generated_.d.ts +1 -0
- package/lib/build-info._auto-generated_.js +5 -0
- package/lib/build-info._auto-generated_.js.map +1 -0
- package/lib/builder/column/basic-column.d.ts +8 -0
- package/lib/builder/column/basic-column.js +19 -0
- package/lib/builder/column/basic-column.js.map +1 -0
- package/lib/builder/column/boolean-column.d.ts +9 -0
- package/lib/builder/column/boolean-column.js +20 -0
- package/lib/builder/column/boolean-column.js.map +1 -0
- package/lib/builder/column/comparable-column.d.ts +18 -0
- package/lib/builder/column/comparable-column.js +46 -0
- package/lib/builder/column/comparable-column.js.map +1 -0
- package/lib/builder/column/date-column.d.ts +9 -0
- package/lib/builder/column/date-column.js +20 -0
- package/lib/builder/column/date-column.js.map +1 -0
- package/lib/builder/column/number-column.d.ts +10 -0
- package/lib/builder/column/number-column.js +25 -0
- package/lib/builder/column/number-column.js.map +1 -0
- package/lib/builder/column/query-column.d.ts +18 -0
- package/lib/builder/column/query-column.js +23 -0
- package/lib/builder/column/query-column.js.map +1 -0
- package/lib/builder/column/string-column.d.ts +17 -0
- package/lib/builder/column/string-column.js +42 -0
- package/lib/builder/column/string-column.js.map +1 -0
- package/lib/builder/column/value-column.d.ts +15 -0
- package/lib/builder/column/value-column.js +34 -0
- package/lib/builder/column/value-column.js.map +1 -0
- package/lib/builder/condition/query-column-condition.d.ts +13 -0
- package/lib/builder/condition/query-column-condition.js +28 -0
- package/lib/builder/condition/query-column-condition.js.map +1 -0
- package/lib/builder/condition/query-condition-chain.d.ts +17 -0
- package/lib/builder/condition/query-condition-chain.js +34 -0
- package/lib/builder/condition/query-condition-chain.js.map +1 -0
- package/lib/builder/condition/query-condition.d.ts +7 -0
- package/lib/builder/condition/query-condition.js +10 -0
- package/lib/builder/condition/query-condition.js.map +1 -0
- package/lib/builder/condition/query-join-condition.d.ts +12 -0
- package/lib/builder/condition/query-join-condition.js +24 -0
- package/lib/builder/condition/query-join-condition.js.map +1 -0
- package/lib/builder/helpers/generics-helper.d.ts +2 -0
- package/lib/builder/helpers/generics-helper.js +10 -0
- package/lib/builder/helpers/generics-helper.js.map +1 -0
- package/lib/builder/helpers/internal-types.d.ts +15 -0
- package/lib/builder/helpers/internal-types.js +4 -0
- package/lib/builder/helpers/internal-types.js.map +1 -0
- package/lib/builder/join/joined-tables-chain.d.ts +11 -0
- package/lib/builder/join/joined-tables-chain.js +16 -0
- package/lib/builder/join/joined-tables-chain.js.map +1 -0
- package/lib/builder/join/joined-tables.d.ts +12 -0
- package/lib/builder/join/joined-tables.js +24 -0
- package/lib/builder/join/joined-tables.js.map +1 -0
- package/lib/builder/other/query-ordering.d.ts +10 -0
- package/lib/builder/other/query-ordering.js +19 -0
- package/lib/builder/other/query-ordering.js.map +1 -0
- package/lib/builder/query/select-query.d.ts +29 -0
- package/lib/builder/query/select-query.js +70 -0
- package/lib/builder/query/select-query.js.map +1 -0
- package/lib/builder/query/table-condition-query.d.ts +16 -0
- package/lib/builder/query/table-condition-query.js +27 -0
- package/lib/builder/query/table-condition-query.js.map +1 -0
- package/lib/builder/query/table-query.d.ts +23 -0
- package/lib/builder/query/table-query.js +63 -0
- package/lib/builder/query/table-query.js.map +1 -0
- package/lib/builder/query-source.d.ts +14 -0
- package/lib/builder/query-source.js +22 -0
- package/lib/builder/query-source.js.map +1 -0
- package/lib/builder/query-table.d.ts +15 -0
- package/lib/builder/query-table.js +26 -0
- package/lib/builder/query-table.js.map +1 -0
- package/lib/client/mysql.d.ts +5 -0
- package/lib/client/mysql.js +15 -0
- package/lib/client/mysql.js.map +1 -0
- package/lib/client/pg.d.ts +5 -0
- package/lib/client/pg.js +15 -0
- package/lib/client/pg.js.map +1 -0
- package/lib/client/query-processor.d.ts +10 -0
- package/lib/client/query-processor.js +75 -0
- package/lib/client/query-processor.js.map +1 -0
- package/lib/converter/param-converter.d.ts +2 -0
- package/lib/converter/param-converter.js +31 -0
- package/lib/converter/param-converter.js.map +1 -0
- package/lib/converter/parameterized-converter.d.ts +5 -0
- package/lib/converter/parameterized-converter.js +18 -0
- package/lib/converter/parameterized-converter.js.map +1 -0
- package/lib/converter/query-converter.d.ts +2 -0
- package/lib/converter/query-converter.js +286 -0
- package/lib/converter/query-converter.js.map +1 -0
- package/lib/converter/result-converter.d.ts +2 -0
- package/lib/converter/result-converter.js +89 -0
- package/lib/converter/result-converter.js.map +1 -0
- package/lib/converter/sql-converter.d.ts +2 -0
- package/lib/converter/sql-converter.js +9 -0
- package/lib/converter/sql-converter.js.map +1 -0
- package/lib/converter/type-converter.d.ts +4 -0
- package/lib/converter/type-converter.js +43 -0
- package/lib/converter/type-converter.js.map +1 -0
- package/lib/converter/types.d.ts +5 -0
- package/lib/converter/types.js +3 -0
- package/lib/converter/types.js.map +1 -0
- package/lib/index.d.ts +25 -0
- package/lib/index.js +48 -0
- package/lib/index.js.map +1 -0
- package/package.json +38 -0
- package/src.d.ts +6 -0
- package/taon.jsonc +23 -0
- package/tmp-environment.json +359 -0
- package/websql/README.md +24 -0
- package/websql/esm2022/lib/builder/column/basic-column.mjs +13 -0
- package/websql/esm2022/lib/builder/column/boolean-column.mjs +14 -0
- package/websql/esm2022/lib/builder/column/comparable-column.mjs +41 -0
- package/websql/esm2022/lib/builder/column/date-column.mjs +14 -0
- package/websql/esm2022/lib/builder/column/number-column.mjs +19 -0
- package/websql/esm2022/lib/builder/column/query-column.mjs +21 -0
- package/websql/esm2022/lib/builder/column/string-column.mjs +36 -0
- package/websql/esm2022/lib/builder/column/value-column.mjs +30 -0
- package/websql/esm2022/lib/builder/condition/query-column-condition.mjs +19 -0
- package/websql/esm2022/lib/builder/condition/query-condition-chain.mjs +28 -0
- package/websql/esm2022/lib/builder/condition/query-condition.mjs +6 -0
- package/websql/esm2022/lib/builder/condition/query-join-condition.mjs +19 -0
- package/websql/esm2022/lib/builder/helpers/generics-helper.mjs +5 -0
- package/websql/esm2022/lib/builder/helpers/internal-types.mjs +4 -0
- package/websql/esm2022/lib/builder/join/joined-tables-chain.mjs +14 -0
- package/websql/esm2022/lib/builder/join/joined-tables.mjs +22 -0
- package/websql/esm2022/lib/builder/other/query-ordering.mjs +17 -0
- package/websql/esm2022/lib/builder/query/select-query.mjs +48 -0
- package/websql/esm2022/lib/builder/query/table-condition-query.mjs +25 -0
- package/websql/esm2022/lib/builder/query/table-query.mjs +54 -0
- package/websql/esm2022/lib/builder/query-source.mjs +20 -0
- package/websql/esm2022/lib/builder/query-table.mjs +24 -0
- package/websql/esm2022/lib/client/mysql.mjs +10 -0
- package/websql/esm2022/lib/client/query-processor.mjs +45 -0
- package/websql/esm2022/lib/converter/param-converter.mjs +27 -0
- package/websql/esm2022/lib/converter/parameterized-converter.mjs +17 -0
- package/websql/esm2022/lib/converter/query-converter.mjs +282 -0
- package/websql/esm2022/lib/converter/result-converter.mjs +88 -0
- package/websql/esm2022/lib/converter/sql-converter.mjs +8 -0
- package/websql/esm2022/lib/converter/type-converter.mjs +39 -0
- package/websql/esm2022/lib/converter/types.mjs +4 -0
- package/websql/esm2022/lib/index.mjs +23 -0
- package/websql/esm2022/public-api.mjs +2 -0
- package/websql/esm2022/taon-type-sql.mjs +5 -0
- package/websql/fesm2022/taon-type-sql.mjs +877 -0
- package/websql/fesm2022/taon-type-sql.mjs.map +1 -0
- package/websql/index.d.ts +6 -0
- package/websql/lib/builder/column/basic-column.d.ts +9 -0
- package/websql/lib/builder/column/boolean-column.d.ts +10 -0
- package/websql/lib/builder/column/comparable-column.d.ts +19 -0
- package/websql/lib/builder/column/date-column.d.ts +10 -0
- package/websql/lib/builder/column/number-column.d.ts +11 -0
- package/websql/lib/builder/column/query-column.d.ts +19 -0
- package/websql/lib/builder/column/string-column.d.ts +18 -0
- package/websql/lib/builder/column/value-column.d.ts +16 -0
- package/websql/lib/builder/condition/query-column-condition.d.ts +14 -0
- package/websql/lib/builder/condition/query-condition-chain.d.ts +18 -0
- package/websql/lib/builder/condition/query-condition.d.ts +8 -0
- package/websql/lib/builder/condition/query-join-condition.d.ts +13 -0
- package/websql/lib/builder/helpers/generics-helper.d.ts +3 -0
- package/websql/lib/builder/helpers/internal-types.d.ts +16 -0
- package/websql/lib/builder/join/joined-tables-chain.d.ts +12 -0
- package/websql/lib/builder/join/joined-tables.d.ts +13 -0
- package/websql/lib/builder/other/query-ordering.d.ts +11 -0
- package/websql/lib/builder/query/select-query.d.ts +30 -0
- package/websql/lib/builder/query/table-condition-query.d.ts +17 -0
- package/websql/lib/builder/query/table-query.d.ts +24 -0
- package/websql/lib/builder/query-source.d.ts +15 -0
- package/websql/lib/builder/query-table.d.ts +16 -0
- package/websql/lib/client/mysql.d.ts +6 -0
- package/websql/lib/client/query-processor.d.ts +11 -0
- package/websql/lib/converter/param-converter.d.ts +3 -0
- package/websql/lib/converter/parameterized-converter.d.ts +6 -0
- package/websql/lib/converter/query-converter.d.ts +3 -0
- package/websql/lib/converter/result-converter.d.ts +3 -0
- package/websql/lib/converter/sql-converter.d.ts +3 -0
- package/websql/lib/converter/type-converter.d.ts +5 -0
- package/websql/lib/converter/types.d.ts +6 -0
- package/websql/lib/index.d.ts +26 -0
- package/websql/package.json +25 -0
- package/websql/public-api.d.ts +2 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":[""],"names":[],"mappings":""}
|
package/lib/index.d.ts
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export { default as BasicColumn } from './builder/column/basic-column';
|
|
2
|
+
export { default as BooleanColumn } from './builder/column/boolean-column';
|
|
3
|
+
export { default as ComparableColumn } from './builder/column/comparable-column';
|
|
4
|
+
export { default as DateColumn } from './builder/column/date-column';
|
|
5
|
+
export { default as NumberColumn } from './builder/column/number-column';
|
|
6
|
+
export { default as QueryColumn } from './builder/column/query-column';
|
|
7
|
+
export { default as StringColumn } from './builder/column/string-column';
|
|
8
|
+
export { default as ValueColumn } from './builder/column/value-column';
|
|
9
|
+
export { default as QueryColumnCondition } from './builder/condition/query-column-condition';
|
|
10
|
+
export { default as QueryCondition } from './builder/condition/query-condition';
|
|
11
|
+
export { default as QueryConditionChain } from './builder/condition/query-condition-chain';
|
|
12
|
+
export { default as QueryJoinCondition } from './builder/condition/query-join-condition';
|
|
13
|
+
export { default as JoinedTables } from './builder/join/joined-tables';
|
|
14
|
+
export { default as JoinedTablesChain } from './builder/join/joined-tables-chain';
|
|
15
|
+
export { default as QueryOrdering } from './builder/other/query-ordering';
|
|
16
|
+
export { default as SelectQuery } from './builder/query/select-query';
|
|
17
|
+
export { default as TableQuery } from './builder/query/table-query';
|
|
18
|
+
export { default as TableConditionQuery } from './builder/query/table-condition-query';
|
|
19
|
+
export { default as QuerySource } from './builder/query-source';
|
|
20
|
+
export { default as QueryTable } from './builder/query-table';
|
|
21
|
+
export { default as MySqlQuerySource } from './client/mysql';
|
|
22
|
+
export { QueryProcessorOptions } from './client/query-processor';
|
|
23
|
+
export type PropsEntitySQL<IEntityType> = {
|
|
24
|
+
[prop in keyof Required<IEntityType>]: any;
|
|
25
|
+
};
|
package/lib/index.js
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Builder:
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.MySqlQuerySource = exports.QueryTable = exports.QuerySource = exports.TableConditionQuery = exports.TableQuery = exports.SelectQuery = exports.QueryOrdering = exports.JoinedTablesChain = exports.JoinedTables = exports.QueryJoinCondition = exports.QueryConditionChain = exports.QueryCondition = exports.QueryColumnCondition = exports.ValueColumn = exports.StringColumn = exports.QueryColumn = exports.NumberColumn = exports.DateColumn = exports.ComparableColumn = exports.BooleanColumn = exports.BasicColumn = void 0;
|
|
5
|
+
var basic_column_1 = require("./builder/column/basic-column");
|
|
6
|
+
Object.defineProperty(exports, "BasicColumn", { enumerable: true, get: function () { return basic_column_1.default; } });
|
|
7
|
+
var boolean_column_1 = require("./builder/column/boolean-column");
|
|
8
|
+
Object.defineProperty(exports, "BooleanColumn", { enumerable: true, get: function () { return boolean_column_1.default; } });
|
|
9
|
+
var comparable_column_1 = require("./builder/column/comparable-column");
|
|
10
|
+
Object.defineProperty(exports, "ComparableColumn", { enumerable: true, get: function () { return comparable_column_1.default; } });
|
|
11
|
+
var date_column_1 = require("./builder/column/date-column");
|
|
12
|
+
Object.defineProperty(exports, "DateColumn", { enumerable: true, get: function () { return date_column_1.default; } });
|
|
13
|
+
var number_column_1 = require("./builder/column/number-column");
|
|
14
|
+
Object.defineProperty(exports, "NumberColumn", { enumerable: true, get: function () { return number_column_1.default; } });
|
|
15
|
+
var query_column_1 = require("./builder/column/query-column");
|
|
16
|
+
Object.defineProperty(exports, "QueryColumn", { enumerable: true, get: function () { return query_column_1.default; } });
|
|
17
|
+
var string_column_1 = require("./builder/column/string-column");
|
|
18
|
+
Object.defineProperty(exports, "StringColumn", { enumerable: true, get: function () { return string_column_1.default; } });
|
|
19
|
+
var value_column_1 = require("./builder/column/value-column");
|
|
20
|
+
Object.defineProperty(exports, "ValueColumn", { enumerable: true, get: function () { return value_column_1.default; } });
|
|
21
|
+
var query_column_condition_1 = require("./builder/condition/query-column-condition");
|
|
22
|
+
Object.defineProperty(exports, "QueryColumnCondition", { enumerable: true, get: function () { return query_column_condition_1.default; } });
|
|
23
|
+
var query_condition_1 = require("./builder/condition/query-condition");
|
|
24
|
+
Object.defineProperty(exports, "QueryCondition", { enumerable: true, get: function () { return query_condition_1.default; } });
|
|
25
|
+
var query_condition_chain_1 = require("./builder/condition/query-condition-chain");
|
|
26
|
+
Object.defineProperty(exports, "QueryConditionChain", { enumerable: true, get: function () { return query_condition_chain_1.default; } });
|
|
27
|
+
var query_join_condition_1 = require("./builder/condition/query-join-condition");
|
|
28
|
+
Object.defineProperty(exports, "QueryJoinCondition", { enumerable: true, get: function () { return query_join_condition_1.default; } });
|
|
29
|
+
var joined_tables_1 = require("./builder/join/joined-tables");
|
|
30
|
+
Object.defineProperty(exports, "JoinedTables", { enumerable: true, get: function () { return joined_tables_1.default; } });
|
|
31
|
+
var joined_tables_chain_1 = require("./builder/join/joined-tables-chain");
|
|
32
|
+
Object.defineProperty(exports, "JoinedTablesChain", { enumerable: true, get: function () { return joined_tables_chain_1.default; } });
|
|
33
|
+
var query_ordering_1 = require("./builder/other/query-ordering");
|
|
34
|
+
Object.defineProperty(exports, "QueryOrdering", { enumerable: true, get: function () { return query_ordering_1.default; } });
|
|
35
|
+
var select_query_1 = require("./builder/query/select-query");
|
|
36
|
+
Object.defineProperty(exports, "SelectQuery", { enumerable: true, get: function () { return select_query_1.default; } });
|
|
37
|
+
var table_query_1 = require("./builder/query/table-query");
|
|
38
|
+
Object.defineProperty(exports, "TableQuery", { enumerable: true, get: function () { return table_query_1.default; } });
|
|
39
|
+
var table_condition_query_1 = require("./builder/query/table-condition-query");
|
|
40
|
+
Object.defineProperty(exports, "TableConditionQuery", { enumerable: true, get: function () { return table_condition_query_1.default; } });
|
|
41
|
+
var query_source_1 = require("./builder/query-source");
|
|
42
|
+
Object.defineProperty(exports, "QuerySource", { enumerable: true, get: function () { return query_source_1.default; } });
|
|
43
|
+
var query_table_1 = require("./builder/query-table");
|
|
44
|
+
Object.defineProperty(exports, "QueryTable", { enumerable: true, get: function () { return query_table_1.default; } });
|
|
45
|
+
// Client:
|
|
46
|
+
var mysql_1 = require("./client/mysql");
|
|
47
|
+
Object.defineProperty(exports, "MySqlQuerySource", { enumerable: true, get: function () { return mysql_1.default; } });
|
|
48
|
+
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":[""],"names":[],"mappings":";AACA,WAAW;;;AAEX,8DAAuE;AAA9D,2GAAA,OAAO,OAAe;AAC/B,kEAA2E;AAAlE,+GAAA,OAAO,OAAiB;AACjC,wEAAiF;AAAxE,qHAAA,OAAO,OAAoB;AACpC,4DAAqE;AAA5D,yGAAA,OAAO,OAAc;AAC9B,gEAAyE;AAAhE,6GAAA,OAAO,OAAgB;AAChC,8DAAuE;AAA9D,2GAAA,OAAO,OAAe;AAC/B,gEAAyE;AAAhE,6GAAA,OAAO,OAAgB;AAChC,8DAAuE;AAA9D,2GAAA,OAAO,OAAe;AAE/B,qFAA6F;AAApF,8HAAA,OAAO,OAAwB;AACxC,uEAAgF;AAAvE,iHAAA,OAAO,OAAkB;AAClC,mFAA2F;AAAlF,4HAAA,OAAO,OAAuB;AACvC,iFAAyF;AAAhF,0HAAA,OAAO,OAAsB;AAEtC,8DAAuE;AAA9D,6GAAA,OAAO,OAAgB;AAChC,0EAAkF;AAAzE,wHAAA,OAAO,OAAqB;AAErC,iEAA0E;AAAjE,+GAAA,OAAO,OAAiB;AAEjC,6DAAsE;AAA7D,2GAAA,OAAO,OAAe;AAC/B,2DAAoE;AAA3D,yGAAA,OAAO,OAAc;AAC9B,+EAAuF;AAA9E,4HAAA,OAAO,OAAuB;AAEvC,uDAAgE;AAAvD,2GAAA,OAAO,OAAe;AAC/B,qDAA8D;AAArD,yGAAA,OAAO,OAAc;AAE9B,UAAU;AAEV,wCAA6D;AAApD,yGAAA,OAAO,OAAoB"}
|
package/package.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"tnp": {
|
|
3
|
+
"resources": [],
|
|
4
|
+
"type": "isomorphic-lib",
|
|
5
|
+
"version": "v18",
|
|
6
|
+
"overrided": {
|
|
7
|
+
"linkedFolders": [],
|
|
8
|
+
"ignoreDepsPattern": [],
|
|
9
|
+
"npmFixes": [],
|
|
10
|
+
"includeAsDev": [],
|
|
11
|
+
"includeOnly": [
|
|
12
|
+
"tnp-core"
|
|
13
|
+
],
|
|
14
|
+
"dependencies": {}
|
|
15
|
+
},
|
|
16
|
+
"smartContainerBuildTarget": "",
|
|
17
|
+
"linkedRepos": [],
|
|
18
|
+
"libReleaseOptions": {
|
|
19
|
+
"cliBuildNoDts": false,
|
|
20
|
+
"cliBuildObscure": false,
|
|
21
|
+
"cliBuildUglify": false,
|
|
22
|
+
"cliBuildIncludeNodeModules": false
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"name": "taon-type-sql",
|
|
26
|
+
"version": "18.0.9",
|
|
27
|
+
"typings": "dist/index.d.ts",
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "https://github.com/ggmod/type-sql.git"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"tnp-core": "~18.0.33"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {},
|
|
36
|
+
"lastBuildTagHash": "c4e842710b30acf53383e39275aa77d54b8ed2b1",
|
|
37
|
+
"main": "dist/app.electron.js"
|
|
38
|
+
}
|
package/src.d.ts
ADDED
package/taon.jsonc
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"resources": [],
|
|
3
|
+
"type": "isomorphic-lib",
|
|
4
|
+
"version": "v18",
|
|
5
|
+
"overrided": {
|
|
6
|
+
"linkedFolders": [],
|
|
7
|
+
"ignoreDepsPattern": [],
|
|
8
|
+
"npmFixes": [],
|
|
9
|
+
"includeAsDev": [],
|
|
10
|
+
"includeOnly": [
|
|
11
|
+
"tnp-core"
|
|
12
|
+
],
|
|
13
|
+
"dependencies": {}
|
|
14
|
+
},
|
|
15
|
+
"smartContainerBuildTarget": "",
|
|
16
|
+
"linkedRepos": [],
|
|
17
|
+
"libReleaseOptions": {
|
|
18
|
+
"cliBuildNoDts": false,
|
|
19
|
+
"cliBuildObscure": false,
|
|
20
|
+
"cliBuildUglify": false,
|
|
21
|
+
"cliBuildIncludeNodeModules": false
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -0,0 +1,359 @@
|
|
|
1
|
+
{
|
|
2
|
+
"domain": "taon-type-sql.example.domain.com",
|
|
3
|
+
"useDomain": false,
|
|
4
|
+
"title": "Taon Type Sql",
|
|
5
|
+
"pwa": {},
|
|
6
|
+
"isCoreProject": false,
|
|
7
|
+
"ip": "localhost",
|
|
8
|
+
"packageJSON": {
|
|
9
|
+
"tnp": {
|
|
10
|
+
"resources": [],
|
|
11
|
+
"type": "isomorphic-lib",
|
|
12
|
+
"version": "v18",
|
|
13
|
+
"overrided": {
|
|
14
|
+
"linkedFolders": [],
|
|
15
|
+
"ignoreDepsPattern": [],
|
|
16
|
+
"npmFixes": [],
|
|
17
|
+
"includeAsDev": [],
|
|
18
|
+
"includeOnly": [
|
|
19
|
+
"tnp-core"
|
|
20
|
+
],
|
|
21
|
+
"dependencies": {}
|
|
22
|
+
},
|
|
23
|
+
"smartContainerBuildTarget": "",
|
|
24
|
+
"linkedRepos": [],
|
|
25
|
+
"libReleaseOptions": {
|
|
26
|
+
"cliBuildNoDts": false,
|
|
27
|
+
"cliBuildObscure": false,
|
|
28
|
+
"cliBuildUglify": false,
|
|
29
|
+
"cliBuildIncludeNodeModules": false
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"name": "taon-type-sql",
|
|
33
|
+
"version": "18.0.9",
|
|
34
|
+
"typings": "dist/index.d.ts",
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "https://github.com/ggmod/type-sql.git"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"tnp-core": "~18.0.33"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@angular-builders/custom-webpack": "~18.0.0",
|
|
44
|
+
"@angular-devkit/build-angular": "~18.1.4",
|
|
45
|
+
"@angular-devkit/core": "~18.1.4",
|
|
46
|
+
"@angular-eslint/builder": "~18.2.0",
|
|
47
|
+
"@angular-eslint/eslint-plugin": "~18.2.0",
|
|
48
|
+
"@angular-eslint/eslint-plugin-template": "~18.2.0",
|
|
49
|
+
"@angular-eslint/schematics": "~18.2.0",
|
|
50
|
+
"@angular-eslint/template-parser": "~18.2.0",
|
|
51
|
+
"@angular-material-extensions/password-strength": "~16.0.0",
|
|
52
|
+
"@angular/animations": "~18.1.4",
|
|
53
|
+
"@angular/cdk": "~18.1.4",
|
|
54
|
+
"@angular/cli": "~18.1.4",
|
|
55
|
+
"@angular/common": "~18.1.4",
|
|
56
|
+
"@angular/compiler": "~18.1.4",
|
|
57
|
+
"@angular/compiler-cli": "~18.1.4",
|
|
58
|
+
"@angular/core": "~18.1.4",
|
|
59
|
+
"@angular/elements": "~18.1.4",
|
|
60
|
+
"@angular/forms": "~18.1.4",
|
|
61
|
+
"@angular/material": "~18.1.4",
|
|
62
|
+
"@angular/platform-browser": "~18.1.4",
|
|
63
|
+
"@angular/platform-browser-dynamic": "~18.1.4",
|
|
64
|
+
"@angular/pwa": "~18.1.4",
|
|
65
|
+
"@angular/router": "~18.1.4",
|
|
66
|
+
"@angular/service-worker": "~18.1.4",
|
|
67
|
+
"@babel/cli": "7.24.8",
|
|
68
|
+
"@compodoc/compodoc": "1.1.25",
|
|
69
|
+
"@iconify/icons-fa-solid": "1.2.4",
|
|
70
|
+
"@iconify/icons-mdi": "1.2.48",
|
|
71
|
+
"@inquirer/prompts": "5.3.8",
|
|
72
|
+
"@mdi/js": "7.4.47",
|
|
73
|
+
"@ng-matero/extensions": "18.1.2",
|
|
74
|
+
"@ngneat/falso": "7.2.0",
|
|
75
|
+
"@ngneat/hot-toast": "7.0.0",
|
|
76
|
+
"@ngneat/overview": "6.1.1",
|
|
77
|
+
"@ngneat/spectator": "19.0.0",
|
|
78
|
+
"@ngrx/component-store": "~18.0.2",
|
|
79
|
+
"@ngrx/data": "~18.0.2",
|
|
80
|
+
"@ngrx/effects": "~18.0.2",
|
|
81
|
+
"@ngrx/entity": "~18.0.2",
|
|
82
|
+
"@ngrx/router-store": "~18.0.2",
|
|
83
|
+
"@ngrx/schematics": "~18.0.2",
|
|
84
|
+
"@ngrx/store": "~18.0.2",
|
|
85
|
+
"@ngrx/store-devtools": "~18.0.2",
|
|
86
|
+
"@ngx-formly/core": "6.3.6",
|
|
87
|
+
"@ngx-formly/material": "6.3.6",
|
|
88
|
+
"@ngx-translate/core": "15.0.0",
|
|
89
|
+
"@ngx-translate/http-loader": "8.0.0",
|
|
90
|
+
"@sqltools/formatter": "1.2.5",
|
|
91
|
+
"@sweetalert2/ngx-sweetalert2": "12.4.0",
|
|
92
|
+
"@testdeck/jest": "0.3.3",
|
|
93
|
+
"@testdeck/mocha": "0.3.3",
|
|
94
|
+
"@types/chai": "4.3.17",
|
|
95
|
+
"@types/chokidar": "2.1.3",
|
|
96
|
+
"@types/dateformat": "1.0.1",
|
|
97
|
+
"@types/diff": "5.2.1",
|
|
98
|
+
"@types/express": "4.17.21",
|
|
99
|
+
"@types/express-fileupload": "1.5.0",
|
|
100
|
+
"@types/fs-extra": "7.0.0",
|
|
101
|
+
"@types/glob": "5.0.35",
|
|
102
|
+
"@types/http-proxy": "1.17.15",
|
|
103
|
+
"@types/http-proxy-middleware": "1.0.0",
|
|
104
|
+
"@types/jest": "29.5.12",
|
|
105
|
+
"@types/json-stringify-safe": "5.0.3",
|
|
106
|
+
"@types/json5": "0.0.29",
|
|
107
|
+
"@types/lockfile": "1.0.4",
|
|
108
|
+
"@types/lodash": "4.14.92",
|
|
109
|
+
"@types/mocha": "10.0.7",
|
|
110
|
+
"@types/node": "16.18.21",
|
|
111
|
+
"@types/node-notifier": "8.0.5",
|
|
112
|
+
"@types/oauth2orize": "1.11.5",
|
|
113
|
+
"@types/password-hash": "1.2.24",
|
|
114
|
+
"@types/progress": "2.0.7",
|
|
115
|
+
"@types/q": "1.5.8",
|
|
116
|
+
"@types/rimraf": "2.0.2",
|
|
117
|
+
"@types/semver": "7.5.8",
|
|
118
|
+
"@types/systeminformation": "3.54.1",
|
|
119
|
+
"@types/vinyl": "2.0.12",
|
|
120
|
+
"@types/watch": "1.0.6",
|
|
121
|
+
"@typescript-eslint/eslint-plugin": "8.0.1",
|
|
122
|
+
"@typescript-eslint/parser": "8.0.1",
|
|
123
|
+
"@vercel/ncc": "0.38.1",
|
|
124
|
+
"accepts": "1.3.8",
|
|
125
|
+
"ajv": "8.17.1",
|
|
126
|
+
"angular-material-css-vars": "7.0.0",
|
|
127
|
+
"angular-resize-event": "3.2.0",
|
|
128
|
+
"animate.css": "4.1.1",
|
|
129
|
+
"app-root-path": "3.1.0",
|
|
130
|
+
"axios": "1.7.3",
|
|
131
|
+
"background-worker-process": "~16.100.10",
|
|
132
|
+
"base32": "0.0.7",
|
|
133
|
+
"bcryptjs": "2.4.3",
|
|
134
|
+
"body-parser": "1.20.2",
|
|
135
|
+
"bootstrap": "5.3.3",
|
|
136
|
+
"buffer-shims": "1.0.0",
|
|
137
|
+
"bun": "1.1.22",
|
|
138
|
+
"callsite-record": "4.1.5",
|
|
139
|
+
"chai": "4.5.0",
|
|
140
|
+
"chalk": "2.3.2",
|
|
141
|
+
"check-node-version": "3.2.0",
|
|
142
|
+
"cheerio": "1.0.0",
|
|
143
|
+
"chokidar": "3.5.3",
|
|
144
|
+
"circular-json": "0.5.1",
|
|
145
|
+
"class-transformer": "0.5.1",
|
|
146
|
+
"class-validator": "0.14.1",
|
|
147
|
+
"cli-highlight": "2.1.11",
|
|
148
|
+
"command-exists": "1.2.2",
|
|
149
|
+
"compression": "1.7.4",
|
|
150
|
+
"concurrently": "8.2.2",
|
|
151
|
+
"content-type": "1.0.5",
|
|
152
|
+
"conventional-changelog-cli": "5.0.0",
|
|
153
|
+
"cookie-parser": "1.4.6",
|
|
154
|
+
"copy-paste": "1.5.3",
|
|
155
|
+
"cors": "2.8.5",
|
|
156
|
+
"cpr": "3.0.1",
|
|
157
|
+
"cross-env": "7.0.2",
|
|
158
|
+
"cross-spawn": "7.0.3",
|
|
159
|
+
"dateformat": "3.0.3",
|
|
160
|
+
"detect-mocha": "0.1.0",
|
|
161
|
+
"diff": "4.0.2",
|
|
162
|
+
"electron": "25.2.0",
|
|
163
|
+
"electron-builder": "24.4.0",
|
|
164
|
+
"electron-debug": "3.2.0",
|
|
165
|
+
"electron-reloader": "1.2.3",
|
|
166
|
+
"element-resize-detector": "1.2.4",
|
|
167
|
+
"enquirer": "2.4.1",
|
|
168
|
+
"enum-values": "1.2.1",
|
|
169
|
+
"errorhandler": "1.5.1",
|
|
170
|
+
"eslint": "9.9.0",
|
|
171
|
+
"eslint-config-prettier": "9.1.0",
|
|
172
|
+
"eslint-plugin-import": "latest",
|
|
173
|
+
"eslint-plugin-jsdoc": "latest",
|
|
174
|
+
"eslint-plugin-prefer-arrow": "latest",
|
|
175
|
+
"eslint-plugin-prettier": "5.2.1",
|
|
176
|
+
"eslint-plugin-react": "latest",
|
|
177
|
+
"express": "4.19.2",
|
|
178
|
+
"express-fileupload": "1.4.0",
|
|
179
|
+
"express-session": "1.18.0",
|
|
180
|
+
"file-loader": "1.1.11",
|
|
181
|
+
"file-saver": "2.0.5",
|
|
182
|
+
"file-type": "19.1.1",
|
|
183
|
+
"fkill": "6.1.0",
|
|
184
|
+
"font-awesome": "4.7.0",
|
|
185
|
+
"form-data": "4.0.0",
|
|
186
|
+
"fs-extra": "8.1.0",
|
|
187
|
+
"fuzzy": "0.1.3",
|
|
188
|
+
"glob": "7.1.2",
|
|
189
|
+
"google-libphonenumber": "3.2.38",
|
|
190
|
+
"gulp": "3.9.1",
|
|
191
|
+
"helmet": "7.1.0",
|
|
192
|
+
"hostile": "1.3.3",
|
|
193
|
+
"howler": "2.2.4",
|
|
194
|
+
"http-proxy": "1.18.1",
|
|
195
|
+
"http-proxy-middleware": "0.22.0-alpha",
|
|
196
|
+
"http-server": "0.13.0",
|
|
197
|
+
"image-focus": "1.2.1",
|
|
198
|
+
"immer": "10.0.2",
|
|
199
|
+
"immutable": "4.3.7",
|
|
200
|
+
"incremental-compiler": "~18.0.9",
|
|
201
|
+
"inquirer": "7.3.3",
|
|
202
|
+
"inquirer-autocomplete-prompt": "1.4.0",
|
|
203
|
+
"inquirer-autocomplete-standalone": "0.8.1",
|
|
204
|
+
"inquirer-select-pro": "1.0.0-alpha.7",
|
|
205
|
+
"is-elevated": "3.0.0",
|
|
206
|
+
"isomorphic-region-loader": "~18.0.9",
|
|
207
|
+
"istanbul-instrumenter-loader": "3.0.1",
|
|
208
|
+
"jest": "29.7.0",
|
|
209
|
+
"jest-date-mock": "1.0.10",
|
|
210
|
+
"jest-junit": "16.0.0",
|
|
211
|
+
"jest-marbles": "latest",
|
|
212
|
+
"jest-preset-angular": "14.2.2",
|
|
213
|
+
"jimp": "0.22.12",
|
|
214
|
+
"joi": "17.13.3",
|
|
215
|
+
"jscodeshift": "0.6.3",
|
|
216
|
+
"json-stringify-safe": "5.0.1",
|
|
217
|
+
"json10": "~18.0.9",
|
|
218
|
+
"json10-writer": "~18.0.9",
|
|
219
|
+
"json5": "2.2.3",
|
|
220
|
+
"json5-writer": "0.2.0",
|
|
221
|
+
"jszip": "3.10.1",
|
|
222
|
+
"karma-cli": "1.0.1",
|
|
223
|
+
"lnk": "1.0.1",
|
|
224
|
+
"localforage": "1.10.0",
|
|
225
|
+
"lockfile": "1.0.4",
|
|
226
|
+
"lodash": "4.17.21",
|
|
227
|
+
"lodash-walk-object": "~18.0.9",
|
|
228
|
+
"lowdb": "7.0.1",
|
|
229
|
+
"magic-renamer": "~18.0.9",
|
|
230
|
+
"material-design-icons": "3.0.1",
|
|
231
|
+
"method-override": "2.3.10",
|
|
232
|
+
"minimist": "1.2.8",
|
|
233
|
+
"mkdirp": "0.5.1",
|
|
234
|
+
"mocha": "10.7.3",
|
|
235
|
+
"moment": "2.30.1",
|
|
236
|
+
"ng-for-track-by-property": "18.0.1",
|
|
237
|
+
"ng-in-viewport": "16.1.0",
|
|
238
|
+
"ng-lock": "18.0.1",
|
|
239
|
+
"ng-packagr": "18.1.0",
|
|
240
|
+
"ng-talkback": "~18.0.8",
|
|
241
|
+
"ng2-logger": "~18.0.11",
|
|
242
|
+
"ng2-pdfjs-viewer": "18.0.0",
|
|
243
|
+
"ng2-rest": "~18.0.9",
|
|
244
|
+
"ng2-rest-swagger-generator": "18.0.6",
|
|
245
|
+
"ngx-ace-wrapper": "17.0.0",
|
|
246
|
+
"ngx-editor": "17.5.4",
|
|
247
|
+
"ngx-highlightjs": "12.0.0",
|
|
248
|
+
"ngx-moment": "6.0.2",
|
|
249
|
+
"ngx-monaco-editor": "12.0.0",
|
|
250
|
+
"ngx-photo-editor": "0.4.4",
|
|
251
|
+
"ngx-pipes": "3.2.2",
|
|
252
|
+
"ngx-progressbar": "11.1.0",
|
|
253
|
+
"ngx-scrollbar": "15.1.2",
|
|
254
|
+
"ngx-scrolltop": "18.0.0",
|
|
255
|
+
"ngx-store": "3.1.1",
|
|
256
|
+
"ngx-typed-js": "2.1.1",
|
|
257
|
+
"node-cli-tester": "~18.0.8",
|
|
258
|
+
"node-localstorage": "2.1.6",
|
|
259
|
+
"node-notifier": "10.0.1",
|
|
260
|
+
"node-polyfill-webpack-plugin": "2.0.1",
|
|
261
|
+
"nodemon": "2.0.22",
|
|
262
|
+
"npm-get-dependents": "1.0.1",
|
|
263
|
+
"npm-run": "4.1.2",
|
|
264
|
+
"omelette": "0.4.17",
|
|
265
|
+
"open": "7.2.1",
|
|
266
|
+
"ora": "3.4.0",
|
|
267
|
+
"passport": "0.7.0",
|
|
268
|
+
"passport-http-bearer": "1.0.1",
|
|
269
|
+
"password-hash": "1.2.2",
|
|
270
|
+
"path-to-regexp": "6.2.2",
|
|
271
|
+
"pica": "9.0.1",
|
|
272
|
+
"playwright": "1.43.1",
|
|
273
|
+
"portfinder": "1.0.21",
|
|
274
|
+
"prettier": "3.3.3",
|
|
275
|
+
"prettier-eslint": "16.3.0",
|
|
276
|
+
"pretty-error": "4.0.0",
|
|
277
|
+
"primeflex": "3.3.1",
|
|
278
|
+
"primeicons": "7.0.0",
|
|
279
|
+
"primeng": "17.18.8",
|
|
280
|
+
"progress": "2.0.3",
|
|
281
|
+
"prompts": "2.4.2",
|
|
282
|
+
"ps-list": "6.1.0",
|
|
283
|
+
"ps-node": "0.1.6",
|
|
284
|
+
"q": "1.5.1",
|
|
285
|
+
"rallax.js": "2.0.4",
|
|
286
|
+
"randomcolor": "0.5.3",
|
|
287
|
+
"record-replay-req-res-scenario": "~18.0.8",
|
|
288
|
+
"reflect-metadata": "0.2.2",
|
|
289
|
+
"rimraf": "2.6.2",
|
|
290
|
+
"rxjs": "~7.8.1",
|
|
291
|
+
"semver": "7.6.3",
|
|
292
|
+
"simple-git": "3.25.0",
|
|
293
|
+
"sinon": "18.0.0",
|
|
294
|
+
"sloc": "0.2.0",
|
|
295
|
+
"socket.io": "4.7.5",
|
|
296
|
+
"socket.io-client": "4.7.5",
|
|
297
|
+
"sort-package-json": "1.11.0",
|
|
298
|
+
"sql.js": "1.8.0",
|
|
299
|
+
"static-columns": "~18.0.10",
|
|
300
|
+
"string-similarity": "4.0.4",
|
|
301
|
+
"sudo-block": "3.0.0",
|
|
302
|
+
"supertest": "7.0.0",
|
|
303
|
+
"sweetalert2": "11.7.32",
|
|
304
|
+
"systeminformation": "3.45.7",
|
|
305
|
+
"taon": "^18",
|
|
306
|
+
"taon-storage": "18.0.5",
|
|
307
|
+
"taon-type-sql": "18.0.6",
|
|
308
|
+
"taon-typeorm": "18.0.5",
|
|
309
|
+
"task.js": "0.1.5",
|
|
310
|
+
"threads": "1.7.0",
|
|
311
|
+
"tnp": "~18.0.9",
|
|
312
|
+
"tnp-config": "~18.0.11",
|
|
313
|
+
"tnp-helpers": "~18.0.9",
|
|
314
|
+
"tnp-models": "~18.0.10",
|
|
315
|
+
"ts-debug": "1.3.0",
|
|
316
|
+
"ts-json-schema-generator": "2.3.0-next.5",
|
|
317
|
+
"ts-loader": "2.3.1",
|
|
318
|
+
"ts-node": "10.9.1",
|
|
319
|
+
"tslib": "~2.6.3",
|
|
320
|
+
"tslint": "6.1.3",
|
|
321
|
+
"turndown": "7.2.0",
|
|
322
|
+
"type-fest": "4.25.0",
|
|
323
|
+
"typedoc": "0.26.5",
|
|
324
|
+
"typedoc-plugin-markdown": "4.2.3",
|
|
325
|
+
"typescript": "~5.5.4",
|
|
326
|
+
"typescript-class-helpers": "~18.0.10",
|
|
327
|
+
"typescript-formatter": "~7.2.2",
|
|
328
|
+
"underscore": "1.13.7",
|
|
329
|
+
"uuid": "10.0.0",
|
|
330
|
+
"validator": "13.5.2",
|
|
331
|
+
"video.js": "8.3.0",
|
|
332
|
+
"vpn-split": "~18.0.5",
|
|
333
|
+
"vscode": "1.1.37",
|
|
334
|
+
"wait-on": "7.0.1",
|
|
335
|
+
"watch": "1.0.2",
|
|
336
|
+
"webpack": "~5.80",
|
|
337
|
+
"webpack-dev-middleware": "~6.1.3",
|
|
338
|
+
"webpack-dev-server": "~5.0.4",
|
|
339
|
+
"yup": "1.3.3",
|
|
340
|
+
"zone.js": "~0.13.0"
|
|
341
|
+
},
|
|
342
|
+
"lastBuildTagHash": "c4e842710b30acf53383e39275aa77d54b8ed2b1",
|
|
343
|
+
"main": "dist/app.electron.js"
|
|
344
|
+
},
|
|
345
|
+
"build": {
|
|
346
|
+
"number": 165,
|
|
347
|
+
"date": "2024-08-28T12:52:05.000Z",
|
|
348
|
+
"hash": "4d26182f70709ae1919186746b4d9245699ee1e0"
|
|
349
|
+
},
|
|
350
|
+
"currentProjectName": "taon-type-sql",
|
|
351
|
+
"currentProjectGenericName": "taon-type-sql",
|
|
352
|
+
"currentProjectType": "isomorphic-lib",
|
|
353
|
+
"currentFrameworkVersion": "18.0.9",
|
|
354
|
+
"isStandaloneProject": true,
|
|
355
|
+
"isSmartContainer": false,
|
|
356
|
+
"pathesTsconfig": "\"paths\": {\"taon-type-sql\":[\"./src/lib\"],\"taon-type-sql/*\":[\"./src/lib/*\"]},",
|
|
357
|
+
"customRootDir": "\"rootDir\": \"./src\",",
|
|
358
|
+
"currentLibProjectSourceFolder": "src"
|
|
359
|
+
}
|
package/websql/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# MyLib
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
+
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
|
|
10
|
+
## Build
|
|
11
|
+
|
|
12
|
+
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
+
|
|
14
|
+
## Publishing
|
|
15
|
+
|
|
16
|
+
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
+
|
|
18
|
+
## Running unit tests
|
|
19
|
+
|
|
20
|
+
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
+
|
|
22
|
+
## Further help
|
|
23
|
+
|
|
24
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import QueryColumn from "./query-column";
|
|
2
|
+
import NumberColumn from "./number-column";
|
|
3
|
+
export default class BasicColumn extends QueryColumn {
|
|
4
|
+
constructor(table, name, modifiers = []) {
|
|
5
|
+
super(table, name, modifiers);
|
|
6
|
+
}
|
|
7
|
+
count() {
|
|
8
|
+
return new NumberColumn(this._table, this._name, this._modifiers.concat({ name: 'count' }));
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
;
|
|
12
|
+
({}); // @--end-of-file-for-module=taon-type-sql lib/builder/column/basic-column.ts
|
|
13
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFzaWMtY29sdW1uLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vdG1wLWxpYnMtZm9yLWRpc3Qtd2Vic3FsL3Rhb24tdHlwZS1zcWwvcHJvamVjdHMvdGFvbi10eXBlLXNxbC9zcmMvbGliL2J1aWxkZXIvY29sdW1uL2Jhc2ljLWNvbHVtbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFHQSxPQUFPLFdBQVcsTUFBTSxnQkFBZ0IsQ0FBQztBQUN6QyxPQUFPLFlBQVksTUFBTSxpQkFBaUIsQ0FBQztBQUszQyxNQUFNLENBQUMsT0FBTyxPQUFPLFdBQW1ELFNBQVEsV0FBcUI7SUFFakcsWUFBWSxLQUFZLEVBQUUsSUFBZ0IsRUFBRSxZQUE4QixFQUFFO1FBQ3hFLEtBQUssQ0FBQyxLQUFLLEVBQUUsSUFBSSxFQUFFLFNBQVMsQ0FBQyxDQUFDO0lBQ2xDLENBQUM7SUFFRCxLQUFLO1FBQ0QsT0FBTyxJQUFJLFlBQVksQ0FBQyxJQUFJLENBQUMsTUFBTSxFQUFFLElBQUksQ0FBQyxLQUFLLEVBQUUsSUFBSSxDQUFDLFVBQVUsQ0FBQyxNQUFNLENBQUMsRUFBRSxJQUFJLEVBQUUsT0FBTyxFQUFFLENBQUMsQ0FBQyxDQUFDO0lBQ2hHLENBQUM7Q0FDSjtBQUVBLENBQUM7QUFBQSxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsNkVBQTZFIiwic291cmNlc0NvbnRlbnQiOlsiXG5cbmltcG9ydCBRdWVyeVRhYmxlIGZyb20gXCIuLi9xdWVyeS10YWJsZVwiO1xuaW1wb3J0IFF1ZXJ5Q29sdW1uIGZyb20gXCIuL3F1ZXJ5LWNvbHVtblwiO1xuaW1wb3J0IE51bWJlckNvbHVtbiBmcm9tIFwiLi9udW1iZXItY29sdW1uXCI7XG5pbXBvcnQge0NvbHVtbk1vZGlmaWVyLCBDb2x1bW5OYW1lfSBmcm9tIFwiLi4vaGVscGVycy9pbnRlcm5hbC10eXBlc1wiO1xuXG5cblxuZXhwb3J0IGRlZmF1bHQgY2xhc3MgQmFzaWNDb2x1bW48VGFibGUgZXh0ZW5kcyBRdWVyeVRhYmxlPGFueSwgYW55PiwgVD4gZXh0ZW5kcyBRdWVyeUNvbHVtbjxUYWJsZSwgVD4ge1xuXG4gICAgY29uc3RydWN0b3IodGFibGU6IFRhYmxlLCBuYW1lOiBDb2x1bW5OYW1lLCBtb2RpZmllcnM6IENvbHVtbk1vZGlmaWVyW10gPSBbXSkge1xuICAgICAgICBzdXBlcih0YWJsZSwgbmFtZSwgbW9kaWZpZXJzKTtcbiAgICB9XG5cbiAgICBjb3VudCgpOiBOdW1iZXJDb2x1bW48VGFibGU+IHtcbiAgICAgICAgcmV0dXJuIG5ldyBOdW1iZXJDb2x1bW4odGhpcy5fdGFibGUsIHRoaXMuX25hbWUsIHRoaXMuX21vZGlmaWVycy5jb25jYXQoeyBuYW1lOiAnY291bnQnIH0pKTtcbiAgICB9XG59XG5cbiA7KHt9KTsgLy8gQC0tZW5kLW9mLWZpbGUtZm9yLW1vZHVsZT10YW9uLXR5cGUtc3FsIGxpYi9idWlsZGVyL2NvbHVtbi9iYXNpYy1jb2x1bW4udHMiXX0=
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import NumberColumn from "./number-column";
|
|
2
|
+
import ValueColumn from "./value-column";
|
|
3
|
+
export default class BooleanColumn extends ValueColumn {
|
|
4
|
+
constructor(table, name, modifiers = []) {
|
|
5
|
+
super(table, name, modifiers);
|
|
6
|
+
this._type = 'boolean';
|
|
7
|
+
}
|
|
8
|
+
count() {
|
|
9
|
+
return new NumberColumn(this._table, this._name, this._modifiers.concat({ name: 'count' }));
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
;
|
|
13
|
+
({}); // @--end-of-file-for-module=taon-type-sql lib/builder/column/boolean-column.ts
|
|
14
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYm9vbGVhbi1jb2x1bW4uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi90bXAtbGlicy1mb3ItZGlzdC13ZWJzcWwvdGFvbi10eXBlLXNxbC9wcm9qZWN0cy90YW9uLXR5cGUtc3FsL3NyYy9saWIvYnVpbGRlci9jb2x1bW4vYm9vbGVhbi1jb2x1bW4udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBR0EsT0FBTyxZQUFZLE1BQU0saUJBQWlCLENBQUM7QUFDM0MsT0FBTyxXQUFXLE1BQU0sZ0JBQWdCLENBQUM7QUFJekMsTUFBTSxDQUFDLE9BQU8sT0FBTyxhQUFrRCxTQUFRLFdBQTJCO0lBSXRHLFlBQVksS0FBWSxFQUFFLElBQWdCLEVBQUUsWUFBOEIsRUFBRTtRQUN4RSxLQUFLLENBQUMsS0FBSyxFQUFFLElBQUksRUFBRSxTQUFTLENBQUMsQ0FBQztRQUh4QixVQUFLLEdBQUcsU0FBUyxDQUFDO0lBSTVCLENBQUM7SUFFRCxLQUFLO1FBQ0QsT0FBTyxJQUFJLFlBQVksQ0FBQyxJQUFJLENBQUMsTUFBTSxFQUFFLElBQUksQ0FBQyxLQUFLLEVBQUUsSUFBSSxDQUFDLFVBQVUsQ0FBQyxNQUFNLENBQUMsRUFBRSxJQUFJLEVBQUUsT0FBTyxFQUFFLENBQUMsQ0FBQyxDQUFDO0lBQ2hHLENBQUM7Q0FFSjtBQUVBLENBQUM7QUFBQSxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsK0VBQStFIiwic291cmNlc0NvbnRlbnQiOlsiXG5cbmltcG9ydCBRdWVyeVRhYmxlIGZyb20gXCIuLi9xdWVyeS10YWJsZVwiO1xuaW1wb3J0IE51bWJlckNvbHVtbiBmcm9tIFwiLi9udW1iZXItY29sdW1uXCI7XG5pbXBvcnQgVmFsdWVDb2x1bW4gZnJvbSBcIi4vdmFsdWUtY29sdW1uXCI7XG5pbXBvcnQge0NvbHVtbk1vZGlmaWVyLCBDb2x1bW5OYW1lfSBmcm9tIFwiLi4vaGVscGVycy9pbnRlcm5hbC10eXBlc1wiO1xuXG5cbmV4cG9ydCBkZWZhdWx0IGNsYXNzIEJvb2xlYW5Db2x1bW48VGFibGUgZXh0ZW5kcyBRdWVyeVRhYmxlPGFueSwgYW55Pj4gZXh0ZW5kcyBWYWx1ZUNvbHVtbjxUYWJsZSwgYm9vbGVhbj4ge1xuXG4gICAgcHJvdGVjdGVkIF90eXBlID0gJ2Jvb2xlYW4nO1xuXG4gICAgY29uc3RydWN0b3IodGFibGU6IFRhYmxlLCBuYW1lOiBDb2x1bW5OYW1lLCBtb2RpZmllcnM6IENvbHVtbk1vZGlmaWVyW10gPSBbXSkge1xuICAgICAgICBzdXBlcih0YWJsZSwgbmFtZSwgbW9kaWZpZXJzKTtcbiAgICB9XG5cbiAgICBjb3VudCgpOiBOdW1iZXJDb2x1bW48VGFibGU+IHtcbiAgICAgICAgcmV0dXJuIG5ldyBOdW1iZXJDb2x1bW4odGhpcy5fdGFibGUsIHRoaXMuX25hbWUsIHRoaXMuX21vZGlmaWVycy5jb25jYXQoeyBuYW1lOiAnY291bnQnIH0pKTtcbiAgICB9XG5cbn1cblxuIDsoe30pOyAvLyBALS1lbmQtb2YtZmlsZS1mb3ItbW9kdWxlPXRhb24tdHlwZS1zcWwgbGliL2J1aWxkZXIvY29sdW1uL2Jvb2xlYW4tY29sdW1uLnRzIl19
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import QueryColumnCondition from "../condition/query-column-condition";
|
|
2
|
+
import ValueColumn from "./value-column";
|
|
3
|
+
class ComparableColumn extends ValueColumn {
|
|
4
|
+
constructor(table, name, modifiers = []) {
|
|
5
|
+
super(table, name, modifiers);
|
|
6
|
+
}
|
|
7
|
+
lt(value) {
|
|
8
|
+
return new QueryColumnCondition(this, 'lt', value);
|
|
9
|
+
}
|
|
10
|
+
gt(value) {
|
|
11
|
+
return new QueryColumnCondition(this, 'gt', value);
|
|
12
|
+
}
|
|
13
|
+
lte(value) {
|
|
14
|
+
return new QueryColumnCondition(this, 'lte', value);
|
|
15
|
+
}
|
|
16
|
+
gte(value) {
|
|
17
|
+
return new QueryColumnCondition(this, 'gte', value);
|
|
18
|
+
}
|
|
19
|
+
in(values) {
|
|
20
|
+
return new QueryColumnCondition(this, 'in', ...values);
|
|
21
|
+
}
|
|
22
|
+
notIn(values) {
|
|
23
|
+
return new QueryColumnCondition(this, 'not-in', ...values);
|
|
24
|
+
}
|
|
25
|
+
between(value1, value2) {
|
|
26
|
+
return new QueryColumnCondition(this, 'between', value1, value2);
|
|
27
|
+
}
|
|
28
|
+
notBetween(value1, value2) {
|
|
29
|
+
return new QueryColumnCondition(this, 'not-between', value1, value2);
|
|
30
|
+
}
|
|
31
|
+
min() {
|
|
32
|
+
return new this.constructor(this._table, this._name, this._modifiers.concat({ name: 'min' }));
|
|
33
|
+
}
|
|
34
|
+
max() {
|
|
35
|
+
return new this.constructor(this._table, this._name, this._modifiers.concat({ name: 'max' }));
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
export default ComparableColumn;
|
|
39
|
+
;
|
|
40
|
+
({}); // @--end-of-file-for-module=taon-type-sql lib/builder/column/comparable-column.ts
|
|
41
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tcGFyYWJsZS1jb2x1bW4uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi90bXAtbGlicy1mb3ItZGlzdC13ZWJzcWwvdGFvbi10eXBlLXNxbC9wcm9qZWN0cy90YW9uLXR5cGUtc3FsL3NyYy9saWIvYnVpbGRlci9jb2x1bW4vY29tcGFyYWJsZS1jb2x1bW4udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsT0FBTyxvQkFBb0IsTUFBTSxxQ0FBcUMsQ0FBQztBQUV2RSxPQUFPLFdBQVcsTUFBTSxnQkFBZ0IsQ0FBQztBQUl6QyxNQUFlLGdCQUF3RCxTQUFRLFdBQXFCO0lBRWhHLFlBQVksS0FBWSxFQUFFLElBQWdCLEVBQUUsWUFBOEIsRUFBRTtRQUN4RSxLQUFLLENBQUMsS0FBSyxFQUFFLElBQUksRUFBRSxTQUFTLENBQUMsQ0FBQztJQUNsQyxDQUFDO0lBRUQsRUFBRSxDQUFDLEtBQVE7UUFDUCxPQUFPLElBQUksb0JBQW9CLENBQVcsSUFBSSxFQUFFLElBQUksRUFBRSxLQUFLLENBQUMsQ0FBQztJQUNqRSxDQUFDO0lBRUQsRUFBRSxDQUFDLEtBQVE7UUFDUCxPQUFPLElBQUksb0JBQW9CLENBQVcsSUFBSSxFQUFFLElBQUksRUFBRSxLQUFLLENBQUMsQ0FBQztJQUNqRSxDQUFDO0lBRUQsR0FBRyxDQUFDLEtBQVE7UUFDUixPQUFPLElBQUksb0JBQW9CLENBQVcsSUFBSSxFQUFFLEtBQUssRUFBRSxLQUFLLENBQUMsQ0FBQztJQUNsRSxDQUFDO0lBRUQsR0FBRyxDQUFDLEtBQVE7UUFDUixPQUFPLElBQUksb0JBQW9CLENBQVcsSUFBSSxFQUFFLEtBQUssRUFBRSxLQUFLLENBQUMsQ0FBQztJQUNsRSxDQUFDO0lBRUQsRUFBRSxDQUFDLE1BQVc7UUFDVixPQUFPLElBQUksb0JBQW9CLENBQVcsSUFBSSxFQUFFLElBQUksRUFBRSxHQUFHLE1BQU0sQ0FBQyxDQUFDO0lBQ3JFLENBQUM7SUFFRCxLQUFLLENBQUMsTUFBVztRQUNiLE9BQU8sSUFBSSxvQkFBb0IsQ0FBVyxJQUFJLEVBQUUsUUFBUSxFQUFFLEdBQUcsTUFBTSxDQUFDLENBQUM7SUFDekUsQ0FBQztJQUVELE9BQU8sQ0FBQyxNQUFTLEVBQUUsTUFBUztRQUN4QixPQUFPLElBQUksb0JBQW9CLENBQVcsSUFBSSxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsTUFBTSxDQUFDLENBQUM7SUFDL0UsQ0FBQztJQUVELFVBQVUsQ0FBQyxNQUFTLEVBQUUsTUFBUztRQUMzQixPQUFPLElBQUksb0JBQW9CLENBQVcsSUFBSSxFQUFFLGFBQWEsRUFBRSxNQUFNLEVBQUUsTUFBTSxDQUFDLENBQUM7SUFDbkYsQ0FBQztJQUlELEdBQUc7UUFDQyxPQUFPLElBQVUsSUFBSSxDQUFDLFdBQVksQ0FBQyxJQUFJLENBQUMsTUFBTSxFQUFFLElBQUksQ0FBQyxLQUFLLEVBQUUsSUFBSSxDQUFDLFVBQVUsQ0FBQyxNQUFNLENBQUMsRUFBRSxJQUFJLEVBQUUsS0FBSyxFQUFFLENBQUMsQ0FBQyxDQUFDO0lBQ3pHLENBQUM7SUFFRCxHQUFHO1FBQ0MsT0FBTyxJQUFVLElBQUksQ0FBQyxXQUFZLENBQUMsSUFBSSxDQUFDLE1BQU0sRUFBRSxJQUFJLENBQUMsS0FBSyxFQUFFLElBQUksQ0FBQyxVQUFVLENBQUMsTUFBTSxDQUFDLEVBQUUsSUFBSSxFQUFFLEtBQUssRUFBRSxDQUFDLENBQUMsQ0FBQztJQUN6RyxDQUFDO0NBQ0o7QUFFRCxlQUFlLGdCQUFnQixDQUFDO0FBRS9CLENBQUM7QUFBQSxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsa0ZBQWtGIiwic291cmNlc0NvbnRlbnQiOlsiXG5cbmltcG9ydCBRdWVyeUNvbHVtbkNvbmRpdGlvbiBmcm9tIFwiLi4vY29uZGl0aW9uL3F1ZXJ5LWNvbHVtbi1jb25kaXRpb25cIjtcbmltcG9ydCBRdWVyeVRhYmxlIGZyb20gXCIuLi9xdWVyeS10YWJsZVwiO1xuaW1wb3J0IFZhbHVlQ29sdW1uIGZyb20gXCIuL3ZhbHVlLWNvbHVtblwiO1xuaW1wb3J0IHtDb2x1bW5Nb2RpZmllciwgQ29sdW1uTmFtZX0gZnJvbSBcIi4uL2hlbHBlcnMvaW50ZXJuYWwtdHlwZXNcIjtcblxuXG5hYnN0cmFjdCBjbGFzcyBDb21wYXJhYmxlQ29sdW1uPFRhYmxlIGV4dGVuZHMgUXVlcnlUYWJsZTxhbnksIGFueT4sIFQ+IGV4dGVuZHMgVmFsdWVDb2x1bW48VGFibGUsIFQ+IHtcblxuICAgIGNvbnN0cnVjdG9yKHRhYmxlOiBUYWJsZSwgbmFtZTogQ29sdW1uTmFtZSwgbW9kaWZpZXJzOiBDb2x1bW5Nb2RpZmllcltdID0gW10pIHtcbiAgICAgICAgc3VwZXIodGFibGUsIG5hbWUsIG1vZGlmaWVycyk7XG4gICAgfVxuXG4gICAgbHQodmFsdWU6IFQpIHtcbiAgICAgICAgcmV0dXJuIG5ldyBRdWVyeUNvbHVtbkNvbmRpdGlvbjxUYWJsZSwgVD4odGhpcywgJ2x0JywgdmFsdWUpO1xuICAgIH1cblxuICAgIGd0KHZhbHVlOiBUKSB7XG4gICAgICAgIHJldHVybiBuZXcgUXVlcnlDb2x1bW5Db25kaXRpb248VGFibGUsIFQ+KHRoaXMsICdndCcsIHZhbHVlKTtcbiAgICB9XG5cbiAgICBsdGUodmFsdWU6IFQpIHtcbiAgICAgICAgcmV0dXJuIG5ldyBRdWVyeUNvbHVtbkNvbmRpdGlvbjxUYWJsZSwgVD4odGhpcywgJ2x0ZScsIHZhbHVlKTtcbiAgICB9XG5cbiAgICBndGUodmFsdWU6IFQpIHtcbiAgICAgICAgcmV0dXJuIG5ldyBRdWVyeUNvbHVtbkNvbmRpdGlvbjxUYWJsZSwgVD4odGhpcywgJ2d0ZScsIHZhbHVlKTtcbiAgICB9XG5cbiAgICBpbih2YWx1ZXM6IFRbXSkge1xuICAgICAgICByZXR1cm4gbmV3IFF1ZXJ5Q29sdW1uQ29uZGl0aW9uPFRhYmxlLCBUPih0aGlzLCAnaW4nLCAuLi52YWx1ZXMpO1xuICAgIH1cblxuICAgIG5vdEluKHZhbHVlczogVFtdKSB7XG4gICAgICAgIHJldHVybiBuZXcgUXVlcnlDb2x1bW5Db25kaXRpb248VGFibGUsIFQ+KHRoaXMsICdub3QtaW4nLCAuLi52YWx1ZXMpO1xuICAgIH1cblxuICAgIGJldHdlZW4odmFsdWUxOiBULCB2YWx1ZTI6IFQpIHtcbiAgICAgICAgcmV0dXJuIG5ldyBRdWVyeUNvbHVtbkNvbmRpdGlvbjxUYWJsZSwgVD4odGhpcywgJ2JldHdlZW4nLCB2YWx1ZTEsIHZhbHVlMik7XG4gICAgfVxuXG4gICAgbm90QmV0d2Vlbih2YWx1ZTE6IFQsIHZhbHVlMjogVCkge1xuICAgICAgICByZXR1cm4gbmV3IFF1ZXJ5Q29sdW1uQ29uZGl0aW9uPFRhYmxlLCBUPih0aGlzLCAnbm90LWJldHdlZW4nLCB2YWx1ZTEsIHZhbHVlMik7XG4gICAgfVxuXG5cblxuICAgIG1pbigpOiB0aGlzIHtcbiAgICAgICAgcmV0dXJuIG5ldyAoPGFueT50aGlzLmNvbnN0cnVjdG9yKSh0aGlzLl90YWJsZSwgdGhpcy5fbmFtZSwgdGhpcy5fbW9kaWZpZXJzLmNvbmNhdCh7IG5hbWU6ICdtaW4nIH0pKTtcbiAgICB9XG5cbiAgICBtYXgoKTogdGhpcyB7XG4gICAgICAgIHJldHVybiBuZXcgKDxhbnk+dGhpcy5jb25zdHJ1Y3RvcikodGhpcy5fdGFibGUsIHRoaXMuX25hbWUsIHRoaXMuX21vZGlmaWVycy5jb25jYXQoeyBuYW1lOiAnbWF4JyB9KSk7XG4gICAgfVxufVxuXG5leHBvcnQgZGVmYXVsdCBDb21wYXJhYmxlQ29sdW1uO1xuXG4gOyh7fSk7IC8vIEAtLWVuZC1vZi1maWxlLWZvci1tb2R1bGU9dGFvbi10eXBlLXNxbCBsaWIvYnVpbGRlci9jb2x1bW4vY29tcGFyYWJsZS1jb2x1bW4udHMiXX0=
|