everything-dev 1.35.2 → 1.35.4

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/types.d.cts CHANGED
@@ -473,8 +473,8 @@ declare const RuntimeConfigSchema: z.ZodObject<{
473
473
  account: z.ZodString;
474
474
  domain: z.ZodOptional<z.ZodString>;
475
475
  networkId: z.ZodEnum<{
476
- testnet: "testnet";
477
476
  mainnet: "mainnet";
477
+ testnet: "testnet";
478
478
  }>;
479
479
  title: z.ZodOptional<z.ZodString>;
480
480
  description: z.ZodOptional<z.ZodString>;
@@ -619,8 +619,8 @@ declare const ClientRuntimeConfigSchema: z.ZodObject<{
619
619
  }>;
620
620
  account: z.ZodString;
621
621
  networkId: z.ZodEnum<{
622
- testnet: "testnet";
623
622
  mainnet: "mainnet";
623
+ testnet: "testnet";
624
624
  }>;
625
625
  hostUrl: z.ZodOptional<z.ZodString>;
626
626
  assetsUrl: z.ZodString;
package/dist/types.d.mts CHANGED
@@ -473,8 +473,8 @@ declare const RuntimeConfigSchema: z.ZodObject<{
473
473
  account: z.ZodString;
474
474
  domain: z.ZodOptional<z.ZodString>;
475
475
  networkId: z.ZodEnum<{
476
- testnet: "testnet";
477
476
  mainnet: "mainnet";
477
+ testnet: "testnet";
478
478
  }>;
479
479
  title: z.ZodOptional<z.ZodString>;
480
480
  description: z.ZodOptional<z.ZodString>;
@@ -619,8 +619,8 @@ declare const ClientRuntimeConfigSchema: z.ZodObject<{
619
619
  }>;
620
620
  account: z.ZodString;
621
621
  networkId: z.ZodEnum<{
622
- testnet: "testnet";
623
622
  mainnet: "mainnet";
623
+ testnet: "testnet";
624
624
  }>;
625
625
  hostUrl: z.ZodOptional<z.ZodString>;
626
626
  assetsUrl: z.ZodString;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "everything-dev",
3
- "version": "1.35.2",
3
+ "version": "1.35.4",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -10,8 +10,8 @@ metadata:
10
10
  ## Starting Development
11
11
 
12
12
  ```bash
13
- # Typical: remote host, local UI + API
14
- bos dev --host remote
13
+ # Typical: start development (host mode auto-detected)
14
+ bos dev
15
15
 
16
16
  # Isolate work
17
17
  bos dev --api remote # UI only
@@ -49,7 +49,7 @@ The orchestrator:
49
49
 
50
50
  - **UI changes**: Rsbuild HMR — instant at :3003, no rebuild
51
51
  - **API changes**: Rspack HMR — instant at :3001, no rebuild
52
- - **Config changes**: Require host restart (`bos kill && bos dev --host remote`)
52
+ - **Config changes**: Require host restart (`bos kill && bos dev`)
53
53
 
54
54
  ## Contract Sync & Type Generation
55
55
 
@@ -159,5 +159,5 @@ Process issues:
159
159
  ```bash
160
160
  bos kill # Kill all tracked processes
161
161
  bun install # Reinstall deps
162
- bos dev --host remote # Restart
162
+ bos dev # Restart
163
163
  ```
@@ -134,14 +134,14 @@ The tenant config must:
134
134
  For the base runtime:
135
135
 
136
136
  ```bash
137
- bos dev --host remote
137
+ bos dev
138
138
  bos publish --deploy
139
139
  ```
140
140
 
141
141
  For a shared-host child UI app:
142
142
 
143
143
  ```bash
144
- bos dev --host remote --api remote
144
+ bos dev --api remote
145
145
  bos publish --deploy
146
146
  ```
147
147