@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 +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
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