@wix/bookings 1.0.438 → 1.0.439

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/bookings",
3
- "version": "1.0.438",
3
+ "version": "1.0.439",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -31,7 +31,7 @@
31
31
  "@wix/bookings_resource-types": "1.0.0",
32
32
  "@wix/bookings_resources": "1.0.37",
33
33
  "@wix/bookings_service-options-and-variants": "1.0.43",
34
- "@wix/bookings_services": "1.0.66",
34
+ "@wix/bookings_services": "1.0.67",
35
35
  "@wix/bookings_staff-members": "1.0.2"
36
36
  },
37
37
  "devDependencies": {
@@ -57,5 +57,5 @@
57
57
  "fqdn": ""
58
58
  }
59
59
  },
60
- "falconPackageHash": "375b472ba92bae74afeaeba55c9baace34b5d82f35594ccdb5d78dac"
60
+ "falconPackageHash": "7dbf00de5fd1d4fb07f21b6ea0cd5fc5859af1c33b4248b5072ed4fb"
61
61
  }
@@ -11741,13 +11741,13 @@ interface BulkUpdateServicesResponse {
11741
11741
  }
11742
11742
  interface BulkUpdateServicesByFilterRequest {
11743
11743
  /** Filter to identify the services that need to be updated. */
11744
- filter?: Record<string, any> | null;
11744
+ filter: Record<string, any> | null;
11745
11745
  /**
11746
11746
  * Service to update. [Partial
11747
11747
  * updates](https://dev.wix.com/api/rest/wix-bookings/bookings/patch-endpoints-and-field-masks-in-update-requests)
11748
11748
  * are supported.
11749
11749
  */
11750
- service?: Service;
11750
+ service: Service;
11751
11751
  }
11752
11752
  interface BulkUpdateServicesByFilterResponse {
11753
11753
  /** ID of the service update job. */
@@ -11796,7 +11796,7 @@ interface BulkDeleteServicesResponse {
11796
11796
  }
11797
11797
  interface BulkDeleteServicesByFilterRequest {
11798
11798
  /** Filter to identify the services that need to be deleted. */
11799
- filter?: Record<string, any> | null;
11799
+ filter: Record<string, any> | null;
11800
11800
  /**
11801
11801
  * Whether to preserve future sessions with participants.
11802
11802
  *
@@ -14184,10 +14184,16 @@ interface BulkUpdateServicesResponseNonNullableFields {
14184
14184
  results: BulkServiceResultNonNullableFields[];
14185
14185
  bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
14186
14186
  }
14187
+ interface BulkUpdateServicesByFilterResponseNonNullableFields {
14188
+ jobId: string;
14189
+ }
14187
14190
  interface BulkDeleteServicesResponseNonNullableFields {
14188
14191
  results: BulkServiceResultNonNullableFields[];
14189
14192
  bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
14190
14193
  }
14194
+ interface BulkDeleteServicesByFilterResponseNonNullableFields {
14195
+ jobId: string;
14196
+ }
14191
14197
  interface QueryServicesResponseNonNullableFields {
14192
14198
  services: ServiceNonNullableFields[];
14193
14199
  }
@@ -14443,6 +14449,14 @@ interface BulkUpdateServicesOptions {
14443
14449
  /** `true` if the updated entities must be included in the response, */
14444
14450
  returnEntity?: boolean;
14445
14451
  }
14452
+ interface BulkUpdateServicesByFilterOptions {
14453
+ /**
14454
+ * Service to update. [Partial
14455
+ * updates](https://dev.wix.com/api/rest/wix-bookings/bookings/patch-endpoints-and-field-masks-in-update-requests)
14456
+ * are supported.
14457
+ */
14458
+ service: Service;
14459
+ }
14446
14460
  interface DeleteServiceOptions {
14447
14461
  /**
14448
14462
  * Whether to preserve future sessions with participants.
@@ -14463,6 +14477,16 @@ interface BulkDeleteServicesOptions {
14463
14477
  /** Whether to notify participants about the change and an optional */
14464
14478
  participantNotification?: V2ParticipantNotification;
14465
14479
  }
14480
+ interface BulkDeleteServicesByFilterOptions {
14481
+ /**
14482
+ * Whether to preserve future sessions with participants.
14483
+ *
14484
+ * Default: `false`.
14485
+ */
14486
+ preserveFutureSessionsWithParticipants?: boolean;
14487
+ /** Whether to notify participants about the change and an optional custom message. */
14488
+ participantNotification?: V2ParticipantNotification;
14489
+ }
14466
14490
  interface QueryServicesOptions {
14467
14491
  }
14468
14492
  interface QueryOffsetResult {
@@ -14638,6 +14662,20 @@ interface BulkUpdateServicesSignature {
14638
14662
  */
14639
14663
  (options?: BulkUpdateServicesOptions | undefined): Promise<BulkUpdateServicesResponse & BulkUpdateServicesResponseNonNullableFields>;
14640
14664
  }
14665
+ declare function bulkUpdateServicesByFilter$1(httpClient: HttpClient): BulkUpdateServicesByFilterSignature;
14666
+ interface BulkUpdateServicesByFilterSignature {
14667
+ /**
14668
+ * Updates multiple services by filter.
14669
+ *
14670
+ * [Partial
14671
+ * updates](https://dev.wix.com/api/rest/wix-bookings/bookings/patch-endpoints-and-field-masks-in-update-requests)
14672
+ * are supported.
14673
+ *
14674
+ * Each time a service is updated, `revision` increments by 1.
14675
+ * @param - Filter to identify the services that need to be updated.
14676
+ */
14677
+ (filter: Record<string, any> | null, options: BulkUpdateServicesByFilterOptions): Promise<BulkUpdateServicesByFilterResponse & BulkUpdateServicesByFilterResponseNonNullableFields>;
14678
+ }
14641
14679
  declare function deleteService$1(httpClient: HttpClient): DeleteServiceSignature;
14642
14680
  interface DeleteServiceSignature {
14643
14681
  /**
@@ -14654,6 +14692,14 @@ interface BulkDeleteServicesSignature {
14654
14692
  */
14655
14693
  (ids: string[], options?: BulkDeleteServicesOptions | undefined): Promise<BulkDeleteServicesResponse & BulkDeleteServicesResponseNonNullableFields>;
14656
14694
  }
14695
+ declare function bulkDeleteServicesByFilter$1(httpClient: HttpClient): BulkDeleteServicesByFilterSignature;
14696
+ interface BulkDeleteServicesByFilterSignature {
14697
+ /**
14698
+ * Deletes multiple services by filter.
14699
+ * @param - Filter to identify the services that need to be deleted.
14700
+ */
14701
+ (filter: Record<string, any> | null, options?: BulkDeleteServicesByFilterOptions | undefined): Promise<BulkDeleteServicesByFilterResponse & BulkDeleteServicesByFilterResponseNonNullableFields>;
14702
+ }
14657
14703
  declare function queryServices$1(httpClient: HttpClient): QueryServicesSignature;
14658
14704
  interface QueryServicesSignature {
14659
14705
  /**
@@ -14802,8 +14848,10 @@ declare const createService: BuildRESTFunction<typeof createService$1> & typeof
14802
14848
  declare const getService: BuildRESTFunction<typeof getService$1> & typeof getService$1;
14803
14849
  declare const updateService: BuildRESTFunction<typeof updateService$1> & typeof updateService$1;
14804
14850
  declare const bulkUpdateServices: BuildRESTFunction<typeof bulkUpdateServices$1> & typeof bulkUpdateServices$1;
14851
+ declare const bulkUpdateServicesByFilter: BuildRESTFunction<typeof bulkUpdateServicesByFilter$1> & typeof bulkUpdateServicesByFilter$1;
14805
14852
  declare const deleteService: BuildRESTFunction<typeof deleteService$1> & typeof deleteService$1;
14806
14853
  declare const bulkDeleteServices: BuildRESTFunction<typeof bulkDeleteServices$1> & typeof bulkDeleteServices$1;
14854
+ declare const bulkDeleteServicesByFilter: BuildRESTFunction<typeof bulkDeleteServicesByFilter$1> & typeof bulkDeleteServicesByFilter$1;
14807
14855
  declare const queryServices: BuildRESTFunction<typeof queryServices$1> & typeof queryServices$1;
14808
14856
  declare const searchServices: BuildRESTFunction<typeof searchServices$1> & typeof searchServices$1;
14809
14857
  declare const queryPolicies: BuildRESTFunction<typeof queryPolicies$1> & typeof queryPolicies$1;
@@ -14851,15 +14899,19 @@ declare const context$6_BenefitType: typeof BenefitType;
14851
14899
  type context$6_BookingPolicyWithServices = BookingPolicyWithServices;
14852
14900
  type context$6_BulkCreateServicesRequest = BulkCreateServicesRequest;
14853
14901
  type context$6_BulkCreateServicesResponse = BulkCreateServicesResponse;
14902
+ type context$6_BulkDeleteServicesByFilterOptions = BulkDeleteServicesByFilterOptions;
14854
14903
  type context$6_BulkDeleteServicesByFilterRequest = BulkDeleteServicesByFilterRequest;
14855
14904
  type context$6_BulkDeleteServicesByFilterResponse = BulkDeleteServicesByFilterResponse;
14905
+ type context$6_BulkDeleteServicesByFilterResponseNonNullableFields = BulkDeleteServicesByFilterResponseNonNullableFields;
14856
14906
  type context$6_BulkDeleteServicesOptions = BulkDeleteServicesOptions;
14857
14907
  type context$6_BulkDeleteServicesRequest = BulkDeleteServicesRequest;
14858
14908
  type context$6_BulkDeleteServicesResponse = BulkDeleteServicesResponse;
14859
14909
  type context$6_BulkDeleteServicesResponseNonNullableFields = BulkDeleteServicesResponseNonNullableFields;
14860
14910
  type context$6_BulkServiceResult = BulkServiceResult;
14911
+ type context$6_BulkUpdateServicesByFilterOptions = BulkUpdateServicesByFilterOptions;
14861
14912
  type context$6_BulkUpdateServicesByFilterRequest = BulkUpdateServicesByFilterRequest;
14862
14913
  type context$6_BulkUpdateServicesByFilterResponse = BulkUpdateServicesByFilterResponse;
14914
+ type context$6_BulkUpdateServicesByFilterResponseNonNullableFields = BulkUpdateServicesByFilterResponseNonNullableFields;
14863
14915
  type context$6_BulkUpdateServicesOptions = BulkUpdateServicesOptions;
14864
14916
  type context$6_BulkUpdateServicesRequest = BulkUpdateServicesRequest;
14865
14917
  type context$6_BulkUpdateServicesResponse = BulkUpdateServicesResponse;
@@ -15070,7 +15122,9 @@ type context$6__publicOnServiceDefaultBookingPolicySetType = _publicOnServiceDef
15070
15122
  type context$6__publicOnServiceDeletedType = _publicOnServiceDeletedType;
15071
15123
  type context$6__publicOnServiceUpdatedType = _publicOnServiceUpdatedType;
15072
15124
  declare const context$6_bulkDeleteServices: typeof bulkDeleteServices;
15125
+ declare const context$6_bulkDeleteServicesByFilter: typeof bulkDeleteServicesByFilter;
15073
15126
  declare const context$6_bulkUpdateServices: typeof bulkUpdateServices;
15127
+ declare const context$6_bulkUpdateServicesByFilter: typeof bulkUpdateServicesByFilter;
15074
15128
  declare const context$6_cloneService: typeof cloneService;
15075
15129
  declare const context$6_countServices: typeof countServices;
15076
15130
  declare const context$6_createService: typeof createService;
@@ -15092,7 +15146,7 @@ declare const context$6_setServiceLocations: typeof setServiceLocations;
15092
15146
  declare const context$6_updateService: typeof updateService;
15093
15147
  declare const context$6_validateSlug: typeof validateSlug;
15094
15148
  declare namespace context$6 {
15095
- export { context$6_Action as Action, type ActionEvent$4 as ActionEvent, type Address$4 as Address, type AddressHint$1 as AddressHint, type AddressLocation$3 as AddressLocation, type AddressStreetOneOf$3 as AddressStreetOneOf, type context$6_Aggregation as Aggregation, type AggregationData$1 as AggregationData, type context$6_AggregationKindOneOf as AggregationKindOneOf, type AggregationResults$1 as AggregationResults, type AggregationResultsResultOneOf$1 as AggregationResultsResultOneOf, type context$6_AggregationResultsScalarResult as AggregationResultsScalarResult, AggregationType$1 as AggregationType, type ApplicationError$2 as ApplicationError, ApprovalStatus$1 as ApprovalStatus, type Availability$1 as Availability, type AvailabilityConstraints$1 as AvailabilityConstraints, type AvailabilityPolicy$1 as AvailabilityPolicy, type AvailabilityPolicyUpdated$1 as AvailabilityPolicyUpdated, type BaseEventMetadata$4 as BaseEventMetadata, type context$6_Behavior as Behavior, type context$6_BehaviorBehaviorOneOf as BehaviorBehaviorOneOf, type context$6_Benefit as Benefit, type context$6_BenefitNotification as BenefitNotification, context$6_BenefitType as BenefitType, type BookAfterStartPolicy$1 as BookAfterStartPolicy, type BookingPolicy$1 as BookingPolicy, type context$6_BookingPolicyWithServices as BookingPolicyWithServices, type BulkActionMetadata$2 as BulkActionMetadata, type context$6_BulkCreateServicesRequest as BulkCreateServicesRequest, type context$6_BulkCreateServicesResponse as BulkCreateServicesResponse, type context$6_BulkDeleteServicesByFilterRequest as BulkDeleteServicesByFilterRequest, type context$6_BulkDeleteServicesByFilterResponse as BulkDeleteServicesByFilterResponse, type context$6_BulkDeleteServicesOptions as BulkDeleteServicesOptions, type context$6_BulkDeleteServicesRequest as BulkDeleteServicesRequest, type context$6_BulkDeleteServicesResponse as BulkDeleteServicesResponse, type context$6_BulkDeleteServicesResponseNonNullableFields as BulkDeleteServicesResponseNonNullableFields, type context$6_BulkServiceResult as BulkServiceResult, type context$6_BulkUpdateServicesByFilterRequest as BulkUpdateServicesByFilterRequest, type context$6_BulkUpdateServicesByFilterResponse as BulkUpdateServicesByFilterResponse, type context$6_BulkUpdateServicesOptions as BulkUpdateServicesOptions, type context$6_BulkUpdateServicesRequest as BulkUpdateServicesRequest, type context$6_BulkUpdateServicesResponse as BulkUpdateServicesResponse, type context$6_BulkUpdateServicesResponseNonNullableFields as BulkUpdateServicesResponseNonNullableFields, type context$6_BusinessLocation as BusinessLocation, type context$6_BusinessLocationOptions as BusinessLocationOptions, type context$6_BusinessLocations as BusinessLocations, type BusinessSchedule$2 as BusinessSchedule, type CalendarConference$1 as CalendarConference, type CalendarDateTime$1 as CalendarDateTime, CalendarType$1 as CalendarType, type CancellationFeePolicy$1 as CancellationFeePolicy, type context$6_CancellationFeePolicyCancellationWindow as CancellationFeePolicyCancellationWindow, type context$6_CancellationFeePolicyCancellationWindowFeeOneOf as CancellationFeePolicyCancellationWindowFeeOneOf, type CancellationPolicy$1 as CancellationPolicy, type CancellationWindow$1 as CancellationWindow, type CancellationWindowFeeOneOf$1 as CancellationWindowFeeOneOf, type Categories$1 as Categories, type Category$1 as Category, type CategoryNotification$1 as CategoryNotification, context$6_CategoryNotificationEvent as CategoryNotificationEvent, context$6_CategoryStatus as CategoryStatus, type ChangeContext$1 as ChangeContext, type ChangeContextPayloadOneOf$1 as ChangeContextPayloadOneOf, context$6_CloneErrors as CloneErrors, type context$6_CloneServiceOptions as CloneServiceOptions, type context$6_CloneServiceRequest as CloneServiceRequest, type context$6_CloneServiceResponse as CloneServiceResponse, type context$6_CloneServiceResponseNonNullableFields as CloneServiceResponseNonNullableFields, type context$6_CommonAddress as CommonAddress, type context$6_CommonAddressLocation as CommonAddressLocation, type context$6_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type context$6_CommonMoney as CommonMoney, type context$6_CommonStreetAddress as CommonStreetAddress, type ConferenceProvider$1 as ConferenceProvider, ConferenceType$1 as ConferenceType, type context$6_Conferencing as Conferencing, type ConsentPolicy$1 as ConsentPolicy, type context$6_CountServicesOptions as CountServicesOptions, type context$6_CountServicesRequest as CountServicesRequest, type context$6_CountServicesResponse as CountServicesResponse, type context$6_CountServicesResponseNonNullableFields as CountServicesResponseNonNullableFields, type context$6_CreateServiceRequest as CreateServiceRequest, type context$6_CreateServiceResponse as CreateServiceResponse, type context$6_CreateServiceResponseNonNullableFields as CreateServiceResponseNonNullableFields, context$6_CrudType as CrudType, type CursorPaging$4 as CursorPaging, type CursorPagingMetadata$3 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type CursorSearch$1 as CursorSearch, type CursorSearchPagingMethodOneOf$1 as CursorSearchPagingMethodOneOf, type Cursors$4 as Cursors, type context$6_CustomLocationOptions as CustomLocationOptions, type context$6_CustomLocations as CustomLocations, type context$6_CustomPayment as CustomPayment, type context$6_CustomerLocations as CustomerLocations, type context$6_DateHistogramAggregation as DateHistogramAggregation, context$6_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type context$6_DateHistogramResult as DateHistogramResult, type context$6_DateHistogramResults as DateHistogramResults, Day$1 as Day, DayOfWeek$2 as DayOfWeek, type DefaultBookingPolicySet$1 as DefaultBookingPolicySet, type context$6_Delete as Delete, type context$6_DeleteServiceOptions as DeleteServiceOptions, type context$6_DeleteServiceRequest as DeleteServiceRequest, type context$6_DeleteServiceResponse as DeleteServiceResponse, type context$6_DisablePricingPlansForServiceOptions as DisablePricingPlansForServiceOptions, type context$6_DisablePricingPlansForServiceRequest as DisablePricingPlansForServiceRequest, type context$6_DisablePricingPlansForServiceResponse as DisablePricingPlansForServiceResponse, type context$6_DisablePricingPlansForServiceResponseNonNullableFields as DisablePricingPlansForServiceResponseNonNullableFields, type context$6_Discount as Discount, type context$6_DiscountDiscountOneOf as DiscountDiscountOneOf, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type Empty$2 as Empty, type context$6_EnablePricingPlansForServiceRequest as EnablePricingPlansForServiceRequest, type context$6_EnablePricingPlansForServiceResponse as EnablePricingPlansForServiceResponse, type context$6_EnablePricingPlansForServiceResponseNonNullableFields as EnablePricingPlansForServiceResponseNonNullableFields, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type context$6_EntryPass as EntryPass, Event$1 as Event, type EventMetadata$3 as EventMetadata, type ExtendedFields$4 as ExtendedFields, type ExternalCalendarInfo$1 as ExternalCalendarInfo, type ExternalCalendarOverrides$1 as ExternalCalendarOverrides, type context$6_FixedPayment as FixedPayment, type context$6_Form as Form, type context$6_FormSettings as FormSettings, type Frequency$1 as Frequency, type GeoCoordinates$1 as GeoCoordinates, type context$6_GetServiceAvailabilityConstraintsRequest as GetServiceAvailabilityConstraintsRequest, type context$6_GetServiceAvailabilityConstraintsResponse as GetServiceAvailabilityConstraintsResponse, type context$6_GetServiceRequest as GetServiceRequest, type context$6_GetServiceResponse as GetServiceResponse, type context$6_GetServiceResponseNonNullableFields as GetServiceResponseNonNullableFields, type context$6_GroupByAggregation as GroupByAggregation, type context$6_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type GroupByValueResults$1 as GroupByValueResults, type context$6_HtmlSitePublished as HtmlSitePublished, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type context$6_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type Interval$1 as Interval, type IntervalSplit$1 as IntervalSplit, type context$6_InvalidPricingPlan as InvalidPricingPlan, context$6_InvalidSlugError as InvalidSlugError, type ItemMetadata$2 as ItemMetadata, type context$6_Keyword as Keyword, type LimitEarlyBookingPolicy$1 as LimitEarlyBookingPolicy, type LimitLateBookingPolicy$1 as LimitLateBookingPolicy, type LinkedSchedule$1 as LinkedSchedule, type LocalDateTime$1 as LocalDateTime, type Locale$1 as Locale, type Location$3 as Location, LocationStatus$1 as LocationStatus, LocationType$3 as LocationType, context$6_LocationTypeEnumLocationType as LocationTypeEnumLocationType, type LocationsAddress$1 as LocationsAddress, type LocationsAddressLocation$1 as LocationsAddressLocation, type LocationsLocation$1 as LocationsLocation, LocationsLocationType$1 as LocationsLocationType, type LocationsStreetAddress$1 as LocationsStreetAddress, type context$6_MaskedService as MaskedService, type context$6_Media as Media, type MediaItem$1 as MediaItem, type context$6_MediaItemItemOneOf as MediaItemItemOneOf, type MessageEnvelope$5 as MessageEnvelope, type MigrationData$1 as MigrationData, type MigrationEvent$1 as MigrationEvent, context$6_MissingValues as MissingValues, Mode$1 as Mode, type Money$1 as Money, type context$6_MoveToNewLocationsOptions as MoveToNewLocationsOptions, type context$6_MultiServiceEnabledNotification as MultiServiceEnabledNotification, type Multilingual$1 as Multilingual, type MultipleSessionsCreated$1 as MultipleSessionsCreated, type context$6_NestedAggregation as NestedAggregation, type context$6_NestedAggregationItem as NestedAggregationItem, type context$6_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type NestedAggregationResults$1 as NestedAggregationResults, type NestedAggregationResultsResultOneOf$1 as NestedAggregationResultsResultOneOf, context$6_NestedAggregationType as NestedAggregationType, type context$6_NestedResultValue as NestedResultValue, type context$6_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type context$6_NestedResults as NestedResults, type NestedValueAggregationResult$1 as NestedValueAggregationResult, type context$6_OnlineBooking as OnlineBooking, type context$6_Page as Page, type Paging$2 as Paging, type PagingMetadataV2$1 as PagingMetadataV2, type Participant$1 as Participant, type ParticipantNotification$4 as ParticipantNotification, type ParticipantsPolicy$1 as ParticipantsPolicy, type context$6_Payment as Payment, type context$6_PaymentOptions as PaymentOptions, type context$6_PaymentRateOneOf as PaymentRateOneOf, PlacementType$1 as PlacementType, type PolicyDescription$1 as PolicyDescription, type Price$1 as Price, type Properties$1 as Properties, type PropertiesChange$1 as PropertiesChange, type context$6_QueryCategoriesFilter as QueryCategoriesFilter, type context$6_QueryCategoriesOptions as QueryCategoriesOptions, type context$6_QueryCategoriesRequest as QueryCategoriesRequest, type context$6_QueryCategoriesResponse as QueryCategoriesResponse, type context$6_QueryCategoriesResponseNonNullableFields as QueryCategoriesResponseNonNullableFields, type context$6_QueryLocationsFilter as QueryLocationsFilter, type context$6_QueryLocationsOptions as QueryLocationsOptions, type context$6_QueryLocationsRequest as QueryLocationsRequest, type context$6_QueryLocationsResponse as QueryLocationsResponse, type context$6_QueryLocationsResponseNonNullableFields as QueryLocationsResponseNonNullableFields, type context$6_QueryPoliciesRequest as QueryPoliciesRequest, type context$6_QueryPoliciesResponse as QueryPoliciesResponse, type context$6_QueryPoliciesResponseNonNullableFields as QueryPoliciesResponseNonNullableFields, type context$6_QueryServicesMultiLanguageRequest as QueryServicesMultiLanguageRequest, type context$6_QueryServicesMultiLanguageResponse as QueryServicesMultiLanguageResponse, type context$6_QueryServicesOptions as QueryServicesOptions, type context$6_QueryServicesRequest as QueryServicesRequest, type context$6_QueryServicesResponse as QueryServicesResponse, type context$6_QueryServicesResponseNonNullableFields as QueryServicesResponseNonNullableFields, type QueryV2$2 as QueryV2, type QueryV2PagingMethodOneOf$2 as QueryV2PagingMethodOneOf, type context$6_RangeAggregation as RangeAggregation, type RangeAggregationResult$1 as RangeAggregationResult, type context$6_RangeBucket as RangeBucket, type context$6_RangeResult as RangeResult, type RangeResults$1 as RangeResults, type Rate$1 as Rate, context$6_RateType as RateType, type RecurringInterval$1 as RecurringInterval, RecurringIntervalType$1 as RecurringIntervalType, type RecurringSessionSplit$1 as RecurringSessionSplit, type RecurringSessionsUpdated$1 as RecurringSessionsUpdated, type context$6_ReindexMessage as ReindexMessage, type context$6_ReindexMessageActionOneOf as ReindexMessageActionOneOf, type context$6_RemovedLocationSessionsAction as RemovedLocationSessionsAction, type context$6_RemovedLocationSessionsActionActionOptionsOneOf as RemovedLocationSessionsActionActionOptionsOneOf, RequestedFields$1 as RequestedFields, type ReschedulePolicy$1 as ReschedulePolicy, ResolutionMethod$1 as ResolutionMethod, type Resource$1 as Resource, type context$6_ResourceGroup as ResourceGroup, type context$6_ResourceIds as ResourceIds, type context$6_ResourceNotification as ResourceNotification, context$6_ResourceNotificationEvent as ResourceNotificationEvent, context$6_ResourceStatus as ResourceStatus, type context$6_ResourceType as ResourceType, type ResourcesPolicy$1 as ResourcesPolicy, type RestoreInfo$4 as RestoreInfo, type context$6_Results as Results, type SaveCreditCardPolicy$1 as SaveCreditCardPolicy, type context$6_ScalarAggregation as ScalarAggregation, type ScalarResult$1 as ScalarResult, ScalarType$1 as ScalarType, type Schedule$1 as Schedule, type ScheduleCancelled$1 as ScheduleCancelled, type ScheduleCreated$1 as ScheduleCreated, type ScheduleNotification$1 as ScheduleNotification, type ScheduleNotificationEventOneOf$1 as ScheduleNotificationEventOneOf, ScheduleStatus$1 as ScheduleStatus, type ScheduleUnassignedFromUser$1 as ScheduleUnassignedFromUser, type ScheduleUpdated$1 as ScheduleUpdated, type ScheduleWithSessions$1 as ScheduleWithSessions, type context$6_Schema as Schema, type SearchDetails$1 as SearchDetails, type context$6_SearchServicesRequest as SearchServicesRequest, type context$6_SearchServicesResponse as SearchServicesResponse, type context$6_SearchServicesResponseNonNullableFields as SearchServicesResponseNonNullableFields, type context$6_SeoSchema as SeoSchema, type context$6_Service as Service, type context$6_ServiceAvailabilityConstraints as ServiceAvailabilityConstraints, type context$6_ServiceCreatedEnvelope as ServiceCreatedEnvelope, type context$6_ServiceDefaultBookingPolicySetEnvelope as ServiceDefaultBookingPolicySetEnvelope, type context$6_ServiceDeletedEnvelope as ServiceDeletedEnvelope, type context$6_ServiceNonNullableFields as ServiceNonNullableFields, type context$6_ServiceResource as ServiceResource, type context$6_ServiceResourceSelectionOneOf as ServiceResourceSelectionOneOf, context$6_ServiceType as ServiceType, type context$6_ServiceUpdatedEnvelope as ServiceUpdatedEnvelope, type context$6_ServicesQueryBuilder as ServicesQueryBuilder, type context$6_ServicesQueryResult as ServicesQueryResult, type context$6_ServicesUrlsChanged as ServicesUrlsChanged, type Session$1 as Session, type SessionCancelled$1 as SessionCancelled, type SessionCreated$1 as SessionCreated, SessionType$1 as SessionType, type SessionUpdated$1 as SessionUpdated, type SessionVersion$1 as SessionVersion, type context$6_SetCustomSlugEvent as SetCustomSlugEvent, type context$6_SetCustomSlugRequest as SetCustomSlugRequest, type context$6_SetCustomSlugResponse as SetCustomSlugResponse, type context$6_SetCustomSlugResponseNonNullableFields as SetCustomSlugResponseNonNullableFields, type context$6_SetServiceLocationsOptions as SetServiceLocationsOptions, type context$6_SetServiceLocationsRequest as SetServiceLocationsRequest, type context$6_SetServiceLocationsResponse as SetServiceLocationsResponse, type context$6_SetServiceLocationsResponseNonNullableFields as SetServiceLocationsResponseNonNullableFields, type context$6_Settings as Settings, type SiteCloned$1 as SiteCloned, type SiteCreated$2 as SiteCreated, type SitePropertiesEvent$1 as SitePropertiesEvent, type SitePropertiesNotification$1 as SitePropertiesNotification, type SitePropertiesOnScheduleCreation$1 as SitePropertiesOnScheduleCreation, type context$6_Slug as Slug, context$6_SortDirection as SortDirection, SortOrder$4 as SortOrder, context$6_SortType as SortType, type Sorting$4 as Sorting, type SpecialHourPeriod$2 as SpecialHourPeriod, type SplitInterval$1 as SplitInterval, type StaffData$1 as StaffData, type context$6_StaffMediaItem as StaffMediaItem, type context$6_StaffMediaItemItemOneOf as StaffMediaItemItemOneOf, type StaffMember$1 as StaffMember, type context$6_StaffMemberDetails as StaffMemberDetails, Status$2 as Status, type StreetAddress$3 as StreetAddress, type Subdivision$3 as Subdivision, type SupportedLanguage$1 as SupportedLanguage, type context$6_Tag as Tag, type TimePeriod$2 as TimePeriod, type Translation$1 as Translation, Transparency$1 as Transparency, type context$6_URLs as URLs, type context$6_UpdateService as UpdateService, type context$6_UpdateServiceRequest as UpdateServiceRequest, type context$6_UpdateServiceResponse as UpdateServiceResponse, type context$6_UpdateServiceResponseNonNullableFields as UpdateServiceResponseNonNullableFields, type context$6_Upsert as Upsert, type context$6_UserDomainInfoChangedEvent as UserDomainInfoChangedEvent, type context$6_V1BookAfterStartPolicy as V1BookAfterStartPolicy, type context$6_V1BookingPolicy as V1BookingPolicy, type context$6_V1CancellationFeePolicy as V1CancellationFeePolicy, type context$6_V1CancellationPolicy as V1CancellationPolicy, type context$6_V1LimitEarlyBookingPolicy as V1LimitEarlyBookingPolicy, type context$6_V1LimitLateBookingPolicy as V1LimitLateBookingPolicy, type context$6_V1ParticipantsPolicy as V1ParticipantsPolicy, type context$6_V1PolicyDescription as V1PolicyDescription, type context$6_V1ReschedulePolicy as V1ReschedulePolicy, type context$6_V1ResourcesPolicy as V1ResourcesPolicy, type context$6_V1SaveCreditCardPolicy as V1SaveCreditCardPolicy, type context$6_V1SplitInterval as V1SplitInterval, type context$6_V1WaitlistPolicy as V1WaitlistPolicy, type context$6_V2AvailabilityConstraints as V2AvailabilityConstraints, type context$6_V2Category as V2Category, type context$6_V2Location as V2Location, type context$6_V2LocationOptionsOneOf as V2LocationOptionsOneOf, type context$6_V2ParticipantNotification as V2ParticipantNotification, type context$6_V2Schedule as V2Schedule, type context$6_V4Address as V4Address, type context$6_ValidateSlugOptions as ValidateSlugOptions, type context$6_ValidateSlugRequest as ValidateSlugRequest, type context$6_ValidateSlugResponse as ValidateSlugResponse, type context$6_ValidateSlugResponseNonNullableFields as ValidateSlugResponseNonNullableFields, type context$6_ValueAggregation as ValueAggregation, type context$6_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type ValueAggregationResult$1 as ValueAggregationResult, type context$6_ValueResult as ValueResult, type ValueResults$1 as ValueResults, type context$6_VariedPayment as VariedPayment, type Version$1 as Version, type WaitlistPolicy$1 as WaitlistPolicy, WebhookIdentityType$5 as WebhookIdentityType, type context$6__publicOnServiceCreatedType as _publicOnServiceCreatedType, type context$6__publicOnServiceDefaultBookingPolicySetType as _publicOnServiceDefaultBookingPolicySetType, type context$6__publicOnServiceDeletedType as _publicOnServiceDeletedType, type context$6__publicOnServiceUpdatedType as _publicOnServiceUpdatedType, context$6_bulkDeleteServices as bulkDeleteServices, context$6_bulkUpdateServices as bulkUpdateServices, context$6_cloneService as cloneService, context$6_countServices as countServices, context$6_createService as createService, context$6_deleteService as deleteService, context$6_disablePricingPlansForService as disablePricingPlansForService, context$6_enablePricingPlansForService as enablePricingPlansForService, context$6_getService as getService, context$6_onServiceCreated as onServiceCreated, context$6_onServiceDefaultBookingPolicySet as onServiceDefaultBookingPolicySet, context$6_onServiceDeleted as onServiceDeleted, context$6_onServiceUpdated as onServiceUpdated, onServiceCreated$1 as publicOnServiceCreated, onServiceDefaultBookingPolicySet$1 as publicOnServiceDefaultBookingPolicySet, onServiceDeleted$1 as publicOnServiceDeleted, onServiceUpdated$1 as publicOnServiceUpdated, context$6_queryCategories as queryCategories, context$6_queryLocations as queryLocations, context$6_queryPolicies as queryPolicies, context$6_queryServices as queryServices, context$6_searchServices as searchServices, context$6_setCustomSlug as setCustomSlug, context$6_setServiceLocations as setServiceLocations, context$6_updateService as updateService, context$6_validateSlug as validateSlug };
15149
+ export { context$6_Action as Action, type ActionEvent$4 as ActionEvent, type Address$4 as Address, type AddressHint$1 as AddressHint, type AddressLocation$3 as AddressLocation, type AddressStreetOneOf$3 as AddressStreetOneOf, type context$6_Aggregation as Aggregation, type AggregationData$1 as AggregationData, type context$6_AggregationKindOneOf as AggregationKindOneOf, type AggregationResults$1 as AggregationResults, type AggregationResultsResultOneOf$1 as AggregationResultsResultOneOf, type context$6_AggregationResultsScalarResult as AggregationResultsScalarResult, AggregationType$1 as AggregationType, type ApplicationError$2 as ApplicationError, ApprovalStatus$1 as ApprovalStatus, type Availability$1 as Availability, type AvailabilityConstraints$1 as AvailabilityConstraints, type AvailabilityPolicy$1 as AvailabilityPolicy, type AvailabilityPolicyUpdated$1 as AvailabilityPolicyUpdated, type BaseEventMetadata$4 as BaseEventMetadata, type context$6_Behavior as Behavior, type context$6_BehaviorBehaviorOneOf as BehaviorBehaviorOneOf, type context$6_Benefit as Benefit, type context$6_BenefitNotification as BenefitNotification, context$6_BenefitType as BenefitType, type BookAfterStartPolicy$1 as BookAfterStartPolicy, type BookingPolicy$1 as BookingPolicy, type context$6_BookingPolicyWithServices as BookingPolicyWithServices, type BulkActionMetadata$2 as BulkActionMetadata, type context$6_BulkCreateServicesRequest as BulkCreateServicesRequest, type context$6_BulkCreateServicesResponse as BulkCreateServicesResponse, type context$6_BulkDeleteServicesByFilterOptions as BulkDeleteServicesByFilterOptions, type context$6_BulkDeleteServicesByFilterRequest as BulkDeleteServicesByFilterRequest, type context$6_BulkDeleteServicesByFilterResponse as BulkDeleteServicesByFilterResponse, type context$6_BulkDeleteServicesByFilterResponseNonNullableFields as BulkDeleteServicesByFilterResponseNonNullableFields, type context$6_BulkDeleteServicesOptions as BulkDeleteServicesOptions, type context$6_BulkDeleteServicesRequest as BulkDeleteServicesRequest, type context$6_BulkDeleteServicesResponse as BulkDeleteServicesResponse, type context$6_BulkDeleteServicesResponseNonNullableFields as BulkDeleteServicesResponseNonNullableFields, type context$6_BulkServiceResult as BulkServiceResult, type context$6_BulkUpdateServicesByFilterOptions as BulkUpdateServicesByFilterOptions, type context$6_BulkUpdateServicesByFilterRequest as BulkUpdateServicesByFilterRequest, type context$6_BulkUpdateServicesByFilterResponse as BulkUpdateServicesByFilterResponse, type context$6_BulkUpdateServicesByFilterResponseNonNullableFields as BulkUpdateServicesByFilterResponseNonNullableFields, type context$6_BulkUpdateServicesOptions as BulkUpdateServicesOptions, type context$6_BulkUpdateServicesRequest as BulkUpdateServicesRequest, type context$6_BulkUpdateServicesResponse as BulkUpdateServicesResponse, type context$6_BulkUpdateServicesResponseNonNullableFields as BulkUpdateServicesResponseNonNullableFields, type context$6_BusinessLocation as BusinessLocation, type context$6_BusinessLocationOptions as BusinessLocationOptions, type context$6_BusinessLocations as BusinessLocations, type BusinessSchedule$2 as BusinessSchedule, type CalendarConference$1 as CalendarConference, type CalendarDateTime$1 as CalendarDateTime, CalendarType$1 as CalendarType, type CancellationFeePolicy$1 as CancellationFeePolicy, type context$6_CancellationFeePolicyCancellationWindow as CancellationFeePolicyCancellationWindow, type context$6_CancellationFeePolicyCancellationWindowFeeOneOf as CancellationFeePolicyCancellationWindowFeeOneOf, type CancellationPolicy$1 as CancellationPolicy, type CancellationWindow$1 as CancellationWindow, type CancellationWindowFeeOneOf$1 as CancellationWindowFeeOneOf, type Categories$1 as Categories, type Category$1 as Category, type CategoryNotification$1 as CategoryNotification, context$6_CategoryNotificationEvent as CategoryNotificationEvent, context$6_CategoryStatus as CategoryStatus, type ChangeContext$1 as ChangeContext, type ChangeContextPayloadOneOf$1 as ChangeContextPayloadOneOf, context$6_CloneErrors as CloneErrors, type context$6_CloneServiceOptions as CloneServiceOptions, type context$6_CloneServiceRequest as CloneServiceRequest, type context$6_CloneServiceResponse as CloneServiceResponse, type context$6_CloneServiceResponseNonNullableFields as CloneServiceResponseNonNullableFields, type context$6_CommonAddress as CommonAddress, type context$6_CommonAddressLocation as CommonAddressLocation, type context$6_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type context$6_CommonMoney as CommonMoney, type context$6_CommonStreetAddress as CommonStreetAddress, type ConferenceProvider$1 as ConferenceProvider, ConferenceType$1 as ConferenceType, type context$6_Conferencing as Conferencing, type ConsentPolicy$1 as ConsentPolicy, type context$6_CountServicesOptions as CountServicesOptions, type context$6_CountServicesRequest as CountServicesRequest, type context$6_CountServicesResponse as CountServicesResponse, type context$6_CountServicesResponseNonNullableFields as CountServicesResponseNonNullableFields, type context$6_CreateServiceRequest as CreateServiceRequest, type context$6_CreateServiceResponse as CreateServiceResponse, type context$6_CreateServiceResponseNonNullableFields as CreateServiceResponseNonNullableFields, context$6_CrudType as CrudType, type CursorPaging$4 as CursorPaging, type CursorPagingMetadata$3 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type CursorSearch$1 as CursorSearch, type CursorSearchPagingMethodOneOf$1 as CursorSearchPagingMethodOneOf, type Cursors$4 as Cursors, type context$6_CustomLocationOptions as CustomLocationOptions, type context$6_CustomLocations as CustomLocations, type context$6_CustomPayment as CustomPayment, type context$6_CustomerLocations as CustomerLocations, type context$6_DateHistogramAggregation as DateHistogramAggregation, context$6_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type context$6_DateHistogramResult as DateHistogramResult, type context$6_DateHistogramResults as DateHistogramResults, Day$1 as Day, DayOfWeek$2 as DayOfWeek, type DefaultBookingPolicySet$1 as DefaultBookingPolicySet, type context$6_Delete as Delete, type context$6_DeleteServiceOptions as DeleteServiceOptions, type context$6_DeleteServiceRequest as DeleteServiceRequest, type context$6_DeleteServiceResponse as DeleteServiceResponse, type context$6_DisablePricingPlansForServiceOptions as DisablePricingPlansForServiceOptions, type context$6_DisablePricingPlansForServiceRequest as DisablePricingPlansForServiceRequest, type context$6_DisablePricingPlansForServiceResponse as DisablePricingPlansForServiceResponse, type context$6_DisablePricingPlansForServiceResponseNonNullableFields as DisablePricingPlansForServiceResponseNonNullableFields, type context$6_Discount as Discount, type context$6_DiscountDiscountOneOf as DiscountDiscountOneOf, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type Empty$2 as Empty, type context$6_EnablePricingPlansForServiceRequest as EnablePricingPlansForServiceRequest, type context$6_EnablePricingPlansForServiceResponse as EnablePricingPlansForServiceResponse, type context$6_EnablePricingPlansForServiceResponseNonNullableFields as EnablePricingPlansForServiceResponseNonNullableFields, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type context$6_EntryPass as EntryPass, Event$1 as Event, type EventMetadata$3 as EventMetadata, type ExtendedFields$4 as ExtendedFields, type ExternalCalendarInfo$1 as ExternalCalendarInfo, type ExternalCalendarOverrides$1 as ExternalCalendarOverrides, type context$6_FixedPayment as FixedPayment, type context$6_Form as Form, type context$6_FormSettings as FormSettings, type Frequency$1 as Frequency, type GeoCoordinates$1 as GeoCoordinates, type context$6_GetServiceAvailabilityConstraintsRequest as GetServiceAvailabilityConstraintsRequest, type context$6_GetServiceAvailabilityConstraintsResponse as GetServiceAvailabilityConstraintsResponse, type context$6_GetServiceRequest as GetServiceRequest, type context$6_GetServiceResponse as GetServiceResponse, type context$6_GetServiceResponseNonNullableFields as GetServiceResponseNonNullableFields, type context$6_GroupByAggregation as GroupByAggregation, type context$6_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type GroupByValueResults$1 as GroupByValueResults, type context$6_HtmlSitePublished as HtmlSitePublished, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type context$6_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type Interval$1 as Interval, type IntervalSplit$1 as IntervalSplit, type context$6_InvalidPricingPlan as InvalidPricingPlan, context$6_InvalidSlugError as InvalidSlugError, type ItemMetadata$2 as ItemMetadata, type context$6_Keyword as Keyword, type LimitEarlyBookingPolicy$1 as LimitEarlyBookingPolicy, type LimitLateBookingPolicy$1 as LimitLateBookingPolicy, type LinkedSchedule$1 as LinkedSchedule, type LocalDateTime$1 as LocalDateTime, type Locale$1 as Locale, type Location$3 as Location, LocationStatus$1 as LocationStatus, LocationType$3 as LocationType, context$6_LocationTypeEnumLocationType as LocationTypeEnumLocationType, type LocationsAddress$1 as LocationsAddress, type LocationsAddressLocation$1 as LocationsAddressLocation, type LocationsLocation$1 as LocationsLocation, LocationsLocationType$1 as LocationsLocationType, type LocationsStreetAddress$1 as LocationsStreetAddress, type context$6_MaskedService as MaskedService, type context$6_Media as Media, type MediaItem$1 as MediaItem, type context$6_MediaItemItemOneOf as MediaItemItemOneOf, type MessageEnvelope$5 as MessageEnvelope, type MigrationData$1 as MigrationData, type MigrationEvent$1 as MigrationEvent, context$6_MissingValues as MissingValues, Mode$1 as Mode, type Money$1 as Money, type context$6_MoveToNewLocationsOptions as MoveToNewLocationsOptions, type context$6_MultiServiceEnabledNotification as MultiServiceEnabledNotification, type Multilingual$1 as Multilingual, type MultipleSessionsCreated$1 as MultipleSessionsCreated, type context$6_NestedAggregation as NestedAggregation, type context$6_NestedAggregationItem as NestedAggregationItem, type context$6_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type NestedAggregationResults$1 as NestedAggregationResults, type NestedAggregationResultsResultOneOf$1 as NestedAggregationResultsResultOneOf, context$6_NestedAggregationType as NestedAggregationType, type context$6_NestedResultValue as NestedResultValue, type context$6_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type context$6_NestedResults as NestedResults, type NestedValueAggregationResult$1 as NestedValueAggregationResult, type context$6_OnlineBooking as OnlineBooking, type context$6_Page as Page, type Paging$2 as Paging, type PagingMetadataV2$1 as PagingMetadataV2, type Participant$1 as Participant, type ParticipantNotification$4 as ParticipantNotification, type ParticipantsPolicy$1 as ParticipantsPolicy, type context$6_Payment as Payment, type context$6_PaymentOptions as PaymentOptions, type context$6_PaymentRateOneOf as PaymentRateOneOf, PlacementType$1 as PlacementType, type PolicyDescription$1 as PolicyDescription, type Price$1 as Price, type Properties$1 as Properties, type PropertiesChange$1 as PropertiesChange, type context$6_QueryCategoriesFilter as QueryCategoriesFilter, type context$6_QueryCategoriesOptions as QueryCategoriesOptions, type context$6_QueryCategoriesRequest as QueryCategoriesRequest, type context$6_QueryCategoriesResponse as QueryCategoriesResponse, type context$6_QueryCategoriesResponseNonNullableFields as QueryCategoriesResponseNonNullableFields, type context$6_QueryLocationsFilter as QueryLocationsFilter, type context$6_QueryLocationsOptions as QueryLocationsOptions, type context$6_QueryLocationsRequest as QueryLocationsRequest, type context$6_QueryLocationsResponse as QueryLocationsResponse, type context$6_QueryLocationsResponseNonNullableFields as QueryLocationsResponseNonNullableFields, type context$6_QueryPoliciesRequest as QueryPoliciesRequest, type context$6_QueryPoliciesResponse as QueryPoliciesResponse, type context$6_QueryPoliciesResponseNonNullableFields as QueryPoliciesResponseNonNullableFields, type context$6_QueryServicesMultiLanguageRequest as QueryServicesMultiLanguageRequest, type context$6_QueryServicesMultiLanguageResponse as QueryServicesMultiLanguageResponse, type context$6_QueryServicesOptions as QueryServicesOptions, type context$6_QueryServicesRequest as QueryServicesRequest, type context$6_QueryServicesResponse as QueryServicesResponse, type context$6_QueryServicesResponseNonNullableFields as QueryServicesResponseNonNullableFields, type QueryV2$2 as QueryV2, type QueryV2PagingMethodOneOf$2 as QueryV2PagingMethodOneOf, type context$6_RangeAggregation as RangeAggregation, type RangeAggregationResult$1 as RangeAggregationResult, type context$6_RangeBucket as RangeBucket, type context$6_RangeResult as RangeResult, type RangeResults$1 as RangeResults, type Rate$1 as Rate, context$6_RateType as RateType, type RecurringInterval$1 as RecurringInterval, RecurringIntervalType$1 as RecurringIntervalType, type RecurringSessionSplit$1 as RecurringSessionSplit, type RecurringSessionsUpdated$1 as RecurringSessionsUpdated, type context$6_ReindexMessage as ReindexMessage, type context$6_ReindexMessageActionOneOf as ReindexMessageActionOneOf, type context$6_RemovedLocationSessionsAction as RemovedLocationSessionsAction, type context$6_RemovedLocationSessionsActionActionOptionsOneOf as RemovedLocationSessionsActionActionOptionsOneOf, RequestedFields$1 as RequestedFields, type ReschedulePolicy$1 as ReschedulePolicy, ResolutionMethod$1 as ResolutionMethod, type Resource$1 as Resource, type context$6_ResourceGroup as ResourceGroup, type context$6_ResourceIds as ResourceIds, type context$6_ResourceNotification as ResourceNotification, context$6_ResourceNotificationEvent as ResourceNotificationEvent, context$6_ResourceStatus as ResourceStatus, type context$6_ResourceType as ResourceType, type ResourcesPolicy$1 as ResourcesPolicy, type RestoreInfo$4 as RestoreInfo, type context$6_Results as Results, type SaveCreditCardPolicy$1 as SaveCreditCardPolicy, type context$6_ScalarAggregation as ScalarAggregation, type ScalarResult$1 as ScalarResult, ScalarType$1 as ScalarType, type Schedule$1 as Schedule, type ScheduleCancelled$1 as ScheduleCancelled, type ScheduleCreated$1 as ScheduleCreated, type ScheduleNotification$1 as ScheduleNotification, type ScheduleNotificationEventOneOf$1 as ScheduleNotificationEventOneOf, ScheduleStatus$1 as ScheduleStatus, type ScheduleUnassignedFromUser$1 as ScheduleUnassignedFromUser, type ScheduleUpdated$1 as ScheduleUpdated, type ScheduleWithSessions$1 as ScheduleWithSessions, type context$6_Schema as Schema, type SearchDetails$1 as SearchDetails, type context$6_SearchServicesRequest as SearchServicesRequest, type context$6_SearchServicesResponse as SearchServicesResponse, type context$6_SearchServicesResponseNonNullableFields as SearchServicesResponseNonNullableFields, type context$6_SeoSchema as SeoSchema, type context$6_Service as Service, type context$6_ServiceAvailabilityConstraints as ServiceAvailabilityConstraints, type context$6_ServiceCreatedEnvelope as ServiceCreatedEnvelope, type context$6_ServiceDefaultBookingPolicySetEnvelope as ServiceDefaultBookingPolicySetEnvelope, type context$6_ServiceDeletedEnvelope as ServiceDeletedEnvelope, type context$6_ServiceNonNullableFields as ServiceNonNullableFields, type context$6_ServiceResource as ServiceResource, type context$6_ServiceResourceSelectionOneOf as ServiceResourceSelectionOneOf, context$6_ServiceType as ServiceType, type context$6_ServiceUpdatedEnvelope as ServiceUpdatedEnvelope, type context$6_ServicesQueryBuilder as ServicesQueryBuilder, type context$6_ServicesQueryResult as ServicesQueryResult, type context$6_ServicesUrlsChanged as ServicesUrlsChanged, type Session$1 as Session, type SessionCancelled$1 as SessionCancelled, type SessionCreated$1 as SessionCreated, SessionType$1 as SessionType, type SessionUpdated$1 as SessionUpdated, type SessionVersion$1 as SessionVersion, type context$6_SetCustomSlugEvent as SetCustomSlugEvent, type context$6_SetCustomSlugRequest as SetCustomSlugRequest, type context$6_SetCustomSlugResponse as SetCustomSlugResponse, type context$6_SetCustomSlugResponseNonNullableFields as SetCustomSlugResponseNonNullableFields, type context$6_SetServiceLocationsOptions as SetServiceLocationsOptions, type context$6_SetServiceLocationsRequest as SetServiceLocationsRequest, type context$6_SetServiceLocationsResponse as SetServiceLocationsResponse, type context$6_SetServiceLocationsResponseNonNullableFields as SetServiceLocationsResponseNonNullableFields, type context$6_Settings as Settings, type SiteCloned$1 as SiteCloned, type SiteCreated$2 as SiteCreated, type SitePropertiesEvent$1 as SitePropertiesEvent, type SitePropertiesNotification$1 as SitePropertiesNotification, type SitePropertiesOnScheduleCreation$1 as SitePropertiesOnScheduleCreation, type context$6_Slug as Slug, context$6_SortDirection as SortDirection, SortOrder$4 as SortOrder, context$6_SortType as SortType, type Sorting$4 as Sorting, type SpecialHourPeriod$2 as SpecialHourPeriod, type SplitInterval$1 as SplitInterval, type StaffData$1 as StaffData, type context$6_StaffMediaItem as StaffMediaItem, type context$6_StaffMediaItemItemOneOf as StaffMediaItemItemOneOf, type StaffMember$1 as StaffMember, type context$6_StaffMemberDetails as StaffMemberDetails, Status$2 as Status, type StreetAddress$3 as StreetAddress, type Subdivision$3 as Subdivision, type SupportedLanguage$1 as SupportedLanguage, type context$6_Tag as Tag, type TimePeriod$2 as TimePeriod, type Translation$1 as Translation, Transparency$1 as Transparency, type context$6_URLs as URLs, type context$6_UpdateService as UpdateService, type context$6_UpdateServiceRequest as UpdateServiceRequest, type context$6_UpdateServiceResponse as UpdateServiceResponse, type context$6_UpdateServiceResponseNonNullableFields as UpdateServiceResponseNonNullableFields, type context$6_Upsert as Upsert, type context$6_UserDomainInfoChangedEvent as UserDomainInfoChangedEvent, type context$6_V1BookAfterStartPolicy as V1BookAfterStartPolicy, type context$6_V1BookingPolicy as V1BookingPolicy, type context$6_V1CancellationFeePolicy as V1CancellationFeePolicy, type context$6_V1CancellationPolicy as V1CancellationPolicy, type context$6_V1LimitEarlyBookingPolicy as V1LimitEarlyBookingPolicy, type context$6_V1LimitLateBookingPolicy as V1LimitLateBookingPolicy, type context$6_V1ParticipantsPolicy as V1ParticipantsPolicy, type context$6_V1PolicyDescription as V1PolicyDescription, type context$6_V1ReschedulePolicy as V1ReschedulePolicy, type context$6_V1ResourcesPolicy as V1ResourcesPolicy, type context$6_V1SaveCreditCardPolicy as V1SaveCreditCardPolicy, type context$6_V1SplitInterval as V1SplitInterval, type context$6_V1WaitlistPolicy as V1WaitlistPolicy, type context$6_V2AvailabilityConstraints as V2AvailabilityConstraints, type context$6_V2Category as V2Category, type context$6_V2Location as V2Location, type context$6_V2LocationOptionsOneOf as V2LocationOptionsOneOf, type context$6_V2ParticipantNotification as V2ParticipantNotification, type context$6_V2Schedule as V2Schedule, type context$6_V4Address as V4Address, type context$6_ValidateSlugOptions as ValidateSlugOptions, type context$6_ValidateSlugRequest as ValidateSlugRequest, type context$6_ValidateSlugResponse as ValidateSlugResponse, type context$6_ValidateSlugResponseNonNullableFields as ValidateSlugResponseNonNullableFields, type context$6_ValueAggregation as ValueAggregation, type context$6_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type ValueAggregationResult$1 as ValueAggregationResult, type context$6_ValueResult as ValueResult, type ValueResults$1 as ValueResults, type context$6_VariedPayment as VariedPayment, type Version$1 as Version, type WaitlistPolicy$1 as WaitlistPolicy, WebhookIdentityType$5 as WebhookIdentityType, type context$6__publicOnServiceCreatedType as _publicOnServiceCreatedType, type context$6__publicOnServiceDefaultBookingPolicySetType as _publicOnServiceDefaultBookingPolicySetType, type context$6__publicOnServiceDeletedType as _publicOnServiceDeletedType, type context$6__publicOnServiceUpdatedType as _publicOnServiceUpdatedType, context$6_bulkDeleteServices as bulkDeleteServices, context$6_bulkDeleteServicesByFilter as bulkDeleteServicesByFilter, context$6_bulkUpdateServices as bulkUpdateServices, context$6_bulkUpdateServicesByFilter as bulkUpdateServicesByFilter, context$6_cloneService as cloneService, context$6_countServices as countServices, context$6_createService as createService, context$6_deleteService as deleteService, context$6_disablePricingPlansForService as disablePricingPlansForService, context$6_enablePricingPlansForService as enablePricingPlansForService, context$6_getService as getService, context$6_onServiceCreated as onServiceCreated, context$6_onServiceDefaultBookingPolicySet as onServiceDefaultBookingPolicySet, context$6_onServiceDeleted as onServiceDeleted, context$6_onServiceUpdated as onServiceUpdated, onServiceCreated$1 as publicOnServiceCreated, onServiceDefaultBookingPolicySet$1 as publicOnServiceDefaultBookingPolicySet, onServiceDeleted$1 as publicOnServiceDeleted, onServiceUpdated$1 as publicOnServiceUpdated, context$6_queryCategories as queryCategories, context$6_queryLocations as queryLocations, context$6_queryPolicies as queryPolicies, context$6_queryServices as queryServices, context$6_searchServices as searchServices, context$6_setCustomSlug as setCustomSlug, context$6_setServiceLocations as setServiceLocations, context$6_updateService as updateService, context$6_validateSlug as validateSlug };
15096
15150
  }
15097
15151
 
15098
15152
  /** StaffMember is the main entity of Bookings StaffMembers. used to manage staff providing services */
@@ -11741,13 +11741,13 @@ interface BulkUpdateServicesResponse {
11741
11741
  }
11742
11742
  interface BulkUpdateServicesByFilterRequest {
11743
11743
  /** Filter to identify the services that need to be updated. */
11744
- filter?: Record<string, any> | null;
11744
+ filter: Record<string, any> | null;
11745
11745
  /**
11746
11746
  * Service to update. [Partial
11747
11747
  * updates](https://dev.wix.com/api/rest/wix-bookings/bookings/patch-endpoints-and-field-masks-in-update-requests)
11748
11748
  * are supported.
11749
11749
  */
11750
- service?: Service;
11750
+ service: Service;
11751
11751
  }
11752
11752
  interface BulkUpdateServicesByFilterResponse {
11753
11753
  /** ID of the service update job. */
@@ -11796,7 +11796,7 @@ interface BulkDeleteServicesResponse {
11796
11796
  }
11797
11797
  interface BulkDeleteServicesByFilterRequest {
11798
11798
  /** Filter to identify the services that need to be deleted. */
11799
- filter?: Record<string, any> | null;
11799
+ filter: Record<string, any> | null;
11800
11800
  /**
11801
11801
  * Whether to preserve future sessions with participants.
11802
11802
  *
@@ -14184,10 +14184,16 @@ interface BulkUpdateServicesResponseNonNullableFields {
14184
14184
  results: BulkServiceResultNonNullableFields[];
14185
14185
  bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
14186
14186
  }
14187
+ interface BulkUpdateServicesByFilterResponseNonNullableFields {
14188
+ jobId: string;
14189
+ }
14187
14190
  interface BulkDeleteServicesResponseNonNullableFields {
14188
14191
  results: BulkServiceResultNonNullableFields[];
14189
14192
  bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
14190
14193
  }
14194
+ interface BulkDeleteServicesByFilterResponseNonNullableFields {
14195
+ jobId: string;
14196
+ }
14191
14197
  interface QueryServicesResponseNonNullableFields {
14192
14198
  services: ServiceNonNullableFields[];
14193
14199
  }
@@ -14443,6 +14449,14 @@ interface BulkUpdateServicesOptions {
14443
14449
  /** `true` if the updated entities must be included in the response, */
14444
14450
  returnEntity?: boolean;
14445
14451
  }
14452
+ interface BulkUpdateServicesByFilterOptions {
14453
+ /**
14454
+ * Service to update. [Partial
14455
+ * updates](https://dev.wix.com/api/rest/wix-bookings/bookings/patch-endpoints-and-field-masks-in-update-requests)
14456
+ * are supported.
14457
+ */
14458
+ service: Service;
14459
+ }
14446
14460
  interface DeleteServiceOptions {
14447
14461
  /**
14448
14462
  * Whether to preserve future sessions with participants.
@@ -14463,6 +14477,16 @@ interface BulkDeleteServicesOptions {
14463
14477
  /** Whether to notify participants about the change and an optional */
14464
14478
  participantNotification?: V2ParticipantNotification;
14465
14479
  }
14480
+ interface BulkDeleteServicesByFilterOptions {
14481
+ /**
14482
+ * Whether to preserve future sessions with participants.
14483
+ *
14484
+ * Default: `false`.
14485
+ */
14486
+ preserveFutureSessionsWithParticipants?: boolean;
14487
+ /** Whether to notify participants about the change and an optional custom message. */
14488
+ participantNotification?: V2ParticipantNotification;
14489
+ }
14466
14490
  interface QueryServicesOptions {
14467
14491
  }
14468
14492
  interface QueryOffsetResult {
@@ -14638,6 +14662,20 @@ interface BulkUpdateServicesSignature {
14638
14662
  */
14639
14663
  (options?: BulkUpdateServicesOptions | undefined): Promise<BulkUpdateServicesResponse & BulkUpdateServicesResponseNonNullableFields>;
14640
14664
  }
14665
+ declare function bulkUpdateServicesByFilter$1(httpClient: HttpClient): BulkUpdateServicesByFilterSignature;
14666
+ interface BulkUpdateServicesByFilterSignature {
14667
+ /**
14668
+ * Updates multiple services by filter.
14669
+ *
14670
+ * [Partial
14671
+ * updates](https://dev.wix.com/api/rest/wix-bookings/bookings/patch-endpoints-and-field-masks-in-update-requests)
14672
+ * are supported.
14673
+ *
14674
+ * Each time a service is updated, `revision` increments by 1.
14675
+ * @param - Filter to identify the services that need to be updated.
14676
+ */
14677
+ (filter: Record<string, any> | null, options: BulkUpdateServicesByFilterOptions): Promise<BulkUpdateServicesByFilterResponse & BulkUpdateServicesByFilterResponseNonNullableFields>;
14678
+ }
14641
14679
  declare function deleteService$1(httpClient: HttpClient): DeleteServiceSignature;
14642
14680
  interface DeleteServiceSignature {
14643
14681
  /**
@@ -14654,6 +14692,14 @@ interface BulkDeleteServicesSignature {
14654
14692
  */
14655
14693
  (ids: string[], options?: BulkDeleteServicesOptions | undefined): Promise<BulkDeleteServicesResponse & BulkDeleteServicesResponseNonNullableFields>;
14656
14694
  }
14695
+ declare function bulkDeleteServicesByFilter$1(httpClient: HttpClient): BulkDeleteServicesByFilterSignature;
14696
+ interface BulkDeleteServicesByFilterSignature {
14697
+ /**
14698
+ * Deletes multiple services by filter.
14699
+ * @param - Filter to identify the services that need to be deleted.
14700
+ */
14701
+ (filter: Record<string, any> | null, options?: BulkDeleteServicesByFilterOptions | undefined): Promise<BulkDeleteServicesByFilterResponse & BulkDeleteServicesByFilterResponseNonNullableFields>;
14702
+ }
14657
14703
  declare function queryServices$1(httpClient: HttpClient): QueryServicesSignature;
14658
14704
  interface QueryServicesSignature {
14659
14705
  /**
@@ -14802,8 +14848,10 @@ declare const createService: BuildRESTFunction<typeof createService$1> & typeof
14802
14848
  declare const getService: BuildRESTFunction<typeof getService$1> & typeof getService$1;
14803
14849
  declare const updateService: BuildRESTFunction<typeof updateService$1> & typeof updateService$1;
14804
14850
  declare const bulkUpdateServices: BuildRESTFunction<typeof bulkUpdateServices$1> & typeof bulkUpdateServices$1;
14851
+ declare const bulkUpdateServicesByFilter: BuildRESTFunction<typeof bulkUpdateServicesByFilter$1> & typeof bulkUpdateServicesByFilter$1;
14805
14852
  declare const deleteService: BuildRESTFunction<typeof deleteService$1> & typeof deleteService$1;
14806
14853
  declare const bulkDeleteServices: BuildRESTFunction<typeof bulkDeleteServices$1> & typeof bulkDeleteServices$1;
14854
+ declare const bulkDeleteServicesByFilter: BuildRESTFunction<typeof bulkDeleteServicesByFilter$1> & typeof bulkDeleteServicesByFilter$1;
14807
14855
  declare const queryServices: BuildRESTFunction<typeof queryServices$1> & typeof queryServices$1;
14808
14856
  declare const searchServices: BuildRESTFunction<typeof searchServices$1> & typeof searchServices$1;
14809
14857
  declare const queryPolicies: BuildRESTFunction<typeof queryPolicies$1> & typeof queryPolicies$1;
@@ -14851,15 +14899,19 @@ declare const index_d$6_BenefitType: typeof BenefitType;
14851
14899
  type index_d$6_BookingPolicyWithServices = BookingPolicyWithServices;
14852
14900
  type index_d$6_BulkCreateServicesRequest = BulkCreateServicesRequest;
14853
14901
  type index_d$6_BulkCreateServicesResponse = BulkCreateServicesResponse;
14902
+ type index_d$6_BulkDeleteServicesByFilterOptions = BulkDeleteServicesByFilterOptions;
14854
14903
  type index_d$6_BulkDeleteServicesByFilterRequest = BulkDeleteServicesByFilterRequest;
14855
14904
  type index_d$6_BulkDeleteServicesByFilterResponse = BulkDeleteServicesByFilterResponse;
14905
+ type index_d$6_BulkDeleteServicesByFilterResponseNonNullableFields = BulkDeleteServicesByFilterResponseNonNullableFields;
14856
14906
  type index_d$6_BulkDeleteServicesOptions = BulkDeleteServicesOptions;
14857
14907
  type index_d$6_BulkDeleteServicesRequest = BulkDeleteServicesRequest;
14858
14908
  type index_d$6_BulkDeleteServicesResponse = BulkDeleteServicesResponse;
14859
14909
  type index_d$6_BulkDeleteServicesResponseNonNullableFields = BulkDeleteServicesResponseNonNullableFields;
14860
14910
  type index_d$6_BulkServiceResult = BulkServiceResult;
14911
+ type index_d$6_BulkUpdateServicesByFilterOptions = BulkUpdateServicesByFilterOptions;
14861
14912
  type index_d$6_BulkUpdateServicesByFilterRequest = BulkUpdateServicesByFilterRequest;
14862
14913
  type index_d$6_BulkUpdateServicesByFilterResponse = BulkUpdateServicesByFilterResponse;
14914
+ type index_d$6_BulkUpdateServicesByFilterResponseNonNullableFields = BulkUpdateServicesByFilterResponseNonNullableFields;
14863
14915
  type index_d$6_BulkUpdateServicesOptions = BulkUpdateServicesOptions;
14864
14916
  type index_d$6_BulkUpdateServicesRequest = BulkUpdateServicesRequest;
14865
14917
  type index_d$6_BulkUpdateServicesResponse = BulkUpdateServicesResponse;
@@ -15070,7 +15122,9 @@ type index_d$6__publicOnServiceDefaultBookingPolicySetType = _publicOnServiceDef
15070
15122
  type index_d$6__publicOnServiceDeletedType = _publicOnServiceDeletedType;
15071
15123
  type index_d$6__publicOnServiceUpdatedType = _publicOnServiceUpdatedType;
15072
15124
  declare const index_d$6_bulkDeleteServices: typeof bulkDeleteServices;
15125
+ declare const index_d$6_bulkDeleteServicesByFilter: typeof bulkDeleteServicesByFilter;
15073
15126
  declare const index_d$6_bulkUpdateServices: typeof bulkUpdateServices;
15127
+ declare const index_d$6_bulkUpdateServicesByFilter: typeof bulkUpdateServicesByFilter;
15074
15128
  declare const index_d$6_cloneService: typeof cloneService;
15075
15129
  declare const index_d$6_countServices: typeof countServices;
15076
15130
  declare const index_d$6_createService: typeof createService;
@@ -15092,7 +15146,7 @@ declare const index_d$6_setServiceLocations: typeof setServiceLocations;
15092
15146
  declare const index_d$6_updateService: typeof updateService;
15093
15147
  declare const index_d$6_validateSlug: typeof validateSlug;
15094
15148
  declare namespace index_d$6 {
15095
- export { index_d$6_Action as Action, type ActionEvent$4 as ActionEvent, type Address$4 as Address, type AddressHint$1 as AddressHint, type AddressLocation$3 as AddressLocation, type AddressStreetOneOf$3 as AddressStreetOneOf, type index_d$6_Aggregation as Aggregation, type AggregationData$1 as AggregationData, type index_d$6_AggregationKindOneOf as AggregationKindOneOf, type AggregationResults$1 as AggregationResults, type AggregationResultsResultOneOf$1 as AggregationResultsResultOneOf, type index_d$6_AggregationResultsScalarResult as AggregationResultsScalarResult, AggregationType$1 as AggregationType, type ApplicationError$2 as ApplicationError, ApprovalStatus$1 as ApprovalStatus, type Availability$1 as Availability, type AvailabilityConstraints$1 as AvailabilityConstraints, type AvailabilityPolicy$1 as AvailabilityPolicy, type AvailabilityPolicyUpdated$1 as AvailabilityPolicyUpdated, type BaseEventMetadata$4 as BaseEventMetadata, type index_d$6_Behavior as Behavior, type index_d$6_BehaviorBehaviorOneOf as BehaviorBehaviorOneOf, type index_d$6_Benefit as Benefit, type index_d$6_BenefitNotification as BenefitNotification, index_d$6_BenefitType as BenefitType, type BookAfterStartPolicy$1 as BookAfterStartPolicy, type BookingPolicy$1 as BookingPolicy, type index_d$6_BookingPolicyWithServices as BookingPolicyWithServices, type BulkActionMetadata$2 as BulkActionMetadata, type index_d$6_BulkCreateServicesRequest as BulkCreateServicesRequest, type index_d$6_BulkCreateServicesResponse as BulkCreateServicesResponse, type index_d$6_BulkDeleteServicesByFilterRequest as BulkDeleteServicesByFilterRequest, type index_d$6_BulkDeleteServicesByFilterResponse as BulkDeleteServicesByFilterResponse, type index_d$6_BulkDeleteServicesOptions as BulkDeleteServicesOptions, type index_d$6_BulkDeleteServicesRequest as BulkDeleteServicesRequest, type index_d$6_BulkDeleteServicesResponse as BulkDeleteServicesResponse, type index_d$6_BulkDeleteServicesResponseNonNullableFields as BulkDeleteServicesResponseNonNullableFields, type index_d$6_BulkServiceResult as BulkServiceResult, type index_d$6_BulkUpdateServicesByFilterRequest as BulkUpdateServicesByFilterRequest, type index_d$6_BulkUpdateServicesByFilterResponse as BulkUpdateServicesByFilterResponse, type index_d$6_BulkUpdateServicesOptions as BulkUpdateServicesOptions, type index_d$6_BulkUpdateServicesRequest as BulkUpdateServicesRequest, type index_d$6_BulkUpdateServicesResponse as BulkUpdateServicesResponse, type index_d$6_BulkUpdateServicesResponseNonNullableFields as BulkUpdateServicesResponseNonNullableFields, type index_d$6_BusinessLocation as BusinessLocation, type index_d$6_BusinessLocationOptions as BusinessLocationOptions, type index_d$6_BusinessLocations as BusinessLocations, type BusinessSchedule$2 as BusinessSchedule, type CalendarConference$1 as CalendarConference, type CalendarDateTime$1 as CalendarDateTime, CalendarType$1 as CalendarType, type CancellationFeePolicy$1 as CancellationFeePolicy, type index_d$6_CancellationFeePolicyCancellationWindow as CancellationFeePolicyCancellationWindow, type index_d$6_CancellationFeePolicyCancellationWindowFeeOneOf as CancellationFeePolicyCancellationWindowFeeOneOf, type CancellationPolicy$1 as CancellationPolicy, type CancellationWindow$1 as CancellationWindow, type CancellationWindowFeeOneOf$1 as CancellationWindowFeeOneOf, type Categories$1 as Categories, type Category$1 as Category, type CategoryNotification$1 as CategoryNotification, index_d$6_CategoryNotificationEvent as CategoryNotificationEvent, index_d$6_CategoryStatus as CategoryStatus, type ChangeContext$1 as ChangeContext, type ChangeContextPayloadOneOf$1 as ChangeContextPayloadOneOf, index_d$6_CloneErrors as CloneErrors, type index_d$6_CloneServiceOptions as CloneServiceOptions, type index_d$6_CloneServiceRequest as CloneServiceRequest, type index_d$6_CloneServiceResponse as CloneServiceResponse, type index_d$6_CloneServiceResponseNonNullableFields as CloneServiceResponseNonNullableFields, type index_d$6_CommonAddress as CommonAddress, type index_d$6_CommonAddressLocation as CommonAddressLocation, type index_d$6_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type index_d$6_CommonMoney as CommonMoney, type index_d$6_CommonStreetAddress as CommonStreetAddress, type ConferenceProvider$1 as ConferenceProvider, ConferenceType$1 as ConferenceType, type index_d$6_Conferencing as Conferencing, type ConsentPolicy$1 as ConsentPolicy, type index_d$6_CountServicesOptions as CountServicesOptions, type index_d$6_CountServicesRequest as CountServicesRequest, type index_d$6_CountServicesResponse as CountServicesResponse, type index_d$6_CountServicesResponseNonNullableFields as CountServicesResponseNonNullableFields, type index_d$6_CreateServiceRequest as CreateServiceRequest, type index_d$6_CreateServiceResponse as CreateServiceResponse, type index_d$6_CreateServiceResponseNonNullableFields as CreateServiceResponseNonNullableFields, index_d$6_CrudType as CrudType, type CursorPaging$4 as CursorPaging, type CursorPagingMetadata$3 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type CursorSearch$1 as CursorSearch, type CursorSearchPagingMethodOneOf$1 as CursorSearchPagingMethodOneOf, type Cursors$4 as Cursors, type index_d$6_CustomLocationOptions as CustomLocationOptions, type index_d$6_CustomLocations as CustomLocations, type index_d$6_CustomPayment as CustomPayment, type index_d$6_CustomerLocations as CustomerLocations, type index_d$6_DateHistogramAggregation as DateHistogramAggregation, index_d$6_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type index_d$6_DateHistogramResult as DateHistogramResult, type index_d$6_DateHistogramResults as DateHistogramResults, Day$1 as Day, DayOfWeek$2 as DayOfWeek, type DefaultBookingPolicySet$1 as DefaultBookingPolicySet, type index_d$6_Delete as Delete, type index_d$6_DeleteServiceOptions as DeleteServiceOptions, type index_d$6_DeleteServiceRequest as DeleteServiceRequest, type index_d$6_DeleteServiceResponse as DeleteServiceResponse, type index_d$6_DisablePricingPlansForServiceOptions as DisablePricingPlansForServiceOptions, type index_d$6_DisablePricingPlansForServiceRequest as DisablePricingPlansForServiceRequest, type index_d$6_DisablePricingPlansForServiceResponse as DisablePricingPlansForServiceResponse, type index_d$6_DisablePricingPlansForServiceResponseNonNullableFields as DisablePricingPlansForServiceResponseNonNullableFields, type index_d$6_Discount as Discount, type index_d$6_DiscountDiscountOneOf as DiscountDiscountOneOf, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type Empty$2 as Empty, type index_d$6_EnablePricingPlansForServiceRequest as EnablePricingPlansForServiceRequest, type index_d$6_EnablePricingPlansForServiceResponse as EnablePricingPlansForServiceResponse, type index_d$6_EnablePricingPlansForServiceResponseNonNullableFields as EnablePricingPlansForServiceResponseNonNullableFields, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type index_d$6_EntryPass as EntryPass, Event$1 as Event, type EventMetadata$3 as EventMetadata, type ExtendedFields$4 as ExtendedFields, type ExternalCalendarInfo$1 as ExternalCalendarInfo, type ExternalCalendarOverrides$1 as ExternalCalendarOverrides, type index_d$6_FixedPayment as FixedPayment, type index_d$6_Form as Form, type index_d$6_FormSettings as FormSettings, type Frequency$1 as Frequency, type GeoCoordinates$1 as GeoCoordinates, type index_d$6_GetServiceAvailabilityConstraintsRequest as GetServiceAvailabilityConstraintsRequest, type index_d$6_GetServiceAvailabilityConstraintsResponse as GetServiceAvailabilityConstraintsResponse, type index_d$6_GetServiceRequest as GetServiceRequest, type index_d$6_GetServiceResponse as GetServiceResponse, type index_d$6_GetServiceResponseNonNullableFields as GetServiceResponseNonNullableFields, type index_d$6_GroupByAggregation as GroupByAggregation, type index_d$6_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type GroupByValueResults$1 as GroupByValueResults, type index_d$6_HtmlSitePublished as HtmlSitePublished, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type index_d$6_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type Interval$1 as Interval, type IntervalSplit$1 as IntervalSplit, type index_d$6_InvalidPricingPlan as InvalidPricingPlan, index_d$6_InvalidSlugError as InvalidSlugError, type ItemMetadata$2 as ItemMetadata, type index_d$6_Keyword as Keyword, type LimitEarlyBookingPolicy$1 as LimitEarlyBookingPolicy, type LimitLateBookingPolicy$1 as LimitLateBookingPolicy, type LinkedSchedule$1 as LinkedSchedule, type LocalDateTime$1 as LocalDateTime, type Locale$1 as Locale, type Location$3 as Location, LocationStatus$1 as LocationStatus, LocationType$3 as LocationType, index_d$6_LocationTypeEnumLocationType as LocationTypeEnumLocationType, type LocationsAddress$1 as LocationsAddress, type LocationsAddressLocation$1 as LocationsAddressLocation, type LocationsLocation$1 as LocationsLocation, LocationsLocationType$1 as LocationsLocationType, type LocationsStreetAddress$1 as LocationsStreetAddress, type index_d$6_MaskedService as MaskedService, type index_d$6_Media as Media, type MediaItem$1 as MediaItem, type index_d$6_MediaItemItemOneOf as MediaItemItemOneOf, type MessageEnvelope$5 as MessageEnvelope, type MigrationData$1 as MigrationData, type MigrationEvent$1 as MigrationEvent, index_d$6_MissingValues as MissingValues, Mode$1 as Mode, type Money$1 as Money, type index_d$6_MoveToNewLocationsOptions as MoveToNewLocationsOptions, type index_d$6_MultiServiceEnabledNotification as MultiServiceEnabledNotification, type Multilingual$1 as Multilingual, type MultipleSessionsCreated$1 as MultipleSessionsCreated, type index_d$6_NestedAggregation as NestedAggregation, type index_d$6_NestedAggregationItem as NestedAggregationItem, type index_d$6_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type NestedAggregationResults$1 as NestedAggregationResults, type NestedAggregationResultsResultOneOf$1 as NestedAggregationResultsResultOneOf, index_d$6_NestedAggregationType as NestedAggregationType, type index_d$6_NestedResultValue as NestedResultValue, type index_d$6_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d$6_NestedResults as NestedResults, type NestedValueAggregationResult$1 as NestedValueAggregationResult, type index_d$6_OnlineBooking as OnlineBooking, type index_d$6_Page as Page, type Paging$2 as Paging, type PagingMetadataV2$1 as PagingMetadataV2, type Participant$1 as Participant, type ParticipantNotification$4 as ParticipantNotification, type ParticipantsPolicy$1 as ParticipantsPolicy, type index_d$6_Payment as Payment, type index_d$6_PaymentOptions as PaymentOptions, type index_d$6_PaymentRateOneOf as PaymentRateOneOf, PlacementType$1 as PlacementType, type PolicyDescription$1 as PolicyDescription, type Price$1 as Price, type Properties$1 as Properties, type PropertiesChange$1 as PropertiesChange, type index_d$6_QueryCategoriesFilter as QueryCategoriesFilter, type index_d$6_QueryCategoriesOptions as QueryCategoriesOptions, type index_d$6_QueryCategoriesRequest as QueryCategoriesRequest, type index_d$6_QueryCategoriesResponse as QueryCategoriesResponse, type index_d$6_QueryCategoriesResponseNonNullableFields as QueryCategoriesResponseNonNullableFields, type index_d$6_QueryLocationsFilter as QueryLocationsFilter, type index_d$6_QueryLocationsOptions as QueryLocationsOptions, type index_d$6_QueryLocationsRequest as QueryLocationsRequest, type index_d$6_QueryLocationsResponse as QueryLocationsResponse, type index_d$6_QueryLocationsResponseNonNullableFields as QueryLocationsResponseNonNullableFields, type index_d$6_QueryPoliciesRequest as QueryPoliciesRequest, type index_d$6_QueryPoliciesResponse as QueryPoliciesResponse, type index_d$6_QueryPoliciesResponseNonNullableFields as QueryPoliciesResponseNonNullableFields, type index_d$6_QueryServicesMultiLanguageRequest as QueryServicesMultiLanguageRequest, type index_d$6_QueryServicesMultiLanguageResponse as QueryServicesMultiLanguageResponse, type index_d$6_QueryServicesOptions as QueryServicesOptions, type index_d$6_QueryServicesRequest as QueryServicesRequest, type index_d$6_QueryServicesResponse as QueryServicesResponse, type index_d$6_QueryServicesResponseNonNullableFields as QueryServicesResponseNonNullableFields, type QueryV2$2 as QueryV2, type QueryV2PagingMethodOneOf$2 as QueryV2PagingMethodOneOf, type index_d$6_RangeAggregation as RangeAggregation, type RangeAggregationResult$1 as RangeAggregationResult, type index_d$6_RangeBucket as RangeBucket, type index_d$6_RangeResult as RangeResult, type RangeResults$1 as RangeResults, type Rate$1 as Rate, index_d$6_RateType as RateType, type RecurringInterval$1 as RecurringInterval, RecurringIntervalType$1 as RecurringIntervalType, type RecurringSessionSplit$1 as RecurringSessionSplit, type RecurringSessionsUpdated$1 as RecurringSessionsUpdated, type index_d$6_ReindexMessage as ReindexMessage, type index_d$6_ReindexMessageActionOneOf as ReindexMessageActionOneOf, type index_d$6_RemovedLocationSessionsAction as RemovedLocationSessionsAction, type index_d$6_RemovedLocationSessionsActionActionOptionsOneOf as RemovedLocationSessionsActionActionOptionsOneOf, RequestedFields$1 as RequestedFields, type ReschedulePolicy$1 as ReschedulePolicy, ResolutionMethod$1 as ResolutionMethod, type Resource$1 as Resource, type index_d$6_ResourceGroup as ResourceGroup, type index_d$6_ResourceIds as ResourceIds, type index_d$6_ResourceNotification as ResourceNotification, index_d$6_ResourceNotificationEvent as ResourceNotificationEvent, index_d$6_ResourceStatus as ResourceStatus, type index_d$6_ResourceType as ResourceType, type ResourcesPolicy$1 as ResourcesPolicy, type RestoreInfo$4 as RestoreInfo, type index_d$6_Results as Results, type SaveCreditCardPolicy$1 as SaveCreditCardPolicy, type index_d$6_ScalarAggregation as ScalarAggregation, type ScalarResult$1 as ScalarResult, ScalarType$1 as ScalarType, type Schedule$1 as Schedule, type ScheduleCancelled$1 as ScheduleCancelled, type ScheduleCreated$1 as ScheduleCreated, type ScheduleNotification$1 as ScheduleNotification, type ScheduleNotificationEventOneOf$1 as ScheduleNotificationEventOneOf, ScheduleStatus$1 as ScheduleStatus, type ScheduleUnassignedFromUser$1 as ScheduleUnassignedFromUser, type ScheduleUpdated$1 as ScheduleUpdated, type ScheduleWithSessions$1 as ScheduleWithSessions, type index_d$6_Schema as Schema, type SearchDetails$1 as SearchDetails, type index_d$6_SearchServicesRequest as SearchServicesRequest, type index_d$6_SearchServicesResponse as SearchServicesResponse, type index_d$6_SearchServicesResponseNonNullableFields as SearchServicesResponseNonNullableFields, type index_d$6_SeoSchema as SeoSchema, type index_d$6_Service as Service, type index_d$6_ServiceAvailabilityConstraints as ServiceAvailabilityConstraints, type index_d$6_ServiceCreatedEnvelope as ServiceCreatedEnvelope, type index_d$6_ServiceDefaultBookingPolicySetEnvelope as ServiceDefaultBookingPolicySetEnvelope, type index_d$6_ServiceDeletedEnvelope as ServiceDeletedEnvelope, type index_d$6_ServiceNonNullableFields as ServiceNonNullableFields, type index_d$6_ServiceResource as ServiceResource, type index_d$6_ServiceResourceSelectionOneOf as ServiceResourceSelectionOneOf, index_d$6_ServiceType as ServiceType, type index_d$6_ServiceUpdatedEnvelope as ServiceUpdatedEnvelope, type index_d$6_ServicesQueryBuilder as ServicesQueryBuilder, type index_d$6_ServicesQueryResult as ServicesQueryResult, type index_d$6_ServicesUrlsChanged as ServicesUrlsChanged, type Session$1 as Session, type SessionCancelled$1 as SessionCancelled, type SessionCreated$1 as SessionCreated, SessionType$1 as SessionType, type SessionUpdated$1 as SessionUpdated, type SessionVersion$1 as SessionVersion, type index_d$6_SetCustomSlugEvent as SetCustomSlugEvent, type index_d$6_SetCustomSlugRequest as SetCustomSlugRequest, type index_d$6_SetCustomSlugResponse as SetCustomSlugResponse, type index_d$6_SetCustomSlugResponseNonNullableFields as SetCustomSlugResponseNonNullableFields, type index_d$6_SetServiceLocationsOptions as SetServiceLocationsOptions, type index_d$6_SetServiceLocationsRequest as SetServiceLocationsRequest, type index_d$6_SetServiceLocationsResponse as SetServiceLocationsResponse, type index_d$6_SetServiceLocationsResponseNonNullableFields as SetServiceLocationsResponseNonNullableFields, type index_d$6_Settings as Settings, type SiteCloned$1 as SiteCloned, type SiteCreated$2 as SiteCreated, type SitePropertiesEvent$1 as SitePropertiesEvent, type SitePropertiesNotification$1 as SitePropertiesNotification, type SitePropertiesOnScheduleCreation$1 as SitePropertiesOnScheduleCreation, type index_d$6_Slug as Slug, index_d$6_SortDirection as SortDirection, SortOrder$4 as SortOrder, index_d$6_SortType as SortType, type Sorting$4 as Sorting, type SpecialHourPeriod$2 as SpecialHourPeriod, type SplitInterval$1 as SplitInterval, type StaffData$1 as StaffData, type index_d$6_StaffMediaItem as StaffMediaItem, type index_d$6_StaffMediaItemItemOneOf as StaffMediaItemItemOneOf, type StaffMember$1 as StaffMember, type index_d$6_StaffMemberDetails as StaffMemberDetails, Status$2 as Status, type StreetAddress$3 as StreetAddress, type Subdivision$3 as Subdivision, type SupportedLanguage$1 as SupportedLanguage, type index_d$6_Tag as Tag, type TimePeriod$2 as TimePeriod, type Translation$1 as Translation, Transparency$1 as Transparency, type index_d$6_URLs as URLs, type index_d$6_UpdateService as UpdateService, type index_d$6_UpdateServiceRequest as UpdateServiceRequest, type index_d$6_UpdateServiceResponse as UpdateServiceResponse, type index_d$6_UpdateServiceResponseNonNullableFields as UpdateServiceResponseNonNullableFields, type index_d$6_Upsert as Upsert, type index_d$6_UserDomainInfoChangedEvent as UserDomainInfoChangedEvent, type index_d$6_V1BookAfterStartPolicy as V1BookAfterStartPolicy, type index_d$6_V1BookingPolicy as V1BookingPolicy, type index_d$6_V1CancellationFeePolicy as V1CancellationFeePolicy, type index_d$6_V1CancellationPolicy as V1CancellationPolicy, type index_d$6_V1LimitEarlyBookingPolicy as V1LimitEarlyBookingPolicy, type index_d$6_V1LimitLateBookingPolicy as V1LimitLateBookingPolicy, type index_d$6_V1ParticipantsPolicy as V1ParticipantsPolicy, type index_d$6_V1PolicyDescription as V1PolicyDescription, type index_d$6_V1ReschedulePolicy as V1ReschedulePolicy, type index_d$6_V1ResourcesPolicy as V1ResourcesPolicy, type index_d$6_V1SaveCreditCardPolicy as V1SaveCreditCardPolicy, type index_d$6_V1SplitInterval as V1SplitInterval, type index_d$6_V1WaitlistPolicy as V1WaitlistPolicy, type index_d$6_V2AvailabilityConstraints as V2AvailabilityConstraints, type index_d$6_V2Category as V2Category, type index_d$6_V2Location as V2Location, type index_d$6_V2LocationOptionsOneOf as V2LocationOptionsOneOf, type index_d$6_V2ParticipantNotification as V2ParticipantNotification, type index_d$6_V2Schedule as V2Schedule, type index_d$6_V4Address as V4Address, type index_d$6_ValidateSlugOptions as ValidateSlugOptions, type index_d$6_ValidateSlugRequest as ValidateSlugRequest, type index_d$6_ValidateSlugResponse as ValidateSlugResponse, type index_d$6_ValidateSlugResponseNonNullableFields as ValidateSlugResponseNonNullableFields, type index_d$6_ValueAggregation as ValueAggregation, type index_d$6_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type ValueAggregationResult$1 as ValueAggregationResult, type index_d$6_ValueResult as ValueResult, type ValueResults$1 as ValueResults, type index_d$6_VariedPayment as VariedPayment, type Version$1 as Version, type WaitlistPolicy$1 as WaitlistPolicy, WebhookIdentityType$5 as WebhookIdentityType, type index_d$6__publicOnServiceCreatedType as _publicOnServiceCreatedType, type index_d$6__publicOnServiceDefaultBookingPolicySetType as _publicOnServiceDefaultBookingPolicySetType, type index_d$6__publicOnServiceDeletedType as _publicOnServiceDeletedType, type index_d$6__publicOnServiceUpdatedType as _publicOnServiceUpdatedType, index_d$6_bulkDeleteServices as bulkDeleteServices, index_d$6_bulkUpdateServices as bulkUpdateServices, index_d$6_cloneService as cloneService, index_d$6_countServices as countServices, index_d$6_createService as createService, index_d$6_deleteService as deleteService, index_d$6_disablePricingPlansForService as disablePricingPlansForService, index_d$6_enablePricingPlansForService as enablePricingPlansForService, index_d$6_getService as getService, index_d$6_onServiceCreated as onServiceCreated, index_d$6_onServiceDefaultBookingPolicySet as onServiceDefaultBookingPolicySet, index_d$6_onServiceDeleted as onServiceDeleted, index_d$6_onServiceUpdated as onServiceUpdated, onServiceCreated$1 as publicOnServiceCreated, onServiceDefaultBookingPolicySet$1 as publicOnServiceDefaultBookingPolicySet, onServiceDeleted$1 as publicOnServiceDeleted, onServiceUpdated$1 as publicOnServiceUpdated, index_d$6_queryCategories as queryCategories, index_d$6_queryLocations as queryLocations, index_d$6_queryPolicies as queryPolicies, index_d$6_queryServices as queryServices, index_d$6_searchServices as searchServices, index_d$6_setCustomSlug as setCustomSlug, index_d$6_setServiceLocations as setServiceLocations, index_d$6_updateService as updateService, index_d$6_validateSlug as validateSlug };
15149
+ export { index_d$6_Action as Action, type ActionEvent$4 as ActionEvent, type Address$4 as Address, type AddressHint$1 as AddressHint, type AddressLocation$3 as AddressLocation, type AddressStreetOneOf$3 as AddressStreetOneOf, type index_d$6_Aggregation as Aggregation, type AggregationData$1 as AggregationData, type index_d$6_AggregationKindOneOf as AggregationKindOneOf, type AggregationResults$1 as AggregationResults, type AggregationResultsResultOneOf$1 as AggregationResultsResultOneOf, type index_d$6_AggregationResultsScalarResult as AggregationResultsScalarResult, AggregationType$1 as AggregationType, type ApplicationError$2 as ApplicationError, ApprovalStatus$1 as ApprovalStatus, type Availability$1 as Availability, type AvailabilityConstraints$1 as AvailabilityConstraints, type AvailabilityPolicy$1 as AvailabilityPolicy, type AvailabilityPolicyUpdated$1 as AvailabilityPolicyUpdated, type BaseEventMetadata$4 as BaseEventMetadata, type index_d$6_Behavior as Behavior, type index_d$6_BehaviorBehaviorOneOf as BehaviorBehaviorOneOf, type index_d$6_Benefit as Benefit, type index_d$6_BenefitNotification as BenefitNotification, index_d$6_BenefitType as BenefitType, type BookAfterStartPolicy$1 as BookAfterStartPolicy, type BookingPolicy$1 as BookingPolicy, type index_d$6_BookingPolicyWithServices as BookingPolicyWithServices, type BulkActionMetadata$2 as BulkActionMetadata, type index_d$6_BulkCreateServicesRequest as BulkCreateServicesRequest, type index_d$6_BulkCreateServicesResponse as BulkCreateServicesResponse, type index_d$6_BulkDeleteServicesByFilterOptions as BulkDeleteServicesByFilterOptions, type index_d$6_BulkDeleteServicesByFilterRequest as BulkDeleteServicesByFilterRequest, type index_d$6_BulkDeleteServicesByFilterResponse as BulkDeleteServicesByFilterResponse, type index_d$6_BulkDeleteServicesByFilterResponseNonNullableFields as BulkDeleteServicesByFilterResponseNonNullableFields, type index_d$6_BulkDeleteServicesOptions as BulkDeleteServicesOptions, type index_d$6_BulkDeleteServicesRequest as BulkDeleteServicesRequest, type index_d$6_BulkDeleteServicesResponse as BulkDeleteServicesResponse, type index_d$6_BulkDeleteServicesResponseNonNullableFields as BulkDeleteServicesResponseNonNullableFields, type index_d$6_BulkServiceResult as BulkServiceResult, type index_d$6_BulkUpdateServicesByFilterOptions as BulkUpdateServicesByFilterOptions, type index_d$6_BulkUpdateServicesByFilterRequest as BulkUpdateServicesByFilterRequest, type index_d$6_BulkUpdateServicesByFilterResponse as BulkUpdateServicesByFilterResponse, type index_d$6_BulkUpdateServicesByFilterResponseNonNullableFields as BulkUpdateServicesByFilterResponseNonNullableFields, type index_d$6_BulkUpdateServicesOptions as BulkUpdateServicesOptions, type index_d$6_BulkUpdateServicesRequest as BulkUpdateServicesRequest, type index_d$6_BulkUpdateServicesResponse as BulkUpdateServicesResponse, type index_d$6_BulkUpdateServicesResponseNonNullableFields as BulkUpdateServicesResponseNonNullableFields, type index_d$6_BusinessLocation as BusinessLocation, type index_d$6_BusinessLocationOptions as BusinessLocationOptions, type index_d$6_BusinessLocations as BusinessLocations, type BusinessSchedule$2 as BusinessSchedule, type CalendarConference$1 as CalendarConference, type CalendarDateTime$1 as CalendarDateTime, CalendarType$1 as CalendarType, type CancellationFeePolicy$1 as CancellationFeePolicy, type index_d$6_CancellationFeePolicyCancellationWindow as CancellationFeePolicyCancellationWindow, type index_d$6_CancellationFeePolicyCancellationWindowFeeOneOf as CancellationFeePolicyCancellationWindowFeeOneOf, type CancellationPolicy$1 as CancellationPolicy, type CancellationWindow$1 as CancellationWindow, type CancellationWindowFeeOneOf$1 as CancellationWindowFeeOneOf, type Categories$1 as Categories, type Category$1 as Category, type CategoryNotification$1 as CategoryNotification, index_d$6_CategoryNotificationEvent as CategoryNotificationEvent, index_d$6_CategoryStatus as CategoryStatus, type ChangeContext$1 as ChangeContext, type ChangeContextPayloadOneOf$1 as ChangeContextPayloadOneOf, index_d$6_CloneErrors as CloneErrors, type index_d$6_CloneServiceOptions as CloneServiceOptions, type index_d$6_CloneServiceRequest as CloneServiceRequest, type index_d$6_CloneServiceResponse as CloneServiceResponse, type index_d$6_CloneServiceResponseNonNullableFields as CloneServiceResponseNonNullableFields, type index_d$6_CommonAddress as CommonAddress, type index_d$6_CommonAddressLocation as CommonAddressLocation, type index_d$6_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type index_d$6_CommonMoney as CommonMoney, type index_d$6_CommonStreetAddress as CommonStreetAddress, type ConferenceProvider$1 as ConferenceProvider, ConferenceType$1 as ConferenceType, type index_d$6_Conferencing as Conferencing, type ConsentPolicy$1 as ConsentPolicy, type index_d$6_CountServicesOptions as CountServicesOptions, type index_d$6_CountServicesRequest as CountServicesRequest, type index_d$6_CountServicesResponse as CountServicesResponse, type index_d$6_CountServicesResponseNonNullableFields as CountServicesResponseNonNullableFields, type index_d$6_CreateServiceRequest as CreateServiceRequest, type index_d$6_CreateServiceResponse as CreateServiceResponse, type index_d$6_CreateServiceResponseNonNullableFields as CreateServiceResponseNonNullableFields, index_d$6_CrudType as CrudType, type CursorPaging$4 as CursorPaging, type CursorPagingMetadata$3 as CursorPagingMetadata, type CursorQuery$2 as CursorQuery, type CursorQueryPagingMethodOneOf$2 as CursorQueryPagingMethodOneOf, type CursorSearch$1 as CursorSearch, type CursorSearchPagingMethodOneOf$1 as CursorSearchPagingMethodOneOf, type Cursors$4 as Cursors, type index_d$6_CustomLocationOptions as CustomLocationOptions, type index_d$6_CustomLocations as CustomLocations, type index_d$6_CustomPayment as CustomPayment, type index_d$6_CustomerLocations as CustomerLocations, type index_d$6_DateHistogramAggregation as DateHistogramAggregation, index_d$6_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type index_d$6_DateHistogramResult as DateHistogramResult, type index_d$6_DateHistogramResults as DateHistogramResults, Day$1 as Day, DayOfWeek$2 as DayOfWeek, type DefaultBookingPolicySet$1 as DefaultBookingPolicySet, type index_d$6_Delete as Delete, type index_d$6_DeleteServiceOptions as DeleteServiceOptions, type index_d$6_DeleteServiceRequest as DeleteServiceRequest, type index_d$6_DeleteServiceResponse as DeleteServiceResponse, type index_d$6_DisablePricingPlansForServiceOptions as DisablePricingPlansForServiceOptions, type index_d$6_DisablePricingPlansForServiceRequest as DisablePricingPlansForServiceRequest, type index_d$6_DisablePricingPlansForServiceResponse as DisablePricingPlansForServiceResponse, type index_d$6_DisablePricingPlansForServiceResponseNonNullableFields as DisablePricingPlansForServiceResponseNonNullableFields, type index_d$6_Discount as Discount, type index_d$6_DiscountDiscountOneOf as DiscountDiscountOneOf, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type Empty$2 as Empty, type index_d$6_EnablePricingPlansForServiceRequest as EnablePricingPlansForServiceRequest, type index_d$6_EnablePricingPlansForServiceResponse as EnablePricingPlansForServiceResponse, type index_d$6_EnablePricingPlansForServiceResponseNonNullableFields as EnablePricingPlansForServiceResponseNonNullableFields, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type index_d$6_EntryPass as EntryPass, Event$1 as Event, type EventMetadata$3 as EventMetadata, type ExtendedFields$4 as ExtendedFields, type ExternalCalendarInfo$1 as ExternalCalendarInfo, type ExternalCalendarOverrides$1 as ExternalCalendarOverrides, type index_d$6_FixedPayment as FixedPayment, type index_d$6_Form as Form, type index_d$6_FormSettings as FormSettings, type Frequency$1 as Frequency, type GeoCoordinates$1 as GeoCoordinates, type index_d$6_GetServiceAvailabilityConstraintsRequest as GetServiceAvailabilityConstraintsRequest, type index_d$6_GetServiceAvailabilityConstraintsResponse as GetServiceAvailabilityConstraintsResponse, type index_d$6_GetServiceRequest as GetServiceRequest, type index_d$6_GetServiceResponse as GetServiceResponse, type index_d$6_GetServiceResponseNonNullableFields as GetServiceResponseNonNullableFields, type index_d$6_GroupByAggregation as GroupByAggregation, type index_d$6_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type GroupByValueResults$1 as GroupByValueResults, type index_d$6_HtmlSitePublished as HtmlSitePublished, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type index_d$6_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type Interval$1 as Interval, type IntervalSplit$1 as IntervalSplit, type index_d$6_InvalidPricingPlan as InvalidPricingPlan, index_d$6_InvalidSlugError as InvalidSlugError, type ItemMetadata$2 as ItemMetadata, type index_d$6_Keyword as Keyword, type LimitEarlyBookingPolicy$1 as LimitEarlyBookingPolicy, type LimitLateBookingPolicy$1 as LimitLateBookingPolicy, type LinkedSchedule$1 as LinkedSchedule, type LocalDateTime$1 as LocalDateTime, type Locale$1 as Locale, type Location$3 as Location, LocationStatus$1 as LocationStatus, LocationType$3 as LocationType, index_d$6_LocationTypeEnumLocationType as LocationTypeEnumLocationType, type LocationsAddress$1 as LocationsAddress, type LocationsAddressLocation$1 as LocationsAddressLocation, type LocationsLocation$1 as LocationsLocation, LocationsLocationType$1 as LocationsLocationType, type LocationsStreetAddress$1 as LocationsStreetAddress, type index_d$6_MaskedService as MaskedService, type index_d$6_Media as Media, type MediaItem$1 as MediaItem, type index_d$6_MediaItemItemOneOf as MediaItemItemOneOf, type MessageEnvelope$5 as MessageEnvelope, type MigrationData$1 as MigrationData, type MigrationEvent$1 as MigrationEvent, index_d$6_MissingValues as MissingValues, Mode$1 as Mode, type Money$1 as Money, type index_d$6_MoveToNewLocationsOptions as MoveToNewLocationsOptions, type index_d$6_MultiServiceEnabledNotification as MultiServiceEnabledNotification, type Multilingual$1 as Multilingual, type MultipleSessionsCreated$1 as MultipleSessionsCreated, type index_d$6_NestedAggregation as NestedAggregation, type index_d$6_NestedAggregationItem as NestedAggregationItem, type index_d$6_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type NestedAggregationResults$1 as NestedAggregationResults, type NestedAggregationResultsResultOneOf$1 as NestedAggregationResultsResultOneOf, index_d$6_NestedAggregationType as NestedAggregationType, type index_d$6_NestedResultValue as NestedResultValue, type index_d$6_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d$6_NestedResults as NestedResults, type NestedValueAggregationResult$1 as NestedValueAggregationResult, type index_d$6_OnlineBooking as OnlineBooking, type index_d$6_Page as Page, type Paging$2 as Paging, type PagingMetadataV2$1 as PagingMetadataV2, type Participant$1 as Participant, type ParticipantNotification$4 as ParticipantNotification, type ParticipantsPolicy$1 as ParticipantsPolicy, type index_d$6_Payment as Payment, type index_d$6_PaymentOptions as PaymentOptions, type index_d$6_PaymentRateOneOf as PaymentRateOneOf, PlacementType$1 as PlacementType, type PolicyDescription$1 as PolicyDescription, type Price$1 as Price, type Properties$1 as Properties, type PropertiesChange$1 as PropertiesChange, type index_d$6_QueryCategoriesFilter as QueryCategoriesFilter, type index_d$6_QueryCategoriesOptions as QueryCategoriesOptions, type index_d$6_QueryCategoriesRequest as QueryCategoriesRequest, type index_d$6_QueryCategoriesResponse as QueryCategoriesResponse, type index_d$6_QueryCategoriesResponseNonNullableFields as QueryCategoriesResponseNonNullableFields, type index_d$6_QueryLocationsFilter as QueryLocationsFilter, type index_d$6_QueryLocationsOptions as QueryLocationsOptions, type index_d$6_QueryLocationsRequest as QueryLocationsRequest, type index_d$6_QueryLocationsResponse as QueryLocationsResponse, type index_d$6_QueryLocationsResponseNonNullableFields as QueryLocationsResponseNonNullableFields, type index_d$6_QueryPoliciesRequest as QueryPoliciesRequest, type index_d$6_QueryPoliciesResponse as QueryPoliciesResponse, type index_d$6_QueryPoliciesResponseNonNullableFields as QueryPoliciesResponseNonNullableFields, type index_d$6_QueryServicesMultiLanguageRequest as QueryServicesMultiLanguageRequest, type index_d$6_QueryServicesMultiLanguageResponse as QueryServicesMultiLanguageResponse, type index_d$6_QueryServicesOptions as QueryServicesOptions, type index_d$6_QueryServicesRequest as QueryServicesRequest, type index_d$6_QueryServicesResponse as QueryServicesResponse, type index_d$6_QueryServicesResponseNonNullableFields as QueryServicesResponseNonNullableFields, type QueryV2$2 as QueryV2, type QueryV2PagingMethodOneOf$2 as QueryV2PagingMethodOneOf, type index_d$6_RangeAggregation as RangeAggregation, type RangeAggregationResult$1 as RangeAggregationResult, type index_d$6_RangeBucket as RangeBucket, type index_d$6_RangeResult as RangeResult, type RangeResults$1 as RangeResults, type Rate$1 as Rate, index_d$6_RateType as RateType, type RecurringInterval$1 as RecurringInterval, RecurringIntervalType$1 as RecurringIntervalType, type RecurringSessionSplit$1 as RecurringSessionSplit, type RecurringSessionsUpdated$1 as RecurringSessionsUpdated, type index_d$6_ReindexMessage as ReindexMessage, type index_d$6_ReindexMessageActionOneOf as ReindexMessageActionOneOf, type index_d$6_RemovedLocationSessionsAction as RemovedLocationSessionsAction, type index_d$6_RemovedLocationSessionsActionActionOptionsOneOf as RemovedLocationSessionsActionActionOptionsOneOf, RequestedFields$1 as RequestedFields, type ReschedulePolicy$1 as ReschedulePolicy, ResolutionMethod$1 as ResolutionMethod, type Resource$1 as Resource, type index_d$6_ResourceGroup as ResourceGroup, type index_d$6_ResourceIds as ResourceIds, type index_d$6_ResourceNotification as ResourceNotification, index_d$6_ResourceNotificationEvent as ResourceNotificationEvent, index_d$6_ResourceStatus as ResourceStatus, type index_d$6_ResourceType as ResourceType, type ResourcesPolicy$1 as ResourcesPolicy, type RestoreInfo$4 as RestoreInfo, type index_d$6_Results as Results, type SaveCreditCardPolicy$1 as SaveCreditCardPolicy, type index_d$6_ScalarAggregation as ScalarAggregation, type ScalarResult$1 as ScalarResult, ScalarType$1 as ScalarType, type Schedule$1 as Schedule, type ScheduleCancelled$1 as ScheduleCancelled, type ScheduleCreated$1 as ScheduleCreated, type ScheduleNotification$1 as ScheduleNotification, type ScheduleNotificationEventOneOf$1 as ScheduleNotificationEventOneOf, ScheduleStatus$1 as ScheduleStatus, type ScheduleUnassignedFromUser$1 as ScheduleUnassignedFromUser, type ScheduleUpdated$1 as ScheduleUpdated, type ScheduleWithSessions$1 as ScheduleWithSessions, type index_d$6_Schema as Schema, type SearchDetails$1 as SearchDetails, type index_d$6_SearchServicesRequest as SearchServicesRequest, type index_d$6_SearchServicesResponse as SearchServicesResponse, type index_d$6_SearchServicesResponseNonNullableFields as SearchServicesResponseNonNullableFields, type index_d$6_SeoSchema as SeoSchema, type index_d$6_Service as Service, type index_d$6_ServiceAvailabilityConstraints as ServiceAvailabilityConstraints, type index_d$6_ServiceCreatedEnvelope as ServiceCreatedEnvelope, type index_d$6_ServiceDefaultBookingPolicySetEnvelope as ServiceDefaultBookingPolicySetEnvelope, type index_d$6_ServiceDeletedEnvelope as ServiceDeletedEnvelope, type index_d$6_ServiceNonNullableFields as ServiceNonNullableFields, type index_d$6_ServiceResource as ServiceResource, type index_d$6_ServiceResourceSelectionOneOf as ServiceResourceSelectionOneOf, index_d$6_ServiceType as ServiceType, type index_d$6_ServiceUpdatedEnvelope as ServiceUpdatedEnvelope, type index_d$6_ServicesQueryBuilder as ServicesQueryBuilder, type index_d$6_ServicesQueryResult as ServicesQueryResult, type index_d$6_ServicesUrlsChanged as ServicesUrlsChanged, type Session$1 as Session, type SessionCancelled$1 as SessionCancelled, type SessionCreated$1 as SessionCreated, SessionType$1 as SessionType, type SessionUpdated$1 as SessionUpdated, type SessionVersion$1 as SessionVersion, type index_d$6_SetCustomSlugEvent as SetCustomSlugEvent, type index_d$6_SetCustomSlugRequest as SetCustomSlugRequest, type index_d$6_SetCustomSlugResponse as SetCustomSlugResponse, type index_d$6_SetCustomSlugResponseNonNullableFields as SetCustomSlugResponseNonNullableFields, type index_d$6_SetServiceLocationsOptions as SetServiceLocationsOptions, type index_d$6_SetServiceLocationsRequest as SetServiceLocationsRequest, type index_d$6_SetServiceLocationsResponse as SetServiceLocationsResponse, type index_d$6_SetServiceLocationsResponseNonNullableFields as SetServiceLocationsResponseNonNullableFields, type index_d$6_Settings as Settings, type SiteCloned$1 as SiteCloned, type SiteCreated$2 as SiteCreated, type SitePropertiesEvent$1 as SitePropertiesEvent, type SitePropertiesNotification$1 as SitePropertiesNotification, type SitePropertiesOnScheduleCreation$1 as SitePropertiesOnScheduleCreation, type index_d$6_Slug as Slug, index_d$6_SortDirection as SortDirection, SortOrder$4 as SortOrder, index_d$6_SortType as SortType, type Sorting$4 as Sorting, type SpecialHourPeriod$2 as SpecialHourPeriod, type SplitInterval$1 as SplitInterval, type StaffData$1 as StaffData, type index_d$6_StaffMediaItem as StaffMediaItem, type index_d$6_StaffMediaItemItemOneOf as StaffMediaItemItemOneOf, type StaffMember$1 as StaffMember, type index_d$6_StaffMemberDetails as StaffMemberDetails, Status$2 as Status, type StreetAddress$3 as StreetAddress, type Subdivision$3 as Subdivision, type SupportedLanguage$1 as SupportedLanguage, type index_d$6_Tag as Tag, type TimePeriod$2 as TimePeriod, type Translation$1 as Translation, Transparency$1 as Transparency, type index_d$6_URLs as URLs, type index_d$6_UpdateService as UpdateService, type index_d$6_UpdateServiceRequest as UpdateServiceRequest, type index_d$6_UpdateServiceResponse as UpdateServiceResponse, type index_d$6_UpdateServiceResponseNonNullableFields as UpdateServiceResponseNonNullableFields, type index_d$6_Upsert as Upsert, type index_d$6_UserDomainInfoChangedEvent as UserDomainInfoChangedEvent, type index_d$6_V1BookAfterStartPolicy as V1BookAfterStartPolicy, type index_d$6_V1BookingPolicy as V1BookingPolicy, type index_d$6_V1CancellationFeePolicy as V1CancellationFeePolicy, type index_d$6_V1CancellationPolicy as V1CancellationPolicy, type index_d$6_V1LimitEarlyBookingPolicy as V1LimitEarlyBookingPolicy, type index_d$6_V1LimitLateBookingPolicy as V1LimitLateBookingPolicy, type index_d$6_V1ParticipantsPolicy as V1ParticipantsPolicy, type index_d$6_V1PolicyDescription as V1PolicyDescription, type index_d$6_V1ReschedulePolicy as V1ReschedulePolicy, type index_d$6_V1ResourcesPolicy as V1ResourcesPolicy, type index_d$6_V1SaveCreditCardPolicy as V1SaveCreditCardPolicy, type index_d$6_V1SplitInterval as V1SplitInterval, type index_d$6_V1WaitlistPolicy as V1WaitlistPolicy, type index_d$6_V2AvailabilityConstraints as V2AvailabilityConstraints, type index_d$6_V2Category as V2Category, type index_d$6_V2Location as V2Location, type index_d$6_V2LocationOptionsOneOf as V2LocationOptionsOneOf, type index_d$6_V2ParticipantNotification as V2ParticipantNotification, type index_d$6_V2Schedule as V2Schedule, type index_d$6_V4Address as V4Address, type index_d$6_ValidateSlugOptions as ValidateSlugOptions, type index_d$6_ValidateSlugRequest as ValidateSlugRequest, type index_d$6_ValidateSlugResponse as ValidateSlugResponse, type index_d$6_ValidateSlugResponseNonNullableFields as ValidateSlugResponseNonNullableFields, type index_d$6_ValueAggregation as ValueAggregation, type index_d$6_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type ValueAggregationResult$1 as ValueAggregationResult, type index_d$6_ValueResult as ValueResult, type ValueResults$1 as ValueResults, type index_d$6_VariedPayment as VariedPayment, type Version$1 as Version, type WaitlistPolicy$1 as WaitlistPolicy, WebhookIdentityType$5 as WebhookIdentityType, type index_d$6__publicOnServiceCreatedType as _publicOnServiceCreatedType, type index_d$6__publicOnServiceDefaultBookingPolicySetType as _publicOnServiceDefaultBookingPolicySetType, type index_d$6__publicOnServiceDeletedType as _publicOnServiceDeletedType, type index_d$6__publicOnServiceUpdatedType as _publicOnServiceUpdatedType, index_d$6_bulkDeleteServices as bulkDeleteServices, index_d$6_bulkDeleteServicesByFilter as bulkDeleteServicesByFilter, index_d$6_bulkUpdateServices as bulkUpdateServices, index_d$6_bulkUpdateServicesByFilter as bulkUpdateServicesByFilter, index_d$6_cloneService as cloneService, index_d$6_countServices as countServices, index_d$6_createService as createService, index_d$6_deleteService as deleteService, index_d$6_disablePricingPlansForService as disablePricingPlansForService, index_d$6_enablePricingPlansForService as enablePricingPlansForService, index_d$6_getService as getService, index_d$6_onServiceCreated as onServiceCreated, index_d$6_onServiceDefaultBookingPolicySet as onServiceDefaultBookingPolicySet, index_d$6_onServiceDeleted as onServiceDeleted, index_d$6_onServiceUpdated as onServiceUpdated, onServiceCreated$1 as publicOnServiceCreated, onServiceDefaultBookingPolicySet$1 as publicOnServiceDefaultBookingPolicySet, onServiceDeleted$1 as publicOnServiceDeleted, onServiceUpdated$1 as publicOnServiceUpdated, index_d$6_queryCategories as queryCategories, index_d$6_queryLocations as queryLocations, index_d$6_queryPolicies as queryPolicies, index_d$6_queryServices as queryServices, index_d$6_searchServices as searchServices, index_d$6_setCustomSlug as setCustomSlug, index_d$6_setServiceLocations as setServiceLocations, index_d$6_updateService as updateService, index_d$6_validateSlug as validateSlug };
15096
15150
  }
15097
15151
 
15098
15152
  /** StaffMember is the main entity of Bookings StaffMembers. used to manage staff providing services */
@@ -8778,6 +8778,20 @@ interface BulkUpdateServicesResponse$1 {
8778
8778
  /** Update statistics. */
8779
8779
  bulkActionMetadata?: BulkActionMetadata$3;
8780
8780
  }
8781
+ interface BulkUpdateServicesByFilterRequest$1 {
8782
+ /** Filter to identify the services that need to be updated. */
8783
+ filter: Record<string, any> | null;
8784
+ /**
8785
+ * Service to update. [Partial
8786
+ * updates](https://dev.wix.com/api/rest/wix-bookings/bookings/patch-endpoints-and-field-masks-in-update-requests)
8787
+ * are supported.
8788
+ */
8789
+ service: Service$1;
8790
+ }
8791
+ interface BulkUpdateServicesByFilterResponse$1 {
8792
+ /** ID of the service update job. */
8793
+ jobId?: string;
8794
+ }
8781
8795
  interface DeleteServiceRequest$1 {
8782
8796
  serviceId: string;
8783
8797
  /**
@@ -8819,6 +8833,22 @@ interface BulkDeleteServicesResponse$1 {
8819
8833
  /** Update statistics. */
8820
8834
  bulkActionMetadata?: BulkActionMetadata$3;
8821
8835
  }
8836
+ interface BulkDeleteServicesByFilterRequest$1 {
8837
+ /** Filter to identify the services that need to be deleted. */
8838
+ filter: Record<string, any> | null;
8839
+ /**
8840
+ * Whether to preserve future sessions with participants.
8841
+ *
8842
+ * Default: `false`.
8843
+ */
8844
+ preserveFutureSessionsWithParticipants?: boolean;
8845
+ /** Whether to notify participants about the change and an optional custom message. */
8846
+ participantNotification?: V2ParticipantNotification$1;
8847
+ }
8848
+ interface BulkDeleteServicesByFilterResponse$1 {
8849
+ /** ID of the service deletion job. */
8850
+ jobId?: string;
8851
+ }
8822
8852
  interface QueryServicesRequest$1 {
8823
8853
  /** WQL expression. */
8824
8854
  query: QueryV2$3;
@@ -9778,10 +9808,16 @@ interface BulkUpdateServicesResponseNonNullableFields$1 {
9778
9808
  results: BulkServiceResultNonNullableFields$1[];
9779
9809
  bulkActionMetadata?: BulkActionMetadataNonNullableFields$3;
9780
9810
  }
9811
+ interface BulkUpdateServicesByFilterResponseNonNullableFields$1 {
9812
+ jobId: string;
9813
+ }
9781
9814
  interface BulkDeleteServicesResponseNonNullableFields$1 {
9782
9815
  results: BulkServiceResultNonNullableFields$1[];
9783
9816
  bulkActionMetadata?: BulkActionMetadataNonNullableFields$3;
9784
9817
  }
9818
+ interface BulkDeleteServicesByFilterResponseNonNullableFields$1 {
9819
+ jobId: string;
9820
+ }
9785
9821
  interface QueryServicesResponseNonNullableFields$1 {
9786
9822
  services: ServiceNonNullableFields$1[];
9787
9823
  }
@@ -10798,6 +10834,20 @@ interface BulkUpdateServicesResponse {
10798
10834
  /** Update statistics. */
10799
10835
  bulkActionMetadata?: BulkActionMetadata$2;
10800
10836
  }
10837
+ interface BulkUpdateServicesByFilterRequest {
10838
+ /** Filter to identify the services that need to be updated. */
10839
+ filter: Record<string, any> | null;
10840
+ /**
10841
+ * Service to update. [Partial
10842
+ * updates](https://dev.wix.com/api/rest/wix-bookings/bookings/patch-endpoints-and-field-masks-in-update-requests)
10843
+ * are supported.
10844
+ */
10845
+ service: Service;
10846
+ }
10847
+ interface BulkUpdateServicesByFilterResponse {
10848
+ /** ID of the service update job. */
10849
+ jobId?: string;
10850
+ }
10801
10851
  interface DeleteServiceRequest {
10802
10852
  serviceId: string;
10803
10853
  /**
@@ -10839,6 +10889,22 @@ interface BulkDeleteServicesResponse {
10839
10889
  /** Update statistics. */
10840
10890
  bulkActionMetadata?: BulkActionMetadata$2;
10841
10891
  }
10892
+ interface BulkDeleteServicesByFilterRequest {
10893
+ /** Filter to identify the services that need to be deleted. */
10894
+ filter: Record<string, any> | null;
10895
+ /**
10896
+ * Whether to preserve future sessions with participants.
10897
+ *
10898
+ * Default: `false`.
10899
+ */
10900
+ preserveFutureSessionsWithParticipants?: boolean;
10901
+ /** Whether to notify participants about the change and an optional custom message. */
10902
+ participantNotification?: V2ParticipantNotification;
10903
+ }
10904
+ interface BulkDeleteServicesByFilterResponse {
10905
+ /** ID of the service deletion job. */
10906
+ jobId?: string;
10907
+ }
10842
10908
  interface QueryServicesRequest {
10843
10909
  /** WQL expression. */
10844
10910
  query: QueryV2$2;
@@ -11789,10 +11855,16 @@ interface BulkUpdateServicesResponseNonNullableFields {
11789
11855
  results: BulkServiceResultNonNullableFields[];
11790
11856
  bulkActionMetadata?: BulkActionMetadataNonNullableFields$2;
11791
11857
  }
11858
+ interface BulkUpdateServicesByFilterResponseNonNullableFields {
11859
+ jobId: string;
11860
+ }
11792
11861
  interface BulkDeleteServicesResponseNonNullableFields {
11793
11862
  results: BulkServiceResultNonNullableFields[];
11794
11863
  bulkActionMetadata?: BulkActionMetadataNonNullableFields$2;
11795
11864
  }
11865
+ interface BulkDeleteServicesByFilterResponseNonNullableFields {
11866
+ jobId: string;
11867
+ }
11796
11868
  interface QueryServicesResponseNonNullableFields {
11797
11869
  services: ServiceNonNullableFields[];
11798
11870
  }
@@ -11922,10 +11994,12 @@ declare function updateService(): __PublicMethodMetaInfo$6<'PATCH', {
11922
11994
  serviceId: string;
11923
11995
  }, UpdateServiceRequest, UpdateServiceRequest$1, UpdateServiceResponse & UpdateServiceResponseNonNullableFields, UpdateServiceResponse$1 & UpdateServiceResponseNonNullableFields$1>;
11924
11996
  declare function bulkUpdateServices(): __PublicMethodMetaInfo$6<'POST', {}, BulkUpdateServicesRequest, BulkUpdateServicesRequest$1, BulkUpdateServicesResponse & BulkUpdateServicesResponseNonNullableFields, BulkUpdateServicesResponse$1 & BulkUpdateServicesResponseNonNullableFields$1>;
11997
+ declare function bulkUpdateServicesByFilter(): __PublicMethodMetaInfo$6<'POST', {}, BulkUpdateServicesByFilterRequest, BulkUpdateServicesByFilterRequest$1, BulkUpdateServicesByFilterResponse & BulkUpdateServicesByFilterResponseNonNullableFields, BulkUpdateServicesByFilterResponse$1 & BulkUpdateServicesByFilterResponseNonNullableFields$1>;
11925
11998
  declare function deleteService(): __PublicMethodMetaInfo$6<'DELETE', {
11926
11999
  serviceId: string;
11927
12000
  }, DeleteServiceRequest, DeleteServiceRequest$1, DeleteServiceResponse, DeleteServiceResponse$1>;
11928
12001
  declare function bulkDeleteServices(): __PublicMethodMetaInfo$6<'POST', {}, BulkDeleteServicesRequest, BulkDeleteServicesRequest$1, BulkDeleteServicesResponse & BulkDeleteServicesResponseNonNullableFields, BulkDeleteServicesResponse$1 & BulkDeleteServicesResponseNonNullableFields$1>;
12002
+ declare function bulkDeleteServicesByFilter(): __PublicMethodMetaInfo$6<'POST', {}, BulkDeleteServicesByFilterRequest, BulkDeleteServicesByFilterRequest$1, BulkDeleteServicesByFilterResponse & BulkDeleteServicesByFilterResponseNonNullableFields, BulkDeleteServicesByFilterResponse$1 & BulkDeleteServicesByFilterResponseNonNullableFields$1>;
11929
12003
  declare function queryServices(): __PublicMethodMetaInfo$6<'POST', {}, QueryServicesRequest, QueryServicesRequest$1, QueryServicesResponse & QueryServicesResponseNonNullableFields, QueryServicesResponse$1 & QueryServicesResponseNonNullableFields$1>;
11930
12004
  declare function searchServices(): __PublicMethodMetaInfo$6<'POST', {}, SearchServicesRequest, SearchServicesRequest$1, SearchServicesResponse & SearchServicesResponseNonNullableFields, SearchServicesResponse$1 & SearchServicesResponseNonNullableFields$1>;
11931
12005
  declare function queryPolicies(): __PublicMethodMetaInfo$6<'POST', {}, QueryPoliciesRequest, QueryPoliciesRequest$1, QueryPoliciesResponse & QueryPoliciesResponseNonNullableFields, QueryPoliciesResponse$1 & QueryPoliciesResponseNonNullableFields$1>;
@@ -11948,7 +12022,9 @@ declare function validateSlug(): __PublicMethodMetaInfo$6<'POST', {}, ValidateSl
11948
12022
  declare function cloneService(): __PublicMethodMetaInfo$6<'POST', {}, CloneServiceRequest, CloneServiceRequest$1, CloneServiceResponse & CloneServiceResponseNonNullableFields, CloneServiceResponse$1 & CloneServiceResponseNonNullableFields$1>;
11949
12023
 
11950
12024
  declare const meta$6_bulkDeleteServices: typeof bulkDeleteServices;
12025
+ declare const meta$6_bulkDeleteServicesByFilter: typeof bulkDeleteServicesByFilter;
11951
12026
  declare const meta$6_bulkUpdateServices: typeof bulkUpdateServices;
12027
+ declare const meta$6_bulkUpdateServicesByFilter: typeof bulkUpdateServicesByFilter;
11952
12028
  declare const meta$6_cloneService: typeof cloneService;
11953
12029
  declare const meta$6_countServices: typeof countServices;
11954
12030
  declare const meta$6_createService: typeof createService;
@@ -11966,7 +12042,7 @@ declare const meta$6_setServiceLocations: typeof setServiceLocations;
11966
12042
  declare const meta$6_updateService: typeof updateService;
11967
12043
  declare const meta$6_validateSlug: typeof validateSlug;
11968
12044
  declare namespace meta$6 {
11969
- export { type __PublicMethodMetaInfo$6 as __PublicMethodMetaInfo, meta$6_bulkDeleteServices as bulkDeleteServices, meta$6_bulkUpdateServices as bulkUpdateServices, meta$6_cloneService as cloneService, meta$6_countServices as countServices, meta$6_createService as createService, meta$6_deleteService as deleteService, meta$6_disablePricingPlansForService as disablePricingPlansForService, meta$6_enablePricingPlansForService as enablePricingPlansForService, meta$6_getService as getService, meta$6_queryCategories as queryCategories, meta$6_queryLocations as queryLocations, meta$6_queryPolicies as queryPolicies, meta$6_queryServices as queryServices, meta$6_searchServices as searchServices, meta$6_setCustomSlug as setCustomSlug, meta$6_setServiceLocations as setServiceLocations, meta$6_updateService as updateService, meta$6_validateSlug as validateSlug };
12045
+ export { type __PublicMethodMetaInfo$6 as __PublicMethodMetaInfo, meta$6_bulkDeleteServices as bulkDeleteServices, meta$6_bulkDeleteServicesByFilter as bulkDeleteServicesByFilter, meta$6_bulkUpdateServices as bulkUpdateServices, meta$6_bulkUpdateServicesByFilter as bulkUpdateServicesByFilter, meta$6_cloneService as cloneService, meta$6_countServices as countServices, meta$6_createService as createService, meta$6_deleteService as deleteService, meta$6_disablePricingPlansForService as disablePricingPlansForService, meta$6_enablePricingPlansForService as enablePricingPlansForService, meta$6_getService as getService, meta$6_queryCategories as queryCategories, meta$6_queryLocations as queryLocations, meta$6_queryPolicies as queryPolicies, meta$6_queryServices as queryServices, meta$6_searchServices as searchServices, meta$6_setCustomSlug as setCustomSlug, meta$6_setServiceLocations as setServiceLocations, meta$6_updateService as updateService, meta$6_validateSlug as validateSlug };
11970
12046
  }
11971
12047
 
11972
12048
  /** StaffMember is the main entity of Bookings StaffMembers. used to manage staff providing services */