@tebuto/react-booking-widget 1.1.1 → 1.2.0
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/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/types.d.ts +3 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -124,6 +124,7 @@ type ClaimResponse = {
|
|
|
124
124
|
isAvailable: boolean;
|
|
125
125
|
requirePhoneNumber: boolean;
|
|
126
126
|
requireAddress: boolean;
|
|
127
|
+
requireBirthdate: boolean;
|
|
127
128
|
};
|
|
128
129
|
/** Payment configuration */
|
|
129
130
|
type PaymentConfiguration = {
|
|
@@ -142,6 +143,7 @@ type ClientInfo = {
|
|
|
142
143
|
city: string;
|
|
143
144
|
zip: string;
|
|
144
145
|
};
|
|
146
|
+
birthdate?: string;
|
|
145
147
|
notes?: string;
|
|
146
148
|
};
|
|
147
149
|
/** Booking request payload */
|
|
@@ -197,6 +199,7 @@ type TebutoConfig = {
|
|
|
197
199
|
};
|
|
198
200
|
type TebutoContextValue = TebutoConfig & {
|
|
199
201
|
buildUrl: (path: string) => string;
|
|
202
|
+
fingerprint: string;
|
|
200
203
|
};
|
|
201
204
|
type TebutoProviderProps = {
|
|
202
205
|
therapistUUID: string;
|