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 +4 -2
- package/dist/types.d.ts +4 -2
- package/package.json +1 -1
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
2125
|
+
from: number;
|
|
2126
|
+
to: number;
|
|
2125
2127
|
providers: ProviderAvailability[];
|
|
2126
2128
|
}
|
|
2127
2129
|
interface Slot {
|