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