@wix/bookings 1.0.415 → 1.0.417
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.
|
|
3
|
+
"version": "1.0.417",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -18,18 +18,18 @@
|
|
|
18
18
|
"type-bundles"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@wix/bookings_attendance": "1.0.
|
|
22
|
-
"@wix/bookings_availability-calendar": "1.0.
|
|
23
|
-
"@wix/bookings_availability-time-slots": "1.0.
|
|
24
|
-
"@wix/bookings_bookings": "1.0.
|
|
25
|
-
"@wix/bookings_categories": "1.0.
|
|
26
|
-
"@wix/bookings_extended-bookings": "1.0.
|
|
27
|
-
"@wix/bookings_external-calendars": "1.0.
|
|
28
|
-
"@wix/bookings_multi-service-availability-time-slots": "1.0.
|
|
29
|
-
"@wix/bookings_pricing": "1.0.
|
|
30
|
-
"@wix/bookings_resources": "1.0.
|
|
31
|
-
"@wix/bookings_service-options-and-variants": "1.0.
|
|
32
|
-
"@wix/bookings_services": "1.0.
|
|
21
|
+
"@wix/bookings_attendance": "1.0.41",
|
|
22
|
+
"@wix/bookings_availability-calendar": "1.0.30",
|
|
23
|
+
"@wix/bookings_availability-time-slots": "1.0.26",
|
|
24
|
+
"@wix/bookings_bookings": "1.0.44",
|
|
25
|
+
"@wix/bookings_categories": "1.0.31",
|
|
26
|
+
"@wix/bookings_extended-bookings": "1.0.36",
|
|
27
|
+
"@wix/bookings_external-calendars": "1.0.28",
|
|
28
|
+
"@wix/bookings_multi-service-availability-time-slots": "1.0.25",
|
|
29
|
+
"@wix/bookings_pricing": "1.0.28",
|
|
30
|
+
"@wix/bookings_resources": "1.0.31",
|
|
31
|
+
"@wix/bookings_service-options-and-variants": "1.0.38",
|
|
32
|
+
"@wix/bookings_services": "1.0.58"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"glob": "^10.4.1",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"fqdn": ""
|
|
54
54
|
}
|
|
55
55
|
},
|
|
56
|
-
"falconPackageHash": "
|
|
56
|
+
"falconPackageHash": "9ecf023ff0675e0b2464856ee30d113212a680e992acaea57b6187bd"
|
|
57
57
|
}
|
|
@@ -4151,7 +4151,9 @@ interface V2Location extends V2LocationOptionsOneOf {
|
|
|
4151
4151
|
* - `CUSTOM`: The location is specific to this service, and is not derived from the business location.
|
|
4152
4152
|
* - `BUSINESS`: A business location, either the default business address, or locations defined for the business by the Business Info [Locations API](https://dev.wix.com/api/rest/business-info/locations).
|
|
4153
4153
|
* - `CUSTOMER`: Will be determined by the customer. For appointments only.
|
|
4154
|
+
* @readonly
|
|
4154
4155
|
*/
|
|
4156
|
+
_id?: string;
|
|
4155
4157
|
type?: LocationTypeEnumLocationType;
|
|
4156
4158
|
/**
|
|
4157
4159
|
* The location address, based on the location `type`. If `type` is `CUSTOMER`, this address is empty.
|
|
@@ -4235,6 +4237,11 @@ interface BusinessLocationOptions {
|
|
|
4235
4237
|
phone?: string | null;
|
|
4236
4238
|
}
|
|
4237
4239
|
interface CustomLocationOptions {
|
|
4240
|
+
/**
|
|
4241
|
+
* A constant id for the custom location.
|
|
4242
|
+
* @readonly
|
|
4243
|
+
*/
|
|
4244
|
+
_id?: string;
|
|
4238
4245
|
/** A custom address for the location. */
|
|
4239
4246
|
address?: CommonAddress;
|
|
4240
4247
|
}
|
|
@@ -5039,6 +5046,10 @@ declare function createService$1(httpClient: HttpClient$4): (service: Service) =
|
|
|
5039
5046
|
_id: string;
|
|
5040
5047
|
name: string;
|
|
5041
5048
|
} | undefined;
|
|
5049
|
+
custom?: {
|
|
5050
|
+
_id: string;
|
|
5051
|
+
} | undefined;
|
|
5052
|
+
_id: string;
|
|
5042
5053
|
type: LocationTypeEnumLocationType;
|
|
5043
5054
|
}[];
|
|
5044
5055
|
bookingPolicy?: {
|
|
@@ -5184,6 +5195,10 @@ declare function getService$1(httpClient: HttpClient$4): (serviceId: string) =>
|
|
|
5184
5195
|
_id: string;
|
|
5185
5196
|
name: string;
|
|
5186
5197
|
} | undefined;
|
|
5198
|
+
custom?: {
|
|
5199
|
+
_id: string;
|
|
5200
|
+
} | undefined;
|
|
5201
|
+
_id: string;
|
|
5187
5202
|
type: LocationTypeEnumLocationType;
|
|
5188
5203
|
}[];
|
|
5189
5204
|
bookingPolicy?: {
|
|
@@ -5329,6 +5344,10 @@ declare function updateService$1(httpClient: HttpClient$4): (_id: string | null,
|
|
|
5329
5344
|
_id: string;
|
|
5330
5345
|
name: string;
|
|
5331
5346
|
} | undefined;
|
|
5347
|
+
custom?: {
|
|
5348
|
+
_id: string;
|
|
5349
|
+
} | undefined;
|
|
5350
|
+
_id: string;
|
|
5332
5351
|
type: LocationTypeEnumLocationType;
|
|
5333
5352
|
}[];
|
|
5334
5353
|
bookingPolicy?: {
|
|
@@ -9728,7 +9728,9 @@ interface V2Location extends V2LocationOptionsOneOf {
|
|
|
9728
9728
|
* - `CUSTOM`: The location is specific to this service, and is not derived from the business location.
|
|
9729
9729
|
* - `BUSINESS`: A business location, either the default business address, or locations defined for the business by the Business Info [Locations API](https://dev.wix.com/api/rest/business-info/locations).
|
|
9730
9730
|
* - `CUSTOMER`: Will be determined by the customer. For appointments only.
|
|
9731
|
+
* @readonly
|
|
9731
9732
|
*/
|
|
9733
|
+
_id?: string;
|
|
9732
9734
|
type?: LocationTypeEnumLocationType;
|
|
9733
9735
|
/**
|
|
9734
9736
|
* The location address, based on the location `type`. If `type` is `CUSTOMER`, this address is empty.
|
|
@@ -9818,6 +9820,11 @@ interface BusinessLocationOptions {
|
|
|
9818
9820
|
phone?: string | null;
|
|
9819
9821
|
}
|
|
9820
9822
|
interface CustomLocationOptions {
|
|
9823
|
+
/**
|
|
9824
|
+
* A constant id for the custom location.
|
|
9825
|
+
* @readonly
|
|
9826
|
+
*/
|
|
9827
|
+
_id?: string;
|
|
9821
9828
|
/** A custom address for the location. */
|
|
9822
9829
|
address?: CommonAddress;
|
|
9823
9830
|
}
|
|
@@ -11065,6 +11072,29 @@ interface CountServicesResponse {
|
|
|
11065
11072
|
/** The number of services matching the given filter. */
|
|
11066
11073
|
count?: number;
|
|
11067
11074
|
}
|
|
11075
|
+
interface QueryLocationsRequest {
|
|
11076
|
+
/** WQL expression. The Sort affects the order of the business locations in the response. the filter affects the services to consider to filter locations by. */
|
|
11077
|
+
query?: QueryV2$2;
|
|
11078
|
+
}
|
|
11079
|
+
interface QueryLocationsResponse {
|
|
11080
|
+
businessLocations?: BusinessLocations;
|
|
11081
|
+
customLocations?: CustomLocations;
|
|
11082
|
+
customerLocations?: CustomerLocations;
|
|
11083
|
+
}
|
|
11084
|
+
interface BusinessLocations {
|
|
11085
|
+
/** Whether there are any services with business locations */
|
|
11086
|
+
exists?: boolean;
|
|
11087
|
+
/** The retrieved locations sorted according to the Sort in Query. */
|
|
11088
|
+
locations?: V2Location[];
|
|
11089
|
+
}
|
|
11090
|
+
interface CustomLocations {
|
|
11091
|
+
/** Whether there are any services with custom location */
|
|
11092
|
+
exists?: boolean;
|
|
11093
|
+
}
|
|
11094
|
+
interface CustomerLocations {
|
|
11095
|
+
/** Whether there are any services with customer location */
|
|
11096
|
+
exists?: boolean;
|
|
11097
|
+
}
|
|
11068
11098
|
/** An event sent every time a category entity is changed. */
|
|
11069
11099
|
interface CategoryNotification$1 {
|
|
11070
11100
|
category?: Category$1;
|
|
@@ -11158,7 +11188,7 @@ interface DomainEventBodyOneOf$2 {
|
|
|
11158
11188
|
interface EntityCreatedEvent$2 {
|
|
11159
11189
|
entity?: string;
|
|
11160
11190
|
}
|
|
11161
|
-
interface
|
|
11191
|
+
interface RestoreInfo {
|
|
11162
11192
|
deletedDate?: Date;
|
|
11163
11193
|
}
|
|
11164
11194
|
interface EntityUpdatedEvent$2 {
|
|
@@ -12735,6 +12765,10 @@ interface CreateServiceResponseNonNullableFields {
|
|
|
12735
12765
|
_id: string;
|
|
12736
12766
|
name: string;
|
|
12737
12767
|
};
|
|
12768
|
+
custom?: {
|
|
12769
|
+
_id: string;
|
|
12770
|
+
};
|
|
12771
|
+
_id: string;
|
|
12738
12772
|
type: LocationTypeEnumLocationType;
|
|
12739
12773
|
}[];
|
|
12740
12774
|
bookingPolicy?: {
|
|
@@ -12882,6 +12916,10 @@ interface GetServiceResponseNonNullableFields {
|
|
|
12882
12916
|
_id: string;
|
|
12883
12917
|
name: string;
|
|
12884
12918
|
};
|
|
12919
|
+
custom?: {
|
|
12920
|
+
_id: string;
|
|
12921
|
+
};
|
|
12922
|
+
_id: string;
|
|
12885
12923
|
type: LocationTypeEnumLocationType;
|
|
12886
12924
|
}[];
|
|
12887
12925
|
bookingPolicy?: {
|
|
@@ -13029,6 +13067,10 @@ interface UpdateServiceResponseNonNullableFields {
|
|
|
13029
13067
|
_id: string;
|
|
13030
13068
|
name: string;
|
|
13031
13069
|
};
|
|
13070
|
+
custom?: {
|
|
13071
|
+
_id: string;
|
|
13072
|
+
};
|
|
13073
|
+
_id: string;
|
|
13032
13074
|
type: LocationTypeEnumLocationType;
|
|
13033
13075
|
}[];
|
|
13034
13076
|
bookingPolicy?: {
|
|
@@ -13176,6 +13218,10 @@ interface QueryServicesResponseNonNullableFields {
|
|
|
13176
13218
|
_id: string;
|
|
13177
13219
|
name: string;
|
|
13178
13220
|
};
|
|
13221
|
+
custom?: {
|
|
13222
|
+
_id: string;
|
|
13223
|
+
};
|
|
13224
|
+
_id: string;
|
|
13179
13225
|
type: LocationTypeEnumLocationType;
|
|
13180
13226
|
}[];
|
|
13181
13227
|
bookingPolicy?: {
|
|
@@ -13578,6 +13624,10 @@ declare function createService(httpClient: HttpClient$4): (service: Service) =>
|
|
|
13578
13624
|
_id: string;
|
|
13579
13625
|
name: string;
|
|
13580
13626
|
} | undefined;
|
|
13627
|
+
custom?: {
|
|
13628
|
+
_id: string;
|
|
13629
|
+
} | undefined;
|
|
13630
|
+
_id: string;
|
|
13581
13631
|
type: LocationTypeEnumLocationType;
|
|
13582
13632
|
}[];
|
|
13583
13633
|
bookingPolicy?: {
|
|
@@ -13723,6 +13773,10 @@ declare function getService(httpClient: HttpClient$4): (serviceId: string) => Pr
|
|
|
13723
13773
|
_id: string;
|
|
13724
13774
|
name: string;
|
|
13725
13775
|
} | undefined;
|
|
13776
|
+
custom?: {
|
|
13777
|
+
_id: string;
|
|
13778
|
+
} | undefined;
|
|
13779
|
+
_id: string;
|
|
13726
13780
|
type: LocationTypeEnumLocationType;
|
|
13727
13781
|
}[];
|
|
13728
13782
|
bookingPolicy?: {
|
|
@@ -13868,6 +13922,10 @@ declare function updateService(httpClient: HttpClient$4): (_id: string | null, s
|
|
|
13868
13922
|
_id: string;
|
|
13869
13923
|
name: string;
|
|
13870
13924
|
} | undefined;
|
|
13925
|
+
custom?: {
|
|
13926
|
+
_id: string;
|
|
13927
|
+
} | undefined;
|
|
13928
|
+
_id: string;
|
|
13871
13929
|
type: LocationTypeEnumLocationType;
|
|
13872
13930
|
}[];
|
|
13873
13931
|
bookingPolicy?: {
|
|
@@ -13999,6 +14057,7 @@ type index_d$4_BulkUpdateServicesRequest = BulkUpdateServicesRequest;
|
|
|
13999
14057
|
type index_d$4_BulkUpdateServicesResponse = BulkUpdateServicesResponse;
|
|
14000
14058
|
type index_d$4_BusinessLocation = BusinessLocation;
|
|
14001
14059
|
type index_d$4_BusinessLocationOptions = BusinessLocationOptions;
|
|
14060
|
+
type index_d$4_BusinessLocations = BusinessLocations;
|
|
14002
14061
|
type index_d$4_BusinessSchedule = BusinessSchedule;
|
|
14003
14062
|
type index_d$4_CalendarConference = CalendarConference;
|
|
14004
14063
|
type index_d$4_CalendarDateTime = CalendarDateTime;
|
|
@@ -14043,7 +14102,9 @@ type index_d$4_CursorQueryPagingMethodOneOf = CursorQueryPagingMethodOneOf;
|
|
|
14043
14102
|
type index_d$4_CursorSearch = CursorSearch;
|
|
14044
14103
|
type index_d$4_CursorSearchPagingMethodOneOf = CursorSearchPagingMethodOneOf;
|
|
14045
14104
|
type index_d$4_CustomLocationOptions = CustomLocationOptions;
|
|
14105
|
+
type index_d$4_CustomLocations = CustomLocations;
|
|
14046
14106
|
type index_d$4_CustomPayment = CustomPayment;
|
|
14107
|
+
type index_d$4_CustomerLocations = CustomerLocations;
|
|
14047
14108
|
type index_d$4_DateHistogramAggregation = DateHistogramAggregation;
|
|
14048
14109
|
type index_d$4_DateHistogramAggregationInterval = DateHistogramAggregationInterval;
|
|
14049
14110
|
declare const index_d$4_DateHistogramAggregationInterval: typeof DateHistogramAggregationInterval;
|
|
@@ -14142,6 +14203,8 @@ type index_d$4_PolicyDescription = PolicyDescription;
|
|
|
14142
14203
|
type index_d$4_Price = Price;
|
|
14143
14204
|
type index_d$4_Properties = Properties;
|
|
14144
14205
|
type index_d$4_PropertiesChange = PropertiesChange;
|
|
14206
|
+
type index_d$4_QueryLocationsRequest = QueryLocationsRequest;
|
|
14207
|
+
type index_d$4_QueryLocationsResponse = QueryLocationsResponse;
|
|
14145
14208
|
type index_d$4_QueryPoliciesRequest = QueryPoliciesRequest;
|
|
14146
14209
|
type index_d$4_QueryPoliciesResponse = QueryPoliciesResponse;
|
|
14147
14210
|
type index_d$4_QueryServicesOptions = QueryServicesOptions;
|
|
@@ -14180,6 +14243,7 @@ type index_d$4_ResourceStatus = ResourceStatus;
|
|
|
14180
14243
|
declare const index_d$4_ResourceStatus: typeof ResourceStatus;
|
|
14181
14244
|
type index_d$4_ResourceType = ResourceType;
|
|
14182
14245
|
type index_d$4_ResourcesPolicy = ResourcesPolicy;
|
|
14246
|
+
type index_d$4_RestoreInfo = RestoreInfo;
|
|
14183
14247
|
type index_d$4_Results = Results;
|
|
14184
14248
|
type index_d$4_SaveCreditCardPolicy = SaveCreditCardPolicy;
|
|
14185
14249
|
type index_d$4_ScalarAggregation = ScalarAggregation;
|
|
@@ -14283,7 +14347,7 @@ declare const index_d$4_onServiceUpdated: typeof onServiceUpdated;
|
|
|
14283
14347
|
declare const index_d$4_queryServices: typeof queryServices;
|
|
14284
14348
|
declare const index_d$4_updateService: typeof updateService;
|
|
14285
14349
|
declare namespace index_d$4 {
|
|
14286
|
-
export { index_d$4_Action as Action, type ActionEvent$2 as ActionEvent, type Address$2 as Address, type index_d$4_AddressHint as AddressHint, type AddressLocation$2 as AddressLocation, type AddressStreetOneOf$2 as AddressStreetOneOf, type index_d$4_Aggregation as Aggregation, type index_d$4_AggregationData as AggregationData, type index_d$4_AggregationKindOneOf as AggregationKindOneOf, type index_d$4_AggregationResults as AggregationResults, type index_d$4_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d$4_AggregationResultsScalarResult as AggregationResultsScalarResult, index_d$4_AggregationType as AggregationType, type ApplicationError$2 as ApplicationError, index_d$4_ApprovalStatus as ApprovalStatus, type index_d$4_Availability as Availability, type index_d$4_AvailabilityConstraints as AvailabilityConstraints, type index_d$4_AvailabilityPolicy as AvailabilityPolicy, type index_d$4_AvailabilityPolicyUpdated as AvailabilityPolicyUpdated, type BaseEventMetadata$2 as BaseEventMetadata, type index_d$4_Behavior as Behavior, type index_d$4_BehaviorBehaviorOneOf as BehaviorBehaviorOneOf, type index_d$4_Benefit as Benefit, type index_d$4_BenefitNotification as BenefitNotification, index_d$4_BenefitType as BenefitType, type index_d$4_BookAfterStartPolicy as BookAfterStartPolicy, type index_d$4_BookingPolicy as BookingPolicy, type index_d$4_BookingPolicyWithServices as BookingPolicyWithServices, type BulkActionMetadata$2 as BulkActionMetadata, type index_d$4_BulkCreateServicesRequest as BulkCreateServicesRequest, type index_d$4_BulkCreateServicesResponse as BulkCreateServicesResponse, type index_d$4_BulkDeleteServicesRequest as BulkDeleteServicesRequest, type index_d$4_BulkDeleteServicesResponse as BulkDeleteServicesResponse, type index_d$4_BulkServiceResult as BulkServiceResult, type index_d$4_BulkUpdateServicesRequest as BulkUpdateServicesRequest, type index_d$4_BulkUpdateServicesResponse as BulkUpdateServicesResponse, type index_d$4_BusinessLocation as BusinessLocation, type index_d$4_BusinessLocationOptions as BusinessLocationOptions, type index_d$4_BusinessSchedule as BusinessSchedule, type index_d$4_CalendarConference as CalendarConference, type index_d$4_CalendarDateTime as CalendarDateTime, index_d$4_CalendarType as CalendarType, type index_d$4_CancellationFeePolicy as CancellationFeePolicy, type index_d$4_CancellationPolicy as CancellationPolicy, type index_d$4_CancellationWindow as CancellationWindow, type index_d$4_CancellationWindowFeeOneOf as CancellationWindowFeeOneOf, type index_d$4_Categories as Categories, type Category$1 as Category, type CategoryNotification$1 as CategoryNotification, index_d$4_CategoryNotificationEvent as CategoryNotificationEvent, index_d$4_CategoryStatus as CategoryStatus, type index_d$4_ChangeContext as ChangeContext, type index_d$4_ChangeContextPayloadOneOf as ChangeContextPayloadOneOf, index_d$4_CloneErrors as CloneErrors, type index_d$4_CloneServiceRequest as CloneServiceRequest, type index_d$4_CloneServiceResponse as CloneServiceResponse, type index_d$4_CommonAddress as CommonAddress, type index_d$4_CommonAddressLocation as CommonAddressLocation, type index_d$4_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type index_d$4_CommonMoney as CommonMoney, type index_d$4_CommonStreetAddress as CommonStreetAddress, type index_d$4_ConferenceProvider as ConferenceProvider, index_d$4_ConferenceType as ConferenceType, type index_d$4_Conferencing as Conferencing, type index_d$4_ConsentPolicy as ConsentPolicy, type index_d$4_CountServicesOptions as CountServicesOptions, type index_d$4_CountServicesRequest as CountServicesRequest, type index_d$4_CountServicesResponse as CountServicesResponse, type index_d$4_CountServicesResponseNonNullableFields as CountServicesResponseNonNullableFields, type index_d$4_CreateServiceRequest as CreateServiceRequest, type index_d$4_CreateServiceResponse as CreateServiceResponse, type index_d$4_CreateServiceResponseNonNullableFields as CreateServiceResponseNonNullableFields, index_d$4_CrudType as CrudType, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type index_d$4_CursorQuery as CursorQuery, type index_d$4_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type index_d$4_CursorSearch as CursorSearch, type index_d$4_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$2 as Cursors, type index_d$4_CustomLocationOptions as CustomLocationOptions, type index_d$4_CustomPayment as CustomPayment, type index_d$4_DateHistogramAggregation as DateHistogramAggregation, index_d$4_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type index_d$4_DateHistogramResult as DateHistogramResult, type index_d$4_DateHistogramResults as DateHistogramResults, index_d$4_Day as Day, index_d$4_DayOfWeek as DayOfWeek, type index_d$4_Delete as Delete, type index_d$4_DeleteServiceOptions as DeleteServiceOptions, type index_d$4_DeleteServiceRequest as DeleteServiceRequest, type index_d$4_DeleteServiceResponse as DeleteServiceResponse, type index_d$4_DisablePricingPlansForServiceRequest as DisablePricingPlansForServiceRequest, type index_d$4_DisablePricingPlansForServiceResponse as DisablePricingPlansForServiceResponse, type index_d$4_Discount as Discount, type index_d$4_DiscountDiscountOneOf as DiscountDiscountOneOf, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$4_Empty as Empty, type index_d$4_EnablePricingPlansForServiceRequest as EnablePricingPlansForServiceRequest, type index_d$4_EnablePricingPlansForServiceResponse as EnablePricingPlansForServiceResponse, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type index_d$4_EntryPass as EntryPass, Event$1 as Event, type EventMetadata$1 as EventMetadata, type ExtendedFields$2 as ExtendedFields, type index_d$4_ExternalCalendarInfo as ExternalCalendarInfo, type index_d$4_ExternalCalendarOverrides as ExternalCalendarOverrides, type index_d$4_FixedPayment as FixedPayment, type index_d$4_Form as Form, type index_d$4_FormSettings as FormSettings, type index_d$4_Frequency as Frequency, type index_d$4_GeoCoordinates as GeoCoordinates, type index_d$4_GetServiceAvailabilityConstraintsRequest as GetServiceAvailabilityConstraintsRequest, type index_d$4_GetServiceAvailabilityConstraintsResponse as GetServiceAvailabilityConstraintsResponse, type index_d$4_GetServiceRequest as GetServiceRequest, type index_d$4_GetServiceResponse as GetServiceResponse, type index_d$4_GetServiceResponseNonNullableFields as GetServiceResponseNonNullableFields, type index_d$4_GroupByAggregation as GroupByAggregation, type index_d$4_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type index_d$4_GroupByValueResults as GroupByValueResults, type index_d$4_HtmlSitePublished as HtmlSitePublished, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type index_d$4_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type index_d$4_Interval as Interval, type index_d$4_IntervalSplit as IntervalSplit, type index_d$4_InvalidPricingPlan as InvalidPricingPlan, index_d$4_InvalidSlugError as InvalidSlugError, type ItemMetadata$2 as ItemMetadata, type index_d$4_Keyword as Keyword, type index_d$4_LimitEarlyBookingPolicy as LimitEarlyBookingPolicy, type index_d$4_LimitLateBookingPolicy as LimitLateBookingPolicy, type index_d$4_LinkedSchedule as LinkedSchedule, type index_d$4_LocalDateTime as LocalDateTime, type index_d$4_Locale as Locale, type Location$2 as Location, index_d$4_LocationStatus as LocationStatus, LocationType$2 as LocationType, index_d$4_LocationTypeEnumLocationType as LocationTypeEnumLocationType, type index_d$4_LocationsAddress as LocationsAddress, type index_d$4_LocationsAddressLocation as LocationsAddressLocation, type index_d$4_LocationsLocation as LocationsLocation, index_d$4_LocationsLocationType as LocationsLocationType, type index_d$4_LocationsStreetAddress as LocationsStreetAddress, type index_d$4_MaskedService as MaskedService, type index_d$4_Media as Media, type index_d$4_MediaItem as MediaItem, type index_d$4_MediaItemItemOneOf as MediaItemItemOneOf, type MessageEnvelope$3 as MessageEnvelope, type index_d$4_MigrationData as MigrationData, type index_d$4_MigrationEvent as MigrationEvent, index_d$4_MissingValues as MissingValues, index_d$4_Mode as Mode, type index_d$4_Money as Money, type index_d$4_MoveToNewLocationsOptions as MoveToNewLocationsOptions, type index_d$4_MultiServiceEnabledNotification as MultiServiceEnabledNotification, type index_d$4_Multilingual as Multilingual, type index_d$4_MultipleSessionsCreated as MultipleSessionsCreated, type index_d$4_NestedAggregation as NestedAggregation, type index_d$4_NestedAggregationItem as NestedAggregationItem, type index_d$4_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type index_d$4_NestedAggregationResults as NestedAggregationResults, type index_d$4_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, index_d$4_NestedAggregationType as NestedAggregationType, type index_d$4_NestedResultValue as NestedResultValue, type index_d$4_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d$4_NestedResults as NestedResults, type index_d$4_NestedValueAggregationResult as NestedValueAggregationResult, type index_d$4_OnlineBooking as OnlineBooking, type index_d$4_Page as Page, type Paging$2 as Paging, type PagingMetadataV2$1 as PagingMetadataV2, type index_d$4_Participant as Participant, type ParticipantNotification$3 as ParticipantNotification, type index_d$4_ParticipantsPolicy as ParticipantsPolicy, type index_d$4_Payment as Payment, type index_d$4_PaymentOptions as PaymentOptions, type index_d$4_PaymentRateOneOf as PaymentRateOneOf, index_d$4_PlacementType as PlacementType, type index_d$4_PolicyDescription as PolicyDescription, type index_d$4_Price as Price, type index_d$4_Properties as Properties, type index_d$4_PropertiesChange as PropertiesChange, type index_d$4_QueryPoliciesRequest as QueryPoliciesRequest, type index_d$4_QueryPoliciesResponse as QueryPoliciesResponse, type index_d$4_QueryServicesOptions as QueryServicesOptions, type index_d$4_QueryServicesRequest as QueryServicesRequest, type index_d$4_QueryServicesResponse as QueryServicesResponse, type index_d$4_QueryServicesResponseNonNullableFields as QueryServicesResponseNonNullableFields, type QueryV2$2 as QueryV2, type QueryV2PagingMethodOneOf$2 as QueryV2PagingMethodOneOf, type index_d$4_RangeAggregation as RangeAggregation, type index_d$4_RangeAggregationResult as RangeAggregationResult, type index_d$4_RangeBucket as RangeBucket, type index_d$4_RangeResult as RangeResult, type index_d$4_RangeResults as RangeResults, type index_d$4_Rate as Rate, index_d$4_RateType as RateType, type index_d$4_RecurringInterval as RecurringInterval, index_d$4_RecurringIntervalType as RecurringIntervalType, type index_d$4_RecurringSessionSplit as RecurringSessionSplit, type index_d$4_RecurringSessionsUpdated as RecurringSessionsUpdated, type index_d$4_ReindexMessage as ReindexMessage, type index_d$4_ReindexMessageActionOneOf as ReindexMessageActionOneOf, type index_d$4_RemovedLocationSessionsAction as RemovedLocationSessionsAction, type index_d$4_RemovedLocationSessionsActionActionOptionsOneOf as RemovedLocationSessionsActionActionOptionsOneOf, index_d$4_RequestedFields as RequestedFields, type index_d$4_ReschedulePolicy as ReschedulePolicy, index_d$4_ResolutionMethod as ResolutionMethod, type index_d$4_Resource as Resource, type index_d$4_ResourceGroup as ResourceGroup, type index_d$4_ResourceIds as ResourceIds, type index_d$4_ResourceNotification as ResourceNotification, index_d$4_ResourceNotificationEvent as ResourceNotificationEvent, index_d$4_ResourceStatus as ResourceStatus, type index_d$4_ResourceType as ResourceType, type index_d$4_ResourcesPolicy as ResourcesPolicy, type index_d$4_Results as Results, type index_d$4_SaveCreditCardPolicy as SaveCreditCardPolicy, type index_d$4_ScalarAggregation as ScalarAggregation, type index_d$4_ScalarResult as ScalarResult, index_d$4_ScalarType as ScalarType, type index_d$4_Schedule as Schedule, type index_d$4_ScheduleCancelled as ScheduleCancelled, type index_d$4_ScheduleCreated as ScheduleCreated, type index_d$4_ScheduleNotification as ScheduleNotification, type index_d$4_ScheduleNotificationEventOneOf as ScheduleNotificationEventOneOf, index_d$4_ScheduleStatus as ScheduleStatus, type index_d$4_ScheduleUnassignedFromUser as ScheduleUnassignedFromUser, type index_d$4_ScheduleUpdated as ScheduleUpdated, type index_d$4_ScheduleWithSessions as ScheduleWithSessions, type index_d$4_Schema as Schema, type index_d$4_SearchDetails as SearchDetails, type index_d$4_SearchServicesRequest as SearchServicesRequest, type index_d$4_SearchServicesResponse as SearchServicesResponse, type index_d$4_SeoSchema as SeoSchema, type index_d$4_Service as Service, type index_d$4_ServiceAvailabilityConstraints as ServiceAvailabilityConstraints, type index_d$4_ServiceCreatedEnvelope as ServiceCreatedEnvelope, type index_d$4_ServiceDeletedEnvelope as ServiceDeletedEnvelope, type index_d$4_ServiceResource as ServiceResource, type index_d$4_ServiceResourceSelectionOneOf as ServiceResourceSelectionOneOf, index_d$4_ServiceType as ServiceType, type index_d$4_ServiceUpdatedEnvelope as ServiceUpdatedEnvelope, type index_d$4_ServicesQueryBuilder as ServicesQueryBuilder, type index_d$4_ServicesQueryResult as ServicesQueryResult, type index_d$4_ServicesUrlsChanged as ServicesUrlsChanged, type index_d$4_Session as Session, type index_d$4_SessionCancelled as SessionCancelled, type index_d$4_SessionCreated as SessionCreated, index_d$4_SessionType as SessionType, type index_d$4_SessionUpdated as SessionUpdated, type index_d$4_SessionVersion as SessionVersion, type index_d$4_SetCustomSlugEvent as SetCustomSlugEvent, type index_d$4_SetCustomSlugRequest as SetCustomSlugRequest, type index_d$4_SetCustomSlugResponse as SetCustomSlugResponse, type index_d$4_SetServiceLocationsRequest as SetServiceLocationsRequest, type index_d$4_SetServiceLocationsResponse as SetServiceLocationsResponse, type index_d$4_Settings as Settings, type index_d$4_SiteCloned as SiteCloned, type index_d$4_SiteCreated as SiteCreated, type index_d$4_SitePropertiesEvent as SitePropertiesEvent, type index_d$4_SitePropertiesNotification as SitePropertiesNotification, type index_d$4_SitePropertiesOnScheduleCreation as SitePropertiesOnScheduleCreation, type index_d$4_Slug as Slug, index_d$4_SortDirection as SortDirection, SortOrder$2 as SortOrder, index_d$4_SortType as SortType, type Sorting$2 as Sorting, type index_d$4_SpecialHourPeriod as SpecialHourPeriod, type index_d$4_SplitInterval as SplitInterval, type index_d$4_StaffData as StaffData, type index_d$4_StaffMediaItem as StaffMediaItem, type index_d$4_StaffMediaItemItemOneOf as StaffMediaItemItemOneOf, type index_d$4_StaffMember as StaffMember, Status$1 as Status, type StreetAddress$2 as StreetAddress, type Subdivision$2 as Subdivision, type index_d$4_SupportedLanguage as SupportedLanguage, type index_d$4_Tag as Tag, type index_d$4_TimePeriod as TimePeriod, type index_d$4_Translation as Translation, index_d$4_Transparency as Transparency, type index_d$4_URLs as URLs, type UndeleteInfo$1 as UndeleteInfo, type index_d$4_UpdateService as UpdateService, type index_d$4_UpdateServiceRequest as UpdateServiceRequest, type index_d$4_UpdateServiceResponse as UpdateServiceResponse, type index_d$4_UpdateServiceResponseNonNullableFields as UpdateServiceResponseNonNullableFields, type index_d$4_Upsert as Upsert, type index_d$4_UserDomainInfoChangedEvent as UserDomainInfoChangedEvent, type index_d$4_V1SplitInterval as V1SplitInterval, type index_d$4_V2AvailabilityConstraints as V2AvailabilityConstraints, type index_d$4_V2Category as V2Category, type index_d$4_V2Location as V2Location, type index_d$4_V2LocationOptionsOneOf as V2LocationOptionsOneOf, type index_d$4_V2ParticipantNotification as V2ParticipantNotification, type index_d$4_V2Schedule as V2Schedule, type index_d$4_V4Address as V4Address, type index_d$4_ValidateSlugRequest as ValidateSlugRequest, type index_d$4_ValidateSlugResponse as ValidateSlugResponse, type index_d$4_ValueAggregation as ValueAggregation, type index_d$4_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type index_d$4_ValueAggregationResult as ValueAggregationResult, type index_d$4_ValueResult as ValueResult, type index_d$4_ValueResults as ValueResults, type index_d$4_VariedPayment as VariedPayment, type index_d$4_Version as Version, type index_d$4_WaitlistPolicy as WaitlistPolicy, WebhookIdentityType$3 as WebhookIdentityType, __metadata$4 as __metadata, index_d$4_countServices as countServices, index_d$4_createService as createService, index_d$4_deleteService as deleteService, index_d$4_getService as getService, index_d$4_onServiceCreated as onServiceCreated, index_d$4_onServiceDeleted as onServiceDeleted, index_d$4_onServiceUpdated as onServiceUpdated, index_d$4_queryServices as queryServices, index_d$4_updateService as updateService };
|
|
14350
|
+
export { index_d$4_Action as Action, type ActionEvent$2 as ActionEvent, type Address$2 as Address, type index_d$4_AddressHint as AddressHint, type AddressLocation$2 as AddressLocation, type AddressStreetOneOf$2 as AddressStreetOneOf, type index_d$4_Aggregation as Aggregation, type index_d$4_AggregationData as AggregationData, type index_d$4_AggregationKindOneOf as AggregationKindOneOf, type index_d$4_AggregationResults as AggregationResults, type index_d$4_AggregationResultsResultOneOf as AggregationResultsResultOneOf, type index_d$4_AggregationResultsScalarResult as AggregationResultsScalarResult, index_d$4_AggregationType as AggregationType, type ApplicationError$2 as ApplicationError, index_d$4_ApprovalStatus as ApprovalStatus, type index_d$4_Availability as Availability, type index_d$4_AvailabilityConstraints as AvailabilityConstraints, type index_d$4_AvailabilityPolicy as AvailabilityPolicy, type index_d$4_AvailabilityPolicyUpdated as AvailabilityPolicyUpdated, type BaseEventMetadata$2 as BaseEventMetadata, type index_d$4_Behavior as Behavior, type index_d$4_BehaviorBehaviorOneOf as BehaviorBehaviorOneOf, type index_d$4_Benefit as Benefit, type index_d$4_BenefitNotification as BenefitNotification, index_d$4_BenefitType as BenefitType, type index_d$4_BookAfterStartPolicy as BookAfterStartPolicy, type index_d$4_BookingPolicy as BookingPolicy, type index_d$4_BookingPolicyWithServices as BookingPolicyWithServices, type BulkActionMetadata$2 as BulkActionMetadata, type index_d$4_BulkCreateServicesRequest as BulkCreateServicesRequest, type index_d$4_BulkCreateServicesResponse as BulkCreateServicesResponse, type index_d$4_BulkDeleteServicesRequest as BulkDeleteServicesRequest, type index_d$4_BulkDeleteServicesResponse as BulkDeleteServicesResponse, type index_d$4_BulkServiceResult as BulkServiceResult, type index_d$4_BulkUpdateServicesRequest as BulkUpdateServicesRequest, type index_d$4_BulkUpdateServicesResponse as BulkUpdateServicesResponse, type index_d$4_BusinessLocation as BusinessLocation, type index_d$4_BusinessLocationOptions as BusinessLocationOptions, type index_d$4_BusinessLocations as BusinessLocations, type index_d$4_BusinessSchedule as BusinessSchedule, type index_d$4_CalendarConference as CalendarConference, type index_d$4_CalendarDateTime as CalendarDateTime, index_d$4_CalendarType as CalendarType, type index_d$4_CancellationFeePolicy as CancellationFeePolicy, type index_d$4_CancellationPolicy as CancellationPolicy, type index_d$4_CancellationWindow as CancellationWindow, type index_d$4_CancellationWindowFeeOneOf as CancellationWindowFeeOneOf, type index_d$4_Categories as Categories, type Category$1 as Category, type CategoryNotification$1 as CategoryNotification, index_d$4_CategoryNotificationEvent as CategoryNotificationEvent, index_d$4_CategoryStatus as CategoryStatus, type index_d$4_ChangeContext as ChangeContext, type index_d$4_ChangeContextPayloadOneOf as ChangeContextPayloadOneOf, index_d$4_CloneErrors as CloneErrors, type index_d$4_CloneServiceRequest as CloneServiceRequest, type index_d$4_CloneServiceResponse as CloneServiceResponse, type index_d$4_CommonAddress as CommonAddress, type index_d$4_CommonAddressLocation as CommonAddressLocation, type index_d$4_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type index_d$4_CommonMoney as CommonMoney, type index_d$4_CommonStreetAddress as CommonStreetAddress, type index_d$4_ConferenceProvider as ConferenceProvider, index_d$4_ConferenceType as ConferenceType, type index_d$4_Conferencing as Conferencing, type index_d$4_ConsentPolicy as ConsentPolicy, type index_d$4_CountServicesOptions as CountServicesOptions, type index_d$4_CountServicesRequest as CountServicesRequest, type index_d$4_CountServicesResponse as CountServicesResponse, type index_d$4_CountServicesResponseNonNullableFields as CountServicesResponseNonNullableFields, type index_d$4_CreateServiceRequest as CreateServiceRequest, type index_d$4_CreateServiceResponse as CreateServiceResponse, type index_d$4_CreateServiceResponseNonNullableFields as CreateServiceResponseNonNullableFields, index_d$4_CrudType as CrudType, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type index_d$4_CursorQuery as CursorQuery, type index_d$4_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type index_d$4_CursorSearch as CursorSearch, type index_d$4_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$2 as Cursors, type index_d$4_CustomLocationOptions as CustomLocationOptions, type index_d$4_CustomLocations as CustomLocations, type index_d$4_CustomPayment as CustomPayment, type index_d$4_CustomerLocations as CustomerLocations, type index_d$4_DateHistogramAggregation as DateHistogramAggregation, index_d$4_DateHistogramAggregationInterval as DateHistogramAggregationInterval, type index_d$4_DateHistogramResult as DateHistogramResult, type index_d$4_DateHistogramResults as DateHistogramResults, index_d$4_Day as Day, index_d$4_DayOfWeek as DayOfWeek, type index_d$4_Delete as Delete, type index_d$4_DeleteServiceOptions as DeleteServiceOptions, type index_d$4_DeleteServiceRequest as DeleteServiceRequest, type index_d$4_DeleteServiceResponse as DeleteServiceResponse, type index_d$4_DisablePricingPlansForServiceRequest as DisablePricingPlansForServiceRequest, type index_d$4_DisablePricingPlansForServiceResponse as DisablePricingPlansForServiceResponse, type index_d$4_Discount as Discount, type index_d$4_DiscountDiscountOneOf as DiscountDiscountOneOf, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$4_Empty as Empty, type index_d$4_EnablePricingPlansForServiceRequest as EnablePricingPlansForServiceRequest, type index_d$4_EnablePricingPlansForServiceResponse as EnablePricingPlansForServiceResponse, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type index_d$4_EntryPass as EntryPass, Event$1 as Event, type EventMetadata$1 as EventMetadata, type ExtendedFields$2 as ExtendedFields, type index_d$4_ExternalCalendarInfo as ExternalCalendarInfo, type index_d$4_ExternalCalendarOverrides as ExternalCalendarOverrides, type index_d$4_FixedPayment as FixedPayment, type index_d$4_Form as Form, type index_d$4_FormSettings as FormSettings, type index_d$4_Frequency as Frequency, type index_d$4_GeoCoordinates as GeoCoordinates, type index_d$4_GetServiceAvailabilityConstraintsRequest as GetServiceAvailabilityConstraintsRequest, type index_d$4_GetServiceAvailabilityConstraintsResponse as GetServiceAvailabilityConstraintsResponse, type index_d$4_GetServiceRequest as GetServiceRequest, type index_d$4_GetServiceResponse as GetServiceResponse, type index_d$4_GetServiceResponseNonNullableFields as GetServiceResponseNonNullableFields, type index_d$4_GroupByAggregation as GroupByAggregation, type index_d$4_GroupByAggregationKindOneOf as GroupByAggregationKindOneOf, type index_d$4_GroupByValueResults as GroupByValueResults, type index_d$4_HtmlSitePublished as HtmlSitePublished, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type index_d$4_IncludeMissingValuesOptions as IncludeMissingValuesOptions, type index_d$4_Interval as Interval, type index_d$4_IntervalSplit as IntervalSplit, type index_d$4_InvalidPricingPlan as InvalidPricingPlan, index_d$4_InvalidSlugError as InvalidSlugError, type ItemMetadata$2 as ItemMetadata, type index_d$4_Keyword as Keyword, type index_d$4_LimitEarlyBookingPolicy as LimitEarlyBookingPolicy, type index_d$4_LimitLateBookingPolicy as LimitLateBookingPolicy, type index_d$4_LinkedSchedule as LinkedSchedule, type index_d$4_LocalDateTime as LocalDateTime, type index_d$4_Locale as Locale, type Location$2 as Location, index_d$4_LocationStatus as LocationStatus, LocationType$2 as LocationType, index_d$4_LocationTypeEnumLocationType as LocationTypeEnumLocationType, type index_d$4_LocationsAddress as LocationsAddress, type index_d$4_LocationsAddressLocation as LocationsAddressLocation, type index_d$4_LocationsLocation as LocationsLocation, index_d$4_LocationsLocationType as LocationsLocationType, type index_d$4_LocationsStreetAddress as LocationsStreetAddress, type index_d$4_MaskedService as MaskedService, type index_d$4_Media as Media, type index_d$4_MediaItem as MediaItem, type index_d$4_MediaItemItemOneOf as MediaItemItemOneOf, type MessageEnvelope$3 as MessageEnvelope, type index_d$4_MigrationData as MigrationData, type index_d$4_MigrationEvent as MigrationEvent, index_d$4_MissingValues as MissingValues, index_d$4_Mode as Mode, type index_d$4_Money as Money, type index_d$4_MoveToNewLocationsOptions as MoveToNewLocationsOptions, type index_d$4_MultiServiceEnabledNotification as MultiServiceEnabledNotification, type index_d$4_Multilingual as Multilingual, type index_d$4_MultipleSessionsCreated as MultipleSessionsCreated, type index_d$4_NestedAggregation as NestedAggregation, type index_d$4_NestedAggregationItem as NestedAggregationItem, type index_d$4_NestedAggregationItemKindOneOf as NestedAggregationItemKindOneOf, type index_d$4_NestedAggregationResults as NestedAggregationResults, type index_d$4_NestedAggregationResultsResultOneOf as NestedAggregationResultsResultOneOf, index_d$4_NestedAggregationType as NestedAggregationType, type index_d$4_NestedResultValue as NestedResultValue, type index_d$4_NestedResultValueResultOneOf as NestedResultValueResultOneOf, type index_d$4_NestedResults as NestedResults, type index_d$4_NestedValueAggregationResult as NestedValueAggregationResult, type index_d$4_OnlineBooking as OnlineBooking, type index_d$4_Page as Page, type Paging$2 as Paging, type PagingMetadataV2$1 as PagingMetadataV2, type index_d$4_Participant as Participant, type ParticipantNotification$3 as ParticipantNotification, type index_d$4_ParticipantsPolicy as ParticipantsPolicy, type index_d$4_Payment as Payment, type index_d$4_PaymentOptions as PaymentOptions, type index_d$4_PaymentRateOneOf as PaymentRateOneOf, index_d$4_PlacementType as PlacementType, type index_d$4_PolicyDescription as PolicyDescription, type index_d$4_Price as Price, type index_d$4_Properties as Properties, type index_d$4_PropertiesChange as PropertiesChange, type index_d$4_QueryLocationsRequest as QueryLocationsRequest, type index_d$4_QueryLocationsResponse as QueryLocationsResponse, type index_d$4_QueryPoliciesRequest as QueryPoliciesRequest, type index_d$4_QueryPoliciesResponse as QueryPoliciesResponse, type index_d$4_QueryServicesOptions as QueryServicesOptions, type index_d$4_QueryServicesRequest as QueryServicesRequest, type index_d$4_QueryServicesResponse as QueryServicesResponse, type index_d$4_QueryServicesResponseNonNullableFields as QueryServicesResponseNonNullableFields, type QueryV2$2 as QueryV2, type QueryV2PagingMethodOneOf$2 as QueryV2PagingMethodOneOf, type index_d$4_RangeAggregation as RangeAggregation, type index_d$4_RangeAggregationResult as RangeAggregationResult, type index_d$4_RangeBucket as RangeBucket, type index_d$4_RangeResult as RangeResult, type index_d$4_RangeResults as RangeResults, type index_d$4_Rate as Rate, index_d$4_RateType as RateType, type index_d$4_RecurringInterval as RecurringInterval, index_d$4_RecurringIntervalType as RecurringIntervalType, type index_d$4_RecurringSessionSplit as RecurringSessionSplit, type index_d$4_RecurringSessionsUpdated as RecurringSessionsUpdated, type index_d$4_ReindexMessage as ReindexMessage, type index_d$4_ReindexMessageActionOneOf as ReindexMessageActionOneOf, type index_d$4_RemovedLocationSessionsAction as RemovedLocationSessionsAction, type index_d$4_RemovedLocationSessionsActionActionOptionsOneOf as RemovedLocationSessionsActionActionOptionsOneOf, index_d$4_RequestedFields as RequestedFields, type index_d$4_ReschedulePolicy as ReschedulePolicy, index_d$4_ResolutionMethod as ResolutionMethod, type index_d$4_Resource as Resource, type index_d$4_ResourceGroup as ResourceGroup, type index_d$4_ResourceIds as ResourceIds, type index_d$4_ResourceNotification as ResourceNotification, index_d$4_ResourceNotificationEvent as ResourceNotificationEvent, index_d$4_ResourceStatus as ResourceStatus, type index_d$4_ResourceType as ResourceType, type index_d$4_ResourcesPolicy as ResourcesPolicy, type index_d$4_RestoreInfo as RestoreInfo, type index_d$4_Results as Results, type index_d$4_SaveCreditCardPolicy as SaveCreditCardPolicy, type index_d$4_ScalarAggregation as ScalarAggregation, type index_d$4_ScalarResult as ScalarResult, index_d$4_ScalarType as ScalarType, type index_d$4_Schedule as Schedule, type index_d$4_ScheduleCancelled as ScheduleCancelled, type index_d$4_ScheduleCreated as ScheduleCreated, type index_d$4_ScheduleNotification as ScheduleNotification, type index_d$4_ScheduleNotificationEventOneOf as ScheduleNotificationEventOneOf, index_d$4_ScheduleStatus as ScheduleStatus, type index_d$4_ScheduleUnassignedFromUser as ScheduleUnassignedFromUser, type index_d$4_ScheduleUpdated as ScheduleUpdated, type index_d$4_ScheduleWithSessions as ScheduleWithSessions, type index_d$4_Schema as Schema, type index_d$4_SearchDetails as SearchDetails, type index_d$4_SearchServicesRequest as SearchServicesRequest, type index_d$4_SearchServicesResponse as SearchServicesResponse, type index_d$4_SeoSchema as SeoSchema, type index_d$4_Service as Service, type index_d$4_ServiceAvailabilityConstraints as ServiceAvailabilityConstraints, type index_d$4_ServiceCreatedEnvelope as ServiceCreatedEnvelope, type index_d$4_ServiceDeletedEnvelope as ServiceDeletedEnvelope, type index_d$4_ServiceResource as ServiceResource, type index_d$4_ServiceResourceSelectionOneOf as ServiceResourceSelectionOneOf, index_d$4_ServiceType as ServiceType, type index_d$4_ServiceUpdatedEnvelope as ServiceUpdatedEnvelope, type index_d$4_ServicesQueryBuilder as ServicesQueryBuilder, type index_d$4_ServicesQueryResult as ServicesQueryResult, type index_d$4_ServicesUrlsChanged as ServicesUrlsChanged, type index_d$4_Session as Session, type index_d$4_SessionCancelled as SessionCancelled, type index_d$4_SessionCreated as SessionCreated, index_d$4_SessionType as SessionType, type index_d$4_SessionUpdated as SessionUpdated, type index_d$4_SessionVersion as SessionVersion, type index_d$4_SetCustomSlugEvent as SetCustomSlugEvent, type index_d$4_SetCustomSlugRequest as SetCustomSlugRequest, type index_d$4_SetCustomSlugResponse as SetCustomSlugResponse, type index_d$4_SetServiceLocationsRequest as SetServiceLocationsRequest, type index_d$4_SetServiceLocationsResponse as SetServiceLocationsResponse, type index_d$4_Settings as Settings, type index_d$4_SiteCloned as SiteCloned, type index_d$4_SiteCreated as SiteCreated, type index_d$4_SitePropertiesEvent as SitePropertiesEvent, type index_d$4_SitePropertiesNotification as SitePropertiesNotification, type index_d$4_SitePropertiesOnScheduleCreation as SitePropertiesOnScheduleCreation, type index_d$4_Slug as Slug, index_d$4_SortDirection as SortDirection, SortOrder$2 as SortOrder, index_d$4_SortType as SortType, type Sorting$2 as Sorting, type index_d$4_SpecialHourPeriod as SpecialHourPeriod, type index_d$4_SplitInterval as SplitInterval, type index_d$4_StaffData as StaffData, type index_d$4_StaffMediaItem as StaffMediaItem, type index_d$4_StaffMediaItemItemOneOf as StaffMediaItemItemOneOf, type index_d$4_StaffMember as StaffMember, Status$1 as Status, type StreetAddress$2 as StreetAddress, type Subdivision$2 as Subdivision, type index_d$4_SupportedLanguage as SupportedLanguage, type index_d$4_Tag as Tag, type index_d$4_TimePeriod as TimePeriod, type index_d$4_Translation as Translation, index_d$4_Transparency as Transparency, type index_d$4_URLs as URLs, type index_d$4_UpdateService as UpdateService, type index_d$4_UpdateServiceRequest as UpdateServiceRequest, type index_d$4_UpdateServiceResponse as UpdateServiceResponse, type index_d$4_UpdateServiceResponseNonNullableFields as UpdateServiceResponseNonNullableFields, type index_d$4_Upsert as Upsert, type index_d$4_UserDomainInfoChangedEvent as UserDomainInfoChangedEvent, type index_d$4_V1SplitInterval as V1SplitInterval, type index_d$4_V2AvailabilityConstraints as V2AvailabilityConstraints, type index_d$4_V2Category as V2Category, type index_d$4_V2Location as V2Location, type index_d$4_V2LocationOptionsOneOf as V2LocationOptionsOneOf, type index_d$4_V2ParticipantNotification as V2ParticipantNotification, type index_d$4_V2Schedule as V2Schedule, type index_d$4_V4Address as V4Address, type index_d$4_ValidateSlugRequest as ValidateSlugRequest, type index_d$4_ValidateSlugResponse as ValidateSlugResponse, type index_d$4_ValueAggregation as ValueAggregation, type index_d$4_ValueAggregationOptionsOneOf as ValueAggregationOptionsOneOf, type index_d$4_ValueAggregationResult as ValueAggregationResult, type index_d$4_ValueResult as ValueResult, type index_d$4_ValueResults as ValueResults, type index_d$4_VariedPayment as VariedPayment, type index_d$4_Version as Version, type index_d$4_WaitlistPolicy as WaitlistPolicy, WebhookIdentityType$3 as WebhookIdentityType, __metadata$4 as __metadata, index_d$4_countServices as countServices, index_d$4_createService as createService, index_d$4_deleteService as deleteService, index_d$4_getService as getService, index_d$4_onServiceCreated as onServiceCreated, index_d$4_onServiceDeleted as onServiceDeleted, index_d$4_onServiceUpdated as onServiceUpdated, index_d$4_queryServices as queryServices, index_d$4_updateService as updateService };
|
|
14287
14351
|
}
|
|
14288
14352
|
|
|
14289
14353
|
/** Categories are used to group multiple services together. A service must be associated with a category in order to be exposed in the Wix Bookings UI. */
|
|
@@ -8763,7 +8763,9 @@ interface V2Location$1 extends V2LocationOptionsOneOf$1 {
|
|
|
8763
8763
|
* - `CUSTOM`: The location is specific to this service, and is not derived from the business location.
|
|
8764
8764
|
* - `BUSINESS`: A business location, either the default business address, or locations defined for the business by the Business Info [Locations API](https://dev.wix.com/api/rest/business-info/locations).
|
|
8765
8765
|
* - `CUSTOMER`: Will be determined by the customer. For appointments only.
|
|
8766
|
+
* @readonly
|
|
8766
8767
|
*/
|
|
8768
|
+
id?: string;
|
|
8767
8769
|
type?: LocationTypeEnumLocationType$1;
|
|
8768
8770
|
/**
|
|
8769
8771
|
* The location address, based on the location `type`. If `type` is `CUSTOMER`, this address is empty.
|
|
@@ -8847,6 +8849,11 @@ interface BusinessLocationOptions$1 {
|
|
|
8847
8849
|
phone?: string | null;
|
|
8848
8850
|
}
|
|
8849
8851
|
interface CustomLocationOptions$1 {
|
|
8852
|
+
/**
|
|
8853
|
+
* A constant id for the custom location.
|
|
8854
|
+
* @readonly
|
|
8855
|
+
*/
|
|
8856
|
+
id?: string;
|
|
8850
8857
|
/** A custom address for the location. */
|
|
8851
8858
|
address?: CommonAddress$1;
|
|
8852
8859
|
}
|
|
@@ -9510,6 +9517,7 @@ interface CreateServiceResponseNonNullableFields$1 {
|
|
|
9510
9517
|
};
|
|
9511
9518
|
};
|
|
9512
9519
|
custom?: {
|
|
9520
|
+
id: string;
|
|
9513
9521
|
address?: {
|
|
9514
9522
|
streetAddress?: {
|
|
9515
9523
|
number: string;
|
|
@@ -9518,6 +9526,7 @@ interface CreateServiceResponseNonNullableFields$1 {
|
|
|
9518
9526
|
};
|
|
9519
9527
|
};
|
|
9520
9528
|
};
|
|
9529
|
+
id: string;
|
|
9521
9530
|
type: LocationTypeEnumLocationType$1;
|
|
9522
9531
|
calculatedAddress?: {
|
|
9523
9532
|
streetAddress?: {
|
|
@@ -9723,6 +9732,7 @@ interface GetServiceResponseNonNullableFields$1 {
|
|
|
9723
9732
|
};
|
|
9724
9733
|
};
|
|
9725
9734
|
custom?: {
|
|
9735
|
+
id: string;
|
|
9726
9736
|
address?: {
|
|
9727
9737
|
streetAddress?: {
|
|
9728
9738
|
number: string;
|
|
@@ -9731,6 +9741,7 @@ interface GetServiceResponseNonNullableFields$1 {
|
|
|
9731
9741
|
};
|
|
9732
9742
|
};
|
|
9733
9743
|
};
|
|
9744
|
+
id: string;
|
|
9734
9745
|
type: LocationTypeEnumLocationType$1;
|
|
9735
9746
|
calculatedAddress?: {
|
|
9736
9747
|
streetAddress?: {
|
|
@@ -9936,6 +9947,7 @@ interface UpdateServiceResponseNonNullableFields$1 {
|
|
|
9936
9947
|
};
|
|
9937
9948
|
};
|
|
9938
9949
|
custom?: {
|
|
9950
|
+
id: string;
|
|
9939
9951
|
address?: {
|
|
9940
9952
|
streetAddress?: {
|
|
9941
9953
|
number: string;
|
|
@@ -9944,6 +9956,7 @@ interface UpdateServiceResponseNonNullableFields$1 {
|
|
|
9944
9956
|
};
|
|
9945
9957
|
};
|
|
9946
9958
|
};
|
|
9959
|
+
id: string;
|
|
9947
9960
|
type: LocationTypeEnumLocationType$1;
|
|
9948
9961
|
calculatedAddress?: {
|
|
9949
9962
|
streetAddress?: {
|
|
@@ -10149,6 +10162,7 @@ interface QueryServicesResponseNonNullableFields$1 {
|
|
|
10149
10162
|
};
|
|
10150
10163
|
};
|
|
10151
10164
|
custom?: {
|
|
10165
|
+
id: string;
|
|
10152
10166
|
address?: {
|
|
10153
10167
|
streetAddress?: {
|
|
10154
10168
|
number: string;
|
|
@@ -10157,6 +10171,7 @@ interface QueryServicesResponseNonNullableFields$1 {
|
|
|
10157
10171
|
};
|
|
10158
10172
|
};
|
|
10159
10173
|
};
|
|
10174
|
+
id: string;
|
|
10160
10175
|
type: LocationTypeEnumLocationType$1;
|
|
10161
10176
|
calculatedAddress?: {
|
|
10162
10177
|
streetAddress?: {
|
|
@@ -10581,7 +10596,9 @@ interface V2Location extends V2LocationOptionsOneOf {
|
|
|
10581
10596
|
* - `CUSTOM`: The location is specific to this service, and is not derived from the business location.
|
|
10582
10597
|
* - `BUSINESS`: A business location, either the default business address, or locations defined for the business by the Business Info [Locations API](https://dev.wix.com/api/rest/business-info/locations).
|
|
10583
10598
|
* - `CUSTOMER`: Will be determined by the customer. For appointments only.
|
|
10599
|
+
* @readonly
|
|
10584
10600
|
*/
|
|
10601
|
+
_id?: string;
|
|
10585
10602
|
type?: LocationTypeEnumLocationType;
|
|
10586
10603
|
/**
|
|
10587
10604
|
* The location address, based on the location `type`. If `type` is `CUSTOMER`, this address is empty.
|
|
@@ -10665,6 +10682,11 @@ interface BusinessLocationOptions {
|
|
|
10665
10682
|
phone?: string | null;
|
|
10666
10683
|
}
|
|
10667
10684
|
interface CustomLocationOptions {
|
|
10685
|
+
/**
|
|
10686
|
+
* A constant id for the custom location.
|
|
10687
|
+
* @readonly
|
|
10688
|
+
*/
|
|
10689
|
+
_id?: string;
|
|
10668
10690
|
/** A custom address for the location. */
|
|
10669
10691
|
address?: CommonAddress;
|
|
10670
10692
|
}
|
|
@@ -11299,6 +11321,10 @@ interface CreateServiceResponseNonNullableFields {
|
|
|
11299
11321
|
_id: string;
|
|
11300
11322
|
name: string;
|
|
11301
11323
|
};
|
|
11324
|
+
custom?: {
|
|
11325
|
+
_id: string;
|
|
11326
|
+
};
|
|
11327
|
+
_id: string;
|
|
11302
11328
|
type: LocationTypeEnumLocationType;
|
|
11303
11329
|
}[];
|
|
11304
11330
|
bookingPolicy?: {
|
|
@@ -11446,6 +11472,10 @@ interface GetServiceResponseNonNullableFields {
|
|
|
11446
11472
|
_id: string;
|
|
11447
11473
|
name: string;
|
|
11448
11474
|
};
|
|
11475
|
+
custom?: {
|
|
11476
|
+
_id: string;
|
|
11477
|
+
};
|
|
11478
|
+
_id: string;
|
|
11449
11479
|
type: LocationTypeEnumLocationType;
|
|
11450
11480
|
}[];
|
|
11451
11481
|
bookingPolicy?: {
|
|
@@ -11593,6 +11623,10 @@ interface UpdateServiceResponseNonNullableFields {
|
|
|
11593
11623
|
_id: string;
|
|
11594
11624
|
name: string;
|
|
11595
11625
|
};
|
|
11626
|
+
custom?: {
|
|
11627
|
+
_id: string;
|
|
11628
|
+
};
|
|
11629
|
+
_id: string;
|
|
11596
11630
|
type: LocationTypeEnumLocationType;
|
|
11597
11631
|
}[];
|
|
11598
11632
|
bookingPolicy?: {
|
|
@@ -11740,6 +11774,10 @@ interface QueryServicesResponseNonNullableFields {
|
|
|
11740
11774
|
_id: string;
|
|
11741
11775
|
name: string;
|
|
11742
11776
|
};
|
|
11777
|
+
custom?: {
|
|
11778
|
+
_id: string;
|
|
11779
|
+
};
|
|
11780
|
+
_id: string;
|
|
11743
11781
|
type: LocationTypeEnumLocationType;
|
|
11744
11782
|
}[];
|
|
11745
11783
|
bookingPolicy?: {
|