owosk 0.3.2 → 0.4.0

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -0
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -261,6 +261,7 @@ function normalizeFeature(pf, creditSystemSlugs) {
261
261
  slug: pf.slug,
262
262
  enabled: pf.enabled,
263
263
  limit: pf.limit ?? null,
264
+ trialLimit: pf.trialLimit ?? null,
264
265
  // Handle both SDK 'reset' and API 'resetInterval'
265
266
  reset: normalizeReset(pf.reset || pf.resetInterval),
266
267
  usageModel: isCreditSystemFeature ? "included" : usageModel,
@@ -380,6 +381,7 @@ function diffPlans(localPlans, remotePlans, localCreditSystems = [], remoteCredi
380
381
  const featureFields = [
381
382
  "enabled",
382
383
  "limit",
384
+ "trialLimit",
383
385
  "reset",
384
386
  "usageModel",
385
387
  "pricePerUnit",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "owosk",
3
- "version": "0.3.2",
3
+ "version": "0.4.0",
4
4
  "description": "CLI for Owostack - sync catalog, manage billing infrastructure",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -24,8 +24,8 @@
24
24
  "commander": "^14.0.3",
25
25
  "jiti": "^2.6.1",
26
26
  "picocolors": "^1.1.1",
27
- "@owostack/types": "0.3.2",
28
- "owostack": "0.3.2"
27
+ "@owostack/types": "0.4.0",
28
+ "owostack": "0.4.0"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^22.19.10",