@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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipstatic/types",
3
- "version": "0.3.10",
3
+ "version": "0.3.11",
4
4
  "description": "Shared types for Shipstatic platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
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
  */