@stackbe/sdk 0.9.1 → 0.9.2
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 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -380,8 +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
|
|
383
|
+
/** Plan entitlements (feature flags) - always included when using expand=plan */
|
|
384
|
+
entitlements: Record<string, unknown>;
|
|
385
385
|
}
|
|
386
386
|
interface SubscriptionWithPlan extends Subscription {
|
|
387
387
|
plan: SubscriptionPlan;
|
package/dist/index.d.ts
CHANGED
|
@@ -380,8 +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
|
|
383
|
+
/** Plan entitlements (feature flags) - always included when using expand=plan */
|
|
384
|
+
entitlements: Record<string, unknown>;
|
|
385
385
|
}
|
|
386
386
|
interface SubscriptionWithPlan extends Subscription {
|
|
387
387
|
plan: SubscriptionPlan;
|
package/package.json
CHANGED