@wix/auto_sdk_bookings_staff-members 1.0.67 → 1.0.68

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.
Files changed (29) hide show
  1. package/build/cjs/{bookings-staff-v1-staff-member-staff-members.universal-q-tWyQ3e.d.ts → bookings-staff-v1-staff-member-staff-members.universal-ClAII2Rf.d.ts} +51 -83
  2. package/build/cjs/index.d.ts +20 -23
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +5 -5
  5. package/build/cjs/index.typings.js.map +1 -1
  6. package/build/cjs/meta.d.ts +29 -52
  7. package/build/cjs/meta.js.map +1 -1
  8. package/build/es/{bookings-staff-v1-staff-member-staff-members.universal-q-tWyQ3e.d.mts → bookings-staff-v1-staff-member-staff-members.universal-ClAII2Rf.d.mts} +51 -83
  9. package/build/es/index.d.mts +20 -23
  10. package/build/es/index.mjs.map +1 -1
  11. package/build/es/index.typings.d.mts +5 -5
  12. package/build/es/index.typings.mjs.map +1 -1
  13. package/build/es/meta.d.mts +29 -52
  14. package/build/es/meta.mjs.map +1 -1
  15. package/build/internal/cjs/{bookings-staff-v1-staff-member-staff-members.universal-q-tWyQ3e.d.ts → bookings-staff-v1-staff-member-staff-members.universal-ClAII2Rf.d.ts} +51 -83
  16. package/build/internal/cjs/index.d.ts +20 -23
  17. package/build/internal/cjs/index.js.map +1 -1
  18. package/build/internal/cjs/index.typings.d.ts +5 -5
  19. package/build/internal/cjs/index.typings.js.map +1 -1
  20. package/build/internal/cjs/meta.d.ts +29 -52
  21. package/build/internal/cjs/meta.js.map +1 -1
  22. package/build/internal/es/{bookings-staff-v1-staff-member-staff-members.universal-q-tWyQ3e.d.mts → bookings-staff-v1-staff-member-staff-members.universal-ClAII2Rf.d.mts} +51 -83
  23. package/build/internal/es/index.d.mts +20 -23
  24. package/build/internal/es/index.mjs.map +1 -1
  25. package/build/internal/es/index.typings.d.mts +5 -5
  26. package/build/internal/es/index.typings.mjs.map +1 -1
  27. package/build/internal/es/meta.d.mts +29 -52
  28. package/build/internal/es/meta.mjs.map +1 -1
  29. package/package.json +2 -2
@@ -38,16 +38,14 @@ interface StaffMember {
38
38
  /** Staff media. */
39
39
  mainMedia?: MediaItem;
40
40
  /**
41
- * Staff member's *resource ID*
42
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/resources/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resources-v2/introduction)),
41
+ * Staff member's [resource ID](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/introduction),
43
42
  * identical to `resource.id`.
44
43
  * @readonly
45
44
  * @format GUID
46
45
  */
47
46
  resourceId?: string | null;
48
47
  /**
49
- * Details about the *resource object*
50
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/resources/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resources-v2/introduction))
48
+ * Details about the [resource object](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/resource-object)
51
49
  * associated with the staff member. Available only if you specify `RESOURCE_DETAILS`
52
50
  * in the `fields` array.
53
51
  * @readonly
@@ -55,8 +53,7 @@ interface StaffMember {
55
53
  resource?: Resource;
56
54
  /**
57
55
  * Identity of the Wix user associated with the staff member. Learn more about
58
- * _identities_
59
- * ([SDK](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-identities) | [REST](https://dev.wix.com/docs/rest/articles/getting-started/about-identities)).
56
+ * [identities](https://dev.wix.com/docs/api-reference/articles/authentication/about-identities).
60
57
  * @readonly
61
58
  */
62
59
  associatedWixIdentity?: AssociatedWixIdentity;
@@ -79,10 +76,7 @@ interface StaffMember {
79
76
  _updatedDate?: Date | null;
80
77
  /** Extensions enabling users to save custom data related to the staff member. */
81
78
  extendedFields?: ExtendedFields;
82
- /**
83
- * Tags allowing you to classify staff members. Learn more about *tags*
84
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/tags/tags/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/tags/introduction)).
85
- */
79
+ /** Tags allowing you to classify staff members. Learn more about [tags](https://dev.wix.com/docs/api-reference/business-management/tags/introduction). */
86
80
  tags?: Tags;
87
81
  }
88
82
  interface MediaItem extends MediaItemMediaOneOf {
@@ -96,31 +90,26 @@ interface MediaItemMediaOneOf {
96
90
  }
97
91
  interface Resource {
98
92
  /**
99
- * ID of the *resource*
100
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/resources/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resources-v2/introduction))
93
+ * ID of the [resource](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resources-v2/introduction)
101
94
  * associated with the staff member.
102
95
  * @format GUID
103
96
  */
104
97
  _id?: string | null;
105
98
  /**
106
- * Working hour *schedule*
107
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/calendar/schedules/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction))
99
+ * Working hour [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction)
108
100
  * of the staff member. By default, identical the opening hours of the
109
- * business's *default location*
110
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/locations/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/locations/introduction)).
101
+ * business's [default location](https://dev.wix.com/docs/rest/business-management/locations/introduction).
111
102
  * If the staff has custom working hours, identical to `eventsSchedule`.
112
103
  * @maxSize 1
113
104
  */
114
105
  workingHoursSchedules?: WorkingHoursSchedule[];
115
106
  /**
116
- * Event *schedule*
117
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/calendar/schedules/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction))
107
+ * Event [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction)
118
108
  * of the staff member.
119
109
  */
120
110
  eventsSchedule?: EventSchedule;
121
111
  /**
122
- * Whether the staff member works according to business's *default location*
123
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/locations/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/locations/introduction))
112
+ * Whether the staff member works according to business's [default location](https://dev.wix.com/docs/rest/business-management/locations/introduction)
124
113
  * opening hours.
125
114
  *
126
115
  * `false`: The staff has custom working hours.
@@ -133,12 +122,10 @@ interface Resource {
133
122
  }
134
123
  interface WorkingHoursSchedule {
135
124
  /**
136
- * ID of the working hour *schedule*
137
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/calendar/schedules/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction))
125
+ * ID of the working hour [schedule](https://dev.wix.com/docs/api-reference/business-management/calendar/schedules-v3/introduction)
138
126
  * associated with the staff member. Currently, each staff member can't have more than a
139
127
  * single working hour schedule. Learn more about
140
- * _how Wix Bookings uses the Calendar APIs_
141
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/calendar/wix-bookings-integration) | [REST](https://dev.wix.com/docs/rest/business-management/calendar/wix-bookings-integration)).
128
+ * [how Wix Bookings uses the Calendar APIs](https://dev.wix.com/docs/api-reference/business-management/calendar/wix-bookings-integration).
142
129
  * @format GUID
143
130
  */
144
131
  _id?: string | null;
@@ -150,19 +137,17 @@ interface WorkingHoursSchedule {
150
137
  }
151
138
  interface EventSchedule {
152
139
  /**
153
- * ID of the event *schedule*
154
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/calendar/schedules/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction))
140
+ * ID of the event [schedule](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction)
155
141
  * associated with the staff member. Learn more about
156
142
  * _how Wix Bookings uses the Calendar APIs_
157
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/calendar/wix-bookings-integration) | [REST](https://dev.wix.com/docs/rest/business-management/calendar/wix-bookings-integration)).
143
+ * [Wix Bookings](https://dev.wix.com/docs/rest/business-management/calendar/wix-bookings-integration).
158
144
  * @format GUID
159
145
  */
160
146
  _id?: string | null;
161
147
  }
162
148
  interface LocationOptions {
163
149
  /**
164
- * Whether the resource is available in all *business locations*
165
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/services/about-service-locations#backend-modules_bookings_services_location-types) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/services/services-v2/about-service-locations#location-types)).
150
+ * Whether the resource is available in all [business locations](https://dev.wix.com/docs/rest/business-solutions/bookings/services/services-v2/about-service-locations#location-types).
166
151
  *
167
152
  * - `true`: The resource is available in all business locations.
168
153
  * - `false`: The resource is available only in specific locations.
@@ -175,8 +160,7 @@ interface LocationOptions {
175
160
  }
176
161
  interface SpecificLocation {
177
162
  /**
178
- * Whether the resource is available in *business locations*
179
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/services/about-service-locations#backend-modules_bookings_services_location-types) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/services/services-v2/about-service-locations#location-types)).
163
+ * Whether the resource is available in [business locations](https://dev.wix.com/docs/rest/business-solutions/bookings/services/services-v2/about-service-locations#location-types).
180
164
  *
181
165
  * - `true`: The resource is available in business locations.
182
166
  * - `false`: The resource isn't available in business locations.
@@ -195,8 +179,7 @@ interface SpecificLocation {
195
179
  }
196
180
  interface BusinessLocation {
197
181
  /**
198
- * ID of the business *location*
199
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/locations/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/locations/introduction)).
182
+ * ID of the business [location](https://dev.wix.com/docs/rest/business-management/locations/introduction).
200
183
  * @format GUID
201
184
  */
202
185
  locationId?: string | null;
@@ -205,8 +188,7 @@ interface BusinessLocation {
205
188
  interface AssociatedWixIdentity {
206
189
  /**
207
190
  * Information about the identity connected to the staff member. Available only
208
- * if the staff member is connected to a Wix user. Learn more about *identities*
209
- * ([SDK](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-identities) | [REST](https://dev.wix.com/docs/rest/articles/getting-started/about-identities)).
191
+ * if the staff member is connected to a Wix user. Learn more about [identities](https://dev.wix.com/docs/rest/articles/getting-started/about-identities).
210
192
  */
211
193
  identificationData?: CommonIdentificationData;
212
194
  /**
@@ -628,9 +610,8 @@ interface DeleteStaffMemberResponse {
628
610
  }
629
611
  interface QueryStaffMembersRequest {
630
612
  /**
631
- * Information about filters, paging, and sorting. See the article about
632
- * booking policy filters
633
- * ([REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting))
613
+ * Information about filters, paging, and sorting. See the
614
+ * [supported filters article](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting)
634
615
  * for all supported filters and sorting options.
635
616
  */
636
617
  query?: CursorQuery;
@@ -688,8 +669,7 @@ interface QueryStaffMembersResponse {
688
669
  interface QueryStaffMembersMultiLanguageRequest {
689
670
  /**
690
671
  * Information about filters, paging, and sorting. See the article about
691
- * booking policy filters
692
- * ([REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting))
672
+ * [booking policy filters](https://dev.wix.com/docs/api-reference/business-solutions/bookings/policies/booking-policies/supported-filters)
693
673
  * for all supported filters and sorting options.
694
674
  */
695
675
  query?: CursorQuery;
@@ -709,8 +689,8 @@ interface QueryStaffMembersMultiLanguageResponse {
709
689
  }
710
690
  interface CountStaffMembersRequest {
711
691
  /**
712
- * Filter to base the count upon. See the *supported filters article*
713
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/supported-filters) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting))
692
+ * Filter to base the count upon. See the
693
+ * [supported filters article](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting)
714
694
  * for a complete list of supported filters.
715
695
  */
716
696
  filter?: Record<string, any> | null;
@@ -747,7 +727,7 @@ interface SearchStaffMembersRequest {
747
727
  /**
748
728
  * Search criteria including filter, sort, and paging options.
749
729
  *
750
- * See the supported filters article ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/supported-filters) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting)) for complete filter and sorting options.
730
+ * See the [supported filters article](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting) for complete filter and sorting options.
751
731
  */
752
732
  search: CursorSearch;
753
733
  /**
@@ -765,13 +745,13 @@ interface CursorSearch extends CursorSearchPagingMethodOneOf {
765
745
  /**
766
746
  * Filter object for narrowing search results. For example, to return only staff members with specific email domains: `"filter": {"email": {"$contains": "@company.com"}}`.
767
747
  *
768
- * Learn more about the filter format in the supported filters article ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/supported-filters) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting)).
748
+ * Learn more about the filter format in the [supported filters article](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/filtering-and-sorting).
769
749
  */
770
750
  filter?: Record<string, any> | null;
771
751
  /**
772
752
  * Array of sort objects specifying result order. For example, to sort by creation date in descending order: `"sort": [{"fieldName": "createdDate", "order": "DESC"}]`.
773
753
  *
774
- * Learn more about the sort format in the supported filters article ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/supported-filters) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting)).
754
+ * Learn more about the sort format in the [supported filters article](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/filtering-and-sorting).
775
755
  * @maxSize 10
776
756
  */
777
757
  sort?: Sorting[];
@@ -1085,8 +1065,7 @@ interface AssignWorkingHoursScheduleRequest {
1085
1065
  */
1086
1066
  staffMemberId: string;
1087
1067
  /**
1088
- * ID of the *schedule*
1089
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/calendar/schedules/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction))
1068
+ * ID of the [schedule](https://dev.wix.com/docs/api-reference/business-management/calendar/schedules-v3/introduction)
1090
1069
  * to assign to the staff member.
1091
1070
  *
1092
1071
  * Must be either the staff member's event schedule ID or the working hour
@@ -1111,8 +1090,7 @@ interface AssignCustomScheduleRequest {
1111
1090
  */
1112
1091
  staffMemberId: string;
1113
1092
  /**
1114
- * ID of the *schedule*
1115
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/calendar/schedules/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction))
1093
+ * ID of the [schedule](https://dev.wix.com/docs/api-reference/business-management/calendar/schedules-v3/introduction)
1116
1094
  * to assign to the staff member.
1117
1095
  * @format GUID
1118
1096
  */
@@ -1185,8 +1163,7 @@ interface BulkActionMetadata {
1185
1163
  }
1186
1164
  interface BulkUpdateStaffMemberTagsByFilterRequest {
1187
1165
  /**
1188
- * Filter to base the update upon. See the *supported filters article*
1189
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/supported-filters) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting))
1166
+ * Filter to base the update upon. See the [supported filters article](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting)
1190
1167
  * for a complete list of supported filters.
1191
1168
  */
1192
1169
  filter: Record<string, any> | null;
@@ -2640,7 +2617,7 @@ declare function onStaffMemberUpdated(handler: (event: StaffMemberUpdatedEnvelop
2640
2617
  *
2641
2618
  *
2642
2619
  * By default, the staff member works during the business working hours.
2643
- * You could follow this sample flow ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/sample-flows#backend-modules_bookings_staff-members_assign-a-staff-working-hour-schedule) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/sample-flows#assign-a-staff-working-hour-schedule)) to set custom working hours.
2620
+ * You could follow this [sample flow](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/sample-flows#assign-a-staff-working-hour-schedule) to set custom working hours.
2644
2621
  * @param staffMember - Staff member to create.
2645
2622
  * @public
2646
2623
  * @requiredField staffMember
@@ -2794,16 +2771,14 @@ interface UpdateStaffMember {
2794
2771
  /** Staff media. */
2795
2772
  mainMedia?: MediaItem;
2796
2773
  /**
2797
- * Staff member's *resource ID*
2798
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/resources/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resources-v2/introduction)),
2774
+ * Staff member's [resource ID](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/introduction),
2799
2775
  * identical to `resource.id`.
2800
2776
  * @readonly
2801
2777
  * @format GUID
2802
2778
  */
2803
2779
  resourceId?: string | null;
2804
2780
  /**
2805
- * Details about the *resource object*
2806
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/resources/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resources-v2/introduction))
2781
+ * Details about the [resource object](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/resource-object)
2807
2782
  * associated with the staff member. Available only if you specify `RESOURCE_DETAILS`
2808
2783
  * in the `fields` array.
2809
2784
  * @readonly
@@ -2811,8 +2786,7 @@ interface UpdateStaffMember {
2811
2786
  resource?: Resource;
2812
2787
  /**
2813
2788
  * Identity of the Wix user associated with the staff member. Learn more about
2814
- * _identities_
2815
- * ([SDK](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-identities) | [REST](https://dev.wix.com/docs/rest/articles/getting-started/about-identities)).
2789
+ * [identities](https://dev.wix.com/docs/api-reference/articles/authentication/about-identities).
2816
2790
  * @readonly
2817
2791
  */
2818
2792
  associatedWixIdentity?: AssociatedWixIdentity;
@@ -2835,10 +2809,7 @@ interface UpdateStaffMember {
2835
2809
  _updatedDate?: Date | null;
2836
2810
  /** Extensions enabling users to save custom data related to the staff member. */
2837
2811
  extendedFields?: ExtendedFields;
2838
- /**
2839
- * Tags allowing you to classify staff members. Learn more about *tags*
2840
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/tags/tags/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/tags/introduction)).
2841
- */
2812
+ /** Tags allowing you to classify staff members. Learn more about [tags](https://dev.wix.com/docs/api-reference/business-management/tags/introduction). */
2842
2813
  tags?: Tags;
2843
2814
  }
2844
2815
  interface UpdateStaffMemberOptions {
@@ -2852,7 +2823,7 @@ interface UpdateStaffMemberOptions {
2852
2823
  * Deletes a staff member.
2853
2824
  *
2854
2825
  *
2855
- * Also deletes the resource ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/resources/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resources-v2/introduction)) associated with the staff member.
2826
+ * Also deletes the [resource](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/introduction) associated with the staff member.
2856
2827
  * @param staffMemberId - ID of the staff member to delete.
2857
2828
  * @public
2858
2829
  * @requiredField staffMemberId
@@ -2959,7 +2930,7 @@ interface StaffMembersQueryBuilder {
2959
2930
  *
2960
2931
  * ### Filter
2961
2932
  *
2962
- * Refer to the supported filters article ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/supported-filters) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting)) for a complete list of supported filters and sorting options.
2933
+ * Refer to the [supported filters article](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/filtering-and-sorting) for a complete list of supported filters and sorting options.
2963
2934
  *
2964
2935
  * ### See also
2965
2936
  *
@@ -2972,8 +2943,8 @@ interface StaffMembersQueryBuilder {
2972
2943
  declare function countStaffMembers(options?: CountStaffMembersOptions): Promise<NonNullablePaths<CountStaffMembersResponse, `count`, 2>>;
2973
2944
  interface CountStaffMembersOptions {
2974
2945
  /**
2975
- * Filter to base the count upon. See the *supported filters article*
2976
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/supported-filters) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting))
2946
+ * Filter to base the count upon. See the
2947
+ * [supported filters article](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting)
2977
2948
  * for a complete list of supported filters.
2978
2949
  */
2979
2950
  filter?: Record<string, any> | null;
@@ -2986,9 +2957,9 @@ interface CountStaffMembersOptions {
2986
2957
  * However, you can specify an alternative email address. If no existing Wix user is associated with that email, Wix sends them an invitation to become a Wix user.
2987
2958
  * If an existing user is found but not linked to the site, Wix Bookings sends an invitation to join the site.
2988
2959
  *
2989
- * To check the connection status, call Get Staff Member ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/get-staff-member) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/get-staff-member)), and specify `ASSOCIATED_IDENTITY_STATUS` in the `fields` parameter.
2960
+ * To check the connection status, call [Get Staff Member](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/get-staff-member), and specify `ASSOCIATED_IDENTITY_STATUS` in the `fields` parameter.
2990
2961
  *
2991
- * You must call Disconnect Staff Member From User ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/disconnect-staff-member-from-user) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/disconnect-staff-member-from-user)) before connecting a different Wix user to the staff member.
2962
+ * You must call [Disconnect Staff Member From User](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/disconnect-staff-member-from-user) before connecting a different Wix user to the staff member.
2992
2963
  * @param staffMemberId - ID of the staff member to connect to the Wix user.
2993
2964
  * @public
2994
2965
  * @requiredField staffMemberId
@@ -3056,13 +3027,13 @@ type StaffMemberSearch = {
3056
3027
  /**
3057
3028
  Filter object for narrowing search results. For example, to return only staff members with specific email domains: `"filter": {"email": {"$contains": "@company.com"}}`.
3058
3029
 
3059
- Learn more about the filter format in the supported filters article ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/supported-filters) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting)).
3030
+ Learn more about the filter format in the [supported filters article](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/filtering-and-sorting).
3060
3031
  */
3061
3032
  filter?: CommonSearchWithEntityContext['filter'] | null;
3062
3033
  /**
3063
3034
  Array of sort objects specifying result order. For example, to sort by creation date in descending order: `"sort": [{"fieldName": "createdDate", "order": "DESC"}]`.
3064
3035
 
3065
- Learn more about the sort format in the supported filters article ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/supported-filters) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting)).
3036
+ Learn more about the sort format in the [supported filters article](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/filtering-and-sorting).
3066
3037
  @maxSize: 10
3067
3038
  */
3068
3039
  sort?: {
@@ -3125,12 +3096,12 @@ interface DisconnectStaffMemberFromUserOptions {
3125
3096
  fields?: RequestedFieldsWithLiterals[];
3126
3097
  }
3127
3098
  /**
3128
- * Updates a staff member's working hours based on the specified schedule ID ([SDK](https://dev.wix.com/docs/sdk/backend-modules/calendar/schedules/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction)).
3099
+ * Updates a staff member's working hours based on the specified [schedule ID](https://dev.wix.com/docs/api-reference/business-management/calendar/schedules-v3/introduction).
3129
3100
  *
3130
3101
  *
3131
3102
  * ### Default working hours
3132
3103
  *
3133
- * By default, staff members work during the opening hours of the business's default location ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/locations/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/locations/introduction)).
3104
+ * By default, staff members work during the opening hours of the business's default [location](https://dev.wix.com/docs/api-reference/business-management/locations/introduction).
3134
3105
  *
3135
3106
  * ### Schedule ID
3136
3107
  *
@@ -3140,14 +3111,13 @@ interface DisconnectStaffMemberFromUserOptions {
3140
3111
  * #### Staff event schedule
3141
3112
  *
3142
3113
  * To customize a staff member's working hours, specify their event schedule ID as `scheduleId`.
3143
- * Refer to this sample flow ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/sample-flows#backend-modules_bookings_staff-members_assign-a-staff-working-hour-schedule) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/sample-flows#assign-a-staff-working-hour-schedule)) for more details.
3114
+ * Refer to this [sample flow](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/sample-flows#assign-a-staff-working-hour-schedule) for more details.
3144
3115
  *
3145
3116
  * #### Business working hour schedule
3146
3117
  *
3147
3118
  * To reset a staff member's working hours to the default business hours, specify the ID of the business working hour schedule as `scheduleId`.
3148
3119
  * @param staffMemberId - ID of the staff member to assign the schedule to.
3149
- * @param scheduleId - ID of the *schedule*
3150
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/calendar/schedules/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction))
3120
+ * @param scheduleId - ID of the [schedule](https://dev.wix.com/docs/api-reference/business-management/calendar/schedules-v3/introduction)
3151
3121
  * to assign to the staff member.
3152
3122
  *
3153
3123
  * Must be either the staff member's event schedule ID or the working hour
@@ -3177,10 +3147,9 @@ interface AssignWorkingHoursScheduleOptions {
3177
3147
  * By default staff members use the shared business working hours schedule.
3178
3148
  * By assigning a custom working hours schedule to a staff member, you can define specific working hours for that staff member.
3179
3149
  *
3180
- * To create and manage schedules and working hours sessions, use the Events API ([SDK](https://dev.wix.com/docs/sdk/backend-modules/calendar/events/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/introduction)).
3150
+ * To create and manage schedules and working hours sessions, use the [Events API](https://dev.wix.com/docs/api-reference/business-management/calendar/events-v3/introduction).
3181
3151
  * @param staffMemberId - ID of the staff member for which to assign a working hour schedule.
3182
- * @param scheduleId - ID of the *schedule*
3183
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/calendar/schedules/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction))
3152
+ * @param scheduleId - ID of the [schedule](https://dev.wix.com/docs/api-reference/business-management/calendar/schedules-v3/introduction)
3184
3153
  * to assign to the staff member.
3185
3154
  * @public
3186
3155
  * @requiredField scheduleId
@@ -3201,7 +3170,7 @@ interface AssignCustomScheduleOptions {
3201
3170
  fields?: RequestedFieldsWithLiterals[];
3202
3171
  }
3203
3172
  /**
3204
- * Synchronously updates tags ([SDK](https://dev.wix.com/docs/sdk/backend-modules/tags/tags/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/tags/introduction)) for up to 100 staff members.
3173
+ * Synchronously updates [tags](https://dev.wix.com/docs/api-reference/business-management/tags/introduction) for up to 100 staff members.
3205
3174
  *
3206
3175
  *
3207
3176
  * If you specify a tag both in `assignTags` and `unassignTags`, the call succeeds and the tag is assigned.
@@ -3220,16 +3189,15 @@ interface BulkUpdateStaffMemberTagsOptions {
3220
3189
  unassignTags?: Tags;
3221
3190
  }
3222
3191
  /**
3223
- * Asynchronously updates tags ([SDK](https://dev.wix.com/docs/sdk/backend-modules/tags/tags/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/tags/introduction)) for staff members, given the provided filtering.
3192
+ * Asynchronously updates [tags](https://dev.wix.com/docs/api-reference/business-management/tags/introduction) for staff members, given the provided filtering.
3224
3193
  *
3225
3194
  *
3226
3195
  * If you specify a tag both in `assignTags` and `unassignTags`, the call succeeds and the tag is assigned.
3227
3196
  *
3228
3197
  * ### Filter
3229
3198
  *
3230
- * Refer to the supported filters article ([REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting)) for a complete list of supported filters and sorting options.
3231
- * @param filter - Filter to base the update upon. See the *supported filters article*
3232
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/supported-filters) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting))
3199
+ * Refer to the [supported filters article](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/filtering-and-sorting) for a complete list of supported filters and sorting options.
3200
+ * @param filter - Filter to base the update upon. See the [supported filters article](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting)
3233
3201
  * for a complete list of supported filters.
3234
3202
  * @public
3235
3203
  * @requiredField filter
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { S as StaffMember, C as CreateStaffMemberOptions, G as GetStaffMemberOptions, a as GetDeletedStaffMemberOptions, b as GetDeletedStaffMemberResponse, L as ListDeletedStaffMembersOptions, c as ListDeletedStaffMembersResponse, U as UpdateStaffMember, d as UpdateStaffMemberOptions, Q as QueryStaffMembersOptions, e as StaffMembersQueryBuilder, f as CountStaffMembersOptions, g as CountStaffMembersResponse, h as ConnectStaffMemberToUserOptions, i as ConnectStaffMemberToUserResponse, j as StaffMemberSearch, k as SearchStaffMembersOptions, l as SearchStaffMembersResponse, D as DisconnectStaffMemberFromUserOptions, m as DisconnectStaffMemberFromUserResponse, A as AssignWorkingHoursScheduleOptions, n as AssignWorkingHoursScheduleResponse, o as AssignCustomScheduleOptions, p as AssignCustomScheduleResponse, B as BulkUpdateStaffMemberTagsOptions, q as BulkUpdateStaffMemberTagsResponse, r as BulkUpdateStaffMemberTagsByFilterOptions, s as BulkUpdateStaffMemberTagsByFilterResponse, t as StaffMemberConnectedToUserEnvelope, u as StaffMemberCreatedEnvelope, v as StaffMemberDeletedEnvelope, w as StaffMemberDisconnectedFromUserEnvelope, x as StaffMemberFullyCreatedEnvelope, y as StaffMemberUpdatedEnvelope } from './bookings-staff-v1-staff-member-staff-members.universal-q-tWyQ3e.mjs';
3
- export { bx as ActionEvent, bH as Address, bK as AddressLocation, bI as AddressStreetOneOf, aU as AggregationData, bb as AggregationResults, bc as AggregationResultsResultOneOf, a$ as AggregationResultsScalarResult, J as AggregationType, cC as AggregationTypeWithLiterals, bi as ApplicationError, X as ApprovalStatus, cK as ApprovalStatusWithLiterals, bf as AssignCustomScheduleRequest, be as AssignWorkingHoursScheduleRequest, ah as AssociatedConferencingAccount, ai as AssociatedConferencingAccountAccountOneOf, ag as AssociatedConferencingAccounts, af as AssociatedConferencingProvider, ae as AssociatedConferencingProviders, aa as AssociatedWixIdentity, z as AssociatedWixIdentityConnectionStatusEnumConnectionStatus, cw as AssociatedWixIdentityConnectionStatusEnumConnectionStatusWithLiterals, bV as Availability, bW as AvailabilityConstraints, ce as AvailabilityPolicy, cd as AvailabilityPolicyUpdated, cr as BaseEventMetadata, bk as BulkActionMetadata, bl as BulkUpdateStaffMemberTagsByFilterRequest, bg as BulkUpdateStaffMemberTagsRequest, bj as BulkUpdateStaffMemberTagsResult, a9 as BusinessLocation, bQ as BusinessSchedule, c0 as CalendarConference, c4 as CalendarDateTime, _ as CalendarType, cN as CalendarTypeWithLiterals, ab as CommonIdentificationData, ac as CommonIdentificationDataIdOneOf, cR as CommonSearchWithEntityContext, b$ as ConferenceProvider, Z as ConferenceType, cM as ConferenceTypeWithLiterals, aP as ConnectStaffMemberToUserRequest, ad as Connection, E as ConnectionStatus, cx as ConnectionStatusWithLiterals, aO as CountStaffMembersRequest, aq as CreateStaffMemberRequest, ar as CreateStaffMemberResponse, aw as CursorPaging, ax as CursorPagingMetadata, aI as CursorQuery, aJ as CursorQueryPagingMethodOneOf, aR as CursorSearch, aS as CursorSearchPagingMethodOneOf, ay as Cursors, aj as CustomConferenceAccount, b7 as DateHistogramResult, b9 as DateHistogramResults, K as Day, W as DayOfWeek, cJ as DayOfWeekWithLiterals, cD as DayWithLiterals, aF as DeleteStaffMemberRequest, aG as DeleteStaffMemberResponse, bd as DisconnectStaffMemberFromUserRequest, br as DomainEvent, bs as DomainEventBodyOneOf, bo as Empty, bt as EntityCreatedEvent, bw as EntityDeletedEvent, bv as EntityUpdatedEvent, cs as EventMetadata, a6 as EventSchedule, ak as ExtendedFields, c6 as ExternalCalendarInfo, bZ as ExternalCalendarOverrides, bE as Frequency, au as GetDeletedStaffMemberRequest, as as GetStaffMemberRequest, at as GetStaffMemberResponse, b8 as GroupByValueResults, cp as IdentificationData, cq as IdentificationDataIdOneOf, I as IdentityType, cv as IdentityTypeWithLiterals, bD as Interval, cf as IntervalSplit, bh as ItemMetadata, bF as LinkedSchedule, av as ListDeletedStaffMembersRequest, c5 as LocalDateTime, bG as Location, a7 as LocationOptions, P as LocationStatus, cH as LocationStatusWithLiterals, O as LocationType, cG as LocationTypeWithLiterals, bN as LocationsAddress, bP as LocationsAddressLocation, bM as LocationsLocation, V as LocationsLocationType, cI as LocationsLocationTypeWithLiterals, bO as LocationsStreetAddress, a2 as MediaItem, a3 as MediaItemMediaOneOf, co as MessageEnvelope, cm as MigrationData, cl as MigrationEvent, M as Mode, cA as ModeWithLiterals, ci as MultipleSessionsCreated, aX as NestedAggregationResults, aY as NestedAggregationResultsResultOneOf, b4 as NestedResultValue, b5 as NestedResultValueResultOneOf, ba as NestedResults, b0 as NestedValueAggregationResult, bY as Participant, c8 as ParticipantNotification, bp as PolicyRemovedFromContributor, bq as PolicyUpdatedForContributor, bU as Price, aM as QueryStaffMembersMultiLanguageRequest, aN as QueryStaffMembersMultiLanguageResponse, aH as QueryStaffMembersRequest, aL as QueryStaffMembersResponse, aW as RangeAggregationResult, b2 as RangeResult, a_ as RangeResults, bT as Rate, bC as RecurringInterval, N as RecurringIntervalType, cF as RecurringIntervalTypeWithLiterals, cg as RecurringSessionSplit, c2 as RecurringSessionsUpdated, az as RemoveStaffMemberFromTrashBinRequest, aA as RemoveStaffMemberFromTrashBinResponse, R as RequestedFields, cy as RequestedFieldsWithLiterals, a4 as Resource, bu as RestoreInfo, aB as RestoreStaffMemberFromTrashBinRequest, aC as RestoreStaffMemberFromTrashBinResponse, bm as RestoreStaffRequest, bn as RestoreStaffResponse, b6 as Results, b3 as ScalarResult, H as ScalarType, cB as ScalarTypeWithLiterals, bB as Schedule, c9 as ScheduleCancelled, bA as ScheduleCreated, by as ScheduleNotification, bz as ScheduleNotificationEventOneOf, Y as ScheduleStatus, cL as ScheduleStatusWithLiterals, ch as ScheduleUnassignedFromUser, c1 as ScheduleUpdated, cj as ScheduleWithSessions, aT as SearchDetails, aQ as SearchStaffMembersRequest, c3 as Session, cc as SessionCancelled, ca as SessionCreated, a0 as SessionType, cP as SessionTypeWithLiterals, cb as SessionUpdated, c7 as SessionVersion, ck as SitePropertiesOnScheduleCreation, F as SortOrder, cz as SortOrderWithLiterals, aK as Sorting, bS as SpecialHourPeriod, a8 as SpecificLocation, bX as SplitInterval, cn as StaffData, ao as StaffMemberConnectedToUser, an as StaffMemberDisconnectedFromUser, ap as StaffMemberFullyCreated, cu as StaffMemberSearchSpec, ct as StaffMembersQueryResult, $ as Status, cO as StatusWithLiterals, bJ as StreetAddress, bL as Subdivision, am as TagList, al as Tags, bR as TimePeriod, T as Transparency, cE as TransparencyWithLiterals, aD as UpdateStaffMemberRequest, aE as UpdateStaffMemberResponse, aV as ValueAggregationResult, b1 as ValueResult, aZ as ValueResults, b_ as Version, a1 as WebhookIdentityType, cQ as WebhookIdentityTypeWithLiterals, a5 as WorkingHoursSchedule } from './bookings-staff-v1-staff-member-staff-members.universal-q-tWyQ3e.mjs';
2
+ import { S as StaffMember, C as CreateStaffMemberOptions, G as GetStaffMemberOptions, a as GetDeletedStaffMemberOptions, b as GetDeletedStaffMemberResponse, L as ListDeletedStaffMembersOptions, c as ListDeletedStaffMembersResponse, U as UpdateStaffMember, d as UpdateStaffMemberOptions, Q as QueryStaffMembersOptions, e as StaffMembersQueryBuilder, f as CountStaffMembersOptions, g as CountStaffMembersResponse, h as ConnectStaffMemberToUserOptions, i as ConnectStaffMemberToUserResponse, j as StaffMemberSearch, k as SearchStaffMembersOptions, l as SearchStaffMembersResponse, D as DisconnectStaffMemberFromUserOptions, m as DisconnectStaffMemberFromUserResponse, A as AssignWorkingHoursScheduleOptions, n as AssignWorkingHoursScheduleResponse, o as AssignCustomScheduleOptions, p as AssignCustomScheduleResponse, B as BulkUpdateStaffMemberTagsOptions, q as BulkUpdateStaffMemberTagsResponse, r as BulkUpdateStaffMemberTagsByFilterOptions, s as BulkUpdateStaffMemberTagsByFilterResponse, t as StaffMemberConnectedToUserEnvelope, u as StaffMemberCreatedEnvelope, v as StaffMemberDeletedEnvelope, w as StaffMemberDisconnectedFromUserEnvelope, x as StaffMemberFullyCreatedEnvelope, y as StaffMemberUpdatedEnvelope } from './bookings-staff-v1-staff-member-staff-members.universal-ClAII2Rf.mjs';
3
+ export { bx as ActionEvent, bH as Address, bK as AddressLocation, bI as AddressStreetOneOf, aU as AggregationData, bb as AggregationResults, bc as AggregationResultsResultOneOf, a$ as AggregationResultsScalarResult, J as AggregationType, cC as AggregationTypeWithLiterals, bi as ApplicationError, X as ApprovalStatus, cK as ApprovalStatusWithLiterals, bf as AssignCustomScheduleRequest, be as AssignWorkingHoursScheduleRequest, ah as AssociatedConferencingAccount, ai as AssociatedConferencingAccountAccountOneOf, ag as AssociatedConferencingAccounts, af as AssociatedConferencingProvider, ae as AssociatedConferencingProviders, aa as AssociatedWixIdentity, z as AssociatedWixIdentityConnectionStatusEnumConnectionStatus, cw as AssociatedWixIdentityConnectionStatusEnumConnectionStatusWithLiterals, bV as Availability, bW as AvailabilityConstraints, ce as AvailabilityPolicy, cd as AvailabilityPolicyUpdated, cr as BaseEventMetadata, bk as BulkActionMetadata, bl as BulkUpdateStaffMemberTagsByFilterRequest, bg as BulkUpdateStaffMemberTagsRequest, bj as BulkUpdateStaffMemberTagsResult, a9 as BusinessLocation, bQ as BusinessSchedule, c0 as CalendarConference, c4 as CalendarDateTime, _ as CalendarType, cN as CalendarTypeWithLiterals, ab as CommonIdentificationData, ac as CommonIdentificationDataIdOneOf, cR as CommonSearchWithEntityContext, b$ as ConferenceProvider, Z as ConferenceType, cM as ConferenceTypeWithLiterals, aP as ConnectStaffMemberToUserRequest, ad as Connection, E as ConnectionStatus, cx as ConnectionStatusWithLiterals, aO as CountStaffMembersRequest, aq as CreateStaffMemberRequest, ar as CreateStaffMemberResponse, aw as CursorPaging, ax as CursorPagingMetadata, aI as CursorQuery, aJ as CursorQueryPagingMethodOneOf, aR as CursorSearch, aS as CursorSearchPagingMethodOneOf, ay as Cursors, aj as CustomConferenceAccount, b7 as DateHistogramResult, b9 as DateHistogramResults, K as Day, W as DayOfWeek, cJ as DayOfWeekWithLiterals, cD as DayWithLiterals, aF as DeleteStaffMemberRequest, aG as DeleteStaffMemberResponse, bd as DisconnectStaffMemberFromUserRequest, br as DomainEvent, bs as DomainEventBodyOneOf, bo as Empty, bt as EntityCreatedEvent, bw as EntityDeletedEvent, bv as EntityUpdatedEvent, cs as EventMetadata, a6 as EventSchedule, ak as ExtendedFields, c6 as ExternalCalendarInfo, bZ as ExternalCalendarOverrides, bE as Frequency, au as GetDeletedStaffMemberRequest, as as GetStaffMemberRequest, at as GetStaffMemberResponse, b8 as GroupByValueResults, cp as IdentificationData, cq as IdentificationDataIdOneOf, I as IdentityType, cv as IdentityTypeWithLiterals, bD as Interval, cf as IntervalSplit, bh as ItemMetadata, bF as LinkedSchedule, av as ListDeletedStaffMembersRequest, c5 as LocalDateTime, bG as Location, a7 as LocationOptions, P as LocationStatus, cH as LocationStatusWithLiterals, O as LocationType, cG as LocationTypeWithLiterals, bN as LocationsAddress, bP as LocationsAddressLocation, bM as LocationsLocation, V as LocationsLocationType, cI as LocationsLocationTypeWithLiterals, bO as LocationsStreetAddress, a2 as MediaItem, a3 as MediaItemMediaOneOf, co as MessageEnvelope, cm as MigrationData, cl as MigrationEvent, M as Mode, cA as ModeWithLiterals, ci as MultipleSessionsCreated, aX as NestedAggregationResults, aY as NestedAggregationResultsResultOneOf, b4 as NestedResultValue, b5 as NestedResultValueResultOneOf, ba as NestedResults, b0 as NestedValueAggregationResult, bY as Participant, c8 as ParticipantNotification, bp as PolicyRemovedFromContributor, bq as PolicyUpdatedForContributor, bU as Price, aM as QueryStaffMembersMultiLanguageRequest, aN as QueryStaffMembersMultiLanguageResponse, aH as QueryStaffMembersRequest, aL as QueryStaffMembersResponse, aW as RangeAggregationResult, b2 as RangeResult, a_ as RangeResults, bT as Rate, bC as RecurringInterval, N as RecurringIntervalType, cF as RecurringIntervalTypeWithLiterals, cg as RecurringSessionSplit, c2 as RecurringSessionsUpdated, az as RemoveStaffMemberFromTrashBinRequest, aA as RemoveStaffMemberFromTrashBinResponse, R as RequestedFields, cy as RequestedFieldsWithLiterals, a4 as Resource, bu as RestoreInfo, aB as RestoreStaffMemberFromTrashBinRequest, aC as RestoreStaffMemberFromTrashBinResponse, bm as RestoreStaffRequest, bn as RestoreStaffResponse, b6 as Results, b3 as ScalarResult, H as ScalarType, cB as ScalarTypeWithLiterals, bB as Schedule, c9 as ScheduleCancelled, bA as ScheduleCreated, by as ScheduleNotification, bz as ScheduleNotificationEventOneOf, Y as ScheduleStatus, cL as ScheduleStatusWithLiterals, ch as ScheduleUnassignedFromUser, c1 as ScheduleUpdated, cj as ScheduleWithSessions, aT as SearchDetails, aQ as SearchStaffMembersRequest, c3 as Session, cc as SessionCancelled, ca as SessionCreated, a0 as SessionType, cP as SessionTypeWithLiterals, cb as SessionUpdated, c7 as SessionVersion, ck as SitePropertiesOnScheduleCreation, F as SortOrder, cz as SortOrderWithLiterals, aK as Sorting, bS as SpecialHourPeriod, a8 as SpecificLocation, bX as SplitInterval, cn as StaffData, ao as StaffMemberConnectedToUser, an as StaffMemberDisconnectedFromUser, ap as StaffMemberFullyCreated, cu as StaffMemberSearchSpec, ct as StaffMembersQueryResult, $ as Status, cO as StatusWithLiterals, bJ as StreetAddress, bL as Subdivision, am as TagList, al as Tags, bR as TimePeriod, T as Transparency, cE as TransparencyWithLiterals, aD as UpdateStaffMemberRequest, aE as UpdateStaffMemberResponse, aV as ValueAggregationResult, b1 as ValueResult, aZ as ValueResults, b_ as Version, a1 as WebhookIdentityType, cQ as WebhookIdentityTypeWithLiterals, a5 as WorkingHoursSchedule } from './bookings-staff-v1-staff-member-staff-members.universal-ClAII2Rf.mjs';
4
4
 
5
5
  declare function createStaffMember$1(httpClient: HttpClient): CreateStaffMemberSignature;
6
6
  interface CreateStaffMemberSignature {
@@ -9,7 +9,7 @@ interface CreateStaffMemberSignature {
9
9
  *
10
10
  *
11
11
  * By default, the staff member works during the business working hours.
12
- * You could follow this sample flow ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/sample-flows#backend-modules_bookings_staff-members_assign-a-staff-working-hour-schedule) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/sample-flows#assign-a-staff-working-hour-schedule)) to set custom working hours.
12
+ * You could follow this [sample flow](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/sample-flows#assign-a-staff-working-hour-schedule) to set custom working hours.
13
13
  * @param - Staff member to create.
14
14
  * @param - Options for creating the staff member.
15
15
  * @returns Created staff member.
@@ -78,7 +78,7 @@ interface DeleteStaffMemberSignature {
78
78
  * Deletes a staff member.
79
79
  *
80
80
  *
81
- * Also deletes the resource ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/resources/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/resources/resources-v2/introduction)) associated with the staff member.
81
+ * Also deletes the [resource](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/introduction) associated with the staff member.
82
82
  * @param - ID of the staff member to delete.
83
83
  */
84
84
  (staffMemberId: string): Promise<void>;
@@ -113,7 +113,7 @@ interface CountStaffMembersSignature {
113
113
  *
114
114
  * ### Filter
115
115
  *
116
- * Refer to the supported filters article ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/supported-filters) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting)) for a complete list of supported filters and sorting options.
116
+ * Refer to the [supported filters article](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/filtering-and-sorting) for a complete list of supported filters and sorting options.
117
117
  *
118
118
  * ### See also
119
119
  *
@@ -131,9 +131,9 @@ interface ConnectStaffMemberToUserSignature {
131
131
  * However, you can specify an alternative email address. If no existing Wix user is associated with that email, Wix sends them an invitation to become a Wix user.
132
132
  * If an existing user is found but not linked to the site, Wix Bookings sends an invitation to join the site.
133
133
  *
134
- * To check the connection status, call Get Staff Member ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/get-staff-member) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/get-staff-member)), and specify `ASSOCIATED_IDENTITY_STATUS` in the `fields` parameter.
134
+ * To check the connection status, call [Get Staff Member](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/get-staff-member), and specify `ASSOCIATED_IDENTITY_STATUS` in the `fields` parameter.
135
135
  *
136
- * You must call Disconnect Staff Member From User ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/disconnect-staff-member-from-user) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/disconnect-staff-member-from-user)) before connecting a different Wix user to the staff member.
136
+ * You must call [Disconnect Staff Member From User](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/disconnect-staff-member-from-user) before connecting a different Wix user to the staff member.
137
137
  * @param - ID of the staff member to connect to the Wix user.
138
138
  * @param - Options for connecting the staff member to a Wix user.
139
139
  */
@@ -153,14 +153,14 @@ interface SearchStaffMembersSignature {
153
153
  *
154
154
  * ### Filter
155
155
  *
156
- * Refer to the supported filters article ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/supported-filters) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting)) for a complete list of supported filters and sorting options.
156
+ * Refer to the [supported filters article](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/filtering-and-sorting) for a complete list of supported filters and sorting options.
157
157
  *
158
158
  * ### See also
159
159
  *
160
- * To learn about working with Search methods, see API Query Language ([SDK](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/api-query-language) | [REST](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language)) and Sorting and Paging ([SDK](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/api-query-language#the-sort-array) | [REST](https://dev.wix.com/docs/rest/articles/getting-started/sorting-and-paging)).
160
+ * To learn about working with Search methods, see [API Query Language](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-the-wix-api-query-language) and [Sorting and Paging](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-sorting-and-paging).
161
161
  * @param - Search criteria including filter, sort, and paging options.
162
162
  *
163
- * See the supported filters article ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/supported-filters) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting)) for complete filter and sorting options.
163
+ * See the [supported filters article](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting) for complete filter and sorting options.
164
164
  */
165
165
  (search: StaffMemberSearch, options?: SearchStaffMembersOptions): Promise<NonNullablePaths<SearchStaffMembersResponse, `staffMembers` | `staffMembers.${number}.resource.usesDefaultWorkingHours` | `staffMembers.${number}.associatedWixIdentity.identificationData.anonymousVisitorId` | `staffMembers.${number}.associatedWixIdentity.identificationData.memberId` | `staffMembers.${number}.associatedWixIdentity.identificationData.wixUserId` | `staffMembers.${number}.associatedWixIdentity.identificationData.appId` | `staffMembers.${number}.associatedWixIdentity.connectionStatus` | `staffMembers.${number}.associatedWixIdentity.connection.status` | `aggregationData.results` | `aggregationData.results.${number}.scalar.type` | `aggregationData.results.${number}.scalar.value` | `aggregationData.results.${number}.name` | `aggregationData.results.${number}.type` | `aggregationData.results.${number}.fieldPath`, 6>>;
166
166
  }
@@ -181,12 +181,12 @@ interface DisconnectStaffMemberFromUserSignature {
181
181
  declare function assignWorkingHoursSchedule$1(httpClient: HttpClient): AssignWorkingHoursScheduleSignature;
182
182
  interface AssignWorkingHoursScheduleSignature {
183
183
  /**
184
- * Updates a staff member's working hours based on the specified schedule ID ([SDK](https://dev.wix.com/docs/sdk/backend-modules/calendar/schedules/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction)).
184
+ * Updates a staff member's working hours based on the specified [schedule ID](https://dev.wix.com/docs/api-reference/business-management/calendar/schedules-v3/introduction).
185
185
  *
186
186
  *
187
187
  * ### Default working hours
188
188
  *
189
- * By default, staff members work during the opening hours of the business's default location ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/locations/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/locations/introduction)).
189
+ * By default, staff members work during the opening hours of the business's default [location](https://dev.wix.com/docs/api-reference/business-management/locations/introduction).
190
190
  *
191
191
  * ### Schedule ID
192
192
  *
@@ -196,14 +196,13 @@ interface AssignWorkingHoursScheduleSignature {
196
196
  * #### Staff event schedule
197
197
  *
198
198
  * To customize a staff member's working hours, specify their event schedule ID as `scheduleId`.
199
- * Refer to this sample flow ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/sample-flows#backend-modules_bookings_staff-members_assign-a-staff-working-hour-schedule) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/sample-flows#assign-a-staff-working-hour-schedule)) for more details.
199
+ * Refer to this [sample flow](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/sample-flows#assign-a-staff-working-hour-schedule) for more details.
200
200
  *
201
201
  * #### Business working hour schedule
202
202
  *
203
203
  * To reset a staff member's working hours to the default business hours, specify the ID of the business working hour schedule as `scheduleId`.
204
204
  * @param - ID of the staff member to assign the schedule to.
205
- * @param - ID of the *schedule*
206
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/calendar/schedules/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction))
205
+ * @param - ID of the [schedule](https://dev.wix.com/docs/api-reference/business-management/calendar/schedules-v3/introduction)
207
206
  * to assign to the staff member.
208
207
  *
209
208
  * Must be either the staff member's event schedule ID or the working hour
@@ -223,10 +222,9 @@ interface AssignCustomScheduleSignature {
223
222
  * By default staff members use the shared business working hours schedule.
224
223
  * By assigning a custom working hours schedule to a staff member, you can define specific working hours for that staff member.
225
224
  *
226
- * To create and manage schedules and working hours sessions, use the Events API ([SDK](https://dev.wix.com/docs/sdk/backend-modules/calendar/events/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/introduction)).
225
+ * To create and manage schedules and working hours sessions, use the [Events API](https://dev.wix.com/docs/api-reference/business-management/calendar/events-v3/introduction).
227
226
  * @param - ID of the staff member for which to assign a working hour schedule.
228
- * @param - ID of the *schedule*
229
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/calendar/schedules/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction))
227
+ * @param - ID of the [schedule](https://dev.wix.com/docs/api-reference/business-management/calendar/schedules-v3/introduction)
230
228
  * to assign to the staff member.
231
229
  * @deprecated
232
230
  */
@@ -235,7 +233,7 @@ interface AssignCustomScheduleSignature {
235
233
  declare function bulkUpdateStaffMemberTags$1(httpClient: HttpClient): BulkUpdateStaffMemberTagsSignature;
236
234
  interface BulkUpdateStaffMemberTagsSignature {
237
235
  /**
238
- * Synchronously updates tags ([SDK](https://dev.wix.com/docs/sdk/backend-modules/tags/tags/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/tags/introduction)) for up to 100 staff members.
236
+ * Synchronously updates [tags](https://dev.wix.com/docs/api-reference/business-management/tags/introduction) for up to 100 staff members.
239
237
  *
240
238
  *
241
239
  * If you specify a tag both in `assignTags` and `unassignTags`, the call succeeds and the tag is assigned.
@@ -246,16 +244,15 @@ interface BulkUpdateStaffMemberTagsSignature {
246
244
  declare function bulkUpdateStaffMemberTagsByFilter$1(httpClient: HttpClient): BulkUpdateStaffMemberTagsByFilterSignature;
247
245
  interface BulkUpdateStaffMemberTagsByFilterSignature {
248
246
  /**
249
- * Asynchronously updates tags ([SDK](https://dev.wix.com/docs/sdk/backend-modules/tags/tags/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/tags/introduction)) for staff members, given the provided filtering.
247
+ * Asynchronously updates [tags](https://dev.wix.com/docs/api-reference/business-management/tags/introduction) for staff members, given the provided filtering.
250
248
  *
251
249
  *
252
250
  * If you specify a tag both in `assignTags` and `unassignTags`, the call succeeds and the tag is assigned.
253
251
  *
254
252
  * ### Filter
255
253
  *
256
- * Refer to the supported filters article ([REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting)) for a complete list of supported filters and sorting options.
257
- * @param - Filter to base the update upon. See the *supported filters article*
258
- * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/bookings/staff-members/supported-filters) | [REST](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting))
254
+ * Refer to the [supported filters article](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/filtering-and-sorting) for a complete list of supported filters and sorting options.
255
+ * @param - Filter to base the update upon. See the [supported filters article](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members/filtering-and-sorting)
259
256
  * for a complete list of supported filters.
260
257
  */
261
258
  (filter: Record<string, any>, options?: BulkUpdateStaffMemberTagsByFilterOptions): Promise<NonNullablePaths<BulkUpdateStaffMemberTagsByFilterResponse, `jobId`, 2>>;