@wix/auto_sdk_restaurants_fulfillment-methods 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/{restaurants-v1-fulfillment-method-fulfillment-methods.universal-DfhPxFSO.d.ts → index.typings.d.ts} +244 -1
- package/build/cjs/index.typings.js +1352 -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/{restaurants-v1-fulfillment-method-fulfillment-methods.universal-DfhPxFSO.d.mts → index.typings.d.mts} +244 -1
- package/build/es/index.typings.mjs +1306 -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/{restaurants-v1-fulfillment-method-fulfillment-methods.universal-DfhPxFSO.d.ts → index.typings.d.ts} +244 -1
- package/build/internal/cjs/index.typings.js +1352 -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/{restaurants-v1-fulfillment-method-fulfillment-methods.universal-DfhPxFSO.d.mts → index.typings.d.mts} +244 -1
- package/build/internal/es/index.typings.mjs +1306 -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 { FulfillmentMethod, BulkCreateFulfillmentMethodsOptions, BulkCreateFulfillmentMethodsResponse, UpdateFulfillmentMethod, FulfillmentMethodsQueryBuilder, ListFulfillmentMethodsOptions, ListFulfillmentMethodsResponse, ListAvailableFulfillmentMethodsForAddressOptions, ListAvailableFulfillmentMethodsForAddressResponse, GetAccumulatedFulfillmentMethodsAvailabilityOptions, GetAccumulatedFulfillmentMethodsAvailabilityResponse, GetCombinedMethodAvailabilityResponse, GetAggregatedMethodAvailabilityResponse, BulkUpdateFulfillmentMethodTagsOptions, BulkUpdateFulfillmentMethodTagsResponse, BulkUpdateFulfillmentMethodTagsApplicationErrors, BulkUpdateFulfillmentMethodTagsByFilterOptions, BulkUpdateFulfillmentMethodTagsByFilterResponse, BulkUpdateFulfillmentMethodTagsByFilterApplicationErrors, FulfillmentMethodCreatedEnvelope, FulfillmentMethodDeletedEnvelope, FulfillmentMethodUpdatedEnvelope } from './index.typings.js';
|
|
3
|
+
export { ActionEvent, Address, AddressHint, AddressLocation, App, ApplicationError, Availability, BaseEventMetadata, BulkActionMetadata, BulkCreateFulfillmentMethodResult, BulkCreateFulfillmentMethodsRequest, BulkUpdateFulfillmentMethodTagsByFilterRequest, BulkUpdateFulfillmentMethodTagsRequest, BulkUpdateFulfillmentMethodTagsResult, BusinessSchedule, Categories, ChangeContext, ChangeContextPayloadOneOf, CommonAddress, CommonAddressStreetOneOf, CommonBulkActionMetadata, CommonItemMetadata, ConsentPolicy, CreateFulfillmentMethodRequest, CreateFulfillmentMethodResponse, CursorPaging, CursorPagingMetadata, CursorQuery, CursorQueryPagingMethodOneOf, Cursors, CustomArea, CustomTag, DayOfWeek, DayOfWeekAvailability, DeleteFulfillmentMethodRequest, DeleteFulfillmentMethodResponse, DeliveryArea, DeliveryAreaAreaOptionsOneOf, DeliveryInfo, DomainEvent, DomainEventBodyOneOf, Empty, EntitiesDayOfWeek, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, EventMetadata, ExtendedFields, File, FulfillmentMethodMethodOptionsOneOf, FulfillmentMethodType, FulfillmentMethodsQueryResult, GeoCoordinates, GetAccumulatedFulfillmentMethodsAvailabilityRequest, GetAggregatedMethodAvailabilityRequest, GetCombinedMethodAvailabilityRequest, GetFulfillmentMethodRequest, GetFulfillmentMethodResponse, IdentificationData, IdentificationDataIdOneOf, InvalidateCache, InvalidateCacheGetByOneOf, ItemMetadata, ListActiveFulfillmentMethodsRequest, ListActiveFulfillmentMethodsResponse, ListAvailableFulfillmentMethodsForAddressRequest, ListFulfillmentMethodsRequest, Locale, MessageEnvelope, Multilingual, Page, PickupInfo, PlacementType, PostalCode, Properties, PropertiesChange, QueryFulfillmentMethodsRequest, QueryFulfillmentMethodsResponse, Radius, ResolutionMethod, RestoreInfo, SiteCloned, SiteCreated, SitePropertiesEvent, SitePropertiesNotification, SortOrder, Sorting, SpecialHourPeriod, StreetAddress, Subdivision, SubdivisionType, SupportedLanguage, TagList, Tags, TimeOfDay, TimeOfDayRange, TimePeriod, Translation, Type, URI, Unit, UpdateFulfillmentMethodRequest, UpdateFulfillmentMethodResponse, WebhookIdentityType } from './index.typings.js';
|
|
4
4
|
|
|
5
5
|
declare function createFulfillmentMethod$1(httpClient: HttpClient): CreateFulfillmentMethodSignature;
|
|
6
6
|
interface CreateFulfillmentMethodSignature {
|
|
@@ -125,7 +125,9 @@ interface BulkUpdateFulfillmentMethodTagsSignature {
|
|
|
125
125
|
* If you specify a tag in both `assignTags` and `unassignTags`, it is assigned.
|
|
126
126
|
* @param - IDs of the fulfillment methods to update tags for.
|
|
127
127
|
*/
|
|
128
|
-
(fulfillmentMethodIds: string[], options?: BulkUpdateFulfillmentMethodTagsOptions | undefined): Promise<BulkUpdateFulfillmentMethodTagsResponse
|
|
128
|
+
(fulfillmentMethodIds: string[], options?: BulkUpdateFulfillmentMethodTagsOptions | undefined): Promise<BulkUpdateFulfillmentMethodTagsResponse & {
|
|
129
|
+
__applicationErrorsType?: BulkUpdateFulfillmentMethodTagsApplicationErrors | undefined;
|
|
130
|
+
}>;
|
|
129
131
|
}
|
|
130
132
|
declare function bulkUpdateFulfillmentMethodTagsByFilter$1(httpClient: HttpClient): BulkUpdateFulfillmentMethodTagsByFilterSignature;
|
|
131
133
|
interface BulkUpdateFulfillmentMethodTagsByFilterSignature {
|
|
@@ -135,7 +137,9 @@ interface BulkUpdateFulfillmentMethodTagsByFilterSignature {
|
|
|
135
137
|
* If you specify a tag in both `assignTags` and `unassignTags`, it is assigned.
|
|
136
138
|
* @param - Filter that determines which fulfillment methods to update tags for.
|
|
137
139
|
*/
|
|
138
|
-
(filter: Record<string, any>, options?: BulkUpdateFulfillmentMethodTagsByFilterOptions | undefined): Promise<BulkUpdateFulfillmentMethodTagsByFilterResponse
|
|
140
|
+
(filter: Record<string, any>, options?: BulkUpdateFulfillmentMethodTagsByFilterOptions | undefined): Promise<BulkUpdateFulfillmentMethodTagsByFilterResponse & {
|
|
141
|
+
__applicationErrorsType?: BulkUpdateFulfillmentMethodTagsByFilterApplicationErrors | undefined;
|
|
142
|
+
}>;
|
|
139
143
|
}
|
|
140
144
|
declare const onFulfillmentMethodCreated$1: EventDefinition<FulfillmentMethodCreatedEnvelope, "wix.restaurants.v1.fulfillment_method_created">;
|
|
141
145
|
declare const onFulfillmentMethodDeleted$1: EventDefinition<FulfillmentMethodDeletedEnvelope, "wix.restaurants.v1.fulfillment_method_deleted">;
|