@ikas/storefront-api 4.5.1-beta.1 → 4.5.1-beta.10
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/__api/models/CartV2.d.ts +2 -0
- package/build/__api/models/CategoryCondition.d.ts +2 -1
- package/build/__api/models/CustomerAddress.d.ts +2 -0
- package/build/__api/models/CustomerAddressRegion.d.ts +10 -0
- package/build/__api/models/CustomerAddressRegionInput.d.ts +10 -0
- package/build/__api/models/CustomerAddressRegionInput.js +1 -0
- package/build/__api/models/CustomerReview.d.ts +1 -0
- package/build/__api/models/OrderAddress.d.ts +2 -2
- package/build/__api/models/OrderAddressInput.d.ts +2 -2
- package/build/__api/models/OrderAddressInput.js +1 -1
- package/build/__api/models/OrderAddressRegion.d.ts +10 -0
- package/build/__api/models/OrderAddressRegionInput.d.ts +10 -0
- package/build/__api/models/OrderAddressRegionInput.js +1 -0
- package/build/__api/models/OrderAttributeValue.d.ts +11 -0
- package/build/__api/models/OrderAttributeValueInput.d.ts +11 -0
- package/build/__api/models/OrderAttributeValueInput.js +1 -0
- package/build/__api/models/OrderLineBundleVariant.d.ts +1 -0
- package/build/__api/models/OrderLineVariant.d.ts +1 -0
- package/build/__api/models/SaveCartInput.d.ts +2 -0
- package/build/__api/models/SaveCartInput.js +1 -1
- package/build/__api/models/SaveMyCustomerAddressInput.d.ts +2 -0
- package/build/__api/models/SaveMyCustomerAddressInput.js +1 -1
- package/build/__api/models/ShippingZone.d.ts +12 -0
- package/build/__api/models/ShippingZoneCity.d.ts +11 -0
- package/build/__api/models/ShippingZoneDistrict.d.ts +11 -0
- package/build/__api/models/ShippingZoneState.d.ts +12 -0
- package/build/__api/models/SocialLoginSettings.d.ts +2 -0
- package/build/__api/models/StorefrontFormCheckboxSettings.d.ts +12 -0
- package/build/__api/models/StorefrontFormCheckoutFooterPolicy.d.ts +10 -0
- package/build/__api/models/StorefrontFormCheckoutFooterSettings.d.ts +10 -0
- package/build/__api/models/StorefrontFormCheckoutSettings.d.ts +13 -0
- package/build/__api/models/StorefrontFormMailSettings.d.ts +12 -0
- package/build/__api/models/StorefrontFormSettings.d.ts +8 -6
- package/build/__api/models/StorefrontFormSettingsRouting.d.ts +0 -1
- package/build/__api/models/StorefrontPolicy.d.ts +1 -0
- package/build/__api/models/StorefrontPolicyRouting.d.ts +0 -1
- package/build/__api/mutations/addCouponCodeToCheckout.d.ts +2 -6
- package/build/__api/mutations/addItemToCart.d.ts +5 -6
- package/build/__api/mutations/addItemToCart.js +1 -1
- package/build/__api/mutations/createCustomerEmailSubscription.d.ts +2 -0
- package/build/__api/mutations/createCustomerReview.d.ts +1 -0
- package/build/__api/mutations/createCustomerReview.js +1 -1
- package/build/__api/mutations/createOrderRefundRequest.d.ts +2 -6
- package/build/__api/mutations/createOrderRefundRequest.js +1 -1
- package/build/__api/mutations/customerLogin.d.ts +2 -0
- package/build/__api/mutations/customerLogin.js +1 -1
- package/build/__api/mutations/registerCustomer.d.ts +2 -0
- package/build/__api/mutations/registerCustomer.js +1 -1
- package/build/__api/mutations/saveCart.d.ts +5 -6
- package/build/__api/mutations/saveCart.js +1 -1
- package/build/__api/mutations/saveCartCouponCode.d.ts +5 -6
- package/build/__api/mutations/saveCartCouponCode.js +1 -1
- package/build/__api/mutations/saveCheckout.d.ts +2 -6
- package/build/__api/mutations/saveItemToCart.d.ts +2 -0
- package/build/__api/mutations/saveMyCustomer.d.ts +2 -0
- package/build/__api/mutations/saveMyCustomer.js +1 -1
- package/build/__api/mutations/updateCartCampaignOffer.d.ts +5 -6
- package/build/__api/mutations/updateCartCampaignOffer.js +1 -1
- package/build/__api/queries/customerSocialLogin.d.ts +2 -0
- package/build/__api/queries/customerSocialLogin.js +1 -1
- package/build/__api/queries/getAvailableShippingZones.d.ts +20 -0
- package/build/__api/queries/getCart.d.ts +2 -0
- package/build/__api/queries/getCartById.d.ts +5 -6
- package/build/__api/queries/getCartById.js +1 -1
- package/build/__api/queries/getCheckoutByCartId.d.ts +2 -6
- package/build/__api/queries/getCheckoutById.d.ts +2 -6
- package/build/__api/queries/getCustomerOrders.d.ts +2 -6
- package/build/__api/queries/getCustomerOrders.js +1 -1
- package/build/__api/queries/getDigitalProductFileDownloadUrl.d.ts +6 -0
- package/build/__api/queries/getMyCustomer.d.ts +2 -0
- package/build/__api/queries/getMyCustomer.js +1 -1
- package/build/__api/queries/getOrder.d.ts +2 -6
- package/build/__api/queries/getOrderByEmail.d.ts +2 -6
- package/build/__api/queries/getOrderByEmail.js +1 -1
- package/build/__api/queries/getProductFilterData.d.ts +2 -0
- package/build/__api/queries/getProductFilterData.js +1 -1
- package/build/__api/queries/getStorefront.d.ts +2 -0
- package/build/__api/queries/listCategory.d.ts +1 -0
- package/build/__api/queries/listCategory.js +1 -1
- package/build/__api/queries/listCustomerReviews.d.ts +1 -0
- package/build/__api/queries/listCustomerReviews.js +1 -1
- package/build/__api/queries/listStorefrontFormSettings.d.ts +10 -5
- package/build/__api/queries/listStorefrontPolicy.d.ts +1 -1
- package/build/__api/types/index.d.ts +95 -36
- package/build/__api/types/index.js +1 -1
- package/package.json +5 -5
- package/build/__api/models/ShippingZoneRegionInput.d.ts +0 -10
- package/build/__api/models/ShippingZoneRegionInput.js +0 -1
- package/build/__api/models/StorefrontCheckboxSettings.d.ts +0 -12
- package/build/__api/models/StorefrontCheckoutFooterSettings.d.ts +0 -9
- package/build/__api/models/StorefrontCheckoutMarketingSettings.d.ts +0 -10
- package/build/__api/models/StorefrontCheckoutSettings.d.ts +0 -14
- package/build/__api/models/StorefrontMailSettings.d.ts +0 -12
|
@@ -2,6 +2,7 @@ import { DeepReadonly } from "ts-essentials";
|
|
|
2
2
|
import BaseModelData from "./_base";
|
|
3
3
|
import { CartV2StatusEnum, CartCreatedByEnum, OrderPackageStatusEnum, CheckoutRecoveryEmailStatusEnum, CheckoutRecoveryStatusEnum, OrderShippingMethodEnum } from "../types";
|
|
4
4
|
import { AbandonedCartFlowData } from "./AbandonedCartFlow";
|
|
5
|
+
import { OrderAttributeValueData } from "./OrderAttributeValue";
|
|
5
6
|
import { AvailableShippingMethodData } from "./AvailableShippingMethod";
|
|
6
7
|
import { OrderAddressData } from "./OrderAddress";
|
|
7
8
|
import { CartV2CampaignOfferData } from "./CartV2CampaignOffer";
|
|
@@ -16,6 +17,7 @@ import { OrderStorefrontRoutingData } from "./OrderStorefrontRouting";
|
|
|
16
17
|
import { OrderTaxLineData } from "./OrderTaxLine";
|
|
17
18
|
export declare class CartV2Data extends BaseModelData {
|
|
18
19
|
abandonedCartFlows: AbandonedCartFlowData[] | null;
|
|
20
|
+
attributes: OrderAttributeValueData[] | null;
|
|
19
21
|
availableShippingMethods: AvailableShippingMethodData[] | null;
|
|
20
22
|
billingAddress: OrderAddressData | null;
|
|
21
23
|
campaignOffers: CartV2CampaignOfferData[] | null;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { DeepReadonly } from "ts-essentials";
|
|
2
|
-
import { CategoryConditionTypeEnum } from "../types";
|
|
2
|
+
import { CategoryConditionTypeEnum, CategoryConditionMethodEnum } from "../types";
|
|
3
3
|
export declare class CategoryConditionData {
|
|
4
4
|
conditionType: CategoryConditionTypeEnum;
|
|
5
|
+
method: CategoryConditionMethodEnum | null;
|
|
5
6
|
valueList: string[];
|
|
6
7
|
constructor(data?: Partial<CategoryConditionData>);
|
|
7
8
|
}
|
|
@@ -4,6 +4,7 @@ import { CustomerAttributeValueData } from "./CustomerAttributeValue";
|
|
|
4
4
|
import { CustomerAddressCityData } from "./CustomerAddressCity";
|
|
5
5
|
import { CustomerAddressCountryData } from "./CustomerAddressCountry";
|
|
6
6
|
import { CustomerAddressDistrictData } from "./CustomerAddressDistrict";
|
|
7
|
+
import { CustomerAddressRegionData } from "./CustomerAddressRegion";
|
|
7
8
|
import { CustomerAddressStateData } from "./CustomerAddressState";
|
|
8
9
|
export declare class CustomerAddressData extends BaseModelData {
|
|
9
10
|
addressLine1: string;
|
|
@@ -19,6 +20,7 @@ export declare class CustomerAddressData extends BaseModelData {
|
|
|
19
20
|
lastName: string;
|
|
20
21
|
phone: string | null;
|
|
21
22
|
postalCode: string | null;
|
|
23
|
+
region: CustomerAddressRegionData | null;
|
|
22
24
|
state: CustomerAddressStateData | null;
|
|
23
25
|
taxNumber: string | null;
|
|
24
26
|
taxOffice: string | null;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DeepReadonly } from "ts-essentials";
|
|
2
|
+
export declare class CustomerAddressRegionData {
|
|
3
|
+
id: string;
|
|
4
|
+
name: string;
|
|
5
|
+
constructor(data?: Partial<CustomerAddressRegionData>);
|
|
6
|
+
}
|
|
7
|
+
export declare class CustomerAddressRegion extends CustomerAddressRegionData {
|
|
8
|
+
}
|
|
9
|
+
export declare type PartialCustomerAddressRegion = Partial<CustomerAddressRegion>;
|
|
10
|
+
export declare type ReadOnlyCustomerAddressRegion = DeepReadonly<CustomerAddressRegion>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DeepReadonly } from "ts-essentials";
|
|
2
|
+
export declare class CustomerAddressRegionInputData {
|
|
3
|
+
id: string;
|
|
4
|
+
name: string;
|
|
5
|
+
constructor(data?: Partial<CustomerAddressRegionInputData>);
|
|
6
|
+
}
|
|
7
|
+
export declare class CustomerAddressRegionInput extends CustomerAddressRegionInputData {
|
|
8
|
+
}
|
|
9
|
+
export declare type PartialCustomerAddressRegionInput = Partial<CustomerAddressRegionInput>;
|
|
10
|
+
export declare type ReadOnlyCustomerAddressRegionInput = DeepReadonly<CustomerAddressRegionInput>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{__extends as i}from'./../../ext/tslib/tslib.es6.js';var t=function(i){void 0===i&&(i={}),this.id=i.id||"",this.name=i.name||""};!function(t){function n(){return null!==t&&t.apply(this,arguments)||this}i(n,t)}(t);export{t as CustomerAddressRegionInputData};
|
|
@@ -11,6 +11,7 @@ export declare class CustomerReviewData extends BaseModelData {
|
|
|
11
11
|
orderId: string | null;
|
|
12
12
|
orderNumber: string | null;
|
|
13
13
|
productId: string;
|
|
14
|
+
reply: string | null;
|
|
14
15
|
salesChannelId: string | null;
|
|
15
16
|
star: number;
|
|
16
17
|
status: CustomerReviewStatusEnum | null;
|
|
@@ -2,7 +2,7 @@ import { DeepReadonly } from "ts-essentials";
|
|
|
2
2
|
import { OrderAddressCityData } from "./OrderAddressCity";
|
|
3
3
|
import { OrderAddressCountryData } from "./OrderAddressCountry";
|
|
4
4
|
import { OrderAddressDistrictData } from "./OrderAddressDistrict";
|
|
5
|
-
import {
|
|
5
|
+
import { OrderAddressRegionData } from "./OrderAddressRegion";
|
|
6
6
|
import { OrderAddressStateData } from "./OrderAddressState";
|
|
7
7
|
export declare class OrderAddressData {
|
|
8
8
|
addressLine1: string;
|
|
@@ -18,7 +18,7 @@ export declare class OrderAddressData {
|
|
|
18
18
|
lastName: string;
|
|
19
19
|
phone: string | null;
|
|
20
20
|
postalCode: string | null;
|
|
21
|
-
region:
|
|
21
|
+
region: OrderAddressRegionData | null;
|
|
22
22
|
state: OrderAddressStateData | null;
|
|
23
23
|
taxNumber: string | null;
|
|
24
24
|
taxOffice: string | null;
|
|
@@ -2,7 +2,7 @@ import { DeepReadonly } from "ts-essentials";
|
|
|
2
2
|
import { OrderAddressCityInputData } from "./OrderAddressCityInput";
|
|
3
3
|
import { OrderAddressCountryInputData } from "./OrderAddressCountryInput";
|
|
4
4
|
import { OrderAddressDistrictInputData } from "./OrderAddressDistrictInput";
|
|
5
|
-
import {
|
|
5
|
+
import { OrderAddressRegionInputData } from "./OrderAddressRegionInput";
|
|
6
6
|
import { OrderAddressStateInputData } from "./OrderAddressStateInput";
|
|
7
7
|
export declare class OrderAddressInputData {
|
|
8
8
|
addressLine1: string;
|
|
@@ -18,7 +18,7 @@ export declare class OrderAddressInputData {
|
|
|
18
18
|
lastName: string;
|
|
19
19
|
phone: string | null;
|
|
20
20
|
postalCode: string | null;
|
|
21
|
-
region:
|
|
21
|
+
region: OrderAddressRegionInputData | null;
|
|
22
22
|
state: OrderAddressStateInputData | null;
|
|
23
23
|
taxNumber: string | null;
|
|
24
24
|
taxOffice: string | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{__extends as t}from'./../../ext/tslib/tslib.es6.js';import{OrderAddressCityInputData as i}from"./OrderAddressCityInput.js";import{OrderAddressCountryInputData as s}from"./OrderAddressCountryInput.js";import{OrderAddressDistrictInputData as e}from"./OrderAddressDistrictInput.js";import{
|
|
1
|
+
import{__extends as t}from'./../../ext/tslib/tslib.es6.js';import{OrderAddressCityInputData as i}from"./OrderAddressCityInput.js";import{OrderAddressCountryInputData as s}from"./OrderAddressCountryInput.js";import{OrderAddressDistrictInputData as e}from"./OrderAddressDistrictInput.js";import{OrderAddressRegionInputData as r}from"./OrderAddressRegionInput.js";import{OrderAddressStateInputData as n}from"./OrderAddressStateInput.js";var d=function(t){void 0===t&&(t={}),this.addressLine1=t.addressLine1||"",this.addressLine2=t.addressLine2||null,this.city=t.city?new i(t.city):new i,this.company=t.company||null,this.country=t.country?new s(t.country):new s,this.district=t.district?new e(t.district):null,this.firstName=t.firstName||"",this.id=t.id||null,this.identityNumber=t.identityNumber||null,this.isDefault=t.isDefault||!1,this.lastName=t.lastName||"",this.phone=t.phone||null,this.postalCode=t.postalCode||null,this.region=t.region?new r(t.region):null,this.state=t.state?new n(t.state):null,this.taxNumber=t.taxNumber||null,this.taxOffice=t.taxOffice||null};!function(i){function s(){return null!==i&&i.apply(this,arguments)||this}t(s,i)}(d);export{d as OrderAddressInputData};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DeepReadonly } from "ts-essentials";
|
|
2
|
+
export declare class OrderAddressRegionData {
|
|
3
|
+
id: string;
|
|
4
|
+
name: string;
|
|
5
|
+
constructor(data?: Partial<OrderAddressRegionData>);
|
|
6
|
+
}
|
|
7
|
+
export declare class OrderAddressRegion extends OrderAddressRegionData {
|
|
8
|
+
}
|
|
9
|
+
export declare type PartialOrderAddressRegion = Partial<OrderAddressRegion>;
|
|
10
|
+
export declare type ReadOnlyOrderAddressRegion = DeepReadonly<OrderAddressRegion>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DeepReadonly } from "ts-essentials";
|
|
2
|
+
export declare class OrderAddressRegionInputData {
|
|
3
|
+
id: string;
|
|
4
|
+
name: string;
|
|
5
|
+
constructor(data?: Partial<OrderAddressRegionInputData>);
|
|
6
|
+
}
|
|
7
|
+
export declare class OrderAddressRegionInput extends OrderAddressRegionInputData {
|
|
8
|
+
}
|
|
9
|
+
export declare type PartialOrderAddressRegionInput = Partial<OrderAddressRegionInput>;
|
|
10
|
+
export declare type ReadOnlyOrderAddressRegionInput = DeepReadonly<OrderAddressRegionInput>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{__extends as i}from'./../../ext/tslib/tslib.es6.js';var t=function(i){void 0===i&&(i={}),this.id=i.id||"",this.name=i.name||""};!function(t){function n(){return null!==t&&t.apply(this,arguments)||this}i(n,t)}(t);export{t as OrderAddressRegionInputData};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { DeepReadonly } from "ts-essentials";
|
|
2
|
+
export declare class OrderAttributeValueData {
|
|
3
|
+
orderAttributeId: string | null;
|
|
4
|
+
orderAttributeOptionId: string | null;
|
|
5
|
+
value: string | null;
|
|
6
|
+
constructor(data?: Partial<OrderAttributeValueData>);
|
|
7
|
+
}
|
|
8
|
+
export declare class OrderAttributeValue extends OrderAttributeValueData {
|
|
9
|
+
}
|
|
10
|
+
export declare type PartialOrderAttributeValue = Partial<OrderAttributeValue>;
|
|
11
|
+
export declare type ReadOnlyOrderAttributeValue = DeepReadonly<OrderAttributeValue>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { DeepReadonly } from "ts-essentials";
|
|
2
|
+
export declare class OrderAttributeValueInputData {
|
|
3
|
+
orderAttributeId: string | null;
|
|
4
|
+
orderAttributeOptionId: string | null;
|
|
5
|
+
value: string | null;
|
|
6
|
+
constructor(data?: Partial<OrderAttributeValueInputData>);
|
|
7
|
+
}
|
|
8
|
+
export declare class OrderAttributeValueInput extends OrderAttributeValueInputData {
|
|
9
|
+
}
|
|
10
|
+
export declare type PartialOrderAttributeValueInput = Partial<OrderAttributeValueInput>;
|
|
11
|
+
export declare type ReadOnlyOrderAttributeValueInput = DeepReadonly<OrderAttributeValueInput>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{__extends as t}from'./../../ext/tslib/tslib.es6.js';var i=function(t){void 0===t&&(t={}),this.orderAttributeId=t.orderAttributeId||null,this.orderAttributeOptionId=t.orderAttributeOptionId||null,this.value=t.value||null};!function(i){function r(){return null!==i&&i.apply(this,arguments)||this}t(r,i)}(i);export{i as OrderAttributeValueInputData};
|
|
@@ -11,6 +11,7 @@ export declare class OrderLineBundleVariantData {
|
|
|
11
11
|
baseUnit: OrderLineBaseUnitData | null;
|
|
12
12
|
brand: OrderLineVariantBrandData | null;
|
|
13
13
|
categories: OrderLineVariantCategoryData[] | null;
|
|
14
|
+
fileId: string | null;
|
|
14
15
|
hsCode: string | null;
|
|
15
16
|
id: string | null;
|
|
16
17
|
mainImageId: string | null;
|
|
@@ -13,6 +13,7 @@ export declare class OrderLineVariantData {
|
|
|
13
13
|
brand: OrderLineVariantBrandData | null;
|
|
14
14
|
bundleProducts: OrderLineVariantBundleProductModelData[] | null;
|
|
15
15
|
categories: OrderLineVariantCategoryData[] | null;
|
|
16
|
+
fileId: string | null;
|
|
16
17
|
hsCode: string | null;
|
|
17
18
|
id: string | null;
|
|
18
19
|
mainImageId: string | null;
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { DeepReadonly } from "ts-essentials";
|
|
2
2
|
import BaseModelData from "./_base";
|
|
3
|
+
import { OrderAttributeValueInputData } from "./OrderAttributeValueInput";
|
|
3
4
|
import { OrderAddressInputData } from "./OrderAddressInput";
|
|
4
5
|
import { CheckoutCustomerInputData } from "./CheckoutCustomerInput";
|
|
5
6
|
export declare class SaveCartInputData extends BaseModelData {
|
|
7
|
+
attributes: OrderAttributeValueInputData[] | null;
|
|
6
8
|
billingAddress: OrderAddressInputData | null;
|
|
7
9
|
couponCode: string | null;
|
|
8
10
|
customer: CheckoutCustomerInputData | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{__extends as
|
|
1
|
+
import{__extends as t}from'./../../ext/tslib/tslib.es6.js';import i from"./_base.js";import{OrderAttributeValueInputData as n}from"./OrderAttributeValueInput.js";import{OrderAddressInputData as e}from"./OrderAddressInput.js";import{CheckoutCustomerInputData as s}from"./CheckoutCustomerInput.js";var o=function(i){function o(t){void 0===t&&(t={});var o=i.call(this,t)||this;return o.attributes=t.attributes?t.attributes.map((function(t){return new n(t)})):null,o.billingAddress=t.billingAddress?new e(t.billingAddress):null,o.couponCode=t.couponCode||null,o.customer=t.customer?new s(t.customer):null,o.giftPackageNote=t.giftPackageNote||null,o.isGiftPackage=void 0!==t.isGiftPackage&&null!==t.isGiftPackage?t.isGiftPackage:null,o.note=t.note||null,o.shippingAddress=t.shippingAddress?new e(t.shippingAddress):null,o.shippingSettingsId=t.shippingSettingsId||null,o.shippingZoneRateId=t.shippingZoneRateId||null,o.stockLocationId=t.stockLocationId||null,o}return t(o,i),o}(i),r=function(i){function n(){return null!==i&&i.apply(this,arguments)||this}return t(n,i),n}(o);export{r as SaveCartInput,o as SaveCartInputData};
|
|
@@ -3,6 +3,7 @@ import BaseModelData from "./_base";
|
|
|
3
3
|
import { CustomerAddressCityInputData } from "./CustomerAddressCityInput";
|
|
4
4
|
import { CustomerAddressCountryInputData } from "./CustomerAddressCountryInput";
|
|
5
5
|
import { CustomerAddressDistrictInputData } from "./CustomerAddressDistrictInput";
|
|
6
|
+
import { CustomerAddressRegionInputData } from "./CustomerAddressRegionInput";
|
|
6
7
|
import { CustomerAddressStateInputData } from "./CustomerAddressStateInput";
|
|
7
8
|
export declare class SaveMyCustomerAddressInputData extends BaseModelData {
|
|
8
9
|
addressLine1: string;
|
|
@@ -17,6 +18,7 @@ export declare class SaveMyCustomerAddressInputData extends BaseModelData {
|
|
|
17
18
|
lastName: string;
|
|
18
19
|
phone: string | null;
|
|
19
20
|
postalCode: string | null;
|
|
21
|
+
region: CustomerAddressRegionInputData | null;
|
|
20
22
|
state: CustomerAddressStateInputData | null;
|
|
21
23
|
taxNumber: string | null;
|
|
22
24
|
taxOffice: string | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{__extends as t}from'./../../ext/tslib/tslib.es6.js';import e from"./_base.js";import{CustomerAddressCityInputData as s}from"./CustomerAddressCityInput.js";import{CustomerAddressCountryInputData as
|
|
1
|
+
import{__extends as t}from'./../../ext/tslib/tslib.es6.js';import e from"./_base.js";import{CustomerAddressCityInputData as s}from"./CustomerAddressCityInput.js";import{CustomerAddressCountryInputData as n}from"./CustomerAddressCountryInput.js";import{CustomerAddressDistrictInputData as r}from"./CustomerAddressDistrictInput.js";import{CustomerAddressRegionInputData as i}from"./CustomerAddressRegionInput.js";import{CustomerAddressStateInputData as o}from"./CustomerAddressStateInput.js";var u=function(e){function u(t){void 0===t&&(t={});var u=e.call(this,t)||this;return u.addressLine1=t.addressLine1||"",u.addressLine2=t.addressLine2||null,u.city=t.city?new s(t.city):new s,u.company=t.company||null,u.country=t.country?new n(t.country):new n,u.district=t.district?new r(t.district):null,u.firstName=t.firstName||"",u.identityNumber=t.identityNumber||null,u.isDefault=void 0!==t.isDefault&&null!==t.isDefault?t.isDefault:null,u.lastName=t.lastName||"",u.phone=t.phone||null,u.postalCode=t.postalCode||null,u.region=t.region?new i(t.region):null,u.state=t.state?new o(t.state):null,u.taxNumber=t.taxNumber||null,u.taxOffice=t.taxOffice||null,u.title=t.title||"",u}return t(u,e),u}(e);!function(e){function s(){return null!==e&&e.apply(this,arguments)||this}t(s,e)}(u);export{u as SaveMyCustomerAddressInputData};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { DeepReadonly } from "ts-essentials";
|
|
2
|
+
import { ShippingZoneStateData } from "./ShippingZoneState";
|
|
3
|
+
export declare class ShippingZoneData {
|
|
4
|
+
countryId: string;
|
|
5
|
+
postalCodes: string[] | null;
|
|
6
|
+
states: ShippingZoneStateData[] | null;
|
|
7
|
+
constructor(data?: Partial<ShippingZoneData>);
|
|
8
|
+
}
|
|
9
|
+
export declare class ShippingZone extends ShippingZoneData {
|
|
10
|
+
}
|
|
11
|
+
export declare type PartialShippingZone = Partial<ShippingZone>;
|
|
12
|
+
export declare type ReadOnlyShippingZone = DeepReadonly<ShippingZone>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { DeepReadonly } from "ts-essentials";
|
|
2
|
+
import { ShippingZoneDistrictData } from "./ShippingZoneDistrict";
|
|
3
|
+
export declare class ShippingZoneCityData {
|
|
4
|
+
districts: ShippingZoneDistrictData[] | null;
|
|
5
|
+
id: string;
|
|
6
|
+
constructor(data?: Partial<ShippingZoneCityData>);
|
|
7
|
+
}
|
|
8
|
+
export declare class ShippingZoneCity extends ShippingZoneCityData {
|
|
9
|
+
}
|
|
10
|
+
export declare type PartialShippingZoneCity = Partial<ShippingZoneCity>;
|
|
11
|
+
export declare type ReadOnlyShippingZoneCity = DeepReadonly<ShippingZoneCity>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { DeepReadonly } from "ts-essentials";
|
|
2
|
+
import { ShippingZoneRegionData } from "./ShippingZoneRegion";
|
|
3
|
+
export declare class ShippingZoneDistrictData {
|
|
4
|
+
id: string;
|
|
5
|
+
regions: ShippingZoneRegionData[];
|
|
6
|
+
constructor(data?: Partial<ShippingZoneDistrictData>);
|
|
7
|
+
}
|
|
8
|
+
export declare class ShippingZoneDistrict extends ShippingZoneDistrictData {
|
|
9
|
+
}
|
|
10
|
+
export declare type PartialShippingZoneDistrict = Partial<ShippingZoneDistrict>;
|
|
11
|
+
export declare type ReadOnlyShippingZoneDistrict = DeepReadonly<ShippingZoneDistrict>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { DeepReadonly } from "ts-essentials";
|
|
2
|
+
import { ShippingZoneCityData } from "./ShippingZoneCity";
|
|
3
|
+
export declare class ShippingZoneStateData {
|
|
4
|
+
cities: ShippingZoneCityData[] | null;
|
|
5
|
+
id: string;
|
|
6
|
+
postalCodes: string[] | null;
|
|
7
|
+
constructor(data?: Partial<ShippingZoneStateData>);
|
|
8
|
+
}
|
|
9
|
+
export declare class ShippingZoneState extends ShippingZoneStateData {
|
|
10
|
+
}
|
|
11
|
+
export declare type PartialShippingZoneState = Partial<ShippingZoneState>;
|
|
12
|
+
export declare type ReadOnlyShippingZoneState = DeepReadonly<ShippingZoneState>;
|
|
@@ -3,7 +3,9 @@ import { CustomerSocialLoginProviderEnum } from "../types";
|
|
|
3
3
|
export declare class SocialLoginSettingsData {
|
|
4
4
|
apiKey: string | null;
|
|
5
5
|
apiSecret: string | null;
|
|
6
|
+
keyId: string | null;
|
|
6
7
|
provider: CustomerSocialLoginProviderEnum;
|
|
8
|
+
teamId: string | null;
|
|
7
9
|
constructor(data?: Partial<SocialLoginSettingsData>);
|
|
8
10
|
}
|
|
9
11
|
export declare class SocialLoginSettings extends SocialLoginSettingsData {
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { DeepReadonly } from "ts-essentials";
|
|
2
|
+
import { StorefrontRegisterSettingsCheckboxType } from "../types";
|
|
3
|
+
export declare class StorefrontFormCheckboxSettingsData {
|
|
4
|
+
checkboxTypes: StorefrontRegisterSettingsCheckboxType[] | null;
|
|
5
|
+
content: string;
|
|
6
|
+
order: number | null;
|
|
7
|
+
constructor(data?: Partial<StorefrontFormCheckboxSettingsData>);
|
|
8
|
+
}
|
|
9
|
+
export declare class StorefrontFormCheckboxSettings extends StorefrontFormCheckboxSettingsData {
|
|
10
|
+
}
|
|
11
|
+
export declare type PartialStorefrontFormCheckboxSettings = Partial<StorefrontFormCheckboxSettings>;
|
|
12
|
+
export declare type ReadOnlyStorefrontFormCheckboxSettings = DeepReadonly<StorefrontFormCheckboxSettings>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DeepReadonly } from "ts-essentials";
|
|
2
|
+
export declare class StorefrontFormCheckoutFooterPolicyData {
|
|
3
|
+
order: number | null;
|
|
4
|
+
storefrontPolicyId: string;
|
|
5
|
+
constructor(data?: Partial<StorefrontFormCheckoutFooterPolicyData>);
|
|
6
|
+
}
|
|
7
|
+
export declare class StorefrontFormCheckoutFooterPolicy extends StorefrontFormCheckoutFooterPolicyData {
|
|
8
|
+
}
|
|
9
|
+
export declare type PartialStorefrontFormCheckoutFooterPolicy = Partial<StorefrontFormCheckoutFooterPolicy>;
|
|
10
|
+
export declare type ReadOnlyStorefrontFormCheckoutFooterPolicy = DeepReadonly<StorefrontFormCheckoutFooterPolicy>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DeepReadonly } from "ts-essentials";
|
|
2
|
+
import { StorefrontFormCheckoutFooterPolicyData } from "./StorefrontFormCheckoutFooterPolicy";
|
|
3
|
+
export declare class StorefrontFormCheckoutFooterSettingsData {
|
|
4
|
+
storefrontPolicies: StorefrontFormCheckoutFooterPolicyData[];
|
|
5
|
+
constructor(data?: Partial<StorefrontFormCheckoutFooterSettingsData>);
|
|
6
|
+
}
|
|
7
|
+
export declare class StorefrontFormCheckoutFooterSettings extends StorefrontFormCheckoutFooterSettingsData {
|
|
8
|
+
}
|
|
9
|
+
export declare type PartialStorefrontFormCheckoutFooterSettings = Partial<StorefrontFormCheckoutFooterSettings>;
|
|
10
|
+
export declare type ReadOnlyStorefrontFormCheckoutFooterSettings = DeepReadonly<StorefrontFormCheckoutFooterSettings>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { DeepReadonly } from "ts-essentials";
|
|
2
|
+
import { StorefrontFormCheckboxSettingsData } from "./StorefrontFormCheckboxSettings";
|
|
3
|
+
import { StorefrontFormCheckoutFooterSettingsData } from "./StorefrontFormCheckoutFooterSettings";
|
|
4
|
+
export declare class StorefrontFormCheckoutSettingsData {
|
|
5
|
+
checkoutCheckboxSettings: StorefrontFormCheckboxSettingsData[] | null;
|
|
6
|
+
checkoutFooterSettings: StorefrontFormCheckoutFooterSettingsData | null;
|
|
7
|
+
checkoutMarketingSettings: StorefrontFormCheckboxSettingsData | null;
|
|
8
|
+
constructor(data?: Partial<StorefrontFormCheckoutSettingsData>);
|
|
9
|
+
}
|
|
10
|
+
export declare class StorefrontFormCheckoutSettings extends StorefrontFormCheckoutSettingsData {
|
|
11
|
+
}
|
|
12
|
+
export declare type PartialStorefrontFormCheckoutSettings = Partial<StorefrontFormCheckoutSettings>;
|
|
13
|
+
export declare type ReadOnlyStorefrontFormCheckoutSettings = DeepReadonly<StorefrontFormCheckoutSettings>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { DeepReadonly } from "ts-essentials";
|
|
2
|
+
import { TemplateEnum } from "../types";
|
|
3
|
+
export declare class StorefrontFormMailSettingsData {
|
|
4
|
+
countryIds: string[] | null;
|
|
5
|
+
emailTemplates: TemplateEnum[] | null;
|
|
6
|
+
storefrontPolicyId: string;
|
|
7
|
+
constructor(data?: Partial<StorefrontFormMailSettingsData>);
|
|
8
|
+
}
|
|
9
|
+
export declare class StorefrontFormMailSettings extends StorefrontFormMailSettingsData {
|
|
10
|
+
}
|
|
11
|
+
export declare type PartialStorefrontFormMailSettings = Partial<StorefrontFormMailSettings>;
|
|
12
|
+
export declare type ReadOnlyStorefrontFormMailSettings = DeepReadonly<StorefrontFormMailSettings>;
|
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
import { DeepReadonly } from "ts-essentials";
|
|
2
2
|
import BaseModelData from "./_base";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
3
|
+
import { StorefrontFormCheckoutSettingsData } from "./StorefrontFormCheckoutSettings";
|
|
4
|
+
import { StorefrontFormMailSettingsData } from "./StorefrontFormMailSettings";
|
|
5
|
+
import { StorefrontFormCheckboxSettingsData } from "./StorefrontFormCheckboxSettings";
|
|
6
6
|
import { StorefrontFormSettingsRoutingData } from "./StorefrontFormSettingsRouting";
|
|
7
7
|
export declare class StorefrontFormSettingsData extends BaseModelData {
|
|
8
|
-
checkoutSettings:
|
|
8
|
+
checkoutSettings: StorefrontFormCheckoutSettingsData | null;
|
|
9
9
|
locale: string;
|
|
10
|
-
mailSettingsList:
|
|
10
|
+
mailSettingsList: StorefrontFormMailSettingsData[] | null;
|
|
11
11
|
name: string;
|
|
12
|
-
|
|
12
|
+
newsletterSettings: StorefrontFormCheckboxSettingsData | null;
|
|
13
|
+
registerSettingsList: StorefrontFormCheckboxSettingsData[] | null;
|
|
14
|
+
storefrontId: string;
|
|
13
15
|
storefrontRoutings: StorefrontFormSettingsRoutingData[];
|
|
14
16
|
constructor(data?: Partial<StorefrontFormSettingsData>);
|
|
15
17
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { DeepReadonly } from "ts-essentials";
|
|
2
2
|
export declare class StorefrontFormSettingsRoutingData {
|
|
3
3
|
assignedRoutings: string[] | null;
|
|
4
|
-
storefrontId: string;
|
|
5
4
|
constructor(data?: Partial<StorefrontFormSettingsRoutingData>);
|
|
6
5
|
}
|
|
7
6
|
export declare class StorefrontFormSettingsRouting extends StorefrontFormSettingsRoutingData {
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { DeepReadonly } from "ts-essentials";
|
|
2
2
|
export declare class StorefrontPolicyRoutingData {
|
|
3
3
|
assignedRoutings: string[] | null;
|
|
4
|
-
storefrontId: string;
|
|
5
4
|
constructor(data?: Partial<StorefrontPolicyRoutingData>);
|
|
6
5
|
}
|
|
7
6
|
export declare class StorefrontPolicyRouting extends StorefrontPolicyRoutingData {
|
|
@@ -58,11 +58,8 @@ export declare enum ResponseField {
|
|
|
58
58
|
BILLING_ADDRESS__LAST_NAME = "billingAddress.lastName",
|
|
59
59
|
BILLING_ADDRESS__PHONE = "billingAddress.phone",
|
|
60
60
|
BILLING_ADDRESS__POSTAL_CODE = "billingAddress.postalCode",
|
|
61
|
-
BILLING_ADDRESS__REGION__CREATED_AT = "billingAddress.region.createdAt",
|
|
62
|
-
BILLING_ADDRESS__REGION__DELETED = "billingAddress.region.deleted",
|
|
63
61
|
BILLING_ADDRESS__REGION__ID = "billingAddress.region.id",
|
|
64
62
|
BILLING_ADDRESS__REGION__NAME = "billingAddress.region.name",
|
|
65
|
-
BILLING_ADDRESS__REGION__UPDATED_AT = "billingAddress.region.updatedAt",
|
|
66
63
|
BILLING_ADDRESS__STATE__CODE = "billingAddress.state.code",
|
|
67
64
|
BILLING_ADDRESS__STATE__ID = "billingAddress.state.id",
|
|
68
65
|
BILLING_ADDRESS__STATE__NAME = "billingAddress.state.name",
|
|
@@ -141,6 +138,7 @@ export declare enum ResponseField {
|
|
|
141
138
|
CART__ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__CATEGORIES__CATEGORY_PATH__NAME = "cart.items.variant.bundleProducts.variant.categories.categoryPath.name",
|
|
142
139
|
CART__ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__CATEGORIES__ID = "cart.items.variant.bundleProducts.variant.categories.id",
|
|
143
140
|
CART__ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__CATEGORIES__NAME = "cart.items.variant.bundleProducts.variant.categories.name",
|
|
141
|
+
CART__ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__FILE_ID = "cart.items.variant.bundleProducts.variant.fileId",
|
|
144
142
|
CART__ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__HS_CODE = "cart.items.variant.bundleProducts.variant.hsCode",
|
|
145
143
|
CART__ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__ID = "cart.items.variant.bundleProducts.variant.id",
|
|
146
144
|
CART__ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__MAIN_IMAGE_ID = "cart.items.variant.bundleProducts.variant.mainImageId",
|
|
@@ -172,6 +170,7 @@ export declare enum ResponseField {
|
|
|
172
170
|
CART__ITEMS__VARIANT__CATEGORIES__CATEGORY_PATH__NAME = "cart.items.variant.categories.categoryPath.name",
|
|
173
171
|
CART__ITEMS__VARIANT__CATEGORIES__ID = "cart.items.variant.categories.id",
|
|
174
172
|
CART__ITEMS__VARIANT__CATEGORIES__NAME = "cart.items.variant.categories.name",
|
|
173
|
+
CART__ITEMS__VARIANT__FILE_ID = "cart.items.variant.fileId",
|
|
175
174
|
CART__ITEMS__VARIANT__HS_CODE = "cart.items.variant.hsCode",
|
|
176
175
|
CART__ITEMS__VARIANT__ID = "cart.items.variant.id",
|
|
177
176
|
CART__ITEMS__VARIANT__MAIN_IMAGE_ID = "cart.items.variant.mainImageId",
|
|
@@ -265,11 +264,8 @@ export declare enum ResponseField {
|
|
|
265
264
|
SHIPPING_ADDRESS__LAST_NAME = "shippingAddress.lastName",
|
|
266
265
|
SHIPPING_ADDRESS__PHONE = "shippingAddress.phone",
|
|
267
266
|
SHIPPING_ADDRESS__POSTAL_CODE = "shippingAddress.postalCode",
|
|
268
|
-
SHIPPING_ADDRESS__REGION__CREATED_AT = "shippingAddress.region.createdAt",
|
|
269
|
-
SHIPPING_ADDRESS__REGION__DELETED = "shippingAddress.region.deleted",
|
|
270
267
|
SHIPPING_ADDRESS__REGION__ID = "shippingAddress.region.id",
|
|
271
268
|
SHIPPING_ADDRESS__REGION__NAME = "shippingAddress.region.name",
|
|
272
|
-
SHIPPING_ADDRESS__REGION__UPDATED_AT = "shippingAddress.region.updatedAt",
|
|
273
269
|
SHIPPING_ADDRESS__STATE__CODE = "shippingAddress.state.code",
|
|
274
270
|
SHIPPING_ADDRESS__STATE__ID = "shippingAddress.state.id",
|
|
275
271
|
SHIPPING_ADDRESS__STATE__NAME = "shippingAddress.state.name",
|
|
@@ -19,6 +19,9 @@ export declare enum ResponseField {
|
|
|
19
19
|
ABANDONED_CART_FLOWS__RECOVER_EMAIL_STATUS = "abandonedCartFlows.recoverEmailStatus",
|
|
20
20
|
ABANDONED_CART_FLOWS__SEND_AFTER = "abandonedCartFlows.sendAfter",
|
|
21
21
|
ABANDONED_CART_FLOWS__SMS_TRANSLATION_ID = "abandonedCartFlows.smsTranslationId",
|
|
22
|
+
ATTRIBUTES__ORDER_ATTRIBUTE_ID = "attributes.orderAttributeId",
|
|
23
|
+
ATTRIBUTES__ORDER_ATTRIBUTE_OPTION_ID = "attributes.orderAttributeOptionId",
|
|
24
|
+
ATTRIBUTES__VALUE = "attributes.value",
|
|
22
25
|
AVAILABLE_SHIPPING_METHODS__PRICE = "availableShippingMethods.price",
|
|
23
26
|
AVAILABLE_SHIPPING_METHODS__RATE_NAME = "availableShippingMethods.rateName",
|
|
24
27
|
AVAILABLE_SHIPPING_METHODS__SHIPPING_METHOD = "availableShippingMethods.shippingMethod",
|
|
@@ -45,11 +48,8 @@ export declare enum ResponseField {
|
|
|
45
48
|
BILLING_ADDRESS__LAST_NAME = "billingAddress.lastName",
|
|
46
49
|
BILLING_ADDRESS__PHONE = "billingAddress.phone",
|
|
47
50
|
BILLING_ADDRESS__POSTAL_CODE = "billingAddress.postalCode",
|
|
48
|
-
BILLING_ADDRESS__REGION__CREATED_AT = "billingAddress.region.createdAt",
|
|
49
|
-
BILLING_ADDRESS__REGION__DELETED = "billingAddress.region.deleted",
|
|
50
51
|
BILLING_ADDRESS__REGION__ID = "billingAddress.region.id",
|
|
51
52
|
BILLING_ADDRESS__REGION__NAME = "billingAddress.region.name",
|
|
52
|
-
BILLING_ADDRESS__REGION__UPDATED_AT = "billingAddress.region.updatedAt",
|
|
53
53
|
BILLING_ADDRESS__STATE__CODE = "billingAddress.state.code",
|
|
54
54
|
BILLING_ADDRESS__STATE__ID = "billingAddress.state.id",
|
|
55
55
|
BILLING_ADDRESS__STATE__NAME = "billingAddress.state.name",
|
|
@@ -193,6 +193,7 @@ export declare enum ResponseField {
|
|
|
193
193
|
ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__CATEGORIES__CATEGORY_PATH__NAME = "orderLineItems.variant.bundleProducts.variant.categories.categoryPath.name",
|
|
194
194
|
ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__CATEGORIES__ID = "orderLineItems.variant.bundleProducts.variant.categories.id",
|
|
195
195
|
ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__CATEGORIES__NAME = "orderLineItems.variant.bundleProducts.variant.categories.name",
|
|
196
|
+
ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__FILE_ID = "orderLineItems.variant.bundleProducts.variant.fileId",
|
|
196
197
|
ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__HS_CODE = "orderLineItems.variant.bundleProducts.variant.hsCode",
|
|
197
198
|
ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__ID = "orderLineItems.variant.bundleProducts.variant.id",
|
|
198
199
|
ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__MAIN_IMAGE_ID = "orderLineItems.variant.bundleProducts.variant.mainImageId",
|
|
@@ -224,6 +225,7 @@ export declare enum ResponseField {
|
|
|
224
225
|
ORDER_LINE_ITEMS__VARIANT__CATEGORIES__CATEGORY_PATH__NAME = "orderLineItems.variant.categories.categoryPath.name",
|
|
225
226
|
ORDER_LINE_ITEMS__VARIANT__CATEGORIES__ID = "orderLineItems.variant.categories.id",
|
|
226
227
|
ORDER_LINE_ITEMS__VARIANT__CATEGORIES__NAME = "orderLineItems.variant.categories.name",
|
|
228
|
+
ORDER_LINE_ITEMS__VARIANT__FILE_ID = "orderLineItems.variant.fileId",
|
|
227
229
|
ORDER_LINE_ITEMS__VARIANT__HS_CODE = "orderLineItems.variant.hsCode",
|
|
228
230
|
ORDER_LINE_ITEMS__VARIANT__ID = "orderLineItems.variant.id",
|
|
229
231
|
ORDER_LINE_ITEMS__VARIANT__MAIN_IMAGE_ID = "orderLineItems.variant.mainImageId",
|
|
@@ -300,11 +302,8 @@ export declare enum ResponseField {
|
|
|
300
302
|
SHIPPING_ADDRESS__LAST_NAME = "shippingAddress.lastName",
|
|
301
303
|
SHIPPING_ADDRESS__PHONE = "shippingAddress.phone",
|
|
302
304
|
SHIPPING_ADDRESS__POSTAL_CODE = "shippingAddress.postalCode",
|
|
303
|
-
SHIPPING_ADDRESS__REGION__CREATED_AT = "shippingAddress.region.createdAt",
|
|
304
|
-
SHIPPING_ADDRESS__REGION__DELETED = "shippingAddress.region.deleted",
|
|
305
305
|
SHIPPING_ADDRESS__REGION__ID = "shippingAddress.region.id",
|
|
306
306
|
SHIPPING_ADDRESS__REGION__NAME = "shippingAddress.region.name",
|
|
307
|
-
SHIPPING_ADDRESS__REGION__UPDATED_AT = "shippingAddress.region.updatedAt",
|
|
308
307
|
SHIPPING_ADDRESS__STATE__CODE = "shippingAddress.state.code",
|
|
309
308
|
SHIPPING_ADDRESS__STATE__ID = "shippingAddress.state.id",
|
|
310
309
|
SHIPPING_ADDRESS__STATE__NAME = "shippingAddress.state.name",
|