@wix/bookings 1.0.148 → 1.0.150

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.
@@ -5,28 +5,36 @@ export declare const __debug: {
5
5
  };
6
6
  };
7
7
  /**
8
- * Attendance is the main entity of AttendanceService.
9
- * It contains the attendance information for a given booking in a given session.
8
+ * The `attendance` object is the main entity of Attendance.
9
+ * This object contains the attendance information for a booked session, such as if anyone attended the session and if so, how many.
10
10
  */
11
11
  export interface Attendance {
12
12
  /**
13
- * ID of the attendance object.
13
+ * ID of the `attendance` object.
14
14
  * @readonly
15
15
  */
16
16
  _id?: string | null;
17
- /** Booking ID. */
17
+ /** Corresponding booking ID. */
18
18
  bookingId?: string | null;
19
- /** Session ID. */
19
+ /** Corresponding session ID. */
20
20
  sessionId?: string | null;
21
21
  /**
22
- * Whether the booked contact attended the session, might be one of the following:
22
+ * Status indicating if any particpants attended the session:
23
23
  *
24
24
  * + `NOT_SET`: There is no available attendance information.
25
- * + `ATTENDED`: At least a single participant has attended the session.
26
- * + `NOT_ATTENDED`: No participant has attended the session.
25
+ * + `ATTENDED`: At least a single participant attended the session.
26
+ * + `NOT_ATTENDED`: No participants attended the session.
27
27
  */
28
28
  status?: AttendanceStatus;
29
- /** Total number of participants who have that attended the session. Can be greater than `1` for bookings with multiple participants. */
29
+ /**
30
+ * Total number of participants that attended the session. By default, the number
31
+ * of attendees is set to `1`, but you can set a number to greater than `1` if multiple
32
+ * participants attend.
33
+ *
34
+ * Do not set to `0` to indicate that no one attended the session. Instead, set the `status` field to `NOT_ATTENDED`.
35
+ *
36
+ * Default: 1
37
+ */
30
38
  numberOfAttendees?: number;
31
39
  }
32
40
  export declare enum AttendanceStatus {
@@ -35,33 +43,49 @@ export declare enum AttendanceStatus {
35
43
  NOT_ATTENDED = "NOT_ATTENDED"
36
44
  }
37
45
  export interface GetAttendanceRequest {
38
- /** Id of the Attendance to retrieve. */
46
+ /** ID of the object that contains the attendance information that you want to retrieve. */
39
47
  attendanceId: string;
40
48
  }
41
49
  export interface GetAttendanceResponse {
42
- /** The retrieved Attendance. */
50
+ /** The retrieved attendance information for the booked session. */
43
51
  attendance?: Attendance;
44
52
  }
45
53
  export interface SetAttendanceRequest {
46
- /** Attendance to create or updated. */
54
+ /** The attendance information for a booked session that you want to create or update. */
47
55
  attendance: Attendance;
48
56
  }
49
57
  export interface SetAttendanceResponse {
50
- /** The updated Attendance. */
58
+ /** The created or updated attendance information for the booked session. */
51
59
  attendance?: Attendance;
52
60
  }
53
61
  export interface QueryAttendanceRequest {
54
- /** WQL expression. */
62
+ /** Query options. */
55
63
  query: QueryV2;
56
64
  }
57
65
  export interface QueryV2 extends QueryV2PagingMethodOneOf {
66
+ /** Cursors to navigate through the result pages using `next` and `prev`. */
58
67
  cursorPaging?: CursorPaging;
68
+ /**
69
+ * Filter object. See [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) for more information.
70
+ *
71
+ * For a detailed list of supported fields and operators, see [Supported Filters and Sorting](https://dev.wix.com/api/rest/wix-bookings/attendance/supportedfilters).
72
+ *
73
+ * Max: 1 filter
74
+ */
59
75
  filter?: Record<string, any> | null;
76
+ /**
77
+ * Sort object in the following format:
78
+ * `[ {"fieldName":"sortField1","order":"ASC"}, {"fieldName":"sortField2","order":"DESC"} ]`
79
+ *
80
+ * For details about sorting, see [Supported Filters and Sorting](https://dev.wix.com/api/rest/wix-bookings/attendance/supportedfilters).
81
+ */
60
82
  sort?: Sorting[];
83
+ /** Array of projected fields. A list of specific field names to return. */
61
84
  fields?: string[];
62
85
  }
63
86
  /** @oneof */
64
87
  export interface QueryV2PagingMethodOneOf {
88
+ /** Cursors to navigate through the result pages using `next` and `prev`. */
65
89
  cursorPaging?: CursorPaging;
66
90
  }
67
91
  export interface Sorting {
@@ -70,6 +94,11 @@ export interface Sorting {
70
94
  /** Sort order. */
71
95
  order?: SortOrder;
72
96
  }
97
+ /**
98
+ * Sort order. Use `ASC` for ascending order or `DESC` for descending order.
99
+ *
100
+ * Default: `ASC`.
101
+ */
73
102
  export declare enum SortOrder {
74
103
  ASC = "ASC",
75
104
  DESC = "DESC"
@@ -82,26 +111,32 @@ export interface Paging {
82
111
  }
83
112
  export interface CursorPaging {
84
113
  /**
85
- * Number of attendances to return.
86
- * Defaults to `50`. Maximum `1000`.
114
+ * Number of `attendance` objects to return.
115
+ *
116
+ * Default: `50`
117
+ * Maximum: `1000`
87
118
  */
88
119
  limit?: number | null;
89
120
  /**
90
121
  * Pointer to the next or previous page in the list of results.
122
+ *
91
123
  * You can get the relevant cursor token
92
124
  * from the `pagingMetadata` object in the previous call's response.
125
+ *
93
126
  * Not relevant for the first request.
94
127
  */
95
128
  cursor?: string | null;
96
129
  }
130
+ /** List of objects that contain attendance information. */
97
131
  export interface QueryAttendanceResponse {
98
- /** The retrieved Attendances. */
132
+ /** List of objects that contain attendance information for a booked session. */
99
133
  attendances?: Attendance[];
100
- /** Paging Metadata. Cursor pagination is supported. */
134
+ /** Details on the paged set of results returned. */
101
135
  pagingMetadata?: CursorPagingMetadata;
102
136
  }
137
+ /** This is the preferred message for cursor-paging enabled services */
103
138
  export interface CursorPagingMetadata {
104
- /** Use these cursor to paginate between results. [Read more](https://dev.wix.com/api/rest/getting-started/api-query-language#getting-started_api-query-language_cursor-paging). */
139
+ /** Use these cursors to paginate between results. [Read more](https://dev.wix.com/api/rest/getting-started/api-query-language#getting-started_api-query-language_cursor-paging). */
105
140
  cursors?: Cursors;
106
141
  /**
107
142
  * Indicates if there are more results after the current page.
@@ -117,24 +152,33 @@ export interface Cursors {
117
152
  prev?: string | null;
118
153
  }
119
154
  /**
120
- * Get an Attendance by attendance id.
121
- * @param attendanceId - Id of the Attendance to retrieve.
155
+ * Retrieves attendance information by ID.
156
+ * @param attendanceId - ID of the object that contains the attendance information that you want to retrieve.
122
157
  * @public
123
158
  * @documentationMaturity preview
124
159
  * @requiredField attendanceId
125
160
  * @permissionScope Read Bookings - Including Participants
126
- * @returns The retrieved Attendance.
161
+ * @returns The retrieved attendance information for the booked session.
127
162
  */
128
163
  export declare function getAttendance(attendanceId: string): Promise<Attendance>;
129
164
  /**
130
- * Create an Attendance or Update the status and numberOfAttendees in an existing Attendance of a given booking.
131
- * If the Attendance to set has no numberOfAttendees, it will get the default value of 1.
132
- * The number of attendees can be greater than 1 when the booking is made for a group of people.
165
+ * Sets information about whether a booking's session was attended. This information
166
+ * is saved in an `attendance` object.
167
+ *
133
168
  *
134
- * __Notes:__
135
- * + There is no validation on the number of attendees or on the relationship between `numberOfAttendees` and `attendanceStatus`.
136
- * + There is no validation on the number of attendees or on the relationship between `numberOfAttendees` and the booking's `numberOfParticipants`.
137
- * @param attendance - Attendance to create or updated.
169
+ * If attendance was already set, meaning the `attendance` object already exists, the
170
+ * existing attendance information is updated. Otherwise, a new `attendance` object
171
+ * is created.
172
+ *
173
+ * By default, the number
174
+ * of attendees is set to `1`, but you can set a number to greater than `1` if multiple
175
+ * participants attend. Do not set to `0` to indicate that no one attended the session.
176
+ * Instead, set the `status` field to `NOT_ATTENDED`.
177
+ *
178
+ * > __Note:__ Make sure your code validates that:
179
+ * > + There is no mismatch between `numberOfAttendees` and `attendanceStatus` to make sure, for example, that `attendanceStatus` is not `NOT_ATTENDED` while `numberOfAttendees` is `5`.
180
+ * > + The attendance's `numberOfAttendees` and the booking's `numberOfParticipants` correspond. For example, the number of attendees usually should not exceed the booking's intended number of participants (unless perhaps you allow walk-ins that did not sign up in advance).
181
+ * @param attendance - The attendance information for a booked session that you want to create or update.
138
182
  * @public
139
183
  * @documentationMaturity preview
140
184
  * @requiredField attendance
@@ -145,26 +189,28 @@ export declare function getAttendance(attendanceId: string): Promise<Attendance>
145
189
  */
146
190
  export declare function setAttendance(attendance: Attendance): Promise<SetAttendanceResponse>;
147
191
  /**
148
- * Retrieves a list of bookings Attendances, according to the provided paging, filtering, and sorting.
192
+ * Retrieves attendance information for booked sessions, given the provided paging, filtering, and sorting.
193
+ *
149
194
  *
150
- * Up to 100 bookings can be returned per request.
195
+ * When querying attendance information, you can query from the perspective of:
196
+ * + **A booking.** Specify a booking ID to retrieve attendance information for all sessions related to that booking.
197
+ * + **A session.** Specify a session ID to retrieve attendance information for all bookings related to that session.
198
+ *
199
+ * For example, query by a course's `bookingId` and `status = "NOT_ATTENDED"` to retrieve course sessions for that booking that
200
+ * had no attendees. Was there bad weather on those days? Or was
201
+ * there a sudden drop in attendance due to a business reason that must be handled, like a less-qualified instructor?
151
202
  *
152
203
  * Query Attendance runs with the following defaults, which you can override:
153
204
  *
154
205
  * - `id` sorted in `ASC` order
155
206
  * - `cursorPaging.limit` is `50`
156
207
  *
157
- * For field support see
158
- * [supported filters](https://dev.wix.com/api/rest/wix-bookings/bookings-attendance-v2/supported-filters)
159
- * for more information.
160
- *
161
- * __Notes__:
162
- * + An alternative way to obtain attendance information for bookings can be done by calling BookingsReader [queryExtendedBookings] (https://dev.wix.com/api/rest/wix-bookings/bookings-reader-v2/query-extended-bookings) with `withBookingAttendanceInfo` parameter set to true.
163
- * + `fields` and `fieldsets` aren't supported.
164
- *
208
+ * For field support, see [supported filters](https://dev.wix.com/api/rest/wix-bookings/bookings-attendance-v2/supported-filters).
165
209
  *
166
- * You can only specify a filter only once per query. If a filter is provided
167
- * more than once, only the first occurrence affects the returned bookings.
210
+ * > __Notes__:
211
+ * > + Another way to retrieve attendance information is to call Bookings Reader V2's [Query Extended Bookings](https://dev.wix.com/api/rest/wix-bookings/bookings-reader-v2/query-extended-bookings) with `withBookingAttendanceInfo` set to `true`.
212
+ * > + Up to 100 results can be returned per request.
213
+ * > + Only 1 filter is supported per query. If you define multiple filters in the same query, only the first is processed.
168
214
  *
169
215
  * To learn about working with _Query_ endpoints, see
170
216
  * [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language),
@@ -32,6 +32,11 @@ export var AttendanceStatus;
32
32
  AttendanceStatus["ATTENDED"] = "ATTENDED";
33
33
  AttendanceStatus["NOT_ATTENDED"] = "NOT_ATTENDED";
34
34
  })(AttendanceStatus || (AttendanceStatus = {}));
35
+ /**
36
+ * Sort order. Use `ASC` for ascending order or `DESC` for descending order.
37
+ *
38
+ * Default: `ASC`.
39
+ */
35
40
  export var SortOrder;
36
41
  (function (SortOrder) {
37
42
  SortOrder["ASC"] = "ASC";
@@ -44,13 +49,13 @@ const _queryAttendanceResponse = {};
44
49
  const _setAttendanceRequest = {};
45
50
  const _setAttendanceResponse = {};
46
51
  /**
47
- * Get an Attendance by attendance id.
48
- * @param attendanceId - Id of the Attendance to retrieve.
52
+ * Retrieves attendance information by ID.
53
+ * @param attendanceId - ID of the object that contains the attendance information that you want to retrieve.
49
54
  * @public
50
55
  * @documentationMaturity preview
51
56
  * @requiredField attendanceId
52
57
  * @permissionScope Read Bookings - Including Participants
53
- * @returns The retrieved Attendance.
58
+ * @returns The retrieved attendance information for the booked session.
54
59
  */
55
60
  export function getAttendance(attendanceId) {
56
61
  var _a, _b, _c;
@@ -96,14 +101,23 @@ export function getAttendance(attendanceId) {
96
101
  });
97
102
  }
98
103
  /**
99
- * Create an Attendance or Update the status and numberOfAttendees in an existing Attendance of a given booking.
100
- * If the Attendance to set has no numberOfAttendees, it will get the default value of 1.
101
- * The number of attendees can be greater than 1 when the booking is made for a group of people.
104
+ * Sets information about whether a booking's session was attended. This information
105
+ * is saved in an `attendance` object.
106
+ *
107
+ *
108
+ * If attendance was already set, meaning the `attendance` object already exists, the
109
+ * existing attendance information is updated. Otherwise, a new `attendance` object
110
+ * is created.
102
111
  *
103
- * __Notes:__
104
- * + There is no validation on the number of attendees or on the relationship between `numberOfAttendees` and `attendanceStatus`.
105
- * + There is no validation on the number of attendees or on the relationship between `numberOfAttendees` and the booking's `numberOfParticipants`.
106
- * @param attendance - Attendance to create or updated.
112
+ * By default, the number
113
+ * of attendees is set to `1`, but you can set a number to greater than `1` if multiple
114
+ * participants attend. Do not set to `0` to indicate that no one attended the session.
115
+ * Instead, set the `status` field to `NOT_ATTENDED`.
116
+ *
117
+ * > __Note:__ Make sure your code validates that:
118
+ * > + There is no mismatch between `numberOfAttendees` and `attendanceStatus` to make sure, for example, that `attendanceStatus` is not `NOT_ATTENDED` while `numberOfAttendees` is `5`.
119
+ * > + The attendance's `numberOfAttendees` and the booking's `numberOfParticipants` correspond. For example, the number of attendees usually should not exceed the booking's intended number of participants (unless perhaps you allow walk-ins that did not sign up in advance).
120
+ * @param attendance - The attendance information for a booked session that you want to create or update.
107
121
  * @public
108
122
  * @documentationMaturity preview
109
123
  * @requiredField attendance
@@ -156,26 +170,28 @@ export function setAttendance(attendance) {
156
170
  });
157
171
  }
158
172
  /**
159
- * Retrieves a list of bookings Attendances, according to the provided paging, filtering, and sorting.
173
+ * Retrieves attendance information for booked sessions, given the provided paging, filtering, and sorting.
174
+ *
175
+ *
176
+ * When querying attendance information, you can query from the perspective of:
177
+ * + **A booking.** Specify a booking ID to retrieve attendance information for all sessions related to that booking.
178
+ * + **A session.** Specify a session ID to retrieve attendance information for all bookings related to that session.
160
179
  *
161
- * Up to 100 bookings can be returned per request.
180
+ * For example, query by a course's `bookingId` and `status = "NOT_ATTENDED"` to retrieve course sessions for that booking that
181
+ * had no attendees. Was there bad weather on those days? Or was
182
+ * there a sudden drop in attendance due to a business reason that must be handled, like a less-qualified instructor?
162
183
  *
163
184
  * Query Attendance runs with the following defaults, which you can override:
164
185
  *
165
186
  * - `id` sorted in `ASC` order
166
187
  * - `cursorPaging.limit` is `50`
167
188
  *
168
- * For field support see
169
- * [supported filters](https://dev.wix.com/api/rest/wix-bookings/bookings-attendance-v2/supported-filters)
170
- * for more information.
171
- *
172
- * __Notes__:
173
- * + An alternative way to obtain attendance information for bookings can be done by calling BookingsReader [queryExtendedBookings] (https://dev.wix.com/api/rest/wix-bookings/bookings-reader-v2/query-extended-bookings) with `withBookingAttendanceInfo` parameter set to true.
174
- * + `fields` and `fieldsets` aren't supported.
175
- *
189
+ * For field support, see [supported filters](https://dev.wix.com/api/rest/wix-bookings/bookings-attendance-v2/supported-filters).
176
190
  *
177
- * You can only specify a filter only once per query. If a filter is provided
178
- * more than once, only the first occurrence affects the returned bookings.
191
+ * > __Notes__:
192
+ * > + Another way to retrieve attendance information is to call Bookings Reader V2's [Query Extended Bookings](https://dev.wix.com/api/rest/wix-bookings/bookings-reader-v2/query-extended-bookings) with `withBookingAttendanceInfo` set to `true`.
193
+ * > + Up to 100 results can be returned per request.
194
+ * > + Only 1 filter is supported per query. If you define multiple filters in the same query, only the first is processed.
179
195
  *
180
196
  * To learn about working with _Query_ endpoints, see
181
197
  * [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language),
@@ -1 +1 @@
1
- {"version":3,"file":"bookings-v2-attendance.universal.js","sourceRoot":"","sources":["../../../src/bookings-v2-attendance.universal.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"bookings-v2-attendance.universal.js","sourceRoot":"","sources":["../../../src/bookings-v2-attendance.universal.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EACL,UAAU,EACV,cAAc,EACd,qCAAqC,GACtC,MAAM,yBAAyB,CAAC;AAEjC,OAAO,KAAK,iCAAiC,MAAM,+BAA+B,CAAC;AACnF,aAAa;AACb,OAAO,EAAE,oBAAoB,EAAE,MAAM,uCAAuC,CAAC;AAE7E,IAAI,SAAS,GAAG,KAAK,CAAC;AAEtB,SAAS,KAAK,CAAC,GAAG,IAAW;IAC3B,SAAS,IAAI,OAAO,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC;AACpC,CAAC;AAED,SAAS,SAAS,CAAC,GAAQ;IACzB,OAAO,GAAG,CAAC;AACb,CAAC;AAED,MAAM,CAAC,MAAM,OAAO,GAAG;IACrB,cAAc,EAAE;QACd,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,IAAI,CAAC;QAC5B,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,KAAK,CAAC;KAC/B;CACF,CAAC;AACF,MAAM,aAAa,GAAG,GAAG,CAAC;AAC1B,MAAM,eAAe,GAAG,GAAG,CAAC;AAoC5B,MAAM,CAAN,IAAY,gBAIX;AAJD,WAAY,gBAAgB;IAC1B,uCAAmB,CAAA;IACnB,yCAAqB,CAAA;IACrB,iDAA6B,CAAA;AAC/B,CAAC,EAJW,gBAAgB,KAAhB,gBAAgB,QAI3B;AA8DD;;;;GAIG;AACH,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;AAuDD,MAAM,qBAAqB,GAAG,EAAE,CAAC;AACjC,MAAM,sBAAsB,GAAG,EAAE,CAAC;AAClC,MAAM,uBAAuB,GAAG,EAAE,CAAC;AACnC,MAAM,wBAAwB,GAAG,EAAE,CAAC;AACpC,MAAM,qBAAqB,GAAG,EAAE,CAAC;AACjC,MAAM,sBAAsB,GAAG,EAAE,CAAC;AAElC;;;;;;;;GAQG;AACH,MAAM,UAAgB,aAAa,CAAC,YAAoB;;;QACtD,MAAM,qBAAqB,GAAG,EAAE,YAAY,EAAE,MAAM,EAAE,CAAC;QACvD,MAAM,sBAAsB,GAAG,cAAc,CAAC;QAE9C,aAAa;QACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;QAEF,MAAM,EAAE,mBAAmB,EAAE,GAAG,UAAU,CAAC;YACzC,UAAU,EAAE,qBAAqB;YACjC,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,EAAE;gBACT,cAAc,EAAE,eAAe;aAChC;YACD,oBAAoB,EAAE,qBAAqB;SAC5C,CAAC,CAAC;QAEH,MAAM,EAAE,QAAQ,EAAE,GAAG,UAAU,CAAC;YAC9B,UAAU,EAAE,sBAAsB;YAClC,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;gBAC1B,cAAc,EAAE,aAAa;aAC9B;YACD,oBAAoB,EAAE,sBAAsB;SAC7C,CAAC,CAAC;QAEH,MAAM,OAAO,GAAG,mBAAmB,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC;QAEpD,MAAM,OAAO,GAAG,iCAAiC,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;QAEzE,KAAK,CAAC,yCAAyC,SAAS,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;QAErE,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,UAAU,+CAAvB,WAAW,CAAgB,CAAC;QAC5B,IAAI;YACF,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;YACjD,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,SAAS,+CAAtB,WAAW,EAAc,MAAM,CAAC,CAAC;YAEjC,OAAO,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAQ,CAAC;SACrC;QAAC,OAAO,GAAQ,EAAE;YACjB,MAAM,gBAAgB,GAAG,cAAc,CAAC,GAAG,EAAE,qBAAqB,EAAE;gBAClE,cAAc;aACf,CAAC,CAAC;YACH,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,OAAO,+CAApB,WAAW,EAAY,GAAG,CAAC,CAAC;YAE5B,MAAM,gBAAgB,CAAC;SACxB;;CACF;AAED;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,MAAM,UAAgB,aAAa,CACjC,UAAsB;;;QAEtB,MAAM,qBAAqB,GAAG,EAAE,UAAU,EAAE,MAAM,EAAE,CAAC;QACrD,MAAM,sBAAsB,GAAG,GAAG,CAAC;QAEnC,aAAa;QACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;QAEF,MAAM,EAAE,mBAAmB,EAAE,GAAG,UAAU,CAAC;YACzC,UAAU,EAAE,qBAAqB;YACjC,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;gBAC1B,cAAc,EAAE,eAAe;aAChC;YACD,oBAAoB,EAAE,qBAAqB;SAC5C,CAAC,CAAC;QAEH,MAAM,EAAE,QAAQ,EAAE,GAAG,UAAU,CAAC;YAC9B,UAAU,EAAE,sBAAsB;YAClC,UAAU,EAAE,EAAE;YACd,kBAAkB,EAAE;gBAClB,KAAK,EAAE,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;gBAC1B,cAAc,EAAE,aAAa;aAC9B;YACD,oBAAoB,EAAE,sBAAsB;SAC7C,CAAC,CAAC;QAEH,MAAM,OAAO,GAAG,mBAAmB,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC;QAElD,MAAM,OAAO,GAAG,iCAAiC,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;QAEzE,KAAK,CAAC,yCAAyC,SAAS,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;QAErE,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,UAAU,+CAAvB,WAAW,CAAgB,CAAC;QAC5B,IAAI;YACF,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;YACjD,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,SAAS,+CAAtB,WAAW,EAAc,MAAM,CAAC,CAAC;YAEjC,OAAO,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAQ,CAAC;SACrC;QAAC,OAAO,GAAQ,EAAE;YACjB,MAAM,gBAAgB,GAAG,cAAc,CAAC,GAAG,EAAE,qBAAqB,EAAE;gBAClE,YAAY;aACb,CAAC,CAAC;YACH,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,OAAO,+CAApB,WAAW,EAAY,GAAG,CAAC,CAAC;YAE5B,MAAM,gBAAgB,CAAC;SACxB;;CACF;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,MAAM,UAAU,eAAe;IAC7B,MAAM,qBAAqB,GAAG,EAAE,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,CAAC;IAC7D,MAAM,sBAAsB,GAAG;QAC7B,KAAK,EAAE,eAAe;QACtB,cAAc,EAAE,kBAAkB;KACnC,CAAC;IAEF,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,EAAE,mBAAmB,EAAE,GAAG,UAAU,CAAC;QACzC,UAAU,EAAE,uBAAuB;QACnC,UAAU,EAAE,EAAE;QACd,kBAAkB,EAAE;YAClB,KAAK,EAAE,EAAE;YACT,cAAc,EAAE,eAAe;SAChC;QACD,oBAAoB,EAAE,qBAAqB;KAC5C,CAAC,CAAC;IAEH,MAAM,EAAE,QAAQ,EAAE,GAAG,UAAU,CAAC;QAC9B,UAAU,EAAE,wBAAwB;QACpC,UAAU,EAAE,EAAE;QACd,kBAAkB,EAAE;YAClB,KAAK,EAAE,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAC;YACjC,cAAc,EAAE,aAAa;SAC9B;QACD,oBAAoB,EAAE,sBAAsB;KAC7C,CAAC,CAAC;IAEH,OAAO,oBAAoB,CAAC;QAC1B,IAAI,EAAE,CAAO,OAAY,EAAE,EAAE;;YAC3B,MAAM,OAAO,GACX,iCAAiC,CAAC,eAAe,CAAC,OAAO,CAAC,CAAC;YAE7D,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,UAAU,+CAAvB,WAAW,CAAgB,CAAC;YAC5B,IAAI;gBACF,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;gBACjD,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,SAAS,+CAAtB,WAAW,EAAc,MAAM,CAAC,CAAC;gBACjC,OAAO,MAAM,CAAC;aACf;YAAC,OAAO,GAAG,EAAE;gBACZ,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,OAAO,+CAApB,WAAW,EAAY,GAAG,CAAC,CAAC;gBAC5B,MAAM,GAAG,CAAC;aACX;QACH,CAAC,CAAA;QACD,kBAAkB,EAAE,CAAC,GAAG,IAAW,EAAE,EAAE,CAAC,mBAAmB,CAAC,IAAI,CAAC;QACjE,mBAAmB,EAAE,CAAC,EAAE,IAAI,EAAO,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC;QACtD,gBAAgB,EAAE,CAAC,GAAQ,EAAE,EAAE;YAC7B,MAAM,gBAAgB,GAAG,cAAc,CAAC,GAAG,EAAE,qBAAqB,CAAC,CAAC;YAEpE,MAAM,gBAAgB,CAAC;QACzB,CAAC;QACD,YAAY,EAAE,QAAQ;QACtB,mBAAmB,EAAE,qCAAqC,CAAC,aAAa,CAAC;KAC1E,CAAC,CAAC,EAAE,4BAA4B,EAAE,IAAI,EAAE,CAAC,CAAC;AAC7C,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/bookings",
3
- "version": "1.0.148",
3
+ "version": "1.0.150",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -33,5 +33,5 @@
33
33
  "groupId": "com.wixpress.public-sdk-autogen"
34
34
  }
35
35
  },
36
- "falconPackageHash": "4057edebc089fb8ff2d9425f2384e39f72be9e53314d1b257e3be352"
36
+ "falconPackageHash": "ab5f03bf4f730ee5a0c8feed36f623907ea2b7a58d53a085d16403db"
37
37
  }