arky-sdk 0.7.48 → 0.7.49

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/types.d.cts CHANGED
@@ -2103,7 +2103,8 @@ type SystemTemplateKey = "system:booking-business-update" | "system:booking-cust
2103
2103
  interface GetAvailabilityParams {
2104
2104
  businessId?: string;
2105
2105
  serviceId: string;
2106
- month: string;
2106
+ from: number;
2107
+ to: number;
2107
2108
  providerId?: string;
2108
2109
  }
2109
2110
  interface AvailabilitySlot {
@@ -2121,7 +2122,8 @@ interface ProviderAvailability {
2121
2122
  days: DaySlots[];
2122
2123
  }
2123
2124
  interface AvailabilityResponse {
2124
- month: string;
2125
+ from: number;
2126
+ to: number;
2125
2127
  providers: ProviderAvailability[];
2126
2128
  }
2127
2129
  interface Slot {
package/dist/types.d.ts CHANGED
@@ -2103,7 +2103,8 @@ type SystemTemplateKey = "system:booking-business-update" | "system:booking-cust
2103
2103
  interface GetAvailabilityParams {
2104
2104
  businessId?: string;
2105
2105
  serviceId: string;
2106
- month: string;
2106
+ from: number;
2107
+ to: number;
2107
2108
  providerId?: string;
2108
2109
  }
2109
2110
  interface AvailabilitySlot {
@@ -2121,7 +2122,8 @@ interface ProviderAvailability {
2121
2122
  days: DaySlots[];
2122
2123
  }
2123
2124
  interface AvailabilityResponse {
2124
- month: string;
2125
+ from: number;
2126
+ to: number;
2125
2127
  providers: ProviderAvailability[];
2126
2128
  }
2127
2129
  interface Slot {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arky-sdk",
3
- "version": "0.7.48",
3
+ "version": "0.7.49",
4
4
  "description": "Official TypeScript SDK for Arky - All-in-one business platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",