@adtrackify/at-tracking-event-types 4.61.2 → 4.61.3
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.
|
@@ -158,11 +158,6 @@ export interface GatewayCostConfig extends CostConfigBase {
|
|
|
158
158
|
costType: COST_TYPE.GATEWAY;
|
|
159
159
|
entries: GatewayEntry[];
|
|
160
160
|
}
|
|
161
|
-
export interface ShippingWeightTier {
|
|
162
|
-
weightMin: number;
|
|
163
|
-
weightMax: number | null;
|
|
164
|
-
flatAmount: number;
|
|
165
|
-
}
|
|
166
161
|
export interface ShippingProfile {
|
|
167
162
|
id: string;
|
|
168
163
|
name: string;
|
|
@@ -171,7 +166,7 @@ export interface ShippingProfile {
|
|
|
171
166
|
rateType: SHIPPING_RATE_TYPE;
|
|
172
167
|
flatAmount?: number;
|
|
173
168
|
weightUnit?: WEIGHT_UNIT;
|
|
174
|
-
weightTiers?:
|
|
169
|
+
weightTiers?: WeightInterval[];
|
|
175
170
|
currency: string;
|
|
176
171
|
effectiveFrom?: string;
|
|
177
172
|
effectiveTo?: string;
|
|
@@ -10,15 +10,18 @@ export declare enum COSTS_RECALC_GLOBAL_CHANGE_SCOPE {
|
|
|
10
10
|
BOTH = "both"
|
|
11
11
|
}
|
|
12
12
|
export interface CostsRecalcQueryHints {
|
|
13
|
-
|
|
14
|
-
shippingTitle?: string[];
|
|
15
|
-
paymentGateway?: string[];
|
|
16
|
-
countries?: string[];
|
|
13
|
+
filters?: {
|
|
17
14
|
orderTags?: string[];
|
|
18
|
-
|
|
15
|
+
orderSourceNames?: string[];
|
|
16
|
+
orderPaymentGateways?: string[];
|
|
17
|
+
orderShippingTitles?: string[];
|
|
18
|
+
productVendors?: string[];
|
|
19
19
|
productTypes?: string[];
|
|
20
|
-
|
|
20
|
+
productTags?: string[];
|
|
21
|
+
productCategories?: string[];
|
|
22
|
+
productCollections?: string[];
|
|
21
23
|
products?: string[];
|
|
24
|
+
countries?: string[];
|
|
22
25
|
};
|
|
23
26
|
gatewayName?: string;
|
|
24
27
|
shippingCountries?: string[];
|
|
@@ -158,11 +158,6 @@ export interface GatewayCostConfig extends CostConfigBase {
|
|
|
158
158
|
costType: COST_TYPE.GATEWAY;
|
|
159
159
|
entries: GatewayEntry[];
|
|
160
160
|
}
|
|
161
|
-
export interface ShippingWeightTier {
|
|
162
|
-
weightMin: number;
|
|
163
|
-
weightMax: number | null;
|
|
164
|
-
flatAmount: number;
|
|
165
|
-
}
|
|
166
161
|
export interface ShippingProfile {
|
|
167
162
|
id: string;
|
|
168
163
|
name: string;
|
|
@@ -171,7 +166,7 @@ export interface ShippingProfile {
|
|
|
171
166
|
rateType: SHIPPING_RATE_TYPE;
|
|
172
167
|
flatAmount?: number;
|
|
173
168
|
weightUnit?: WEIGHT_UNIT;
|
|
174
|
-
weightTiers?:
|
|
169
|
+
weightTiers?: WeightInterval[];
|
|
175
170
|
currency: string;
|
|
176
171
|
effectiveFrom?: string;
|
|
177
172
|
effectiveTo?: string;
|
|
@@ -10,15 +10,18 @@ export declare enum COSTS_RECALC_GLOBAL_CHANGE_SCOPE {
|
|
|
10
10
|
BOTH = "both"
|
|
11
11
|
}
|
|
12
12
|
export interface CostsRecalcQueryHints {
|
|
13
|
-
|
|
14
|
-
shippingTitle?: string[];
|
|
15
|
-
paymentGateway?: string[];
|
|
16
|
-
countries?: string[];
|
|
13
|
+
filters?: {
|
|
17
14
|
orderTags?: string[];
|
|
18
|
-
|
|
15
|
+
orderSourceNames?: string[];
|
|
16
|
+
orderPaymentGateways?: string[];
|
|
17
|
+
orderShippingTitles?: string[];
|
|
18
|
+
productVendors?: string[];
|
|
19
19
|
productTypes?: string[];
|
|
20
|
-
|
|
20
|
+
productTags?: string[];
|
|
21
|
+
productCategories?: string[];
|
|
22
|
+
productCollections?: string[];
|
|
21
23
|
products?: string[];
|
|
24
|
+
countries?: string[];
|
|
22
25
|
};
|
|
23
26
|
gatewayName?: string;
|
|
24
27
|
shippingCountries?: string[];
|