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 +6 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/types.cjs.map +1 -1
- package/dist/types.d.cts +4 -1
- package/dist/types.d.ts +4 -1
- package/dist/types.js.map +1 -1
- package/package.json +1 -1
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`,
|