@periskope/types 0.6.9-2.1 → 0.6.9-2.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/types.d.ts +1 -0
- package/package.json +1 -1
- package/types.ts +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ export declare enum AllPlans {
|
|
|
18
18
|
export type Frequency = 'yearly' | 'monthly' | 'weekly' | 'custom';
|
|
19
19
|
export type Enterprise = `${string}-enterprise`;
|
|
20
20
|
export type OrgPlanEnterprise = {
|
|
21
|
+
subscription_id: string;
|
|
21
22
|
plan_id: Enterprise;
|
|
22
23
|
interval: number;
|
|
23
24
|
frequency: Frequency;
|
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -33,7 +33,7 @@ export type Frequency = 'yearly' | 'monthly' | 'weekly' | 'custom';
|
|
|
33
33
|
export type Enterprise = `${string}-enterprise`;
|
|
34
34
|
|
|
35
35
|
export type OrgPlanEnterprise = {
|
|
36
|
-
|
|
36
|
+
subscription_id: string
|
|
37
37
|
plan_id: Enterprise;
|
|
38
38
|
interval: number;
|
|
39
39
|
frequency: Frequency;
|