@wix/auto_sdk_bookings_services 1.0.42 → 1.0.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.typings.d.ts +53 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/src/bookings-services-v2-service-services.context.d.ts +1 -1
- package/build/cjs/src/bookings-services-v2-service-services.types.d.ts +163 -163
- package/build/cjs/src/bookings-services-v2-service-services.types.js.map +1 -1
- package/build/cjs/src/bookings-services-v2-service-services.universal.d.ts +163 -163
- package/build/cjs/src/bookings-services-v2-service-services.universal.js.map +1 -1
- package/build/es/index.typings.d.ts +53 -0
- package/build/es/index.typings.js.map +1 -1
- package/build/es/src/bookings-services-v2-service-services.context.d.ts +1 -1
- package/build/es/src/bookings-services-v2-service-services.types.d.ts +163 -163
- package/build/es/src/bookings-services-v2-service-services.types.js.map +1 -1
- package/build/es/src/bookings-services-v2-service-services.universal.d.ts +163 -163
- package/build/es/src/bookings-services-v2-service-services.universal.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +53 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/src/bookings-services-v2-service-services.context.d.ts +1 -1
- package/build/internal/cjs/src/bookings-services-v2-service-services.types.d.ts +163 -163
- package/build/internal/cjs/src/bookings-services-v2-service-services.types.js.map +1 -1
- package/build/internal/cjs/src/bookings-services-v2-service-services.universal.d.ts +163 -163
- package/build/internal/cjs/src/bookings-services-v2-service-services.universal.js.map +1 -1
- package/build/internal/es/index.typings.d.ts +53 -0
- package/build/internal/es/index.typings.js.map +1 -1
- package/build/internal/es/src/bookings-services-v2-service-services.context.d.ts +1 -1
- package/build/internal/es/src/bookings-services-v2-service-services.types.d.ts +163 -163
- package/build/internal/es/src/bookings-services-v2-service-services.types.js.map +1 -1
- package/build/internal/es/src/bookings-services-v2-service-services.universal.d.ts +163 -163
- package/build/internal/es/src/bookings-services-v2-service-services.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -1 +1,54 @@
|
|
|
1
|
+
import { SearchServicesResponse, CursorSearch } from './src/bookings-services-v2-service-services.universal';
|
|
1
2
|
export * from './src/bookings-services-v2-service-services.universal.js';
|
|
3
|
+
/**
|
|
4
|
+
* Retrieves a list of up to 100 services, given the provided filtering, paging,
|
|
5
|
+
* and sorting.
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* ## Defaults
|
|
9
|
+
*
|
|
10
|
+
* Search Services has the following default settings, which you can override:
|
|
11
|
+
* + Sorted by `createdDate` in ascending order.
|
|
12
|
+
* + `paging.limit` set to `100`.
|
|
13
|
+
* + `paging.offset` set to `0`.
|
|
14
|
+
*
|
|
15
|
+
* ## Filters
|
|
16
|
+
*
|
|
17
|
+
* When using filters for dates, you must use
|
|
18
|
+
* [UTC time](https://en.wikipedia.org/wiki/Coordinated_Universal_Time).
|
|
19
|
+
*
|
|
20
|
+
* Refer to the supported filters article
|
|
21
|
+
* ([REST](https://dev.wix.com/docs/rest/business-solutions/bookings/services/services-v2/filtering-and-sorting))
|
|
22
|
+
* for a complete list of supported filters and sorting options.
|
|
23
|
+
*
|
|
24
|
+
* ## See also
|
|
25
|
+
*
|
|
26
|
+
* To learn about working with *Search* methods, see
|
|
27
|
+
* _API Query Language_
|
|
28
|
+
* ([SDK](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/api-query-language) | [REST](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language))
|
|
29
|
+
* and *Sorting and Paging*
|
|
30
|
+
* ([SDK](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/api-query-language#the-sort-array) | [REST](https://dev.wix.com/docs/rest/articles/getting-started/sorting-and-paging)).
|
|
31
|
+
* @param search - WQL, search or aggregation expression.
|
|
32
|
+
* @public
|
|
33
|
+
* @documentationMaturity preview
|
|
34
|
+
* @requiredField search
|
|
35
|
+
* @permissionId BOOKINGS.SERVICES_READ
|
|
36
|
+
* @permissionScope Manage Stores
|
|
37
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
38
|
+
* @permissionScope Read Bookings - Public Data
|
|
39
|
+
* @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-PUBLIC
|
|
40
|
+
* @permissionScope Manage Bookings Services and Settings
|
|
41
|
+
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
42
|
+
* @permissionScope Manage Bookings
|
|
43
|
+
* @permissionScopeId SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS
|
|
44
|
+
* @permissionScope Read Bookings - Including Participants
|
|
45
|
+
* @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-SENSITIVE
|
|
46
|
+
* @permissionScope Read Bookings - all read permissions
|
|
47
|
+
* @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.READ-BOOKINGS
|
|
48
|
+
* @permissionScope Manage Bookings - all permissions
|
|
49
|
+
* @permissionScopeId SCOPE.DC-BOOKINGS-MEGA.MANAGE-BOOKINGS
|
|
50
|
+
* @applicableIdentity APP
|
|
51
|
+
* @applicableIdentity VISITOR
|
|
52
|
+
* @fqn wix.bookings.services.v2.ServicesService.SearchServices
|
|
53
|
+
*/
|
|
54
|
+
export declare function searchServices(search: CursorSearch): Promise<SearchServicesResponse>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.typings.js","sourceRoot":"","sources":["../../index.typings.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.typings.js","sourceRoot":"","sources":["../../index.typings.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAKA,2FAAyE"}
|
|
@@ -38,4 +38,4 @@ export declare const onServiceDeleted: ReturnType<typeof createEventModule<typeo
|
|
|
38
38
|
*/
|
|
39
39
|
export declare const onServiceUpdated: ReturnType<typeof createEventModule<typeof publicOnServiceUpdated>>;
|
|
40
40
|
export { ServiceType, RateType, LocationTypeEnumLocationType, WebhookIdentityType, V2RequestedFields, SortOrder, SortType, SortDirection, MissingValues, ScalarType, NestedAggregationType, DateHistogramAggregationInterval, AggregationType, Mode, RequestedFields, Action, InvalidSlugError, CloneErrors, Status, CategoryNotificationEvent, Day, Transparency, RecurringIntervalType, LocationType, LocationStatus, LocationsLocationType, DayOfWeek, ApprovalStatus, ScheduleStatus, ConferenceType, ResourceStatus, ResourceNotificationEvent, BenefitType, Event, CrudType, PlacementType, ResolutionMethod, } from './bookings-services-v2-service-services.universal.js';
|
|
41
|
-
export { Service, Media, MediaItem, MediaItemItemOneOf, V2Category, Form, FormSettings, Payment, PaymentRateOneOf, FixedPayment, Money, CustomPayment, VariedPayment, PaymentOptions, OnlineBooking, Conferencing, V2Location, V2LocationOptionsOneOf, CommonAddress, CommonAddressStreetOneOf, CommonStreetAddress, CommonAddressLocation, BusinessLocationOptions, CustomLocationOptions, BookingPolicy, PolicyDescription, LimitEarlyBookingPolicy, LimitLateBookingPolicy, BookAfterStartPolicy, CancellationPolicy, ReschedulePolicy, WaitlistPolicy, ParticipantsPolicy, ResourcesPolicy, CancellationFeePolicy, CancellationWindow, CancellationWindowFeeOneOf, SaveCreditCardPolicy, V2Schedule, V2AvailabilityConstraints, Duration, StaffMember, StaffMediaItem, StaffMediaItemItemOneOf, StaffMemberDetails, ResourceGroup, ResourceIds, ServiceResource, ServiceResourceSelectionOneOf, ResourceType, Slug, URLs, ExtendedFields, SeoSchema, Keyword, Tag, Settings, AddOnGroup, AddOnDetails, ReindexMessage, ReindexMessageActionOneOf, Upsert, Delete, Schema, SetCustomSlugEvent, ServicesUrlsChanged, DomainEvent, DomainEventBodyOneOf, EntityCreatedEvent, RestoreInfo, EntityUpdatedEvent, EntityDeletedEvent, ActionEvent, MessageEnvelope, IdentificationData, IdentificationDataIdOneOf,
|
|
41
|
+
export { Service, Media, MediaItem, MediaItemItemOneOf, V2Category, Form, FormSettings, Payment, PaymentRateOneOf, FixedPayment, Money, CustomPayment, VariedPayment, PaymentOptions, OnlineBooking, Conferencing, V2Location, V2LocationOptionsOneOf, CommonAddress, CommonAddressStreetOneOf, CommonStreetAddress, CommonAddressLocation, BusinessLocationOptions, CustomLocationOptions, BookingPolicy, PolicyDescription, LimitEarlyBookingPolicy, LimitLateBookingPolicy, BookAfterStartPolicy, CancellationPolicy, ReschedulePolicy, WaitlistPolicy, ParticipantsPolicy, ResourcesPolicy, CancellationFeePolicy, CancellationWindow, CancellationWindowFeeOneOf, SaveCreditCardPolicy, V2Schedule, V2AvailabilityConstraints, Duration, StaffMember, StaffMediaItem, StaffMediaItemItemOneOf, StaffMemberDetails, ResourceGroup, ResourceIds, ServiceResource, ServiceResourceSelectionOneOf, ResourceType, Slug, URLs, ExtendedFields, SeoSchema, Keyword, Tag, Settings, AddOnGroup, AddOnDetails, ReindexMessage, ReindexMessageActionOneOf, Upsert, Delete, Schema, SetCustomSlugEvent, ServicesUrlsChanged, DomainEvent, DomainEventBodyOneOf, EntityCreatedEvent, RestoreInfo, EntityUpdatedEvent, EntityDeletedEvent, ActionEvent, MessageEnvelope, IdentificationData, IdentificationDataIdOneOf, CreateServiceRequest, CreateServiceResponse, ValidateServiceRequest, ValidateServiceResponse, FieldViolation, BulkCreateServicesRequest, BulkCreateServicesResponse, BulkServiceResult, ItemMetadata, ApplicationError, BulkActionMetadata, GetServiceRequest, GetServiceResponse, GetServiceAvailabilityConstraintsRequest, GetServiceAvailabilityConstraintsResponse, ServiceAvailabilityConstraints, V1SplitInterval, UpdateServiceRequest, UpdateServiceResponse, BulkUpdateServicesRequest, MaskedService, BulkUpdateServicesResponse, BulkUpdateServicesByFilterRequest, BulkUpdateServicesByFilterResponse, DeleteServiceRequest, ParticipantNotification, DeleteServiceResponse, BulkDeleteServicesRequest, BulkDeleteServicesResponse, BulkDeleteServicesByFilterRequest, BulkDeleteServicesByFilterResponse, QueryServicesRequest, QueryV2, QueryV2PagingMethodOneOf, Sorting, Paging, CursorPaging, QueryServicesResponse, PagingMetadataV2, Cursors, SearchServicesRequest, CursorSearch, CursorSearchPagingMethodOneOf, Aggregation, AggregationKindOneOf, RangeBucket, IncludeMissingValuesOptions, ValueAggregation, ValueAggregationOptionsOneOf, RangeAggregation, ScalarAggregation, DateHistogramAggregation, NestedAggregationItem, NestedAggregationItemKindOneOf, NestedAggregation, GroupByAggregation, GroupByAggregationKindOneOf, SearchDetails, SearchServicesResponse, CursorPagingMetadata, AggregationData, ValueAggregationResult, RangeAggregationResult, NestedAggregationResults, NestedAggregationResultsResultOneOf, ValueResults, RangeResults, AggregationResultsScalarResult, NestedValueAggregationResult, ValueResult, RangeResult, ScalarResult, NestedResultValue, NestedResultValueResultOneOf, Results, DateHistogramResult, GroupByValueResults, DateHistogramResults, NestedResults, AggregationResults, AggregationResultsResultOneOf, QueryPoliciesRequest, CursorQuery, CursorQueryPagingMethodOneOf, QueryPoliciesResponse, BookingPolicyWithServices, QueryBookingFormsRequest, QueryBookingFormsResponse, BookingForm, FormDetails, ConnectedService, CountServicesRequest, CountServicesResponse, QueryLocationsRequest, QueryLocationsFilter, QueryLocationsResponse, BusinessLocations, CustomLocations, CustomerLocations, QueryCategoriesRequest, QueryCategoriesFilter, QueryCategoriesResponse, QueryServicesMultiLanguageRequest, QueryServicesMultiLanguageResponse, SetServiceLocationsRequest, RemovedLocationSessionsAction, RemovedLocationSessionsActionActionOptionsOneOf, MoveToNewLocationsOptions, SetServiceLocationsResponse, EnablePricingPlansForServiceRequest, EnablePricingPlansForServiceResponse, InvalidPricingPlan, DisablePricingPlansForServiceRequest, DisablePricingPlansForServiceResponse, SetCustomSlugRequest, SetCustomSlugResponse, ValidateSlugRequest, ValidateSlugResponse, CloneServiceRequest, CloneServiceResponse, CategoryNotification, Category, Empty, ResourceNotification, Resource, FocalPoint, Schedule, RecurringInterval, Interval, Frequency, LinkedSchedule, Location, Address, AddressStreetOneOf, StreetAddress, AddressLocation, Subdivision, LocationsLocation, LocationsAddress, LocationsStreetAddress, LocationsAddressLocation, BusinessSchedule, TimePeriod, SpecialHourPeriod, Rate, Price, Availability, AvailabilityConstraints, SplitInterval, Participant, ExternalCalendarOverrides, Version, ConferenceProvider, CalendarConference, BusinessLocation, BenefitNotification, Benefit, EntryPass, Discount, DiscountDiscountOneOf, Behavior, BehaviorBehaviorOneOf, UserDomainInfoChangedEvent, HtmlSitePublished, Page, SitePropertiesNotification, SitePropertiesEvent, Properties, Categories, Locale, V4Address, AddressHint, GeoCoordinates, Multilingual, SupportedLanguage, ConsentPolicy, Translation, ChangeContext, ChangeContextPayloadOneOf, PropertiesChange, SiteCreated, SiteCloned, CreateAddOnGroupRequest, CreateAddOnGroupResponse, DeleteAddOnGroupRequest, DeleteAddOnGroupResponse, UpdateAddOnGroupRequest, UpdateAddOnGroupResponse, ListAddOnGroupsByServiceIdRequest, ListAddOnGroupsByServiceIdResponse, AddOn, AddOnAddOnInfoOneOf, AddOnGroupDetail, SetAddOnsForGroupRequest, SetAddOnsForGroupResponse, ValidateAddOnsSelectionRequest, ValidateAddOnsSelectionResponse, ValidationResult, BaseEventMetadata, EventMetadata, ServiceCreatedEnvelope, ServiceDeletedEnvelope, ServiceUpdatedEnvelope, UpdateService, BulkUpdateServicesOptions, BulkUpdateServicesByFilterOptions, DeleteServiceOptions, BulkDeleteServicesOptions, BulkDeleteServicesByFilterOptions, QueryServicesOptions, ServicesQueryResult, ServicesQueryBuilder, QueryBookingFormsOptions, CountServicesOptions, QueryLocationsOptions, QueryCategoriesOptions, SetServiceLocationsOptions, DisablePricingPlansForServiceOptions, SetCustomSlugOptions, ValidateSlugOptions, } from './bookings-services-v2-service-services.universal.js';
|
|
@@ -1378,169 +1378,6 @@ export declare enum WebhookIdentityType {
|
|
|
1378
1378
|
WIX_USER = "WIX_USER",
|
|
1379
1379
|
APP = "APP"
|
|
1380
1380
|
}
|
|
1381
|
-
export interface CreateAddOnGroupRequest {
|
|
1382
|
-
/** AddOnGroup to create. */
|
|
1383
|
-
addOnGroup?: AddOnGroup;
|
|
1384
|
-
/**
|
|
1385
|
-
* ID of the service to create the AddOnGroup for.
|
|
1386
|
-
* @format GUID
|
|
1387
|
-
*/
|
|
1388
|
-
serviceId?: string | null;
|
|
1389
|
-
}
|
|
1390
|
-
export interface CreateAddOnGroupResponse {
|
|
1391
|
-
/** Created AddOnGroup. */
|
|
1392
|
-
addOnGroup?: AddOnGroup;
|
|
1393
|
-
}
|
|
1394
|
-
export interface DeleteAddOnGroupRequest {
|
|
1395
|
-
/**
|
|
1396
|
-
* ID of the AddOnGroup to delete.
|
|
1397
|
-
* @format GUID
|
|
1398
|
-
*/
|
|
1399
|
-
addOnGroupId?: string | null;
|
|
1400
|
-
/**
|
|
1401
|
-
* ID of the service from which to delete the AddOnGroup.
|
|
1402
|
-
* @format GUID
|
|
1403
|
-
*/
|
|
1404
|
-
serviceId?: string | null;
|
|
1405
|
-
}
|
|
1406
|
-
export interface DeleteAddOnGroupResponse {
|
|
1407
|
-
}
|
|
1408
|
-
export interface UpdateAddOnGroupRequest {
|
|
1409
|
-
/** AddOnGroup to update. */
|
|
1410
|
-
addOnGroup?: AddOnGroup;
|
|
1411
|
-
/** Explicit list of fields to update. */
|
|
1412
|
-
mask?: string[];
|
|
1413
|
-
}
|
|
1414
|
-
export interface UpdateAddOnGroupResponse {
|
|
1415
|
-
/** Updated AddOnGroup */
|
|
1416
|
-
addOnGroup?: AddOnGroup;
|
|
1417
|
-
}
|
|
1418
|
-
export interface ListAddOnGroupsByServiceIdRequest {
|
|
1419
|
-
/**
|
|
1420
|
-
* ID of the service to retrieve AddOnGroups for.
|
|
1421
|
-
* @format GUID
|
|
1422
|
-
*/
|
|
1423
|
-
serviceId?: string | null;
|
|
1424
|
-
/**
|
|
1425
|
-
* List of group ids to return. If not provided, all groups are returned.
|
|
1426
|
-
* @format GUID
|
|
1427
|
-
* @maxSize 3
|
|
1428
|
-
*/
|
|
1429
|
-
groupIds?: string[] | null;
|
|
1430
|
-
}
|
|
1431
|
-
export interface ListAddOnGroupsByServiceIdResponse {
|
|
1432
|
-
/**
|
|
1433
|
-
* List of group IDs and their linked AddOns.
|
|
1434
|
-
* @maxSize 3
|
|
1435
|
-
*/
|
|
1436
|
-
addOnGroupsDetails?: AddOnGroupDetail[];
|
|
1437
|
-
}
|
|
1438
|
-
export interface AddOn extends AddOnAddOnInfoOneOf {
|
|
1439
|
-
/** The AddOn description. */
|
|
1440
|
-
durationInMinutes?: number;
|
|
1441
|
-
/** The AddOn max quantity. */
|
|
1442
|
-
maxQuantity?: number;
|
|
1443
|
-
/**
|
|
1444
|
-
* The AddOn ID.
|
|
1445
|
-
* @format GUID
|
|
1446
|
-
*/
|
|
1447
|
-
addOnId?: string | null;
|
|
1448
|
-
/**
|
|
1449
|
-
* The AddOn name.
|
|
1450
|
-
* @maxLength 100
|
|
1451
|
-
*/
|
|
1452
|
-
name?: string | null;
|
|
1453
|
-
/** The AddOn price. */
|
|
1454
|
-
price?: Money;
|
|
1455
|
-
}
|
|
1456
|
-
/** @oneof */
|
|
1457
|
-
export interface AddOnAddOnInfoOneOf {
|
|
1458
|
-
/** The AddOn description. */
|
|
1459
|
-
durationInMinutes?: number;
|
|
1460
|
-
/** The AddOn max quantity. */
|
|
1461
|
-
maxQuantity?: number;
|
|
1462
|
-
}
|
|
1463
|
-
export interface AddOnGroupDetail {
|
|
1464
|
-
/**
|
|
1465
|
-
* The group ID.
|
|
1466
|
-
* @format GUID
|
|
1467
|
-
*/
|
|
1468
|
-
groupId?: string | null;
|
|
1469
|
-
/** The group max number of AddOns. */
|
|
1470
|
-
maxNumberOfAddOns?: number | null;
|
|
1471
|
-
/**
|
|
1472
|
-
* The group name.
|
|
1473
|
-
* @maxLength 100
|
|
1474
|
-
*/
|
|
1475
|
-
groupName?: string | null;
|
|
1476
|
-
/**
|
|
1477
|
-
* The AddOns information linked to the group.
|
|
1478
|
-
* @maxSize 7
|
|
1479
|
-
*/
|
|
1480
|
-
addOns?: AddOn[];
|
|
1481
|
-
/**
|
|
1482
|
-
* The group prompt.
|
|
1483
|
-
* @maxLength 200
|
|
1484
|
-
*/
|
|
1485
|
-
prompt?: string | null;
|
|
1486
|
-
}
|
|
1487
|
-
export interface SetAddOnsForGroupRequest {
|
|
1488
|
-
/**
|
|
1489
|
-
* The service ID to set AddOns for.
|
|
1490
|
-
* @format GUID
|
|
1491
|
-
*/
|
|
1492
|
-
serviceId?: string | null;
|
|
1493
|
-
/**
|
|
1494
|
-
* The group ID to set AddOns for.
|
|
1495
|
-
* @format GUID
|
|
1496
|
-
*/
|
|
1497
|
-
groupId?: string | null;
|
|
1498
|
-
/**
|
|
1499
|
-
* The IDs of AddOns to set.
|
|
1500
|
-
* @format GUID
|
|
1501
|
-
* @minSize 1
|
|
1502
|
-
* @maxSize 7
|
|
1503
|
-
*/
|
|
1504
|
-
addOnIds?: string[] | null;
|
|
1505
|
-
}
|
|
1506
|
-
export interface SetAddOnsForGroupResponse {
|
|
1507
|
-
/** The updated AddOnGroup. */
|
|
1508
|
-
addOnGroup?: AddOnGroup;
|
|
1509
|
-
}
|
|
1510
|
-
export interface ValidateAddOnsSelectionRequest {
|
|
1511
|
-
/**
|
|
1512
|
-
* The service ID to validate AddOns against.
|
|
1513
|
-
* @format GUID
|
|
1514
|
-
*/
|
|
1515
|
-
serviceId?: string | null;
|
|
1516
|
-
/**
|
|
1517
|
-
* The group ID to validate AddOns against.
|
|
1518
|
-
* @format GUID
|
|
1519
|
-
*/
|
|
1520
|
-
groupId?: string | null;
|
|
1521
|
-
/**
|
|
1522
|
-
* The IDs of AddOns to validate.
|
|
1523
|
-
* @format GUID
|
|
1524
|
-
* @minSize 1
|
|
1525
|
-
* @maxSize 7
|
|
1526
|
-
*/
|
|
1527
|
-
addOnIds?: string[] | null;
|
|
1528
|
-
}
|
|
1529
|
-
export interface ValidateAddOnsSelectionResponse {
|
|
1530
|
-
/** The validation result. */
|
|
1531
|
-
result?: ValidationResult;
|
|
1532
|
-
}
|
|
1533
|
-
export interface ValidationResult {
|
|
1534
|
-
/** Whether the AddOns selection is valid. */
|
|
1535
|
-
valid?: boolean | null;
|
|
1536
|
-
/**
|
|
1537
|
-
* A validation error message.
|
|
1538
|
-
* This field should populated when `valid` is `false`.
|
|
1539
|
-
* @minLength 1
|
|
1540
|
-
* @maxLength 300
|
|
1541
|
-
*/
|
|
1542
|
-
message?: string | null;
|
|
1543
|
-
}
|
|
1544
1381
|
export interface CreateServiceRequest {
|
|
1545
1382
|
/** Service to create. */
|
|
1546
1383
|
service: Service;
|
|
@@ -4046,3 +3883,166 @@ export interface SiteCloned {
|
|
|
4046
3883
|
/** Origin site id. */
|
|
4047
3884
|
originMetaSiteId?: string;
|
|
4048
3885
|
}
|
|
3886
|
+
export interface CreateAddOnGroupRequest {
|
|
3887
|
+
/** AddOnGroup to create. */
|
|
3888
|
+
addOnGroup?: AddOnGroup;
|
|
3889
|
+
/**
|
|
3890
|
+
* ID of the service to create the AddOnGroup for.
|
|
3891
|
+
* @format GUID
|
|
3892
|
+
*/
|
|
3893
|
+
serviceId?: string | null;
|
|
3894
|
+
}
|
|
3895
|
+
export interface CreateAddOnGroupResponse {
|
|
3896
|
+
/** Created AddOnGroup. */
|
|
3897
|
+
addOnGroup?: AddOnGroup;
|
|
3898
|
+
}
|
|
3899
|
+
export interface DeleteAddOnGroupRequest {
|
|
3900
|
+
/**
|
|
3901
|
+
* ID of the AddOnGroup to delete.
|
|
3902
|
+
* @format GUID
|
|
3903
|
+
*/
|
|
3904
|
+
addOnGroupId?: string | null;
|
|
3905
|
+
/**
|
|
3906
|
+
* ID of the service from which to delete the AddOnGroup.
|
|
3907
|
+
* @format GUID
|
|
3908
|
+
*/
|
|
3909
|
+
serviceId?: string | null;
|
|
3910
|
+
}
|
|
3911
|
+
export interface DeleteAddOnGroupResponse {
|
|
3912
|
+
}
|
|
3913
|
+
export interface UpdateAddOnGroupRequest {
|
|
3914
|
+
/** AddOnGroup to update. */
|
|
3915
|
+
addOnGroup?: AddOnGroup;
|
|
3916
|
+
/** Explicit list of fields to update. */
|
|
3917
|
+
mask?: string[];
|
|
3918
|
+
}
|
|
3919
|
+
export interface UpdateAddOnGroupResponse {
|
|
3920
|
+
/** Updated AddOnGroup */
|
|
3921
|
+
addOnGroup?: AddOnGroup;
|
|
3922
|
+
}
|
|
3923
|
+
export interface ListAddOnGroupsByServiceIdRequest {
|
|
3924
|
+
/**
|
|
3925
|
+
* ID of the service to retrieve AddOnGroups for.
|
|
3926
|
+
* @format GUID
|
|
3927
|
+
*/
|
|
3928
|
+
serviceId?: string | null;
|
|
3929
|
+
/**
|
|
3930
|
+
* List of group ids to return. If not provided, all groups are returned.
|
|
3931
|
+
* @format GUID
|
|
3932
|
+
* @maxSize 3
|
|
3933
|
+
*/
|
|
3934
|
+
groupIds?: string[] | null;
|
|
3935
|
+
}
|
|
3936
|
+
export interface ListAddOnGroupsByServiceIdResponse {
|
|
3937
|
+
/**
|
|
3938
|
+
* List of group IDs and their linked AddOns.
|
|
3939
|
+
* @maxSize 3
|
|
3940
|
+
*/
|
|
3941
|
+
addOnGroupsDetails?: AddOnGroupDetail[];
|
|
3942
|
+
}
|
|
3943
|
+
export interface AddOn extends AddOnAddOnInfoOneOf {
|
|
3944
|
+
/** The AddOn description. */
|
|
3945
|
+
durationInMinutes?: number;
|
|
3946
|
+
/** The AddOn max quantity. */
|
|
3947
|
+
maxQuantity?: number;
|
|
3948
|
+
/**
|
|
3949
|
+
* The AddOn ID.
|
|
3950
|
+
* @format GUID
|
|
3951
|
+
*/
|
|
3952
|
+
addOnId?: string | null;
|
|
3953
|
+
/**
|
|
3954
|
+
* The AddOn name.
|
|
3955
|
+
* @maxLength 100
|
|
3956
|
+
*/
|
|
3957
|
+
name?: string | null;
|
|
3958
|
+
/** The AddOn price. */
|
|
3959
|
+
price?: Money;
|
|
3960
|
+
}
|
|
3961
|
+
/** @oneof */
|
|
3962
|
+
export interface AddOnAddOnInfoOneOf {
|
|
3963
|
+
/** The AddOn description. */
|
|
3964
|
+
durationInMinutes?: number;
|
|
3965
|
+
/** The AddOn max quantity. */
|
|
3966
|
+
maxQuantity?: number;
|
|
3967
|
+
}
|
|
3968
|
+
export interface AddOnGroupDetail {
|
|
3969
|
+
/**
|
|
3970
|
+
* The group ID.
|
|
3971
|
+
* @format GUID
|
|
3972
|
+
*/
|
|
3973
|
+
groupId?: string | null;
|
|
3974
|
+
/** The group max number of AddOns. */
|
|
3975
|
+
maxNumberOfAddOns?: number | null;
|
|
3976
|
+
/**
|
|
3977
|
+
* The group name.
|
|
3978
|
+
* @maxLength 100
|
|
3979
|
+
*/
|
|
3980
|
+
groupName?: string | null;
|
|
3981
|
+
/**
|
|
3982
|
+
* The AddOns information linked to the group.
|
|
3983
|
+
* @maxSize 7
|
|
3984
|
+
*/
|
|
3985
|
+
addOns?: AddOn[];
|
|
3986
|
+
/**
|
|
3987
|
+
* The group prompt.
|
|
3988
|
+
* @maxLength 200
|
|
3989
|
+
*/
|
|
3990
|
+
prompt?: string | null;
|
|
3991
|
+
}
|
|
3992
|
+
export interface SetAddOnsForGroupRequest {
|
|
3993
|
+
/**
|
|
3994
|
+
* The service ID to set AddOns for.
|
|
3995
|
+
* @format GUID
|
|
3996
|
+
*/
|
|
3997
|
+
serviceId?: string | null;
|
|
3998
|
+
/**
|
|
3999
|
+
* The group ID to set AddOns for.
|
|
4000
|
+
* @format GUID
|
|
4001
|
+
*/
|
|
4002
|
+
groupId?: string | null;
|
|
4003
|
+
/**
|
|
4004
|
+
* The IDs of AddOns to set.
|
|
4005
|
+
* @format GUID
|
|
4006
|
+
* @minSize 1
|
|
4007
|
+
* @maxSize 7
|
|
4008
|
+
*/
|
|
4009
|
+
addOnIds?: string[] | null;
|
|
4010
|
+
}
|
|
4011
|
+
export interface SetAddOnsForGroupResponse {
|
|
4012
|
+
/** The updated AddOnGroup. */
|
|
4013
|
+
addOnGroup?: AddOnGroup;
|
|
4014
|
+
}
|
|
4015
|
+
export interface ValidateAddOnsSelectionRequest {
|
|
4016
|
+
/**
|
|
4017
|
+
* The service ID to validate AddOns against.
|
|
4018
|
+
* @format GUID
|
|
4019
|
+
*/
|
|
4020
|
+
serviceId?: string | null;
|
|
4021
|
+
/**
|
|
4022
|
+
* The group ID to validate AddOns against.
|
|
4023
|
+
* @format GUID
|
|
4024
|
+
*/
|
|
4025
|
+
groupId?: string | null;
|
|
4026
|
+
/**
|
|
4027
|
+
* The IDs of AddOns to validate.
|
|
4028
|
+
* @format GUID
|
|
4029
|
+
* @minSize 1
|
|
4030
|
+
* @maxSize 7
|
|
4031
|
+
*/
|
|
4032
|
+
addOnIds?: string[] | null;
|
|
4033
|
+
}
|
|
4034
|
+
export interface ValidateAddOnsSelectionResponse {
|
|
4035
|
+
/** The validation result. */
|
|
4036
|
+
result?: ValidationResult;
|
|
4037
|
+
}
|
|
4038
|
+
export interface ValidationResult {
|
|
4039
|
+
/** Whether the AddOns selection is valid. */
|
|
4040
|
+
valid?: boolean | null;
|
|
4041
|
+
/**
|
|
4042
|
+
* A validation error message.
|
|
4043
|
+
* This field should populated when `valid` is `false`.
|
|
4044
|
+
* @minLength 1
|
|
4045
|
+
* @maxLength 300
|
|
4046
|
+
*/
|
|
4047
|
+
message?: string | null;
|
|
4048
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bookings-services-v2-service-services.types.js","sourceRoot":"","sources":["../../../src/bookings-services-v2-service-services.types.ts"],"names":[],"mappings":";;;AA2IA,IAAY,WAOX;AAPD,WAAY,WAAW;IACrB,iCAAiC;IACjC,0CAA2B,CAAA;IAC3B,qBAAqB;IACrB,8BAAe,CAAA;IACf,sBAAsB;IACtB,gCAAiB,CAAA;AACnB,CAAC,EAPW,WAAW,2BAAX,WAAW,QAOtB;AA+ID,IAAY,QAWX;AAXD,WAAY,QAAQ;IAClB,yBAAyB;IACzB,mDAAuC,CAAA;IACvC,qCAAqC;IACrC,2BAAe,CAAA;IACf,wEAAwE;IACxE,6BAAiB,CAAA;IACjB,uFAAuF;IACvF,6BAAiB,CAAA;IACjB,8CAA8C;IAC9C,6BAAiB,CAAA;AACnB,CAAC,EAXW,QAAQ,wBAAR,QAAQ,QAWnB;AA6ID,IAAY,4BAiBX;AAjBD,WAAY,4BAA4B;IACtC,+EAA+C,CAAA;IAC/C;;;OAGG;IACH,iDAAiB,CAAA;IACjB;;;OAGG;IACH,qDAAqB,CAAA;IACrB;;;OAGG;IACH,qDAAqB,CAAA;AACvB,CAAC,EAjBW,4BAA4B,4CAA5B,4BAA4B,QAiBvC;AAk+BD,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,mCAAnB,mBAAmB,QAM9B;
|
|
1
|
+
{"version":3,"file":"bookings-services-v2-service-services.types.js","sourceRoot":"","sources":["../../../src/bookings-services-v2-service-services.types.ts"],"names":[],"mappings":"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"}
|