@balena/abstract-sql-compiler 11.0.0-build-11-x-45529f014aa1c181f338c0f7348767f2990a9084-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.
Files changed (53) hide show
  1. package/package.json +5 -2
  2. package/.github/workflows/flowzone.yml +0 -21
  3. package/.husky/pre-commit +0 -2
  4. package/.versionbot/CHANGELOG.yml +0 -10729
  5. package/CHANGELOG.md +0 -3515
  6. package/repo.yml +0 -12
  7. package/src/abstract-sql-compiler.ts +0 -1138
  8. package/src/abstract-sql-optimizer.ts +0 -1632
  9. package/src/abstract-sql-rules-to-sql.ts +0 -1730
  10. package/src/abstract-sql-schema-optimizer.ts +0 -172
  11. package/src/referenced-fields.ts +0 -600
  12. package/test/abstract-sql/aggregate-json.ts +0 -49
  13. package/test/abstract-sql/aggregate.ts +0 -161
  14. package/test/abstract-sql/and-or-boolean-optimisations.ts +0 -115
  15. package/test/abstract-sql/case-when-else.ts +0 -48
  16. package/test/abstract-sql/cast.ts +0 -25
  17. package/test/abstract-sql/coalesce.ts +0 -24
  18. package/test/abstract-sql/comparisons.ts +0 -360
  19. package/test/abstract-sql/dates.ts +0 -512
  20. package/test/abstract-sql/duration.ts +0 -56
  21. package/test/abstract-sql/empty-query-optimisations.ts +0 -54
  22. package/test/abstract-sql/functions-wrapper.ts +0 -70
  23. package/test/abstract-sql/get-referenced-fields.ts +0 -674
  24. package/test/abstract-sql/get-rule-referenced-fields.ts +0 -345
  25. package/test/abstract-sql/insert-query.ts +0 -22
  26. package/test/abstract-sql/is-distinct.ts +0 -102
  27. package/test/abstract-sql/joins.ts +0 -84
  28. package/test/abstract-sql/json.ts +0 -58
  29. package/test/abstract-sql/math.ts +0 -467
  30. package/test/abstract-sql/nested-in-optimisations.ts +0 -200
  31. package/test/abstract-sql/not-not-optimisations.ts +0 -15
  32. package/test/abstract-sql/schema-checks.ts +0 -168
  33. package/test/abstract-sql/schema-informative-reference.ts +0 -420
  34. package/test/abstract-sql/schema-rule-optimization.ts +0 -120
  35. package/test/abstract-sql/schema-rule-to-check.ts +0 -393
  36. package/test/abstract-sql/schema-views.ts +0 -73
  37. package/test/abstract-sql/test.ts +0 -192
  38. package/test/abstract-sql/text.ts +0 -168
  39. package/test/model.sbvr +0 -60
  40. package/test/odata/expand.ts +0 -674
  41. package/test/odata/fields.ts +0 -59
  42. package/test/odata/filterby.ts +0 -1517
  43. package/test/odata/orderby.ts +0 -96
  44. package/test/odata/paging.ts +0 -48
  45. package/test/odata/resource-parsing.ts +0 -568
  46. package/test/odata/select.ts +0 -119
  47. package/test/odata/stress.ts +0 -93
  48. package/test/odata/test.ts +0 -297
  49. package/test/sbvr/pilots.ts +0 -1097
  50. package/test/sbvr/reference-type.ts +0 -211
  51. package/test/sbvr/test.ts +0 -101
  52. package/tsconfig.build.json +0 -6
  53. 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-45529f014aa1c181f338c0f7348767f2990a9084-1",
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-07-31T18:33:26.623Z"
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
@@ -1,2 +0,0 @@
1
-
2
- npx --no lint-staged