arky-sdk 0.5.13 → 0.5.15

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
@@ -370,6 +370,12 @@ var createBusinessApi = (apiConfig) => {
370
370
  options
371
371
  );
372
372
  },
373
+ async removeMember(params, options) {
374
+ return apiConfig.httpClient.delete(
375
+ `/v1/businesses/${apiConfig.businessId}/members/${params.accountId}`,
376
+ options
377
+ );
378
+ },
373
379
  async handleInvitation(params, options) {
374
380
  return apiConfig.httpClient.put(
375
381
  `/v1/businesses/${apiConfig.businessId}/invitation`,
@@ -757,13 +763,6 @@ var createCmsApi = (apiConfig) => {
757
763
  params: queryParams
758
764
  }
759
765
  );
760
- },
761
- async generateBlocks(params, options) {
762
- return apiConfig.httpClient.post(
763
- `/v1/businesses/${apiConfig.businessId}/nodes/blocks/generate`,
764
- params,
765
- options
766
- );
767
766
  }
768
767
  };
769
768
  };