@balena/abstract-sql-compiler 11.0.0-build-11-x-b2280608fff69d9959999c79db6245c4ad561bbc-1 → 11.0.0-build-11-x-7511b8ebe5a9461f20add0ed97d0670ed3b5a479-1
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/package.json +5 -2
- package/.github/workflows/flowzone.yml +0 -21
- package/.husky/pre-commit +0 -2
- package/.versionbot/CHANGELOG.yml +0 -10729
- package/CHANGELOG.md +0 -3515
- package/repo.yml +0 -12
- package/src/abstract-sql-compiler.ts +0 -1138
- package/src/abstract-sql-optimizer.ts +0 -1632
- package/src/abstract-sql-rules-to-sql.ts +0 -1730
- package/src/abstract-sql-schema-optimizer.ts +0 -172
- package/src/referenced-fields.ts +0 -600
- package/test/abstract-sql/aggregate-json.ts +0 -49
- package/test/abstract-sql/aggregate.ts +0 -161
- package/test/abstract-sql/and-or-boolean-optimisations.ts +0 -115
- package/test/abstract-sql/case-when-else.ts +0 -48
- package/test/abstract-sql/cast.ts +0 -25
- package/test/abstract-sql/coalesce.ts +0 -24
- package/test/abstract-sql/comparisons.ts +0 -360
- package/test/abstract-sql/dates.ts +0 -512
- package/test/abstract-sql/duration.ts +0 -56
- package/test/abstract-sql/empty-query-optimisations.ts +0 -54
- package/test/abstract-sql/functions-wrapper.ts +0 -70
- package/test/abstract-sql/get-referenced-fields.ts +0 -674
- package/test/abstract-sql/get-rule-referenced-fields.ts +0 -345
- package/test/abstract-sql/insert-query.ts +0 -22
- package/test/abstract-sql/is-distinct.ts +0 -102
- package/test/abstract-sql/joins.ts +0 -84
- package/test/abstract-sql/json.ts +0 -58
- package/test/abstract-sql/math.ts +0 -467
- package/test/abstract-sql/nested-in-optimisations.ts +0 -200
- package/test/abstract-sql/not-not-optimisations.ts +0 -15
- package/test/abstract-sql/schema-checks.ts +0 -168
- package/test/abstract-sql/schema-informative-reference.ts +0 -420
- package/test/abstract-sql/schema-rule-optimization.ts +0 -120
- package/test/abstract-sql/schema-rule-to-check.ts +0 -393
- package/test/abstract-sql/schema-views.ts +0 -73
- package/test/abstract-sql/test.ts +0 -192
- package/test/abstract-sql/text.ts +0 -168
- package/test/model.sbvr +0 -60
- package/test/odata/expand.ts +0 -674
- package/test/odata/fields.ts +0 -59
- package/test/odata/filterby.ts +0 -1517
- package/test/odata/orderby.ts +0 -96
- package/test/odata/paging.ts +0 -48
- package/test/odata/resource-parsing.ts +0 -568
- package/test/odata/select.ts +0 -119
- package/test/odata/stress.ts +0 -93
- package/test/odata/test.ts +0 -297
- package/test/sbvr/pilots.ts +0 -1097
- package/test/sbvr/reference-type.ts +0 -211
- package/test/sbvr/test.ts +0 -101
- package/tsconfig.build.json +0 -6
- package/tsconfig.json +0 -25
package/package.json
CHANGED
@@ -1,10 +1,13 @@
|
|
1
1
|
{
|
2
2
|
"name": "@balena/abstract-sql-compiler",
|
3
|
-
"version": "11.0.0-build-11-x-
|
3
|
+
"version": "11.0.0-build-11-x-7511b8ebe5a9461f20add0ed97d0670ed3b5a479-1",
|
4
4
|
"description": "A translator for abstract sql into sql.",
|
5
5
|
"type": "module",
|
6
6
|
"main": "out/abstract-sql-compiler.js",
|
7
7
|
"types": "out/abstract-sql-compiler.d.ts",
|
8
|
+
"files": [
|
9
|
+
"out/"
|
10
|
+
],
|
8
11
|
"scripts": {
|
9
12
|
"build": "tsc --project ./tsconfig.build.json",
|
10
13
|
"pretest": "npm run build",
|
@@ -56,6 +59,6 @@
|
|
56
59
|
"npm": ">=10.7.0"
|
57
60
|
},
|
58
61
|
"versionist": {
|
59
|
-
"publishedAt": "2025-
|
62
|
+
"publishedAt": "2025-08-01T11:53:55.062Z"
|
60
63
|
}
|
61
64
|
}
|
@@ -1,21 +0,0 @@
|
|
1
|
-
name: Flowzone
|
2
|
-
|
3
|
-
on:
|
4
|
-
pull_request:
|
5
|
-
types: [opened, synchronize, closed]
|
6
|
-
branches: [main, master]
|
7
|
-
# allow external contributions to use secrets within trusted code
|
8
|
-
pull_request_target:
|
9
|
-
types: [opened, synchronize, closed]
|
10
|
-
branches: [main, master]
|
11
|
-
|
12
|
-
jobs:
|
13
|
-
flowzone:
|
14
|
-
name: Flowzone
|
15
|
-
uses: product-os/flowzone/.github/workflows/flowzone.yml@master
|
16
|
-
# prevent duplicate workflows and only allow one `pull_request` or `pull_request_target` for
|
17
|
-
# internal or external contributions respectively
|
18
|
-
if: |
|
19
|
-
(github.event.pull_request.head.repo.full_name == github.repository && github.event_name == 'pull_request') ||
|
20
|
-
(github.event.pull_request.head.repo.full_name != github.repository && github.event_name == 'pull_request_target')
|
21
|
-
secrets: inherit
|
package/.husky/pre-commit
DELETED