arky-sdk 0.5.13 → 0.5.14

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`,