@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.
- 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
- package/build/cjs/index.d.ts +4 -4
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +1 -1
- 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
- package/build/es/index.d.mts +4 -4
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +1 -1
- 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
- package/build/internal/cjs/index.d.ts +4 -4
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +1 -1
- 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
- package/build/internal/es/index.d.mts +4 -4
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +1 -1
- 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:
|
|
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
|
|
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 };
|
package/build/cjs/index.d.ts
CHANGED
|
@@ -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
|
|
3
|
-
export {
|
|
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:
|
|
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,
|
|
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 };
|