@ikas/api-client 1.0.37 → 1.0.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/admin/generated/default-gqls.d.ts +5 -0
- package/dist/api/admin/generated/default-gqls.js +26 -21
- package/dist/api/admin/generated/default-gqls.js.map +1 -1
- package/dist/api/admin/generated/index.d.ts +203 -1
- package/dist/api/admin/generated/index.js +42 -2
- package/dist/api/admin/generated/index.js.map +1 -1
- package/dist/api/admin/generated/mutation.d.ts +5 -1
- package/dist/api/admin/generated/mutation.js +28 -0
- package/dist/api/admin/generated/mutation.js.map +1 -1
- package/dist/api/admin/generated/query.d.ts +2 -1
- package/dist/api/admin/generated/query.js +7 -0
- package/dist/api/admin/generated/query.js.map +1 -1
- package/package.json +1 -1
|
@@ -255,6 +255,17 @@ export declare type BulkUpdateProductPriceInput = {
|
|
|
255
255
|
/** Sell price of product. */
|
|
256
256
|
sellPrice: Scalars['Float'];
|
|
257
257
|
};
|
|
258
|
+
export declare type BulkUpdateProductSalesChannels = {
|
|
259
|
+
/** Sales channels id for bulk update. */
|
|
260
|
+
id: Scalars['String'];
|
|
261
|
+
/** Max purchasable quantity of the sales channel for per cart. */
|
|
262
|
+
maxQuantityPerCart?: InputMaybe<Scalars['Float']>;
|
|
263
|
+
/** Min purchasable quantity of the sales channel for per cart. */
|
|
264
|
+
minQuantityPerCart?: InputMaybe<Scalars['Float']>;
|
|
265
|
+
quantitySettings?: InputMaybe<Array<Scalars['Float']>>;
|
|
266
|
+
/** Sales channels id for bulk update. */
|
|
267
|
+
status?: InputMaybe<SalesChannelStatusEnum>;
|
|
268
|
+
};
|
|
258
269
|
export declare type BulkUpdateProductStockInput = {
|
|
259
270
|
/** Number of available items in the stock location. */
|
|
260
271
|
stockCount: Scalars['Float'];
|
|
@@ -336,6 +347,8 @@ export declare type BulkUpdateProductsInput = {
|
|
|
336
347
|
productVariantTypes: Array<BulkUpdateProductVariantTypeImportInput>;
|
|
337
348
|
/** Sales channel ids for bulk update. */
|
|
338
349
|
salesChannelIds?: InputMaybe<Array<Scalars['String']>>;
|
|
350
|
+
/** Sales channels for bulk update. */
|
|
351
|
+
salesChannels?: InputMaybe<Array<BulkUpdateProductSalesChannels>>;
|
|
339
352
|
/** Short description of the product. */
|
|
340
353
|
shortDescription?: InputMaybe<Scalars['String']>;
|
|
341
354
|
/** Source id for bulk update. */
|
|
@@ -390,6 +403,8 @@ export declare type BundleProductOrderLine = {
|
|
|
390
403
|
bundleLineQuantity: Scalars['Float'];
|
|
391
404
|
/** If the order line is derived from a package product, it shows the bundle product name of the package product */
|
|
392
405
|
name?: Maybe<Scalars['String']>;
|
|
406
|
+
/** It is the option information of the variant value in the order line item. */
|
|
407
|
+
options?: Maybe<Array<OrderLineOption>>;
|
|
393
408
|
/** Information about the variant of the order line item. */
|
|
394
409
|
variant: OrderLineVariant;
|
|
395
410
|
};
|
|
@@ -433,6 +448,7 @@ export declare type Campaign = {
|
|
|
433
448
|
__typename?: 'Campaign';
|
|
434
449
|
applicableCustomerGroupIds?: Maybe<Array<Scalars['String']>>;
|
|
435
450
|
applicableCustomerIds?: Maybe<Array<Scalars['String']>>;
|
|
451
|
+
applicableCustomerSegmentIds?: Maybe<Array<Scalars['String']>>;
|
|
436
452
|
applicablePrice: CampaignApplicablePriceEnum;
|
|
437
453
|
applyCampaignToProductPrice?: Maybe<Scalars['Boolean']>;
|
|
438
454
|
buyXThenGetY?: Maybe<BuyXThenGetY>;
|
|
@@ -449,6 +465,7 @@ export declare type Campaign = {
|
|
|
449
465
|
isFreeShipping?: Maybe<Scalars['Boolean']>;
|
|
450
466
|
onlyUseCustomer?: Maybe<Scalars['Boolean']>;
|
|
451
467
|
salesChannelIds?: Maybe<Array<Scalars['String']>>;
|
|
468
|
+
tieredDiscount?: Maybe<CampaignTieredDiscount>;
|
|
452
469
|
title: Scalars['String'];
|
|
453
470
|
translations?: Maybe<Array<CampaignTranslation>>;
|
|
454
471
|
type: CampaignTypeEnum;
|
|
@@ -486,14 +503,21 @@ export declare type CampaignFilterInput = {
|
|
|
486
503
|
};
|
|
487
504
|
export declare enum CampaignFilterTypeEnum {
|
|
488
505
|
CATEGORY = "CATEGORY",
|
|
506
|
+
DYNAMIC_CATEGORY = "DYNAMIC_CATEGORY",
|
|
489
507
|
PRODUCT = "PRODUCT",
|
|
490
508
|
PRODUCT_BRAND = "PRODUCT_BRAND",
|
|
491
509
|
PRODUCT_TAG = "PRODUCT_TAG",
|
|
492
510
|
VARIANT = "VARIANT"
|
|
493
511
|
}
|
|
512
|
+
export declare enum CampaignGetYDiscountTypeEnum {
|
|
513
|
+
AMOUNT = "AMOUNT",
|
|
514
|
+
FIXED_PRODUCT_PRICE = "FIXED_PRODUCT_PRICE",
|
|
515
|
+
RATIO = "RATIO"
|
|
516
|
+
}
|
|
494
517
|
export declare type CampaignInput = {
|
|
495
518
|
applicableCustomerGroupIds?: InputMaybe<Array<Scalars['String']>>;
|
|
496
519
|
applicableCustomerIds?: InputMaybe<Array<Scalars['String']>>;
|
|
520
|
+
applicableCustomerSegmentIds?: InputMaybe<Array<Scalars['String']>>;
|
|
497
521
|
applicablePrice: CampaignApplicablePriceEnum;
|
|
498
522
|
applyCampaignToProductPrice?: InputMaybe<Scalars['Boolean']>;
|
|
499
523
|
buyXThenGetY?: InputMaybe<BuyXThenGetYInput>;
|
|
@@ -510,6 +534,7 @@ export declare type CampaignInput = {
|
|
|
510
534
|
isFreeShipping?: InputMaybe<Scalars['Boolean']>;
|
|
511
535
|
onlyUseCustomer?: InputMaybe<Scalars['Boolean']>;
|
|
512
536
|
salesChannelIds?: InputMaybe<Array<Scalars['String']>>;
|
|
537
|
+
tieredDiscount?: InputMaybe<TieredDiscountInput>;
|
|
513
538
|
title: Scalars['String'];
|
|
514
539
|
translations?: InputMaybe<Array<CampaignTranslationInput>>;
|
|
515
540
|
type: CampaignTypeEnum;
|
|
@@ -632,6 +657,19 @@ export declare type CampaignPaginationResponse = {
|
|
|
632
657
|
*/
|
|
633
658
|
page: Scalars['Int'];
|
|
634
659
|
};
|
|
660
|
+
export declare type CampaignTieredDiscount = {
|
|
661
|
+
__typename?: 'CampaignTieredDiscount';
|
|
662
|
+
filters?: Maybe<Array<CampaignFilter>>;
|
|
663
|
+
isApplyByCartAmount?: Maybe<Scalars['Boolean']>;
|
|
664
|
+
rules: Array<CampaignTieredDiscountRule>;
|
|
665
|
+
shouldMatchAllConditions?: Maybe<Scalars['Boolean']>;
|
|
666
|
+
};
|
|
667
|
+
export declare type CampaignTieredDiscountRule = {
|
|
668
|
+
__typename?: 'CampaignTieredDiscountRule';
|
|
669
|
+
amount: Scalars['Float'];
|
|
670
|
+
lineItemQuantityRange?: Maybe<CampaignMinMaxRangeField>;
|
|
671
|
+
priceRange?: Maybe<CampaignMinMaxRangeField>;
|
|
672
|
+
};
|
|
635
673
|
export declare type CampaignTranslation = {
|
|
636
674
|
__typename?: 'CampaignTranslation';
|
|
637
675
|
/** It is the name information of the translation. */
|
|
@@ -1051,6 +1089,7 @@ export declare type Country = {
|
|
|
1051
1089
|
};
|
|
1052
1090
|
export declare type Coupon = {
|
|
1053
1091
|
__typename?: 'Coupon';
|
|
1092
|
+
applicableCustomerId?: Maybe<Scalars['String']>;
|
|
1054
1093
|
campaignId: Scalars['String'];
|
|
1055
1094
|
canCombineWithOtherCampaigns: Scalars['Boolean'];
|
|
1056
1095
|
code: Scalars['String'];
|
|
@@ -1165,6 +1204,7 @@ export declare type Customer = {
|
|
|
1165
1204
|
/** A list of the ten most recently updated addresses for the customer. */
|
|
1166
1205
|
addresses?: Maybe<Array<CustomerAddress>>;
|
|
1167
1206
|
attributes?: Maybe<Array<CustomerAttributeValue>>;
|
|
1207
|
+
birthDate?: Maybe<Scalars['Timestamp']>;
|
|
1168
1208
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1169
1209
|
/** Groups that the store owner attaches to the customer. */
|
|
1170
1210
|
customerGroupIds?: Maybe<Array<Scalars['String']>>;
|
|
@@ -1183,6 +1223,7 @@ export declare type Customer = {
|
|
|
1183
1223
|
firstOrderDate?: Maybe<Scalars['Timestamp']>;
|
|
1184
1224
|
/** Customer's full name. Firstname plus lastname if firstname and lastname exist. Otherwise, it is saved as firstname only. */
|
|
1185
1225
|
fullName?: Maybe<Scalars['String']>;
|
|
1226
|
+
gender?: Maybe<CustomerGenderTypeEnum>;
|
|
1186
1227
|
id: Scalars['ID'];
|
|
1187
1228
|
ip?: Maybe<Scalars['String']>;
|
|
1188
1229
|
/** Email verification status. **isEmailVerified** returns `true` if the email is verified. */
|
|
@@ -1205,6 +1246,9 @@ export declare type Customer = {
|
|
|
1205
1246
|
passwordUpdateDate?: Maybe<Scalars['Timestamp']>;
|
|
1206
1247
|
/** The customer's phone number */
|
|
1207
1248
|
phone?: Maybe<Scalars['String']>;
|
|
1249
|
+
/** CustomerEmailSubscriptionStatusesEnum */
|
|
1250
|
+
phoneSubscriptionStatus?: Maybe<CustomerEmailSubscriptionStatusesEnum>;
|
|
1251
|
+
phoneSubscriptionStatusUpdatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1208
1252
|
/** The date the **email** was verified. */
|
|
1209
1253
|
phoneVerifiedDate?: Maybe<Scalars['Timestamp']>;
|
|
1210
1254
|
preferredLanguage?: Maybe<Scalars['String']>;
|
|
@@ -1213,6 +1257,9 @@ export declare type Customer = {
|
|
|
1213
1257
|
/** Registration source of customer. */
|
|
1214
1258
|
registrationSource?: Maybe<CustomerRegistrationSourceEnum>;
|
|
1215
1259
|
/** CustomerEmailSubscriptionStatusesEnum */
|
|
1260
|
+
smsSubscriptionStatus?: Maybe<CustomerEmailSubscriptionStatusesEnum>;
|
|
1261
|
+
smsSubscriptionStatusUpdatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1262
|
+
/** CustomerEmailSubscriptionStatusesEnum */
|
|
1216
1263
|
subscriptionStatus?: Maybe<CustomerEmailSubscriptionStatusesEnum>;
|
|
1217
1264
|
subscriptionStatusUpdatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1218
1265
|
/** Tags that the store owner attaches to the customer. */
|
|
@@ -1390,6 +1437,11 @@ export declare enum CustomerEmailSubscriptionStatusesEnum {
|
|
|
1390
1437
|
PENDING_CONFIRMATION = "PENDING_CONFIRMATION",
|
|
1391
1438
|
SUBSCRIBED = "SUBSCRIBED"
|
|
1392
1439
|
}
|
|
1440
|
+
export declare enum CustomerGenderTypeEnum {
|
|
1441
|
+
FEMALE = "FEMALE",
|
|
1442
|
+
MALE = "MALE",
|
|
1443
|
+
OTHER = "OTHER"
|
|
1444
|
+
}
|
|
1393
1445
|
export declare type CustomerPaginationResponse = {
|
|
1394
1446
|
__typename?: 'CustomerPaginationResponse';
|
|
1395
1447
|
/**
|
|
@@ -1498,6 +1550,7 @@ export declare type FixedDiscount = {
|
|
|
1498
1550
|
isApplyByCartAmount?: Maybe<Scalars['Boolean']>;
|
|
1499
1551
|
lineItemQuantityRange?: Maybe<CampaignMinMaxRangeField>;
|
|
1500
1552
|
priceRange?: Maybe<CampaignMinMaxRangeField>;
|
|
1553
|
+
shouldMatchAllConditions?: Maybe<Scalars['Boolean']>;
|
|
1501
1554
|
};
|
|
1502
1555
|
export declare type FixedDiscountInput = {
|
|
1503
1556
|
amount?: InputMaybe<Scalars['Float']>;
|
|
@@ -1505,6 +1558,7 @@ export declare type FixedDiscountInput = {
|
|
|
1505
1558
|
isApplyByCartAmount?: InputMaybe<Scalars['Boolean']>;
|
|
1506
1559
|
lineItemQuantityRange?: InputMaybe<CampaignMinMaxRangeFieldInput>;
|
|
1507
1560
|
priceRange?: InputMaybe<CampaignMinMaxRangeFieldInput>;
|
|
1561
|
+
shouldMatchAllConditions?: InputMaybe<Scalars['Boolean']>;
|
|
1508
1562
|
};
|
|
1509
1563
|
export declare type FulFillOrderInput = {
|
|
1510
1564
|
lines: Array<FulfillOrderLineInput>;
|
|
@@ -1519,6 +1573,7 @@ export declare type FulfillOrderLineInput = {
|
|
|
1519
1573
|
quantity: Scalars['Float'];
|
|
1520
1574
|
};
|
|
1521
1575
|
export declare type GenerateCouponInput = {
|
|
1576
|
+
applicableCustomerId?: InputMaybe<Scalars['String']>;
|
|
1522
1577
|
canCombineWithOtherCampaigns: Scalars['Boolean'];
|
|
1523
1578
|
prefix: Scalars['String'];
|
|
1524
1579
|
quantity: Scalars['Int'];
|
|
@@ -1553,12 +1608,14 @@ export declare type GetY = {
|
|
|
1553
1608
|
amount: Scalars['Float'];
|
|
1554
1609
|
automaticallyAddItemToCart?: Maybe<Scalars['Boolean']>;
|
|
1555
1610
|
discountRatio: Scalars['Float'];
|
|
1611
|
+
discountType?: Maybe<CampaignGetYDiscountTypeEnum>;
|
|
1556
1612
|
filter: CampaignFilter;
|
|
1557
1613
|
};
|
|
1558
1614
|
export declare type GetYInput = {
|
|
1559
1615
|
amount: Scalars['Float'];
|
|
1560
1616
|
automaticallyAddItemToCart?: InputMaybe<Scalars['Boolean']>;
|
|
1561
1617
|
discountRatio: Scalars['Float'];
|
|
1618
|
+
discountType?: InputMaybe<CampaignGetYDiscountTypeEnum>;
|
|
1562
1619
|
filter: CampaignFilterInput;
|
|
1563
1620
|
};
|
|
1564
1621
|
export declare type GlobalTaxSettings = {
|
|
@@ -1571,6 +1628,15 @@ export declare type GlobalTaxSettings = {
|
|
|
1571
1628
|
storefrontId?: Maybe<Scalars['String']>;
|
|
1572
1629
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1573
1630
|
};
|
|
1631
|
+
export declare type GlobalTaxSettingsInput = {
|
|
1632
|
+
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1633
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
1634
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1635
|
+
isTaxExcludedOnPrices?: Scalars['Boolean'];
|
|
1636
|
+
isTaxExcludedOnShippingPrices?: Scalars['Boolean'];
|
|
1637
|
+
storefrontId?: InputMaybe<Scalars['String']>;
|
|
1638
|
+
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1639
|
+
};
|
|
1574
1640
|
export declare type HTMLMetaData = {
|
|
1575
1641
|
__typename?: 'HTMLMetaData';
|
|
1576
1642
|
/** Canonical URL list of entity. */
|
|
@@ -1653,6 +1719,31 @@ export declare enum ImportStatusEnum {
|
|
|
1653
1719
|
WAITING = "WAITING",
|
|
1654
1720
|
WAITING_FOR_IMPORT = "WAITING_FOR_IMPORT"
|
|
1655
1721
|
}
|
|
1722
|
+
/** Import Type */
|
|
1723
|
+
export declare enum ImportTypeEnum {
|
|
1724
|
+
CUSTOMER = "CUSTOMER",
|
|
1725
|
+
CUSTOMER_ATTRIBUTE = "CUSTOMER_ATTRIBUTE",
|
|
1726
|
+
CUSTOMER_REVIEW = "CUSTOMER_REVIEW",
|
|
1727
|
+
ORDER = "ORDER",
|
|
1728
|
+
ORDER_COUPON = "ORDER_COUPON",
|
|
1729
|
+
ORDER_RAFFLE_PARTICIPANT = "ORDER_RAFFLE_PARTICIPANT",
|
|
1730
|
+
PRODUCT = "PRODUCT",
|
|
1731
|
+
PRODUCT_ATTRIBUTE = "PRODUCT_ATTRIBUTE",
|
|
1732
|
+
PRODUCT_BACK_IN_STOCK_REMINDER = "PRODUCT_BACK_IN_STOCK_REMINDER",
|
|
1733
|
+
PRODUCT_BRAND = "PRODUCT_BRAND",
|
|
1734
|
+
PRODUCT_CATEGORY = "PRODUCT_CATEGORY",
|
|
1735
|
+
PRODUCT_ORDER = "PRODUCT_ORDER",
|
|
1736
|
+
PRODUCT_PRICE_LIST = "PRODUCT_PRICE_LIST",
|
|
1737
|
+
PRODUCT_PURCHASE_ORDER = "PRODUCT_PURCHASE_ORDER",
|
|
1738
|
+
PRODUCT_STOCK_COUNT = "PRODUCT_STOCK_COUNT",
|
|
1739
|
+
PRODUCT_STOCK_TRANSFER = "PRODUCT_STOCK_TRANSFER",
|
|
1740
|
+
REPORT_PURCHASE_ORDER_BY_DATE = "REPORT_PURCHASE_ORDER_BY_DATE",
|
|
1741
|
+
REPORT_SALES_BY_DATE = "REPORT_SALES_BY_DATE",
|
|
1742
|
+
REPORT_SALES_BY_GROUP_FIELDS = "REPORT_SALES_BY_GROUP_FIELDS",
|
|
1743
|
+
STOREFRONT_REDIRECT = "STOREFRONT_REDIRECT",
|
|
1744
|
+
STORE_FRONT_THEME_LOCALIZATION = "STORE_FRONT_THEME_LOCALIZATION",
|
|
1745
|
+
TRANSLATION = "TRANSLATION"
|
|
1746
|
+
}
|
|
1656
1747
|
export declare type Invoice = {
|
|
1657
1748
|
__typename?: 'Invoice';
|
|
1658
1749
|
/** It is the id of the order invoice. */
|
|
@@ -2008,6 +2099,7 @@ export declare type Mutation = {
|
|
|
2008
2099
|
/** Using this api, you can delete the categories of products. */
|
|
2009
2100
|
deleteCategoryList: Scalars['Boolean'];
|
|
2010
2101
|
deleteCouponList: Scalars['String'];
|
|
2102
|
+
deleteGlobalTaxSettingsList: Scalars['Boolean'];
|
|
2011
2103
|
deleteOrderTagList: Scalars['Boolean'];
|
|
2012
2104
|
/** Use this mutation to delete product attributes with specific ids. */
|
|
2013
2105
|
deleteProductAttributeList: Scalars['Boolean'];
|
|
@@ -2024,6 +2116,7 @@ export declare type Mutation = {
|
|
|
2024
2116
|
deleteProductVolumeDiscountList: Scalars['Boolean'];
|
|
2025
2117
|
/** Using this api, you can delete javascript script from a the storefront. */
|
|
2026
2118
|
deleteStorefrontJSScript: Scalars['Boolean'];
|
|
2119
|
+
deleteTaxSettingsList: Scalars['Boolean'];
|
|
2027
2120
|
/** Using this api, you can delete the variant types of products. */
|
|
2028
2121
|
deleteVariantTypeList: Scalars['Boolean'];
|
|
2029
2122
|
/** Use this mutation to delete vendors with specific vendor ids. */
|
|
@@ -2041,6 +2134,7 @@ export declare type Mutation = {
|
|
|
2041
2134
|
saveCampaign: Campaign;
|
|
2042
2135
|
/** Using this api, you can update the categories of products. */
|
|
2043
2136
|
saveCategory: Category;
|
|
2137
|
+
saveGlobalTaxSettings: GlobalTaxSettings;
|
|
2044
2138
|
saveOrderTag: OrderTag;
|
|
2045
2139
|
/** Use this mutation to create or update a product with provided input values. */
|
|
2046
2140
|
saveProduct: Product;
|
|
@@ -2061,6 +2155,7 @@ export declare type Mutation = {
|
|
|
2061
2155
|
saveSalesChannel?: Maybe<SalesChannel>;
|
|
2062
2156
|
/** Using this api, you can save javascript script to a the storefront. */
|
|
2063
2157
|
saveStorefrontJSScript: StorefrontJSScript;
|
|
2158
|
+
saveTaxSettings: TaxSettings;
|
|
2064
2159
|
/** Response indicating the status of operation. */
|
|
2065
2160
|
saveVariantPrices: Scalars['Boolean'];
|
|
2066
2161
|
/** Using this api, you can update the variant types of products. */
|
|
@@ -2121,6 +2216,9 @@ export declare type MutationdeleteCategoryListArgs = {
|
|
|
2121
2216
|
export declare type MutationdeleteCouponListArgs = {
|
|
2122
2217
|
idList: Array<Scalars['String']>;
|
|
2123
2218
|
};
|
|
2219
|
+
export declare type MutationdeleteGlobalTaxSettingsListArgs = {
|
|
2220
|
+
idList: Array<Scalars['String']>;
|
|
2221
|
+
};
|
|
2124
2222
|
export declare type MutationdeleteOrderTagListArgs = {
|
|
2125
2223
|
idList: Array<Scalars['String']>;
|
|
2126
2224
|
};
|
|
@@ -2148,6 +2246,9 @@ export declare type MutationdeleteProductVolumeDiscountListArgs = {
|
|
|
2148
2246
|
export declare type MutationdeleteStorefrontJSScriptArgs = {
|
|
2149
2247
|
storefrontIdList: Array<Scalars['String']>;
|
|
2150
2248
|
};
|
|
2249
|
+
export declare type MutationdeleteTaxSettingsListArgs = {
|
|
2250
|
+
idList: Array<Scalars['String']>;
|
|
2251
|
+
};
|
|
2151
2252
|
export declare type MutationdeleteVariantTypeListArgs = {
|
|
2152
2253
|
idList: Array<Scalars['String']>;
|
|
2153
2254
|
};
|
|
@@ -2178,6 +2279,9 @@ export declare type MutationsaveCampaignArgs = {
|
|
|
2178
2279
|
export declare type MutationsaveCategoryArgs = {
|
|
2179
2280
|
input: CategoryInput;
|
|
2180
2281
|
};
|
|
2282
|
+
export declare type MutationsaveGlobalTaxSettingsArgs = {
|
|
2283
|
+
input: GlobalTaxSettingsInput;
|
|
2284
|
+
};
|
|
2181
2285
|
export declare type MutationsaveOrderTagArgs = {
|
|
2182
2286
|
input: OrderTagInput;
|
|
2183
2287
|
};
|
|
@@ -2211,6 +2315,9 @@ export declare type MutationsaveSalesChannelArgs = {
|
|
|
2211
2315
|
export declare type MutationsaveStorefrontJSScriptArgs = {
|
|
2212
2316
|
input: StorefrontJSScriptInput;
|
|
2213
2317
|
};
|
|
2318
|
+
export declare type MutationsaveTaxSettingsArgs = {
|
|
2319
|
+
input: TaxSettingsInput;
|
|
2320
|
+
};
|
|
2214
2321
|
export declare type MutationsaveVariantPricesArgs = {
|
|
2215
2322
|
input: SaveVariantPricesInput;
|
|
2216
2323
|
};
|
|
@@ -2241,6 +2348,7 @@ export declare type MutationupdateSubscriptionStatusArgs = {
|
|
|
2241
2348
|
subscriptionStatus: CustomerEmailSubscriptionStatusesEnum;
|
|
2242
2349
|
};
|
|
2243
2350
|
export declare type NewCouponInput = {
|
|
2351
|
+
applicableCustomerId?: InputMaybe<Scalars['String']>;
|
|
2244
2352
|
canCombineWithOtherCampaigns: Scalars['Boolean'];
|
|
2245
2353
|
code: Scalars['String'];
|
|
2246
2354
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -2920,6 +3028,8 @@ export declare type OrderLineVariantBundleProductModel = {
|
|
|
2920
3028
|
/** It is the final price of the variant. */
|
|
2921
3029
|
finalPrice?: Maybe<Scalars['Float']>;
|
|
2922
3030
|
id: Scalars['String'];
|
|
3031
|
+
/** It is the option information of the variant value in the order line item. */
|
|
3032
|
+
options?: Maybe<Array<OrderLineOption>>;
|
|
2923
3033
|
/** Indicates the order of the product in the bundle. */
|
|
2924
3034
|
order: Scalars['Float'];
|
|
2925
3035
|
/** It is the price of the variant. */
|
|
@@ -3148,6 +3258,7 @@ export declare type OrderPriceList = {
|
|
|
3148
3258
|
name?: Maybe<Scalars['String']>;
|
|
3149
3259
|
};
|
|
3150
3260
|
export declare type OrderRefundInput = {
|
|
3261
|
+
forceRefund?: InputMaybe<Scalars['Boolean']>;
|
|
3151
3262
|
orderId: Scalars['String'];
|
|
3152
3263
|
orderRefundLines: Array<OrderRefundLineInput>;
|
|
3153
3264
|
paymentGatewayId: Scalars['String'];
|
|
@@ -3493,6 +3604,8 @@ export declare type Product = {
|
|
|
3493
3604
|
productVolumeDiscountId?: Maybe<Scalars['String']>;
|
|
3494
3605
|
/** List of sales channel ids of the product. */
|
|
3495
3606
|
salesChannelIds?: Maybe<Array<Scalars['String']>>;
|
|
3607
|
+
/** List of hidden sales channels of the product. */
|
|
3608
|
+
salesChannels?: Maybe<Array<ProductSalesChannel>>;
|
|
3496
3609
|
/** Short description of the product. */
|
|
3497
3610
|
shortDescription?: Maybe<Scalars['String']>;
|
|
3498
3611
|
/** List of product tag identifiers. */
|
|
@@ -3758,6 +3871,8 @@ export declare type ProductInput = {
|
|
|
3758
3871
|
productVariantTypes?: InputMaybe<Array<ProductVariantTypeInput>>;
|
|
3759
3872
|
productVolumeDiscountId?: InputMaybe<Scalars['String']>;
|
|
3760
3873
|
salesChannelIds?: InputMaybe<Array<Scalars['String']>>;
|
|
3874
|
+
/** List of sales channels of the product. */
|
|
3875
|
+
salesChannels?: InputMaybe<Array<ProductSalesChannelInput>>;
|
|
3761
3876
|
shortDescription?: InputMaybe<Scalars['String']>;
|
|
3762
3877
|
tagIds?: InputMaybe<Array<Scalars['String']>>;
|
|
3763
3878
|
translations?: InputMaybe<Array<ProductTranslationInput>>;
|
|
@@ -3953,6 +4068,28 @@ export declare type ProductPriceInput = {
|
|
|
3953
4068
|
priceListId?: InputMaybe<Scalars['String']>;
|
|
3954
4069
|
sellPrice: Scalars['Float'];
|
|
3955
4070
|
};
|
|
4071
|
+
export declare type ProductSalesChannel = {
|
|
4072
|
+
__typename?: 'ProductSalesChannel';
|
|
4073
|
+
id: Scalars['String'];
|
|
4074
|
+
/** Max purchasable quantity of the product for per cart. */
|
|
4075
|
+
maxQuantityPerCart?: Maybe<Scalars['Float']>;
|
|
4076
|
+
/** Min purchasable quantity of the product for per cart. */
|
|
4077
|
+
minQuantityPerCart?: Maybe<Scalars['Float']>;
|
|
4078
|
+
/** Volume discount id of the product. */
|
|
4079
|
+
productVolumeDiscountId?: Maybe<Scalars['String']>;
|
|
4080
|
+
quantitySettings?: Maybe<Array<Scalars['Float']>>;
|
|
4081
|
+
status: SalesChannelStatusEnum;
|
|
4082
|
+
};
|
|
4083
|
+
export declare type ProductSalesChannelInput = {
|
|
4084
|
+
id: Scalars['String'];
|
|
4085
|
+
/** Max purchasable quantity of the product for per cart. */
|
|
4086
|
+
maxQuantityPerCart?: InputMaybe<Scalars['Float']>;
|
|
4087
|
+
/** Min purchasable quantity of the product for per cart. */
|
|
4088
|
+
minQuantityPerCart?: InputMaybe<Scalars['Float']>;
|
|
4089
|
+
productVolumeDiscountId?: InputMaybe<Scalars['String']>;
|
|
4090
|
+
quantitySettings?: InputMaybe<Array<Scalars['Float']>>;
|
|
4091
|
+
status: SalesChannelStatusEnum;
|
|
4092
|
+
};
|
|
3956
4093
|
export declare type ProductSearchCustomerReviewSummaries = {
|
|
3957
4094
|
__typename?: 'ProductSearchCustomerReviewSummaries';
|
|
3958
4095
|
averageRating?: Maybe<Scalars['Float']>;
|
|
@@ -4255,6 +4392,7 @@ export declare type Query = {
|
|
|
4255
4392
|
listCustomer: CustomerPaginationResponse;
|
|
4256
4393
|
listCustomerAttribute: Array<CustomerAttribute>;
|
|
4257
4394
|
listDistrict: Array<District>;
|
|
4395
|
+
listGlobalTaxSettings: Array<GlobalTaxSettings>;
|
|
4258
4396
|
listLanguage: Array<Language>;
|
|
4259
4397
|
/** Using this api, you can view the payment features that a merchant has created for the app. */
|
|
4260
4398
|
listMerchantAppPayment: MerchantAppPaymentPaginationResponse;
|
|
@@ -4309,6 +4447,7 @@ export declare type QuerygetImageUploadUrlArgs = {
|
|
|
4309
4447
|
};
|
|
4310
4448
|
export declare type QuerygetImportJobDataArgs = {
|
|
4311
4449
|
importJobId: Scalars['String'];
|
|
4450
|
+
importType: ImportTypeEnum;
|
|
4312
4451
|
};
|
|
4313
4452
|
export declare type QuerygetVideoUploadUrlArgs = {
|
|
4314
4453
|
videoId: Scalars['String'];
|
|
@@ -4316,10 +4455,10 @@ export declare type QuerygetVideoUploadUrlArgs = {
|
|
|
4316
4455
|
export declare type QuerylistAbandonedCheckoutsArgs = {
|
|
4317
4456
|
id?: InputMaybe<StringFilterInput>;
|
|
4318
4457
|
input: ListAbandonedCartInput;
|
|
4458
|
+
lastActivityDate?: InputMaybe<DateFilterInput>;
|
|
4319
4459
|
mailSendDate?: InputMaybe<DateFilterInput>;
|
|
4320
4460
|
pagination?: InputMaybe<PaginationInput>;
|
|
4321
4461
|
sort?: InputMaybe<Scalars['String']>;
|
|
4322
|
-
updatedAt?: InputMaybe<DateFilterInput>;
|
|
4323
4462
|
};
|
|
4324
4463
|
export declare type QuerylistBranchArgs = {
|
|
4325
4464
|
id?: InputMaybe<StringFilterInput>;
|
|
@@ -4329,10 +4468,13 @@ export declare type QuerylistBranchArgs = {
|
|
|
4329
4468
|
updatedAt?: InputMaybe<DateFilterInput>;
|
|
4330
4469
|
};
|
|
4331
4470
|
export declare type QuerylistCampaignArgs = {
|
|
4471
|
+
canCombineWithOtherCampaigns?: InputMaybe<Scalars['Boolean']>;
|
|
4332
4472
|
id?: InputMaybe<StringFilterInput>;
|
|
4333
4473
|
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
4334
4474
|
pagination?: InputMaybe<PaginationInput>;
|
|
4335
4475
|
search?: InputMaybe<Scalars['String']>;
|
|
4476
|
+
sort?: InputMaybe<Scalars['String']>;
|
|
4477
|
+
type?: InputMaybe<CampaignTypeEnum>;
|
|
4336
4478
|
updatedAt?: InputMaybe<DateFilterInput>;
|
|
4337
4479
|
};
|
|
4338
4480
|
export declare type QuerylistCargoCompanyArgs = {
|
|
@@ -4388,6 +4530,10 @@ export declare type QuerylistDistrictArgs = {
|
|
|
4388
4530
|
stateId?: InputMaybe<StringFilterInput>;
|
|
4389
4531
|
updatedAt?: InputMaybe<DateFilterInput>;
|
|
4390
4532
|
};
|
|
4533
|
+
export declare type QuerylistGlobalTaxSettingsArgs = {
|
|
4534
|
+
id?: InputMaybe<StringFilterInput>;
|
|
4535
|
+
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
4536
|
+
};
|
|
4391
4537
|
export declare type QuerylistLanguageArgs = {
|
|
4392
4538
|
id?: InputMaybe<StringFilterInput>;
|
|
4393
4539
|
};
|
|
@@ -4436,6 +4582,7 @@ export declare type QuerylistProductArgs = {
|
|
|
4436
4582
|
attributeId?: InputMaybe<ProductAttributeFilterInput>;
|
|
4437
4583
|
barcodeList?: InputMaybe<StringFilterInput>;
|
|
4438
4584
|
brandId?: InputMaybe<StringFilterInput>;
|
|
4585
|
+
bundleProductsProductId?: InputMaybe<StringFilterInput>;
|
|
4439
4586
|
categoryIds?: InputMaybe<CategoryFilterInput>;
|
|
4440
4587
|
id?: InputMaybe<StringFilterInput>;
|
|
4441
4588
|
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -4593,6 +4740,7 @@ export declare type SalesChannelPaymentGateway = {
|
|
|
4593
4740
|
};
|
|
4594
4741
|
export declare enum SalesChannelStatusEnum {
|
|
4595
4742
|
HIDDEN = "HIDDEN",
|
|
4743
|
+
PASSIVE = "PASSIVE",
|
|
4596
4744
|
VISIBLE = "VISIBLE"
|
|
4597
4745
|
}
|
|
4598
4746
|
export declare type SalesChannelStockLocation = {
|
|
@@ -4705,6 +4853,7 @@ export declare type SearchProduct = {
|
|
|
4705
4853
|
productVolumeDiscountId?: Maybe<Scalars['String']>;
|
|
4706
4854
|
reviewCount?: Maybe<Scalars['Float']>;
|
|
4707
4855
|
salesChannelIds?: Maybe<Array<Scalars['String']>>;
|
|
4856
|
+
salesChannels?: Maybe<Array<SearchProductSalesChannel>>;
|
|
4708
4857
|
shortDescription?: Maybe<Scalars['String']>;
|
|
4709
4858
|
stars?: Maybe<Array<SearchProductCustomerReviewStar>>;
|
|
4710
4859
|
tags?: Maybe<Array<SearchProductTag>>;
|
|
@@ -4887,6 +5036,15 @@ export declare type SearchProductProductUnit = {
|
|
|
4887
5036
|
name: Scalars['String'];
|
|
4888
5037
|
translations?: Maybe<Array<ProductUnitTranslation>>;
|
|
4889
5038
|
};
|
|
5039
|
+
export declare type SearchProductSalesChannel = {
|
|
5040
|
+
__typename?: 'SearchProductSalesChannel';
|
|
5041
|
+
id: Scalars['String'];
|
|
5042
|
+
maxQuantityPerCart?: Maybe<Scalars['Float']>;
|
|
5043
|
+
minQuantityPerCart?: Maybe<Scalars['Float']>;
|
|
5044
|
+
productVolumeDiscountId?: Maybe<Scalars['String']>;
|
|
5045
|
+
quantitySettings?: Maybe<Array<Scalars['Float']>>;
|
|
5046
|
+
status: SalesChannelStatusEnum;
|
|
5047
|
+
};
|
|
4890
5048
|
export declare type SearchProductStockLocation = {
|
|
4891
5049
|
__typename?: 'SearchProductStockLocation';
|
|
4892
5050
|
stockCount: Scalars['Float'];
|
|
@@ -5131,6 +5289,10 @@ export declare type StockLocationAddressCountry = {
|
|
|
5131
5289
|
code?: Maybe<Scalars['String']>;
|
|
5132
5290
|
/** It is the id of the country of the address. */
|
|
5133
5291
|
id?: Maybe<Scalars['String']>;
|
|
5292
|
+
/** It is the code of the country of the address. */
|
|
5293
|
+
iso2?: Maybe<Scalars['String']>;
|
|
5294
|
+
/** It is the code of the country of the address. */
|
|
5295
|
+
iso3?: Maybe<Scalars['String']>;
|
|
5134
5296
|
/** It is the name of the country of the address. */
|
|
5135
5297
|
name: Scalars['String'];
|
|
5136
5298
|
};
|
|
@@ -5272,22 +5434,51 @@ export declare type TaxSettingsGiftPackageTaxRate = {
|
|
|
5272
5434
|
stateId?: Maybe<Scalars['String']>;
|
|
5273
5435
|
taxRate: Scalars['Float'];
|
|
5274
5436
|
};
|
|
5437
|
+
export declare type TaxSettingsGiftPackageTaxRateInput = {
|
|
5438
|
+
stateId?: InputMaybe<Scalars['String']>;
|
|
5439
|
+
taxRate: Scalars['Float'];
|
|
5440
|
+
};
|
|
5441
|
+
export declare type TaxSettingsInput = {
|
|
5442
|
+
countryId: Scalars['String'];
|
|
5443
|
+
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
5444
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
5445
|
+
giftPackageTaxRates?: InputMaybe<Array<TaxSettingsGiftPackageTaxRateInput>>;
|
|
5446
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
5447
|
+
productOverrides: Array<TaxSettingsProductOverrideInput>;
|
|
5448
|
+
rates?: InputMaybe<Array<TaxSettingsRateInput>>;
|
|
5449
|
+
shippingTaxRates?: InputMaybe<Array<TaxSettingsShippingTaxRateInput>>;
|
|
5450
|
+
taxRate: Scalars['Float'];
|
|
5451
|
+
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
5452
|
+
};
|
|
5275
5453
|
export declare type TaxSettingsProductOverride = {
|
|
5276
5454
|
__typename?: 'TaxSettingsProductOverride';
|
|
5277
5455
|
productTagIds: Array<Scalars['String']>;
|
|
5278
5456
|
stateId?: Maybe<Scalars['String']>;
|
|
5279
5457
|
taxRate: Scalars['Float'];
|
|
5280
5458
|
};
|
|
5459
|
+
export declare type TaxSettingsProductOverrideInput = {
|
|
5460
|
+
productTagIds: Array<Scalars['String']>;
|
|
5461
|
+
stateId?: InputMaybe<Scalars['String']>;
|
|
5462
|
+
taxRate: Scalars['Float'];
|
|
5463
|
+
};
|
|
5281
5464
|
export declare type TaxSettingsRate = {
|
|
5282
5465
|
__typename?: 'TaxSettingsRate';
|
|
5283
5466
|
stateId: Scalars['String'];
|
|
5284
5467
|
taxRate: Scalars['Float'];
|
|
5285
5468
|
};
|
|
5469
|
+
export declare type TaxSettingsRateInput = {
|
|
5470
|
+
stateId: Scalars['String'];
|
|
5471
|
+
taxRate: Scalars['Float'];
|
|
5472
|
+
};
|
|
5286
5473
|
export declare type TaxSettingsShippingTaxRate = {
|
|
5287
5474
|
__typename?: 'TaxSettingsShippingTaxRate';
|
|
5288
5475
|
stateId?: Maybe<Scalars['String']>;
|
|
5289
5476
|
taxRate: Scalars['Float'];
|
|
5290
5477
|
};
|
|
5478
|
+
export declare type TaxSettingsShippingTaxRateInput = {
|
|
5479
|
+
stateId?: InputMaybe<Scalars['String']>;
|
|
5480
|
+
taxRate: Scalars['Float'];
|
|
5481
|
+
};
|
|
5291
5482
|
export declare type Terminal = {
|
|
5292
5483
|
__typename?: 'Terminal';
|
|
5293
5484
|
branchId: Scalars['String'];
|
|
@@ -5297,6 +5488,17 @@ export declare type Terminal = {
|
|
|
5297
5488
|
name: Scalars['String'];
|
|
5298
5489
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
5299
5490
|
};
|
|
5491
|
+
export declare type TieredDiscountInput = {
|
|
5492
|
+
filters?: InputMaybe<Array<CampaignFilterInput>>;
|
|
5493
|
+
isApplyByCartAmount?: InputMaybe<Scalars['Boolean']>;
|
|
5494
|
+
rules: Array<TieredDiscountRuleInput>;
|
|
5495
|
+
shouldMatchAllConditions?: InputMaybe<Scalars['Boolean']>;
|
|
5496
|
+
};
|
|
5497
|
+
export declare type TieredDiscountRuleInput = {
|
|
5498
|
+
amount: Scalars['Float'];
|
|
5499
|
+
lineItemQuantityRange?: InputMaybe<CampaignMinMaxRangeFieldInput>;
|
|
5500
|
+
priceRange?: InputMaybe<CampaignMinMaxRangeFieldInput>;
|
|
5501
|
+
};
|
|
5300
5502
|
export declare type TimelineInput = {
|
|
5301
5503
|
/** The message you want to add */
|
|
5302
5504
|
message: Scalars['String'];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.VendorStatusEnum = exports.VariantSelectionTypeEnum = exports.UserAgentDeviceType = exports.TransactionTypeEnum = exports.TransactionStatusEnum = exports.TransactionCardTypeEnum = exports.TransactionCardAssociationEnum = exports.SubscriptionPriceCurrencyEnum = exports.SubscriptionPeriodEnum = exports.SubscriptionCodeEnum = exports.StorefrontJSScriptContentTypeEnum = exports.StockLocationTypeEnum = exports.StockLocationDeliveryTimeEnum = exports.SourceTypeEnum = exports.ShippingZoneRateConditionType = exports.ShippingSettingsType = exports.SalesChannelTypeEnum = exports.SalesChannelStatusEnum = exports.SFAnalyticsTrafficSourceEnum = exports.ProductVolumeDiscountScopeEnum = exports.ProductUnitTypeEnum = exports.ProductTypeEnum = exports.ProductOptionTypeEnum = exports.ProductOptionSelectTypeEnum = exports.ProductAttributeTypeEnum = exports.PriceListTypeEnum = exports.PriceListRulesOperationTypeEnum = exports.PriceListRulesAmountTypeEnum = exports.PriceListCurrencyRateTypeEnum = exports.PaymentMethodTypeEnum = exports.OrderStatusEnum = exports.OrderShippingMethodEnum = void 0;
|
|
3
|
+
exports.OrderLineItemStatusEnum = exports.OrderCancelledReasonEnum = exports.OrderAmountTypeEnum = exports.OrderAdjustmentEnum = exports.MerchantSubscriptionStatusEnum = exports.MerchantSettingsAddressTypeEnum = exports.MerchantRegionEnum = exports.MerchantAppPaymentTypeEnum = exports.MerchantAppPaymentStatusEnum = exports.LocalDeliverySettingsDeliveryTimeType = exports.LocalDeliverySettingsDayTypes = exports.InvoiceTypeEnum = exports.ImportTypeEnum = exports.ImportStatusEnum = exports.HTMLMetaDataTargetTypeEnum = exports.CustomerRegistrationSourceEnum = exports.CustomerPriceListRuleValueTypeEnum = exports.CustomerPriceListRuleFilterTypeEnum = exports.CustomerGenderTypeEnum = exports.CustomerEmailSubscriptionStatusesEnum = exports.CustomerAttributeTypeEnum = exports.CustomerAttributeRegisterPageRequirementEnum = exports.CustomerAttributePermissionEnum = exports.CustomerAccountStatusEnum = exports.CheckoutStatusEnum = exports.CheckoutRecoveryStatusEnum = exports.CheckoutRecoveryEmailStatusEnum = exports.CategoryProductsOrderTypeEnum = exports.CategoryConditionTypeEnum = exports.CategoryConditionMethodEnum = exports.CartV2StatusEnum = exports.CartStatusEnum = exports.CartCreatedByEnum = exports.CartCampaignOfferStatus = exports.CampaignTypeEnum = exports.CampaignOfferTypeEnum = exports.CampaignOfferTriggerFilterTypeEnum = exports.CampaignOfferTargetPageTypeEnum = exports.CampaignOfferProductShowCriteriaEnum = exports.CampaignOfferProductApplicablePriceEnum = exports.CampaignOfferFollowUpActionTypeEnum = exports.CampaignGetYDiscountTypeEnum = exports.CampaignFilterTypeEnum = exports.CampaignCreatedForEnum = exports.CampaignApplicablePriceEnum = exports.BranchSettingsRequirementEnum = exports.BranchSettingsGridLayoutEnum = exports.BranchFavoriteTypeEnum = exports.AppScopeEnum = exports.AbandonedCartSettingsNotificationTypeEnum = void 0;
|
|
4
|
+
exports.VendorStatusEnum = exports.VariantSelectionTypeEnum = exports.UserAgentDeviceType = exports.TransactionTypeEnum = exports.TransactionStatusEnum = exports.TransactionCardTypeEnum = exports.TransactionCardAssociationEnum = exports.SubscriptionPriceCurrencyEnum = exports.SubscriptionPeriodEnum = exports.SubscriptionCodeEnum = exports.StorefrontJSScriptContentTypeEnum = exports.StockLocationTypeEnum = exports.StockLocationDeliveryTimeEnum = exports.SourceTypeEnum = exports.ShippingZoneRateConditionType = exports.ShippingSettingsType = exports.SalesChannelTypeEnum = exports.SalesChannelStatusEnum = exports.SFAnalyticsTrafficSourceEnum = exports.ProductVolumeDiscountScopeEnum = exports.ProductUnitTypeEnum = exports.ProductTypeEnum = exports.ProductOptionTypeEnum = exports.ProductOptionSelectTypeEnum = exports.ProductAttributeTypeEnum = exports.PriceListTypeEnum = exports.PriceListRulesOperationTypeEnum = exports.PriceListRulesAmountTypeEnum = exports.PriceListCurrencyRateTypeEnum = exports.PaymentMethodTypeEnum = exports.OrderStatusEnum = exports.OrderShippingMethodEnum = exports.OrderPaymentStatusEnum = exports.OrderPackageStatusEnum = exports.OrderPackageFulfillStatusEnum = void 0;
|
|
5
5
|
var AbandonedCartSettingsNotificationTypeEnum;
|
|
6
6
|
(function (AbandonedCartSettingsNotificationTypeEnum) {
|
|
7
7
|
AbandonedCartSettingsNotificationTypeEnum["EMAIL"] = "EMAIL";
|
|
@@ -54,11 +54,18 @@ var CampaignCreatedForEnum;
|
|
|
54
54
|
var CampaignFilterTypeEnum;
|
|
55
55
|
(function (CampaignFilterTypeEnum) {
|
|
56
56
|
CampaignFilterTypeEnum["CATEGORY"] = "CATEGORY";
|
|
57
|
+
CampaignFilterTypeEnum["DYNAMIC_CATEGORY"] = "DYNAMIC_CATEGORY";
|
|
57
58
|
CampaignFilterTypeEnum["PRODUCT"] = "PRODUCT";
|
|
58
59
|
CampaignFilterTypeEnum["PRODUCT_BRAND"] = "PRODUCT_BRAND";
|
|
59
60
|
CampaignFilterTypeEnum["PRODUCT_TAG"] = "PRODUCT_TAG";
|
|
60
61
|
CampaignFilterTypeEnum["VARIANT"] = "VARIANT";
|
|
61
62
|
})(CampaignFilterTypeEnum = exports.CampaignFilterTypeEnum || (exports.CampaignFilterTypeEnum = {}));
|
|
63
|
+
var CampaignGetYDiscountTypeEnum;
|
|
64
|
+
(function (CampaignGetYDiscountTypeEnum) {
|
|
65
|
+
CampaignGetYDiscountTypeEnum["AMOUNT"] = "AMOUNT";
|
|
66
|
+
CampaignGetYDiscountTypeEnum["FIXED_PRODUCT_PRICE"] = "FIXED_PRODUCT_PRICE";
|
|
67
|
+
CampaignGetYDiscountTypeEnum["RATIO"] = "RATIO";
|
|
68
|
+
})(CampaignGetYDiscountTypeEnum = exports.CampaignGetYDiscountTypeEnum || (exports.CampaignGetYDiscountTypeEnum = {}));
|
|
62
69
|
var CampaignOfferFollowUpActionTypeEnum;
|
|
63
70
|
(function (CampaignOfferFollowUpActionTypeEnum) {
|
|
64
71
|
CampaignOfferFollowUpActionTypeEnum["DO_NOTHING"] = "DO_NOTHING";
|
|
@@ -216,6 +223,12 @@ var CustomerEmailSubscriptionStatusesEnum;
|
|
|
216
223
|
CustomerEmailSubscriptionStatusesEnum["PENDING_CONFIRMATION"] = "PENDING_CONFIRMATION";
|
|
217
224
|
CustomerEmailSubscriptionStatusesEnum["SUBSCRIBED"] = "SUBSCRIBED";
|
|
218
225
|
})(CustomerEmailSubscriptionStatusesEnum = exports.CustomerEmailSubscriptionStatusesEnum || (exports.CustomerEmailSubscriptionStatusesEnum = {}));
|
|
226
|
+
var CustomerGenderTypeEnum;
|
|
227
|
+
(function (CustomerGenderTypeEnum) {
|
|
228
|
+
CustomerGenderTypeEnum["FEMALE"] = "FEMALE";
|
|
229
|
+
CustomerGenderTypeEnum["MALE"] = "MALE";
|
|
230
|
+
CustomerGenderTypeEnum["OTHER"] = "OTHER";
|
|
231
|
+
})(CustomerGenderTypeEnum = exports.CustomerGenderTypeEnum || (exports.CustomerGenderTypeEnum = {}));
|
|
219
232
|
var CustomerPriceListRuleFilterTypeEnum;
|
|
220
233
|
(function (CustomerPriceListRuleFilterTypeEnum) {
|
|
221
234
|
CustomerPriceListRuleFilterTypeEnum["CATEGORY"] = "CATEGORY";
|
|
@@ -256,6 +269,32 @@ var ImportStatusEnum;
|
|
|
256
269
|
ImportStatusEnum["WAITING"] = "WAITING";
|
|
257
270
|
ImportStatusEnum["WAITING_FOR_IMPORT"] = "WAITING_FOR_IMPORT";
|
|
258
271
|
})(ImportStatusEnum = exports.ImportStatusEnum || (exports.ImportStatusEnum = {}));
|
|
272
|
+
/** Import Type */
|
|
273
|
+
var ImportTypeEnum;
|
|
274
|
+
(function (ImportTypeEnum) {
|
|
275
|
+
ImportTypeEnum["CUSTOMER"] = "CUSTOMER";
|
|
276
|
+
ImportTypeEnum["CUSTOMER_ATTRIBUTE"] = "CUSTOMER_ATTRIBUTE";
|
|
277
|
+
ImportTypeEnum["CUSTOMER_REVIEW"] = "CUSTOMER_REVIEW";
|
|
278
|
+
ImportTypeEnum["ORDER"] = "ORDER";
|
|
279
|
+
ImportTypeEnum["ORDER_COUPON"] = "ORDER_COUPON";
|
|
280
|
+
ImportTypeEnum["ORDER_RAFFLE_PARTICIPANT"] = "ORDER_RAFFLE_PARTICIPANT";
|
|
281
|
+
ImportTypeEnum["PRODUCT"] = "PRODUCT";
|
|
282
|
+
ImportTypeEnum["PRODUCT_ATTRIBUTE"] = "PRODUCT_ATTRIBUTE";
|
|
283
|
+
ImportTypeEnum["PRODUCT_BACK_IN_STOCK_REMINDER"] = "PRODUCT_BACK_IN_STOCK_REMINDER";
|
|
284
|
+
ImportTypeEnum["PRODUCT_BRAND"] = "PRODUCT_BRAND";
|
|
285
|
+
ImportTypeEnum["PRODUCT_CATEGORY"] = "PRODUCT_CATEGORY";
|
|
286
|
+
ImportTypeEnum["PRODUCT_ORDER"] = "PRODUCT_ORDER";
|
|
287
|
+
ImportTypeEnum["PRODUCT_PRICE_LIST"] = "PRODUCT_PRICE_LIST";
|
|
288
|
+
ImportTypeEnum["PRODUCT_PURCHASE_ORDER"] = "PRODUCT_PURCHASE_ORDER";
|
|
289
|
+
ImportTypeEnum["PRODUCT_STOCK_COUNT"] = "PRODUCT_STOCK_COUNT";
|
|
290
|
+
ImportTypeEnum["PRODUCT_STOCK_TRANSFER"] = "PRODUCT_STOCK_TRANSFER";
|
|
291
|
+
ImportTypeEnum["REPORT_PURCHASE_ORDER_BY_DATE"] = "REPORT_PURCHASE_ORDER_BY_DATE";
|
|
292
|
+
ImportTypeEnum["REPORT_SALES_BY_DATE"] = "REPORT_SALES_BY_DATE";
|
|
293
|
+
ImportTypeEnum["REPORT_SALES_BY_GROUP_FIELDS"] = "REPORT_SALES_BY_GROUP_FIELDS";
|
|
294
|
+
ImportTypeEnum["STOREFRONT_REDIRECT"] = "STOREFRONT_REDIRECT";
|
|
295
|
+
ImportTypeEnum["STORE_FRONT_THEME_LOCALIZATION"] = "STORE_FRONT_THEME_LOCALIZATION";
|
|
296
|
+
ImportTypeEnum["TRANSLATION"] = "TRANSLATION";
|
|
297
|
+
})(ImportTypeEnum = exports.ImportTypeEnum || (exports.ImportTypeEnum = {}));
|
|
259
298
|
var InvoiceTypeEnum;
|
|
260
299
|
(function (InvoiceTypeEnum) {
|
|
261
300
|
InvoiceTypeEnum["COMPANY"] = "COMPANY";
|
|
@@ -529,6 +568,7 @@ var SFAnalyticsTrafficSourceEnum;
|
|
|
529
568
|
var SalesChannelStatusEnum;
|
|
530
569
|
(function (SalesChannelStatusEnum) {
|
|
531
570
|
SalesChannelStatusEnum["HIDDEN"] = "HIDDEN";
|
|
571
|
+
SalesChannelStatusEnum["PASSIVE"] = "PASSIVE";
|
|
532
572
|
SalesChannelStatusEnum["VISIBLE"] = "VISIBLE";
|
|
533
573
|
})(SalesChannelStatusEnum = exports.SalesChannelStatusEnum || (exports.SalesChannelStatusEnum = {}));
|
|
534
574
|
/** Sales Channel Type */
|