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 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(