arky-sdk 0.7.3 → 0.7.4
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 +5 -1
- package/dist/types.d.ts +5 -1
- package/dist/types.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1193,6 +1193,12 @@ var createCustomerApi = (apiConfig) => {
|
|
|
1193
1193
|
options
|
|
1194
1194
|
);
|
|
1195
1195
|
},
|
|
1196
|
+
async delete(params, options) {
|
|
1197
|
+
return apiConfig.httpClient.delete(
|
|
1198
|
+
`/v1/businesses/${params.businessId || apiConfig.businessId}/customers/${params.id}`,
|
|
1199
|
+
options
|
|
1200
|
+
);
|
|
1201
|
+
},
|
|
1196
1202
|
async merge(params, options) {
|
|
1197
1203
|
const businessId = params.businessId || apiConfig.businessId;
|
|
1198
1204
|
return apiConfig.httpClient.post(
|