@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.
- 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
- package/build/cjs/index.d.ts +10 -10
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +106 -39
- package/build/cjs/meta.js +3 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.d.ts +572 -57
- package/build/cjs/schemas.js +1459 -340
- package/build/cjs/schemas.js.map +1 -1
- 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
- package/build/es/index.d.mts +10 -10
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +106 -39
- package/build/es/meta.mjs +3 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.d.mts +572 -57
- package/build/es/schemas.mjs +1465 -346
- package/build/es/schemas.mjs.map +1 -1
- 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
- package/build/internal/cjs/index.d.ts +10 -10
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +106 -39
- package/build/internal/cjs/meta.js +3 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.d.ts +572 -57
- package/build/internal/cjs/schemas.js +1459 -340
- package/build/internal/cjs/schemas.js.map +1 -1
- 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
- package/build/internal/es/index.d.mts +10 -10
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +106 -39
- package/build/internal/es/meta.mjs +3 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.d.mts +572 -57
- package/build/internal/es/schemas.mjs +1465 -346
- package/build/internal/es/schemas.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -177,15 +177,17 @@ interface Service {
|
|
|
177
177
|
/** Taxable address used to calculate tax */
|
|
178
178
|
taxableAddress?: TaxableAddress;
|
|
179
179
|
/**
|
|
180
|
-
*
|
|
181
|
-
*
|
|
182
|
-
*
|
|
183
|
-
*
|
|
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.
|
|
184
188
|
* @format GUID
|
|
185
189
|
*/
|
|
186
190
|
primaryResourceType?: string | null;
|
|
187
|
-
/** Whether to inherit resource locations for availability resolution. */
|
|
188
|
-
inheritResourceLocations?: boolean | null;
|
|
189
191
|
}
|
|
190
192
|
declare enum ServiceType {
|
|
191
193
|
/** Appointment-based service. */
|
|
@@ -1255,9 +1257,6 @@ interface AvailabilityConstraints {
|
|
|
1255
1257
|
* - For appointment-based services, specify `sessionDurations` when creating a service.
|
|
1256
1258
|
* - 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).
|
|
1257
1259
|
* - For classes or courses, don't specify `sessionDurations` when creating a service.
|
|
1258
|
-
*
|
|
1259
|
-
* Min: `1` minute
|
|
1260
|
-
* Max: `44639` minutes (30 days, 23 hours, and 59 minutes)
|
|
1261
1260
|
* @min 1
|
|
1262
1261
|
* @max 44639
|
|
1263
1262
|
* @maxSize 50
|
|
@@ -1265,116 +1264,89 @@ interface AvailabilityConstraints {
|
|
|
1265
1264
|
sessionDurations?: number[];
|
|
1266
1265
|
/**
|
|
1267
1266
|
* The number of minutes between the end of a session and the start of the next.
|
|
1268
|
-
*
|
|
1269
|
-
*
|
|
1270
|
-
* Min: `0` minutes
|
|
1271
|
-
* Max: `720` minutes
|
|
1272
1267
|
* @max 720
|
|
1273
1268
|
*/
|
|
1274
1269
|
timeBetweenSessions?: number;
|
|
1275
1270
|
/**
|
|
1276
1271
|
* Duration range for the service. When set, the customer picks a duration
|
|
1277
1272
|
* within the configured min/max range instead of a fixed session duration.
|
|
1278
|
-
* Mutually exclusive with `sessionDurations
|
|
1273
|
+
* Mutually exclusive with `sessionDurations`. A service uses one or the other.
|
|
1279
1274
|
* Can't be combined with `workingHours`.
|
|
1280
|
-
* @internal
|
|
1281
|
-
*/
|
|
1282
|
-
durationRange?: DurationRange;
|
|
1283
|
-
/**
|
|
1284
|
-
* Determines how the service's own working hours combine with the working hours of its assigned
|
|
1285
|
-
* staff members and required resources. Supported for appointment services only, and can't be
|
|
1286
|
-
* combined with `durationRange`.
|
|
1287
1275
|
*
|
|
1288
|
-
*
|
|
1289
|
-
*
|
|
1290
|
-
*
|
|
1291
|
-
* on this service's schedule (`schedule.id`); this field controls only how those events combine
|
|
1292
|
-
* with the resources working hours, it doesn't contain the hours themselves.
|
|
1293
|
-
* @internal
|
|
1276
|
+
* Use `durationRange` for services where the customer chooses how long to book,
|
|
1277
|
+
* such as equipment or space rentals. The `unitType` determines whether the range
|
|
1278
|
+
* is measured in hours or days.
|
|
1294
1279
|
*/
|
|
1295
|
-
|
|
1280
|
+
durationRange?: DurationRange;
|
|
1296
1281
|
}
|
|
1297
1282
|
interface V2Duration {
|
|
1298
1283
|
/**
|
|
1299
1284
|
* The duration of the service in minutes.
|
|
1300
|
-
*
|
|
1301
|
-
* Min: `1` minute
|
|
1302
|
-
* Max: `44639` minutes (30 days, 23 hours, and 59 minutes)
|
|
1303
1285
|
* @min 1
|
|
1304
1286
|
* @max 44639
|
|
1305
1287
|
*/
|
|
1306
1288
|
minutes?: number;
|
|
1307
1289
|
}
|
|
1308
|
-
/**
|
|
1290
|
+
/**
|
|
1291
|
+
* Duration range configuration for a service. Defines the minimum and maximum
|
|
1292
|
+
* booking duration a customer can select, and the unit of measurement.
|
|
1293
|
+
*
|
|
1294
|
+
* For hourly services, durations are configured in minutes via `hourOptions`.
|
|
1295
|
+
* For daily services, durations are configured in days via `dayOptions`.
|
|
1296
|
+
*/
|
|
1309
1297
|
interface DurationRange extends DurationRangeConfigOneOf {
|
|
1310
|
-
/** Configuration for hourly duration. Set when `
|
|
1298
|
+
/** Configuration for hourly duration ranges. Set when `unitType` is `HOUR`. */
|
|
1311
1299
|
hourOptions?: HourlyConfig;
|
|
1312
|
-
/** Configuration for daily duration. Set when `
|
|
1300
|
+
/** Configuration for daily duration ranges. Set when `unitType` is `DAY`. */
|
|
1313
1301
|
dayOptions?: DailyConfig;
|
|
1314
|
-
/** The unit type for this duration range. */
|
|
1302
|
+
/** The unit type for this duration range. Determines which configuration to use in the `config` union. */
|
|
1315
1303
|
unitType?: UnitTypeWithLiterals;
|
|
1316
1304
|
}
|
|
1317
1305
|
/** @oneof */
|
|
1318
1306
|
interface DurationRangeConfigOneOf {
|
|
1319
|
-
/** Configuration for hourly duration. Set when `
|
|
1307
|
+
/** Configuration for hourly duration ranges. Set when `unitType` is `HOUR`. */
|
|
1320
1308
|
hourOptions?: HourlyConfig;
|
|
1321
|
-
/** Configuration for daily duration. Set when `
|
|
1309
|
+
/** Configuration for daily duration ranges. Set when `unitType` is `DAY`. */
|
|
1322
1310
|
dayOptions?: DailyConfig;
|
|
1323
1311
|
}
|
|
1324
1312
|
/** The booking unit for the duration range. */
|
|
1325
1313
|
declare enum UnitType {
|
|
1326
|
-
/**
|
|
1327
|
-
* Booking unit is per hour.
|
|
1328
|
-
* @documentationMaturity preview
|
|
1329
|
-
* @internal
|
|
1330
|
-
*/
|
|
1314
|
+
/** Hourly booking unit. Durations are configured in minutes via `hourOptions`. */
|
|
1331
1315
|
HOUR = "HOUR",
|
|
1332
|
-
/**
|
|
1333
|
-
* Booking unit is per day.
|
|
1334
|
-
* @documentationMaturity preview
|
|
1335
|
-
* @internal
|
|
1336
|
-
*/
|
|
1316
|
+
/** Daily booking unit. Durations are configured in days via `dayOptions`. */
|
|
1337
1317
|
DAY = "DAY"
|
|
1338
1318
|
}
|
|
1339
1319
|
/** @enumType */
|
|
1340
|
-
type UnitTypeWithLiterals = UnitType;
|
|
1341
|
-
/** Hourly duration configuration.
|
|
1320
|
+
type UnitTypeWithLiterals = UnitType | 'HOUR' | 'DAY';
|
|
1321
|
+
/** Hourly duration configuration. Durations are specified in minutes. */
|
|
1342
1322
|
interface HourlyConfig {
|
|
1343
1323
|
/**
|
|
1344
|
-
* Minimum bookable duration in minutes.
|
|
1345
|
-
*
|
|
1346
|
-
* Min: `30` minutes
|
|
1347
|
-
* Max: `1440` minutes (24 hours)
|
|
1324
|
+
* Minimum bookable duration in minutes. The customer can't book for less than this duration.
|
|
1348
1325
|
* @min 30
|
|
1349
1326
|
* @max 1440
|
|
1350
1327
|
*/
|
|
1351
1328
|
minDurationInMinutes?: number;
|
|
1352
1329
|
/**
|
|
1353
|
-
* Maximum bookable duration in minutes.
|
|
1330
|
+
* Maximum bookable duration in minutes. The customer can't book for more than this duration.
|
|
1354
1331
|
*
|
|
1355
|
-
*
|
|
1356
|
-
* Max: `1440` minutes (24 hours)
|
|
1332
|
+
* Must be greater than or equal to `minDurationInMinutes`.
|
|
1357
1333
|
* @min 30
|
|
1358
1334
|
* @max 1440
|
|
1359
1335
|
*/
|
|
1360
1336
|
maxDurationInMinutes?: number;
|
|
1361
1337
|
}
|
|
1362
|
-
/** Daily duration configuration.
|
|
1338
|
+
/** Daily duration configuration. Durations are specified in days. */
|
|
1363
1339
|
interface DailyConfig {
|
|
1364
1340
|
/**
|
|
1365
|
-
* Minimum bookable duration in days.
|
|
1366
|
-
*
|
|
1367
|
-
* Min: `1` day
|
|
1368
|
-
* Max: `8` days
|
|
1341
|
+
* Minimum bookable duration in days. The customer can't book for less than this number of days.
|
|
1369
1342
|
* @min 1
|
|
1370
1343
|
* @max 8
|
|
1371
1344
|
*/
|
|
1372
1345
|
minDurationInDays?: number;
|
|
1373
1346
|
/**
|
|
1374
|
-
* Maximum bookable duration in days.
|
|
1347
|
+
* Maximum bookable duration in days. The customer can't book for more than this number of days.
|
|
1375
1348
|
*
|
|
1376
|
-
*
|
|
1377
|
-
* Max: `8` days
|
|
1349
|
+
* Must be greater than or equal to `minDurationInDays`.
|
|
1378
1350
|
* @min 1
|
|
1379
1351
|
* @max 8
|
|
1380
1352
|
*/
|
|
@@ -1391,20 +1363,6 @@ interface WorkingHours {
|
|
|
1391
1363
|
mode?: WorkingHoursModeWithLiterals;
|
|
1392
1364
|
}
|
|
1393
1365
|
declare enum WorkingHoursMode {
|
|
1394
|
-
/**
|
|
1395
|
-
* Bookable only where the service's own working hours and the resources working hours
|
|
1396
|
-
* overlap (the intersection of the two).
|
|
1397
|
-
* @documentationMaturity preview
|
|
1398
|
-
* @internal
|
|
1399
|
-
*/
|
|
1400
|
-
INTERSECT_RESOURCE_HOURS = "INTERSECT_RESOURCE_HOURS",
|
|
1401
|
-
/**
|
|
1402
|
-
* The service's own working hours replace the resources working-hours window. Existing
|
|
1403
|
-
* bookings and blocked time on those resources still reduce availability.
|
|
1404
|
-
* @documentationMaturity preview
|
|
1405
|
-
* @internal
|
|
1406
|
-
*/
|
|
1407
|
-
OVERRIDE_RESOURCE_HOURS = "OVERRIDE_RESOURCE_HOURS"
|
|
1408
1366
|
}
|
|
1409
1367
|
/** @enumType */
|
|
1410
1368
|
type WorkingHoursModeWithLiterals = WorkingHoursMode;
|
|
@@ -1503,24 +1461,24 @@ interface ResourceIds {
|
|
|
1503
1461
|
}
|
|
1504
1462
|
interface ServiceResource extends ServiceResourceSelectionOneOf {
|
|
1505
1463
|
/**
|
|
1506
|
-
*
|
|
1507
|
-
*
|
|
1464
|
+
* IDs of specific [resources](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/introduction)
|
|
1465
|
+
* assigned to this service resource. Each ID must reference a resource within the specified `resourceType`.
|
|
1466
|
+
*
|
|
1467
|
+
* When set, only these resources are considered for availability and booking.
|
|
1468
|
+
* When not set, all resources of the specified resource type are eligible.
|
|
1508
1469
|
*/
|
|
1509
1470
|
resourceIds?: ResourceIds;
|
|
1510
1471
|
/** Details about the required [resource type](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resource-types-v2/introduction). */
|
|
1511
1472
|
resourceType?: ResourceType;
|
|
1512
|
-
/**
|
|
1513
|
-
* Details about the individual resources assigned to this service resource, including their names.
|
|
1514
|
-
* Only returned when `RESOURCE_DETAILS` is passed in `conditionalFields`.
|
|
1515
|
-
* @internal
|
|
1516
|
-
*/
|
|
1517
|
-
resourceDetails?: ResourceDetails;
|
|
1518
1473
|
}
|
|
1519
1474
|
/** @oneof */
|
|
1520
1475
|
interface ServiceResourceSelectionOneOf {
|
|
1521
1476
|
/**
|
|
1522
|
-
*
|
|
1523
|
-
*
|
|
1477
|
+
* IDs of specific [resources](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resources-v2/introduction)
|
|
1478
|
+
* assigned to this service resource. Each ID must reference a resource within the specified `resourceType`.
|
|
1479
|
+
*
|
|
1480
|
+
* When set, only these resources are considered for availability and booking.
|
|
1481
|
+
* When not set, all resources of the specified resource type are eligible.
|
|
1524
1482
|
*/
|
|
1525
1483
|
resourceIds?: ResourceIds;
|
|
1526
1484
|
}
|
|
@@ -1932,33 +1890,6 @@ interface Booking extends BookingParticipantsInfoOneOf {
|
|
|
1932
1890
|
* When the service supports deposit payments and `fullUpfrontPaymentAllowed` is `true`, this field can be `true` or `false`.
|
|
1933
1891
|
*/
|
|
1934
1892
|
depositSelected?: boolean | null;
|
|
1935
|
-
/**
|
|
1936
|
-
* Whether the booking is scheduled to be canceled at the end of the current
|
|
1937
|
-
* billing period.
|
|
1938
|
-
*
|
|
1939
|
-
* Applies only to bookings paid through a monthly subscription (course bookings).
|
|
1940
|
-
* The booking remains `CONFIRMED` until the cancellation is finalized at period
|
|
1941
|
-
* end. The effective date is available through Query Extended Bookings.
|
|
1942
|
-
* @internal
|
|
1943
|
-
* @readonly
|
|
1944
|
-
*/
|
|
1945
|
-
cancellationScheduled?: boolean | null;
|
|
1946
|
-
/**
|
|
1947
|
-
* ID of the recurring booking group this booking belongs to.
|
|
1948
|
-
*
|
|
1949
|
-
* A recurring booking group is a set of independent bookings you link together
|
|
1950
|
-
* by supplying the same GUID in this field when calling `CreateBooking` or
|
|
1951
|
-
* `BulkCreateBooking`. All bookings in the group correspond to calendar events
|
|
1952
|
-
* that share the same [schedule ID](https://dev.wix.com/docs/rest/business-management/calendar/schedules-v3/introduction).
|
|
1953
|
-
*
|
|
1954
|
-
* This field is always empty for course bookings, which don't support recurring booking groups.
|
|
1955
|
-
*
|
|
1956
|
-
* To cancel all bookings in the series, pass this ID to
|
|
1957
|
-
* `BulkCancelBooking` via `RecurringCancellation.recurringGroupId`.
|
|
1958
|
-
* @internal
|
|
1959
|
-
* @format GUID
|
|
1960
|
-
*/
|
|
1961
|
-
recurringGroupId?: string | null;
|
|
1962
1893
|
}
|
|
1963
1894
|
/** @oneof */
|
|
1964
1895
|
interface BookingParticipantsInfoOneOf {
|
|
@@ -2654,16 +2585,6 @@ interface ServiceChoice extends ServiceChoiceChoiceOneOf {
|
|
|
2654
2585
|
*/
|
|
2655
2586
|
custom?: string;
|
|
2656
2587
|
duration?: Duration;
|
|
2657
|
-
/**
|
|
2658
|
-
* The matched date-time pricing rule. Available only for `DATE_TIME` options.
|
|
2659
|
-
* @internal
|
|
2660
|
-
*/
|
|
2661
|
-
dateTime?: DateTimeRule;
|
|
2662
|
-
/**
|
|
2663
|
-
* The matched participants pricing rule. Available only for `NUMBER_OF_PARTICIPANTS` options.
|
|
2664
|
-
* @internal
|
|
2665
|
-
*/
|
|
2666
|
-
participantRange?: ParticipantsRange;
|
|
2667
2588
|
/**
|
|
2668
2589
|
* ID of the corresponding option for the choice. For example, the choice `child`
|
|
2669
2590
|
* could correspond to the option `ageGroup`. In this case, `optionId` is the ID
|
|
@@ -2682,16 +2603,6 @@ interface ServiceChoiceChoiceOneOf {
|
|
|
2682
2603
|
*/
|
|
2683
2604
|
custom?: string;
|
|
2684
2605
|
duration?: Duration;
|
|
2685
|
-
/**
|
|
2686
|
-
* The matched date-time pricing rule. Available only for `DATE_TIME` options.
|
|
2687
|
-
* @internal
|
|
2688
|
-
*/
|
|
2689
|
-
dateTime?: DateTimeRule;
|
|
2690
|
-
/**
|
|
2691
|
-
* The matched participants pricing rule. Available only for `NUMBER_OF_PARTICIPANTS` options.
|
|
2692
|
-
* @internal
|
|
2693
|
-
*/
|
|
2694
|
-
participantRange?: ParticipantsRange;
|
|
2695
2606
|
}
|
|
2696
2607
|
interface Duration {
|
|
2697
2608
|
/**
|
|
@@ -2926,6 +2837,39 @@ interface AccountInfo {
|
|
|
2926
2837
|
*/
|
|
2927
2838
|
siteId?: string | null;
|
|
2928
2839
|
}
|
|
2840
|
+
/**
|
|
2841
|
+
* A deposit expressed as exactly one of a fixed monetary amount or a percentage of the full service price.
|
|
2842
|
+
* Structurally exclusive: at most one of `amount` or `percentage` may be set.
|
|
2843
|
+
*/
|
|
2844
|
+
interface DepositDetails extends DepositDetailsValueOneOf {
|
|
2845
|
+
/** The deposit as a fixed monetary amount. */
|
|
2846
|
+
amount?: Money;
|
|
2847
|
+
/**
|
|
2848
|
+
* The deposit as a percentage of the full service price, for example `20` for 20% or `20.5` for 20.5%.
|
|
2849
|
+
* Resolved to a concrete amount when the customer books.
|
|
2850
|
+
*
|
|
2851
|
+
* Min: `0.01` percent
|
|
2852
|
+
* Max: `99.99` percent
|
|
2853
|
+
* @format DECIMAL_VALUE
|
|
2854
|
+
* @decimalValue options { gte:0.01, lte:99.99, maxScale:2 }
|
|
2855
|
+
*/
|
|
2856
|
+
percentage?: string | null;
|
|
2857
|
+
}
|
|
2858
|
+
/** @oneof */
|
|
2859
|
+
interface DepositDetailsValueOneOf {
|
|
2860
|
+
/** The deposit as a fixed monetary amount. */
|
|
2861
|
+
amount?: Money;
|
|
2862
|
+
/**
|
|
2863
|
+
* The deposit as a percentage of the full service price, for example `20` for 20% or `20.5` for 20.5%.
|
|
2864
|
+
* Resolved to a concrete amount when the customer books.
|
|
2865
|
+
*
|
|
2866
|
+
* Min: `0.01` percent
|
|
2867
|
+
* Max: `99.99` percent
|
|
2868
|
+
* @format DECIMAL_VALUE
|
|
2869
|
+
* @decimalValue options { gte:0.01, lte:99.99, maxScale:2 }
|
|
2870
|
+
*/
|
|
2871
|
+
percentage?: string | null;
|
|
2872
|
+
}
|
|
2929
2873
|
interface CreateServiceRequest {
|
|
2930
2874
|
/** Service to create. */
|
|
2931
2875
|
service: Service;
|
|
@@ -3031,14 +2975,13 @@ declare enum V2RequestedFields {
|
|
|
3031
2975
|
/** When passed, `service.payment.discountInfo` is returned. */
|
|
3032
2976
|
DISCOUNT_INFO_DETAILS = "DISCOUNT_INFO_DETAILS",
|
|
3033
2977
|
/**
|
|
3034
|
-
* Returns
|
|
2978
|
+
* Returns details about each individual resource assigned to a service resource, including the resource name. See `serviceResources.resourceDetails`.
|
|
3035
2979
|
* @documentationMaturity preview
|
|
3036
|
-
* @internal
|
|
3037
2980
|
*/
|
|
3038
2981
|
RESOURCE_DETAILS = "RESOURCE_DETAILS"
|
|
3039
2982
|
}
|
|
3040
2983
|
/** @enumType */
|
|
3041
|
-
type V2RequestedFieldsWithLiterals = V2RequestedFields | 'STAFF_MEMBER_DETAILS' | 'RESOURCE_TYPE_DETAILS' | 'DISCOUNT_INFO_DETAILS';
|
|
2984
|
+
type V2RequestedFieldsWithLiterals = V2RequestedFields | 'STAFF_MEMBER_DETAILS' | 'RESOURCE_TYPE_DETAILS' | 'DISCOUNT_INFO_DETAILS' | 'RESOURCE_DETAILS';
|
|
3042
2985
|
interface GetServiceResponse {
|
|
3043
2986
|
/** Retrieved service. */
|
|
3044
2987
|
service?: Service;
|
|
@@ -3175,13 +3118,6 @@ interface DeleteServiceRequest {
|
|
|
3175
3118
|
* custom message.
|
|
3176
3119
|
*/
|
|
3177
3120
|
participantNotification?: V2ParticipantNotification;
|
|
3178
|
-
/**
|
|
3179
|
-
* Whether to cancel active subscriptions associated with the service's bookings.
|
|
3180
|
-
*
|
|
3181
|
-
* Default: `false`.
|
|
3182
|
-
* @internal
|
|
3183
|
-
*/
|
|
3184
|
-
cancelSubscription?: boolean | null;
|
|
3185
3121
|
}
|
|
3186
3122
|
interface V2ParticipantNotification {
|
|
3187
3123
|
/**
|
|
@@ -3216,13 +3152,6 @@ interface BulkDeleteServicesRequest {
|
|
|
3216
3152
|
* custom message.
|
|
3217
3153
|
*/
|
|
3218
3154
|
participantNotification?: V2ParticipantNotification;
|
|
3219
|
-
/**
|
|
3220
|
-
* Whether to cancel active subscriptions associated with the service's bookings.
|
|
3221
|
-
*
|
|
3222
|
-
* Default: `false`.
|
|
3223
|
-
* @internal
|
|
3224
|
-
*/
|
|
3225
|
-
cancelSubscription?: boolean | null;
|
|
3226
3155
|
}
|
|
3227
3156
|
interface BulkDeleteServicesResponse {
|
|
3228
3157
|
/** The result of each service removal. */
|
|
@@ -3241,13 +3170,6 @@ interface BulkDeleteServicesByFilterRequest {
|
|
|
3241
3170
|
preserveFutureSessionsWithParticipants?: boolean;
|
|
3242
3171
|
/** Whether to notify participants about the change and an optional custom message. */
|
|
3243
3172
|
participantNotification?: V2ParticipantNotification;
|
|
3244
|
-
/**
|
|
3245
|
-
* Whether to cancel active subscriptions associated with the service's bookings.
|
|
3246
|
-
*
|
|
3247
|
-
* Default: `false`.
|
|
3248
|
-
* @internal
|
|
3249
|
-
*/
|
|
3250
|
-
cancelSubscription?: boolean | null;
|
|
3251
3173
|
}
|
|
3252
3174
|
interface BulkDeleteServicesByFilterResponse {
|
|
3253
3175
|
/**
|
|
@@ -5333,7 +5255,7 @@ declare function onServiceUpdated(handler: (event: ServiceUpdatedEnvelope) => vo
|
|
|
5333
5255
|
* @returns Created service.
|
|
5334
5256
|
* @fqn wix.bookings.services.v2.ServicesService.CreateService
|
|
5335
5257
|
*/
|
|
5336
|
-
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> & {
|
|
5258
|
+
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> & {
|
|
5337
5259
|
__validationErrorsType?: CreateServiceValidationErrors;
|
|
5338
5260
|
}>;
|
|
5339
5261
|
/**
|
|
@@ -5377,7 +5299,7 @@ interface BulkCreateServicesOptions {
|
|
|
5377
5299
|
* @returns Retrieved service.
|
|
5378
5300
|
* @fqn wix.bookings.services.v2.ServicesService.GetService
|
|
5379
5301
|
*/
|
|
5380
|
-
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>>;
|
|
5302
|
+
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>>;
|
|
5381
5303
|
interface GetServiceOptions {
|
|
5382
5304
|
/**
|
|
5383
5305
|
* Conditional fields to return.
|
|
@@ -5420,7 +5342,7 @@ interface GetServiceOptions {
|
|
|
5420
5342
|
* @returns Updated service.
|
|
5421
5343
|
* @fqn wix.bookings.services.v2.ServicesService.UpdateService
|
|
5422
5344
|
*/
|
|
5423
|
-
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> & {
|
|
5345
|
+
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> & {
|
|
5424
5346
|
__validationErrorsType?: UpdateServiceValidationErrors;
|
|
5425
5347
|
}>;
|
|
5426
5348
|
interface UpdateService {
|
|
@@ -5598,15 +5520,17 @@ interface UpdateService {
|
|
|
5598
5520
|
/** Taxable address used to calculate tax */
|
|
5599
5521
|
taxableAddress?: TaxableAddress;
|
|
5600
5522
|
/**
|
|
5601
|
-
*
|
|
5602
|
-
*
|
|
5603
|
-
*
|
|
5604
|
-
*
|
|
5523
|
+
* ID of the [resource type](https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/resource-types-v2/introduction)
|
|
5524
|
+
* that serves as the primary resource for this appointment service. The primary resource type
|
|
5525
|
+
* determines which resources drive slot assignment and availability resolution.
|
|
5526
|
+
*
|
|
5527
|
+
* For example, when set to a "Meeting Rooms" resource type, availability is calculated
|
|
5528
|
+
* based on the rooms' schedules rather than staff schedules.
|
|
5529
|
+
*
|
|
5530
|
+
* Default: The staff resource type.
|
|
5605
5531
|
* @format GUID
|
|
5606
5532
|
*/
|
|
5607
5533
|
primaryResourceType?: string | null;
|
|
5608
|
-
/** Whether to inherit resource locations for availability resolution. */
|
|
5609
|
-
inheritResourceLocations?: boolean | null;
|
|
5610
5534
|
}
|
|
5611
5535
|
/**
|
|
5612
5536
|
* Updates up to 100 services.
|
|
@@ -5686,13 +5610,6 @@ interface DeleteServiceOptions {
|
|
|
5686
5610
|
* custom message.
|
|
5687
5611
|
*/
|
|
5688
5612
|
participantNotification?: V2ParticipantNotification;
|
|
5689
|
-
/**
|
|
5690
|
-
* Whether to cancel active subscriptions associated with the service's bookings.
|
|
5691
|
-
*
|
|
5692
|
-
* Default: `false`.
|
|
5693
|
-
* @internal
|
|
5694
|
-
*/
|
|
5695
|
-
cancelSubscription?: boolean | null;
|
|
5696
5613
|
}
|
|
5697
5614
|
/**
|
|
5698
5615
|
* Deletes multiple services.
|
|
@@ -5723,13 +5640,6 @@ interface BulkDeleteServicesOptions {
|
|
|
5723
5640
|
* custom message.
|
|
5724
5641
|
*/
|
|
5725
5642
|
participantNotification?: V2ParticipantNotification;
|
|
5726
|
-
/**
|
|
5727
|
-
* Whether to cancel active subscriptions associated with the service's bookings.
|
|
5728
|
-
*
|
|
5729
|
-
* Default: `false`.
|
|
5730
|
-
* @internal
|
|
5731
|
-
*/
|
|
5732
|
-
cancelSubscription?: boolean | null;
|
|
5733
5643
|
}
|
|
5734
5644
|
/**
|
|
5735
5645
|
* Deletes multiple services by filter.
|
|
@@ -5763,13 +5673,6 @@ interface BulkDeleteServicesByFilterOptions {
|
|
|
5763
5673
|
preserveFutureSessionsWithParticipants?: boolean;
|
|
5764
5674
|
/** Whether to notify participants about the change and an optional custom message. */
|
|
5765
5675
|
participantNotification?: V2ParticipantNotification;
|
|
5766
|
-
/**
|
|
5767
|
-
* Whether to cancel active subscriptions associated with the service's bookings.
|
|
5768
|
-
*
|
|
5769
|
-
* Default: `false`.
|
|
5770
|
-
* @internal
|
|
5771
|
-
*/
|
|
5772
|
-
cancelSubscription?: boolean | null;
|
|
5773
5676
|
}
|
|
5774
5677
|
/**
|
|
5775
5678
|
* Creates a query to retrieve a list of `service` objects.
|
|
@@ -5961,21 +5864,10 @@ declare const utils: {
|
|
|
5961
5864
|
query: {
|
|
5962
5865
|
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Service, ServiceQuerySpec, ServiceQuery>;
|
|
5963
5866
|
Filter: _wix_sdk_types.FilterFactory<Service, ServiceQuerySpec>;
|
|
5964
|
-
Sort: _wix_sdk_types.SortFactory<ServiceQuerySpec>;
|
|
5965
|
-
* Determines how the service's own working hours combine with the working hours of its assigned
|
|
5966
|
-
* staff members and required resources. Supported for appointment services only, and can't be
|
|
5967
|
-
* combined with `durationRange`.
|
|
5968
|
-
*
|
|
5969
|
-
* Leave unset for resource-based availability, the default and only valid state for class,
|
|
5970
|
-
* course, and duration-range services. The service's own working hours are the `WORKING_HOURS`
|
|
5971
|
-
* [events](https://dev.wix.com/docs/rest/business-management/calendar/events-v3/introduction)
|
|
5972
|
-
* on this service's schedule (`schedule.id`); this field controls only how those events combine
|
|
5973
|
-
* with the resources working hours, it doesn't contain the hours themselves.
|
|
5974
|
-
* @internal
|
|
5975
|
-
*/
|
|
5867
|
+
Sort: _wix_sdk_types.SortFactory<ServiceQuerySpec>;
|
|
5976
5868
|
};
|
|
5977
5869
|
search: {
|
|
5978
|
-
SearchBuilder: () => _wix_sdk_types.SearchBuilder<Service, ServiceSearchSpec, ServiceSearch>;
|
|
5870
|
+
SearchBuilder: () => _wix_sdk_types.SearchBuilder<Service, ServiceSearchSpec, ServiceSearch>;
|
|
5979
5871
|
Filter: _wix_sdk_types.FilterFactory<Service, ServiceSearchSpec>;
|
|
5980
5872
|
Sort: _wix_sdk_types.SortFactory<ServiceSearchSpec>;
|
|
5981
5873
|
SearchParams: _wix_sdk_types.SearchParamsFactory<ServiceSearchSpec>;
|
|
@@ -6405,7 +6297,7 @@ interface QueryCategoriesOptions {
|
|
|
6405
6297
|
* @applicableIdentity APP
|
|
6406
6298
|
* @fqn wix.bookings.services.v2.ServicesService.SetServiceLocations
|
|
6407
6299
|
*/
|
|
6408
|
-
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>>;
|
|
6300
|
+
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>>;
|
|
6409
6301
|
interface SetServiceLocationsOptions {
|
|
6410
6302
|
/**
|
|
6411
6303
|
* 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.
|
|
@@ -6442,7 +6334,7 @@ interface SetServiceLocationsOptions {
|
|
|
6442
6334
|
* @applicableIdentity APP
|
|
6443
6335
|
* @fqn wix.bookings.services.v2.ServicesService.EnablePricingPlansForService
|
|
6444
6336
|
*/
|
|
6445
|
-
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> & {
|
|
6337
|
+
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> & {
|
|
6446
6338
|
__applicationErrorsType?: EnablePricingPlansForServiceApplicationErrors;
|
|
6447
6339
|
}>;
|
|
6448
6340
|
/**
|
|
@@ -6459,7 +6351,7 @@ declare function enablePricingPlansForService(serviceId: string, pricingPlanIds:
|
|
|
6459
6351
|
* @applicableIdentity APP
|
|
6460
6352
|
* @fqn wix.bookings.services.v2.ServicesService.DisablePricingPlansForService
|
|
6461
6353
|
*/
|
|
6462
|
-
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> & {
|
|
6354
|
+
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> & {
|
|
6463
6355
|
__applicationErrorsType?: DisablePricingPlansForServiceApplicationErrors;
|
|
6464
6356
|
}>;
|
|
6465
6357
|
interface DisablePricingPlansForServiceOptions {
|
|
@@ -6487,7 +6379,7 @@ interface DisablePricingPlansForServiceOptions {
|
|
|
6487
6379
|
* @applicableIdentity APP
|
|
6488
6380
|
* @fqn wix.bookings.services.v2.ServicesService.SetCustomSlug
|
|
6489
6381
|
*/
|
|
6490
|
-
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> & {
|
|
6382
|
+
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> & {
|
|
6491
6383
|
__applicationErrorsType?: SetCustomSlugApplicationErrors;
|
|
6492
6384
|
__validationErrorsType?: SetCustomSlugValidationErrors;
|
|
6493
6385
|
}>;
|
|
@@ -6581,7 +6473,7 @@ interface ValidateSlugOptions {
|
|
|
6581
6473
|
* @applicableIdentity APP
|
|
6582
6474
|
* @fqn wix.bookings.services.v2.ServicesService.CloneService
|
|
6583
6475
|
*/
|
|
6584
|
-
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>>;
|
|
6476
|
+
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>>;
|
|
6585
6477
|
/**
|
|
6586
6478
|
* Creates a new add-on group for a service and updates the service's `addOnGroups` array.
|
|
6587
6479
|
* @param addOnGroup - Add-on group to create.
|
|
@@ -6723,4 +6615,4 @@ interface SetAddOnsForGroupOptions {
|
|
|
6723
6615
|
addOnIds: string[] | null;
|
|
6724
6616
|
}
|
|
6725
6617
|
|
|
6726
|
-
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 };
|
|
6618
|
+
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 };
|