@wix/auto_sdk_bookings_staff-members 1.0.76 → 1.0.77

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 (25) hide show
  1. package/build/cjs/{bookings-staff-v1-staff-member-staff-members.universal-DtZlbfxj.d.ts → bookings-staff-v1-staff-member-staff-members.universal-u_fBVibH.d.ts} +80 -3
  2. package/build/cjs/index.d.ts +4 -4
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +2 -2
  5. package/build/cjs/index.typings.js.map +1 -1
  6. package/build/cjs/meta.d.ts +1 -1
  7. package/build/es/{bookings-staff-v1-staff-member-staff-members.universal-DtZlbfxj.d.mts → bookings-staff-v1-staff-member-staff-members.universal-u_fBVibH.d.mts} +80 -3
  8. package/build/es/index.d.mts +4 -4
  9. package/build/es/index.mjs.map +1 -1
  10. package/build/es/index.typings.d.mts +2 -2
  11. package/build/es/index.typings.mjs.map +1 -1
  12. package/build/es/meta.d.mts +1 -1
  13. package/build/internal/cjs/{bookings-staff-v1-staff-member-staff-members.universal-DtZlbfxj.d.ts → bookings-staff-v1-staff-member-staff-members.universal-u_fBVibH.d.ts} +80 -3
  14. package/build/internal/cjs/index.d.ts +4 -4
  15. package/build/internal/cjs/index.js.map +1 -1
  16. package/build/internal/cjs/index.typings.d.ts +2 -2
  17. package/build/internal/cjs/index.typings.js.map +1 -1
  18. package/build/internal/cjs/meta.d.ts +1 -1
  19. package/build/internal/es/{bookings-staff-v1-staff-member-staff-members.universal-DtZlbfxj.d.mts → bookings-staff-v1-staff-member-staff-members.universal-u_fBVibH.d.mts} +80 -3
  20. package/build/internal/es/index.d.mts +4 -4
  21. package/build/internal/es/index.mjs.map +1 -1
  22. package/build/internal/es/index.typings.d.mts +2 -2
  23. package/build/internal/es/index.typings.mjs.map +1 -1
  24. package/build/internal/es/meta.d.mts +1 -1
  25. package/package.json +3 -3
@@ -1,4 +1,4 @@
1
- import { SearchSpec, Search, NonNullablePaths } from '@wix/sdk-types';
1
+ import { QuerySpec, SearchSpec, Query, Search, NonNullablePaths } from '@wix/sdk-types';
2
2
 
3
3
  /**
4
4
  * An individual providing services within Wix Bookings. Only staff members who
@@ -2959,7 +2959,84 @@ interface StaffMembersQueryBuilder {
2959
2959
  * @fqn wix.bookings.staff.v1.StaffMembersService.QueryStaffMembers
2960
2960
  * @requiredField query
2961
2961
  */
2962
- declare function typedQueryStaffMembers(query: CursorQuery, options?: QueryStaffMembersOptions): Promise<NonNullablePaths<QueryStaffMembersResponse, `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`, 6>>;
2962
+ declare function typedQueryStaffMembers(query: StaffMemberQuery, options?: QueryStaffMembersOptions): Promise<NonNullablePaths<QueryStaffMembersResponse, `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`, 6>>;
2963
+ interface StaffMemberQuerySpec extends QuerySpec {
2964
+ paging: 'cursor';
2965
+ wql: [
2966
+ {
2967
+ fields: [
2968
+ '_createdDate',
2969
+ '_id',
2970
+ '_updatedDate',
2971
+ 'associatedWixIdentity.identificationData.contactId',
2972
+ 'associatedWixIdentity.identificationData.wixUserId',
2973
+ 'description',
2974
+ 'resourceId'
2975
+ ];
2976
+ operators: '*';
2977
+ sort: 'BOTH';
2978
+ },
2979
+ {
2980
+ fields: ['email', 'name', 'phone'];
2981
+ operators: ['$eq', '$exists', '$in', '$ne', '$nin'];
2982
+ sort: 'NONE';
2983
+ },
2984
+ {
2985
+ fields: [
2986
+ 'resource.locationOptions.specificLocationOptions.businessLocations.locationId'
2987
+ ];
2988
+ operators: ['$hasAll', '$hasSome'];
2989
+ sort: 'NONE';
2990
+ }
2991
+ ];
2992
+ }
2993
+ type CommonQueryWithEntityContext = Query<StaffMember, StaffMemberQuerySpec>;
2994
+ type StaffMemberQuery = {
2995
+ /**
2996
+ Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`.
2997
+ */
2998
+ cursorPaging?: {
2999
+ /**
3000
+ Number of items to load.
3001
+ @max: 100
3002
+ */
3003
+ limit?: NonNullable<CommonQueryWithEntityContext['cursorPaging']>['limit'] | null;
3004
+ /**
3005
+ Pointer to the next or previous page in the list of results.
3006
+
3007
+ You can get the relevant cursor token
3008
+ from the `pagingMetadata` object in the previous call's response.
3009
+ Not relevant for the first request.
3010
+ @maxLength: 16000
3011
+ */
3012
+ cursor?: NonNullable<CommonQueryWithEntityContext['cursorPaging']>['cursor'] | null;
3013
+ };
3014
+ /**
3015
+ Filter object in the following format:
3016
+ `"filter" : {
3017
+ "fieldName1": "value1",
3018
+ "fieldName2":{"$operator":"value2"}
3019
+ }`
3020
+ Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
3021
+ */
3022
+ filter?: CommonQueryWithEntityContext['filter'] | null;
3023
+ /**
3024
+ Sort object in the following format:
3025
+ `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
3026
+ @maxSize: 10
3027
+ */
3028
+ sort?: {
3029
+ /**
3030
+ Name of the field to sort by.
3031
+ @maxLength: 512
3032
+ */
3033
+ fieldName?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['fieldName'];
3034
+ /**
3035
+ Sort order.
3036
+ */
3037
+ order?: NonNullable<CommonQueryWithEntityContext['sort']>[number]['order'];
3038
+ }[];
3039
+ };
2963
3040
  /**
2964
3041
  * Counts how many staff members match the given filter.
2965
3042
  *
@@ -3249,4 +3326,4 @@ interface BulkUpdateStaffMemberTagsByFilterOptions {
3249
3326
  unassignTags?: Tags;
3250
3327
  }
3251
3328
 
3252
- export { ConferenceType as $, type AssignWorkingHoursScheduleOptions as A, type BulkUpdateStaffMemberTagsOptions as B, type CreateStaffMemberOptions as C, type DisconnectStaffMemberFromUserOptions as D, type StaffMembersQueryBuilder as E, AssociatedWixIdentityConnectionStatusEnumConnectionStatus as F, type GetStaffMemberOptions as G, ConnectionStatus as H, IdentityType as I, SortOrder as J, ScalarType as K, type ListDeletedStaffMembersOptions as L, Mode as M, AggregationType as N, Day as O, RecurringIntervalType as P, type QueryStaffMembersOptions as Q, RequestedFields as R, type StaffMember as S, Transparency as T, type UpdateStaffMember as U, LocationType as V, LocationStatus as W, LocationsLocationType as X, DayOfWeek as Y, ApprovalStatus as Z, ScheduleStatus as _, type GetDeletedStaffMemberOptions as a, type RangeResults as a$, CalendarType as a0, Status as a1, SessionType as a2, WebhookIdentityType as a3, type MediaItem as a4, type MediaItemMediaOneOf as a5, type Resource as a6, type WorkingHoursSchedule as a7, type EventSchedule as a8, type LocationOptions as a9, type Cursors as aA, type RemoveStaffMemberFromTrashBinRequest as aB, type RemoveStaffMemberFromTrashBinResponse as aC, type RestoreStaffMemberFromTrashBinRequest as aD, type RestoreStaffMemberFromTrashBinResponse as aE, type UpdateStaffMemberRequest as aF, type UpdateStaffMemberResponse as aG, type DeleteStaffMemberRequest as aH, type DeleteStaffMemberResponse as aI, type QueryStaffMembersRequest as aJ, type CursorQueryPagingMethodOneOf as aK, type Sorting as aL, type QueryStaffMembersResponse as aM, type QueryStaffMembersMultiLanguageRequest as aN, type QueryStaffMembersMultiLanguageResponse as aO, type CountStaffMembersRequest as aP, type ConnectStaffMemberToUserRequest as aQ, type SearchStaffMembersRequest as aR, type CursorSearch as aS, type CursorSearchPagingMethodOneOf as aT, type SearchDetails as aU, type AggregationData as aV, type ValueAggregationResult as aW, type RangeAggregationResult as aX, type NestedAggregationResults as aY, type NestedAggregationResultsResultOneOf as aZ, type ValueResults as a_, type SpecificLocation as aa, type BusinessLocation as ab, type AssociatedWixIdentity as ac, type CommonIdentificationData as ad, type CommonIdentificationDataIdOneOf as ae, type Connection as af, type AssociatedConferencingProviders as ag, type AssociatedConferencingProvider as ah, type AssociatedConferencingAccounts as ai, type AssociatedConferencingAccount as aj, type AssociatedConferencingAccountAccountOneOf as ak, type CustomConferenceAccount as al, type ExtendedFields as am, type Tags as an, type TagList as ao, type StaffMemberDisconnectedFromUser as ap, type StaffMemberConnectedToUser as aq, type StaffMemberFullyCreated as ar, type CreateStaffMemberRequest as as, type CreateStaffMemberResponse as at, type GetStaffMemberRequest as au, type GetStaffMemberResponse as av, type GetDeletedStaffMemberRequest as aw, type ListDeletedStaffMembersRequest as ax, type CursorPaging as ay, type CursorPagingMetadata as az, type GetDeletedStaffMemberResponse as b, type Version as b$, type AggregationResultsScalarResult as b0, type NestedValueAggregationResult as b1, type ValueResult as b2, type RangeResult as b3, type ScalarResult as b4, type NestedResultValue as b5, type NestedResultValueResultOneOf as b6, type Results as b7, type DateHistogramResult as b8, type GroupByValueResults as b9, type ScheduleNotificationEventOneOf as bA, type ScheduleCreated as bB, type Schedule as bC, type RecurringInterval as bD, type Interval as bE, type Frequency as bF, type LinkedSchedule as bG, type Location as bH, type Address as bI, type AddressStreetOneOf as bJ, type StreetAddress as bK, type AddressLocation as bL, type Subdivision as bM, type LocationsLocation as bN, type LocationsAddress as bO, type LocationsStreetAddress as bP, type LocationsAddressLocation as bQ, type BusinessSchedule as bR, type TimePeriod as bS, type SpecialHourPeriod as bT, type Rate as bU, type Price as bV, type Availability as bW, type AvailabilityConstraints as bX, type SplitInterval as bY, type Participant as bZ, type ExternalCalendarOverrides as b_, type DateHistogramResults as ba, type NestedResults as bb, type AggregationResults as bc, type AggregationResultsResultOneOf as bd, type DisconnectStaffMemberFromUserRequest as be, type AssignWorkingHoursScheduleRequest as bf, type AssignCustomScheduleRequest as bg, type BulkUpdateStaffMemberTagsRequest as bh, type ItemMetadata as bi, type ApplicationError as bj, type BulkUpdateStaffMemberTagsResult as bk, type BulkActionMetadata as bl, type BulkUpdateStaffMemberTagsByFilterRequest as bm, type RestoreStaffRequest as bn, type RestoreStaffResponse as bo, type Empty as bp, type PolicyRemovedFromContributor as bq, type PolicyUpdatedForContributor as br, type DomainEvent as bs, type DomainEventBodyOneOf as bt, type EntityCreatedEvent as bu, type RestoreInfo as bv, type EntityUpdatedEvent as bw, type EntityDeletedEvent as bx, type ActionEvent as by, type ScheduleNotification as bz, type ListDeletedStaffMembersResponse as c, getDeletedStaffMember as c$, type ConferenceProvider as c0, type CalendarConference as c1, type ScheduleUpdated as c2, type RecurringSessionsUpdated as c3, type Session as c4, type CalendarDateTime as c5, type LocalDateTime as c6, type ExternalCalendarInfo as c7, type SessionVersion as c8, type ParticipantNotification as c9, type SortOrderWithLiterals as cA, type ModeWithLiterals as cB, type ScalarTypeWithLiterals as cC, type AggregationTypeWithLiterals as cD, type DayWithLiterals as cE, type TransparencyWithLiterals as cF, type RecurringIntervalTypeWithLiterals as cG, type LocationTypeWithLiterals as cH, type LocationStatusWithLiterals as cI, type LocationsLocationTypeWithLiterals as cJ, type DayOfWeekWithLiterals as cK, type ApprovalStatusWithLiterals as cL, type ScheduleStatusWithLiterals as cM, type ConferenceTypeWithLiterals as cN, type CalendarTypeWithLiterals as cO, type StatusWithLiterals as cP, type SessionTypeWithLiterals as cQ, type WebhookIdentityTypeWithLiterals as cR, type CommonSearchWithEntityContext as cS, onStaffMemberConnectedToUser as cT, onStaffMemberCreated as cU, onStaffMemberDeleted as cV, onStaffMemberDisconnectedFromUser as cW, onStaffMemberFullyCreated as cX, onStaffMemberUpdated as cY, createStaffMember as cZ, getStaffMember as c_, type ScheduleCancelled as ca, type SessionCreated as cb, type SessionUpdated as cc, type SessionCancelled as cd, type AvailabilityPolicyUpdated as ce, type AvailabilityPolicy as cf, type IntervalSplit as cg, type RecurringSessionSplit as ch, type ScheduleUnassignedFromUser as ci, type MultipleSessionsCreated as cj, type ScheduleWithSessions as ck, type SitePropertiesOnScheduleCreation as cl, type MigrationEvent as cm, type MigrationData as cn, type StaffData as co, type MessageEnvelope as cp, type IdentificationData as cq, type IdentificationDataIdOneOf as cr, type BaseEventMetadata as cs, type EventMetadata as ct, type StaffMembersQueryResult as cu, type StaffMemberSearchSpec as cv, type IdentityTypeWithLiterals as cw, type AssociatedWixIdentityConnectionStatusEnumConnectionStatusWithLiterals as cx, type ConnectionStatusWithLiterals as cy, type RequestedFieldsWithLiterals as cz, type UpdateStaffMemberOptions as d, listDeletedStaffMembers as d0, removeStaffMemberFromTrashBin as d1, updateStaffMember as d2, deleteStaffMember as d3, queryStaffMembers as d4, countStaffMembers as d5, connectStaffMemberToUser as d6, disconnectStaffMemberFromUser as d7, assignWorkingHoursSchedule as d8, assignCustomSchedule as d9, bulkUpdateStaffMemberTags as da, bulkUpdateStaffMemberTagsByFilter as db, type CountStaffMembersOptions as e, type CountStaffMembersResponse as f, type ConnectStaffMemberToUserOptions as g, type ConnectStaffMemberToUserResponse as h, type StaffMemberSearch as i, type SearchStaffMembersOptions as j, type SearchStaffMembersResponse as k, type DisconnectStaffMemberFromUserResponse as l, type AssignWorkingHoursScheduleResponse as m, type AssignCustomScheduleOptions as n, type AssignCustomScheduleResponse as o, type BulkUpdateStaffMemberTagsResponse as p, type BulkUpdateStaffMemberTagsByFilterOptions as q, type BulkUpdateStaffMemberTagsByFilterResponse as r, type StaffMemberConnectedToUserEnvelope as s, type StaffMemberCreatedEnvelope as t, type StaffMemberDeletedEnvelope as u, type StaffMemberDisconnectedFromUserEnvelope as v, type StaffMemberFullyCreatedEnvelope as w, type StaffMemberUpdatedEnvelope as x, type CursorQuery as y, typedQueryStaffMembers as z };
3329
+ export { ConferenceType as $, type AssignWorkingHoursScheduleOptions as A, type BulkUpdateStaffMemberTagsOptions as B, type CreateStaffMemberOptions as C, type DisconnectStaffMemberFromUserOptions as D, type StaffMembersQueryBuilder as E, AssociatedWixIdentityConnectionStatusEnumConnectionStatus as F, type GetStaffMemberOptions as G, ConnectionStatus as H, IdentityType as I, SortOrder as J, ScalarType as K, type ListDeletedStaffMembersOptions as L, Mode as M, AggregationType as N, Day as O, RecurringIntervalType as P, type QueryStaffMembersOptions as Q, RequestedFields as R, type StaffMember as S, Transparency as T, type UpdateStaffMember as U, LocationType as V, LocationStatus as W, LocationsLocationType as X, DayOfWeek as Y, ApprovalStatus as Z, ScheduleStatus as _, type GetDeletedStaffMemberOptions as a, type ValueResults as a$, CalendarType as a0, Status as a1, SessionType as a2, WebhookIdentityType as a3, type MediaItem as a4, type MediaItemMediaOneOf as a5, type Resource as a6, type WorkingHoursSchedule as a7, type EventSchedule as a8, type LocationOptions as a9, type Cursors as aA, type RemoveStaffMemberFromTrashBinRequest as aB, type RemoveStaffMemberFromTrashBinResponse as aC, type RestoreStaffMemberFromTrashBinRequest as aD, type RestoreStaffMemberFromTrashBinResponse as aE, type UpdateStaffMemberRequest as aF, type UpdateStaffMemberResponse as aG, type DeleteStaffMemberRequest as aH, type DeleteStaffMemberResponse as aI, type QueryStaffMembersRequest as aJ, type CursorQuery as aK, type CursorQueryPagingMethodOneOf as aL, type Sorting as aM, type QueryStaffMembersResponse as aN, type QueryStaffMembersMultiLanguageRequest as aO, type QueryStaffMembersMultiLanguageResponse as aP, type CountStaffMembersRequest as aQ, type ConnectStaffMemberToUserRequest as aR, type SearchStaffMembersRequest as aS, type CursorSearch as aT, type CursorSearchPagingMethodOneOf as aU, type SearchDetails as aV, type AggregationData as aW, type ValueAggregationResult as aX, type RangeAggregationResult as aY, type NestedAggregationResults as aZ, type NestedAggregationResultsResultOneOf as a_, type SpecificLocation as aa, type BusinessLocation as ab, type AssociatedWixIdentity as ac, type CommonIdentificationData as ad, type CommonIdentificationDataIdOneOf as ae, type Connection as af, type AssociatedConferencingProviders as ag, type AssociatedConferencingProvider as ah, type AssociatedConferencingAccounts as ai, type AssociatedConferencingAccount as aj, type AssociatedConferencingAccountAccountOneOf as ak, type CustomConferenceAccount as al, type ExtendedFields as am, type Tags as an, type TagList as ao, type StaffMemberDisconnectedFromUser as ap, type StaffMemberConnectedToUser as aq, type StaffMemberFullyCreated as ar, type CreateStaffMemberRequest as as, type CreateStaffMemberResponse as at, type GetStaffMemberRequest as au, type GetStaffMemberResponse as av, type GetDeletedStaffMemberRequest as aw, type ListDeletedStaffMembersRequest as ax, type CursorPaging as ay, type CursorPagingMetadata as az, type GetDeletedStaffMemberResponse as b, type ExternalCalendarOverrides as b$, type RangeResults as b0, type AggregationResultsScalarResult as b1, type NestedValueAggregationResult as b2, type ValueResult as b3, type RangeResult as b4, type ScalarResult as b5, type NestedResultValue as b6, type NestedResultValueResultOneOf as b7, type Results as b8, type DateHistogramResult as b9, type ScheduleNotification as bA, type ScheduleNotificationEventOneOf as bB, type ScheduleCreated as bC, type Schedule as bD, type RecurringInterval as bE, type Interval as bF, type Frequency as bG, type LinkedSchedule as bH, type Location as bI, type Address as bJ, type AddressStreetOneOf as bK, type StreetAddress as bL, type AddressLocation as bM, type Subdivision as bN, type LocationsLocation as bO, type LocationsAddress as bP, type LocationsStreetAddress as bQ, type LocationsAddressLocation as bR, type BusinessSchedule as bS, type TimePeriod as bT, type SpecialHourPeriod as bU, type Rate as bV, type Price as bW, type Availability as bX, type AvailabilityConstraints as bY, type SplitInterval as bZ, type Participant as b_, type GroupByValueResults as ba, type DateHistogramResults as bb, type NestedResults as bc, type AggregationResults as bd, type AggregationResultsResultOneOf as be, type DisconnectStaffMemberFromUserRequest as bf, type AssignWorkingHoursScheduleRequest as bg, type AssignCustomScheduleRequest as bh, type BulkUpdateStaffMemberTagsRequest as bi, type ItemMetadata as bj, type ApplicationError as bk, type BulkUpdateStaffMemberTagsResult as bl, type BulkActionMetadata as bm, type BulkUpdateStaffMemberTagsByFilterRequest as bn, type RestoreStaffRequest as bo, type RestoreStaffResponse as bp, type Empty as bq, type PolicyRemovedFromContributor as br, type PolicyUpdatedForContributor as bs, type DomainEvent as bt, type DomainEventBodyOneOf as bu, type EntityCreatedEvent as bv, type RestoreInfo as bw, type EntityUpdatedEvent as bx, type EntityDeletedEvent as by, type ActionEvent as bz, type ListDeletedStaffMembersResponse as c, onStaffMemberUpdated as c$, type Version as c0, type ConferenceProvider as c1, type CalendarConference as c2, type ScheduleUpdated as c3, type RecurringSessionsUpdated as c4, type Session as c5, type CalendarDateTime as c6, type LocalDateTime as c7, type ExternalCalendarInfo as c8, type SessionVersion as c9, type ConnectionStatusWithLiterals as cA, type RequestedFieldsWithLiterals as cB, type SortOrderWithLiterals as cC, type ModeWithLiterals as cD, type ScalarTypeWithLiterals as cE, type AggregationTypeWithLiterals as cF, type DayWithLiterals as cG, type TransparencyWithLiterals as cH, type RecurringIntervalTypeWithLiterals as cI, type LocationTypeWithLiterals as cJ, type LocationStatusWithLiterals as cK, type LocationsLocationTypeWithLiterals as cL, type DayOfWeekWithLiterals as cM, type ApprovalStatusWithLiterals as cN, type ScheduleStatusWithLiterals as cO, type ConferenceTypeWithLiterals as cP, type CalendarTypeWithLiterals as cQ, type StatusWithLiterals as cR, type SessionTypeWithLiterals as cS, type WebhookIdentityTypeWithLiterals as cT, type CommonQueryWithEntityContext as cU, type CommonSearchWithEntityContext as cV, onStaffMemberConnectedToUser as cW, onStaffMemberCreated as cX, onStaffMemberDeleted as cY, onStaffMemberDisconnectedFromUser as cZ, onStaffMemberFullyCreated as c_, type ParticipantNotification as ca, type ScheduleCancelled as cb, type SessionCreated as cc, type SessionUpdated as cd, type SessionCancelled as ce, type AvailabilityPolicyUpdated as cf, type AvailabilityPolicy as cg, type IntervalSplit as ch, type RecurringSessionSplit as ci, type ScheduleUnassignedFromUser as cj, type MultipleSessionsCreated as ck, type ScheduleWithSessions as cl, type SitePropertiesOnScheduleCreation as cm, type MigrationEvent as cn, type MigrationData as co, type StaffData as cp, type MessageEnvelope as cq, type IdentificationData as cr, type IdentificationDataIdOneOf as cs, type BaseEventMetadata as ct, type EventMetadata as cu, type StaffMembersQueryResult as cv, type StaffMemberQuerySpec as cw, type StaffMemberSearchSpec as cx, type IdentityTypeWithLiterals as cy, type AssociatedWixIdentityConnectionStatusEnumConnectionStatusWithLiterals as cz, type UpdateStaffMemberOptions as d, createStaffMember as d0, getStaffMember as d1, getDeletedStaffMember as d2, listDeletedStaffMembers as d3, removeStaffMemberFromTrashBin as d4, updateStaffMember as d5, deleteStaffMember as d6, queryStaffMembers as d7, countStaffMembers as d8, connectStaffMemberToUser as d9, disconnectStaffMemberFromUser as da, assignWorkingHoursSchedule as db, assignCustomSchedule as dc, bulkUpdateStaffMemberTags as dd, bulkUpdateStaffMemberTagsByFilter as de, type CountStaffMembersOptions as e, type CountStaffMembersResponse as f, type ConnectStaffMemberToUserOptions as g, type ConnectStaffMemberToUserResponse as h, type StaffMemberSearch as i, type SearchStaffMembersOptions as j, type SearchStaffMembersResponse as k, type DisconnectStaffMemberFromUserResponse as l, type AssignWorkingHoursScheduleResponse as m, type AssignCustomScheduleOptions as n, type AssignCustomScheduleResponse as o, type BulkUpdateStaffMemberTagsResponse as p, type BulkUpdateStaffMemberTagsByFilterOptions as q, type BulkUpdateStaffMemberTagsByFilterResponse as r, type StaffMemberConnectedToUserEnvelope as s, type StaffMemberCreatedEnvelope as t, type StaffMemberDeletedEnvelope as u, type StaffMemberDisconnectedFromUserEnvelope as v, type StaffMemberFullyCreatedEnvelope as w, type StaffMemberUpdatedEnvelope as x, type StaffMemberQuery as y, typedQueryStaffMembers as z };
@@ -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, e as CountStaffMembersOptions, f as CountStaffMembersResponse, g as ConnectStaffMemberToUserOptions, h as ConnectStaffMemberToUserResponse, i as StaffMemberSearch, j as SearchStaffMembersOptions, k as SearchStaffMembersResponse, D as DisconnectStaffMemberFromUserOptions, l as DisconnectStaffMemberFromUserResponse, A as AssignWorkingHoursScheduleOptions, m as AssignWorkingHoursScheduleResponse, n as AssignCustomScheduleOptions, o as AssignCustomScheduleResponse, B as BulkUpdateStaffMemberTagsOptions, p as BulkUpdateStaffMemberTagsResponse, q as BulkUpdateStaffMemberTagsByFilterOptions, r as BulkUpdateStaffMemberTagsByFilterResponse, s as StaffMemberConnectedToUserEnvelope, t as StaffMemberCreatedEnvelope, u as StaffMemberDeletedEnvelope, v as StaffMemberDisconnectedFromUserEnvelope, w as StaffMemberFullyCreatedEnvelope, x as StaffMemberUpdatedEnvelope, y as CursorQuery, Q as QueryStaffMembersOptions, z as typedQueryStaffMembers, E as StaffMembersQueryBuilder } from './bookings-staff-v1-staff-member-staff-members.universal-DtZlbfxj.js';
3
- export { by as ActionEvent, bI as Address, bL as AddressLocation, bJ as AddressStreetOneOf, aV as AggregationData, bc as AggregationResults, bd as AggregationResultsResultOneOf, b0 as AggregationResultsScalarResult, N as AggregationType, cD as AggregationTypeWithLiterals, bj as ApplicationError, Z as ApprovalStatus, cL as ApprovalStatusWithLiterals, bg as AssignCustomScheduleRequest, bf as AssignWorkingHoursScheduleRequest, aj as AssociatedConferencingAccount, ak as AssociatedConferencingAccountAccountOneOf, ai as AssociatedConferencingAccounts, ah as AssociatedConferencingProvider, ag as AssociatedConferencingProviders, ac as AssociatedWixIdentity, F as AssociatedWixIdentityConnectionStatusEnumConnectionStatus, cx as AssociatedWixIdentityConnectionStatusEnumConnectionStatusWithLiterals, bW as Availability, bX as AvailabilityConstraints, cf as AvailabilityPolicy, ce as AvailabilityPolicyUpdated, cs as BaseEventMetadata, bl as BulkActionMetadata, bm as BulkUpdateStaffMemberTagsByFilterRequest, bh as BulkUpdateStaffMemberTagsRequest, bk as BulkUpdateStaffMemberTagsResult, ab as BusinessLocation, bR as BusinessSchedule, c1 as CalendarConference, c5 as CalendarDateTime, a0 as CalendarType, cO as CalendarTypeWithLiterals, ad as CommonIdentificationData, ae as CommonIdentificationDataIdOneOf, cS as CommonSearchWithEntityContext, c0 as ConferenceProvider, $ as ConferenceType, cN as ConferenceTypeWithLiterals, aQ as ConnectStaffMemberToUserRequest, af as Connection, H as ConnectionStatus, cy as ConnectionStatusWithLiterals, aP as CountStaffMembersRequest, as as CreateStaffMemberRequest, at as CreateStaffMemberResponse, ay as CursorPaging, az as CursorPagingMetadata, aK as CursorQueryPagingMethodOneOf, aS as CursorSearch, aT as CursorSearchPagingMethodOneOf, aA as Cursors, al as CustomConferenceAccount, b8 as DateHistogramResult, ba as DateHistogramResults, O as Day, Y as DayOfWeek, cK as DayOfWeekWithLiterals, cE as DayWithLiterals, aH as DeleteStaffMemberRequest, aI as DeleteStaffMemberResponse, be as DisconnectStaffMemberFromUserRequest, bs as DomainEvent, bt as DomainEventBodyOneOf, bp as Empty, bu as EntityCreatedEvent, bx as EntityDeletedEvent, bw as EntityUpdatedEvent, ct as EventMetadata, a8 as EventSchedule, am as ExtendedFields, c7 as ExternalCalendarInfo, b_ as ExternalCalendarOverrides, bF as Frequency, aw as GetDeletedStaffMemberRequest, au as GetStaffMemberRequest, av as GetStaffMemberResponse, b9 as GroupByValueResults, cq as IdentificationData, cr as IdentificationDataIdOneOf, I as IdentityType, cw as IdentityTypeWithLiterals, bE as Interval, cg as IntervalSplit, bi as ItemMetadata, bG as LinkedSchedule, ax as ListDeletedStaffMembersRequest, c6 as LocalDateTime, bH as Location, a9 as LocationOptions, W as LocationStatus, cI as LocationStatusWithLiterals, V as LocationType, cH as LocationTypeWithLiterals, bO as LocationsAddress, bQ as LocationsAddressLocation, bN as LocationsLocation, X as LocationsLocationType, cJ as LocationsLocationTypeWithLiterals, bP as LocationsStreetAddress, a4 as MediaItem, a5 as MediaItemMediaOneOf, cp as MessageEnvelope, cn as MigrationData, cm as MigrationEvent, M as Mode, cB as ModeWithLiterals, cj as MultipleSessionsCreated, aY as NestedAggregationResults, aZ as NestedAggregationResultsResultOneOf, b5 as NestedResultValue, b6 as NestedResultValueResultOneOf, bb as NestedResults, b1 as NestedValueAggregationResult, bZ as Participant, c9 as ParticipantNotification, bq as PolicyRemovedFromContributor, br as PolicyUpdatedForContributor, bV as Price, aN as QueryStaffMembersMultiLanguageRequest, aO as QueryStaffMembersMultiLanguageResponse, aJ as QueryStaffMembersRequest, aM as QueryStaffMembersResponse, aX as RangeAggregationResult, b3 as RangeResult, a$ as RangeResults, bU as Rate, bD as RecurringInterval, P as RecurringIntervalType, cG as RecurringIntervalTypeWithLiterals, ch as RecurringSessionSplit, c3 as RecurringSessionsUpdated, aB as RemoveStaffMemberFromTrashBinRequest, aC as RemoveStaffMemberFromTrashBinResponse, R as RequestedFields, cz as RequestedFieldsWithLiterals, a6 as Resource, bv as RestoreInfo, aD as RestoreStaffMemberFromTrashBinRequest, aE as RestoreStaffMemberFromTrashBinResponse, bn as RestoreStaffRequest, bo as RestoreStaffResponse, b7 as Results, b4 as ScalarResult, K as ScalarType, cC as ScalarTypeWithLiterals, bC as Schedule, ca as ScheduleCancelled, bB as ScheduleCreated, bz as ScheduleNotification, bA as ScheduleNotificationEventOneOf, _ as ScheduleStatus, cM as ScheduleStatusWithLiterals, ci as ScheduleUnassignedFromUser, c2 as ScheduleUpdated, ck as ScheduleWithSessions, aU as SearchDetails, aR as SearchStaffMembersRequest, c4 as Session, cd as SessionCancelled, cb as SessionCreated, a2 as SessionType, cQ as SessionTypeWithLiterals, cc as SessionUpdated, c8 as SessionVersion, cl as SitePropertiesOnScheduleCreation, J as SortOrder, cA as SortOrderWithLiterals, aL as Sorting, bT as SpecialHourPeriod, aa as SpecificLocation, bY as SplitInterval, co as StaffData, aq as StaffMemberConnectedToUser, ap as StaffMemberDisconnectedFromUser, ar as StaffMemberFullyCreated, cv as StaffMemberSearchSpec, cu as StaffMembersQueryResult, a1 as Status, cP as StatusWithLiterals, bK as StreetAddress, bM as Subdivision, ao as TagList, an as Tags, bS as TimePeriod, T as Transparency, cF as TransparencyWithLiterals, aF as UpdateStaffMemberRequest, aG as UpdateStaffMemberResponse, aW as ValueAggregationResult, b2 as ValueResult, a_ as ValueResults, b$ as Version, a3 as WebhookIdentityType, cR as WebhookIdentityTypeWithLiterals, a7 as WorkingHoursSchedule } from './bookings-staff-v1-staff-member-staff-members.universal-DtZlbfxj.js';
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, e as CountStaffMembersOptions, f as CountStaffMembersResponse, g as ConnectStaffMemberToUserOptions, h as ConnectStaffMemberToUserResponse, i as StaffMemberSearch, j as SearchStaffMembersOptions, k as SearchStaffMembersResponse, D as DisconnectStaffMemberFromUserOptions, l as DisconnectStaffMemberFromUserResponse, A as AssignWorkingHoursScheduleOptions, m as AssignWorkingHoursScheduleResponse, n as AssignCustomScheduleOptions, o as AssignCustomScheduleResponse, B as BulkUpdateStaffMemberTagsOptions, p as BulkUpdateStaffMemberTagsResponse, q as BulkUpdateStaffMemberTagsByFilterOptions, r as BulkUpdateStaffMemberTagsByFilterResponse, s as StaffMemberConnectedToUserEnvelope, t as StaffMemberCreatedEnvelope, u as StaffMemberDeletedEnvelope, v as StaffMemberDisconnectedFromUserEnvelope, w as StaffMemberFullyCreatedEnvelope, x as StaffMemberUpdatedEnvelope, y as StaffMemberQuery, Q as QueryStaffMembersOptions, z as typedQueryStaffMembers, E as StaffMembersQueryBuilder } from './bookings-staff-v1-staff-member-staff-members.universal-u_fBVibH.js';
3
+ export { bz as ActionEvent, bJ as Address, bM as AddressLocation, bK as AddressStreetOneOf, aW as AggregationData, bd as AggregationResults, be as AggregationResultsResultOneOf, b1 as AggregationResultsScalarResult, N as AggregationType, cF as AggregationTypeWithLiterals, bk as ApplicationError, Z as ApprovalStatus, cN as ApprovalStatusWithLiterals, bh as AssignCustomScheduleRequest, bg as AssignWorkingHoursScheduleRequest, aj as AssociatedConferencingAccount, ak as AssociatedConferencingAccountAccountOneOf, ai as AssociatedConferencingAccounts, ah as AssociatedConferencingProvider, ag as AssociatedConferencingProviders, ac as AssociatedWixIdentity, F as AssociatedWixIdentityConnectionStatusEnumConnectionStatus, cz as AssociatedWixIdentityConnectionStatusEnumConnectionStatusWithLiterals, bX as Availability, bY as AvailabilityConstraints, cg as AvailabilityPolicy, cf as AvailabilityPolicyUpdated, ct as BaseEventMetadata, bm as BulkActionMetadata, bn as BulkUpdateStaffMemberTagsByFilterRequest, bi as BulkUpdateStaffMemberTagsRequest, bl as BulkUpdateStaffMemberTagsResult, ab as BusinessLocation, bS as BusinessSchedule, c2 as CalendarConference, c6 as CalendarDateTime, a0 as CalendarType, cQ as CalendarTypeWithLiterals, ad as CommonIdentificationData, ae as CommonIdentificationDataIdOneOf, cU as CommonQueryWithEntityContext, cV as CommonSearchWithEntityContext, c1 as ConferenceProvider, $ as ConferenceType, cP as ConferenceTypeWithLiterals, aR as ConnectStaffMemberToUserRequest, af as Connection, H as ConnectionStatus, cA as ConnectionStatusWithLiterals, aQ as CountStaffMembersRequest, as as CreateStaffMemberRequest, at as CreateStaffMemberResponse, ay as CursorPaging, az as CursorPagingMetadata, aK as CursorQuery, aL as CursorQueryPagingMethodOneOf, aT as CursorSearch, aU as CursorSearchPagingMethodOneOf, aA as Cursors, al as CustomConferenceAccount, b9 as DateHistogramResult, bb as DateHistogramResults, O as Day, Y as DayOfWeek, cM as DayOfWeekWithLiterals, cG as DayWithLiterals, aH as DeleteStaffMemberRequest, aI as DeleteStaffMemberResponse, bf as DisconnectStaffMemberFromUserRequest, bt as DomainEvent, bu as DomainEventBodyOneOf, bq as Empty, bv as EntityCreatedEvent, by as EntityDeletedEvent, bx as EntityUpdatedEvent, cu as EventMetadata, a8 as EventSchedule, am as ExtendedFields, c8 as ExternalCalendarInfo, b$ as ExternalCalendarOverrides, bG as Frequency, aw as GetDeletedStaffMemberRequest, au as GetStaffMemberRequest, av as GetStaffMemberResponse, ba as GroupByValueResults, cr as IdentificationData, cs as IdentificationDataIdOneOf, I as IdentityType, cy as IdentityTypeWithLiterals, bF as Interval, ch as IntervalSplit, bj as ItemMetadata, bH as LinkedSchedule, ax as ListDeletedStaffMembersRequest, c7 as LocalDateTime, bI as Location, a9 as LocationOptions, W as LocationStatus, cK as LocationStatusWithLiterals, V as LocationType, cJ as LocationTypeWithLiterals, bP as LocationsAddress, bR as LocationsAddressLocation, bO as LocationsLocation, X as LocationsLocationType, cL as LocationsLocationTypeWithLiterals, bQ as LocationsStreetAddress, a4 as MediaItem, a5 as MediaItemMediaOneOf, cq as MessageEnvelope, co as MigrationData, cn as MigrationEvent, M as Mode, cD as ModeWithLiterals, ck as MultipleSessionsCreated, aZ as NestedAggregationResults, a_ as NestedAggregationResultsResultOneOf, b6 as NestedResultValue, b7 as NestedResultValueResultOneOf, bc as NestedResults, b2 as NestedValueAggregationResult, b_ as Participant, ca as ParticipantNotification, br as PolicyRemovedFromContributor, bs as PolicyUpdatedForContributor, bW as Price, aO as QueryStaffMembersMultiLanguageRequest, aP as QueryStaffMembersMultiLanguageResponse, aJ as QueryStaffMembersRequest, aN as QueryStaffMembersResponse, aY as RangeAggregationResult, b4 as RangeResult, b0 as RangeResults, bV as Rate, bE as RecurringInterval, P as RecurringIntervalType, cI as RecurringIntervalTypeWithLiterals, ci as RecurringSessionSplit, c4 as RecurringSessionsUpdated, aB as RemoveStaffMemberFromTrashBinRequest, aC as RemoveStaffMemberFromTrashBinResponse, R as RequestedFields, cB as RequestedFieldsWithLiterals, a6 as Resource, bw as RestoreInfo, aD as RestoreStaffMemberFromTrashBinRequest, aE as RestoreStaffMemberFromTrashBinResponse, bo as RestoreStaffRequest, bp as RestoreStaffResponse, b8 as Results, b5 as ScalarResult, K as ScalarType, cE as ScalarTypeWithLiterals, bD as Schedule, cb as ScheduleCancelled, bC as ScheduleCreated, bA as ScheduleNotification, bB as ScheduleNotificationEventOneOf, _ as ScheduleStatus, cO as ScheduleStatusWithLiterals, cj as ScheduleUnassignedFromUser, c3 as ScheduleUpdated, cl as ScheduleWithSessions, aV as SearchDetails, aS as SearchStaffMembersRequest, c5 as Session, ce as SessionCancelled, cc as SessionCreated, a2 as SessionType, cS as SessionTypeWithLiterals, cd as SessionUpdated, c9 as SessionVersion, cm as SitePropertiesOnScheduleCreation, J as SortOrder, cC as SortOrderWithLiterals, aM as Sorting, bU as SpecialHourPeriod, aa as SpecificLocation, bZ as SplitInterval, cp as StaffData, aq as StaffMemberConnectedToUser, ap as StaffMemberDisconnectedFromUser, ar as StaffMemberFullyCreated, cw as StaffMemberQuerySpec, cx as StaffMemberSearchSpec, cv as StaffMembersQueryResult, a1 as Status, cR as StatusWithLiterals, bL as StreetAddress, bN as Subdivision, ao as TagList, an as Tags, bT as TimePeriod, T as Transparency, cH as TransparencyWithLiterals, aF as UpdateStaffMemberRequest, aG as UpdateStaffMemberResponse, aX as ValueAggregationResult, b3 as ValueResult, a$ as ValueResults, c0 as Version, a3 as WebhookIdentityType, cT as WebhookIdentityTypeWithLiterals, a7 as WorkingHoursSchedule } from './bookings-staff-v1-staff-member-staff-members.universal-u_fBVibH.js';
4
4
 
5
5
  declare function createStaffMember$1(httpClient: HttpClient): CreateStaffMemberSignature;
6
6
  interface CreateStaffMemberSignature {
@@ -243,7 +243,7 @@ declare const onStaffMemberFullyCreated$1: EventDefinition<StaffMemberFullyCreat
243
243
  declare const onStaffMemberUpdated$1: EventDefinition<StaffMemberUpdatedEnvelope, "wix.bookings.staff.v1.staff_member_updated">;
244
244
 
245
245
  declare function customQueryStaffMembers(httpClient: HttpClient): {
246
- (query: CursorQuery, options?: QueryStaffMembersOptions): ReturnType<typeof typedQueryStaffMembers>;
246
+ (query: StaffMemberQuery, options?: QueryStaffMembersOptions): ReturnType<typeof typedQueryStaffMembers>;
247
247
  (options?: QueryStaffMembersOptions): StaffMembersQueryBuilder;
248
248
  };
249
249
  declare const createStaffMember: MaybeContext<BuildRESTFunction<typeof createStaffMember$1> & typeof createStaffMember$1>;
@@ -292,4 +292,4 @@ declare const onStaffMemberFullyCreated: BuildEventDefinition<typeof onStaffMemb
292
292
  */
293
293
  declare const onStaffMemberUpdated: BuildEventDefinition<typeof onStaffMemberUpdated$1> & typeof onStaffMemberUpdated$1;
294
294
 
295
- export { AssignCustomScheduleOptions, AssignCustomScheduleResponse, AssignWorkingHoursScheduleOptions, AssignWorkingHoursScheduleResponse, BulkUpdateStaffMemberTagsByFilterOptions, BulkUpdateStaffMemberTagsByFilterResponse, BulkUpdateStaffMemberTagsOptions, BulkUpdateStaffMemberTagsResponse, ConnectStaffMemberToUserOptions, ConnectStaffMemberToUserResponse, CountStaffMembersOptions, CountStaffMembersResponse, CreateStaffMemberOptions, CursorQuery, DisconnectStaffMemberFromUserOptions, DisconnectStaffMemberFromUserResponse, GetDeletedStaffMemberOptions, GetDeletedStaffMemberResponse, GetStaffMemberOptions, ListDeletedStaffMembersOptions, ListDeletedStaffMembersResponse, QueryStaffMembersOptions, SearchStaffMembersOptions, SearchStaffMembersResponse, StaffMember, StaffMemberConnectedToUserEnvelope, StaffMemberCreatedEnvelope, StaffMemberDeletedEnvelope, StaffMemberDisconnectedFromUserEnvelope, StaffMemberFullyCreatedEnvelope, StaffMemberSearch, StaffMemberUpdatedEnvelope, StaffMembersQueryBuilder, UpdateStaffMember, UpdateStaffMemberOptions, assignCustomSchedule, assignWorkingHoursSchedule, bulkUpdateStaffMemberTags, bulkUpdateStaffMemberTagsByFilter, connectStaffMemberToUser, countStaffMembers, createStaffMember, deleteStaffMember, disconnectStaffMemberFromUser, getDeletedStaffMember, getStaffMember, listDeletedStaffMembers, onStaffMemberConnectedToUser, onStaffMemberCreated, onStaffMemberDeleted, onStaffMemberDisconnectedFromUser, onStaffMemberFullyCreated, onStaffMemberUpdated, queryStaffMembers, removeStaffMemberFromTrashBin, searchStaffMembers, updateStaffMember };
295
+ export { AssignCustomScheduleOptions, AssignCustomScheduleResponse, AssignWorkingHoursScheduleOptions, AssignWorkingHoursScheduleResponse, BulkUpdateStaffMemberTagsByFilterOptions, BulkUpdateStaffMemberTagsByFilterResponse, BulkUpdateStaffMemberTagsOptions, BulkUpdateStaffMemberTagsResponse, ConnectStaffMemberToUserOptions, ConnectStaffMemberToUserResponse, CountStaffMembersOptions, CountStaffMembersResponse, CreateStaffMemberOptions, DisconnectStaffMemberFromUserOptions, DisconnectStaffMemberFromUserResponse, GetDeletedStaffMemberOptions, GetDeletedStaffMemberResponse, GetStaffMemberOptions, ListDeletedStaffMembersOptions, ListDeletedStaffMembersResponse, QueryStaffMembersOptions, SearchStaffMembersOptions, SearchStaffMembersResponse, StaffMember, StaffMemberConnectedToUserEnvelope, StaffMemberCreatedEnvelope, StaffMemberDeletedEnvelope, StaffMemberDisconnectedFromUserEnvelope, StaffMemberFullyCreatedEnvelope, StaffMemberQuery, StaffMemberSearch, StaffMemberUpdatedEnvelope, StaffMembersQueryBuilder, UpdateStaffMember, UpdateStaffMemberOptions, assignCustomSchedule, assignWorkingHoursSchedule, bulkUpdateStaffMemberTags, bulkUpdateStaffMemberTagsByFilter, connectStaffMemberToUser, countStaffMembers, createStaffMember, deleteStaffMember, disconnectStaffMemberFromUser, getDeletedStaffMember, getStaffMember, listDeletedStaffMembers, onStaffMemberConnectedToUser, onStaffMemberCreated, onStaffMemberDeleted, onStaffMemberDisconnectedFromUser, onStaffMemberFullyCreated, onStaffMemberUpdated, queryStaffMembers, removeStaffMemberFromTrashBin, searchStaffMembers, updateStaffMember };