@wix/auto_sdk_bookings_services 1.0.255 → 1.0.257

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/build/{internal/cjs/bookings-services-v2-service-services.universal-B7pWpsjJ.d.ts → cjs/bookings-services-v2-service-services.universal-WPb4Ckct.d.ts} +100 -208
  2. package/build/cjs/index.d.ts +10 -10
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +2 -2
  5. package/build/cjs/index.typings.js.map +1 -1
  6. package/build/cjs/meta.d.ts +106 -39
  7. package/build/cjs/meta.js +3 -0
  8. package/build/cjs/meta.js.map +1 -1
  9. package/build/cjs/schemas.d.ts +572 -57
  10. package/build/cjs/schemas.js +1459 -340
  11. package/build/cjs/schemas.js.map +1 -1
  12. package/build/{internal/es/bookings-services-v2-service-services.universal-B7pWpsjJ.d.mts → es/bookings-services-v2-service-services.universal-WPb4Ckct.d.mts} +100 -208
  13. package/build/es/index.d.mts +10 -10
  14. package/build/es/index.mjs.map +1 -1
  15. package/build/es/index.typings.d.mts +2 -2
  16. package/build/es/index.typings.mjs.map +1 -1
  17. package/build/es/meta.d.mts +106 -39
  18. package/build/es/meta.mjs +3 -0
  19. package/build/es/meta.mjs.map +1 -1
  20. package/build/es/schemas.d.mts +572 -57
  21. package/build/es/schemas.mjs +1465 -346
  22. package/build/es/schemas.mjs.map +1 -1
  23. package/build/{cjs/bookings-services-v2-service-services.universal-eA4yFYhG.d.ts → internal/cjs/bookings-services-v2-service-services.universal-BEPcsrix.d.ts} +263 -61
  24. package/build/internal/cjs/index.d.ts +10 -10
  25. package/build/internal/cjs/index.js.map +1 -1
  26. package/build/internal/cjs/index.typings.d.ts +2 -2
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +106 -39
  29. package/build/internal/cjs/meta.js +3 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/cjs/schemas.d.ts +572 -57
  32. package/build/internal/cjs/schemas.js +1459 -340
  33. package/build/internal/cjs/schemas.js.map +1 -1
  34. package/build/{es/bookings-services-v2-service-services.universal-eA4yFYhG.d.mts → internal/es/bookings-services-v2-service-services.universal-BEPcsrix.d.mts} +263 -61
  35. package/build/internal/es/index.d.mts +10 -10
  36. package/build/internal/es/index.mjs.map +1 -1
  37. package/build/internal/es/index.typings.d.mts +2 -2
  38. package/build/internal/es/index.typings.mjs.map +1 -1
  39. package/build/internal/es/meta.d.mts +106 -39
  40. package/build/internal/es/meta.mjs +3 -0
  41. package/build/internal/es/meta.mjs.map +1 -1
  42. package/build/internal/es/schemas.d.mts +572 -57
  43. package/build/internal/es/schemas.mjs +1465 -346
  44. package/build/internal/es/schemas.mjs.map +1 -1
  45. package/package.json +2 -2
@@ -176,8 +176,18 @@ interface Service {
176
176
  addOnDetails?: AddOnDetails[];
177
177
  /** Taxable address used to calculate tax */
178
178
  taxableAddress?: TaxableAddress;
179
- /** Whether to inherit resource locations for availability resolution. */
180
- inheritResourceLocations?: boolean | null;
179
+ /**
180
+ * ID of the [resource type](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resource-types-v2/introduction)
181
+ * that serves as the primary resource for this appointment service. The primary resource type
182
+ * determines which resources drive slot assignment and availability resolution.
183
+ *
184
+ * For example, when set to a "Meeting Rooms" resource type, availability is calculated
185
+ * based on the rooms' schedules rather than staff schedules.
186
+ *
187
+ * Default: The staff resource type.
188
+ * @format GUID
189
+ */
190
+ primaryResourceType?: string | null;
181
191
  }
182
192
  declare enum ServiceType {
183
193
  /** Appointment-based service. */
@@ -364,6 +374,13 @@ interface FixedPayment {
364
374
  * Default: `false`.
365
375
  */
366
376
  fullUpfrontPaymentAllowed?: boolean | null;
377
+ /**
378
+ * The deposit required to book the service, expressed as either a fixed amount or a percentage of the price.
379
+ *
380
+ * Used only when `paymentOptions.deposit` is `true`.
381
+ * @internal
382
+ */
383
+ depositDetails?: DepositDetails;
367
384
  }
368
385
  /**
369
386
  * Money.
@@ -422,6 +439,13 @@ interface VariedPayment {
422
439
  * Default: `false`.
423
440
  */
424
441
  fullUpfrontPaymentAllowed?: boolean | null;
442
+ /**
443
+ * The deposit required to book the service, expressed as either a fixed amount or a percentage of the price.
444
+ *
445
+ * Used only when `paymentOptions.deposit` is `true`.
446
+ * @internal
447
+ */
448
+ depositDetails?: DepositDetails;
425
449
  }
426
450
  interface SubscriptionPayment {
427
451
  /**
@@ -1247,9 +1271,6 @@ interface AvailabilityConstraints {
1247
1271
  * - For appointment-based services, specify `sessionDurations` when creating a service.
1248
1272
  * - For appointment-based services with varied pricing by session length, you must still specify `sessionDurations`, but the values are ignored. Actual durations are taken from the [service variants](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/service-options-and-variants/introduction).
1249
1273
  * - For classes or courses, don't specify `sessionDurations` when creating a service.
1250
- *
1251
- * Min: `1` minute
1252
- * Max: `44639` minutes (30 days, 23 hours, and 59 minutes)
1253
1274
  * @min 1
1254
1275
  * @max 44639
1255
1276
  * @maxSize 50
@@ -1257,83 +1278,102 @@ interface AvailabilityConstraints {
1257
1278
  sessionDurations?: number[];
1258
1279
  /**
1259
1280
  * The number of minutes between the end of a session and the start of the next.
1260
- *
1261
- *
1262
- * Min: `0` minutes
1263
- * Max: `720` minutes
1264
1281
  * @max 720
1265
1282
  */
1266
1283
  timeBetweenSessions?: number;
1284
+ /**
1285
+ * Duration range for the service. When set, the customer picks a duration
1286
+ * within the configured min/max range instead of a fixed session duration.
1287
+ * Mutually exclusive with `sessionDurations`. A service uses one or the other.
1288
+ * Can't be combined with `workingHours`.
1289
+ *
1290
+ * Use `durationRange` for services where the customer chooses how long to book,
1291
+ * such as equipment or space rentals. The `unitType` determines whether the range
1292
+ * is measured in hours or days.
1293
+ */
1294
+ durationRange?: DurationRange;
1295
+ /**
1296
+ * Determines how the service's own working hours combine with the working hours of its assigned
1297
+ * staff members and required resources. Supported for appointment services only, and can't be
1298
+ * combined with `durationRange`.
1299
+ *
1300
+ * Leave unset for resource-based availability, the default and only valid state for class,
1301
+ * course, and duration-range services. The service's own working hours are the `WORKING_HOURS`
1302
+ * [events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/introduction)
1303
+ * on this service's schedule (`schedule.id`); this field controls only how those events combine
1304
+ * with the resources working hours, it doesn't contain the hours themselves.
1305
+ * @internal
1306
+ */
1307
+ workingHours?: WorkingHours;
1267
1308
  }
1268
1309
  interface V2Duration {
1269
1310
  /**
1270
1311
  * The duration of the service in minutes.
1271
- *
1272
- * Min: `1` minute
1273
- * Max: `44639` minutes (30 days, 23 hours, and 59 minutes)
1274
1312
  * @min 1
1275
1313
  * @max 44639
1276
1314
  */
1277
1315
  minutes?: number;
1278
1316
  }
1279
- /** Duration range configuration for a service. */
1317
+ /**
1318
+ * Duration range configuration for a service. Defines the minimum and maximum
1319
+ * booking duration a customer can select, and the unit of measurement.
1320
+ *
1321
+ * For hourly services, durations are configured in minutes via `hourOptions`.
1322
+ * For daily services, durations are configured in days via `dayOptions`.
1323
+ */
1280
1324
  interface DurationRange extends DurationRangeConfigOneOf {
1281
- /** Configuration for hourly duration. Set when `unit_type` is `HOUR`. */
1325
+ /** Configuration for hourly duration ranges. Set when `unitType` is `HOUR`. */
1282
1326
  hourOptions?: HourlyConfig;
1283
- /** Configuration for daily duration. Set when `unit_type` is `DAY`. */
1327
+ /** Configuration for daily duration ranges. Set when `unitType` is `DAY`. */
1284
1328
  dayOptions?: DailyConfig;
1285
- /** The unit type for this duration range. */
1329
+ /** The unit type for this duration range. Determines which configuration to use in the `config` union. */
1286
1330
  unitType?: UnitTypeWithLiterals;
1287
1331
  }
1288
1332
  /** @oneof */
1289
1333
  interface DurationRangeConfigOneOf {
1290
- /** Configuration for hourly duration. Set when `unit_type` is `HOUR`. */
1334
+ /** Configuration for hourly duration ranges. Set when `unitType` is `HOUR`. */
1291
1335
  hourOptions?: HourlyConfig;
1292
- /** Configuration for daily duration. Set when `unit_type` is `DAY`. */
1336
+ /** Configuration for daily duration ranges. Set when `unitType` is `DAY`. */
1293
1337
  dayOptions?: DailyConfig;
1294
1338
  }
1295
1339
  /** The booking unit for the duration range. */
1296
1340
  declare enum UnitType {
1341
+ /** Hourly booking unit. Durations are configured in minutes via `hourOptions`. */
1342
+ HOUR = "HOUR",
1343
+ /** Daily booking unit. Durations are configured in days via `dayOptions`. */
1344
+ DAY = "DAY"
1297
1345
  }
1298
1346
  /** @enumType */
1299
- type UnitTypeWithLiterals = UnitType;
1300
- /** Hourly duration configuration. Values are in minutes. */
1347
+ type UnitTypeWithLiterals = UnitType | 'HOUR' | 'DAY';
1348
+ /** Hourly duration configuration. Durations are specified in minutes. */
1301
1349
  interface HourlyConfig {
1302
1350
  /**
1303
- * Minimum bookable duration in minutes.
1304
- *
1305
- * Min: `30` minutes
1306
- * Max: `1440` minutes (24 hours)
1351
+ * Minimum bookable duration in minutes. The customer can't book for less than this duration.
1307
1352
  * @min 30
1308
1353
  * @max 1440
1309
1354
  */
1310
1355
  minDurationInMinutes?: number;
1311
1356
  /**
1312
- * Maximum bookable duration in minutes.
1357
+ * Maximum bookable duration in minutes. The customer can't book for more than this duration.
1313
1358
  *
1314
- * Min: `30` minutes
1315
- * Max: `1440` minutes (24 hours)
1359
+ * Must be greater than or equal to `minDurationInMinutes`.
1316
1360
  * @min 30
1317
1361
  * @max 1440
1318
1362
  */
1319
1363
  maxDurationInMinutes?: number;
1320
1364
  }
1321
- /** Daily duration configuration. Values are in days. */
1365
+ /** Daily duration configuration. Durations are specified in days. */
1322
1366
  interface DailyConfig {
1323
1367
  /**
1324
- * Minimum bookable duration in days.
1325
- *
1326
- * Min: `1` day
1327
- * Max: `8` days
1368
+ * Minimum bookable duration in days. The customer can't book for less than this number of days.
1328
1369
  * @min 1
1329
1370
  * @max 8
1330
1371
  */
1331
1372
  minDurationInDays?: number;
1332
1373
  /**
1333
- * Maximum bookable duration in days.
1374
+ * Maximum bookable duration in days. The customer can't book for more than this number of days.
1334
1375
  *
1335
- * Min: `1` day
1336
- * Max: `8` days
1376
+ * Must be greater than or equal to `minDurationInDays`.
1337
1377
  * @min 1
1338
1378
  * @max 8
1339
1379
  */
@@ -1350,6 +1390,20 @@ interface WorkingHours {
1350
1390
  mode?: WorkingHoursModeWithLiterals;
1351
1391
  }
1352
1392
  declare enum WorkingHoursMode {
1393
+ /**
1394
+ * Bookable only where the service's own working hours and the resources working hours
1395
+ * overlap (the intersection of the two).
1396
+ * @documentationMaturity preview
1397
+ * @internal
1398
+ */
1399
+ INTERSECT_RESOURCE_HOURS = "INTERSECT_RESOURCE_HOURS",
1400
+ /**
1401
+ * The service's own working hours replace the resources working-hours window. Existing
1402
+ * bookings and blocked time on those resources still reduce availability.
1403
+ * @documentationMaturity preview
1404
+ * @internal
1405
+ */
1406
+ OVERRIDE_RESOURCE_HOURS = "OVERRIDE_RESOURCE_HOURS"
1353
1407
  }
1354
1408
  /** @enumType */
1355
1409
  type WorkingHoursModeWithLiterals = WorkingHoursMode;
@@ -1447,11 +1501,33 @@ interface ResourceIds {
1447
1501
  values?: string[];
1448
1502
  }
1449
1503
  interface ServiceResource extends ServiceResourceSelectionOneOf {
1504
+ /**
1505
+ * IDs of specific [resources](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/introduction)
1506
+ * assigned to this service resource. Each ID must reference a resource within the specified `resourceType`.
1507
+ *
1508
+ * When set, only these resources are considered for availability and booking.
1509
+ * When not set, all resources of the specified resource type are eligible.
1510
+ */
1511
+ resourceIds?: ResourceIds;
1450
1512
  /** Details about the required [resource type](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resource-types-v2/introduction). */
1451
1513
  resourceType?: ResourceType;
1514
+ /**
1515
+ * Details about the individual resources assigned to this service resource, including their names.
1516
+ * Only returned when `RESOURCE_DETAILS` is passed in `conditionalFields`.
1517
+ * @internal
1518
+ */
1519
+ resourceDetails?: ResourceDetails;
1452
1520
  }
1453
1521
  /** @oneof */
1454
1522
  interface ServiceResourceSelectionOneOf {
1523
+ /**
1524
+ * IDs of specific [resources](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/introduction)
1525
+ * assigned to this service resource. Each ID must reference a resource within the specified `resourceType`.
1526
+ *
1527
+ * When set, only these resources are considered for availability and booking.
1528
+ * When not set, all resources of the specified resource type are eligible.
1529
+ */
1530
+ resourceIds?: ResourceIds;
1455
1531
  }
1456
1532
  interface ResourceType {
1457
1533
  /**
@@ -1861,6 +1937,33 @@ interface Booking extends BookingParticipantsInfoOneOf {
1861
1937
  * When the service supports deposit payments and `fullUpfrontPaymentAllowed` is `true`, this field can be `true` or `false`.
1862
1938
  */
1863
1939
  depositSelected?: boolean | null;
1940
+ /**
1941
+ * Whether the booking is scheduled to be canceled at the end of the current
1942
+ * billing period.
1943
+ *
1944
+ * Applies only to bookings paid through a monthly subscription (course bookings).
1945
+ * The booking remains `CONFIRMED` until the cancellation is finalized at period
1946
+ * end. The effective date is available through Query Extended Bookings.
1947
+ * @internal
1948
+ * @readonly
1949
+ */
1950
+ cancellationScheduled?: boolean | null;
1951
+ /**
1952
+ * ID of the recurring booking group this booking belongs to.
1953
+ *
1954
+ * A recurring booking group is a set of independent bookings you link together
1955
+ * by supplying the same GUID in this field when calling `CreateBooking` or
1956
+ * `BulkCreateBooking`. All bookings in the group correspond to calendar events
1957
+ * that share the same [schedule ID](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction).
1958
+ *
1959
+ * This field is always empty for course bookings, which don't support recurring booking groups.
1960
+ *
1961
+ * To cancel all bookings in the series, pass this ID to
1962
+ * `BulkCancelBooking` via `RecurringCancellation.recurringGroupId`.
1963
+ * @internal
1964
+ * @format GUID
1965
+ */
1966
+ recurringGroupId?: string | null;
1864
1967
  }
1865
1968
  /** @oneof */
1866
1969
  interface BookingParticipantsInfoOneOf {
@@ -2556,6 +2659,16 @@ interface ServiceChoice extends ServiceChoiceChoiceOneOf {
2556
2659
  */
2557
2660
  custom?: string;
2558
2661
  duration?: Duration;
2662
+ /**
2663
+ * The matched date-time pricing rule. Available only for `DATE_TIME` options.
2664
+ * @internal
2665
+ */
2666
+ dateTime?: DateTimeRule;
2667
+ /**
2668
+ * The matched participants pricing rule. Available only for `NUMBER_OF_PARTICIPANTS` options.
2669
+ * @internal
2670
+ */
2671
+ participantRange?: ParticipantsRange;
2559
2672
  /**
2560
2673
  * ID of the corresponding option for the choice. For example, the choice `child`
2561
2674
  * could correspond to the option `ageGroup`. In this case, `optionId` is the ID
@@ -2574,6 +2687,16 @@ interface ServiceChoiceChoiceOneOf {
2574
2687
  */
2575
2688
  custom?: string;
2576
2689
  duration?: Duration;
2690
+ /**
2691
+ * The matched date-time pricing rule. Available only for `DATE_TIME` options.
2692
+ * @internal
2693
+ */
2694
+ dateTime?: DateTimeRule;
2695
+ /**
2696
+ * The matched participants pricing rule. Available only for `NUMBER_OF_PARTICIPANTS` options.
2697
+ * @internal
2698
+ */
2699
+ participantRange?: ParticipantsRange;
2577
2700
  }
2578
2701
  interface Duration {
2579
2702
  /**
@@ -2808,6 +2931,39 @@ interface AccountInfo {
2808
2931
  */
2809
2932
  siteId?: string | null;
2810
2933
  }
2934
+ /**
2935
+ * A deposit expressed as exactly one of a fixed monetary amount or a percentage of the full service price.
2936
+ * Structurally exclusive: at most one of `amount` or `percentage` may be set.
2937
+ */
2938
+ interface DepositDetails extends DepositDetailsValueOneOf {
2939
+ /** The deposit as a fixed monetary amount. */
2940
+ amount?: Money;
2941
+ /**
2942
+ * The deposit as a percentage of the full service price, for example `20` for 20% or `20.5` for 20.5%.
2943
+ * Resolved to a concrete amount when the customer books.
2944
+ *
2945
+ * Min: `0.01` percent
2946
+ * Max: `99.99` percent
2947
+ * @format DECIMAL_VALUE
2948
+ * @decimalValue options { gte:0.01, lte:99.99, maxScale:2 }
2949
+ */
2950
+ percentage?: string | null;
2951
+ }
2952
+ /** @oneof */
2953
+ interface DepositDetailsValueOneOf {
2954
+ /** The deposit as a fixed monetary amount. */
2955
+ amount?: Money;
2956
+ /**
2957
+ * The deposit as a percentage of the full service price, for example `20` for 20% or `20.5` for 20.5%.
2958
+ * Resolved to a concrete amount when the customer books.
2959
+ *
2960
+ * Min: `0.01` percent
2961
+ * Max: `99.99` percent
2962
+ * @format DECIMAL_VALUE
2963
+ * @decimalValue options { gte:0.01, lte:99.99, maxScale:2 }
2964
+ */
2965
+ percentage?: string | null;
2966
+ }
2811
2967
  interface CreateServiceRequest {
2812
2968
  /** Service to create. */
2813
2969
  service: Service;
@@ -2911,10 +3067,15 @@ declare enum V2RequestedFields {
2911
3067
  /** Returns the name of each service resource's resource type (for example, `'Meeting rooms'` or `'Equipment'`). See `serviceResources.resourceType.name`. */
2912
3068
  RESOURCE_TYPE_DETAILS = "RESOURCE_TYPE_DETAILS",
2913
3069
  /** When passed, `service.payment.discountInfo` is returned. */
2914
- DISCOUNT_INFO_DETAILS = "DISCOUNT_INFO_DETAILS"
3070
+ DISCOUNT_INFO_DETAILS = "DISCOUNT_INFO_DETAILS",
3071
+ /**
3072
+ * Returns details about each individual resource assigned to a service resource, including the resource name. See `serviceResources.resourceDetails`.
3073
+ * @documentationMaturity preview
3074
+ */
3075
+ RESOURCE_DETAILS = "RESOURCE_DETAILS"
2915
3076
  }
2916
3077
  /** @enumType */
2917
- type V2RequestedFieldsWithLiterals = V2RequestedFields | 'STAFF_MEMBER_DETAILS' | 'RESOURCE_TYPE_DETAILS' | 'DISCOUNT_INFO_DETAILS';
3078
+ type V2RequestedFieldsWithLiterals = V2RequestedFields | 'STAFF_MEMBER_DETAILS' | 'RESOURCE_TYPE_DETAILS' | 'DISCOUNT_INFO_DETAILS' | 'RESOURCE_DETAILS';
2918
3079
  interface GetServiceResponse {
2919
3080
  /** Retrieved service. */
2920
3081
  service?: Service;
@@ -3051,6 +3212,13 @@ interface DeleteServiceRequest {
3051
3212
  * custom message.
3052
3213
  */
3053
3214
  participantNotification?: V2ParticipantNotification;
3215
+ /**
3216
+ * Whether to cancel active subscriptions associated with the service's bookings.
3217
+ *
3218
+ * Default: `false`.
3219
+ * @internal
3220
+ */
3221
+ cancelSubscription?: boolean | null;
3054
3222
  }
3055
3223
  interface V2ParticipantNotification {
3056
3224
  /**
@@ -3085,6 +3253,13 @@ interface BulkDeleteServicesRequest {
3085
3253
  * custom message.
3086
3254
  */
3087
3255
  participantNotification?: V2ParticipantNotification;
3256
+ /**
3257
+ * Whether to cancel active subscriptions associated with the service's bookings.
3258
+ *
3259
+ * Default: `false`.
3260
+ * @internal
3261
+ */
3262
+ cancelSubscription?: boolean | null;
3088
3263
  }
3089
3264
  interface BulkDeleteServicesResponse {
3090
3265
  /** The result of each service removal. */
@@ -3103,6 +3278,13 @@ interface BulkDeleteServicesByFilterRequest {
3103
3278
  preserveFutureSessionsWithParticipants?: boolean;
3104
3279
  /** Whether to notify participants about the change and an optional custom message. */
3105
3280
  participantNotification?: V2ParticipantNotification;
3281
+ /**
3282
+ * Whether to cancel active subscriptions associated with the service's bookings.
3283
+ *
3284
+ * Default: `false`.
3285
+ * @internal
3286
+ */
3287
+ cancelSubscription?: boolean | null;
3106
3288
  }
3107
3289
  interface BulkDeleteServicesByFilterResponse {
3108
3290
  /**
@@ -5188,7 +5370,7 @@ declare function onServiceUpdated(handler: (event: ServiceUpdatedEnvelope) => vo
5188
5370
  * @returns Created service.
5189
5371
  * @fqn wix.bookings.services.v2.ServicesService.CreateService
5190
5372
  */
5191
- declare function createService(service: Service): Promise<NonNullablePaths<Service, `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.subscription.frequency` | `payment.subscription.firstChargeDate` | `payment.rateType` | `payment.pricingPlanIds` | `payment.addOnOption` | `payment.discountInfo.discountName` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `staffMemberIds` | `staffMemberDetails.staffMembers` | `staffMemberDetails.staffMembers.${number}.staffMemberId` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `addOnGroups` | `addOnDetails` | `taxableAddress.taxableAddressType`, 6> & {
5373
+ declare function createService(service: Service): Promise<NonNullablePaths<Service, `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.subscription.frequency` | `payment.subscription.firstChargeDate` | `payment.rateType` | `payment.pricingPlanIds` | `payment.addOnOption` | `payment.discountInfo.discountName` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `schedule.availabilityConstraints.durationRange.hourOptions.minDurationInMinutes` | `schedule.availabilityConstraints.durationRange.hourOptions.maxDurationInMinutes` | `schedule.availabilityConstraints.durationRange.dayOptions.minDurationInDays` | `schedule.availabilityConstraints.durationRange.dayOptions.maxDurationInDays` | `schedule.availabilityConstraints.durationRange.unitType` | `staffMemberIds` | `staffMemberDetails.staffMembers` | `staffMemberDetails.staffMembers.${number}.staffMemberId` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `addOnGroups` | `addOnDetails` | `taxableAddress.taxableAddressType`, 6> & {
5192
5374
  __validationErrorsType?: CreateServiceValidationErrors;
5193
5375
  }>;
5194
5376
  /**
@@ -5232,7 +5414,7 @@ interface BulkCreateServicesOptions {
5232
5414
  * @returns Retrieved service.
5233
5415
  * @fqn wix.bookings.services.v2.ServicesService.GetService
5234
5416
  */
5235
- declare function getService(serviceId: string, options?: GetServiceOptions): Promise<NonNullablePaths<Service, `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.subscription.frequency` | `payment.subscription.firstChargeDate` | `payment.rateType` | `payment.pricingPlanIds` | `payment.addOnOption` | `payment.discountInfo.discountName` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `staffMemberIds` | `staffMemberDetails.staffMembers` | `staffMemberDetails.staffMembers.${number}.staffMemberId` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `addOnGroups` | `addOnDetails` | `taxableAddress.taxableAddressType`, 6>>;
5417
+ declare function getService(serviceId: string, options?: GetServiceOptions): Promise<NonNullablePaths<Service, `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.subscription.frequency` | `payment.subscription.firstChargeDate` | `payment.rateType` | `payment.pricingPlanIds` | `payment.addOnOption` | `payment.discountInfo.discountName` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `schedule.availabilityConstraints.durationRange.hourOptions.minDurationInMinutes` | `schedule.availabilityConstraints.durationRange.hourOptions.maxDurationInMinutes` | `schedule.availabilityConstraints.durationRange.dayOptions.minDurationInDays` | `schedule.availabilityConstraints.durationRange.dayOptions.maxDurationInDays` | `schedule.availabilityConstraints.durationRange.unitType` | `staffMemberIds` | `staffMemberDetails.staffMembers` | `staffMemberDetails.staffMembers.${number}.staffMemberId` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `addOnGroups` | `addOnDetails` | `taxableAddress.taxableAddressType`, 6>>;
5236
5418
  interface GetServiceOptions {
5237
5419
  /**
5238
5420
  * Conditional fields to return.
@@ -5275,7 +5457,7 @@ interface GetServiceOptions {
5275
5457
  * @returns Updated service.
5276
5458
  * @fqn wix.bookings.services.v2.ServicesService.UpdateService
5277
5459
  */
5278
- declare function updateService(_id: string, service: NonNullablePaths<UpdateService, `revision`, 2>): Promise<NonNullablePaths<Service, `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.subscription.frequency` | `payment.subscription.firstChargeDate` | `payment.rateType` | `payment.pricingPlanIds` | `payment.addOnOption` | `payment.discountInfo.discountName` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `staffMemberIds` | `staffMemberDetails.staffMembers` | `staffMemberDetails.staffMembers.${number}.staffMemberId` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `addOnGroups` | `addOnDetails` | `taxableAddress.taxableAddressType`, 6> & {
5460
+ declare function updateService(_id: string, service: NonNullablePaths<UpdateService, `revision`, 2>): Promise<NonNullablePaths<Service, `type` | `media.items` | `category._id` | `form._id` | `payment.fixed.price.value` | `payment.fixed.price.currency` | `payment.subscription.frequency` | `payment.subscription.firstChargeDate` | `payment.rateType` | `payment.pricingPlanIds` | `payment.addOnOption` | `payment.discountInfo.discountName` | `locations` | `locations.${number}.business._id` | `locations.${number}.business.name` | `locations.${number}.custom._id` | `locations.${number}._id` | `locations.${number}.type` | `bookingPolicy._id` | `bookingPolicy.customPolicyDescription.enabled` | `bookingPolicy.customPolicyDescription.description` | `bookingPolicy.limitEarlyBookingPolicy.enabled` | `bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `bookingPolicy.limitLateBookingPolicy.enabled` | `bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `bookingPolicy.bookAfterStartPolicy.enabled` | `bookingPolicy.cancellationPolicy.enabled` | `bookingPolicy.cancellationPolicy.limitLatestCancellation` | `bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `bookingPolicy.reschedulePolicy.enabled` | `bookingPolicy.reschedulePolicy.limitLatestReschedule` | `bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `bookingPolicy.waitlistPolicy.enabled` | `bookingPolicy.waitlistPolicy.capacity` | `bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `bookingPolicy.resourcesPolicy.enabled` | `bookingPolicy.resourcesPolicy.autoAssignAllowed` | `bookingPolicy.cancellationFeePolicy.enabled` | `bookingPolicy.cancellationFeePolicy.cancellationWindows` | `bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `bookingPolicy.saveCreditCardPolicy.enabled` | `schedule.availabilityConstraints.durations` | `schedule.availabilityConstraints.durations.${number}.minutes` | `schedule.availabilityConstraints.sessionDurations` | `schedule.availabilityConstraints.timeBetweenSessions` | `schedule.availabilityConstraints.durationRange.hourOptions.minDurationInMinutes` | `schedule.availabilityConstraints.durationRange.hourOptions.maxDurationInMinutes` | `schedule.availabilityConstraints.durationRange.dayOptions.minDurationInDays` | `schedule.availabilityConstraints.durationRange.dayOptions.maxDurationInDays` | `schedule.availabilityConstraints.durationRange.unitType` | `staffMemberIds` | `staffMemberDetails.staffMembers` | `staffMemberDetails.staffMembers.${number}.staffMemberId` | `serviceResources` | `supportedSlugs` | `supportedSlugs.${number}.name` | `seoData.tags` | `seoData.tags.${number}.type` | `seoData.tags.${number}.children` | `seoData.tags.${number}.custom` | `seoData.tags.${number}.disabled` | `seoData.settings.preventAutoRedirect` | `seoData.settings.keywords` | `seoData.settings.keywords.${number}.term` | `seoData.settings.keywords.${number}.isMain` | `addOnGroups` | `addOnDetails` | `taxableAddress.taxableAddressType`, 6> & {
5279
5461
  __validationErrorsType?: UpdateServiceValidationErrors;
5280
5462
  }>;
5281
5463
  interface UpdateService {
@@ -5452,8 +5634,18 @@ interface UpdateService {
5452
5634
  addOnDetails?: AddOnDetails[];
5453
5635
  /** Taxable address used to calculate tax */
5454
5636
  taxableAddress?: TaxableAddress;
5455
- /** Whether to inherit resource locations for availability resolution. */
5456
- inheritResourceLocations?: boolean | null;
5637
+ /**
5638
+ * ID of the [resource type](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resource-types-v2/introduction)
5639
+ * that serves as the primary resource for this appointment service. The primary resource type
5640
+ * determines which resources drive slot assignment and availability resolution.
5641
+ *
5642
+ * For example, when set to a "Meeting Rooms" resource type, availability is calculated
5643
+ * based on the rooms' schedules rather than staff schedules.
5644
+ *
5645
+ * Default: The staff resource type.
5646
+ * @format GUID
5647
+ */
5648
+ primaryResourceType?: string | null;
5457
5649
  }
5458
5650
  /**
5459
5651
  * Updates up to 100 services.
@@ -5533,6 +5725,13 @@ interface DeleteServiceOptions {
5533
5725
  * custom message.
5534
5726
  */
5535
5727
  participantNotification?: V2ParticipantNotification;
5728
+ /**
5729
+ * Whether to cancel active subscriptions associated with the service's bookings.
5730
+ *
5731
+ * Default: `false`.
5732
+ * @internal
5733
+ */
5734
+ cancelSubscription?: boolean | null;
5536
5735
  }
5537
5736
  /**
5538
5737
  * Deletes multiple services.
@@ -5563,6 +5762,13 @@ interface BulkDeleteServicesOptions {
5563
5762
  * custom message.
5564
5763
  */
5565
5764
  participantNotification?: V2ParticipantNotification;
5765
+ /**
5766
+ * Whether to cancel active subscriptions associated with the service's bookings.
5767
+ *
5768
+ * Default: `false`.
5769
+ * @internal
5770
+ */
5771
+ cancelSubscription?: boolean | null;
5566
5772
  }
5567
5773
  /**
5568
5774
  * Deletes multiple services by filter.
@@ -5596,6 +5802,13 @@ interface BulkDeleteServicesByFilterOptions {
5596
5802
  preserveFutureSessionsWithParticipants?: boolean;
5597
5803
  /** Whether to notify participants about the change and an optional custom message. */
5598
5804
  participantNotification?: V2ParticipantNotification;
5805
+ /**
5806
+ * Whether to cancel active subscriptions associated with the service's bookings.
5807
+ *
5808
+ * Default: `false`.
5809
+ * @internal
5810
+ */
5811
+ cancelSubscription?: boolean | null;
5599
5812
  }
5600
5813
  /**
5601
5814
  * Creates a query to retrieve a list of `service` objects.
@@ -5787,21 +6000,10 @@ declare const utils: {
5787
6000
  query: {
5788
6001
  QueryBuilder: () => _wix_sdk_types.QueryBuilder<Service, ServiceQuerySpec, ServiceQuery>;
5789
6002
  Filter: _wix_sdk_types.FilterFactory<Service, ServiceQuerySpec>;
5790
- Sort: _wix_sdk_types.SortFactory<ServiceQuerySpec>; /**
5791
- * Determines how the service's own working hours combine with the working hours of its assigned
5792
- * staff members and required resources. Supported for appointment services only, and can't be
5793
- * combined with `durationRange`.
5794
- *
5795
- * Leave unset for resource-based availability, the default and only valid state for class,
5796
- * course, and duration-range services. The service's own working hours are the `WORKING_HOURS`
5797
- * [events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/introduction)
5798
- * on this service's schedule (`schedule.id`); this field controls only how those events combine
5799
- * with the resources working hours, it doesn't contain the hours themselves.
5800
- * @internal
5801
- */
6003
+ Sort: _wix_sdk_types.SortFactory<ServiceQuerySpec>;
5802
6004
  };
5803
6005
  search: {
5804
- SearchBuilder: () => _wix_sdk_types.SearchBuilder<Service, ServiceSearchSpec, ServiceSearch>; /** Send form after booking. */
6006
+ SearchBuilder: () => _wix_sdk_types.SearchBuilder<Service, ServiceSearchSpec, ServiceSearch>;
5805
6007
  Filter: _wix_sdk_types.FilterFactory<Service, ServiceSearchSpec>;
5806
6008
  Sort: _wix_sdk_types.SortFactory<ServiceSearchSpec>;
5807
6009
  SearchParams: _wix_sdk_types.SearchParamsFactory<ServiceSearchSpec>;
@@ -6231,7 +6433,7 @@ interface QueryCategoriesOptions {
6231
6433
  * @applicableIdentity APP
6232
6434
  * @fqn wix.bookings.services.v2.ServicesService.SetServiceLocations
6233
6435
  */
6234
- declare function setServiceLocations(serviceId: string, options?: SetServiceLocationsOptions): Promise<NonNullablePaths<SetServiceLocationsResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.subscription.frequency` | `service.payment.subscription.firstChargeDate` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.staffMemberDetails.staffMembers` | `service.staffMemberDetails.staffMembers.${number}.staffMemberId` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType`, 7>>;
6436
+ declare function setServiceLocations(serviceId: string, options?: SetServiceLocationsOptions): Promise<NonNullablePaths<SetServiceLocationsResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.subscription.frequency` | `service.payment.subscription.firstChargeDate` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.schedule.availabilityConstraints.durationRange.hourOptions.minDurationInMinutes` | `service.schedule.availabilityConstraints.durationRange.hourOptions.maxDurationInMinutes` | `service.schedule.availabilityConstraints.durationRange.dayOptions.minDurationInDays` | `service.schedule.availabilityConstraints.durationRange.dayOptions.maxDurationInDays` | `service.schedule.availabilityConstraints.durationRange.unitType` | `service.staffMemberIds` | `service.staffMemberDetails.staffMembers` | `service.staffMemberDetails.staffMembers.${number}.staffMemberId` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType`, 7>>;
6235
6437
  interface SetServiceLocationsOptions {
6236
6438
  /**
6237
6439
  * List of locations replacing existing service locations. Omitting an existing location removes it from the service. Specify `removedLocationSessionsAction` to determine the handling of future sessions scheduled at that location.
@@ -6268,7 +6470,7 @@ interface SetServiceLocationsOptions {
6268
6470
  * @applicableIdentity APP
6269
6471
  * @fqn wix.bookings.services.v2.ServicesService.EnablePricingPlansForService
6270
6472
  */
6271
- declare function enablePricingPlansForService(serviceId: string, pricingPlanIds: string[]): Promise<NonNullablePaths<EnablePricingPlansForServiceResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.subscription.frequency` | `service.payment.subscription.firstChargeDate` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.staffMemberDetails.staffMembers` | `service.staffMemberDetails.staffMembers.${number}.staffMemberId` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType`, 7> & {
6473
+ declare function enablePricingPlansForService(serviceId: string, pricingPlanIds: string[]): Promise<NonNullablePaths<EnablePricingPlansForServiceResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.subscription.frequency` | `service.payment.subscription.firstChargeDate` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.schedule.availabilityConstraints.durationRange.hourOptions.minDurationInMinutes` | `service.schedule.availabilityConstraints.durationRange.hourOptions.maxDurationInMinutes` | `service.schedule.availabilityConstraints.durationRange.dayOptions.minDurationInDays` | `service.schedule.availabilityConstraints.durationRange.dayOptions.maxDurationInDays` | `service.schedule.availabilityConstraints.durationRange.unitType` | `service.staffMemberIds` | `service.staffMemberDetails.staffMembers` | `service.staffMemberDetails.staffMembers.${number}.staffMemberId` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType`, 7> & {
6272
6474
  __applicationErrorsType?: EnablePricingPlansForServiceApplicationErrors;
6273
6475
  }>;
6274
6476
  /**
@@ -6285,7 +6487,7 @@ declare function enablePricingPlansForService(serviceId: string, pricingPlanIds:
6285
6487
  * @applicableIdentity APP
6286
6488
  * @fqn wix.bookings.services.v2.ServicesService.DisablePricingPlansForService
6287
6489
  */
6288
- declare function disablePricingPlansForService(serviceId: string, options?: DisablePricingPlansForServiceOptions): Promise<NonNullablePaths<DisablePricingPlansForServiceResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.subscription.frequency` | `service.payment.subscription.firstChargeDate` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.staffMemberDetails.staffMembers` | `service.staffMemberDetails.staffMembers.${number}.staffMemberId` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType`, 7> & {
6490
+ declare function disablePricingPlansForService(serviceId: string, options?: DisablePricingPlansForServiceOptions): Promise<NonNullablePaths<DisablePricingPlansForServiceResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.subscription.frequency` | `service.payment.subscription.firstChargeDate` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.schedule.availabilityConstraints.durationRange.hourOptions.minDurationInMinutes` | `service.schedule.availabilityConstraints.durationRange.hourOptions.maxDurationInMinutes` | `service.schedule.availabilityConstraints.durationRange.dayOptions.minDurationInDays` | `service.schedule.availabilityConstraints.durationRange.dayOptions.maxDurationInDays` | `service.schedule.availabilityConstraints.durationRange.unitType` | `service.staffMemberIds` | `service.staffMemberDetails.staffMembers` | `service.staffMemberDetails.staffMembers.${number}.staffMemberId` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType`, 7> & {
6289
6491
  __applicationErrorsType?: DisablePricingPlansForServiceApplicationErrors;
6290
6492
  }>;
6291
6493
  interface DisablePricingPlansForServiceOptions {
@@ -6313,7 +6515,7 @@ interface DisablePricingPlansForServiceOptions {
6313
6515
  * @applicableIdentity APP
6314
6516
  * @fqn wix.bookings.services.v2.ServicesService.SetCustomSlug
6315
6517
  */
6316
- declare function setCustomSlug(serviceId: string, options?: SetCustomSlugOptions): Promise<NonNullablePaths<SetCustomSlugResponse, `slug.name` | `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.subscription.frequency` | `service.payment.subscription.firstChargeDate` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.staffMemberDetails.staffMembers` | `service.staffMemberDetails.staffMembers.${number}.staffMemberId` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType`, 7> & {
6518
+ declare function setCustomSlug(serviceId: string, options?: SetCustomSlugOptions): Promise<NonNullablePaths<SetCustomSlugResponse, `slug.name` | `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.subscription.frequency` | `service.payment.subscription.firstChargeDate` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.schedule.availabilityConstraints.durationRange.hourOptions.minDurationInMinutes` | `service.schedule.availabilityConstraints.durationRange.hourOptions.maxDurationInMinutes` | `service.schedule.availabilityConstraints.durationRange.dayOptions.minDurationInDays` | `service.schedule.availabilityConstraints.durationRange.dayOptions.maxDurationInDays` | `service.schedule.availabilityConstraints.durationRange.unitType` | `service.staffMemberIds` | `service.staffMemberDetails.staffMembers` | `service.staffMemberDetails.staffMembers.${number}.staffMemberId` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType`, 7> & {
6317
6519
  __applicationErrorsType?: SetCustomSlugApplicationErrors;
6318
6520
  __validationErrorsType?: SetCustomSlugValidationErrors;
6319
6521
  }>;
@@ -6407,7 +6609,7 @@ interface ValidateSlugOptions {
6407
6609
  * @applicableIdentity APP
6408
6610
  * @fqn wix.bookings.services.v2.ServicesService.CloneService
6409
6611
  */
6410
- declare function cloneService(sourceServiceId: string): Promise<NonNullablePaths<CloneServiceResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.subscription.frequency` | `service.payment.subscription.firstChargeDate` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.staffMemberIds` | `service.staffMemberDetails.staffMembers` | `service.staffMemberDetails.staffMembers.${number}.staffMemberId` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType` | `errors`, 7>>;
6612
+ declare function cloneService(sourceServiceId: string): Promise<NonNullablePaths<CloneServiceResponse, `service.type` | `service.media.items` | `service.category._id` | `service.form._id` | `service.payment.fixed.price.value` | `service.payment.fixed.price.currency` | `service.payment.subscription.frequency` | `service.payment.subscription.firstChargeDate` | `service.payment.rateType` | `service.payment.pricingPlanIds` | `service.payment.addOnOption` | `service.payment.discountInfo.discountName` | `service.locations` | `service.locations.${number}.business._id` | `service.locations.${number}.business.name` | `service.locations.${number}.custom._id` | `service.locations.${number}._id` | `service.locations.${number}.type` | `service.bookingPolicy._id` | `service.bookingPolicy.customPolicyDescription.enabled` | `service.bookingPolicy.customPolicyDescription.description` | `service.bookingPolicy.limitEarlyBookingPolicy.enabled` | `service.bookingPolicy.limitEarlyBookingPolicy.earliestBookingInMinutes` | `service.bookingPolicy.limitLateBookingPolicy.enabled` | `service.bookingPolicy.limitLateBookingPolicy.latestBookingInMinutes` | `service.bookingPolicy.bookAfterStartPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.enabled` | `service.bookingPolicy.cancellationPolicy.limitLatestCancellation` | `service.bookingPolicy.cancellationPolicy.latestCancellationInMinutes` | `service.bookingPolicy.reschedulePolicy.enabled` | `service.bookingPolicy.reschedulePolicy.limitLatestReschedule` | `service.bookingPolicy.reschedulePolicy.latestRescheduleInMinutes` | `service.bookingPolicy.waitlistPolicy.enabled` | `service.bookingPolicy.waitlistPolicy.capacity` | `service.bookingPolicy.waitlistPolicy.reservationTimeInMinutes` | `service.bookingPolicy.participantsPolicy.maxParticipantsPerBooking` | `service.bookingPolicy.resourcesPolicy.enabled` | `service.bookingPolicy.resourcesPolicy.autoAssignAllowed` | `service.bookingPolicy.cancellationFeePolicy.enabled` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows` | `service.bookingPolicy.cancellationFeePolicy.cancellationWindows.${number}.percentage` | `service.bookingPolicy.saveCreditCardPolicy.enabled` | `service.schedule.availabilityConstraints.durations` | `service.schedule.availabilityConstraints.durations.${number}.minutes` | `service.schedule.availabilityConstraints.sessionDurations` | `service.schedule.availabilityConstraints.timeBetweenSessions` | `service.schedule.availabilityConstraints.durationRange.hourOptions.minDurationInMinutes` | `service.schedule.availabilityConstraints.durationRange.hourOptions.maxDurationInMinutes` | `service.schedule.availabilityConstraints.durationRange.dayOptions.minDurationInDays` | `service.schedule.availabilityConstraints.durationRange.dayOptions.maxDurationInDays` | `service.schedule.availabilityConstraints.durationRange.unitType` | `service.staffMemberIds` | `service.staffMemberDetails.staffMembers` | `service.staffMemberDetails.staffMembers.${number}.staffMemberId` | `service.serviceResources` | `service.supportedSlugs` | `service.supportedSlugs.${number}.name` | `service.seoData.tags` | `service.seoData.tags.${number}.type` | `service.seoData.tags.${number}.children` | `service.seoData.tags.${number}.custom` | `service.seoData.tags.${number}.disabled` | `service.seoData.settings.preventAutoRedirect` | `service.seoData.settings.keywords` | `service.seoData.settings.keywords.${number}.term` | `service.seoData.settings.keywords.${number}.isMain` | `service.addOnGroups` | `service.addOnDetails` | `service.taxableAddress.taxableAddressType` | `errors`, 7>>;
6411
6613
  /**
6412
6614
  * Creates a new add-on group for a service and updates the service's `addOnGroups` array.
6413
6615
  * @param addOnGroup - Add-on group to create.
@@ -6549,4 +6751,4 @@ interface SetAddOnsForGroupOptions {
6549
6751
  addOnIds: string[] | null;
6550
6752
  }
6551
6753
 
6552
- export { type ListAddOnGroupsByServiceIdResponse as $, type DisablePricingPlansForServiceResponse as A, type BulkCreateServicesOptions as B, type CreateServiceValidationErrors as C, type DeleteServiceOptions as D, type EnablePricingPlansForServiceResponse as E, type DisablePricingPlansForServiceApplicationErrors as F, type GetServiceOptions as G, type SetCustomSlugOptions as H, type SetCustomSlugResponse as I, type SetCustomSlugApplicationErrors as J, type SetCustomSlugValidationErrors as K, type ValidateSlugResponse as L, type CloneServiceResponse as M, type AddOnGroup as N, type CreateAddOnGroupOptions as O, type CreateAddOnGroupResponse as P, type QueryPoliciesResponse as Q, type CreateAddOnGroupApplicationErrors as R, type Service as S, type DeleteAddOnGroupOptions as T, type UpdateService as U, type ValidateSlugOptions as V, type DeleteAddOnGroupApplicationErrors as W, type UpdateAddOnGroupOptions as X, type UpdateAddOnGroupResponse as Y, type UpdateAddOnGroupApplicationErrors as Z, type ListAddOnGroupsByServiceIdOptions as _, type BulkCreateServicesResponse as a, type PaymentRateOneOf as a$, type SetAddOnsForGroupOptions as a0, type SetAddOnsForGroupResponse as a1, type SetAddOnsForGroupApplicationErrors as a2, type ServiceCreatedEnvelope as a3, type ServiceDeletedEnvelope as a4, type ServiceUpdatedEnvelope as a5, type ServiceQuery as a6, type QueryServicesOptions as a7, typedQueryServices as a8, type ServicesQueryBuilder as a9, V2RequestedFields as aA, SortOrder as aB, SortType as aC, SortDirection as aD, MissingValues as aE, ScalarType as aF, NestedAggregationType as aG, Interval as aH, AggregationType as aI, Mode as aJ, RequestedFields as aK, Action as aL, InvalidSlugError as aM, CloneErrors as aN, Status as aO, Event as aP, CrudType as aQ, PlacementType as aR, DayOfWeek as aS, ResolutionMethod as aT, type Media as aU, type MediaItem as aV, type MediaItemItemOneOf as aW, type V2Category as aX, type Form as aY, type FormSettings as aZ, type Payment as a_, ServiceType as aa, RateType as ab, FrequencyType as ac, FirstChargeDateType as ad, AddOnPaymentOptions as ae, LocationTypeEnumLocationType as af, RankingOrder as ag, SortingMethodType as ah, Timing as ai, CompletionRequirement as aj, UnitType as ak, WorkingHoursMode as al, TaxableAddressType as am, MultiServiceBookingType as an, ResourceTransparency as ao, LocationType as ap, SelectionMethod as aq, DurationUnitType as ar, ValueType as as, BookingStatus as at, PaymentStatus as au, SelectedPaymentOption as av, Platform as aw, Actor as ax, IdentityType as ay, WebhookIdentityType as az, type UpdateServiceValidationErrors as b, type Tag as b$, type FixedPayment as b0, type Money as b1, type CustomPayment as b2, type VariedPayment as b3, type SubscriptionPayment as b4, type FullUpfrontPayment as b5, type PaymentOptions as b6, type DiscountInfo as b7, type OnlineBooking as b8, type Conferencing as b9, type IntakeFormPolicy as bA, type RebookingFrequencyPolicy as bB, type Schedule as bC, type AvailabilityConstraints as bD, type V2Duration as bE, type DurationRange as bF, type DurationRangeConfigOneOf as bG, type HourlyConfig as bH, type DailyConfig as bI, type WorkingHours as bJ, type StaffMember as bK, type StaffMediaItem as bL, type StaffMediaItemItemOneOf as bM, type WorkingHoursLocationCoverage as bN, type StaffMemberDetails as bO, type ResourceGroup as bP, type ResourceIds as bQ, type ServiceResource as bR, type ServiceResourceSelectionOneOf as bS, type ResourceType as bT, type ResourceDetails as bU, type ResourceInfo as bV, type Slug as bW, type URLs as bX, type ExtendedFields as bY, type SeoSchema as bZ, type Keyword as b_, type V2Location as ba, type V2LocationOptionsOneOf as bb, type CommonAddress as bc, type CommonAddressStreetOneOf as bd, type CommonStreetAddress as be, type CommonAddressLocation as bf, type BusinessLocationOptions as bg, type CustomLocationOptions as bh, type BookingPolicy as bi, type PolicyDescription as bj, type LimitEarlyBookingPolicy as bk, type LimitLateBookingPolicy as bl, type BookAfterStartPolicy as bm, type CancellationPolicy as bn, type ReschedulePolicy as bo, type WaitlistPolicy as bp, type ParticipantsPolicy as bq, type ResourcesPolicy as br, type CancellationFeePolicy as bs, type CancellationWindow as bt, type CancellationWindowFeeOneOf as bu, type SaveCreditCardPolicy as bv, type StaffSortingPolicy as bw, type StaffSortingPolicyOptionsOneOf as bx, type RankingOptions as by, type CustomOptions as bz, type BulkUpdateServicesOptions as c, type GetServiceAvailabilityConstraintsResponse as c$, type Settings as c0, type AddOnDetails as c1, type TaxableAddress as c2, type V2PhoneCall as c3, type SetCustomSlugEvent as c4, type ServicesUrlsChanged as c5, type DummyRequest as c6, type DummyResponse as c7, type Booking as c8, type BookingParticipantsInfoOneOf as c9, type ParticipantsRange as cA, type MultiServiceBookingInfo as cB, type BookedAddOn as cC, type DomainEvent as cD, type DomainEventBodyOneOf as cE, type EntityCreatedEvent as cF, type RestoreInfo as cG, type EntityUpdatedEvent as cH, type EntityDeletedEvent as cI, type ActionEvent as cJ, type MessageEnvelope as cK, type IdentificationData as cL, type IdentificationDataIdOneOf as cM, type AccountInfo as cN, type CreateServiceRequest as cO, type CreateServiceResponse as cP, type ValidateServiceRequest as cQ, type ValidateServiceResponse as cR, type FieldViolation as cS, type BulkCreateServicesRequest as cT, type BulkServiceResult as cU, type ItemMetadata as cV, type ApplicationError as cW, type BulkActionMetadata as cX, type GetServiceRequest as cY, type GetServiceResponse as cZ, type GetServiceAvailabilityConstraintsRequest as c_, type BookedEntity as ca, type BookedEntityItemOneOf as cb, type BookedSlot as cc, type BookedResource as cd, type Location as ce, type PhoneCall as cf, type ResourceSelection as cg, type BookedSchedule as ch, type ContactDetails as ci, type Address as cj, type AddressStreetOneOf as ck, type StreetAddress as cl, type AddressLocation as cm, type Subdivision as cn, type CustomFormField as co, type BookingSource as cp, type ParticipantNotification as cq, type CommonIdentificationData as cr, type CommonIdentificationDataIdOneOf as cs, type FlowControlSettings as ct, type ParticipantChoices as cu, type ServiceChoices as cv, type ServiceChoice as cw, type ServiceChoiceChoiceOneOf as cx, type Duration as cy, type DateTimeRule as cz, type BulkUpdateServicesResponse as d, type AggregationResultsResultOneOf as d$, type ServiceAvailabilityConstraints as d0, type SplitInterval as d1, type UpdateServiceRequest as d2, type UpdateServiceResponse as d3, type BulkUpdateServicesRequest as d4, type MaskedService as d5, type BulkUpdateServicesByFilterRequest as d6, type DeleteServiceRequest as d7, type V2ParticipantNotification as d8, type DeleteServiceResponse as d9, type NestedAggregation as dA, type GroupByAggregation as dB, type GroupByAggregationKindOneOf as dC, type SearchDetails as dD, type CursorPagingMetadata as dE, type AggregationData as dF, type ValueAggregationResult as dG, type RangeAggregationResult as dH, type NestedAggregationResults as dI, type NestedAggregationResultsResultOneOf as dJ, type ValueResults as dK, type RangeResults as dL, type AggregationResultsScalarResult as dM, type NestedValueAggregationResult as dN, type ValueResult as dO, type RangeResult as dP, type ScalarResult as dQ, type ScalarDateResult as dR, type NestedResultValue as dS, type NestedResultValueResultOneOf as dT, type Results as dU, type DateHistogramResult as dV, type GroupByValueResults as dW, type DateHistogramResults as dX, type NestedResults as dY, type AggregationResultsScalarDateResult as dZ, type AggregationResults as d_, type BulkDeleteServicesRequest as da, type BulkDeleteServicesByFilterRequest as db, type QueryServicesRequest as dc, type QueryV2 as dd, type QueryV2PagingMethodOneOf as de, type Sorting as df, type Paging as dg, type CursorPaging as dh, type QueryServicesResponse as di, type PagingMetadataV2 as dj, type Cursors as dk, type SearchServicesRequest as dl, type CursorSearch as dm, type CursorSearchPagingMethodOneOf as dn, type Aggregation as dp, type AggregationKindOneOf as dq, type RangeBucket as dr, type IncludeMissingValuesOptions as ds, type ValueAggregation as dt, type ValueAggregationOptionsOneOf as du, type RangeAggregation as dv, type ScalarAggregation as dw, type DateHistogramAggregation as dx, type NestedAggregationItem as dy, type NestedAggregationItemKindOneOf as dz, type BulkUpdateServicesByFilterOptions as e, type BaseEventMetadata as e$, type QueryPoliciesRequest as e0, type CursorQueryPagingMethodOneOf as e1, type BookingPolicyWithServices as e2, type QueryBookingFormsRequest as e3, type BookingForm as e4, type FormDetails as e5, type ConnectedService as e6, type CountServicesRequest as e7, type QueryLocationsRequest as e8, type QueryLocationsFilter as e9, type Properties as eA, type Categories as eB, type Locale as eC, type V4Address as eD, type AddressHint as eE, type GeoCoordinates as eF, type BusinessSchedule as eG, type TimePeriod as eH, type SpecialHourPeriod as eI, type Multilingual as eJ, type SupportedLanguage as eK, type ConsentPolicy as eL, type Translation as eM, type ChangeContext as eN, type ChangeContextPayloadOneOf as eO, type PropertiesChange as eP, type SiteCreated as eQ, type SiteCloned as eR, type CreateAddOnGroupRequest as eS, type DeleteAddOnGroupRequest as eT, type DeleteAddOnGroupResponse as eU, type UpdateAddOnGroupRequest as eV, type ListAddOnGroupsByServiceIdRequest as eW, type AddOn as eX, type AddOnAddOnInfoOneOf as eY, type AddOnGroupDetail as eZ, type SetAddOnsForGroupRequest as e_, type BusinessLocations as ea, type CustomLocations as eb, type CustomerLocations as ec, type QueryCategoriesRequest as ed, type QueryCategoriesFilter as ee, type QueryServicesMultiLanguageRequest as ef, type QueryServicesMultiLanguageResponse as eg, type SetServiceLocationsRequest as eh, type RemovedLocationSessionsAction as ei, type RemovedLocationSessionsActionActionOptionsOneOf as ej, type MoveToNewLocationsOptions as ek, type EnablePricingPlansForServiceRequest as el, type PricingPlanSelection as em, type InvalidPricingPlan as en, type DisablePricingPlansForServiceRequest as eo, type SetCustomSlugRequest as ep, type ValidateSlugRequest as eq, type CloneServiceRequest as er, type CategoryNotification as es, type Category as et, type Empty as eu, type UserDomainInfoChangedEvent as ev, type HtmlSitePublished as ew, type Page as ex, type SitePropertiesNotification as ey, type SitePropertiesEvent as ez, type BulkUpdateServicesByFilterResponse as f, deleteService as f$, type EventMetadata as f0, type AccountInfoMetadata as f1, type ServicesQueryResult as f2, type ServiceQuerySpec as f3, type ServiceSearchSpec as f4, utils as f5, type ServiceTypeWithLiterals as f6, type RateTypeWithLiterals as f7, type FrequencyTypeWithLiterals as f8, type FirstChargeDateTypeWithLiterals as f9, type MissingValuesWithLiterals as fA, type ScalarTypeWithLiterals as fB, type NestedAggregationTypeWithLiterals as fC, type IntervalWithLiterals as fD, type AggregationTypeWithLiterals as fE, type ModeWithLiterals as fF, type RequestedFieldsWithLiterals as fG, type ActionWithLiterals as fH, type InvalidSlugErrorWithLiterals as fI, type CloneErrorsWithLiterals as fJ, type StatusWithLiterals as fK, type EventWithLiterals as fL, type CrudTypeWithLiterals as fM, type PlacementTypeWithLiterals as fN, type DayOfWeekWithLiterals as fO, type ResolutionMethodWithLiterals as fP, type CommonQueryWithEntityContext as fQ, type CommonSearchWithEntityContext as fR, onServiceCreated as fS, onServiceDeleted as fT, onServiceUpdated as fU, createService as fV, bulkCreateServices as fW, getService as fX, updateService as fY, bulkUpdateServices as fZ, bulkUpdateServicesByFilter as f_, type AddOnPaymentOptionsWithLiterals as fa, type LocationTypeEnumLocationTypeWithLiterals as fb, type RankingOrderWithLiterals as fc, type SortingMethodTypeWithLiterals as fd, type TimingWithLiterals as fe, type CompletionRequirementWithLiterals as ff, type UnitTypeWithLiterals as fg, type WorkingHoursModeWithLiterals as fh, type TaxableAddressTypeWithLiterals as fi, type MultiServiceBookingTypeWithLiterals as fj, type ResourceTransparencyWithLiterals as fk, type LocationTypeWithLiterals as fl, type SelectionMethodWithLiterals as fm, type DurationUnitTypeWithLiterals as fn, type ValueTypeWithLiterals as fo, type BookingStatusWithLiterals as fp, type PaymentStatusWithLiterals as fq, type SelectedPaymentOptionWithLiterals as fr, type PlatformWithLiterals as fs, type ActorWithLiterals as ft, type IdentityTypeWithLiterals as fu, type WebhookIdentityTypeWithLiterals as fv, type V2RequestedFieldsWithLiterals as fw, type SortOrderWithLiterals as fx, type SortTypeWithLiterals as fy, type SortDirectionWithLiterals as fz, type BulkDeleteServicesOptions as g, bulkDeleteServices as g0, bulkDeleteServicesByFilter as g1, queryServices as g2, queryPolicies as g3, queryBookingForms as g4, countServices as g5, queryLocations as g6, queryCategories as g7, setServiceLocations as g8, enablePricingPlansForService as g9, disablePricingPlansForService as ga, setCustomSlug as gb, validateSlug as gc, cloneService as gd, createAddOnGroup as ge, deleteAddOnGroup as gf, updateAddOnGroup as gg, listAddOnGroupsByServiceId as gh, setAddOnsForGroup as gi, type BulkDeleteServicesResponse as h, type BulkDeleteServicesByFilterOptions as i, type BulkDeleteServicesByFilterResponse as j, type ServiceSearch as k, type SearchServicesResponse as l, type CursorQuery as m, type QueryBookingFormsOptions as n, type QueryBookingFormsResponse as o, type QueryBookingFormsApplicationErrors as p, type CountServicesOptions as q, type CountServicesResponse as r, type QueryLocationsOptions as s, type QueryLocationsResponse as t, type QueryCategoriesOptions as u, type QueryCategoriesResponse as v, type SetServiceLocationsOptions as w, type SetServiceLocationsResponse as x, type EnablePricingPlansForServiceApplicationErrors as y, type DisablePricingPlansForServiceOptions as z };
6754
+ export { type ListAddOnGroupsByServiceIdResponse as $, type DisablePricingPlansForServiceResponse as A, type BulkCreateServicesOptions as B, type CreateServiceValidationErrors as C, type DeleteServiceOptions as D, type EnablePricingPlansForServiceResponse as E, type DisablePricingPlansForServiceApplicationErrors as F, type GetServiceOptions as G, type SetCustomSlugOptions as H, type SetCustomSlugResponse as I, type SetCustomSlugApplicationErrors as J, type SetCustomSlugValidationErrors as K, type ValidateSlugResponse as L, type CloneServiceResponse as M, type AddOnGroup as N, type CreateAddOnGroupOptions as O, type CreateAddOnGroupResponse as P, type QueryPoliciesResponse as Q, type CreateAddOnGroupApplicationErrors as R, type Service as S, type DeleteAddOnGroupOptions as T, type UpdateService as U, type ValidateSlugOptions as V, type DeleteAddOnGroupApplicationErrors as W, type UpdateAddOnGroupOptions as X, type UpdateAddOnGroupResponse as Y, type UpdateAddOnGroupApplicationErrors as Z, type ListAddOnGroupsByServiceIdOptions as _, type BulkCreateServicesResponse as a, type PaymentRateOneOf as a$, type SetAddOnsForGroupOptions as a0, type SetAddOnsForGroupResponse as a1, type SetAddOnsForGroupApplicationErrors as a2, type ServiceCreatedEnvelope as a3, type ServiceDeletedEnvelope as a4, type ServiceUpdatedEnvelope as a5, type ServiceQuery as a6, type QueryServicesOptions as a7, typedQueryServices as a8, type ServicesQueryBuilder as a9, V2RequestedFields as aA, SortOrder as aB, SortType as aC, SortDirection as aD, MissingValues as aE, ScalarType as aF, NestedAggregationType as aG, Interval as aH, AggregationType as aI, Mode as aJ, RequestedFields as aK, Action as aL, InvalidSlugError as aM, CloneErrors as aN, Status as aO, Event as aP, CrudType as aQ, PlacementType as aR, DayOfWeek as aS, ResolutionMethod as aT, type Media as aU, type MediaItem as aV, type MediaItemItemOneOf as aW, type V2Category as aX, type Form as aY, type FormSettings as aZ, type Payment as a_, ServiceType as aa, RateType as ab, FrequencyType as ac, FirstChargeDateType as ad, AddOnPaymentOptions as ae, LocationTypeEnumLocationType as af, RankingOrder as ag, SortingMethodType as ah, Timing as ai, CompletionRequirement as aj, UnitType as ak, WorkingHoursMode as al, TaxableAddressType as am, MultiServiceBookingType as an, ResourceTransparency as ao, LocationType as ap, SelectionMethod as aq, DurationUnitType as ar, ValueType as as, BookingStatus as at, PaymentStatus as au, SelectedPaymentOption as av, Platform as aw, Actor as ax, IdentityType as ay, WebhookIdentityType as az, type UpdateServiceValidationErrors as b, type Tag as b$, type FixedPayment as b0, type Money as b1, type CustomPayment as b2, type VariedPayment as b3, type SubscriptionPayment as b4, type FullUpfrontPayment as b5, type PaymentOptions as b6, type DiscountInfo as b7, type OnlineBooking as b8, type Conferencing as b9, type IntakeFormPolicy as bA, type RebookingFrequencyPolicy as bB, type Schedule as bC, type AvailabilityConstraints as bD, type V2Duration as bE, type DurationRange as bF, type DurationRangeConfigOneOf as bG, type HourlyConfig as bH, type DailyConfig as bI, type WorkingHours as bJ, type StaffMember as bK, type StaffMediaItem as bL, type StaffMediaItemItemOneOf as bM, type WorkingHoursLocationCoverage as bN, type StaffMemberDetails as bO, type ResourceGroup as bP, type ResourceIds as bQ, type ServiceResource as bR, type ServiceResourceSelectionOneOf as bS, type ResourceType as bT, type ResourceDetails as bU, type ResourceInfo as bV, type Slug as bW, type URLs as bX, type ExtendedFields as bY, type SeoSchema as bZ, type Keyword as b_, type V2Location as ba, type V2LocationOptionsOneOf as bb, type CommonAddress as bc, type CommonAddressStreetOneOf as bd, type CommonStreetAddress as be, type CommonAddressLocation as bf, type BusinessLocationOptions as bg, type CustomLocationOptions as bh, type BookingPolicy as bi, type PolicyDescription as bj, type LimitEarlyBookingPolicy as bk, type LimitLateBookingPolicy as bl, type BookAfterStartPolicy as bm, type CancellationPolicy as bn, type ReschedulePolicy as bo, type WaitlistPolicy as bp, type ParticipantsPolicy as bq, type ResourcesPolicy as br, type CancellationFeePolicy as bs, type CancellationWindow as bt, type CancellationWindowFeeOneOf as bu, type SaveCreditCardPolicy as bv, type StaffSortingPolicy as bw, type StaffSortingPolicyOptionsOneOf as bx, type RankingOptions as by, type CustomOptions as bz, type BulkUpdateServicesOptions as c, type GetServiceResponse as c$, type Settings as c0, type AddOnDetails as c1, type TaxableAddress as c2, type V2PhoneCall as c3, type SetCustomSlugEvent as c4, type ServicesUrlsChanged as c5, type DummyRequest as c6, type DummyResponse as c7, type Booking as c8, type BookingParticipantsInfoOneOf as c9, type ParticipantsRange as cA, type MultiServiceBookingInfo as cB, type BookedAddOn as cC, type DomainEvent as cD, type DomainEventBodyOneOf as cE, type EntityCreatedEvent as cF, type RestoreInfo as cG, type EntityUpdatedEvent as cH, type EntityDeletedEvent as cI, type ActionEvent as cJ, type MessageEnvelope as cK, type IdentificationData as cL, type IdentificationDataIdOneOf as cM, type AccountInfo as cN, type DepositDetails as cO, type DepositDetailsValueOneOf as cP, type CreateServiceRequest as cQ, type CreateServiceResponse as cR, type ValidateServiceRequest as cS, type ValidateServiceResponse as cT, type FieldViolation as cU, type BulkCreateServicesRequest as cV, type BulkServiceResult as cW, type ItemMetadata as cX, type ApplicationError as cY, type BulkActionMetadata as cZ, type GetServiceRequest as c_, type BookedEntity as ca, type BookedEntityItemOneOf as cb, type BookedSlot as cc, type BookedResource as cd, type Location as ce, type PhoneCall as cf, type ResourceSelection as cg, type BookedSchedule as ch, type ContactDetails as ci, type Address as cj, type AddressStreetOneOf as ck, type StreetAddress as cl, type AddressLocation as cm, type Subdivision as cn, type CustomFormField as co, type BookingSource as cp, type ParticipantNotification as cq, type CommonIdentificationData as cr, type CommonIdentificationDataIdOneOf as cs, type FlowControlSettings as ct, type ParticipantChoices as cu, type ServiceChoices as cv, type ServiceChoice as cw, type ServiceChoiceChoiceOneOf as cx, type Duration as cy, type DateTimeRule as cz, type BulkUpdateServicesResponse as d, type AggregationResultsScalarDateResult as d$, type GetServiceAvailabilityConstraintsRequest as d0, type GetServiceAvailabilityConstraintsResponse as d1, type ServiceAvailabilityConstraints as d2, type SplitInterval as d3, type UpdateServiceRequest as d4, type UpdateServiceResponse as d5, type BulkUpdateServicesRequest as d6, type MaskedService as d7, type BulkUpdateServicesByFilterRequest as d8, type DeleteServiceRequest as d9, type NestedAggregationItem as dA, type NestedAggregationItemKindOneOf as dB, type NestedAggregation as dC, type GroupByAggregation as dD, type GroupByAggregationKindOneOf as dE, type SearchDetails as dF, type CursorPagingMetadata as dG, type AggregationData as dH, type ValueAggregationResult as dI, type RangeAggregationResult as dJ, type NestedAggregationResults as dK, type NestedAggregationResultsResultOneOf as dL, type ValueResults as dM, type RangeResults as dN, type AggregationResultsScalarResult as dO, type NestedValueAggregationResult as dP, type ValueResult as dQ, type RangeResult as dR, type ScalarResult as dS, type ScalarDateResult as dT, type NestedResultValue as dU, type NestedResultValueResultOneOf as dV, type Results as dW, type DateHistogramResult as dX, type GroupByValueResults as dY, type DateHistogramResults as dZ, type NestedResults as d_, type V2ParticipantNotification as da, type DeleteServiceResponse as db, type BulkDeleteServicesRequest as dc, type BulkDeleteServicesByFilterRequest as dd, type QueryServicesRequest as de, type QueryV2 as df, type QueryV2PagingMethodOneOf as dg, type Sorting as dh, type Paging as di, type CursorPaging as dj, type QueryServicesResponse as dk, type PagingMetadataV2 as dl, type Cursors as dm, type SearchServicesRequest as dn, type CursorSearch as dp, type CursorSearchPagingMethodOneOf as dq, type Aggregation as dr, type AggregationKindOneOf as ds, type RangeBucket as dt, type IncludeMissingValuesOptions as du, type ValueAggregation as dv, type ValueAggregationOptionsOneOf as dw, type RangeAggregation as dx, type ScalarAggregation as dy, type DateHistogramAggregation as dz, type BulkUpdateServicesByFilterOptions as e, type AddOnGroupDetail as e$, type AggregationResults as e0, type AggregationResultsResultOneOf as e1, type QueryPoliciesRequest as e2, type CursorQueryPagingMethodOneOf as e3, type BookingPolicyWithServices as e4, type QueryBookingFormsRequest as e5, type BookingForm as e6, type FormDetails as e7, type ConnectedService as e8, type CountServicesRequest as e9, type SitePropertiesNotification as eA, type SitePropertiesEvent as eB, type Properties as eC, type Categories as eD, type Locale as eE, type V4Address as eF, type AddressHint as eG, type GeoCoordinates as eH, type BusinessSchedule as eI, type TimePeriod as eJ, type SpecialHourPeriod as eK, type Multilingual as eL, type SupportedLanguage as eM, type ConsentPolicy as eN, type Translation as eO, type ChangeContext as eP, type ChangeContextPayloadOneOf as eQ, type PropertiesChange as eR, type SiteCreated as eS, type SiteCloned as eT, type CreateAddOnGroupRequest as eU, type DeleteAddOnGroupRequest as eV, type DeleteAddOnGroupResponse as eW, type UpdateAddOnGroupRequest as eX, type ListAddOnGroupsByServiceIdRequest as eY, type AddOn as eZ, type AddOnAddOnInfoOneOf as e_, type QueryLocationsRequest as ea, type QueryLocationsFilter as eb, type BusinessLocations as ec, type CustomLocations as ed, type CustomerLocations as ee, type QueryCategoriesRequest as ef, type QueryCategoriesFilter as eg, type QueryServicesMultiLanguageRequest as eh, type QueryServicesMultiLanguageResponse as ei, type SetServiceLocationsRequest as ej, type RemovedLocationSessionsAction as ek, type RemovedLocationSessionsActionActionOptionsOneOf as el, type MoveToNewLocationsOptions as em, type EnablePricingPlansForServiceRequest as en, type PricingPlanSelection as eo, type InvalidPricingPlan as ep, type DisablePricingPlansForServiceRequest as eq, type SetCustomSlugRequest as er, type ValidateSlugRequest as es, type CloneServiceRequest as et, type CategoryNotification as eu, type Category as ev, type Empty as ew, type UserDomainInfoChangedEvent as ex, type HtmlSitePublished as ey, type Page as ez, type BulkUpdateServicesByFilterResponse as f, bulkUpdateServices as f$, type SetAddOnsForGroupRequest as f0, type BaseEventMetadata as f1, type EventMetadata as f2, type AccountInfoMetadata as f3, type ServicesQueryResult as f4, type ServiceQuerySpec as f5, type ServiceSearchSpec as f6, utils as f7, type ServiceTypeWithLiterals as f8, type RateTypeWithLiterals as f9, type SortTypeWithLiterals as fA, type SortDirectionWithLiterals as fB, type MissingValuesWithLiterals as fC, type ScalarTypeWithLiterals as fD, type NestedAggregationTypeWithLiterals as fE, type IntervalWithLiterals as fF, type AggregationTypeWithLiterals as fG, type ModeWithLiterals as fH, type RequestedFieldsWithLiterals as fI, type ActionWithLiterals as fJ, type InvalidSlugErrorWithLiterals as fK, type CloneErrorsWithLiterals as fL, type StatusWithLiterals as fM, type EventWithLiterals as fN, type CrudTypeWithLiterals as fO, type PlacementTypeWithLiterals as fP, type DayOfWeekWithLiterals as fQ, type ResolutionMethodWithLiterals as fR, type CommonQueryWithEntityContext as fS, type CommonSearchWithEntityContext as fT, onServiceCreated as fU, onServiceDeleted as fV, onServiceUpdated as fW, createService as fX, bulkCreateServices as fY, getService as fZ, updateService as f_, type FrequencyTypeWithLiterals as fa, type FirstChargeDateTypeWithLiterals as fb, type AddOnPaymentOptionsWithLiterals as fc, type LocationTypeEnumLocationTypeWithLiterals as fd, type RankingOrderWithLiterals as fe, type SortingMethodTypeWithLiterals as ff, type TimingWithLiterals as fg, type CompletionRequirementWithLiterals as fh, type UnitTypeWithLiterals as fi, type WorkingHoursModeWithLiterals as fj, type TaxableAddressTypeWithLiterals as fk, type MultiServiceBookingTypeWithLiterals as fl, type ResourceTransparencyWithLiterals as fm, type LocationTypeWithLiterals as fn, type SelectionMethodWithLiterals as fo, type DurationUnitTypeWithLiterals as fp, type ValueTypeWithLiterals as fq, type BookingStatusWithLiterals as fr, type PaymentStatusWithLiterals as fs, type SelectedPaymentOptionWithLiterals as ft, type PlatformWithLiterals as fu, type ActorWithLiterals as fv, type IdentityTypeWithLiterals as fw, type WebhookIdentityTypeWithLiterals as fx, type V2RequestedFieldsWithLiterals as fy, type SortOrderWithLiterals as fz, type BulkDeleteServicesOptions as g, bulkUpdateServicesByFilter as g0, deleteService as g1, bulkDeleteServices as g2, bulkDeleteServicesByFilter as g3, queryServices as g4, queryPolicies as g5, queryBookingForms as g6, countServices as g7, queryLocations as g8, queryCategories as g9, setServiceLocations as ga, enablePricingPlansForService as gb, disablePricingPlansForService as gc, setCustomSlug as gd, validateSlug as ge, cloneService as gf, createAddOnGroup as gg, deleteAddOnGroup as gh, updateAddOnGroup as gi, listAddOnGroupsByServiceId as gj, setAddOnsForGroup as gk, type BulkDeleteServicesResponse as h, type BulkDeleteServicesByFilterOptions as i, type BulkDeleteServicesByFilterResponse as j, type ServiceSearch as k, type SearchServicesResponse as l, type CursorQuery as m, type QueryBookingFormsOptions as n, type QueryBookingFormsResponse as o, type QueryBookingFormsApplicationErrors as p, type CountServicesOptions as q, type CountServicesResponse as r, type QueryLocationsOptions as s, type QueryLocationsResponse as t, type QueryCategoriesOptions as u, type QueryCategoriesResponse as v, type SetServiceLocationsOptions as w, type SetServiceLocationsResponse as x, type EnablePricingPlansForServiceApplicationErrors as y, type DisablePricingPlansForServiceOptions as z };