@ikas/api-client 1.0.33 → 1.0.36

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.
@@ -355,6 +355,7 @@ export declare type BundleProductInput = {
355
355
  addToBundleBasePrice?: InputMaybe<Scalars['Boolean']>;
356
356
  discountRatio?: InputMaybe<Scalars['Float']>;
357
357
  filteredVariantIds: Array<Scalars['String']>;
358
+ id: Scalars['String'];
358
359
  maxQuantity?: InputMaybe<Scalars['Float']>;
359
360
  minQuantity?: InputMaybe<Scalars['Float']>;
360
361
  order: Scalars['Float'];
@@ -369,6 +370,7 @@ export declare type BundleProductModel = {
369
370
  discountRatio?: Maybe<Scalars['Float']>;
370
371
  /** Selectable variant ids of the product that can be included in the bundle product. */
371
372
  filteredVariantIds: Array<Scalars['String']>;
373
+ id: Scalars['String'];
372
374
  /** Maximum quantity of product that can be included in the bundle product. */
373
375
  maxQuantity?: Maybe<Scalars['Float']>;
374
376
  /** Minimum quantity of product that can be included in the bundle product. */
@@ -380,6 +382,17 @@ export declare type BundleProductModel = {
380
382
  /** Quantity of the product that can be included in the bundle product. */
381
383
  quantity: Scalars['Float'];
382
384
  };
385
+ export declare type BundleProductOrderLine = {
386
+ __typename?: 'BundleProductOrderLine';
387
+ /** If the order line is derived from a package product, it shows the bundle line id of the package product */
388
+ bundleLineId: Scalars['String'];
389
+ /** If the order line is derived from a package product, it shows the bundle line id of the package product */
390
+ bundleLineQuantity: Scalars['Float'];
391
+ /** If the order line is derived from a package product, it shows the bundle product name of the package product */
392
+ name?: Maybe<Scalars['String']>;
393
+ /** Information about the variant of the order line item. */
394
+ variant: OrderLineVariant;
395
+ };
383
396
  export declare type BundleSettingsInput = {
384
397
  maxBundleQuantity?: InputMaybe<Scalars['Float']>;
385
398
  minBundleQuantity?: InputMaybe<Scalars['Float']>;
@@ -416,21 +429,6 @@ export declare type BuyXThenGetYInput = {
416
429
  getY: GetYInput;
417
430
  maxUsagePerOrder?: InputMaybe<Scalars['Int']>;
418
431
  };
419
- export declare type CSVExportFilterInput = {
420
- attributeId?: InputMaybe<ProductAttributeFilterInput>;
421
- brandId?: InputMaybe<StringFilterInput>;
422
- categoryIds?: InputMaybe<CategoryFilterInput>;
423
- id?: InputMaybe<StringFilterInput>;
424
- name?: InputMaybe<StringFilterInput>;
425
- salesChannelIds?: InputMaybe<StringFilterInput>;
426
- stockLocationId?: InputMaybe<StringFilterInput>;
427
- tagIds?: InputMaybe<StringFilterInput>;
428
- totalStock?: InputMaybe<NumberFilterInput>;
429
- updatedAt?: InputMaybe<DateFilterInput>;
430
- variantId?: InputMaybe<StringFilterInput>;
431
- variantTypeId?: InputMaybe<StringFilterInput>;
432
- vendorId?: InputMaybe<StringFilterInput>;
433
- };
434
432
  export declare type CSVImportResponse = {
435
433
  __typename?: 'CSVImportResponse';
436
434
  csvContent?: Maybe<Scalars['String']>;
@@ -539,6 +537,7 @@ export declare type CampaignOffer = {
539
537
  endDate?: Maybe<Scalars['Timestamp']>;
540
538
  followUpActionType: CampaignOfferFollowUpActionTypeEnum;
541
539
  id: Scalars['ID'];
540
+ maxCount?: Maybe<Scalars['Float']>;
542
541
  maximumRequiredCartAmount?: Maybe<Scalars['Float']>;
543
542
  minimumRequiredCartAmount?: Maybe<Scalars['Float']>;
544
543
  name: Scalars['String'];
@@ -586,7 +585,8 @@ export declare type CampaignOfferProductTranslation = {
586
585
  };
587
586
  export declare enum CampaignOfferTargetPageTypeEnum {
588
587
  CHECKOUT = "CHECKOUT",
589
- POST_CHECKOUT = "POST_CHECKOUT"
588
+ POST_CHECKOUT = "POST_CHECKOUT",
589
+ PRODUCT = "PRODUCT"
590
590
  }
591
591
  export declare enum CampaignOfferTriggerFilterTypeEnum {
592
592
  ALL_PRODUCTS = "ALL_PRODUCTS",
@@ -715,7 +715,8 @@ export declare enum CartCampaignOfferStatus {
715
715
  }
716
716
  export declare enum CartCreatedByEnum {
717
717
  ADMIN = "ADMIN",
718
- CUSTOMER = "CUSTOMER"
718
+ CUSTOMER = "CUSTOMER",
719
+ UPSELL = "UPSELL"
719
720
  }
720
721
  export declare type CartPaginationResponse = {
721
722
  __typename?: 'CartPaginationResponse';
@@ -1163,6 +1164,8 @@ export declare type Customer = {
1163
1164
  createdAt?: Maybe<Scalars['Timestamp']>;
1164
1165
  /** Groups that the store owner attaches to the customer. */
1165
1166
  customerGroupIds?: Maybe<Array<Scalars['String']>>;
1167
+ /** Segments that the customers are belong to. */
1168
+ customerSegmentIds?: Maybe<Array<Scalars['String']>>;
1166
1169
  /** It is the sequence value of the customer. The sequence value starts from 1. */
1167
1170
  customerSequence?: Maybe<Scalars['Float']>;
1168
1171
  deleted: Scalars['Boolean'];
@@ -1201,6 +1204,8 @@ export declare type Customer = {
1201
1204
  /** The date the **email** was verified. */
1202
1205
  phoneVerifiedDate?: Maybe<Scalars['Timestamp']>;
1203
1206
  preferredLanguage?: Maybe<Scalars['String']>;
1207
+ priceListId?: Maybe<Scalars['String']>;
1208
+ priceListRules?: Maybe<Array<CustomerPriceListRule>>;
1204
1209
  /** Registration source of customer. */
1205
1210
  registrationSource?: Maybe<CustomerRegistrationSourceEnum>;
1206
1211
  /** CustomerEmailSubscriptionStatusesEnum */
@@ -1405,6 +1410,31 @@ export declare type CustomerPaginationResponse = {
1405
1410
  */
1406
1411
  page: Scalars['Int'];
1407
1412
  };
1413
+ export declare type CustomerPriceListRule = {
1414
+ __typename?: 'CustomerPriceListRule';
1415
+ discountRate?: Maybe<Scalars['Float']>;
1416
+ filters?: Maybe<Array<CustomerPriceListRuleFilter>>;
1417
+ priceListId?: Maybe<Scalars['String']>;
1418
+ shouldMatchAllFilters?: Maybe<Scalars['Boolean']>;
1419
+ value: Scalars['Float'];
1420
+ valueType: CustomerPriceListRuleValueTypeEnum;
1421
+ };
1422
+ export declare type CustomerPriceListRuleFilter = {
1423
+ __typename?: 'CustomerPriceListRuleFilter';
1424
+ type: CustomerPriceListRuleFilterTypeEnum;
1425
+ valueList: Array<Scalars['String']>;
1426
+ };
1427
+ export declare enum CustomerPriceListRuleFilterTypeEnum {
1428
+ CATEGORY = "CATEGORY",
1429
+ PRODUCT = "PRODUCT",
1430
+ PRODUCT_BRAND = "PRODUCT_BRAND",
1431
+ PRODUCT_TAG = "PRODUCT_TAG"
1432
+ }
1433
+ export declare enum CustomerPriceListRuleValueTypeEnum {
1434
+ DISCOUNT_AMOUNT = "DISCOUNT_AMOUNT",
1435
+ DISCOUNT_RATE = "DISCOUNT_RATE",
1436
+ FIXED_PRICE = "FIXED_PRICE"
1437
+ }
1408
1438
  /** Customer Registration Source Enum */
1409
1439
  export declare enum CustomerRegistrationSourceEnum {
1410
1440
  apple = "apple",
@@ -1490,6 +1520,11 @@ export declare type GetImportJobDataResponse = {
1490
1520
  importJobId?: Maybe<Scalars['String']>;
1491
1521
  status?: Maybe<ImportStatusEnum>;
1492
1522
  };
1523
+ export declare type GetLastImportJobDataResponse = {
1524
+ __typename?: 'GetLastImportJobDataResponse';
1525
+ fileURL?: Maybe<Scalars['String']>;
1526
+ importJobId?: Maybe<Scalars['String']>;
1527
+ };
1493
1528
  export declare type GetOrderInvoicePdfUrlInput = {
1494
1529
  invoiceId: Scalars['String'];
1495
1530
  orderId: Scalars['String'];
@@ -1521,6 +1556,7 @@ export declare type GlobalTaxSettings = {
1521
1556
  id: Scalars['ID'];
1522
1557
  isTaxExcludedOnPrices: Scalars['Boolean'];
1523
1558
  isTaxExcludedOnShippingPrices: Scalars['Boolean'];
1559
+ storefrontId?: Maybe<Scalars['String']>;
1524
1560
  updatedAt?: Maybe<Scalars['Timestamp']>;
1525
1561
  };
1526
1562
  export declare type HTMLMetaData = {
@@ -1588,12 +1624,23 @@ export declare type HTMLMetaDataTranslation = {
1588
1624
  description?: Maybe<Scalars['String']>;
1589
1625
  locale: Scalars['String'];
1590
1626
  pageTitle?: Maybe<Scalars['String']>;
1627
+ slug?: Maybe<Scalars['String']>;
1591
1628
  };
1592
1629
  export declare type HTMLMetaDataTranslationInput = {
1593
1630
  description?: InputMaybe<Scalars['String']>;
1594
1631
  locale: Scalars['String'];
1595
1632
  pageTitle?: InputMaybe<Scalars['String']>;
1633
+ slug?: InputMaybe<Scalars['String']>;
1596
1634
  };
1635
+ /** Import Source Type */
1636
+ export declare enum ImportSourceEnum {
1637
+ CSV = "CSV",
1638
+ DEMO = "DEMO",
1639
+ SHOPIER = "SHOPIER",
1640
+ SHOPIFY = "SHOPIFY",
1641
+ XLS = "XLS",
1642
+ XLSX = "XLSX"
1643
+ }
1597
1644
  /** Import Status Type */
1598
1645
  export declare enum ImportStatusEnum {
1599
1646
  FAILED = "FAILED",
@@ -2115,7 +2162,7 @@ export declare type MutationgetOrderInvoicePdfUrlArgs = {
2115
2162
  };
2116
2163
  export declare type MutationproductAttributeImportArgs = {
2117
2164
  file: Scalars['String'];
2118
- fileType?: InputMaybe<ProductImportFileType>;
2165
+ fileType?: InputMaybe<ImportSourceEnum>;
2119
2166
  };
2120
2167
  export declare type MutationrefundOrderLineArgs = {
2121
2168
  input: OrderRefundInput;
@@ -2190,7 +2237,7 @@ export declare type MutationupdateSubscriptionStatusArgs = {
2190
2237
  };
2191
2238
  export declare type MutationvariantAttributeImportArgs = {
2192
2239
  file: Scalars['String'];
2193
- fileType?: InputMaybe<ProductImportFileType>;
2240
+ fileType?: InputMaybe<ImportSourceEnum>;
2194
2241
  };
2195
2242
  export declare type NewCouponInput = {
2196
2243
  canCombineWithOtherCampaigns: Scalars['Boolean'];
@@ -2620,6 +2667,7 @@ export declare type OrderGiftPackageLine = {
2620
2667
  isRefunded?: Maybe<Scalars['Boolean']>;
2621
2668
  /** It is the price of the order gift package line. */
2622
2669
  price: Scalars['Float'];
2670
+ priceListId?: Maybe<Scalars['String']>;
2623
2671
  /** It is the tax value of the order gift package line price. */
2624
2672
  taxValue?: Maybe<Scalars['Float']>;
2625
2673
  };
@@ -2699,6 +2747,8 @@ export declare type OrderLineDiscountInput = {
2699
2747
  };
2700
2748
  export declare type OrderLineItem = {
2701
2749
  __typename?: 'OrderLineItem';
2750
+ /** It is the option information of the variant value in the order line item. */
2751
+ bundleProductSettings?: Maybe<BundleProductOrderLine>;
2702
2752
  createdAt?: Maybe<Scalars['Timestamp']>;
2703
2753
  /** It is the currency code of the order line item. */
2704
2754
  currencyCode?: Maybe<Scalars['String']>;
@@ -2860,6 +2910,8 @@ export declare type OrderLineVariantBrand = {
2860
2910
  };
2861
2911
  export declare type OrderLineVariantBundleProductModel = {
2862
2912
  __typename?: 'OrderLineVariantBundleProductModel';
2913
+ /** It indicates whether the variant price within the package product will be reflected in the order line or not. */
2914
+ addToBundleBasePrice?: Maybe<Scalars['Boolean']>;
2863
2915
  /** It is the value that indicates whether the product has been deleted or not. */
2864
2916
  deleted?: Maybe<Scalars['Boolean']>;
2865
2917
  /** It is the final price of the variant. */
@@ -2868,6 +2920,7 @@ export declare type OrderLineVariantBundleProductModel = {
2868
2920
  discountRatio?: Maybe<Scalars['Float']>;
2869
2921
  /** It is the final price of the variant. */
2870
2922
  finalPrice?: Maybe<Scalars['Float']>;
2923
+ id: Scalars['String'];
2871
2924
  /** Indicates the order of the product in the bundle. */
2872
2925
  order: Scalars['Float'];
2873
2926
  /** It is the price of the variant. */
@@ -3073,6 +3126,7 @@ export declare type OrderPaymentMethodEnumFilterInput = {
3073
3126
  nin?: InputMaybe<Array<InputMaybe<PaymentMethodTypeEnum>>>;
3074
3127
  };
3075
3128
  export declare enum OrderPaymentStatusEnum {
3129
+ FAILED = "FAILED",
3076
3130
  PAID = "PAID",
3077
3131
  PARTIALLY_PAID = "PARTIALLY_PAID",
3078
3132
  WAITING = "WAITING"
@@ -3164,6 +3218,7 @@ export declare type OrderShippingLine = {
3164
3218
  paymentMethod?: Maybe<PaymentMethodTypeEnum>;
3165
3219
  /** It is the price of the order shipping line. */
3166
3220
  price: Scalars['Float'];
3221
+ priceListId?: Maybe<Scalars['String']>;
3167
3222
  /** It is the shipping settings id of the order shipping line. */
3168
3223
  shippingSettingsId?: Maybe<Scalars['String']>;
3169
3224
  /** It is the shipping zone rate id of the order shipping line. */
@@ -3178,6 +3233,7 @@ export declare type OrderShippingLine = {
3178
3233
  export declare type OrderShippingLineInput = {
3179
3234
  /** It is the price of the order shipping line. */
3180
3235
  price: Scalars['Float'];
3236
+ priceListId?: InputMaybe<Scalars['Float']>;
3181
3237
  /** It is the tax value of the order shipping line. */
3182
3238
  taxValue?: InputMaybe<Scalars['Float']>;
3183
3239
  /** It is the title of the order shipping line. */
@@ -3218,7 +3274,8 @@ export declare enum OrderStatusEnum {
3218
3274
  PARTIALLY_REFUNDED = "PARTIALLY_REFUNDED",
3219
3275
  REFUNDED = "REFUNDED",
3220
3276
  REFUND_REJECTED = "REFUND_REJECTED",
3221
- REFUND_REQUESTED = "REFUND_REQUESTED"
3277
+ REFUND_REQUESTED = "REFUND_REQUESTED",
3278
+ WAITING_UPSELL_ACTION = "WAITING_UPSELL_ACTION"
3222
3279
  }
3223
3280
  export declare type OrderStatusEnumInputFilter = {
3224
3281
  /** `equal`. The filter used for equality. */
@@ -3339,6 +3396,7 @@ export declare enum PaymentMethodTypeEnum {
3339
3396
  }
3340
3397
  export declare type PriceList = {
3341
3398
  __typename?: 'PriceList';
3399
+ addProductsAutomatically?: Maybe<Scalars['Boolean']>;
3342
3400
  createdAt?: Maybe<Scalars['Timestamp']>;
3343
3401
  /** The currency of the product's price list. */
3344
3402
  currency: Scalars['String'];
@@ -3348,8 +3406,55 @@ export declare type PriceList = {
3348
3406
  id: Scalars['ID'];
3349
3407
  /** It is the name of the price list of the product. */
3350
3408
  name: Scalars['String'];
3409
+ ruleList?: Maybe<Array<PriceListRuleList>>;
3410
+ /** Type of price price list */
3411
+ type?: Maybe<PriceListTypeEnum>;
3351
3412
  updatedAt?: Maybe<Scalars['Timestamp']>;
3352
3413
  };
3414
+ export declare type PriceListCurrencyRateSettings = {
3415
+ __typename?: 'PriceListCurrencyRateSettings';
3416
+ amount?: Maybe<Scalars['Float']>;
3417
+ type: PriceListCurrencyRateTypeEnum;
3418
+ };
3419
+ /** Price List Currency Rate Type Enum */
3420
+ export declare enum PriceListCurrencyRateTypeEnum {
3421
+ CURRENT_RATE = "CURRENT_RATE",
3422
+ CUSTOM_RATE = "CUSTOM_RATE"
3423
+ }
3424
+ export declare type PriceListCurrencySettings = {
3425
+ __typename?: 'PriceListCurrencySettings';
3426
+ /** One of '.x0' | '.x9' | '.00' | '.90' | '.99' | '0.00' */
3427
+ roundingFormat?: Maybe<Scalars['String']>;
3428
+ };
3429
+ export declare type PriceListRuleList = {
3430
+ __typename?: 'PriceListRuleList';
3431
+ basePriceListId?: Maybe<Scalars['String']>;
3432
+ currencyRateSettings?: Maybe<PriceListCurrencyRateSettings>;
3433
+ currencySettings: PriceListCurrencySettings;
3434
+ rules: Array<PriceListRules>;
3435
+ };
3436
+ export declare type PriceListRules = {
3437
+ __typename?: 'PriceListRules';
3438
+ amount: Scalars['Float'];
3439
+ amountType: PriceListRulesAmountTypeEnum;
3440
+ operationType: PriceListRulesOperationTypeEnum;
3441
+ };
3442
+ /** Price List Rules Amount Type Enum */
3443
+ export declare enum PriceListRulesAmountTypeEnum {
3444
+ AMOUNT = "AMOUNT",
3445
+ RATIO = "RATIO"
3446
+ }
3447
+ /** Price List Rules Operation Type Enum */
3448
+ export declare enum PriceListRulesOperationTypeEnum {
3449
+ DECREASE = "DECREASE",
3450
+ INCREASE = "INCREASE"
3451
+ }
3452
+ /** Price List Type Enum */
3453
+ export declare enum PriceListTypeEnum {
3454
+ DYNAMIC = "DYNAMIC",
3455
+ DYNAMIC_RATE = "DYNAMIC_RATE",
3456
+ MANUAL = "MANUAL"
3457
+ }
3353
3458
  export declare type Product = {
3354
3459
  __typename?: 'Product';
3355
3460
  /** List of product attributes. */
@@ -3368,6 +3473,7 @@ export declare type Product = {
3368
3473
  deleted: Scalars['Boolean'];
3369
3474
  /** Description of the product. */
3370
3475
  description?: Maybe<Scalars['String']>;
3476
+ dynamicPriceListIds?: Maybe<Array<Scalars['String']>>;
3371
3477
  googleTaxonomyId?: Maybe<Scalars['String']>;
3372
3478
  /** This is the variant type id that can be used to group variants by a specific variant type id. */
3373
3479
  groupVariantsByVariantTypeId?: Maybe<Scalars['String']>;
@@ -3452,6 +3558,11 @@ export declare type ProductAttributeOption = {
3452
3558
  name: Scalars['String'];
3453
3559
  updatedAt?: Maybe<Scalars['Timestamp']>;
3454
3560
  };
3561
+ export declare type ProductAttributeOptionFilterInput = {
3562
+ eq?: InputMaybe<Scalars['String']>;
3563
+ in?: InputMaybe<Array<Scalars['String']>>;
3564
+ nin?: InputMaybe<Array<Scalars['String']>>;
3565
+ };
3455
3566
  export declare type ProductAttributeOptionInput = {
3456
3567
  createdAt?: InputMaybe<Scalars['Timestamp']>;
3457
3568
  deleted?: InputMaybe<Scalars['Boolean']>;
@@ -3626,11 +3737,6 @@ export declare type ProductImageInput = {
3626
3737
  isVideo?: InputMaybe<Scalars['Boolean']>;
3627
3738
  order: Scalars['Float'];
3628
3739
  };
3629
- export declare enum ProductImportFileType {
3630
- CSV = "CSV",
3631
- XLS = "XLS",
3632
- XLSX = "XLSX"
3633
- }
3634
3740
  export declare type ProductInput = {
3635
3741
  attributes?: InputMaybe<Array<ProductAttributeValueInput>>;
3636
3742
  baseUnit?: InputMaybe<ProductBaseUnitModelInput>;
@@ -3660,6 +3766,10 @@ export declare type ProductInput = {
3660
3766
  vendorId?: InputMaybe<Scalars['String']>;
3661
3767
  weight?: InputMaybe<Scalars['Float']>;
3662
3768
  };
3769
+ export declare type ProductLocaleFilterInput = {
3770
+ in?: InputMaybe<Array<Scalars['String']>>;
3771
+ notIn?: InputMaybe<Array<Scalars['String']>>;
3772
+ };
3663
3773
  export declare type ProductOption = {
3664
3774
  __typename?: 'ProductOption';
3665
3775
  createdAt?: Maybe<Scalars['Timestamp']>;
@@ -3723,6 +3833,7 @@ export declare type ProductOptionSelectValueOtherPrice = {
3723
3833
  currencyCode: Scalars['String'];
3724
3834
  currencySymbol?: Maybe<Scalars['String']>;
3725
3835
  price: Scalars['Float'];
3836
+ priceListId?: Maybe<Scalars['String']>;
3726
3837
  };
3727
3838
  export declare type ProductOptionSelectValueTranslations = {
3728
3839
  __typename?: 'ProductOptionSelectValueTranslations';
@@ -3952,6 +4063,16 @@ export declare enum ProductTypeEnum {
3952
4063
  MEMBERSHIP = "MEMBERSHIP",
3953
4064
  PHYSICAL = "PHYSICAL"
3954
4065
  }
4066
+ export declare type ProductTypeEnumFilterInput = {
4067
+ /** `equal`. The filter used for equality. */
4068
+ eq?: InputMaybe<ProductTypeEnum>;
4069
+ /** Returns a boolean indicating whether a specified value is in an array. */
4070
+ in?: InputMaybe<Array<InputMaybe<ProductTypeEnum>>>;
4071
+ /** `not equal`. The filter used for not equality. */
4072
+ ne?: InputMaybe<ProductTypeEnum>;
4073
+ /** Returns a boolean indicating whether a specified value is not in an array. */
4074
+ nin?: InputMaybe<Array<InputMaybe<ProductTypeEnum>>>;
4075
+ };
3955
4076
  export declare type ProductUnit = {
3956
4077
  __typename?: 'ProductUnit';
3957
4078
  createdAt?: Maybe<Scalars['Timestamp']>;
@@ -4094,6 +4215,7 @@ export declare type Query = {
4094
4215
  /** Upload url for the specified image. */
4095
4216
  getImageUploadUrl: Scalars['String'];
4096
4217
  getImportJobData: GetImportJobDataResponse;
4218
+ getLastImportJobData: GetLastImportJobDataResponse;
4097
4219
  /** By using this api you can get properties of merchant and merchant staff. */
4098
4220
  getMerchant: MerchantResponse;
4099
4221
  /** Using this api you can view all licenses owned by merchant. */
@@ -4126,7 +4248,7 @@ export declare type Query = {
4126
4248
  listPriceList: Array<PriceList>;
4127
4249
  /**
4128
4250
  * Use this query to list products.
4129
- * Sort applies to following fields: `updatedAt`
4251
+ * Sort applies to following fields: `createdAt` `updatedAt` `name`
4130
4252
  */
4131
4253
  listProduct: ProductPaginationResponse;
4132
4254
  /** Use this query to list product attributes. */
@@ -4151,6 +4273,7 @@ export declare type Query = {
4151
4273
  listStorefront: Array<Storefront>;
4152
4274
  /** Use this query to list storefront javascript scripts by supplying the `storefrontId` input. */
4153
4275
  listStorefrontJSScript: Array<StorefrontJSScript>;
4276
+ listTaxSettings: Array<TaxSettings>;
4154
4277
  listTerminal: Array<Terminal>;
4155
4278
  listTown: Array<Town>;
4156
4279
  /** Using this api, you can view the variant types of products. */
@@ -4368,6 +4491,11 @@ export declare type QuerylistStorefrontArgs = {
4368
4491
  export declare type QuerylistStorefrontJSScriptArgs = {
4369
4492
  storefrontId?: InputMaybe<Scalars['String']>;
4370
4493
  };
4494
+ export declare type QuerylistTaxSettingsArgs = {
4495
+ countryId?: InputMaybe<StringFilterInput>;
4496
+ id?: InputMaybe<StringFilterInput>;
4497
+ includeDeleted?: InputMaybe<Scalars['Boolean']>;
4498
+ };
4371
4499
  export declare type QuerylistTerminalArgs = {
4372
4500
  branchId?: InputMaybe<StringFilterInput>;
4373
4501
  id?: InputMaybe<StringFilterInput>;
@@ -4393,15 +4521,59 @@ export declare type QuerylistVendorArgs = {
4393
4521
  updatedAt?: InputMaybe<DateFilterInput>;
4394
4522
  };
4395
4523
  export declare type QueryproductAttributeExportArgs = {
4396
- csvFilterInput?: InputMaybe<CSVExportFilterInput>;
4397
- fileType?: InputMaybe<ProductImportFileType>;
4524
+ attributeId?: InputMaybe<ProductAttributeFilterInput>;
4525
+ attributeOptionId?: InputMaybe<ProductAttributeOptionFilterInput>;
4526
+ brandId?: InputMaybe<StringFilterInput>;
4527
+ categoryIds?: InputMaybe<CategoryFilterInput>;
4528
+ dynamicPriceListIds?: InputMaybe<StringFilterInput>;
4529
+ fileType?: InputMaybe<ImportSourceEnum>;
4530
+ id?: InputMaybe<StringFilterInput>;
4531
+ includeDeleted?: InputMaybe<Scalars['Boolean']>;
4532
+ locale?: InputMaybe<ProductLocaleFilterInput>;
4533
+ name?: InputMaybe<StringFilterInput>;
4534
+ pagination?: InputMaybe<PaginationInput>;
4535
+ priceListId?: InputMaybe<StringFilterInput>;
4536
+ salesChannelIds?: InputMaybe<StringFilterInput>;
4537
+ search?: InputMaybe<Scalars['String']>;
4538
+ sort?: InputMaybe<Scalars['String']>;
4539
+ stockLocationId?: InputMaybe<StringFilterInput>;
4540
+ tagIds?: InputMaybe<StringFilterInput>;
4541
+ totalStock?: InputMaybe<NumberFilterInput>;
4542
+ type?: InputMaybe<ProductTypeEnumFilterInput>;
4543
+ updatedAt?: InputMaybe<DateFilterInput>;
4544
+ variantId?: InputMaybe<StringFilterInput>;
4545
+ variantTypeId?: InputMaybe<StringFilterInput>;
4546
+ variantValueId?: InputMaybe<StringFilterInput>;
4547
+ vendorId?: InputMaybe<StringFilterInput>;
4398
4548
  };
4399
4549
  export declare type QuerysearchProductsArgs = {
4400
4550
  input: SearchInput;
4401
4551
  };
4402
4552
  export declare type QueryvariantAttributeExportArgs = {
4403
- csvFilterInput?: InputMaybe<CSVExportFilterInput>;
4404
- fileType?: InputMaybe<ProductImportFileType>;
4553
+ attributeId?: InputMaybe<ProductAttributeFilterInput>;
4554
+ attributeOptionId?: InputMaybe<ProductAttributeOptionFilterInput>;
4555
+ brandId?: InputMaybe<StringFilterInput>;
4556
+ categoryIds?: InputMaybe<CategoryFilterInput>;
4557
+ dynamicPriceListIds?: InputMaybe<StringFilterInput>;
4558
+ fileType?: InputMaybe<ImportSourceEnum>;
4559
+ id?: InputMaybe<StringFilterInput>;
4560
+ includeDeleted?: InputMaybe<Scalars['Boolean']>;
4561
+ locale?: InputMaybe<ProductLocaleFilterInput>;
4562
+ name?: InputMaybe<StringFilterInput>;
4563
+ pagination?: InputMaybe<PaginationInput>;
4564
+ priceListId?: InputMaybe<StringFilterInput>;
4565
+ salesChannelIds?: InputMaybe<StringFilterInput>;
4566
+ search?: InputMaybe<Scalars['String']>;
4567
+ sort?: InputMaybe<Scalars['String']>;
4568
+ stockLocationId?: InputMaybe<StringFilterInput>;
4569
+ tagIds?: InputMaybe<StringFilterInput>;
4570
+ totalStock?: InputMaybe<NumberFilterInput>;
4571
+ type?: InputMaybe<ProductTypeEnumFilterInput>;
4572
+ updatedAt?: InputMaybe<DateFilterInput>;
4573
+ variantId?: InputMaybe<StringFilterInput>;
4574
+ variantTypeId?: InputMaybe<StringFilterInput>;
4575
+ variantValueId?: InputMaybe<StringFilterInput>;
4576
+ vendorId?: InputMaybe<StringFilterInput>;
4405
4577
  };
4406
4578
  export declare enum SFAnalyticsTrafficSourceEnum {
4407
4579
  ADS_OTHER = "ADS_OTHER",
@@ -4534,12 +4706,14 @@ export declare type SearchProduct = {
4534
4706
  averageRating?: Maybe<Scalars['Float']>;
4535
4707
  baseUnit?: Maybe<SearchProductProductBaseUnit>;
4536
4708
  brand?: Maybe<SearchProductBrand>;
4709
+ campaignOffers?: Maybe<Array<SearchProductCampaignOffer>>;
4537
4710
  campaigns?: Maybe<Array<SearchProductCampaign>>;
4538
4711
  categories?: Maybe<Array<SearchCategory>>;
4539
4712
  createdAt?: Maybe<Scalars['Timestamp']>;
4540
4713
  customerReviewSummaries?: Maybe<ProductSearchCustomerReviewSummaries>;
4541
4714
  deleted?: Maybe<Scalars['Boolean']>;
4542
4715
  description?: Maybe<Scalars['String']>;
4716
+ dynamicPriceListIds?: Maybe<Array<Scalars['String']>>;
4543
4717
  groupVariantsByVariantTypeId?: Maybe<Scalars['String']>;
4544
4718
  hiddenSalesChannelIds?: Maybe<Array<Scalars['String']>>;
4545
4719
  id: Scalars['String'];
@@ -4592,6 +4766,7 @@ export declare type SearchProductAttributeValue = {
4592
4766
  export declare type SearchProductBrand = {
4593
4767
  __typename?: 'SearchProductBrand';
4594
4768
  id: Scalars['String'];
4769
+ imageId?: Maybe<Scalars['String']>;
4595
4770
  name: Scalars['String'];
4596
4771
  slug?: Maybe<Scalars['String']>;
4597
4772
  translations?: Maybe<Array<ProductBrandTranslation>>;
@@ -4631,6 +4806,10 @@ export declare type SearchProductCampaignGetY = {
4631
4806
  amount: Scalars['Float'];
4632
4807
  discountRatio: Scalars['Float'];
4633
4808
  };
4809
+ export declare type SearchProductCampaignOffer = {
4810
+ __typename?: 'SearchProductCampaignOffer';
4811
+ id: Scalars['String'];
4812
+ };
4634
4813
  export declare type SearchProductCustomerReviewStar = {
4635
4814
  __typename?: 'SearchProductCustomerReviewStar';
4636
4815
  count: Scalars['Float'];
@@ -4688,6 +4867,7 @@ export declare type SearchVariant = {
4688
4867
  __typename?: 'SearchVariant';
4689
4868
  attributes?: Maybe<Array<SearchProductAttributeValue>>;
4690
4869
  barcodeList?: Maybe<Array<Scalars['String']>>;
4870
+ baseBundlePrices?: Maybe<Array<SearchProductPrice>>;
4691
4871
  bundleSettings?: Maybe<BundleSettingsModel>;
4692
4872
  deleted?: Maybe<Scalars['Boolean']>;
4693
4873
  id: Scalars['String'];
@@ -4772,6 +4952,7 @@ export declare type ShippingZoneRate = {
4772
4952
  deleted: Scalars['Boolean'];
4773
4953
  id: Scalars['ID'];
4774
4954
  price: Scalars['Float'];
4955
+ priceListId?: Maybe<Scalars['String']>;
4775
4956
  rateName: Scalars['String'];
4776
4957
  updatedAt?: Maybe<Scalars['Timestamp']>;
4777
4958
  };
@@ -4966,6 +5147,8 @@ export declare type StorefrontJSScript = {
4966
5147
  id: Scalars['ID'];
4967
5148
  /** Shows the availability status of the storefront. */
4968
5149
  isActive: Scalars['Boolean'];
5150
+ /** Indicates if the script has a high priority and should be executed before others. */
5151
+ isHighPriority?: Maybe<Scalars['Boolean']>;
4969
5152
  /** The storefront javascript script's name. */
4970
5153
  name: Scalars['String'];
4971
5154
  /** The order of the script to be executed. */
@@ -4985,6 +5168,7 @@ export declare enum StorefrontJSScriptContentTypeEnum {
4985
5168
  export declare type StorefrontJSScriptInput = {
4986
5169
  contentType: StorefrontJSScriptContentTypeEnum;
4987
5170
  fileName?: InputMaybe<Scalars['String']>;
5171
+ isHighPriority?: InputMaybe<Scalars['Boolean']>;
4988
5172
  name: Scalars['String'];
4989
5173
  scriptContent: Scalars['String'];
4990
5174
  storefrontId: Scalars['String'];
@@ -5012,6 +5196,7 @@ export declare enum SubscriptionCodeEnum {
5012
5196
  EXTENSION = "EXTENSION",
5013
5197
  FREEMIUM = "FREEMIUM",
5014
5198
  GROW = "GROW",
5199
+ ONE_TIME = "ONE_TIME",
5015
5200
  PREMIUM = "PREMIUM",
5016
5201
  SCALE = "SCALE",
5017
5202
  SCALE_PLUS = "SCALE_PLUS",
@@ -5028,6 +5213,40 @@ export declare enum SubscriptionPriceCurrencyEnum {
5028
5213
  TRY = "TRY",
5029
5214
  USD = "USD"
5030
5215
  }
5216
+ export declare type TaxSettings = {
5217
+ __typename?: 'TaxSettings';
5218
+ countryId: Scalars['String'];
5219
+ createdAt?: Maybe<Scalars['Timestamp']>;
5220
+ deleted: Scalars['Boolean'];
5221
+ giftPackageTaxRates?: Maybe<Array<TaxSettingsGiftPackageTaxRate>>;
5222
+ id: Scalars['ID'];
5223
+ productOverrides?: Maybe<Array<TaxSettingsProductOverride>>;
5224
+ rates?: Maybe<Array<TaxSettingsRate>>;
5225
+ shippingTaxRates?: Maybe<Array<TaxSettingsShippingTaxRate>>;
5226
+ taxRate: Scalars['Float'];
5227
+ updatedAt?: Maybe<Scalars['Timestamp']>;
5228
+ };
5229
+ export declare type TaxSettingsGiftPackageTaxRate = {
5230
+ __typename?: 'TaxSettingsGiftPackageTaxRate';
5231
+ stateId?: Maybe<Scalars['String']>;
5232
+ taxRate: Scalars['Float'];
5233
+ };
5234
+ export declare type TaxSettingsProductOverride = {
5235
+ __typename?: 'TaxSettingsProductOverride';
5236
+ productTagIds: Array<Scalars['String']>;
5237
+ stateId?: Maybe<Scalars['String']>;
5238
+ taxRate: Scalars['Float'];
5239
+ };
5240
+ export declare type TaxSettingsRate = {
5241
+ __typename?: 'TaxSettingsRate';
5242
+ stateId: Scalars['String'];
5243
+ taxRate: Scalars['Float'];
5244
+ };
5245
+ export declare type TaxSettingsShippingTaxRate = {
5246
+ __typename?: 'TaxSettingsShippingTaxRate';
5247
+ stateId?: Maybe<Scalars['String']>;
5248
+ taxRate: Scalars['Float'];
5249
+ };
5031
5250
  export declare type Terminal = {
5032
5251
  __typename?: 'Terminal';
5033
5252
  branchId: Scalars['String'];