@stackbe/sdk 0.9.0 → 0.9.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/dist/index.d.mts CHANGED
@@ -380,6 +380,8 @@ interface SubscriptionPlan {
380
380
  priceCents: number;
381
381
  currency: string;
382
382
  interval: 'month' | 'year';
383
+ /** Plan entitlements (feature flags) - included when using expand=plan */
384
+ entitlements?: Record<string, unknown>;
383
385
  }
384
386
  interface SubscriptionWithPlan extends Subscription {
385
387
  plan: SubscriptionPlan;
package/dist/index.d.ts CHANGED
@@ -380,6 +380,8 @@ interface SubscriptionPlan {
380
380
  priceCents: number;
381
381
  currency: string;
382
382
  interval: 'month' | 'year';
383
+ /** Plan entitlements (feature flags) - included when using expand=plan */
384
+ entitlements?: Record<string, unknown>;
383
385
  }
384
386
  interface SubscriptionWithPlan extends Subscription {
385
387
  plan: SubscriptionPlan;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackbe/sdk",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "Official JavaScript/TypeScript SDK for StackBE - the billing backend for your side project",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",