@jay-framework/stack-client-runtime 0.22.2 → 0.23.0

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/dist/index.cjs CHANGED
@@ -831,8 +831,9 @@ class AutomationAgent {
831
831
  } else {
832
832
  viewState = this.component.viewState;
833
833
  }
834
+ const { __jay, ...publicViewState } = viewState;
834
835
  return {
835
- viewState,
836
+ viewState: publicViewState,
836
837
  interactions: this.getGrouped(),
837
838
  customEvents: this.getCustomEvents()
838
839
  };
package/dist/index.js CHANGED
@@ -829,8 +829,9 @@ class AutomationAgent {
829
829
  } else {
830
830
  viewState = this.component.viewState;
831
831
  }
832
+ const { __jay, ...publicViewState } = viewState;
832
833
  return {
833
- viewState,
834
+ viewState: publicViewState,
834
835
  interactions: this.getGrouped(),
835
836
  customEvents: this.getCustomEvents()
836
837
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jay-framework/stack-client-runtime",
3
- "version": "0.22.2",
3
+ "version": "0.23.0",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "main": "dist/index.js",
@@ -27,15 +27,15 @@
27
27
  "test:watch": "vitest"
28
28
  },
29
29
  "dependencies": {
30
- "@jay-framework/component": "^0.22.2",
31
- "@jay-framework/fullstack-component": "^0.22.2",
32
- "@jay-framework/runtime": "^0.22.2",
33
- "@jay-framework/runtime-automation": "^0.22.2",
34
- "@jay-framework/view-state-merge": "^0.22.2"
30
+ "@jay-framework/component": "^0.23.0",
31
+ "@jay-framework/fullstack-component": "^0.23.0",
32
+ "@jay-framework/runtime": "^0.23.0",
33
+ "@jay-framework/runtime-automation": "^0.23.0",
34
+ "@jay-framework/view-state-merge": "^0.23.0"
35
35
  },
36
36
  "devDependencies": {
37
- "@jay-framework/dev-environment": "^0.22.2",
38
- "@jay-framework/jay-cli": "^0.22.2",
37
+ "@jay-framework/dev-environment": "^0.23.0",
38
+ "@jay-framework/jay-cli": "^0.23.0",
39
39
  "@types/express": "^5.0.2",
40
40
  "@types/node": "^22.15.21",
41
41
  "nodemon": "^3.0.3",