arky-sdk 0.3.76 → 0.3.77
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 +10 -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 +10 -0
- package/dist/index.js.map +1 -1
- package/dist/types.d.cts +50 -1
- package/dist/types.d.ts +50 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1108,6 +1108,16 @@ var createReservationApi = (apiConfig) => {
|
|
|
1108
1108
|
}
|
|
1109
1109
|
);
|
|
1110
1110
|
},
|
|
1111
|
+
async getServiceProviders(params, options) {
|
|
1112
|
+
const { serviceId, ...queryParams } = params;
|
|
1113
|
+
return apiConfig.httpClient.get(
|
|
1114
|
+
`/v1/businesses/${apiConfig.businessId}/services/${serviceId}/providers`,
|
|
1115
|
+
{
|
|
1116
|
+
...options,
|
|
1117
|
+
params: queryParams
|
|
1118
|
+
}
|
|
1119
|
+
);
|
|
1120
|
+
},
|
|
1111
1121
|
// ===== PROVIDERS =====
|
|
1112
1122
|
async createProvider(params, options) {
|
|
1113
1123
|
return apiConfig.httpClient.post(
|