@jay-framework/stack-client-runtime 0.16.2 → 0.16.3

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
@@ -79,7 +79,7 @@ function mergeArraysByTrackBy$1(baseArray, overlayArray, trackByField, trackByMa
79
79
  }
80
80
  });
81
81
  }
82
- const HEADLESS_INSTANCES = runtime.createJayContext();
82
+ const HEADLESS_INSTANCES = runtime.createJayContext("hi");
83
83
  function makeSignals$2(obj) {
84
84
  return Object.keys(obj).reduce((signals, key) => {
85
85
  signals[key] = component.createSignal(obj[key]);
@@ -862,7 +862,7 @@ function wrapWithAutomation(component2, options) {
862
862
  const agent = new AutomationAgent(component2, options);
863
863
  return Object.assign(component2, { automation: agent });
864
864
  }
865
- const AUTOMATION_CONTEXT = runtime.createJayContext();
865
+ const AUTOMATION_CONTEXT = runtime.createJayContext("ac");
866
866
  exports.AUTOMATION_CONTEXT = AUTOMATION_CONTEXT;
867
867
  exports.ActionError = ActionError;
868
868
  exports.HEADLESS_INSTANCES = HEADLESS_INSTANCES;
package/dist/index.js CHANGED
@@ -77,7 +77,7 @@ function mergeArraysByTrackBy$1(baseArray, overlayArray, trackByField, trackByMa
77
77
  }
78
78
  });
79
79
  }
80
- const HEADLESS_INSTANCES = createJayContext();
80
+ const HEADLESS_INSTANCES = createJayContext("hi");
81
81
  function makeSignals$2(obj) {
82
82
  return Object.keys(obj).reduce((signals, key) => {
83
83
  signals[key] = createSignal(obj[key]);
@@ -860,7 +860,7 @@ function wrapWithAutomation(component, options) {
860
860
  const agent = new AutomationAgent(component, options);
861
861
  return Object.assign(component, { automation: agent });
862
862
  }
863
- const AUTOMATION_CONTEXT = createJayContext();
863
+ const AUTOMATION_CONTEXT = createJayContext("ac");
864
864
  export {
865
865
  AUTOMATION_CONTEXT,
866
866
  ActionError,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jay-framework/stack-client-runtime",
3
- "version": "0.16.2",
3
+ "version": "0.16.3",
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.16.2",
31
- "@jay-framework/fullstack-component": "^0.16.2",
32
- "@jay-framework/runtime": "^0.16.2",
33
- "@jay-framework/runtime-automation": "^0.16.2",
34
- "@jay-framework/view-state-merge": "^0.16.2"
30
+ "@jay-framework/component": "^0.16.3",
31
+ "@jay-framework/fullstack-component": "^0.16.3",
32
+ "@jay-framework/runtime": "^0.16.3",
33
+ "@jay-framework/runtime-automation": "^0.16.3",
34
+ "@jay-framework/view-state-merge": "^0.16.3"
35
35
  },
36
36
  "devDependencies": {
37
- "@jay-framework/dev-environment": "^0.16.2",
38
- "@jay-framework/jay-cli": "^0.16.2",
37
+ "@jay-framework/dev-environment": "^0.16.3",
38
+ "@jay-framework/jay-cli": "^0.16.3",
39
39
  "@types/express": "^5.0.2",
40
40
  "@types/node": "^22.15.21",
41
41
  "nodemon": "^3.0.3",