@shipstatic/types 0.3.10 → 0.3.11
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.ts +8 -0
- package/package.json +1 -1
- package/src/index.ts +11 -0
package/dist/index.d.ts
CHANGED
|
@@ -485,6 +485,14 @@ export interface BillingResource {
|
|
|
485
485
|
*/
|
|
486
486
|
status: () => Promise<BillingStatus>;
|
|
487
487
|
}
|
|
488
|
+
/**
|
|
489
|
+
* @deprecated Use BillingStatus instead. Kept for backward compatibility.
|
|
490
|
+
*/
|
|
491
|
+
export type SubscriptionStatus = BillingStatus;
|
|
492
|
+
/**
|
|
493
|
+
* @deprecated Use BillingResource instead. Kept for backward compatibility.
|
|
494
|
+
*/
|
|
495
|
+
export type SubscriptionResource = BillingResource;
|
|
488
496
|
/**
|
|
489
497
|
* Keys resource interface - the contract all implementations must follow
|
|
490
498
|
*/
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -739,6 +739,17 @@ export interface BillingResource {
|
|
|
739
739
|
status: () => Promise<BillingStatus>;
|
|
740
740
|
}
|
|
741
741
|
|
|
742
|
+
/**
|
|
743
|
+
* @deprecated Use BillingStatus instead. Kept for backward compatibility.
|
|
744
|
+
*/
|
|
745
|
+
export type SubscriptionStatus = BillingStatus;
|
|
746
|
+
|
|
747
|
+
/**
|
|
748
|
+
* @deprecated Use BillingResource instead. Kept for backward compatibility.
|
|
749
|
+
*/
|
|
750
|
+
export type SubscriptionResource = BillingResource;
|
|
751
|
+
|
|
752
|
+
|
|
742
753
|
/**
|
|
743
754
|
* Keys resource interface - the contract all implementations must follow
|
|
744
755
|
*/
|