mailmeteor 0.0.25 → 0.0.26

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.cjs CHANGED
@@ -1263,24 +1263,6 @@ class BillingSubscription extends HeyApiClient {
1263
1263
  }
1264
1264
  });
1265
1265
  }
1266
- checkout(parameters, options) {
1267
- const params = buildClientParams([parameters], [{ args: [
1268
- { in: 'body', key: 'price_id' },
1269
- { in: 'body', key: 'coupon' },
1270
- { in: 'body', key: 'currency' }
1271
- ] }]);
1272
- return (options?.client ?? this.client).post({
1273
- responseStyle: 'data',
1274
- url: '/billing/subscription/checkout',
1275
- ...options,
1276
- ...params,
1277
- headers: {
1278
- 'Content-Type': 'application/json',
1279
- ...options?.headers,
1280
- ...params.headers
1281
- }
1282
- });
1283
- }
1284
1266
  }
1285
1267
  class BillingSubscription2 extends HeyApiClient {
1286
1268
  constructor(args) {