@stoker-platform/web-app 0.5.60 → 0.5.61

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/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @stoker-platform/web-app
2
2
 
3
+ ## 0.5.61
4
+
5
+ ### Patch Changes
6
+
7
+ - feat: add ID to single relation nodes
8
+ - Updated dependencies
9
+ - @stoker-platform/node-client@0.5.40
10
+ - @stoker-platform/utils@0.5.34
11
+ - @stoker-platform/web-client@0.5.38
12
+
3
13
  ## 0.5.60
4
14
 
5
15
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stoker-platform/web-app",
3
- "version": "0.5.60",
3
+ "version": "0.5.61",
4
4
  "type": "module",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "scripts": {
@@ -51,9 +51,9 @@
51
51
  "@radix-ui/react-tooltip": "^1.2.8",
52
52
  "@react-google-maps/api": "^2.20.8",
53
53
  "@sentry/react": "^10.47.0",
54
- "@stoker-platform/node-client": "0.5.39",
55
- "@stoker-platform/utils": "0.5.33",
56
- "@stoker-platform/web-client": "0.5.37",
54
+ "@stoker-platform/node-client": "0.5.40",
55
+ "@stoker-platform/utils": "0.5.34",
56
+ "@stoker-platform/web-client": "0.5.38",
57
57
  "@tanstack/react-table": "^8.21.3",
58
58
  "@types/react": "18.3.13",
59
59
  "@types/react-dom": "18.3.1",
@@ -642,7 +642,9 @@ function Collection({
642
642
  isPreloadCacheEnabled && relationList?.loadAll
643
643
  ? {
644
644
  label: `${labels.collection}-${relationList?.field}`,
645
- constraints: [[`${relationList?.field}.${relationParent?.id}`, ">", {}]],
645
+ constraints: [
646
+ [`${relationList?.field}_Single.id`, "==", relationParent?.id],
647
+ ],
646
648
  }
647
649
  : undefined,
648
650
  } as SubscribeManyOptions,
package/vite.config.ts CHANGED
@@ -17,7 +17,7 @@ export default defineConfig(async () => {
17
17
 
18
18
  return {
19
19
  plugins: [
20
- eslint(),
20
+ // eslint(),
21
21
  react(),
22
22
  VitePWA({
23
23
  registerType: "autoUpdate",