@farthershore/cli 0.13.0 → 0.13.1
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/README.md +3 -3
- package/dist/index.js +49 -49
- package/dist/mcp.js +13 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -182,7 +182,7 @@ product itself no longer carries a `billingStrategy`. Omitting both meter flags
|
|
|
182
182
|
gives the product a `requests` meter. Plain request counting is
|
|
183
183
|
platform-managed. Variable-value meters such as tokens, credits, or compute must
|
|
184
184
|
be declared in the Product SDK as route `reports` and reported by the upstream
|
|
185
|
-
with `@farthershore/
|
|
185
|
+
with `@farthershore/backend`.
|
|
186
186
|
|
|
187
187
|
A new product starts as a DRAFT with a generated `frontend/` project ready for
|
|
188
188
|
customization. Going live mirrors the dashboard's "Finish setting up" checklist:
|
|
@@ -288,10 +288,10 @@ farthershore backend tokens revoke weather-api <tokenId> --yes --format json
|
|
|
288
288
|
farthershore backend delete weather-api <backendId> --yes --format json
|
|
289
289
|
```
|
|
290
290
|
|
|
291
|
-
Pair the token with `@farthershore/
|
|
291
|
+
Pair the token with `@farthershore/backend` in the upstream:
|
|
292
292
|
|
|
293
293
|
```ts
|
|
294
|
-
import { fartherShore, withUsage } from "@farthershore/
|
|
294
|
+
import { fartherShore, withUsage } from "@farthershore/backend";
|
|
295
295
|
|
|
296
296
|
const fs = fartherShore.initFromEnv();
|
|
297
297
|
|