arky-sdk 0.3.25 → 0.3.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
@@ -271,13 +271,6 @@ var createBusinessApi = (apiConfig) => {
271
271
  async getSubscription(params, options) {
272
272
  return apiConfig.httpClient.get(`/v1/businesses/${apiConfig.businessId}/subscription`, options);
273
273
  },
274
- async createSubscription(params, options) {
275
- return apiConfig.httpClient.post(
276
- `/v1/businesses/${apiConfig.businessId}/subscription`,
277
- params,
278
- options
279
- );
280
- },
281
274
  async updateSubscription(params, options) {
282
275
  return apiConfig.httpClient.put(
283
276
  `/v1/businesses/${apiConfig.businessId}/subscription`,