@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/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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tebuto/react-booking-widget",
3
- "version": "1.1.1",
3
+ "version": "1.2.0",
4
4
  "description": "React Component for the Tebuto Booking Widget",
5
5
  "author": "Tebuto GmbH",
6
6
  "homepage": "https://tebuto.de",