@wix/auto_sdk_ecom_local-delivery-options 1.0.18 → 1.0.19
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/index.typings.d.ts +1165 -0
- package/build/cjs/index.typings.js +1126 -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/index.typings.d.mts +1165 -0
- package/build/es/index.typings.mjs +1086 -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/index.typings.d.ts +1165 -0
- package/build/internal/cjs/index.typings.js +1126 -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/index.typings.d.mts +1165 -0
- package/build/internal/es/index.typings.mjs +1086 -0
- package/build/internal/es/index.typings.mjs.map +1 -0
- package/build/internal/es/meta.d.mts +2 -1
- package/package.json +2 -2
- package/build/cjs/ecom-v1-local-delivery-option-local-delivery-options.universal-B14pmV_K.d.ts +0 -800
- package/build/es/ecom-v1-local-delivery-option-local-delivery-options.universal-B14pmV_K.d.mts +0 -800
- package/build/internal/cjs/ecom-v1-local-delivery-option-local-delivery-options.universal-B14pmV_K.d.ts +0 -800
- package/build/internal/es/ecom-v1-local-delivery-option-local-delivery-options.universal-B14pmV_K.d.mts +0 -800
package/build/cjs/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { HttpClient, MaybeContext, BuildRESTFunction } from '@wix/sdk-types';
|
|
2
|
-
import {
|
|
3
|
-
export {
|
|
2
|
+
import { LocalDeliveryOption, CreateLocalDeliveryOptionApplicationErrors, GetLocalDeliveryOptionOptions, ListLocalDeliveryOptionsResponse, LocalDeliveryOptionsQueryBuilder, UpdateLocalDeliveryOption, DeleteLocalDeliveryOptionOptions, BulkCreateLocalDeliveryOptionResponse, BulkCreateLocalDeliveryOptionApplicationErrors, BulkUpdateLocalDeliveryOptionResponse, AddDeliveryRegionOptions, AddDeliveryRegionResponse, RemoveDeliveryRegionOptions, RemoveDeliveryRegionResponse } from './index.typings.js';
|
|
3
|
+
export { ActionEvent, AddDeliveryRegionRequest, AddressLocation, BulkCreateLocalDeliveryOptionRequest, BulkDeleteLocalDeliveryOptionRequest, BulkDeleteLocalDeliveryOptionResponse, BulkUpdateLocalDeliveryOptionRequest, Condition, ConditionType, ConditionalRates, CreateLocalDeliveryOptionRequest, CreateLocalDeliveryOptionResponse, CursorPaging, CursorPagingMetadata, Cursors, CustomAreaConfig, DayOfWeek, DaySlot, Days, DeleteLocalDeliveryOptionRequest, DeleteLocalDeliveryOptionResponse, Destination, DomainEvent, DomainEventBodyOneOf, Empty, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, GetLocalDeliveryOptionRequest, GetLocalDeliveryOptionResponse, IdentificationData, IdentificationDataIdOneOf, LengthUnit, ListLocalDeliveryOptionsRequest, LocalDeliveryAddress, LocalDeliveryOptionConfigOneOf, LocalDeliveryOptionError, LocalDeliveryOptionsQueryResult, LogicalOperator, MessageEnvelope, Paging, QueryLocalDeliveryOptionsRequest, QueryLocalDeliveryOptionsResponse, QueryV2, QueryV2PagingMethodOneOf, RadiusConfig, RemoveDeliveryRegionRequest, RestoreInfo, ScheduledDelivery, SortOrder, Sorting, TimeOfDay, TimePoint, TimeSlot, TimeWindow, UpdateLocalDeliveryOptionRequest, UpdateLocalDeliveryOptionResponse, WebhookIdentityType, ZipCodeConfig } from './index.typings.js';
|
|
4
4
|
|
|
5
5
|
declare function createLocalDeliveryOption$1(httpClient: HttpClient): CreateLocalDeliveryOptionSignature;
|
|
6
6
|
interface CreateLocalDeliveryOptionSignature {
|
|
7
7
|
/** */
|
|
8
|
-
(localDeliveryOption: LocalDeliveryOption): Promise<LocalDeliveryOption
|
|
8
|
+
(localDeliveryOption: LocalDeliveryOption): Promise<LocalDeliveryOption & {
|
|
9
|
+
__applicationErrorsType?: CreateLocalDeliveryOptionApplicationErrors | undefined;
|
|
10
|
+
}>;
|
|
9
11
|
}
|
|
10
12
|
declare function getLocalDeliveryOption$1(httpClient: HttpClient): GetLocalDeliveryOptionSignature;
|
|
11
13
|
interface GetLocalDeliveryOptionSignature {
|
|
@@ -44,7 +46,9 @@ interface DeleteLocalDeliveryOptionSignature {
|
|
|
44
46
|
declare function bulkCreateLocalDeliveryOption$1(httpClient: HttpClient): BulkCreateLocalDeliveryOptionSignature;
|
|
45
47
|
interface BulkCreateLocalDeliveryOptionSignature {
|
|
46
48
|
/** */
|
|
47
|
-
(localDeliveryOptions: LocalDeliveryOption[]): Promise<BulkCreateLocalDeliveryOptionResponse
|
|
49
|
+
(localDeliveryOptions: LocalDeliveryOption[]): Promise<BulkCreateLocalDeliveryOptionResponse & {
|
|
50
|
+
__applicationErrorsType?: BulkCreateLocalDeliveryOptionApplicationErrors | undefined;
|
|
51
|
+
}>;
|
|
48
52
|
}
|
|
49
53
|
declare function bulkUpdateLocalDeliveryOption$1(httpClient: HttpClient): BulkUpdateLocalDeliveryOptionSignature;
|
|
50
54
|
interface BulkUpdateLocalDeliveryOptionSignature {
|