arky-sdk 0.3.54 → 0.3.56
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 +0 -17
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -3
- package/dist/index.d.ts +1 -3
- package/dist/index.js +0 -17
- package/dist/index.js.map +1 -1
- package/dist/types.d.cts +1 -8
- package/dist/types.d.ts +1 -8
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -374,17 +374,6 @@ var createBusinessApi = (apiConfig) => {
|
|
|
374
374
|
options
|
|
375
375
|
);
|
|
376
376
|
},
|
|
377
|
-
async getRefundSummary(params, options) {
|
|
378
|
-
return apiConfig.httpClient.get(
|
|
379
|
-
`/v1/businesses/${params.id}/refund-summary`,
|
|
380
|
-
{
|
|
381
|
-
...options,
|
|
382
|
-
params: {
|
|
383
|
-
entity: params.entity
|
|
384
|
-
}
|
|
385
|
-
}
|
|
386
|
-
);
|
|
387
|
-
},
|
|
388
377
|
async processRefund(params, options) {
|
|
389
378
|
const { id, ...payload } = params;
|
|
390
379
|
return apiConfig.httpClient.post(
|
|
@@ -1040,12 +1029,6 @@ var createReservationApi = (apiConfig) => {
|
|
|
1040
1029
|
params: { businessId: apiConfig.businessId }
|
|
1041
1030
|
});
|
|
1042
1031
|
},
|
|
1043
|
-
async getReservationParts(params, options) {
|
|
1044
|
-
return apiConfig.httpClient.get(`/v1/reservations/parts`, {
|
|
1045
|
-
...options,
|
|
1046
|
-
params
|
|
1047
|
-
});
|
|
1048
|
-
},
|
|
1049
1032
|
async searchReservations(params, options) {
|
|
1050
1033
|
return apiConfig.httpClient.get(`/v1/reservations/search`, {
|
|
1051
1034
|
...options,
|