babylonjs-node-editor 9.3.1 → 9.3.2

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.
@@ -2943,10 +2943,10 @@ declare namespace BABYLON.NodeEditor.SharedUIComponents {
2943
2943
  */
2944
2944
  name?: string;
2945
2945
  /**
2946
- * Whether the bridge should automatically start trying to connect.
2947
- * Defaults to false.
2946
+ * Whether the bridge should automatically enable trying to connect.
2947
+ * Defaults to true.
2948
2948
  */
2949
- autoStart?: boolean;
2949
+ autoEnable?: boolean;
2950
2950
  /**
2951
2951
  * Additional service definitions to register with the bridge container.
2952
2952
  */
@@ -3732,9 +3732,9 @@ declare namespace BABYLON.NodeEditor.SharedUIComponents {
3732
3732
  */
3733
3733
  name: string;
3734
3734
  /**
3735
- * Whether to automatically start connecting when the service is created.
3735
+ * Whether to automatically enable connecting when the service is created.
3736
3736
  */
3737
- autoStart: boolean;
3737
+ autoEnable: boolean;
3738
3738
  };
3739
3739
  /**
3740
3740
  * Creates the service definition for the CLI Bridge Service.
@@ -3240,10 +3240,10 @@ export type ModularBridgeOptions = {
3240
3240
  */
3241
3241
  name?: string;
3242
3242
  /**
3243
- * Whether the bridge should automatically start trying to connect.
3244
- * Defaults to false.
3243
+ * Whether the bridge should automatically enable trying to connect.
3244
+ * Defaults to true.
3245
3245
  */
3246
- autoStart?: boolean;
3246
+ autoEnable?: boolean;
3247
3247
  /**
3248
3248
  * Additional service definitions to register with the bridge container.
3249
3249
  */
@@ -3982,9 +3982,9 @@ export type BridgeServiceOptions = {
3982
3982
  */
3983
3983
  name: string;
3984
3984
  /**
3985
- * Whether to automatically start connecting when the service is created.
3985
+ * Whether to automatically enable connecting when the service is created.
3986
3986
  */
3987
- autoStart: boolean;
3987
+ autoEnable: boolean;
3988
3988
  };
3989
3989
  /**
3990
3990
  * Creates the service definition for the CLI Bridge Service.
@@ -11707,10 +11707,10 @@ declare namespace BABYLON.NodeEditor.SharedUIComponents {
11707
11707
  */
11708
11708
  name?: string;
11709
11709
  /**
11710
- * Whether the bridge should automatically start trying to connect.
11711
- * Defaults to false.
11710
+ * Whether the bridge should automatically enable trying to connect.
11711
+ * Defaults to true.
11712
11712
  */
11713
- autoStart?: boolean;
11713
+ autoEnable?: boolean;
11714
11714
  /**
11715
11715
  * Additional service definitions to register with the bridge container.
11716
11716
  */
@@ -12496,9 +12496,9 @@ declare namespace BABYLON.NodeEditor.SharedUIComponents {
12496
12496
  */
12497
12497
  name: string;
12498
12498
  /**
12499
- * Whether to automatically start connecting when the service is created.
12499
+ * Whether to automatically enable connecting when the service is created.
12500
12500
  */
12501
- autoStart: boolean;
12501
+ autoEnable: boolean;
12502
12502
  };
12503
12503
  /**
12504
12504
  * Creates the service definition for the CLI Bridge Service.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-node-editor",
3
- "version": "9.3.1",
3
+ "version": "9.3.2",
4
4
  "main": "babylon.nodeEditor.js",
5
5
  "types": "babylon.nodeEditor.module.d.ts",
6
6
  "files": [
@@ -14,7 +14,7 @@
14
14
  "clean": "rimraf dist && rimraf babylon*.* -g"
15
15
  },
16
16
  "dependencies": {
17
- "babylonjs": "9.3.1"
17
+ "babylonjs": "9.3.2"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@dev/build-tools": "1.0.0",