@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 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/metering`.
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/metering` in the upstream:
291
+ Pair the token with `@farthershore/backend` in the upstream:
292
292
 
293
293
  ```ts
294
- import { fartherShore, withUsage } from "@farthershore/metering";
294
+ import { fartherShore, withUsage } from "@farthershore/backend";
295
295
 
296
296
  const fs = fartherShore.initFromEnv();
297
297