@fias/arche-sdk 1.1.8 → 1.1.9
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/package.json
CHANGED
|
@@ -259,25 +259,22 @@ These are hard limits enforced by the platform. Code that violates these will fa
|
|
|
259
259
|
npx fias-dev login # Opens browser to sign in, saves API key automatically
|
|
260
260
|
```
|
|
261
261
|
|
|
262
|
-
### Step 2:
|
|
262
|
+
### Step 2: Start development
|
|
263
263
|
|
|
264
264
|
```bash
|
|
265
|
-
#
|
|
266
|
-
npm run dev
|
|
267
|
-
|
|
268
|
-
# Terminal 2: Start dev harness with real AI (port 3200, uses credits)
|
|
269
|
-
npm run dev:harness
|
|
265
|
+
npm start # Starts both Vite + dev harness with real AI (uses credits)
|
|
270
266
|
```
|
|
271
267
|
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
For offline development without credits (AI calls return canned responses):
|
|
268
|
+
Or for offline development without credits (AI calls return canned responses):
|
|
275
269
|
|
|
276
270
|
```bash
|
|
277
|
-
#
|
|
278
|
-
npm run dev:mock
|
|
271
|
+
npm run start:mock # Starts both Vite + dev harness with mock AI
|
|
279
272
|
```
|
|
280
273
|
|
|
274
|
+
Open http://localhost:3200 in your browser.
|
|
275
|
+
|
|
276
|
+
**Advanced:** If you prefer separate terminals, use `npm run dev` (Vite on port 3100) and `npm run dev:harness` or `npm run dev:mock` (harness on port 3200) independently.
|
|
277
|
+
|
|
281
278
|
### Browsing Available Entities
|
|
282
279
|
|
|
283
280
|
```bash
|
|
@@ -259,25 +259,22 @@ These are hard limits enforced by the platform. Code that violates these will fa
|
|
|
259
259
|
npx fias-dev login # Opens browser to sign in, saves API key automatically
|
|
260
260
|
```
|
|
261
261
|
|
|
262
|
-
### Step 2:
|
|
262
|
+
### Step 2: Start development
|
|
263
263
|
|
|
264
264
|
```bash
|
|
265
|
-
#
|
|
266
|
-
npm run dev
|
|
267
|
-
|
|
268
|
-
# Terminal 2: Start dev harness with real AI (port 3200, uses credits)
|
|
269
|
-
npm run dev:harness
|
|
265
|
+
npm start # Starts both Vite + dev harness with real AI (uses credits)
|
|
270
266
|
```
|
|
271
267
|
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
For offline development without credits (AI calls return canned responses):
|
|
268
|
+
Or for offline development without credits (AI calls return canned responses):
|
|
275
269
|
|
|
276
270
|
```bash
|
|
277
|
-
#
|
|
278
|
-
npm run dev:mock
|
|
271
|
+
npm run start:mock # Starts both Vite + dev harness with mock AI
|
|
279
272
|
```
|
|
280
273
|
|
|
274
|
+
Open http://localhost:3200 in your browser.
|
|
275
|
+
|
|
276
|
+
**Advanced:** If you prefer separate terminals, use `npm run dev` (Vite on port 3100) and `npm run dev:harness` or `npm run dev:mock` (harness on port 3200) independently.
|
|
277
|
+
|
|
281
278
|
### Browsing Available Entities
|
|
282
279
|
|
|
283
280
|
```bash
|