@ikas/storefront-api 4.10.0-beta.9 → 4.10.0

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.
Files changed (57) hide show
  1. package/build/__api/models/BundleProductInput.d.ts +1 -0
  2. package/build/__api/models/CartV2.d.ts +2 -1
  3. package/build/__api/models/CheckoutSettingsPrice.d.ts +2 -1
  4. package/build/__api/models/Customer.d.ts +3 -0
  5. package/build/__api/models/CustomerPriceListRule.d.ts +11 -0
  6. package/build/__api/models/CustomerPriceListRuleFilter.d.ts +11 -0
  7. package/build/__api/models/IndexPageSeoSetting.d.ts +16 -0
  8. package/build/__api/models/ProductFile.d.ts +12 -0
  9. package/build/__api/models/SearchProduct.d.ts +2 -0
  10. package/build/__api/models/SearchProductBrand.d.ts +1 -0
  11. package/build/__api/models/SearchVariant.d.ts +2 -1
  12. package/build/__api/models/Storefront.d.ts +6 -1
  13. package/build/__api/models/StorefrontB2BSettings.d.ts +12 -0
  14. package/build/__api/mutations/addItemToCart.d.ts +1 -0
  15. package/build/__api/mutations/addItemToCart.js +1 -1
  16. package/build/__api/mutations/customerLogin.d.ts +4 -0
  17. package/build/__api/mutations/customerLogin.js +1 -1
  18. package/build/__api/mutations/registerCustomer.d.ts +5 -0
  19. package/build/__api/mutations/registerCustomer.js +1 -1
  20. package/build/__api/mutations/saveCart.d.ts +1 -0
  21. package/build/__api/mutations/saveCart.js +1 -1
  22. package/build/__api/mutations/saveCartCouponCode.d.ts +1 -0
  23. package/build/__api/mutations/saveCartCouponCode.js +1 -1
  24. package/build/__api/mutations/saveMyCustomer.d.ts +4 -0
  25. package/build/__api/mutations/saveMyCustomer.js +1 -1
  26. package/build/__api/mutations/updateCartCampaignOffer.d.ts +1 -0
  27. package/build/__api/mutations/updateCartCampaignOffer.js +1 -1
  28. package/build/__api/queries/checkCartStocks.d.ts +13 -0
  29. package/build/__api/queries/checkCartStocks.js +1 -0
  30. package/build/__api/queries/customerSocialLogin.d.ts +4 -0
  31. package/build/__api/queries/customerSocialLogin.js +1 -1
  32. package/build/__api/queries/getCartById.d.ts +1 -0
  33. package/build/__api/queries/getCartById.js +1 -1
  34. package/build/__api/queries/getDigitalProductFileDownloadUrl.d.ts +2 -1
  35. package/build/__api/queries/getDigitalProductFileDownloadUrl.js +1 -0
  36. package/build/__api/queries/getMyCustomer.d.ts +4 -0
  37. package/build/__api/queries/getMyCustomer.js +1 -1
  38. package/build/__api/queries/getProductFilterData.d.ts +1 -0
  39. package/build/__api/queries/getProductFilterData.js +1 -1
  40. package/build/__api/queries/getStorefront.d.ts +15 -0
  41. package/build/__api/queries/listCheckoutSettings.d.ts +1 -0
  42. package/build/__api/queries/listCheckoutSettings.js +1 -1
  43. package/build/__api/queries/listProductFile.d.ts +16 -0
  44. package/build/__api/queries/listProductFile.js +1 -0
  45. package/build/__api/queries/searchProducts.d.ts +12 -0
  46. package/build/__api/queries/searchProducts.js +1 -1
  47. package/build/__api/types/index.d.ts +56 -1
  48. package/build/__api/types/index.js +1 -1
  49. package/build/api/checkout/index.d.ts +5 -1
  50. package/build/api/checkout/index.js +1 -1
  51. package/build/api/file-upload/index.d.ts +3 -1
  52. package/build/api/file-upload/index.js +1 -1
  53. package/build/api/product/index.d.ts +2 -1
  54. package/build/api/product/index.js +1 -1
  55. package/build/api/storefront/index.d.ts +1 -0
  56. package/build/index.js +1 -1
  57. package/package.json +5 -5
@@ -1,5 +1,6 @@
1
1
  import { DeepReadonly } from "ts-essentials";
2
2
  export declare class BundleProductInputData {
3
+ productId: string;
3
4
  quantity: number;
4
5
  variantId: string;
5
6
  constructor(data?: Partial<BundleProductInputData>);
@@ -1,6 +1,6 @@
1
1
  import { DeepReadonly } from "ts-essentials";
2
2
  import BaseModelData from "./_base";
3
- import { CartV2StatusEnum, CartCreatedByEnum, OrderPackageStatusEnum, CheckoutRecoveryEmailStatusEnum, CheckoutRecoveryStatusEnum, OrderShippingMethodEnum } from "../types";
3
+ import { CartV2StatusEnum, CartCreatedByEnum, OrderPackageStatusEnum, OrderPaymentStatusEnum, CheckoutRecoveryEmailStatusEnum, CheckoutRecoveryStatusEnum, OrderShippingMethodEnum } from "../types";
4
4
  import { AbandonedCartFlowData } from "./AbandonedCartFlow";
5
5
  import { OrderAttributeValueData } from "./OrderAttributeValue";
6
6
  import { AvailableShippingMethodData } from "./AvailableShippingMethod";
@@ -44,6 +44,7 @@ export declare class CartV2Data extends BaseModelData {
44
44
  orderLineItems: OrderLineItemData[];
45
45
  orderNumber: string | null;
46
46
  orderPackageStatus: OrderPackageStatusEnum | null;
47
+ orderPaymentStatus: OrderPaymentStatusEnum | null;
47
48
  orderedAt: any | null;
48
49
  priceListId: string | null;
49
50
  recoverEmailStatus: CheckoutRecoveryEmailStatusEnum | null;
@@ -1,8 +1,9 @@
1
1
  import { DeepReadonly } from "ts-essentials";
2
2
  export declare class CheckoutSettingsPriceData {
3
- currencyCode: string;
3
+ currencyCode: string | null;
4
4
  currencySymbol: string | null;
5
5
  price: number;
6
+ priceListId: string | null;
6
7
  constructor(data?: Partial<CheckoutSettingsPriceData>);
7
8
  }
8
9
  export declare class CheckoutSettingsPrice extends CheckoutSettingsPriceData {
@@ -3,6 +3,7 @@ import BaseModelData from "./_base";
3
3
  import { CustomerAccountStatusEnum, CustomerRegistrationSourceEnum, CustomerEmailSubscriptionStatusesEnum } from "../types";
4
4
  import { CustomerAddressData } from "./CustomerAddress";
5
5
  import { CustomerAttributeValueData } from "./CustomerAttributeValue";
6
+ import { CustomerPriceListRuleData } from "./CustomerPriceListRule";
6
7
  export declare class CustomerData extends BaseModelData {
7
8
  accountStatus: CustomerAccountStatusEnum | null;
8
9
  accountStatusUpdatedAt: any | null;
@@ -23,6 +24,8 @@ export declare class CustomerData extends BaseModelData {
23
24
  phone: string | null;
24
25
  phoneVerifiedDate: any | null;
25
26
  preferredLanguage: string | null;
27
+ priceListId: string | null;
28
+ priceListRules: CustomerPriceListRuleData[] | null;
26
29
  registrationSource: CustomerRegistrationSourceEnum | null;
27
30
  subscriptionStatus: CustomerEmailSubscriptionStatusesEnum | null;
28
31
  subscriptionStatusUpdatedAt: any | null;
@@ -0,0 +1,11 @@
1
+ import { DeepReadonly } from "ts-essentials";
2
+ import { CustomerPriceListRuleFilterData } from "./CustomerPriceListRuleFilter";
3
+ export declare class CustomerPriceListRuleData {
4
+ discountRate: number;
5
+ filters: CustomerPriceListRuleFilterData[] | null;
6
+ constructor(data?: Partial<CustomerPriceListRuleData>);
7
+ }
8
+ export declare class CustomerPriceListRule extends CustomerPriceListRuleData {
9
+ }
10
+ export declare type PartialCustomerPriceListRule = Partial<CustomerPriceListRule>;
11
+ export declare type ReadOnlyCustomerPriceListRule = DeepReadonly<CustomerPriceListRule>;
@@ -0,0 +1,11 @@
1
+ import { DeepReadonly } from "ts-essentials";
2
+ import { CustomerPriceListRuleFilterTypeEnum } from "../types";
3
+ export declare class CustomerPriceListRuleFilterData {
4
+ type: CustomerPriceListRuleFilterTypeEnum;
5
+ valueList: string[];
6
+ constructor(data?: Partial<CustomerPriceListRuleFilterData>);
7
+ }
8
+ export declare class CustomerPriceListRuleFilter extends CustomerPriceListRuleFilterData {
9
+ }
10
+ export declare type PartialCustomerPriceListRuleFilter = Partial<CustomerPriceListRuleFilter>;
11
+ export declare type ReadOnlyCustomerPriceListRuleFilter = DeepReadonly<CustomerPriceListRuleFilter>;
@@ -0,0 +1,16 @@
1
+ import { DeepReadonly } from "ts-essentials";
2
+ import BaseModelData from "./_base";
3
+ export declare class IndexPageSeoSettingData extends BaseModelData {
4
+ canonicals: string[] | null;
5
+ description: string | null;
6
+ disableIndex: boolean | null;
7
+ favIcon: string | null;
8
+ locale: string;
9
+ pageTitle: string | null;
10
+ slug: string | null;
11
+ constructor(data?: Partial<IndexPageSeoSettingData>);
12
+ }
13
+ export declare class IndexPageSeoSetting extends IndexPageSeoSettingData {
14
+ }
15
+ export declare type PartialIndexPageSeoSetting = Partial<IndexPageSeoSetting>;
16
+ export declare type ReadOnlyIndexPageSeoSetting = DeepReadonly<IndexPageSeoSetting>;
@@ -0,0 +1,12 @@
1
+ import { DeepReadonly } from "ts-essentials";
2
+ import BaseModelData from "./_base";
3
+ export declare class ProductFileData extends BaseModelData {
4
+ name: string;
5
+ productId: string;
6
+ variantId: string;
7
+ constructor(data?: Partial<ProductFileData>);
8
+ }
9
+ export declare class ProductFile extends ProductFileData {
10
+ }
11
+ export declare type PartialProductFile = Partial<ProductFile>;
12
+ export declare type ReadOnlyProductFile = DeepReadonly<ProductFile>;
@@ -21,12 +21,14 @@ export declare class SearchProductData extends BaseModelData {
21
21
  categories: SearchCategoryData[] | null;
22
22
  customerReviewSummaries: ProductSearchCustomerReviewSummariesData | null;
23
23
  description: string | null;
24
+ dynamicPriceListIds: string[] | null;
24
25
  groupVariantsByVariantTypeId: string | null;
25
26
  hiddenSalesChannelIds: string[] | null;
26
27
  metaData: SearchHTMLMetaDataData | null;
27
28
  name: string;
28
29
  productOptionSetId: string | null;
29
30
  productVariantTypes: SearchProductVariantTypeData[];
31
+ productVolumeDiscountId: string | null;
30
32
  reviewCount: number | null;
31
33
  salesChannelIds: string[] | null;
32
34
  shortDescription: string | null;
@@ -2,6 +2,7 @@ import { DeepReadonly } from "ts-essentials";
2
2
  import { ProductBrandTranslationData } from "./ProductBrandTranslation";
3
3
  export declare class SearchProductBrandData {
4
4
  id: string;
5
+ imageId: string | null;
5
6
  name: string;
6
7
  slug: string | null;
7
8
  translations: ProductBrandTranslationData[] | null;
@@ -1,14 +1,15 @@
1
1
  import { DeepReadonly } from "ts-essentials";
2
2
  import { SearchProductAttributeValueData } from "./SearchProductAttributeValue";
3
+ import { SearchProductPriceData } from "./SearchProductPrice";
3
4
  import { BundleSettingsModelData } from "./BundleSettingsModel";
4
5
  import { SearchProductImageData } from "./SearchProductImage";
5
- import { SearchProductPriceData } from "./SearchProductPrice";
6
6
  import { SearchProductStockLocationData } from "./SearchProductStockLocation";
7
7
  import { VariantUnitModelData } from "./VariantUnitModel";
8
8
  import { SearchVariationValueRelationData } from "./SearchVariationValueRelation";
9
9
  export declare class SearchVariantData {
10
10
  attributes: SearchProductAttributeValueData[] | null;
11
11
  barcodeList: string[] | null;
12
+ baseBundlePrices: SearchProductPriceData[] | null;
12
13
  bundleSettings: BundleSettingsModelData | null;
13
14
  deleted: boolean | null;
14
15
  id: string;
@@ -1,7 +1,9 @@
1
1
  import { DeepReadonly } from "ts-essentials";
2
2
  import BaseModelData from "./_base";
3
- import { StorefrontStatusTypes } from "../types";
3
+ import { StorefrontStatusTypes, StorefrontTypeEnum } from "../types";
4
+ import { StorefrontB2BSettingsData } from "./StorefrontB2BSettings";
4
5
  import { StorefrontDomainData } from "./StorefrontDomain";
6
+ import { IndexPageSeoSettingData } from "./IndexPageSeoSetting";
5
7
  import { StorefrontLocalizationData } from "./StorefrontLocalization";
6
8
  import { StorefrontMetaTemplateData } from "./StorefrontMetaTemplate";
7
9
  import { StorefrontRoutingData } from "./StorefrontRouting";
@@ -9,11 +11,13 @@ import { SocialLoginSettingsData } from "./SocialLoginSettings";
9
11
  import { StorefrontThemeData } from "./StorefrontTheme";
10
12
  export declare class StorefrontData extends BaseModelData {
11
13
  analytics4Id: string | null;
14
+ b2bSettings: StorefrontB2BSettingsData | null;
12
15
  domains: StorefrontDomainData[] | null;
13
16
  emailSettingsId: string | null;
14
17
  fbAccessToken: string | null;
15
18
  fbpId: string | null;
16
19
  gtmId: string | null;
20
+ indexPageSeoSettings: IndexPageSeoSettingData[] | null;
17
21
  localizations: StorefrontLocalizationData[];
18
22
  mainStorefrontThemeId: string | null;
19
23
  metaTemplates: StorefrontMetaTemplateData[] | null;
@@ -27,6 +31,7 @@ export declare class StorefrontData extends BaseModelData {
27
31
  themes: StorefrontThemeData[];
28
32
  tiktokPixelId: string | null;
29
33
  token: string | null;
34
+ type: StorefrontTypeEnum;
30
35
  universalAnalyticsId: string | null;
31
36
  constructor(data?: Partial<StorefrontData>);
32
37
  }
@@ -0,0 +1,12 @@
1
+ import { DeepReadonly } from "ts-essentials";
2
+ import { StorefrontB2BShowPricesEnum, StorefrontB2BShowProductsEnum } from "../types";
3
+ export declare class StorefrontB2BSettingsData {
4
+ allowOnlyApprovedCustomersToLogin: boolean;
5
+ showPrices: StorefrontB2BShowPricesEnum;
6
+ showProducts: StorefrontB2BShowProductsEnum;
7
+ constructor(data?: Partial<StorefrontB2BSettingsData>);
8
+ }
9
+ export declare class StorefrontB2BSettings extends StorefrontB2BSettingsData {
10
+ }
11
+ export declare type PartialStorefrontB2BSettings = Partial<StorefrontB2BSettings>;
12
+ export declare type ReadOnlyStorefrontB2BSettings = DeepReadonly<StorefrontB2BSettings>;
@@ -260,6 +260,7 @@ export declare enum ResponseField {
260
260
  ORDER_LINE_ITEMS__VARIANT__WEIGHT = "orderLineItems.variant.weight",
261
261
  ORDER_NUMBER = "orderNumber",
262
262
  ORDER_PACKAGE_STATUS = "orderPackageStatus",
263
+ ORDER_PAYMENT_STATUS = "orderPaymentStatus",
263
264
  ORDERED_AT = "orderedAt",
264
265
  PRICE_LIST_ID = "priceListId",
265
266
  RECOVER_EMAIL_STATUS = "recoverEmailStatus",
@@ -1 +1 @@
1
- import{__awaiter as _,__generator as e}from'./../../ext/tslib/tslib.es6.js';import{handleAPIError as I,APIResponse as t,fetchQuery as r}from"@ikas/fe-api-client";var i,E=function(i,E,n){return _(void 0,void 0,void 0,(function(){var _,A,R,s;return e(this,(function(e){switch(e.label){case 0:return e.trys.push([0,2,,3]),[4,r({operationName:"addItemToCart",config:n,variables:i,allReturnFields:a,fields:E,query:function(_){return"\n\t\t\t\tmutation addItemToCart (\n\t\t\t\t\t$input: AddItemToCartInput!,\n\t\t\t\t) {\n\t\t\t\t\taddItemToCart (\n\t\t\t\t\t\tinput: $input,\n\t\t\t\t\t) ".concat(_,"\n\t\t\t\t}\n\t\t\t")}})];case 1:return _=e.sent(),A=_.data,R=_.errors,[2,new t(null==A?void 0:A.addItemToCart,R)];case 2:return s=e.sent(),[2,I(s)];case 3:return[2]}}))}))},a="{abandonedCartFlows {authorizedAppId campaignId canApplicable couponId customerFilters {sendOnlyActiveAccount sendOnlySubscribedToEmail } flowId mailSendDate mailTranslationId messageType recoverEmailStatus sendAfter smsTranslationId } attributes {orderAttributeId orderAttributeOptionId value } availableShippingMethods {estimatedDeliveryTime {type value } price rateName shippingMethod shippingSettingsId shippingZoneRateId } billingAddress {addressLine1 addressLine2 city {code id name } company country {code id iso2 iso3 name } district {code id name } firstName id identityNumber isDefault lastName phone postalCode region {createdAt deleted id name updatedAt } state {code id name } taxNumber taxOffice } campaignOffers {appliedOrderLineId campaignOffer {availableSalesChannelIds createdAt currencyCodes deleted endDate followUpActionType id minimumRequiredCartAmount name offers {applicablePrice countdownMinutes description discountAmount discountType excludedVariantIdList id order productId showCriteria skipOfferIfProductExistsInCart title translations {description locale title } } startDate targetPageTypes triggerSettings {filterType valueList } type updatedAt } campaignOfferId campaignOfferProductId offerEndDate offerStartDate status targetPageTypes triggerSourceOrderLineId } cartId cartStatus checkoutId clientIp couponCode createdAt createdBy currencyCode currencyRates {code originalRate rate } currencySymbol customer {email firstName fullName id isGuestCheckout lastName notificationsAccepted phone } customerId deleted dueDate giftPackageLines {price taxValue } giftPackageNote host id isGiftPackage itemCount merchantId note orderAdjustments {amount amountType appliedOrderLines {amount appliedQuantity isAutoCreated orderLineId } campaignId campaignType couponId name order type } orderLineItems {createdAt currencyCode currencySymbol deleted discount {amount amountType campaignOfferId campaignOfferProductId maxApplicableQuantity reason } discountPrice finalPrice finalUnitPrice id options {name productOptionId productOptionsSetId type values {name price value } } originalOrderLineItemId price quantity status statusUpdatedAt stockLocationId taxValue unitPrice updatedAt variant {barcodeList baseUnit {baseAmount type unit {id name } } brand {id name } bundleProducts {deleted discountPrice discountRatio finalPrice order price quantity taxValue variant {barcodeList baseUnit {baseAmount type unit {id name } } brand {id name } categories {categoryPath {id name } id name } fileId hsCode id mainImageId name prices {buyPrice currency currencySymbol discountPrice priceListId sellPrice unitPrice } productId sku slug tagIds tags {id name } taxValue type unit {amount type } variantValues {order variantTypeId variantTypeName variantValueId variantValueName } weight } } categories {categoryPath {id name } id name } fileId hsCode id mainImageId name prices {buyPrice currency currencySymbol discountPrice priceListId sellPrice unitPrice } productId sku slug tagIds tags {id name } taxValue type unit {amount type } variantValues {order variantTypeId variantTypeName variantValueId variantValueName } weight } } orderNumber orderPackageStatus orderedAt priceListId recoverEmailStatus recoveryStatus salesChannelId sessionInfo {countryCode durationMS end host ip referer salesChannelId sessionId start storefrontId trafficSource {source type } userAgent {deviceType name os } utm {campaign content medium source term } visitorId } shippingAddress {addressLine1 addressLine2 city {code id name } company country {code id iso2 iso3 name } district {code id name } firstName id identityNumber isDefault lastName phone postalCode region {createdAt deleted id name updatedAt } state {code id name } taxNumber taxOffice } shippingLines {finalPrice isRefunded paymentMethod price shippingSettingsId shippingZoneRateId taxValue title } shippingMethod shippingSettingsId shippingZoneRateId status stockLocationId storefrontId storefrontRouting {domain dynamicCurrencySettings {roundingFormat targetCurrencyCode } id locale path priceListId } storefrontRoutingId storefrontThemeId taxLines {price rate } totalFinalPrice totalPrice updatedAt userAgent }";!function(_){_.ABANDONED_CART_FLOWS__AUTHORIZED_APP_ID="abandonedCartFlows.authorizedAppId",_.ABANDONED_CART_FLOWS__CAMPAIGN_ID="abandonedCartFlows.campaignId",_.ABANDONED_CART_FLOWS__CAN_APPLICABLE="abandonedCartFlows.canApplicable",_.ABANDONED_CART_FLOWS__COUPON_ID="abandonedCartFlows.couponId",_.ABANDONED_CART_FLOWS__CUSTOMER_FILTERS__SEND_ONLY_ACTIVE_ACCOUNT="abandonedCartFlows.customerFilters.sendOnlyActiveAccount",_.ABANDONED_CART_FLOWS__CUSTOMER_FILTERS__SEND_ONLY_SUBSCRIBED_TO_EMAIL="abandonedCartFlows.customerFilters.sendOnlySubscribedToEmail",_.ABANDONED_CART_FLOWS__FLOW_ID="abandonedCartFlows.flowId",_.ABANDONED_CART_FLOWS__MAIL_SEND_DATE="abandonedCartFlows.mailSendDate",_.ABANDONED_CART_FLOWS__MAIL_TRANSLATION_ID="abandonedCartFlows.mailTranslationId",_.ABANDONED_CART_FLOWS__MESSAGE_TYPE="abandonedCartFlows.messageType",_.ABANDONED_CART_FLOWS__RECOVER_EMAIL_STATUS="abandonedCartFlows.recoverEmailStatus",_.ABANDONED_CART_FLOWS__SEND_AFTER="abandonedCartFlows.sendAfter",_.ABANDONED_CART_FLOWS__SMS_TRANSLATION_ID="abandonedCartFlows.smsTranslationId",_.ATTRIBUTES__ORDER_ATTRIBUTE_ID="attributes.orderAttributeId",_.ATTRIBUTES__ORDER_ATTRIBUTE_OPTION_ID="attributes.orderAttributeOptionId",_.ATTRIBUTES__VALUE="attributes.value",_.AVAILABLE_SHIPPING_METHODS__ESTIMATED_DELIVERY_TIME__TYPE="availableShippingMethods.estimatedDeliveryTime.type",_.AVAILABLE_SHIPPING_METHODS__ESTIMATED_DELIVERY_TIME__VALUE="availableShippingMethods.estimatedDeliveryTime.value",_.AVAILABLE_SHIPPING_METHODS__PRICE="availableShippingMethods.price",_.AVAILABLE_SHIPPING_METHODS__RATE_NAME="availableShippingMethods.rateName",_.AVAILABLE_SHIPPING_METHODS__SHIPPING_METHOD="availableShippingMethods.shippingMethod",_.AVAILABLE_SHIPPING_METHODS__SHIPPING_SETTINGS_ID="availableShippingMethods.shippingSettingsId",_.AVAILABLE_SHIPPING_METHODS__SHIPPING_ZONE_RATE_ID="availableShippingMethods.shippingZoneRateId",_.BILLING_ADDRESS__ADDRESS_LINE1="billingAddress.addressLine1",_.BILLING_ADDRESS__ADDRESS_LINE2="billingAddress.addressLine2",_.BILLING_ADDRESS__CITY__CODE="billingAddress.city.code",_.BILLING_ADDRESS__CITY__ID="billingAddress.city.id",_.BILLING_ADDRESS__CITY__NAME="billingAddress.city.name",_.BILLING_ADDRESS__COMPANY="billingAddress.company",_.BILLING_ADDRESS__COUNTRY__CODE="billingAddress.country.code",_.BILLING_ADDRESS__COUNTRY__ID="billingAddress.country.id",_.BILLING_ADDRESS__COUNTRY__ISO2="billingAddress.country.iso2",_.BILLING_ADDRESS__COUNTRY__ISO3="billingAddress.country.iso3",_.BILLING_ADDRESS__COUNTRY__NAME="billingAddress.country.name",_.BILLING_ADDRESS__DISTRICT__CODE="billingAddress.district.code",_.BILLING_ADDRESS__DISTRICT__ID="billingAddress.district.id",_.BILLING_ADDRESS__DISTRICT__NAME="billingAddress.district.name",_.BILLING_ADDRESS__FIRST_NAME="billingAddress.firstName",_.BILLING_ADDRESS__ID="billingAddress.id",_.BILLING_ADDRESS__IDENTITY_NUMBER="billingAddress.identityNumber",_.BILLING_ADDRESS__IS_DEFAULT="billingAddress.isDefault",_.BILLING_ADDRESS__LAST_NAME="billingAddress.lastName",_.BILLING_ADDRESS__PHONE="billingAddress.phone",_.BILLING_ADDRESS__POSTAL_CODE="billingAddress.postalCode",_.BILLING_ADDRESS__REGION__CREATED_AT="billingAddress.region.createdAt",_.BILLING_ADDRESS__REGION__DELETED="billingAddress.region.deleted",_.BILLING_ADDRESS__REGION__ID="billingAddress.region.id",_.BILLING_ADDRESS__REGION__NAME="billingAddress.region.name",_.BILLING_ADDRESS__REGION__UPDATED_AT="billingAddress.region.updatedAt",_.BILLING_ADDRESS__STATE__CODE="billingAddress.state.code",_.BILLING_ADDRESS__STATE__ID="billingAddress.state.id",_.BILLING_ADDRESS__STATE__NAME="billingAddress.state.name",_.BILLING_ADDRESS__TAX_NUMBER="billingAddress.taxNumber",_.BILLING_ADDRESS__TAX_OFFICE="billingAddress.taxOffice",_.CAMPAIGN_OFFERS__APPLIED_ORDER_LINE_ID="campaignOffers.appliedOrderLineId",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__AVAILABLE_SALES_CHANNEL_IDS="campaignOffers.campaignOffer.availableSalesChannelIds",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__CREATED_AT="campaignOffers.campaignOffer.createdAt",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__CURRENCY_CODES="campaignOffers.campaignOffer.currencyCodes",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__DELETED="campaignOffers.campaignOffer.deleted",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__END_DATE="campaignOffers.campaignOffer.endDate",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__FOLLOW_UP_ACTION_TYPE="campaignOffers.campaignOffer.followUpActionType",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__ID="campaignOffers.campaignOffer.id",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__MINIMUM_REQUIRED_CART_AMOUNT="campaignOffers.campaignOffer.minimumRequiredCartAmount",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__NAME="campaignOffers.campaignOffer.name",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__APPLICABLE_PRICE="campaignOffers.campaignOffer.offers.applicablePrice",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__COUNTDOWN_MINUTES="campaignOffers.campaignOffer.offers.countdownMinutes",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__DESCRIPTION="campaignOffers.campaignOffer.offers.description",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__DISCOUNT_AMOUNT="campaignOffers.campaignOffer.offers.discountAmount",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__DISCOUNT_TYPE="campaignOffers.campaignOffer.offers.discountType",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__EXCLUDED_VARIANT_ID_LIST="campaignOffers.campaignOffer.offers.excludedVariantIdList",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__ID="campaignOffers.campaignOffer.offers.id",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__ORDER="campaignOffers.campaignOffer.offers.order",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__PRODUCT_ID="campaignOffers.campaignOffer.offers.productId",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__SHOW_CRITERIA="campaignOffers.campaignOffer.offers.showCriteria",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__SKIP_OFFER_IF_PRODUCT_EXISTS_IN_CART="campaignOffers.campaignOffer.offers.skipOfferIfProductExistsInCart",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__TITLE="campaignOffers.campaignOffer.offers.title",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__TRANSLATIONS__DESCRIPTION="campaignOffers.campaignOffer.offers.translations.description",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__TRANSLATIONS__LOCALE="campaignOffers.campaignOffer.offers.translations.locale",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__TRANSLATIONS__TITLE="campaignOffers.campaignOffer.offers.translations.title",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__START_DATE="campaignOffers.campaignOffer.startDate",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__TARGET_PAGE_TYPES="campaignOffers.campaignOffer.targetPageTypes",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__TRIGGER_SETTINGS__FILTER_TYPE="campaignOffers.campaignOffer.triggerSettings.filterType",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__TRIGGER_SETTINGS__VALUE_LIST="campaignOffers.campaignOffer.triggerSettings.valueList",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__TYPE="campaignOffers.campaignOffer.type",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__UPDATED_AT="campaignOffers.campaignOffer.updatedAt",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER_ID="campaignOffers.campaignOfferId",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER_PRODUCT_ID="campaignOffers.campaignOfferProductId",_.CAMPAIGN_OFFERS__OFFER_END_DATE="campaignOffers.offerEndDate",_.CAMPAIGN_OFFERS__OFFER_START_DATE="campaignOffers.offerStartDate",_.CAMPAIGN_OFFERS__STATUS="campaignOffers.status",_.CAMPAIGN_OFFERS__TARGET_PAGE_TYPES="campaignOffers.targetPageTypes",_.CAMPAIGN_OFFERS__TRIGGER_SOURCE_ORDER_LINE_ID="campaignOffers.triggerSourceOrderLineId",_.CART_ID="cartId",_.CART_STATUS="cartStatus",_.CHECKOUT_ID="checkoutId",_.CLIENT_IP="clientIp",_.COUPON_CODE="couponCode",_.CREATED_AT="createdAt",_.CREATED_BY="createdBy",_.CURRENCY_CODE="currencyCode",_.CURRENCY_RATES__CODE="currencyRates.code",_.CURRENCY_RATES__ORIGINAL_RATE="currencyRates.originalRate",_.CURRENCY_RATES__RATE="currencyRates.rate",_.CURRENCY_SYMBOL="currencySymbol",_.CUSTOMER__EMAIL="customer.email",_.CUSTOMER__FIRST_NAME="customer.firstName",_.CUSTOMER__FULL_NAME="customer.fullName",_.CUSTOMER__ID="customer.id",_.CUSTOMER__IS_GUEST_CHECKOUT="customer.isGuestCheckout",_.CUSTOMER__LAST_NAME="customer.lastName",_.CUSTOMER__NOTIFICATIONS_ACCEPTED="customer.notificationsAccepted",_.CUSTOMER__PHONE="customer.phone",_.CUSTOMER_ID="customerId",_.DELETED="deleted",_.DUE_DATE="dueDate",_.GIFT_PACKAGE_LINES__PRICE="giftPackageLines.price",_.GIFT_PACKAGE_LINES__TAX_VALUE="giftPackageLines.taxValue",_.GIFT_PACKAGE_NOTE="giftPackageNote",_.HOST="host",_.ID="id",_.IS_GIFT_PACKAGE="isGiftPackage",_.ITEM_COUNT="itemCount",_.MERCHANT_ID="merchantId",_.NOTE="note",_.ORDER_ADJUSTMENTS__AMOUNT="orderAdjustments.amount",_.ORDER_ADJUSTMENTS__AMOUNT_TYPE="orderAdjustments.amountType",_.ORDER_ADJUSTMENTS__APPLIED_ORDER_LINES__AMOUNT="orderAdjustments.appliedOrderLines.amount",_.ORDER_ADJUSTMENTS__APPLIED_ORDER_LINES__APPLIED_QUANTITY="orderAdjustments.appliedOrderLines.appliedQuantity",_.ORDER_ADJUSTMENTS__APPLIED_ORDER_LINES__IS_AUTO_CREATED="orderAdjustments.appliedOrderLines.isAutoCreated",_.ORDER_ADJUSTMENTS__APPLIED_ORDER_LINES__ORDER_LINE_ID="orderAdjustments.appliedOrderLines.orderLineId",_.ORDER_ADJUSTMENTS__CAMPAIGN_ID="orderAdjustments.campaignId",_.ORDER_ADJUSTMENTS__CAMPAIGN_TYPE="orderAdjustments.campaignType",_.ORDER_ADJUSTMENTS__COUPON_ID="orderAdjustments.couponId",_.ORDER_ADJUSTMENTS__NAME="orderAdjustments.name",_.ORDER_ADJUSTMENTS__ORDER="orderAdjustments.order",_.ORDER_ADJUSTMENTS__TYPE="orderAdjustments.type",_.ORDER_LINE_ITEMS__CREATED_AT="orderLineItems.createdAt",_.ORDER_LINE_ITEMS__CURRENCY_CODE="orderLineItems.currencyCode",_.ORDER_LINE_ITEMS__CURRENCY_SYMBOL="orderLineItems.currencySymbol",_.ORDER_LINE_ITEMS__DELETED="orderLineItems.deleted",_.ORDER_LINE_ITEMS__DISCOUNT__AMOUNT="orderLineItems.discount.amount",_.ORDER_LINE_ITEMS__DISCOUNT__AMOUNT_TYPE="orderLineItems.discount.amountType",_.ORDER_LINE_ITEMS__DISCOUNT__CAMPAIGN_OFFER_ID="orderLineItems.discount.campaignOfferId",_.ORDER_LINE_ITEMS__DISCOUNT__CAMPAIGN_OFFER_PRODUCT_ID="orderLineItems.discount.campaignOfferProductId",_.ORDER_LINE_ITEMS__DISCOUNT__MAX_APPLICABLE_QUANTITY="orderLineItems.discount.maxApplicableQuantity",_.ORDER_LINE_ITEMS__DISCOUNT__REASON="orderLineItems.discount.reason",_.ORDER_LINE_ITEMS__DISCOUNT_PRICE="orderLineItems.discountPrice",_.ORDER_LINE_ITEMS__FINAL_PRICE="orderLineItems.finalPrice",_.ORDER_LINE_ITEMS__FINAL_UNIT_PRICE="orderLineItems.finalUnitPrice",_.ORDER_LINE_ITEMS__ID="orderLineItems.id",_.ORDER_LINE_ITEMS__OPTIONS__NAME="orderLineItems.options.name",_.ORDER_LINE_ITEMS__OPTIONS__PRODUCT_OPTION_ID="orderLineItems.options.productOptionId",_.ORDER_LINE_ITEMS__OPTIONS__PRODUCT_OPTIONS_SET_ID="orderLineItems.options.productOptionsSetId",_.ORDER_LINE_ITEMS__OPTIONS__TYPE="orderLineItems.options.type",_.ORDER_LINE_ITEMS__OPTIONS__VALUES__NAME="orderLineItems.options.values.name",_.ORDER_LINE_ITEMS__OPTIONS__VALUES__PRICE="orderLineItems.options.values.price",_.ORDER_LINE_ITEMS__OPTIONS__VALUES__VALUE="orderLineItems.options.values.value",_.ORDER_LINE_ITEMS__ORIGINAL_ORDER_LINE_ITEM_ID="orderLineItems.originalOrderLineItemId",_.ORDER_LINE_ITEMS__PRICE="orderLineItems.price",_.ORDER_LINE_ITEMS__QUANTITY="orderLineItems.quantity",_.ORDER_LINE_ITEMS__STATUS="orderLineItems.status",_.ORDER_LINE_ITEMS__STATUS_UPDATED_AT="orderLineItems.statusUpdatedAt",_.ORDER_LINE_ITEMS__STOCK_LOCATION_ID="orderLineItems.stockLocationId",_.ORDER_LINE_ITEMS__TAX_VALUE="orderLineItems.taxValue",_.ORDER_LINE_ITEMS__UNIT_PRICE="orderLineItems.unitPrice",_.ORDER_LINE_ITEMS__UPDATED_AT="orderLineItems.updatedAt",_.ORDER_LINE_ITEMS__VARIANT__BARCODE_LIST="orderLineItems.variant.barcodeList",_.ORDER_LINE_ITEMS__VARIANT__BASE_UNIT__BASE_AMOUNT="orderLineItems.variant.baseUnit.baseAmount",_.ORDER_LINE_ITEMS__VARIANT__BASE_UNIT__TYPE="orderLineItems.variant.baseUnit.type",_.ORDER_LINE_ITEMS__VARIANT__BASE_UNIT__UNIT__ID="orderLineItems.variant.baseUnit.unit.id",_.ORDER_LINE_ITEMS__VARIANT__BASE_UNIT__UNIT__NAME="orderLineItems.variant.baseUnit.unit.name",_.ORDER_LINE_ITEMS__VARIANT__BRAND__ID="orderLineItems.variant.brand.id",_.ORDER_LINE_ITEMS__VARIANT__BRAND__NAME="orderLineItems.variant.brand.name",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__DELETED="orderLineItems.variant.bundleProducts.deleted",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__DISCOUNT_PRICE="orderLineItems.variant.bundleProducts.discountPrice",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__DISCOUNT_RATIO="orderLineItems.variant.bundleProducts.discountRatio",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__FINAL_PRICE="orderLineItems.variant.bundleProducts.finalPrice",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__ORDER="orderLineItems.variant.bundleProducts.order",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__PRICE="orderLineItems.variant.bundleProducts.price",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__QUANTITY="orderLineItems.variant.bundleProducts.quantity",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__TAX_VALUE="orderLineItems.variant.bundleProducts.taxValue",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__BARCODE_LIST="orderLineItems.variant.bundleProducts.variant.barcodeList",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__BASE_UNIT__BASE_AMOUNT="orderLineItems.variant.bundleProducts.variant.baseUnit.baseAmount",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__BASE_UNIT__TYPE="orderLineItems.variant.bundleProducts.variant.baseUnit.type",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__BASE_UNIT__UNIT__ID="orderLineItems.variant.bundleProducts.variant.baseUnit.unit.id",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__BASE_UNIT__UNIT__NAME="orderLineItems.variant.bundleProducts.variant.baseUnit.unit.name",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__BRAND__ID="orderLineItems.variant.bundleProducts.variant.brand.id",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__BRAND__NAME="orderLineItems.variant.bundleProducts.variant.brand.name",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__CATEGORIES__CATEGORY_PATH__ID="orderLineItems.variant.bundleProducts.variant.categories.categoryPath.id",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__CATEGORIES__CATEGORY_PATH__NAME="orderLineItems.variant.bundleProducts.variant.categories.categoryPath.name",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__CATEGORIES__ID="orderLineItems.variant.bundleProducts.variant.categories.id",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__CATEGORIES__NAME="orderLineItems.variant.bundleProducts.variant.categories.name",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__FILE_ID="orderLineItems.variant.bundleProducts.variant.fileId",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__HS_CODE="orderLineItems.variant.bundleProducts.variant.hsCode",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__ID="orderLineItems.variant.bundleProducts.variant.id",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__MAIN_IMAGE_ID="orderLineItems.variant.bundleProducts.variant.mainImageId",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__NAME="orderLineItems.variant.bundleProducts.variant.name",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__PRICES__BUY_PRICE="orderLineItems.variant.bundleProducts.variant.prices.buyPrice",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__PRICES__CURRENCY="orderLineItems.variant.bundleProducts.variant.prices.currency",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__PRICES__CURRENCY_SYMBOL="orderLineItems.variant.bundleProducts.variant.prices.currencySymbol",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__PRICES__DISCOUNT_PRICE="orderLineItems.variant.bundleProducts.variant.prices.discountPrice",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__PRICES__PRICE_LIST_ID="orderLineItems.variant.bundleProducts.variant.prices.priceListId",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__PRICES__SELL_PRICE="orderLineItems.variant.bundleProducts.variant.prices.sellPrice",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__PRICES__UNIT_PRICE="orderLineItems.variant.bundleProducts.variant.prices.unitPrice",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__PRODUCT_ID="orderLineItems.variant.bundleProducts.variant.productId",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__SKU="orderLineItems.variant.bundleProducts.variant.sku",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__SLUG="orderLineItems.variant.bundleProducts.variant.slug",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__TAG_IDS="orderLineItems.variant.bundleProducts.variant.tagIds",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__TAGS__ID="orderLineItems.variant.bundleProducts.variant.tags.id",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__TAGS__NAME="orderLineItems.variant.bundleProducts.variant.tags.name",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__TAX_VALUE="orderLineItems.variant.bundleProducts.variant.taxValue",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__TYPE="orderLineItems.variant.bundleProducts.variant.type",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__UNIT__AMOUNT="orderLineItems.variant.bundleProducts.variant.unit.amount",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__UNIT__TYPE="orderLineItems.variant.bundleProducts.variant.unit.type",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__VARIANT_VALUES__ORDER="orderLineItems.variant.bundleProducts.variant.variantValues.order",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__VARIANT_VALUES__VARIANT_TYPE_ID="orderLineItems.variant.bundleProducts.variant.variantValues.variantTypeId",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__VARIANT_VALUES__VARIANT_TYPE_NAME="orderLineItems.variant.bundleProducts.variant.variantValues.variantTypeName",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__VARIANT_VALUES__VARIANT_VALUE_ID="orderLineItems.variant.bundleProducts.variant.variantValues.variantValueId",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__VARIANT_VALUES__VARIANT_VALUE_NAME="orderLineItems.variant.bundleProducts.variant.variantValues.variantValueName",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__WEIGHT="orderLineItems.variant.bundleProducts.variant.weight",_.ORDER_LINE_ITEMS__VARIANT__CATEGORIES__CATEGORY_PATH__ID="orderLineItems.variant.categories.categoryPath.id",_.ORDER_LINE_ITEMS__VARIANT__CATEGORIES__CATEGORY_PATH__NAME="orderLineItems.variant.categories.categoryPath.name",_.ORDER_LINE_ITEMS__VARIANT__CATEGORIES__ID="orderLineItems.variant.categories.id",_.ORDER_LINE_ITEMS__VARIANT__CATEGORIES__NAME="orderLineItems.variant.categories.name",_.ORDER_LINE_ITEMS__VARIANT__FILE_ID="orderLineItems.variant.fileId",_.ORDER_LINE_ITEMS__VARIANT__HS_CODE="orderLineItems.variant.hsCode",_.ORDER_LINE_ITEMS__VARIANT__ID="orderLineItems.variant.id",_.ORDER_LINE_ITEMS__VARIANT__MAIN_IMAGE_ID="orderLineItems.variant.mainImageId",_.ORDER_LINE_ITEMS__VARIANT__NAME="orderLineItems.variant.name",_.ORDER_LINE_ITEMS__VARIANT__PRICES__BUY_PRICE="orderLineItems.variant.prices.buyPrice",_.ORDER_LINE_ITEMS__VARIANT__PRICES__CURRENCY="orderLineItems.variant.prices.currency",_.ORDER_LINE_ITEMS__VARIANT__PRICES__CURRENCY_SYMBOL="orderLineItems.variant.prices.currencySymbol",_.ORDER_LINE_ITEMS__VARIANT__PRICES__DISCOUNT_PRICE="orderLineItems.variant.prices.discountPrice",_.ORDER_LINE_ITEMS__VARIANT__PRICES__PRICE_LIST_ID="orderLineItems.variant.prices.priceListId",_.ORDER_LINE_ITEMS__VARIANT__PRICES__SELL_PRICE="orderLineItems.variant.prices.sellPrice",_.ORDER_LINE_ITEMS__VARIANT__PRICES__UNIT_PRICE="orderLineItems.variant.prices.unitPrice",_.ORDER_LINE_ITEMS__VARIANT__PRODUCT_ID="orderLineItems.variant.productId",_.ORDER_LINE_ITEMS__VARIANT__SKU="orderLineItems.variant.sku",_.ORDER_LINE_ITEMS__VARIANT__SLUG="orderLineItems.variant.slug",_.ORDER_LINE_ITEMS__VARIANT__TAG_IDS="orderLineItems.variant.tagIds",_.ORDER_LINE_ITEMS__VARIANT__TAGS__ID="orderLineItems.variant.tags.id",_.ORDER_LINE_ITEMS__VARIANT__TAGS__NAME="orderLineItems.variant.tags.name",_.ORDER_LINE_ITEMS__VARIANT__TAX_VALUE="orderLineItems.variant.taxValue",_.ORDER_LINE_ITEMS__VARIANT__TYPE="orderLineItems.variant.type",_.ORDER_LINE_ITEMS__VARIANT__UNIT__AMOUNT="orderLineItems.variant.unit.amount",_.ORDER_LINE_ITEMS__VARIANT__UNIT__TYPE="orderLineItems.variant.unit.type",_.ORDER_LINE_ITEMS__VARIANT__VARIANT_VALUES__ORDER="orderLineItems.variant.variantValues.order",_.ORDER_LINE_ITEMS__VARIANT__VARIANT_VALUES__VARIANT_TYPE_ID="orderLineItems.variant.variantValues.variantTypeId",_.ORDER_LINE_ITEMS__VARIANT__VARIANT_VALUES__VARIANT_TYPE_NAME="orderLineItems.variant.variantValues.variantTypeName",_.ORDER_LINE_ITEMS__VARIANT__VARIANT_VALUES__VARIANT_VALUE_ID="orderLineItems.variant.variantValues.variantValueId",_.ORDER_LINE_ITEMS__VARIANT__VARIANT_VALUES__VARIANT_VALUE_NAME="orderLineItems.variant.variantValues.variantValueName",_.ORDER_LINE_ITEMS__VARIANT__WEIGHT="orderLineItems.variant.weight",_.ORDER_NUMBER="orderNumber",_.ORDER_PACKAGE_STATUS="orderPackageStatus",_.ORDERED_AT="orderedAt",_.PRICE_LIST_ID="priceListId",_.RECOVER_EMAIL_STATUS="recoverEmailStatus",_.RECOVERY_STATUS="recoveryStatus",_.SALES_CHANNEL_ID="salesChannelId",_.SESSION_INFO__COUNTRY_CODE="sessionInfo.countryCode",_.SESSION_INFO__DURATION_M_S="sessionInfo.durationMS",_.SESSION_INFO__END="sessionInfo.end",_.SESSION_INFO__HOST="sessionInfo.host",_.SESSION_INFO__IP="sessionInfo.ip",_.SESSION_INFO__REFERER="sessionInfo.referer",_.SESSION_INFO__SALES_CHANNEL_ID="sessionInfo.salesChannelId",_.SESSION_INFO__SESSION_ID="sessionInfo.sessionId",_.SESSION_INFO__START="sessionInfo.start",_.SESSION_INFO__STOREFRONT_ID="sessionInfo.storefrontId",_.SESSION_INFO__TRAFFIC_SOURCE__SOURCE="sessionInfo.trafficSource.source",_.SESSION_INFO__TRAFFIC_SOURCE__TYPE="sessionInfo.trafficSource.type",_.SESSION_INFO__USER_AGENT__DEVICE_TYPE="sessionInfo.userAgent.deviceType",_.SESSION_INFO__USER_AGENT__NAME="sessionInfo.userAgent.name",_.SESSION_INFO__USER_AGENT__OS="sessionInfo.userAgent.os",_.SESSION_INFO__UTM__CAMPAIGN="sessionInfo.utm.campaign",_.SESSION_INFO__UTM__CONTENT="sessionInfo.utm.content",_.SESSION_INFO__UTM__MEDIUM="sessionInfo.utm.medium",_.SESSION_INFO__UTM__SOURCE="sessionInfo.utm.source",_.SESSION_INFO__UTM__TERM="sessionInfo.utm.term",_.SESSION_INFO__VISITOR_ID="sessionInfo.visitorId",_.SHIPPING_ADDRESS__ADDRESS_LINE1="shippingAddress.addressLine1",_.SHIPPING_ADDRESS__ADDRESS_LINE2="shippingAddress.addressLine2",_.SHIPPING_ADDRESS__CITY__CODE="shippingAddress.city.code",_.SHIPPING_ADDRESS__CITY__ID="shippingAddress.city.id",_.SHIPPING_ADDRESS__CITY__NAME="shippingAddress.city.name",_.SHIPPING_ADDRESS__COMPANY="shippingAddress.company",_.SHIPPING_ADDRESS__COUNTRY__CODE="shippingAddress.country.code",_.SHIPPING_ADDRESS__COUNTRY__ID="shippingAddress.country.id",_.SHIPPING_ADDRESS__COUNTRY__ISO2="shippingAddress.country.iso2",_.SHIPPING_ADDRESS__COUNTRY__ISO3="shippingAddress.country.iso3",_.SHIPPING_ADDRESS__COUNTRY__NAME="shippingAddress.country.name",_.SHIPPING_ADDRESS__DISTRICT__CODE="shippingAddress.district.code",_.SHIPPING_ADDRESS__DISTRICT__ID="shippingAddress.district.id",_.SHIPPING_ADDRESS__DISTRICT__NAME="shippingAddress.district.name",_.SHIPPING_ADDRESS__FIRST_NAME="shippingAddress.firstName",_.SHIPPING_ADDRESS__ID="shippingAddress.id",_.SHIPPING_ADDRESS__IDENTITY_NUMBER="shippingAddress.identityNumber",_.SHIPPING_ADDRESS__IS_DEFAULT="shippingAddress.isDefault",_.SHIPPING_ADDRESS__LAST_NAME="shippingAddress.lastName",_.SHIPPING_ADDRESS__PHONE="shippingAddress.phone",_.SHIPPING_ADDRESS__POSTAL_CODE="shippingAddress.postalCode",_.SHIPPING_ADDRESS__REGION__CREATED_AT="shippingAddress.region.createdAt",_.SHIPPING_ADDRESS__REGION__DELETED="shippingAddress.region.deleted",_.SHIPPING_ADDRESS__REGION__ID="shippingAddress.region.id",_.SHIPPING_ADDRESS__REGION__NAME="shippingAddress.region.name",_.SHIPPING_ADDRESS__REGION__UPDATED_AT="shippingAddress.region.updatedAt",_.SHIPPING_ADDRESS__STATE__CODE="shippingAddress.state.code",_.SHIPPING_ADDRESS__STATE__ID="shippingAddress.state.id",_.SHIPPING_ADDRESS__STATE__NAME="shippingAddress.state.name",_.SHIPPING_ADDRESS__TAX_NUMBER="shippingAddress.taxNumber",_.SHIPPING_ADDRESS__TAX_OFFICE="shippingAddress.taxOffice",_.SHIPPING_LINES__FINAL_PRICE="shippingLines.finalPrice",_.SHIPPING_LINES__IS_REFUNDED="shippingLines.isRefunded",_.SHIPPING_LINES__PAYMENT_METHOD="shippingLines.paymentMethod",_.SHIPPING_LINES__PRICE="shippingLines.price",_.SHIPPING_LINES__SHIPPING_SETTINGS_ID="shippingLines.shippingSettingsId",_.SHIPPING_LINES__SHIPPING_ZONE_RATE_ID="shippingLines.shippingZoneRateId",_.SHIPPING_LINES__TAX_VALUE="shippingLines.taxValue",_.SHIPPING_LINES__TITLE="shippingLines.title",_.SHIPPING_METHOD="shippingMethod",_.SHIPPING_SETTINGS_ID="shippingSettingsId",_.SHIPPING_ZONE_RATE_ID="shippingZoneRateId",_.STATUS="status",_.STOCK_LOCATION_ID="stockLocationId",_.STOREFRONT_ID="storefrontId",_.STOREFRONT_ROUTING__DOMAIN="storefrontRouting.domain",_.STOREFRONT_ROUTING__DYNAMIC_CURRENCY_SETTINGS__ROUNDING_FORMAT="storefrontRouting.dynamicCurrencySettings.roundingFormat",_.STOREFRONT_ROUTING__DYNAMIC_CURRENCY_SETTINGS__TARGET_CURRENCY_CODE="storefrontRouting.dynamicCurrencySettings.targetCurrencyCode",_.STOREFRONT_ROUTING__ID="storefrontRouting.id",_.STOREFRONT_ROUTING__LOCALE="storefrontRouting.locale",_.STOREFRONT_ROUTING__PATH="storefrontRouting.path",_.STOREFRONT_ROUTING__PRICE_LIST_ID="storefrontRouting.priceListId",_.STOREFRONT_ROUTING_ID="storefrontRoutingId",_.STOREFRONT_THEME_ID="storefrontThemeId",_.TAX_LINES__PRICE="taxLines.price",_.TAX_LINES__RATE="taxLines.rate",_.TOTAL_FINAL_PRICE="totalFinalPrice",_.TOTAL_PRICE="totalPrice",_.UPDATED_AT="updatedAt",_.USER_AGENT="userAgent"}(i||(i={}));export{i as ResponseField,E as default};
1
+ import{__awaiter as _,__generator as e}from'./../../ext/tslib/tslib.es6.js';import{handleAPIError as I,APIResponse as t,fetchQuery as r}from"@ikas/fe-api-client";var i,E=function(i,E,n){return _(void 0,void 0,void 0,(function(){var _,A,R,s;return e(this,(function(e){switch(e.label){case 0:return e.trys.push([0,2,,3]),[4,r({operationName:"addItemToCart",config:n,variables:i,allReturnFields:a,fields:E,query:function(_){return"\n\t\t\t\tmutation addItemToCart (\n\t\t\t\t\t$input: AddItemToCartInput!,\n\t\t\t\t) {\n\t\t\t\t\taddItemToCart (\n\t\t\t\t\t\tinput: $input,\n\t\t\t\t\t) ".concat(_,"\n\t\t\t\t}\n\t\t\t")}})];case 1:return _=e.sent(),A=_.data,R=_.errors,[2,new t(null==A?void 0:A.addItemToCart,R)];case 2:return s=e.sent(),[2,I(s)];case 3:return[2]}}))}))},a="{abandonedCartFlows {authorizedAppId campaignId canApplicable couponId customerFilters {sendOnlyActiveAccount sendOnlySubscribedToEmail } flowId mailSendDate mailTranslationId messageType recoverEmailStatus sendAfter smsTranslationId } attributes {orderAttributeId orderAttributeOptionId value } availableShippingMethods {estimatedDeliveryTime {type value } price rateName shippingMethod shippingSettingsId shippingZoneRateId } billingAddress {addressLine1 addressLine2 city {code id name } company country {code id iso2 iso3 name } district {code id name } firstName id identityNumber isDefault lastName phone postalCode region {createdAt deleted id name updatedAt } state {code id name } taxNumber taxOffice } campaignOffers {appliedOrderLineId campaignOffer {availableSalesChannelIds createdAt currencyCodes deleted endDate followUpActionType id minimumRequiredCartAmount name offers {applicablePrice countdownMinutes description discountAmount discountType excludedVariantIdList id order productId showCriteria skipOfferIfProductExistsInCart title translations {description locale title } } startDate targetPageTypes triggerSettings {filterType valueList } type updatedAt } campaignOfferId campaignOfferProductId offerEndDate offerStartDate status targetPageTypes triggerSourceOrderLineId } cartId cartStatus checkoutId clientIp couponCode createdAt createdBy currencyCode currencyRates {code originalRate rate } currencySymbol customer {email firstName fullName id isGuestCheckout lastName notificationsAccepted phone } customerId deleted dueDate giftPackageLines {price taxValue } giftPackageNote host id isGiftPackage itemCount merchantId note orderAdjustments {amount amountType appliedOrderLines {amount appliedQuantity isAutoCreated orderLineId } campaignId campaignType couponId name order type } orderLineItems {createdAt currencyCode currencySymbol deleted discount {amount amountType campaignOfferId campaignOfferProductId maxApplicableQuantity reason } discountPrice finalPrice finalUnitPrice id options {name productOptionId productOptionsSetId type values {name price value } } originalOrderLineItemId price quantity status statusUpdatedAt stockLocationId taxValue unitPrice updatedAt variant {barcodeList baseUnit {baseAmount type unit {id name } } brand {id name } bundleProducts {deleted discountPrice discountRatio finalPrice order price quantity taxValue variant {barcodeList baseUnit {baseAmount type unit {id name } } brand {id name } categories {categoryPath {id name } id name } fileId hsCode id mainImageId name prices {buyPrice currency currencySymbol discountPrice priceListId sellPrice unitPrice } productId sku slug tagIds tags {id name } taxValue type unit {amount type } variantValues {order variantTypeId variantTypeName variantValueId variantValueName } weight } } categories {categoryPath {id name } id name } fileId hsCode id mainImageId name prices {buyPrice currency currencySymbol discountPrice priceListId sellPrice unitPrice } productId sku slug tagIds tags {id name } taxValue type unit {amount type } variantValues {order variantTypeId variantTypeName variantValueId variantValueName } weight } } orderNumber orderPackageStatus orderPaymentStatus orderedAt priceListId recoverEmailStatus recoveryStatus salesChannelId sessionInfo {countryCode durationMS end host ip referer salesChannelId sessionId start storefrontId trafficSource {source type } userAgent {deviceType name os } utm {campaign content medium source term } visitorId } shippingAddress {addressLine1 addressLine2 city {code id name } company country {code id iso2 iso3 name } district {code id name } firstName id identityNumber isDefault lastName phone postalCode region {createdAt deleted id name updatedAt } state {code id name } taxNumber taxOffice } shippingLines {finalPrice isRefunded paymentMethod price shippingSettingsId shippingZoneRateId taxValue title } shippingMethod shippingSettingsId shippingZoneRateId status stockLocationId storefrontId storefrontRouting {domain dynamicCurrencySettings {roundingFormat targetCurrencyCode } id locale path priceListId } storefrontRoutingId storefrontThemeId taxLines {price rate } totalFinalPrice totalPrice updatedAt userAgent }";!function(_){_.ABANDONED_CART_FLOWS__AUTHORIZED_APP_ID="abandonedCartFlows.authorizedAppId",_.ABANDONED_CART_FLOWS__CAMPAIGN_ID="abandonedCartFlows.campaignId",_.ABANDONED_CART_FLOWS__CAN_APPLICABLE="abandonedCartFlows.canApplicable",_.ABANDONED_CART_FLOWS__COUPON_ID="abandonedCartFlows.couponId",_.ABANDONED_CART_FLOWS__CUSTOMER_FILTERS__SEND_ONLY_ACTIVE_ACCOUNT="abandonedCartFlows.customerFilters.sendOnlyActiveAccount",_.ABANDONED_CART_FLOWS__CUSTOMER_FILTERS__SEND_ONLY_SUBSCRIBED_TO_EMAIL="abandonedCartFlows.customerFilters.sendOnlySubscribedToEmail",_.ABANDONED_CART_FLOWS__FLOW_ID="abandonedCartFlows.flowId",_.ABANDONED_CART_FLOWS__MAIL_SEND_DATE="abandonedCartFlows.mailSendDate",_.ABANDONED_CART_FLOWS__MAIL_TRANSLATION_ID="abandonedCartFlows.mailTranslationId",_.ABANDONED_CART_FLOWS__MESSAGE_TYPE="abandonedCartFlows.messageType",_.ABANDONED_CART_FLOWS__RECOVER_EMAIL_STATUS="abandonedCartFlows.recoverEmailStatus",_.ABANDONED_CART_FLOWS__SEND_AFTER="abandonedCartFlows.sendAfter",_.ABANDONED_CART_FLOWS__SMS_TRANSLATION_ID="abandonedCartFlows.smsTranslationId",_.ATTRIBUTES__ORDER_ATTRIBUTE_ID="attributes.orderAttributeId",_.ATTRIBUTES__ORDER_ATTRIBUTE_OPTION_ID="attributes.orderAttributeOptionId",_.ATTRIBUTES__VALUE="attributes.value",_.AVAILABLE_SHIPPING_METHODS__ESTIMATED_DELIVERY_TIME__TYPE="availableShippingMethods.estimatedDeliveryTime.type",_.AVAILABLE_SHIPPING_METHODS__ESTIMATED_DELIVERY_TIME__VALUE="availableShippingMethods.estimatedDeliveryTime.value",_.AVAILABLE_SHIPPING_METHODS__PRICE="availableShippingMethods.price",_.AVAILABLE_SHIPPING_METHODS__RATE_NAME="availableShippingMethods.rateName",_.AVAILABLE_SHIPPING_METHODS__SHIPPING_METHOD="availableShippingMethods.shippingMethod",_.AVAILABLE_SHIPPING_METHODS__SHIPPING_SETTINGS_ID="availableShippingMethods.shippingSettingsId",_.AVAILABLE_SHIPPING_METHODS__SHIPPING_ZONE_RATE_ID="availableShippingMethods.shippingZoneRateId",_.BILLING_ADDRESS__ADDRESS_LINE1="billingAddress.addressLine1",_.BILLING_ADDRESS__ADDRESS_LINE2="billingAddress.addressLine2",_.BILLING_ADDRESS__CITY__CODE="billingAddress.city.code",_.BILLING_ADDRESS__CITY__ID="billingAddress.city.id",_.BILLING_ADDRESS__CITY__NAME="billingAddress.city.name",_.BILLING_ADDRESS__COMPANY="billingAddress.company",_.BILLING_ADDRESS__COUNTRY__CODE="billingAddress.country.code",_.BILLING_ADDRESS__COUNTRY__ID="billingAddress.country.id",_.BILLING_ADDRESS__COUNTRY__ISO2="billingAddress.country.iso2",_.BILLING_ADDRESS__COUNTRY__ISO3="billingAddress.country.iso3",_.BILLING_ADDRESS__COUNTRY__NAME="billingAddress.country.name",_.BILLING_ADDRESS__DISTRICT__CODE="billingAddress.district.code",_.BILLING_ADDRESS__DISTRICT__ID="billingAddress.district.id",_.BILLING_ADDRESS__DISTRICT__NAME="billingAddress.district.name",_.BILLING_ADDRESS__FIRST_NAME="billingAddress.firstName",_.BILLING_ADDRESS__ID="billingAddress.id",_.BILLING_ADDRESS__IDENTITY_NUMBER="billingAddress.identityNumber",_.BILLING_ADDRESS__IS_DEFAULT="billingAddress.isDefault",_.BILLING_ADDRESS__LAST_NAME="billingAddress.lastName",_.BILLING_ADDRESS__PHONE="billingAddress.phone",_.BILLING_ADDRESS__POSTAL_CODE="billingAddress.postalCode",_.BILLING_ADDRESS__REGION__CREATED_AT="billingAddress.region.createdAt",_.BILLING_ADDRESS__REGION__DELETED="billingAddress.region.deleted",_.BILLING_ADDRESS__REGION__ID="billingAddress.region.id",_.BILLING_ADDRESS__REGION__NAME="billingAddress.region.name",_.BILLING_ADDRESS__REGION__UPDATED_AT="billingAddress.region.updatedAt",_.BILLING_ADDRESS__STATE__CODE="billingAddress.state.code",_.BILLING_ADDRESS__STATE__ID="billingAddress.state.id",_.BILLING_ADDRESS__STATE__NAME="billingAddress.state.name",_.BILLING_ADDRESS__TAX_NUMBER="billingAddress.taxNumber",_.BILLING_ADDRESS__TAX_OFFICE="billingAddress.taxOffice",_.CAMPAIGN_OFFERS__APPLIED_ORDER_LINE_ID="campaignOffers.appliedOrderLineId",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__AVAILABLE_SALES_CHANNEL_IDS="campaignOffers.campaignOffer.availableSalesChannelIds",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__CREATED_AT="campaignOffers.campaignOffer.createdAt",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__CURRENCY_CODES="campaignOffers.campaignOffer.currencyCodes",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__DELETED="campaignOffers.campaignOffer.deleted",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__END_DATE="campaignOffers.campaignOffer.endDate",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__FOLLOW_UP_ACTION_TYPE="campaignOffers.campaignOffer.followUpActionType",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__ID="campaignOffers.campaignOffer.id",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__MINIMUM_REQUIRED_CART_AMOUNT="campaignOffers.campaignOffer.minimumRequiredCartAmount",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__NAME="campaignOffers.campaignOffer.name",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__APPLICABLE_PRICE="campaignOffers.campaignOffer.offers.applicablePrice",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__COUNTDOWN_MINUTES="campaignOffers.campaignOffer.offers.countdownMinutes",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__DESCRIPTION="campaignOffers.campaignOffer.offers.description",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__DISCOUNT_AMOUNT="campaignOffers.campaignOffer.offers.discountAmount",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__DISCOUNT_TYPE="campaignOffers.campaignOffer.offers.discountType",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__EXCLUDED_VARIANT_ID_LIST="campaignOffers.campaignOffer.offers.excludedVariantIdList",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__ID="campaignOffers.campaignOffer.offers.id",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__ORDER="campaignOffers.campaignOffer.offers.order",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__PRODUCT_ID="campaignOffers.campaignOffer.offers.productId",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__SHOW_CRITERIA="campaignOffers.campaignOffer.offers.showCriteria",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__SKIP_OFFER_IF_PRODUCT_EXISTS_IN_CART="campaignOffers.campaignOffer.offers.skipOfferIfProductExistsInCart",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__TITLE="campaignOffers.campaignOffer.offers.title",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__TRANSLATIONS__DESCRIPTION="campaignOffers.campaignOffer.offers.translations.description",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__TRANSLATIONS__LOCALE="campaignOffers.campaignOffer.offers.translations.locale",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__OFFERS__TRANSLATIONS__TITLE="campaignOffers.campaignOffer.offers.translations.title",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__START_DATE="campaignOffers.campaignOffer.startDate",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__TARGET_PAGE_TYPES="campaignOffers.campaignOffer.targetPageTypes",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__TRIGGER_SETTINGS__FILTER_TYPE="campaignOffers.campaignOffer.triggerSettings.filterType",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__TRIGGER_SETTINGS__VALUE_LIST="campaignOffers.campaignOffer.triggerSettings.valueList",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__TYPE="campaignOffers.campaignOffer.type",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER__UPDATED_AT="campaignOffers.campaignOffer.updatedAt",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER_ID="campaignOffers.campaignOfferId",_.CAMPAIGN_OFFERS__CAMPAIGN_OFFER_PRODUCT_ID="campaignOffers.campaignOfferProductId",_.CAMPAIGN_OFFERS__OFFER_END_DATE="campaignOffers.offerEndDate",_.CAMPAIGN_OFFERS__OFFER_START_DATE="campaignOffers.offerStartDate",_.CAMPAIGN_OFFERS__STATUS="campaignOffers.status",_.CAMPAIGN_OFFERS__TARGET_PAGE_TYPES="campaignOffers.targetPageTypes",_.CAMPAIGN_OFFERS__TRIGGER_SOURCE_ORDER_LINE_ID="campaignOffers.triggerSourceOrderLineId",_.CART_ID="cartId",_.CART_STATUS="cartStatus",_.CHECKOUT_ID="checkoutId",_.CLIENT_IP="clientIp",_.COUPON_CODE="couponCode",_.CREATED_AT="createdAt",_.CREATED_BY="createdBy",_.CURRENCY_CODE="currencyCode",_.CURRENCY_RATES__CODE="currencyRates.code",_.CURRENCY_RATES__ORIGINAL_RATE="currencyRates.originalRate",_.CURRENCY_RATES__RATE="currencyRates.rate",_.CURRENCY_SYMBOL="currencySymbol",_.CUSTOMER__EMAIL="customer.email",_.CUSTOMER__FIRST_NAME="customer.firstName",_.CUSTOMER__FULL_NAME="customer.fullName",_.CUSTOMER__ID="customer.id",_.CUSTOMER__IS_GUEST_CHECKOUT="customer.isGuestCheckout",_.CUSTOMER__LAST_NAME="customer.lastName",_.CUSTOMER__NOTIFICATIONS_ACCEPTED="customer.notificationsAccepted",_.CUSTOMER__PHONE="customer.phone",_.CUSTOMER_ID="customerId",_.DELETED="deleted",_.DUE_DATE="dueDate",_.GIFT_PACKAGE_LINES__PRICE="giftPackageLines.price",_.GIFT_PACKAGE_LINES__TAX_VALUE="giftPackageLines.taxValue",_.GIFT_PACKAGE_NOTE="giftPackageNote",_.HOST="host",_.ID="id",_.IS_GIFT_PACKAGE="isGiftPackage",_.ITEM_COUNT="itemCount",_.MERCHANT_ID="merchantId",_.NOTE="note",_.ORDER_ADJUSTMENTS__AMOUNT="orderAdjustments.amount",_.ORDER_ADJUSTMENTS__AMOUNT_TYPE="orderAdjustments.amountType",_.ORDER_ADJUSTMENTS__APPLIED_ORDER_LINES__AMOUNT="orderAdjustments.appliedOrderLines.amount",_.ORDER_ADJUSTMENTS__APPLIED_ORDER_LINES__APPLIED_QUANTITY="orderAdjustments.appliedOrderLines.appliedQuantity",_.ORDER_ADJUSTMENTS__APPLIED_ORDER_LINES__IS_AUTO_CREATED="orderAdjustments.appliedOrderLines.isAutoCreated",_.ORDER_ADJUSTMENTS__APPLIED_ORDER_LINES__ORDER_LINE_ID="orderAdjustments.appliedOrderLines.orderLineId",_.ORDER_ADJUSTMENTS__CAMPAIGN_ID="orderAdjustments.campaignId",_.ORDER_ADJUSTMENTS__CAMPAIGN_TYPE="orderAdjustments.campaignType",_.ORDER_ADJUSTMENTS__COUPON_ID="orderAdjustments.couponId",_.ORDER_ADJUSTMENTS__NAME="orderAdjustments.name",_.ORDER_ADJUSTMENTS__ORDER="orderAdjustments.order",_.ORDER_ADJUSTMENTS__TYPE="orderAdjustments.type",_.ORDER_LINE_ITEMS__CREATED_AT="orderLineItems.createdAt",_.ORDER_LINE_ITEMS__CURRENCY_CODE="orderLineItems.currencyCode",_.ORDER_LINE_ITEMS__CURRENCY_SYMBOL="orderLineItems.currencySymbol",_.ORDER_LINE_ITEMS__DELETED="orderLineItems.deleted",_.ORDER_LINE_ITEMS__DISCOUNT__AMOUNT="orderLineItems.discount.amount",_.ORDER_LINE_ITEMS__DISCOUNT__AMOUNT_TYPE="orderLineItems.discount.amountType",_.ORDER_LINE_ITEMS__DISCOUNT__CAMPAIGN_OFFER_ID="orderLineItems.discount.campaignOfferId",_.ORDER_LINE_ITEMS__DISCOUNT__CAMPAIGN_OFFER_PRODUCT_ID="orderLineItems.discount.campaignOfferProductId",_.ORDER_LINE_ITEMS__DISCOUNT__MAX_APPLICABLE_QUANTITY="orderLineItems.discount.maxApplicableQuantity",_.ORDER_LINE_ITEMS__DISCOUNT__REASON="orderLineItems.discount.reason",_.ORDER_LINE_ITEMS__DISCOUNT_PRICE="orderLineItems.discountPrice",_.ORDER_LINE_ITEMS__FINAL_PRICE="orderLineItems.finalPrice",_.ORDER_LINE_ITEMS__FINAL_UNIT_PRICE="orderLineItems.finalUnitPrice",_.ORDER_LINE_ITEMS__ID="orderLineItems.id",_.ORDER_LINE_ITEMS__OPTIONS__NAME="orderLineItems.options.name",_.ORDER_LINE_ITEMS__OPTIONS__PRODUCT_OPTION_ID="orderLineItems.options.productOptionId",_.ORDER_LINE_ITEMS__OPTIONS__PRODUCT_OPTIONS_SET_ID="orderLineItems.options.productOptionsSetId",_.ORDER_LINE_ITEMS__OPTIONS__TYPE="orderLineItems.options.type",_.ORDER_LINE_ITEMS__OPTIONS__VALUES__NAME="orderLineItems.options.values.name",_.ORDER_LINE_ITEMS__OPTIONS__VALUES__PRICE="orderLineItems.options.values.price",_.ORDER_LINE_ITEMS__OPTIONS__VALUES__VALUE="orderLineItems.options.values.value",_.ORDER_LINE_ITEMS__ORIGINAL_ORDER_LINE_ITEM_ID="orderLineItems.originalOrderLineItemId",_.ORDER_LINE_ITEMS__PRICE="orderLineItems.price",_.ORDER_LINE_ITEMS__QUANTITY="orderLineItems.quantity",_.ORDER_LINE_ITEMS__STATUS="orderLineItems.status",_.ORDER_LINE_ITEMS__STATUS_UPDATED_AT="orderLineItems.statusUpdatedAt",_.ORDER_LINE_ITEMS__STOCK_LOCATION_ID="orderLineItems.stockLocationId",_.ORDER_LINE_ITEMS__TAX_VALUE="orderLineItems.taxValue",_.ORDER_LINE_ITEMS__UNIT_PRICE="orderLineItems.unitPrice",_.ORDER_LINE_ITEMS__UPDATED_AT="orderLineItems.updatedAt",_.ORDER_LINE_ITEMS__VARIANT__BARCODE_LIST="orderLineItems.variant.barcodeList",_.ORDER_LINE_ITEMS__VARIANT__BASE_UNIT__BASE_AMOUNT="orderLineItems.variant.baseUnit.baseAmount",_.ORDER_LINE_ITEMS__VARIANT__BASE_UNIT__TYPE="orderLineItems.variant.baseUnit.type",_.ORDER_LINE_ITEMS__VARIANT__BASE_UNIT__UNIT__ID="orderLineItems.variant.baseUnit.unit.id",_.ORDER_LINE_ITEMS__VARIANT__BASE_UNIT__UNIT__NAME="orderLineItems.variant.baseUnit.unit.name",_.ORDER_LINE_ITEMS__VARIANT__BRAND__ID="orderLineItems.variant.brand.id",_.ORDER_LINE_ITEMS__VARIANT__BRAND__NAME="orderLineItems.variant.brand.name",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__DELETED="orderLineItems.variant.bundleProducts.deleted",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__DISCOUNT_PRICE="orderLineItems.variant.bundleProducts.discountPrice",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__DISCOUNT_RATIO="orderLineItems.variant.bundleProducts.discountRatio",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__FINAL_PRICE="orderLineItems.variant.bundleProducts.finalPrice",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__ORDER="orderLineItems.variant.bundleProducts.order",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__PRICE="orderLineItems.variant.bundleProducts.price",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__QUANTITY="orderLineItems.variant.bundleProducts.quantity",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__TAX_VALUE="orderLineItems.variant.bundleProducts.taxValue",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__BARCODE_LIST="orderLineItems.variant.bundleProducts.variant.barcodeList",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__BASE_UNIT__BASE_AMOUNT="orderLineItems.variant.bundleProducts.variant.baseUnit.baseAmount",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__BASE_UNIT__TYPE="orderLineItems.variant.bundleProducts.variant.baseUnit.type",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__BASE_UNIT__UNIT__ID="orderLineItems.variant.bundleProducts.variant.baseUnit.unit.id",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__BASE_UNIT__UNIT__NAME="orderLineItems.variant.bundleProducts.variant.baseUnit.unit.name",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__BRAND__ID="orderLineItems.variant.bundleProducts.variant.brand.id",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__BRAND__NAME="orderLineItems.variant.bundleProducts.variant.brand.name",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__CATEGORIES__CATEGORY_PATH__ID="orderLineItems.variant.bundleProducts.variant.categories.categoryPath.id",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__CATEGORIES__CATEGORY_PATH__NAME="orderLineItems.variant.bundleProducts.variant.categories.categoryPath.name",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__CATEGORIES__ID="orderLineItems.variant.bundleProducts.variant.categories.id",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__CATEGORIES__NAME="orderLineItems.variant.bundleProducts.variant.categories.name",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__FILE_ID="orderLineItems.variant.bundleProducts.variant.fileId",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__HS_CODE="orderLineItems.variant.bundleProducts.variant.hsCode",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__ID="orderLineItems.variant.bundleProducts.variant.id",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__MAIN_IMAGE_ID="orderLineItems.variant.bundleProducts.variant.mainImageId",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__NAME="orderLineItems.variant.bundleProducts.variant.name",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__PRICES__BUY_PRICE="orderLineItems.variant.bundleProducts.variant.prices.buyPrice",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__PRICES__CURRENCY="orderLineItems.variant.bundleProducts.variant.prices.currency",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__PRICES__CURRENCY_SYMBOL="orderLineItems.variant.bundleProducts.variant.prices.currencySymbol",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__PRICES__DISCOUNT_PRICE="orderLineItems.variant.bundleProducts.variant.prices.discountPrice",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__PRICES__PRICE_LIST_ID="orderLineItems.variant.bundleProducts.variant.prices.priceListId",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__PRICES__SELL_PRICE="orderLineItems.variant.bundleProducts.variant.prices.sellPrice",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__PRICES__UNIT_PRICE="orderLineItems.variant.bundleProducts.variant.prices.unitPrice",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__PRODUCT_ID="orderLineItems.variant.bundleProducts.variant.productId",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__SKU="orderLineItems.variant.bundleProducts.variant.sku",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__SLUG="orderLineItems.variant.bundleProducts.variant.slug",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__TAG_IDS="orderLineItems.variant.bundleProducts.variant.tagIds",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__TAGS__ID="orderLineItems.variant.bundleProducts.variant.tags.id",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__TAGS__NAME="orderLineItems.variant.bundleProducts.variant.tags.name",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__TAX_VALUE="orderLineItems.variant.bundleProducts.variant.taxValue",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__TYPE="orderLineItems.variant.bundleProducts.variant.type",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__UNIT__AMOUNT="orderLineItems.variant.bundleProducts.variant.unit.amount",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__UNIT__TYPE="orderLineItems.variant.bundleProducts.variant.unit.type",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__VARIANT_VALUES__ORDER="orderLineItems.variant.bundleProducts.variant.variantValues.order",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__VARIANT_VALUES__VARIANT_TYPE_ID="orderLineItems.variant.bundleProducts.variant.variantValues.variantTypeId",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__VARIANT_VALUES__VARIANT_TYPE_NAME="orderLineItems.variant.bundleProducts.variant.variantValues.variantTypeName",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__VARIANT_VALUES__VARIANT_VALUE_ID="orderLineItems.variant.bundleProducts.variant.variantValues.variantValueId",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__VARIANT_VALUES__VARIANT_VALUE_NAME="orderLineItems.variant.bundleProducts.variant.variantValues.variantValueName",_.ORDER_LINE_ITEMS__VARIANT__BUNDLE_PRODUCTS__VARIANT__WEIGHT="orderLineItems.variant.bundleProducts.variant.weight",_.ORDER_LINE_ITEMS__VARIANT__CATEGORIES__CATEGORY_PATH__ID="orderLineItems.variant.categories.categoryPath.id",_.ORDER_LINE_ITEMS__VARIANT__CATEGORIES__CATEGORY_PATH__NAME="orderLineItems.variant.categories.categoryPath.name",_.ORDER_LINE_ITEMS__VARIANT__CATEGORIES__ID="orderLineItems.variant.categories.id",_.ORDER_LINE_ITEMS__VARIANT__CATEGORIES__NAME="orderLineItems.variant.categories.name",_.ORDER_LINE_ITEMS__VARIANT__FILE_ID="orderLineItems.variant.fileId",_.ORDER_LINE_ITEMS__VARIANT__HS_CODE="orderLineItems.variant.hsCode",_.ORDER_LINE_ITEMS__VARIANT__ID="orderLineItems.variant.id",_.ORDER_LINE_ITEMS__VARIANT__MAIN_IMAGE_ID="orderLineItems.variant.mainImageId",_.ORDER_LINE_ITEMS__VARIANT__NAME="orderLineItems.variant.name",_.ORDER_LINE_ITEMS__VARIANT__PRICES__BUY_PRICE="orderLineItems.variant.prices.buyPrice",_.ORDER_LINE_ITEMS__VARIANT__PRICES__CURRENCY="orderLineItems.variant.prices.currency",_.ORDER_LINE_ITEMS__VARIANT__PRICES__CURRENCY_SYMBOL="orderLineItems.variant.prices.currencySymbol",_.ORDER_LINE_ITEMS__VARIANT__PRICES__DISCOUNT_PRICE="orderLineItems.variant.prices.discountPrice",_.ORDER_LINE_ITEMS__VARIANT__PRICES__PRICE_LIST_ID="orderLineItems.variant.prices.priceListId",_.ORDER_LINE_ITEMS__VARIANT__PRICES__SELL_PRICE="orderLineItems.variant.prices.sellPrice",_.ORDER_LINE_ITEMS__VARIANT__PRICES__UNIT_PRICE="orderLineItems.variant.prices.unitPrice",_.ORDER_LINE_ITEMS__VARIANT__PRODUCT_ID="orderLineItems.variant.productId",_.ORDER_LINE_ITEMS__VARIANT__SKU="orderLineItems.variant.sku",_.ORDER_LINE_ITEMS__VARIANT__SLUG="orderLineItems.variant.slug",_.ORDER_LINE_ITEMS__VARIANT__TAG_IDS="orderLineItems.variant.tagIds",_.ORDER_LINE_ITEMS__VARIANT__TAGS__ID="orderLineItems.variant.tags.id",_.ORDER_LINE_ITEMS__VARIANT__TAGS__NAME="orderLineItems.variant.tags.name",_.ORDER_LINE_ITEMS__VARIANT__TAX_VALUE="orderLineItems.variant.taxValue",_.ORDER_LINE_ITEMS__VARIANT__TYPE="orderLineItems.variant.type",_.ORDER_LINE_ITEMS__VARIANT__UNIT__AMOUNT="orderLineItems.variant.unit.amount",_.ORDER_LINE_ITEMS__VARIANT__UNIT__TYPE="orderLineItems.variant.unit.type",_.ORDER_LINE_ITEMS__VARIANT__VARIANT_VALUES__ORDER="orderLineItems.variant.variantValues.order",_.ORDER_LINE_ITEMS__VARIANT__VARIANT_VALUES__VARIANT_TYPE_ID="orderLineItems.variant.variantValues.variantTypeId",_.ORDER_LINE_ITEMS__VARIANT__VARIANT_VALUES__VARIANT_TYPE_NAME="orderLineItems.variant.variantValues.variantTypeName",_.ORDER_LINE_ITEMS__VARIANT__VARIANT_VALUES__VARIANT_VALUE_ID="orderLineItems.variant.variantValues.variantValueId",_.ORDER_LINE_ITEMS__VARIANT__VARIANT_VALUES__VARIANT_VALUE_NAME="orderLineItems.variant.variantValues.variantValueName",_.ORDER_LINE_ITEMS__VARIANT__WEIGHT="orderLineItems.variant.weight",_.ORDER_NUMBER="orderNumber",_.ORDER_PACKAGE_STATUS="orderPackageStatus",_.ORDER_PAYMENT_STATUS="orderPaymentStatus",_.ORDERED_AT="orderedAt",_.PRICE_LIST_ID="priceListId",_.RECOVER_EMAIL_STATUS="recoverEmailStatus",_.RECOVERY_STATUS="recoveryStatus",_.SALES_CHANNEL_ID="salesChannelId",_.SESSION_INFO__COUNTRY_CODE="sessionInfo.countryCode",_.SESSION_INFO__DURATION_M_S="sessionInfo.durationMS",_.SESSION_INFO__END="sessionInfo.end",_.SESSION_INFO__HOST="sessionInfo.host",_.SESSION_INFO__IP="sessionInfo.ip",_.SESSION_INFO__REFERER="sessionInfo.referer",_.SESSION_INFO__SALES_CHANNEL_ID="sessionInfo.salesChannelId",_.SESSION_INFO__SESSION_ID="sessionInfo.sessionId",_.SESSION_INFO__START="sessionInfo.start",_.SESSION_INFO__STOREFRONT_ID="sessionInfo.storefrontId",_.SESSION_INFO__TRAFFIC_SOURCE__SOURCE="sessionInfo.trafficSource.source",_.SESSION_INFO__TRAFFIC_SOURCE__TYPE="sessionInfo.trafficSource.type",_.SESSION_INFO__USER_AGENT__DEVICE_TYPE="sessionInfo.userAgent.deviceType",_.SESSION_INFO__USER_AGENT__NAME="sessionInfo.userAgent.name",_.SESSION_INFO__USER_AGENT__OS="sessionInfo.userAgent.os",_.SESSION_INFO__UTM__CAMPAIGN="sessionInfo.utm.campaign",_.SESSION_INFO__UTM__CONTENT="sessionInfo.utm.content",_.SESSION_INFO__UTM__MEDIUM="sessionInfo.utm.medium",_.SESSION_INFO__UTM__SOURCE="sessionInfo.utm.source",_.SESSION_INFO__UTM__TERM="sessionInfo.utm.term",_.SESSION_INFO__VISITOR_ID="sessionInfo.visitorId",_.SHIPPING_ADDRESS__ADDRESS_LINE1="shippingAddress.addressLine1",_.SHIPPING_ADDRESS__ADDRESS_LINE2="shippingAddress.addressLine2",_.SHIPPING_ADDRESS__CITY__CODE="shippingAddress.city.code",_.SHIPPING_ADDRESS__CITY__ID="shippingAddress.city.id",_.SHIPPING_ADDRESS__CITY__NAME="shippingAddress.city.name",_.SHIPPING_ADDRESS__COMPANY="shippingAddress.company",_.SHIPPING_ADDRESS__COUNTRY__CODE="shippingAddress.country.code",_.SHIPPING_ADDRESS__COUNTRY__ID="shippingAddress.country.id",_.SHIPPING_ADDRESS__COUNTRY__ISO2="shippingAddress.country.iso2",_.SHIPPING_ADDRESS__COUNTRY__ISO3="shippingAddress.country.iso3",_.SHIPPING_ADDRESS__COUNTRY__NAME="shippingAddress.country.name",_.SHIPPING_ADDRESS__DISTRICT__CODE="shippingAddress.district.code",_.SHIPPING_ADDRESS__DISTRICT__ID="shippingAddress.district.id",_.SHIPPING_ADDRESS__DISTRICT__NAME="shippingAddress.district.name",_.SHIPPING_ADDRESS__FIRST_NAME="shippingAddress.firstName",_.SHIPPING_ADDRESS__ID="shippingAddress.id",_.SHIPPING_ADDRESS__IDENTITY_NUMBER="shippingAddress.identityNumber",_.SHIPPING_ADDRESS__IS_DEFAULT="shippingAddress.isDefault",_.SHIPPING_ADDRESS__LAST_NAME="shippingAddress.lastName",_.SHIPPING_ADDRESS__PHONE="shippingAddress.phone",_.SHIPPING_ADDRESS__POSTAL_CODE="shippingAddress.postalCode",_.SHIPPING_ADDRESS__REGION__CREATED_AT="shippingAddress.region.createdAt",_.SHIPPING_ADDRESS__REGION__DELETED="shippingAddress.region.deleted",_.SHIPPING_ADDRESS__REGION__ID="shippingAddress.region.id",_.SHIPPING_ADDRESS__REGION__NAME="shippingAddress.region.name",_.SHIPPING_ADDRESS__REGION__UPDATED_AT="shippingAddress.region.updatedAt",_.SHIPPING_ADDRESS__STATE__CODE="shippingAddress.state.code",_.SHIPPING_ADDRESS__STATE__ID="shippingAddress.state.id",_.SHIPPING_ADDRESS__STATE__NAME="shippingAddress.state.name",_.SHIPPING_ADDRESS__TAX_NUMBER="shippingAddress.taxNumber",_.SHIPPING_ADDRESS__TAX_OFFICE="shippingAddress.taxOffice",_.SHIPPING_LINES__FINAL_PRICE="shippingLines.finalPrice",_.SHIPPING_LINES__IS_REFUNDED="shippingLines.isRefunded",_.SHIPPING_LINES__PAYMENT_METHOD="shippingLines.paymentMethod",_.SHIPPING_LINES__PRICE="shippingLines.price",_.SHIPPING_LINES__SHIPPING_SETTINGS_ID="shippingLines.shippingSettingsId",_.SHIPPING_LINES__SHIPPING_ZONE_RATE_ID="shippingLines.shippingZoneRateId",_.SHIPPING_LINES__TAX_VALUE="shippingLines.taxValue",_.SHIPPING_LINES__TITLE="shippingLines.title",_.SHIPPING_METHOD="shippingMethod",_.SHIPPING_SETTINGS_ID="shippingSettingsId",_.SHIPPING_ZONE_RATE_ID="shippingZoneRateId",_.STATUS="status",_.STOCK_LOCATION_ID="stockLocationId",_.STOREFRONT_ID="storefrontId",_.STOREFRONT_ROUTING__DOMAIN="storefrontRouting.domain",_.STOREFRONT_ROUTING__DYNAMIC_CURRENCY_SETTINGS__ROUNDING_FORMAT="storefrontRouting.dynamicCurrencySettings.roundingFormat",_.STOREFRONT_ROUTING__DYNAMIC_CURRENCY_SETTINGS__TARGET_CURRENCY_CODE="storefrontRouting.dynamicCurrencySettings.targetCurrencyCode",_.STOREFRONT_ROUTING__ID="storefrontRouting.id",_.STOREFRONT_ROUTING__LOCALE="storefrontRouting.locale",_.STOREFRONT_ROUTING__PATH="storefrontRouting.path",_.STOREFRONT_ROUTING__PRICE_LIST_ID="storefrontRouting.priceListId",_.STOREFRONT_ROUTING_ID="storefrontRoutingId",_.STOREFRONT_THEME_ID="storefrontThemeId",_.TAX_LINES__PRICE="taxLines.price",_.TAX_LINES__RATE="taxLines.rate",_.TOTAL_FINAL_PRICE="totalFinalPrice",_.TOTAL_PRICE="totalPrice",_.UPDATED_AT="updatedAt",_.USER_AGENT="userAgent"}(i||(i={}));export{i as ResponseField,E as default};
@@ -69,6 +69,10 @@ export declare enum ResponseField {
69
69
  CUSTOMER__PHONE = "customer.phone",
70
70
  CUSTOMER__PHONE_VERIFIED_DATE = "customer.phoneVerifiedDate",
71
71
  CUSTOMER__PREFERRED_LANGUAGE = "customer.preferredLanguage",
72
+ CUSTOMER__PRICE_LIST_ID = "customer.priceListId",
73
+ CUSTOMER__PRICE_LIST_RULES__DISCOUNT_RATE = "customer.priceListRules.discountRate",
74
+ CUSTOMER__PRICE_LIST_RULES__FILTERS__TYPE = "customer.priceListRules.filters.type",
75
+ CUSTOMER__PRICE_LIST_RULES__FILTERS__VALUE_LIST = "customer.priceListRules.filters.valueList",
72
76
  CUSTOMER__REGISTRATION_SOURCE = "customer.registrationSource",
73
77
  CUSTOMER__SUBSCRIPTION_STATUS = "customer.subscriptionStatus",
74
78
  CUSTOMER__SUBSCRIPTION_STATUS_UPDATED_AT = "customer.subscriptionStatusUpdatedAt",
@@ -1 +1 @@
1
- import{__awaiter as e,__generator as t}from'./../../ext/tslib/tslib.es6.js';import{handleAPIError as _,APIResponse as s,fetchQuery as E}from"@ikas/fe-api-client";var S,r=function(S,r,o){return e(void 0,void 0,void 0,(function(){var e,T,a,u;return t(this,(function(t){switch(t.label){case 0:return t.trys.push([0,2,,3]),[4,E({operationName:"customerLogin",config:o,variables:S,allReturnFields:d,fields:r,query:function(e){return"\n\t\t\t\tmutation customerLogin (\n\t\t\t\t\t$captchaToken: String,\n\t\t\t\t\t$email: String!,\n\t\t\t\t\t$password: String!,\n\t\t\t\t) {\n\t\t\t\t\tcustomerLogin (\n\t\t\t\t\t\tcaptchaToken: $captchaToken,\n\t\t\t\t\t\temail: $email,\n\t\t\t\t\t\tpassword: $password,\n\t\t\t\t\t) ".concat(e,"\n\t\t\t\t}\n\t\t\t")}})];case 1:return e=t.sent(),T=e.data,a=e.errors,[2,new s(null==T?void 0:T.customerLogin,a)];case 2:return u=t.sent(),[2,_(u)];case 3:return[2]}}))}))},d="{customer {accountStatus accountStatusUpdatedAt addresses {addressLine1 addressLine2 attributes {customerAttributeId customerAttributeOptionId value } city {code id name } company country {code id iso2 iso3 name } createdAt deleted district {code id name } firstName id identityNumber isDefault lastName phone postalCode region {createdAt deleted id name updatedAt } state {code id name } taxNumber taxOffice title updatedAt } attributes {customerAttributeId customerAttributeOptionId value } createdAt customerGroupIds customerSequence deleted email emailVerifiedDate firstName fullName id isEmailVerified isPhoneVerified lastName note orderCount passwordUpdateDate phone phoneVerifiedDate preferredLanguage registrationSource subscriptionStatus subscriptionStatusUpdatedAt tagIds updatedAt } token tokenExpiry }";!function(e){e.CUSTOMER__ACCOUNT_STATUS="customer.accountStatus",e.CUSTOMER__ACCOUNT_STATUS_UPDATED_AT="customer.accountStatusUpdatedAt",e.CUSTOMER__ADDRESSES__ADDRESS_LINE1="customer.addresses.addressLine1",e.CUSTOMER__ADDRESSES__ADDRESS_LINE2="customer.addresses.addressLine2",e.CUSTOMER__ADDRESSES__ATTRIBUTES__CUSTOMER_ATTRIBUTE_ID="customer.addresses.attributes.customerAttributeId",e.CUSTOMER__ADDRESSES__ATTRIBUTES__CUSTOMER_ATTRIBUTE_OPTION_ID="customer.addresses.attributes.customerAttributeOptionId",e.CUSTOMER__ADDRESSES__ATTRIBUTES__VALUE="customer.addresses.attributes.value",e.CUSTOMER__ADDRESSES__CITY__CODE="customer.addresses.city.code",e.CUSTOMER__ADDRESSES__CITY__ID="customer.addresses.city.id",e.CUSTOMER__ADDRESSES__CITY__NAME="customer.addresses.city.name",e.CUSTOMER__ADDRESSES__COMPANY="customer.addresses.company",e.CUSTOMER__ADDRESSES__COUNTRY__CODE="customer.addresses.country.code",e.CUSTOMER__ADDRESSES__COUNTRY__ID="customer.addresses.country.id",e.CUSTOMER__ADDRESSES__COUNTRY__ISO2="customer.addresses.country.iso2",e.CUSTOMER__ADDRESSES__COUNTRY__ISO3="customer.addresses.country.iso3",e.CUSTOMER__ADDRESSES__COUNTRY__NAME="customer.addresses.country.name",e.CUSTOMER__ADDRESSES__CREATED_AT="customer.addresses.createdAt",e.CUSTOMER__ADDRESSES__DELETED="customer.addresses.deleted",e.CUSTOMER__ADDRESSES__DISTRICT__CODE="customer.addresses.district.code",e.CUSTOMER__ADDRESSES__DISTRICT__ID="customer.addresses.district.id",e.CUSTOMER__ADDRESSES__DISTRICT__NAME="customer.addresses.district.name",e.CUSTOMER__ADDRESSES__FIRST_NAME="customer.addresses.firstName",e.CUSTOMER__ADDRESSES__ID="customer.addresses.id",e.CUSTOMER__ADDRESSES__IDENTITY_NUMBER="customer.addresses.identityNumber",e.CUSTOMER__ADDRESSES__IS_DEFAULT="customer.addresses.isDefault",e.CUSTOMER__ADDRESSES__LAST_NAME="customer.addresses.lastName",e.CUSTOMER__ADDRESSES__PHONE="customer.addresses.phone",e.CUSTOMER__ADDRESSES__POSTAL_CODE="customer.addresses.postalCode",e.CUSTOMER__ADDRESSES__REGION__CREATED_AT="customer.addresses.region.createdAt",e.CUSTOMER__ADDRESSES__REGION__DELETED="customer.addresses.region.deleted",e.CUSTOMER__ADDRESSES__REGION__ID="customer.addresses.region.id",e.CUSTOMER__ADDRESSES__REGION__NAME="customer.addresses.region.name",e.CUSTOMER__ADDRESSES__REGION__UPDATED_AT="customer.addresses.region.updatedAt",e.CUSTOMER__ADDRESSES__STATE__CODE="customer.addresses.state.code",e.CUSTOMER__ADDRESSES__STATE__ID="customer.addresses.state.id",e.CUSTOMER__ADDRESSES__STATE__NAME="customer.addresses.state.name",e.CUSTOMER__ADDRESSES__TAX_NUMBER="customer.addresses.taxNumber",e.CUSTOMER__ADDRESSES__TAX_OFFICE="customer.addresses.taxOffice",e.CUSTOMER__ADDRESSES__TITLE="customer.addresses.title",e.CUSTOMER__ADDRESSES__UPDATED_AT="customer.addresses.updatedAt",e.CUSTOMER__ATTRIBUTES__CUSTOMER_ATTRIBUTE_ID="customer.attributes.customerAttributeId",e.CUSTOMER__ATTRIBUTES__CUSTOMER_ATTRIBUTE_OPTION_ID="customer.attributes.customerAttributeOptionId",e.CUSTOMER__ATTRIBUTES__VALUE="customer.attributes.value",e.CUSTOMER__CREATED_AT="customer.createdAt",e.CUSTOMER__CUSTOMER_GROUP_IDS="customer.customerGroupIds",e.CUSTOMER__CUSTOMER_SEQUENCE="customer.customerSequence",e.CUSTOMER__DELETED="customer.deleted",e.CUSTOMER__EMAIL="customer.email",e.CUSTOMER__EMAIL_VERIFIED_DATE="customer.emailVerifiedDate",e.CUSTOMER__FIRST_NAME="customer.firstName",e.CUSTOMER__FULL_NAME="customer.fullName",e.CUSTOMER__ID="customer.id",e.CUSTOMER__IS_EMAIL_VERIFIED="customer.isEmailVerified",e.CUSTOMER__IS_PHONE_VERIFIED="customer.isPhoneVerified",e.CUSTOMER__LAST_NAME="customer.lastName",e.CUSTOMER__NOTE="customer.note",e.CUSTOMER__ORDER_COUNT="customer.orderCount",e.CUSTOMER__PASSWORD_UPDATE_DATE="customer.passwordUpdateDate",e.CUSTOMER__PHONE="customer.phone",e.CUSTOMER__PHONE_VERIFIED_DATE="customer.phoneVerifiedDate",e.CUSTOMER__PREFERRED_LANGUAGE="customer.preferredLanguage",e.CUSTOMER__REGISTRATION_SOURCE="customer.registrationSource",e.CUSTOMER__SUBSCRIPTION_STATUS="customer.subscriptionStatus",e.CUSTOMER__SUBSCRIPTION_STATUS_UPDATED_AT="customer.subscriptionStatusUpdatedAt",e.CUSTOMER__TAG_IDS="customer.tagIds",e.CUSTOMER__UPDATED_AT="customer.updatedAt",e.TOKEN="token",e.TOKEN_EXPIRY="tokenExpiry"}(S||(S={}));export{S as ResponseField,r as default};
1
+ import{__awaiter as e,__generator as t}from'./../../ext/tslib/tslib.es6.js';import{handleAPIError as _,APIResponse as s,fetchQuery as E}from"@ikas/fe-api-client";var S,r=function(S,r,T){return e(void 0,void 0,void 0,(function(){var e,o,a,u;return t(this,(function(t){switch(t.label){case 0:return t.trys.push([0,2,,3]),[4,E({operationName:"customerLogin",config:T,variables:S,allReturnFields:d,fields:r,query:function(e){return"\n\t\t\t\tmutation customerLogin (\n\t\t\t\t\t$captchaToken: String,\n\t\t\t\t\t$email: String!,\n\t\t\t\t\t$password: String!,\n\t\t\t\t) {\n\t\t\t\t\tcustomerLogin (\n\t\t\t\t\t\tcaptchaToken: $captchaToken,\n\t\t\t\t\t\temail: $email,\n\t\t\t\t\t\tpassword: $password,\n\t\t\t\t\t) ".concat(e,"\n\t\t\t\t}\n\t\t\t")}})];case 1:return e=t.sent(),o=e.data,a=e.errors,[2,new s(null==o?void 0:o.customerLogin,a)];case 2:return u=t.sent(),[2,_(u)];case 3:return[2]}}))}))},d="{customer {accountStatus accountStatusUpdatedAt addresses {addressLine1 addressLine2 attributes {customerAttributeId customerAttributeOptionId value } city {code id name } company country {code id iso2 iso3 name } createdAt deleted district {code id name } firstName id identityNumber isDefault lastName phone postalCode region {createdAt deleted id name updatedAt } state {code id name } taxNumber taxOffice title updatedAt } attributes {customerAttributeId customerAttributeOptionId value } createdAt customerGroupIds customerSequence deleted email emailVerifiedDate firstName fullName id isEmailVerified isPhoneVerified lastName note orderCount passwordUpdateDate phone phoneVerifiedDate preferredLanguage priceListId priceListRules {discountRate filters {type valueList } } registrationSource subscriptionStatus subscriptionStatusUpdatedAt tagIds updatedAt } token tokenExpiry }";!function(e){e.CUSTOMER__ACCOUNT_STATUS="customer.accountStatus",e.CUSTOMER__ACCOUNT_STATUS_UPDATED_AT="customer.accountStatusUpdatedAt",e.CUSTOMER__ADDRESSES__ADDRESS_LINE1="customer.addresses.addressLine1",e.CUSTOMER__ADDRESSES__ADDRESS_LINE2="customer.addresses.addressLine2",e.CUSTOMER__ADDRESSES__ATTRIBUTES__CUSTOMER_ATTRIBUTE_ID="customer.addresses.attributes.customerAttributeId",e.CUSTOMER__ADDRESSES__ATTRIBUTES__CUSTOMER_ATTRIBUTE_OPTION_ID="customer.addresses.attributes.customerAttributeOptionId",e.CUSTOMER__ADDRESSES__ATTRIBUTES__VALUE="customer.addresses.attributes.value",e.CUSTOMER__ADDRESSES__CITY__CODE="customer.addresses.city.code",e.CUSTOMER__ADDRESSES__CITY__ID="customer.addresses.city.id",e.CUSTOMER__ADDRESSES__CITY__NAME="customer.addresses.city.name",e.CUSTOMER__ADDRESSES__COMPANY="customer.addresses.company",e.CUSTOMER__ADDRESSES__COUNTRY__CODE="customer.addresses.country.code",e.CUSTOMER__ADDRESSES__COUNTRY__ID="customer.addresses.country.id",e.CUSTOMER__ADDRESSES__COUNTRY__ISO2="customer.addresses.country.iso2",e.CUSTOMER__ADDRESSES__COUNTRY__ISO3="customer.addresses.country.iso3",e.CUSTOMER__ADDRESSES__COUNTRY__NAME="customer.addresses.country.name",e.CUSTOMER__ADDRESSES__CREATED_AT="customer.addresses.createdAt",e.CUSTOMER__ADDRESSES__DELETED="customer.addresses.deleted",e.CUSTOMER__ADDRESSES__DISTRICT__CODE="customer.addresses.district.code",e.CUSTOMER__ADDRESSES__DISTRICT__ID="customer.addresses.district.id",e.CUSTOMER__ADDRESSES__DISTRICT__NAME="customer.addresses.district.name",e.CUSTOMER__ADDRESSES__FIRST_NAME="customer.addresses.firstName",e.CUSTOMER__ADDRESSES__ID="customer.addresses.id",e.CUSTOMER__ADDRESSES__IDENTITY_NUMBER="customer.addresses.identityNumber",e.CUSTOMER__ADDRESSES__IS_DEFAULT="customer.addresses.isDefault",e.CUSTOMER__ADDRESSES__LAST_NAME="customer.addresses.lastName",e.CUSTOMER__ADDRESSES__PHONE="customer.addresses.phone",e.CUSTOMER__ADDRESSES__POSTAL_CODE="customer.addresses.postalCode",e.CUSTOMER__ADDRESSES__REGION__CREATED_AT="customer.addresses.region.createdAt",e.CUSTOMER__ADDRESSES__REGION__DELETED="customer.addresses.region.deleted",e.CUSTOMER__ADDRESSES__REGION__ID="customer.addresses.region.id",e.CUSTOMER__ADDRESSES__REGION__NAME="customer.addresses.region.name",e.CUSTOMER__ADDRESSES__REGION__UPDATED_AT="customer.addresses.region.updatedAt",e.CUSTOMER__ADDRESSES__STATE__CODE="customer.addresses.state.code",e.CUSTOMER__ADDRESSES__STATE__ID="customer.addresses.state.id",e.CUSTOMER__ADDRESSES__STATE__NAME="customer.addresses.state.name",e.CUSTOMER__ADDRESSES__TAX_NUMBER="customer.addresses.taxNumber",e.CUSTOMER__ADDRESSES__TAX_OFFICE="customer.addresses.taxOffice",e.CUSTOMER__ADDRESSES__TITLE="customer.addresses.title",e.CUSTOMER__ADDRESSES__UPDATED_AT="customer.addresses.updatedAt",e.CUSTOMER__ATTRIBUTES__CUSTOMER_ATTRIBUTE_ID="customer.attributes.customerAttributeId",e.CUSTOMER__ATTRIBUTES__CUSTOMER_ATTRIBUTE_OPTION_ID="customer.attributes.customerAttributeOptionId",e.CUSTOMER__ATTRIBUTES__VALUE="customer.attributes.value",e.CUSTOMER__CREATED_AT="customer.createdAt",e.CUSTOMER__CUSTOMER_GROUP_IDS="customer.customerGroupIds",e.CUSTOMER__CUSTOMER_SEQUENCE="customer.customerSequence",e.CUSTOMER__DELETED="customer.deleted",e.CUSTOMER__EMAIL="customer.email",e.CUSTOMER__EMAIL_VERIFIED_DATE="customer.emailVerifiedDate",e.CUSTOMER__FIRST_NAME="customer.firstName",e.CUSTOMER__FULL_NAME="customer.fullName",e.CUSTOMER__ID="customer.id",e.CUSTOMER__IS_EMAIL_VERIFIED="customer.isEmailVerified",e.CUSTOMER__IS_PHONE_VERIFIED="customer.isPhoneVerified",e.CUSTOMER__LAST_NAME="customer.lastName",e.CUSTOMER__NOTE="customer.note",e.CUSTOMER__ORDER_COUNT="customer.orderCount",e.CUSTOMER__PASSWORD_UPDATE_DATE="customer.passwordUpdateDate",e.CUSTOMER__PHONE="customer.phone",e.CUSTOMER__PHONE_VERIFIED_DATE="customer.phoneVerifiedDate",e.CUSTOMER__PREFERRED_LANGUAGE="customer.preferredLanguage",e.CUSTOMER__PRICE_LIST_ID="customer.priceListId",e.CUSTOMER__PRICE_LIST_RULES__DISCOUNT_RATE="customer.priceListRules.discountRate",e.CUSTOMER__PRICE_LIST_RULES__FILTERS__TYPE="customer.priceListRules.filters.type",e.CUSTOMER__PRICE_LIST_RULES__FILTERS__VALUE_LIST="customer.priceListRules.filters.valueList",e.CUSTOMER__REGISTRATION_SOURCE="customer.registrationSource",e.CUSTOMER__SUBSCRIPTION_STATUS="customer.subscriptionStatus",e.CUSTOMER__SUBSCRIPTION_STATUS_UPDATED_AT="customer.subscriptionStatusUpdatedAt",e.CUSTOMER__TAG_IDS="customer.tagIds",e.CUSTOMER__UPDATED_AT="customer.updatedAt",e.TOKEN="token",e.TOKEN_EXPIRY="tokenExpiry"}(S||(S={}));export{S as ResponseField,r as default};
@@ -13,6 +13,7 @@ export declare type QueryParams = {
13
13
  orderId?: string | null;
14
14
  password: string;
15
15
  phone?: string | null;
16
+ preferredLanguage?: string | null;
16
17
  };
17
18
  export declare enum ResponseField {
18
19
  CUSTOMER__ACCOUNT_STATUS = "customer.accountStatus",
@@ -76,6 +77,10 @@ export declare enum ResponseField {
76
77
  CUSTOMER__PHONE = "customer.phone",
77
78
  CUSTOMER__PHONE_VERIFIED_DATE = "customer.phoneVerifiedDate",
78
79
  CUSTOMER__PREFERRED_LANGUAGE = "customer.preferredLanguage",
80
+ CUSTOMER__PRICE_LIST_ID = "customer.priceListId",
81
+ CUSTOMER__PRICE_LIST_RULES__DISCOUNT_RATE = "customer.priceListRules.discountRate",
82
+ CUSTOMER__PRICE_LIST_RULES__FILTERS__TYPE = "customer.priceListRules.filters.type",
83
+ CUSTOMER__PRICE_LIST_RULES__FILTERS__VALUE_LIST = "customer.priceListRules.filters.valueList",
79
84
  CUSTOMER__REGISTRATION_SOURCE = "customer.registrationSource",
80
85
  CUSTOMER__SUBSCRIPTION_STATUS = "customer.subscriptionStatus",
81
86
  CUSTOMER__SUBSCRIPTION_STATUS_UPDATED_AT = "customer.subscriptionStatusUpdatedAt",
@@ -1 +1 @@
1
- import{__awaiter as t,__generator as e}from'./../../ext/tslib/tslib.es6.js';import{handleAPIError as s,APIResponse as _,fetchQuery as r}from"@ikas/fe-api-client";var S,E=function(S,E,a){return t(void 0,void 0,void 0,(function(){var t,o,T,u;return e(this,(function(e){switch(e.label){case 0:return e.trys.push([0,2,,3]),[4,r({operationName:"registerCustomer",config:a,variables:S,allReturnFields:d,fields:E,query:function(t){return"\n\t\t\t\tmutation registerCustomer (\n\t\t\t\t\t$attributes: [CustomerAttributeValueInput!],\n\t\t\t\t\t$captchaToken: String,\n\t\t\t\t\t$email: String!,\n\t\t\t\t\t$firstName: String!,\n\t\t\t\t\t$isAcceptMarketing: Boolean,\n\t\t\t\t\t$lastName: String!,\n\t\t\t\t\t$locale: String,\n\t\t\t\t\t$orderId: String,\n\t\t\t\t\t$password: String!,\n\t\t\t\t\t$phone: String,\n\t\t\t\t) {\n\t\t\t\t\tregisterCustomer (\n\t\t\t\t\t\tattributes: $attributes,\n\t\t\t\t\t\tcaptchaToken: $captchaToken,\n\t\t\t\t\t\temail: $email,\n\t\t\t\t\t\tfirstName: $firstName,\n\t\t\t\t\t\tisAcceptMarketing: $isAcceptMarketing,\n\t\t\t\t\t\tlastName: $lastName,\n\t\t\t\t\t\tlocale: $locale,\n\t\t\t\t\t\torderId: $orderId,\n\t\t\t\t\t\tpassword: $password,\n\t\t\t\t\t\tphone: $phone,\n\t\t\t\t\t) ".concat(t,"\n\t\t\t\t}\n\t\t\t")}})];case 1:return t=e.sent(),o=t.data,T=t.errors,[2,new _(null==o?void 0:o.registerCustomer,T)];case 2:return u=e.sent(),[2,s(u)];case 3:return[2]}}))}))},d="{customer {accountStatus accountStatusUpdatedAt addresses {addressLine1 addressLine2 attributes {customerAttributeId customerAttributeOptionId value } city {code id name } company country {code id iso2 iso3 name } createdAt deleted district {code id name } firstName id identityNumber isDefault lastName phone postalCode region {createdAt deleted id name updatedAt } state {code id name } taxNumber taxOffice title updatedAt } attributes {customerAttributeId customerAttributeOptionId value } createdAt customerGroupIds customerSequence deleted email emailVerifiedDate firstName fullName id isEmailVerified isPhoneVerified lastName note orderCount passwordUpdateDate phone phoneVerifiedDate preferredLanguage registrationSource subscriptionStatus subscriptionStatusUpdatedAt tagIds updatedAt } token tokenExpiry }";!function(t){t.CUSTOMER__ACCOUNT_STATUS="customer.accountStatus",t.CUSTOMER__ACCOUNT_STATUS_UPDATED_AT="customer.accountStatusUpdatedAt",t.CUSTOMER__ADDRESSES__ADDRESS_LINE1="customer.addresses.addressLine1",t.CUSTOMER__ADDRESSES__ADDRESS_LINE2="customer.addresses.addressLine2",t.CUSTOMER__ADDRESSES__ATTRIBUTES__CUSTOMER_ATTRIBUTE_ID="customer.addresses.attributes.customerAttributeId",t.CUSTOMER__ADDRESSES__ATTRIBUTES__CUSTOMER_ATTRIBUTE_OPTION_ID="customer.addresses.attributes.customerAttributeOptionId",t.CUSTOMER__ADDRESSES__ATTRIBUTES__VALUE="customer.addresses.attributes.value",t.CUSTOMER__ADDRESSES__CITY__CODE="customer.addresses.city.code",t.CUSTOMER__ADDRESSES__CITY__ID="customer.addresses.city.id",t.CUSTOMER__ADDRESSES__CITY__NAME="customer.addresses.city.name",t.CUSTOMER__ADDRESSES__COMPANY="customer.addresses.company",t.CUSTOMER__ADDRESSES__COUNTRY__CODE="customer.addresses.country.code",t.CUSTOMER__ADDRESSES__COUNTRY__ID="customer.addresses.country.id",t.CUSTOMER__ADDRESSES__COUNTRY__ISO2="customer.addresses.country.iso2",t.CUSTOMER__ADDRESSES__COUNTRY__ISO3="customer.addresses.country.iso3",t.CUSTOMER__ADDRESSES__COUNTRY__NAME="customer.addresses.country.name",t.CUSTOMER__ADDRESSES__CREATED_AT="customer.addresses.createdAt",t.CUSTOMER__ADDRESSES__DELETED="customer.addresses.deleted",t.CUSTOMER__ADDRESSES__DISTRICT__CODE="customer.addresses.district.code",t.CUSTOMER__ADDRESSES__DISTRICT__ID="customer.addresses.district.id",t.CUSTOMER__ADDRESSES__DISTRICT__NAME="customer.addresses.district.name",t.CUSTOMER__ADDRESSES__FIRST_NAME="customer.addresses.firstName",t.CUSTOMER__ADDRESSES__ID="customer.addresses.id",t.CUSTOMER__ADDRESSES__IDENTITY_NUMBER="customer.addresses.identityNumber",t.CUSTOMER__ADDRESSES__IS_DEFAULT="customer.addresses.isDefault",t.CUSTOMER__ADDRESSES__LAST_NAME="customer.addresses.lastName",t.CUSTOMER__ADDRESSES__PHONE="customer.addresses.phone",t.CUSTOMER__ADDRESSES__POSTAL_CODE="customer.addresses.postalCode",t.CUSTOMER__ADDRESSES__REGION__CREATED_AT="customer.addresses.region.createdAt",t.CUSTOMER__ADDRESSES__REGION__DELETED="customer.addresses.region.deleted",t.CUSTOMER__ADDRESSES__REGION__ID="customer.addresses.region.id",t.CUSTOMER__ADDRESSES__REGION__NAME="customer.addresses.region.name",t.CUSTOMER__ADDRESSES__REGION__UPDATED_AT="customer.addresses.region.updatedAt",t.CUSTOMER__ADDRESSES__STATE__CODE="customer.addresses.state.code",t.CUSTOMER__ADDRESSES__STATE__ID="customer.addresses.state.id",t.CUSTOMER__ADDRESSES__STATE__NAME="customer.addresses.state.name",t.CUSTOMER__ADDRESSES__TAX_NUMBER="customer.addresses.taxNumber",t.CUSTOMER__ADDRESSES__TAX_OFFICE="customer.addresses.taxOffice",t.CUSTOMER__ADDRESSES__TITLE="customer.addresses.title",t.CUSTOMER__ADDRESSES__UPDATED_AT="customer.addresses.updatedAt",t.CUSTOMER__ATTRIBUTES__CUSTOMER_ATTRIBUTE_ID="customer.attributes.customerAttributeId",t.CUSTOMER__ATTRIBUTES__CUSTOMER_ATTRIBUTE_OPTION_ID="customer.attributes.customerAttributeOptionId",t.CUSTOMER__ATTRIBUTES__VALUE="customer.attributes.value",t.CUSTOMER__CREATED_AT="customer.createdAt",t.CUSTOMER__CUSTOMER_GROUP_IDS="customer.customerGroupIds",t.CUSTOMER__CUSTOMER_SEQUENCE="customer.customerSequence",t.CUSTOMER__DELETED="customer.deleted",t.CUSTOMER__EMAIL="customer.email",t.CUSTOMER__EMAIL_VERIFIED_DATE="customer.emailVerifiedDate",t.CUSTOMER__FIRST_NAME="customer.firstName",t.CUSTOMER__FULL_NAME="customer.fullName",t.CUSTOMER__ID="customer.id",t.CUSTOMER__IS_EMAIL_VERIFIED="customer.isEmailVerified",t.CUSTOMER__IS_PHONE_VERIFIED="customer.isPhoneVerified",t.CUSTOMER__LAST_NAME="customer.lastName",t.CUSTOMER__NOTE="customer.note",t.CUSTOMER__ORDER_COUNT="customer.orderCount",t.CUSTOMER__PASSWORD_UPDATE_DATE="customer.passwordUpdateDate",t.CUSTOMER__PHONE="customer.phone",t.CUSTOMER__PHONE_VERIFIED_DATE="customer.phoneVerifiedDate",t.CUSTOMER__PREFERRED_LANGUAGE="customer.preferredLanguage",t.CUSTOMER__REGISTRATION_SOURCE="customer.registrationSource",t.CUSTOMER__SUBSCRIPTION_STATUS="customer.subscriptionStatus",t.CUSTOMER__SUBSCRIPTION_STATUS_UPDATED_AT="customer.subscriptionStatusUpdatedAt",t.CUSTOMER__TAG_IDS="customer.tagIds",t.CUSTOMER__UPDATED_AT="customer.updatedAt",t.TOKEN="token",t.TOKEN_EXPIRY="tokenExpiry"}(S||(S={}));export{S as ResponseField,E as default};
1
+ import{__awaiter as t,__generator as e}from'./../../ext/tslib/tslib.es6.js';import{handleAPIError as _,APIResponse as s,fetchQuery as r}from"@ikas/fe-api-client";var S,E=function(S,E,a){return t(void 0,void 0,void 0,(function(){var t,o,T,u;return e(this,(function(e){switch(e.label){case 0:return e.trys.push([0,2,,3]),[4,r({operationName:"registerCustomer",config:a,variables:S,allReturnFields:d,fields:E,query:function(t){return"\n\t\t\t\tmutation registerCustomer (\n\t\t\t\t\t$attributes: [CustomerAttributeValueInput!],\n\t\t\t\t\t$captchaToken: String,\n\t\t\t\t\t$email: String!,\n\t\t\t\t\t$firstName: String!,\n\t\t\t\t\t$isAcceptMarketing: Boolean,\n\t\t\t\t\t$lastName: String!,\n\t\t\t\t\t$locale: String,\n\t\t\t\t\t$orderId: String,\n\t\t\t\t\t$password: String!,\n\t\t\t\t\t$phone: String,\n\t\t\t\t\t$preferredLanguage: String,\n\t\t\t\t) {\n\t\t\t\t\tregisterCustomer (\n\t\t\t\t\t\tattributes: $attributes,\n\t\t\t\t\t\tcaptchaToken: $captchaToken,\n\t\t\t\t\t\temail: $email,\n\t\t\t\t\t\tfirstName: $firstName,\n\t\t\t\t\t\tisAcceptMarketing: $isAcceptMarketing,\n\t\t\t\t\t\tlastName: $lastName,\n\t\t\t\t\t\tlocale: $locale,\n\t\t\t\t\t\torderId: $orderId,\n\t\t\t\t\t\tpassword: $password,\n\t\t\t\t\t\tphone: $phone,\n\t\t\t\t\t\tpreferredLanguage: $preferredLanguage,\n\t\t\t\t\t) ".concat(t,"\n\t\t\t\t}\n\t\t\t")}})];case 1:return t=e.sent(),o=t.data,T=t.errors,[2,new s(null==o?void 0:o.registerCustomer,T)];case 2:return u=e.sent(),[2,_(u)];case 3:return[2]}}))}))},d="{customer {accountStatus accountStatusUpdatedAt addresses {addressLine1 addressLine2 attributes {customerAttributeId customerAttributeOptionId value } city {code id name } company country {code id iso2 iso3 name } createdAt deleted district {code id name } firstName id identityNumber isDefault lastName phone postalCode region {createdAt deleted id name updatedAt } state {code id name } taxNumber taxOffice title updatedAt } attributes {customerAttributeId customerAttributeOptionId value } createdAt customerGroupIds customerSequence deleted email emailVerifiedDate firstName fullName id isEmailVerified isPhoneVerified lastName note orderCount passwordUpdateDate phone phoneVerifiedDate preferredLanguage priceListId priceListRules {discountRate filters {type valueList } } registrationSource subscriptionStatus subscriptionStatusUpdatedAt tagIds updatedAt } token tokenExpiry }";!function(t){t.CUSTOMER__ACCOUNT_STATUS="customer.accountStatus",t.CUSTOMER__ACCOUNT_STATUS_UPDATED_AT="customer.accountStatusUpdatedAt",t.CUSTOMER__ADDRESSES__ADDRESS_LINE1="customer.addresses.addressLine1",t.CUSTOMER__ADDRESSES__ADDRESS_LINE2="customer.addresses.addressLine2",t.CUSTOMER__ADDRESSES__ATTRIBUTES__CUSTOMER_ATTRIBUTE_ID="customer.addresses.attributes.customerAttributeId",t.CUSTOMER__ADDRESSES__ATTRIBUTES__CUSTOMER_ATTRIBUTE_OPTION_ID="customer.addresses.attributes.customerAttributeOptionId",t.CUSTOMER__ADDRESSES__ATTRIBUTES__VALUE="customer.addresses.attributes.value",t.CUSTOMER__ADDRESSES__CITY__CODE="customer.addresses.city.code",t.CUSTOMER__ADDRESSES__CITY__ID="customer.addresses.city.id",t.CUSTOMER__ADDRESSES__CITY__NAME="customer.addresses.city.name",t.CUSTOMER__ADDRESSES__COMPANY="customer.addresses.company",t.CUSTOMER__ADDRESSES__COUNTRY__CODE="customer.addresses.country.code",t.CUSTOMER__ADDRESSES__COUNTRY__ID="customer.addresses.country.id",t.CUSTOMER__ADDRESSES__COUNTRY__ISO2="customer.addresses.country.iso2",t.CUSTOMER__ADDRESSES__COUNTRY__ISO3="customer.addresses.country.iso3",t.CUSTOMER__ADDRESSES__COUNTRY__NAME="customer.addresses.country.name",t.CUSTOMER__ADDRESSES__CREATED_AT="customer.addresses.createdAt",t.CUSTOMER__ADDRESSES__DELETED="customer.addresses.deleted",t.CUSTOMER__ADDRESSES__DISTRICT__CODE="customer.addresses.district.code",t.CUSTOMER__ADDRESSES__DISTRICT__ID="customer.addresses.district.id",t.CUSTOMER__ADDRESSES__DISTRICT__NAME="customer.addresses.district.name",t.CUSTOMER__ADDRESSES__FIRST_NAME="customer.addresses.firstName",t.CUSTOMER__ADDRESSES__ID="customer.addresses.id",t.CUSTOMER__ADDRESSES__IDENTITY_NUMBER="customer.addresses.identityNumber",t.CUSTOMER__ADDRESSES__IS_DEFAULT="customer.addresses.isDefault",t.CUSTOMER__ADDRESSES__LAST_NAME="customer.addresses.lastName",t.CUSTOMER__ADDRESSES__PHONE="customer.addresses.phone",t.CUSTOMER__ADDRESSES__POSTAL_CODE="customer.addresses.postalCode",t.CUSTOMER__ADDRESSES__REGION__CREATED_AT="customer.addresses.region.createdAt",t.CUSTOMER__ADDRESSES__REGION__DELETED="customer.addresses.region.deleted",t.CUSTOMER__ADDRESSES__REGION__ID="customer.addresses.region.id",t.CUSTOMER__ADDRESSES__REGION__NAME="customer.addresses.region.name",t.CUSTOMER__ADDRESSES__REGION__UPDATED_AT="customer.addresses.region.updatedAt",t.CUSTOMER__ADDRESSES__STATE__CODE="customer.addresses.state.code",t.CUSTOMER__ADDRESSES__STATE__ID="customer.addresses.state.id",t.CUSTOMER__ADDRESSES__STATE__NAME="customer.addresses.state.name",t.CUSTOMER__ADDRESSES__TAX_NUMBER="customer.addresses.taxNumber",t.CUSTOMER__ADDRESSES__TAX_OFFICE="customer.addresses.taxOffice",t.CUSTOMER__ADDRESSES__TITLE="customer.addresses.title",t.CUSTOMER__ADDRESSES__UPDATED_AT="customer.addresses.updatedAt",t.CUSTOMER__ATTRIBUTES__CUSTOMER_ATTRIBUTE_ID="customer.attributes.customerAttributeId",t.CUSTOMER__ATTRIBUTES__CUSTOMER_ATTRIBUTE_OPTION_ID="customer.attributes.customerAttributeOptionId",t.CUSTOMER__ATTRIBUTES__VALUE="customer.attributes.value",t.CUSTOMER__CREATED_AT="customer.createdAt",t.CUSTOMER__CUSTOMER_GROUP_IDS="customer.customerGroupIds",t.CUSTOMER__CUSTOMER_SEQUENCE="customer.customerSequence",t.CUSTOMER__DELETED="customer.deleted",t.CUSTOMER__EMAIL="customer.email",t.CUSTOMER__EMAIL_VERIFIED_DATE="customer.emailVerifiedDate",t.CUSTOMER__FIRST_NAME="customer.firstName",t.CUSTOMER__FULL_NAME="customer.fullName",t.CUSTOMER__ID="customer.id",t.CUSTOMER__IS_EMAIL_VERIFIED="customer.isEmailVerified",t.CUSTOMER__IS_PHONE_VERIFIED="customer.isPhoneVerified",t.CUSTOMER__LAST_NAME="customer.lastName",t.CUSTOMER__NOTE="customer.note",t.CUSTOMER__ORDER_COUNT="customer.orderCount",t.CUSTOMER__PASSWORD_UPDATE_DATE="customer.passwordUpdateDate",t.CUSTOMER__PHONE="customer.phone",t.CUSTOMER__PHONE_VERIFIED_DATE="customer.phoneVerifiedDate",t.CUSTOMER__PREFERRED_LANGUAGE="customer.preferredLanguage",t.CUSTOMER__PRICE_LIST_ID="customer.priceListId",t.CUSTOMER__PRICE_LIST_RULES__DISCOUNT_RATE="customer.priceListRules.discountRate",t.CUSTOMER__PRICE_LIST_RULES__FILTERS__TYPE="customer.priceListRules.filters.type",t.CUSTOMER__PRICE_LIST_RULES__FILTERS__VALUE_LIST="customer.priceListRules.filters.valueList",t.CUSTOMER__REGISTRATION_SOURCE="customer.registrationSource",t.CUSTOMER__SUBSCRIPTION_STATUS="customer.subscriptionStatus",t.CUSTOMER__SUBSCRIPTION_STATUS_UPDATED_AT="customer.subscriptionStatusUpdatedAt",t.CUSTOMER__TAG_IDS="customer.tagIds",t.CUSTOMER__UPDATED_AT="customer.updatedAt",t.TOKEN="token",t.TOKEN_EXPIRY="tokenExpiry"}(S||(S={}));export{S as ResponseField,E as default};
@@ -260,6 +260,7 @@ export declare enum ResponseField {
260
260
  ORDER_LINE_ITEMS__VARIANT__WEIGHT = "orderLineItems.variant.weight",
261
261
  ORDER_NUMBER = "orderNumber",
262
262
  ORDER_PACKAGE_STATUS = "orderPackageStatus",
263
+ ORDER_PAYMENT_STATUS = "orderPaymentStatus",
263
264
  ORDERED_AT = "orderedAt",
264
265
  PRICE_LIST_ID = "priceListId",
265
266
  RECOVER_EMAIL_STATUS = "recoverEmailStatus",