@shipstatic/types 0.3.7 → 0.3.8

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
@@ -466,13 +466,6 @@ export interface CheckoutSession {
466
466
  /** Creem checkout session ID */
467
467
  checkoutId: string;
468
468
  }
469
- /**
470
- * Subscription sync request body for POST /subscriptions/sync
471
- */
472
- export interface SubscriptionSyncRequest {
473
- /** Creem subscription ID received after checkout */
474
- subscriptionId: string;
475
- }
476
469
  /**
477
470
  * Subscription resource interface - the contract all implementations must follow
478
471
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipstatic/types",
3
- "version": "0.3.7",
3
+ "version": "0.3.8",
4
4
  "description": "Shared types for Shipstatic platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/index.ts CHANGED
@@ -718,14 +718,6 @@ export interface CheckoutSession {
718
718
  checkoutId: string;
719
719
  }
720
720
 
721
- /**
722
- * Subscription sync request body for POST /subscriptions/sync
723
- */
724
- export interface SubscriptionSyncRequest {
725
- /** Creem subscription ID received after checkout */
726
- subscriptionId: string;
727
- }
728
-
729
721
  /**
730
722
  * Subscription resource interface - the contract all implementations must follow
731
723
  *