@wix/auto_sdk_bookings_service-options-and-variants 1.0.29 → 1.0.31
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.d.ts +8 -4
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/{bookings-catalog-v1-service-options-and-variants-service-options-and-variants.universal-Ctu6ajbD.d.ts → index.typings.d.ts} +310 -1
- package/build/cjs/index.typings.js +570 -0
- package/build/cjs/index.typings.js.map +1 -0
- package/build/cjs/meta.d.ts +2 -1
- package/build/es/index.d.mts +8 -4
- package/build/es/index.mjs.map +1 -1
- package/build/es/{bookings-catalog-v1-service-options-and-variants-service-options-and-variants.universal-Ctu6ajbD.d.mts → index.typings.d.mts} +310 -1
- package/build/es/index.typings.mjs +534 -0
- package/build/es/index.typings.mjs.map +1 -0
- package/build/es/meta.d.mts +2 -1
- package/build/internal/cjs/index.d.ts +8 -4
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/{bookings-catalog-v1-service-options-and-variants-service-options-and-variants.universal-Ctu6ajbD.d.ts → index.typings.d.ts} +310 -1
- package/build/internal/cjs/index.typings.js +570 -0
- package/build/internal/cjs/index.typings.js.map +1 -0
- package/build/internal/cjs/meta.d.ts +2 -1
- package/build/internal/es/index.d.mts +8 -4
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/{bookings-catalog-v1-service-options-and-variants-service-options-and-variants.universal-Ctu6ajbD.d.mts → index.typings.d.mts} +310 -1
- package/build/internal/es/index.typings.mjs +534 -0
- package/build/internal/es/index.typings.mjs.map +1 -0
- package/build/internal/es/meta.d.mts +2 -1
- package/package.json +3 -3
package/build/cjs/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import {
|
|
3
|
-
export {
|
|
2
|
+
import { ServiceOptionsAndVariants, CreateServiceOptionsAndVariantsApplicationErrors, CloneServiceOptionsAndVariantsResponse, GetServiceOptionsAndVariantsByServiceIdResponse, UpdateServiceOptionsAndVariants, UpdateServiceOptionsAndVariantsApplicationErrors, DeleteServiceOptionsAndVariantsOptions, ServiceOptionsAndVariantsListQueryBuilder, ServiceOptionsAndVariantsCreatedEnvelope, ServiceOptionsAndVariantsDeletedEnvelope, ServiceOptionsAndVariantsUpdatedEnvelope } from './index.typings.js';
|
|
3
|
+
export { ActionEvent, Address, AddressHint, BaseEventMetadata, BusinessSchedule, Categories, ChangeContext, ChangeContextPayloadOneOf, CloneServiceOptionsAndVariantsRequest, ConsentPolicy, CreateServiceOptionsAndVariantsRequest, CreateServiceOptionsAndVariantsResponse, CursorPaging, Cursors, CustomServiceOption, DayOfWeek, DeleteServiceOptionsAndVariantsRequest, DeleteServiceOptionsAndVariantsResponse, DomainEvent, DomainEventBodyOneOf, Duration, DurationServiceOption, Empty, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, EventMetadata, ExtendedFields, GeoCoordinates, GetServiceOptionsAndVariantsByServiceIdRequest, GetServiceOptionsAndVariantsRequest, GetServiceOptionsAndVariantsResponse, IdentificationData, IdentificationDataIdOneOf, Locale, MessageEnvelope, Money, Multilingual, Paging, PagingMetadataV2, PlacementType, Properties, PropertiesChange, QueryServiceOptionsAndVariantsRequest, QueryServiceOptionsAndVariantsResponse, QueryV2, QueryV2PagingMethodOneOf, ResolutionMethod, RestoreInfo, ServiceChoice, ServiceChoiceChoiceOneOf, ServiceOption, ServiceOptionOptionSpecificDataOneOf, ServiceOptionType, ServiceOptions, ServiceOptionsAndVariantsListQueryResult, ServiceVariant, ServiceVariants, SiteCloned, SiteCreated, SitePropertiesEvent, SitePropertiesNotification, SortOrder, Sorting, SpecialHourPeriod, SupportedLanguage, TimePeriod, Translation, UpdateServiceOptionsAndVariantsRequest, UpdateServiceOptionsAndVariantsResponse, WebhookIdentityType } from './index.typings.js';
|
|
4
4
|
|
|
5
5
|
declare function createServiceOptionsAndVariants$1(httpClient: HttpClient): CreateServiceOptionsAndVariantsSignature;
|
|
6
6
|
interface CreateServiceOptionsAndVariantsSignature {
|
|
@@ -59,7 +59,9 @@ interface CreateServiceOptionsAndVariantsSignature {
|
|
|
59
59
|
* @param - Service options and variants to create.
|
|
60
60
|
* @returns Information about the created service options and variants.
|
|
61
61
|
*/
|
|
62
|
-
(serviceOptionsAndVariants: ServiceOptionsAndVariants): Promise<ServiceOptionsAndVariants
|
|
62
|
+
(serviceOptionsAndVariants: ServiceOptionsAndVariants): Promise<ServiceOptionsAndVariants & {
|
|
63
|
+
__applicationErrorsType?: CreateServiceOptionsAndVariantsApplicationErrors | undefined;
|
|
64
|
+
}>;
|
|
63
65
|
}
|
|
64
66
|
declare function cloneServiceOptionsAndVariants$1(httpClient: HttpClient): CloneServiceOptionsAndVariantsSignature;
|
|
65
67
|
interface CloneServiceOptionsAndVariantsSignature {
|
|
@@ -118,7 +120,9 @@ interface UpdateServiceOptionsAndVariantsSignature {
|
|
|
118
120
|
* @param - Options for updating the service options and variants.
|
|
119
121
|
* @returns Updated `serviceOptionsAndVariants` object.
|
|
120
122
|
*/
|
|
121
|
-
(_id: string, serviceOptionsAndVariants: UpdateServiceOptionsAndVariants): Promise<ServiceOptionsAndVariants
|
|
123
|
+
(_id: string, serviceOptionsAndVariants: UpdateServiceOptionsAndVariants): Promise<ServiceOptionsAndVariants & {
|
|
124
|
+
__applicationErrorsType?: UpdateServiceOptionsAndVariantsApplicationErrors | undefined;
|
|
125
|
+
}>;
|
|
122
126
|
}
|
|
123
127
|
declare function deleteServiceOptionsAndVariants$1(httpClient: HttpClient): DeleteServiceOptionsAndVariantsSignature;
|
|
124
128
|
interface DeleteServiceOptionsAndVariantsSignature {
|