@ikas/api-client 1.0.36 → 1.0.37
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 +4 -4
- package/dist/api/admin/generated/default-gqls.js +21 -21
- package/dist/api/admin/generated/default-gqls.js.map +1 -1
- package/dist/api/admin/generated/index.d.ts +160 -119
- package/dist/api/admin/generated/index.js +4 -12
- package/dist/api/admin/generated/index.js.map +1 -1
- package/dist/api/admin/generated/mutation.d.ts +3 -3
- package/dist/api/admin/generated/mutation.js +14 -14
- package/dist/api/admin/generated/mutation.js.map +1 -1
- package/dist/api/admin/generated/query.d.ts +3 -3
- package/dist/api/admin/generated/query.js +14 -14
- package/dist/api/admin/generated/query.js.map +1 -1
- package/package.json +1 -1
|
@@ -429,16 +429,12 @@ export declare type BuyXThenGetYInput = {
|
|
|
429
429
|
getY: GetYInput;
|
|
430
430
|
maxUsagePerOrder?: InputMaybe<Scalars['Int']>;
|
|
431
431
|
};
|
|
432
|
-
export declare type CSVImportResponse = {
|
|
433
|
-
__typename?: 'CSVImportResponse';
|
|
434
|
-
csvContent?: Maybe<Scalars['String']>;
|
|
435
|
-
isSuccess: Scalars['Boolean'];
|
|
436
|
-
};
|
|
437
432
|
export declare type Campaign = {
|
|
438
433
|
__typename?: 'Campaign';
|
|
439
434
|
applicableCustomerGroupIds?: Maybe<Array<Scalars['String']>>;
|
|
440
435
|
applicableCustomerIds?: Maybe<Array<Scalars['String']>>;
|
|
441
436
|
applicablePrice: CampaignApplicablePriceEnum;
|
|
437
|
+
applyCampaignToProductPrice?: Maybe<Scalars['Boolean']>;
|
|
442
438
|
buyXThenGetY?: Maybe<BuyXThenGetY>;
|
|
443
439
|
canCombineWithOtherCampaigns: Scalars['Boolean'];
|
|
444
440
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
@@ -499,6 +495,7 @@ export declare type CampaignInput = {
|
|
|
499
495
|
applicableCustomerGroupIds?: InputMaybe<Array<Scalars['String']>>;
|
|
500
496
|
applicableCustomerIds?: InputMaybe<Array<Scalars['String']>>;
|
|
501
497
|
applicablePrice: CampaignApplicablePriceEnum;
|
|
498
|
+
applyCampaignToProductPrice?: InputMaybe<Scalars['Boolean']>;
|
|
502
499
|
buyXThenGetY?: InputMaybe<BuyXThenGetYInput>;
|
|
503
500
|
canCombineWithOtherCampaigns: Scalars['Boolean'];
|
|
504
501
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
@@ -514,6 +511,7 @@ export declare type CampaignInput = {
|
|
|
514
511
|
onlyUseCustomer?: InputMaybe<Scalars['Boolean']>;
|
|
515
512
|
salesChannelIds?: InputMaybe<Array<Scalars['String']>>;
|
|
516
513
|
title: Scalars['String'];
|
|
514
|
+
translations?: InputMaybe<Array<CampaignTranslationInput>>;
|
|
517
515
|
type: CampaignTypeEnum;
|
|
518
516
|
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
519
517
|
usageLimit?: InputMaybe<Scalars['Int']>;
|
|
@@ -641,6 +639,10 @@ export declare type CampaignTranslation = {
|
|
|
641
639
|
/** It is the title information of the translation. */
|
|
642
640
|
title?: Maybe<Scalars['String']>;
|
|
643
641
|
};
|
|
642
|
+
export declare type CampaignTranslationInput = {
|
|
643
|
+
locale: Scalars['String'];
|
|
644
|
+
title?: InputMaybe<Scalars['String']>;
|
|
645
|
+
};
|
|
644
646
|
export declare enum CampaignTypeEnum {
|
|
645
647
|
BUY_X_THEN_GET_Y = "BUY_X_THEN_GET_Y",
|
|
646
648
|
FIXED_AMOUNT = "FIXED_AMOUNT",
|
|
@@ -1145,6 +1147,8 @@ export declare type CreateOrderInput = {
|
|
|
1145
1147
|
export declare type CreateOrderWithTransactionsInput = {
|
|
1146
1148
|
/** If there is no customer connected to the e-mail in the order and it is not desired to create a new customer with this e-mail, it can be sent as `true`. */
|
|
1147
1149
|
disableAutoCreateCustomer?: InputMaybe<Scalars['Boolean']>;
|
|
1150
|
+
/** If this value is sent as 'true,' your order lines will not be taxed. */
|
|
1151
|
+
isTaxFreeOrder?: InputMaybe<Scalars['Boolean']>;
|
|
1148
1152
|
/** Contains the order information to be created. */
|
|
1149
1153
|
order: CreateOrderInput;
|
|
1150
1154
|
/**
|
|
@@ -1315,6 +1319,7 @@ export declare type CustomerAttribute = {
|
|
|
1315
1319
|
name: Scalars['String'];
|
|
1316
1320
|
options?: Maybe<Array<CustomerAttributeOption>>;
|
|
1317
1321
|
order?: Maybe<Scalars['Float']>;
|
|
1322
|
+
routings?: Maybe<Array<CustomerAttributeRouting>>;
|
|
1318
1323
|
salesChannels?: Maybe<Array<CustomerAttributeSalesChannel>>;
|
|
1319
1324
|
translations?: Maybe<Array<CustomerAttributeTranslation>>;
|
|
1320
1325
|
type: CustomerAttributeTypeEnum;
|
|
@@ -1346,6 +1351,10 @@ export declare enum CustomerAttributeRegisterPageRequirementEnum {
|
|
|
1346
1351
|
MANDATORY = "MANDATORY",
|
|
1347
1352
|
OPTIONAL = "OPTIONAL"
|
|
1348
1353
|
}
|
|
1354
|
+
export declare type CustomerAttributeRouting = {
|
|
1355
|
+
__typename?: 'CustomerAttributeRouting';
|
|
1356
|
+
storefrontRoutingId: Scalars['String'];
|
|
1357
|
+
};
|
|
1349
1358
|
export declare type CustomerAttributeSalesChannel = {
|
|
1350
1359
|
__typename?: 'CustomerAttributeSalesChannel';
|
|
1351
1360
|
permission: CustomerAttributePermissionEnum;
|
|
@@ -1440,7 +1449,8 @@ export declare enum CustomerRegistrationSourceEnum {
|
|
|
1440
1449
|
apple = "apple",
|
|
1441
1450
|
credentials = "credentials",
|
|
1442
1451
|
facebook = "facebook",
|
|
1443
|
-
google = "google"
|
|
1452
|
+
google = "google",
|
|
1453
|
+
twitch = "twitch"
|
|
1444
1454
|
}
|
|
1445
1455
|
export declare type DateFilterInput = {
|
|
1446
1456
|
/** `equal`. The filter used for equality. */
|
|
@@ -1485,12 +1495,14 @@ export declare type FixedDiscount = {
|
|
|
1485
1495
|
__typename?: 'FixedDiscount';
|
|
1486
1496
|
amount?: Maybe<Scalars['Float']>;
|
|
1487
1497
|
filters?: Maybe<Array<CampaignFilter>>;
|
|
1498
|
+
isApplyByCartAmount?: Maybe<Scalars['Boolean']>;
|
|
1488
1499
|
lineItemQuantityRange?: Maybe<CampaignMinMaxRangeField>;
|
|
1489
1500
|
priceRange?: Maybe<CampaignMinMaxRangeField>;
|
|
1490
1501
|
};
|
|
1491
1502
|
export declare type FixedDiscountInput = {
|
|
1492
1503
|
amount?: InputMaybe<Scalars['Float']>;
|
|
1493
1504
|
filters?: InputMaybe<Array<CampaignFilterInput>>;
|
|
1505
|
+
isApplyByCartAmount?: InputMaybe<Scalars['Boolean']>;
|
|
1494
1506
|
lineItemQuantityRange?: InputMaybe<CampaignMinMaxRangeFieldInput>;
|
|
1495
1507
|
priceRange?: InputMaybe<CampaignMinMaxRangeFieldInput>;
|
|
1496
1508
|
};
|
|
@@ -1632,15 +1644,6 @@ export declare type HTMLMetaDataTranslationInput = {
|
|
|
1632
1644
|
pageTitle?: InputMaybe<Scalars['String']>;
|
|
1633
1645
|
slug?: InputMaybe<Scalars['String']>;
|
|
1634
1646
|
};
|
|
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
|
-
}
|
|
1644
1647
|
/** Import Status Type */
|
|
1645
1648
|
export declare enum ImportStatusEnum {
|
|
1646
1649
|
FAILED = "FAILED",
|
|
@@ -2012,6 +2015,7 @@ export declare type Mutation = {
|
|
|
2012
2015
|
deleteProductBrandList: Scalars['Boolean'];
|
|
2013
2016
|
/** Use this mutation to delete products with specific product ids. */
|
|
2014
2017
|
deleteProductList: Scalars['Boolean'];
|
|
2018
|
+
deleteProductOrderList: Scalars['Boolean'];
|
|
2015
2019
|
/** Using this api, you can delete the tags of products. */
|
|
2016
2020
|
deleteProductTagList: Scalars['Boolean'];
|
|
2017
2021
|
/** Using this api, you can delete the units of products. */
|
|
@@ -2031,7 +2035,6 @@ export declare type Mutation = {
|
|
|
2031
2035
|
/** Using this api, you can collect demo day. */
|
|
2032
2036
|
getAppDemoDay?: Maybe<Scalars['Float']>;
|
|
2033
2037
|
getOrderInvoicePdfUrl?: Maybe<Scalars['String']>;
|
|
2034
|
-
productAttributeImport: CSVImportResponse;
|
|
2035
2038
|
/** Use this mutation to refund given order lines. */
|
|
2036
2039
|
refundOrderLine: Order;
|
|
2037
2040
|
removeOrderTag: Scalars['Boolean'];
|
|
@@ -2045,6 +2048,7 @@ export declare type Mutation = {
|
|
|
2045
2048
|
saveProductAttribute: ProductAttribute;
|
|
2046
2049
|
/** Using this api, you can update the brands of products. */
|
|
2047
2050
|
saveProductBrand: ProductBrand;
|
|
2051
|
+
saveProductOrder: ProductOrder;
|
|
2048
2052
|
/** Use this mutation to define new stock or update stocks by location. */
|
|
2049
2053
|
saveProductStockLocations: Scalars['Boolean'];
|
|
2050
2054
|
/** Using this api, you can update the tags of products. */
|
|
@@ -2074,7 +2078,6 @@ export declare type Mutation = {
|
|
|
2074
2078
|
/** Response indicating the status of operation. */
|
|
2075
2079
|
updateProductSalesChannelStatus: Scalars['Boolean'];
|
|
2076
2080
|
updateSubscriptionStatus: Scalars['Boolean'];
|
|
2077
|
-
variantAttributeImport: CSVImportResponse;
|
|
2078
2081
|
};
|
|
2079
2082
|
export declare type MutationaddCustomTimelineEntryArgs = {
|
|
2080
2083
|
input: TimelineInput;
|
|
@@ -2130,6 +2133,9 @@ export declare type MutationdeleteProductBrandListArgs = {
|
|
|
2130
2133
|
export declare type MutationdeleteProductListArgs = {
|
|
2131
2134
|
idList: Array<Scalars['String']>;
|
|
2132
2135
|
};
|
|
2136
|
+
export declare type MutationdeleteProductOrderListArgs = {
|
|
2137
|
+
idList: Array<Scalars['String']>;
|
|
2138
|
+
};
|
|
2133
2139
|
export declare type MutationdeleteProductTagListArgs = {
|
|
2134
2140
|
idList: Array<Scalars['String']>;
|
|
2135
2141
|
};
|
|
@@ -2160,10 +2166,6 @@ export declare type MutationgetAppDemoDayArgs = {
|
|
|
2160
2166
|
export declare type MutationgetOrderInvoicePdfUrlArgs = {
|
|
2161
2167
|
input: GetOrderInvoicePdfUrlInput;
|
|
2162
2168
|
};
|
|
2163
|
-
export declare type MutationproductAttributeImportArgs = {
|
|
2164
|
-
file: Scalars['String'];
|
|
2165
|
-
fileType?: InputMaybe<ImportSourceEnum>;
|
|
2166
|
-
};
|
|
2167
2169
|
export declare type MutationrefundOrderLineArgs = {
|
|
2168
2170
|
input: OrderRefundInput;
|
|
2169
2171
|
};
|
|
@@ -2188,6 +2190,9 @@ export declare type MutationsaveProductAttributeArgs = {
|
|
|
2188
2190
|
export declare type MutationsaveProductBrandArgs = {
|
|
2189
2191
|
input: ProductBrandInput;
|
|
2190
2192
|
};
|
|
2193
|
+
export declare type MutationsaveProductOrderArgs = {
|
|
2194
|
+
input: ProductOrderInput;
|
|
2195
|
+
};
|
|
2191
2196
|
export declare type MutationsaveProductStockLocationsArgs = {
|
|
2192
2197
|
input: SaveStockLocationsInput;
|
|
2193
2198
|
};
|
|
@@ -2235,10 +2240,6 @@ export declare type MutationupdateSubscriptionStatusArgs = {
|
|
|
2235
2240
|
customerId: Scalars['String'];
|
|
2236
2241
|
subscriptionStatus: CustomerEmailSubscriptionStatusesEnum;
|
|
2237
2242
|
};
|
|
2238
|
-
export declare type MutationvariantAttributeImportArgs = {
|
|
2239
|
-
file: Scalars['String'];
|
|
2240
|
-
fileType?: InputMaybe<ImportSourceEnum>;
|
|
2241
|
-
};
|
|
2242
2243
|
export declare type NewCouponInput = {
|
|
2243
2244
|
canCombineWithOtherCampaigns: Scalars['Boolean'];
|
|
2244
2245
|
code: Scalars['String'];
|
|
@@ -2246,24 +2247,6 @@ export declare type NewCouponInput = {
|
|
|
2246
2247
|
usageLimit?: InputMaybe<Scalars['Int']>;
|
|
2247
2248
|
usageLimitPerCustomer?: InputMaybe<Scalars['Int']>;
|
|
2248
2249
|
};
|
|
2249
|
-
export declare type NumberFilterInput = {
|
|
2250
|
-
/** `equal`. The filter used for equality. */
|
|
2251
|
-
eq?: InputMaybe<Scalars['Float']>;
|
|
2252
|
-
/** `greater than` selects the documents where the value of the `input` is greater than to (** i.e. > **) a specified value (e.g. value.) */
|
|
2253
|
-
gt?: InputMaybe<Scalars['Float']>;
|
|
2254
|
-
/** `greater than or equals` selects the documents where the value of the `input` is greater than or equal to (** i.e. >= **) a specified value (e.g. value.) */
|
|
2255
|
-
gte?: InputMaybe<Scalars['Float']>;
|
|
2256
|
-
/** Returns a boolean indicating whether a specified value is in an array. */
|
|
2257
|
-
in?: InputMaybe<Array<Scalars['Float']>>;
|
|
2258
|
-
/** `less than` selects the documents where the value of the `input` is less than or equal to (** i.e. < **) a specified value (e.g. value.) */
|
|
2259
|
-
lt?: InputMaybe<Scalars['Float']>;
|
|
2260
|
-
/** `less than or equals` selects the documents where the value of the `input` is less than or equal to (** i.e. <= **) a specified value (e.g. value.) */
|
|
2261
|
-
lte?: InputMaybe<Scalars['Float']>;
|
|
2262
|
-
/** `not equal`. The filter used for not equality. */
|
|
2263
|
-
ne?: InputMaybe<Scalars['Float']>;
|
|
2264
|
-
/** Returns a boolean indicating whether a specified value is not in an array. */
|
|
2265
|
-
nin?: InputMaybe<Array<Scalars['Float']>>;
|
|
2266
|
-
};
|
|
2267
2250
|
export declare type Order = {
|
|
2268
2251
|
__typename?: 'Order';
|
|
2269
2252
|
abandonedCartFlows?: Maybe<Array<AbandonedCartFlow>>;
|
|
@@ -2299,9 +2282,11 @@ export declare type Order = {
|
|
|
2299
2282
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
2300
2283
|
/** Information about the customer. The order does not have to be a customer information. If the order was created by ikasPOS, the customer information may be null. */
|
|
2301
2284
|
customer?: Maybe<OrderCustomer>;
|
|
2285
|
+
customerGroups?: Maybe<Array<OrderCustomerGroup>>;
|
|
2302
2286
|
customerId?: Maybe<Scalars['String']>;
|
|
2303
2287
|
/** It shows the number of orders given by the relevant customer. */
|
|
2304
2288
|
customerOrderCount?: Maybe<Scalars['Float']>;
|
|
2289
|
+
customerSegments?: Maybe<Array<OrderCustomerSegment>>;
|
|
2305
2290
|
deleted: Scalars['Boolean'];
|
|
2306
2291
|
dueDate?: Maybe<Scalars['Timestamp']>;
|
|
2307
2292
|
/** A list of gift package line objects, each containing information about a gift package pricing in the order. */
|
|
@@ -2652,6 +2637,13 @@ export declare type OrderCustomer = {
|
|
|
2652
2637
|
/** It is the preferred language of the customer who created the order. */
|
|
2653
2638
|
preferredLanguage?: Maybe<Scalars['String']>;
|
|
2654
2639
|
};
|
|
2640
|
+
export declare type OrderCustomerGroup = {
|
|
2641
|
+
__typename?: 'OrderCustomerGroup';
|
|
2642
|
+
/** It is the customer's group id */
|
|
2643
|
+
id: Scalars['String'];
|
|
2644
|
+
/** It is the customer's group name */
|
|
2645
|
+
name: Scalars['String'];
|
|
2646
|
+
};
|
|
2655
2647
|
export declare type OrderCustomerInput = {
|
|
2656
2648
|
/** It is the email of the customer who created the order. */
|
|
2657
2649
|
email?: InputMaybe<Scalars['String']>;
|
|
@@ -2661,6 +2653,13 @@ export declare type OrderCustomerInput = {
|
|
|
2661
2653
|
/** It is the last name of the customer who created the order. */
|
|
2662
2654
|
lastName?: InputMaybe<Scalars['String']>;
|
|
2663
2655
|
};
|
|
2656
|
+
export declare type OrderCustomerSegment = {
|
|
2657
|
+
__typename?: 'OrderCustomerSegment';
|
|
2658
|
+
/** It is the customer's segment id */
|
|
2659
|
+
id: Scalars['String'];
|
|
2660
|
+
/** It is the customer's segment name */
|
|
2661
|
+
name: Scalars['String'];
|
|
2662
|
+
};
|
|
2664
2663
|
export declare type OrderGiftPackageLine = {
|
|
2665
2664
|
__typename?: 'OrderGiftPackageLine';
|
|
2666
2665
|
/** Indicates whether the gift cost is refunded if the order is refunded. **isRefunded** returns `true` if the amount is refunded. */
|
|
@@ -3551,23 +3550,24 @@ export declare type ProductAttributeInput = {
|
|
|
3551
3550
|
};
|
|
3552
3551
|
export declare type ProductAttributeOption = {
|
|
3553
3552
|
__typename?: 'ProductAttributeOption';
|
|
3553
|
+
/** It is the color code information of the product attribute option. It can be a maximum of 7 characters. */
|
|
3554
|
+
colorCode?: Maybe<Scalars['String']>;
|
|
3554
3555
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3555
3556
|
deleted: Scalars['Boolean'];
|
|
3556
3557
|
id: Scalars['ID'];
|
|
3557
3558
|
/** Name of the product attribute option */
|
|
3558
3559
|
name: Scalars['String'];
|
|
3560
|
+
/** It is the image information of the product attribute option. */
|
|
3561
|
+
thumbnailImageId?: Maybe<Scalars['String']>;
|
|
3559
3562
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
3560
3563
|
};
|
|
3561
|
-
export declare type ProductAttributeOptionFilterInput = {
|
|
3562
|
-
eq?: InputMaybe<Scalars['String']>;
|
|
3563
|
-
in?: InputMaybe<Array<Scalars['String']>>;
|
|
3564
|
-
nin?: InputMaybe<Array<Scalars['String']>>;
|
|
3565
|
-
};
|
|
3566
3564
|
export declare type ProductAttributeOptionInput = {
|
|
3565
|
+
colorCode?: InputMaybe<Scalars['String']>;
|
|
3567
3566
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3568
3567
|
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
3569
3568
|
id?: InputMaybe<Scalars['ID']>;
|
|
3570
3569
|
name: Scalars['String'];
|
|
3570
|
+
thumbnailImageId?: InputMaybe<Scalars['String']>;
|
|
3571
3571
|
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3572
3572
|
};
|
|
3573
3573
|
export declare type ProductAttributeOptionTranslation = {
|
|
@@ -3622,6 +3622,7 @@ export declare type ProductAttributeTranslationInput = {
|
|
|
3622
3622
|
export declare enum ProductAttributeTypeEnum {
|
|
3623
3623
|
BOOLEAN = "BOOLEAN",
|
|
3624
3624
|
CHOICE = "CHOICE",
|
|
3625
|
+
COLOR_THUMBNAIL_MULTIPLE_CHOICE = "COLOR_THUMBNAIL_MULTIPLE_CHOICE",
|
|
3625
3626
|
DATETIME = "DATETIME",
|
|
3626
3627
|
HTML = "HTML",
|
|
3627
3628
|
IMAGE = "IMAGE",
|
|
@@ -3766,10 +3767,6 @@ export declare type ProductInput = {
|
|
|
3766
3767
|
vendorId?: InputMaybe<Scalars['String']>;
|
|
3767
3768
|
weight?: InputMaybe<Scalars['Float']>;
|
|
3768
3769
|
};
|
|
3769
|
-
export declare type ProductLocaleFilterInput = {
|
|
3770
|
-
in?: InputMaybe<Array<Scalars['String']>>;
|
|
3771
|
-
notIn?: InputMaybe<Array<Scalars['String']>>;
|
|
3772
|
-
};
|
|
3773
3770
|
export declare type ProductOption = {
|
|
3774
3771
|
__typename?: 'ProductOption';
|
|
3775
3772
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
@@ -3877,6 +3874,34 @@ export declare enum ProductOptionTypeEnum {
|
|
|
3877
3874
|
TEXT = "TEXT",
|
|
3878
3875
|
TEXT_AREA = "TEXT_AREA"
|
|
3879
3876
|
}
|
|
3877
|
+
export declare type ProductOrder = {
|
|
3878
|
+
__typename?: 'ProductOrder';
|
|
3879
|
+
brandIds?: Maybe<Array<Scalars['String']>>;
|
|
3880
|
+
categoryIds?: Maybe<Array<Scalars['String']>>;
|
|
3881
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3882
|
+
deleted: Scalars['Boolean'];
|
|
3883
|
+
id: Scalars['ID'];
|
|
3884
|
+
products: Array<ProductOrderProduct>;
|
|
3885
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
3886
|
+
};
|
|
3887
|
+
export declare type ProductOrderInput = {
|
|
3888
|
+
brandIds?: InputMaybe<Array<Scalars['String']>>;
|
|
3889
|
+
categoryIds?: InputMaybe<Array<Scalars['String']>>;
|
|
3890
|
+
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3891
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
3892
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
3893
|
+
products: Array<ProductOrderProductInput>;
|
|
3894
|
+
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3895
|
+
};
|
|
3896
|
+
export declare type ProductOrderProduct = {
|
|
3897
|
+
__typename?: 'ProductOrderProduct';
|
|
3898
|
+
order: Scalars['Int'];
|
|
3899
|
+
productId: Scalars['String'];
|
|
3900
|
+
};
|
|
3901
|
+
export declare type ProductOrderProductInput = {
|
|
3902
|
+
order: Scalars['Int'];
|
|
3903
|
+
productId: Scalars['String'];
|
|
3904
|
+
};
|
|
3880
3905
|
export declare type ProductPaginationResponse = {
|
|
3881
3906
|
__typename?: 'ProductPaginationResponse';
|
|
3882
3907
|
/**
|
|
@@ -4063,16 +4088,6 @@ export declare enum ProductTypeEnum {
|
|
|
4063
4088
|
MEMBERSHIP = "MEMBERSHIP",
|
|
4064
4089
|
PHYSICAL = "PHYSICAL"
|
|
4065
4090
|
}
|
|
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
|
-
};
|
|
4076
4091
|
export declare type ProductUnit = {
|
|
4077
4092
|
__typename?: 'ProductUnit';
|
|
4078
4093
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
@@ -4222,6 +4237,7 @@ export declare type Query = {
|
|
|
4222
4237
|
getMerchantLicence: MerchantLicence;
|
|
4223
4238
|
/** Using this api, you can view your sales channel. */
|
|
4224
4239
|
getSalesChannel?: Maybe<SalesChannel>;
|
|
4240
|
+
getTimelineEntry: Scalars['String'];
|
|
4225
4241
|
getVideoUploadUrl: GetVideoUploadURLResponse;
|
|
4226
4242
|
/** Use this query to get abandoned checkouts. */
|
|
4227
4243
|
listAbandonedCheckouts: CartPaginationResponse;
|
|
@@ -4259,6 +4275,7 @@ export declare type Query = {
|
|
|
4259
4275
|
*/
|
|
4260
4276
|
listProductBrand: Array<ProductBrand>;
|
|
4261
4277
|
listProductOptionSet: Array<ProductOptionSet>;
|
|
4278
|
+
listProductOrder: Array<ProductOrder>;
|
|
4262
4279
|
listProductStockLocation: ProductStockLocationPaginationResponse;
|
|
4263
4280
|
/** Using this api, you can view the tags of products. */
|
|
4264
4281
|
listProductTag: Array<ProductTag>;
|
|
@@ -4283,10 +4300,8 @@ export declare type Query = {
|
|
|
4283
4300
|
/** Use this query to list active webhooks of your application. */
|
|
4284
4301
|
listWebhook: Array<Webhook>;
|
|
4285
4302
|
me?: Maybe<MeResponse>;
|
|
4286
|
-
productAttributeExport: Scalars['String'];
|
|
4287
4303
|
/** Result(s) containing searched products. */
|
|
4288
4304
|
searchProducts: ProductSearchResponse;
|
|
4289
|
-
variantAttributeExport: Scalars['String'];
|
|
4290
4305
|
};
|
|
4291
4306
|
export declare type QuerygetImageUploadUrlArgs = {
|
|
4292
4307
|
imageDir?: InputMaybe<Scalars['String']>;
|
|
@@ -4451,6 +4466,13 @@ export declare type QuerylistProductOptionSetArgs = {
|
|
|
4451
4466
|
search?: InputMaybe<Scalars['String']>;
|
|
4452
4467
|
updatedAt?: InputMaybe<DateFilterInput>;
|
|
4453
4468
|
};
|
|
4469
|
+
export declare type QuerylistProductOrderArgs = {
|
|
4470
|
+
brandIds?: InputMaybe<StringFilterInput>;
|
|
4471
|
+
categoryIds?: InputMaybe<StringFilterInput>;
|
|
4472
|
+
id?: InputMaybe<StringFilterInput>;
|
|
4473
|
+
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
4474
|
+
updatedAt?: InputMaybe<DateFilterInput>;
|
|
4475
|
+
};
|
|
4454
4476
|
export declare type QuerylistProductStockLocationArgs = {
|
|
4455
4477
|
id?: InputMaybe<StringFilterInput>;
|
|
4456
4478
|
pagination?: InputMaybe<PaginationInput>;
|
|
@@ -4520,61 +4542,9 @@ export declare type QuerylistVendorArgs = {
|
|
|
4520
4542
|
name?: InputMaybe<StringFilterInput>;
|
|
4521
4543
|
updatedAt?: InputMaybe<DateFilterInput>;
|
|
4522
4544
|
};
|
|
4523
|
-
export declare type QueryproductAttributeExportArgs = {
|
|
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>;
|
|
4548
|
-
};
|
|
4549
4545
|
export declare type QuerysearchProductsArgs = {
|
|
4550
4546
|
input: SearchInput;
|
|
4551
4547
|
};
|
|
4552
|
-
export declare type QueryvariantAttributeExportArgs = {
|
|
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>;
|
|
4577
|
-
};
|
|
4578
4548
|
export declare enum SFAnalyticsTrafficSourceEnum {
|
|
4579
4549
|
ADS_OTHER = "ADS_OTHER",
|
|
4580
4550
|
AFFILIATE = "AFFILIATE",
|
|
@@ -4660,14 +4630,24 @@ export declare type SearchCategory = {
|
|
|
4660
4630
|
name: Scalars['String'];
|
|
4661
4631
|
path: Array<SearchCategoryPath>;
|
|
4662
4632
|
slug?: Maybe<Scalars['String']>;
|
|
4663
|
-
translations?: Maybe<Array<
|
|
4633
|
+
translations?: Maybe<Array<SearchCategoryTranslation>>;
|
|
4664
4634
|
};
|
|
4665
4635
|
export declare type SearchCategoryPath = {
|
|
4666
4636
|
__typename?: 'SearchCategoryPath';
|
|
4667
4637
|
id: Scalars['String'];
|
|
4668
4638
|
name: Scalars['String'];
|
|
4669
4639
|
slug?: Maybe<Scalars['String']>;
|
|
4670
|
-
translations?: Maybe<Array<
|
|
4640
|
+
translations?: Maybe<Array<SearchCategoryTranslation>>;
|
|
4641
|
+
};
|
|
4642
|
+
export declare type SearchCategoryTranslation = {
|
|
4643
|
+
__typename?: 'SearchCategoryTranslation';
|
|
4644
|
+
/** It is the description information of the translation. */
|
|
4645
|
+
description?: Maybe<Scalars['String']>;
|
|
4646
|
+
/** It is the name information of the translation. */
|
|
4647
|
+
locale: Scalars['String'];
|
|
4648
|
+
/** It is the information in which language the translation is saved. */
|
|
4649
|
+
name?: Maybe<Scalars['String']>;
|
|
4650
|
+
slug?: Maybe<Scalars['String']>;
|
|
4671
4651
|
};
|
|
4672
4652
|
export declare type SearchHTMLMetaData = {
|
|
4673
4653
|
__typename?: 'SearchHTMLMetaData';
|
|
@@ -4719,6 +4699,7 @@ export declare type SearchProduct = {
|
|
|
4719
4699
|
id: Scalars['String'];
|
|
4720
4700
|
metaData?: Maybe<SearchHTMLMetaData>;
|
|
4721
4701
|
name: Scalars['String'];
|
|
4702
|
+
productGroup?: Maybe<SearchProductGroup>;
|
|
4722
4703
|
productOptionSetId?: Maybe<Scalars['String']>;
|
|
4723
4704
|
productVariantTypes: Array<SearchProductVariantType>;
|
|
4724
4705
|
productVolumeDiscountId?: Maybe<Scalars['String']>;
|
|
@@ -4769,14 +4750,28 @@ export declare type SearchProductBrand = {
|
|
|
4769
4750
|
imageId?: Maybe<Scalars['String']>;
|
|
4770
4751
|
name: Scalars['String'];
|
|
4771
4752
|
slug?: Maybe<Scalars['String']>;
|
|
4772
|
-
translations?: Maybe<Array<
|
|
4753
|
+
translations?: Maybe<Array<SearchProductBrandTranslation>>;
|
|
4754
|
+
};
|
|
4755
|
+
export declare type SearchProductBrandTranslation = {
|
|
4756
|
+
__typename?: 'SearchProductBrandTranslation';
|
|
4757
|
+
/** It is the description information of the translation. */
|
|
4758
|
+
description?: Maybe<Scalars['String']>;
|
|
4759
|
+
/** It is the name information of the translation. */
|
|
4760
|
+
locale: Scalars['String'];
|
|
4761
|
+
/** It is the information in which language the translation is saved. */
|
|
4762
|
+
name?: Maybe<Scalars['String']>;
|
|
4763
|
+
slug?: Maybe<Scalars['String']>;
|
|
4773
4764
|
};
|
|
4774
4765
|
export declare type SearchProductCampaign = {
|
|
4775
4766
|
__typename?: 'SearchProductCampaign';
|
|
4767
|
+
applicablePrice?: Maybe<CampaignApplicablePriceEnum>;
|
|
4768
|
+
applyCampaignToProductPrice?: Maybe<Scalars['Boolean']>;
|
|
4776
4769
|
buyXThenGetY?: Maybe<SearchProductCampaignBuyXThenGetY>;
|
|
4777
4770
|
currencyCodes?: Maybe<Array<Scalars['String']>>;
|
|
4778
4771
|
dateRange?: Maybe<SearchProductCampaignDateRangeField>;
|
|
4779
4772
|
fixedDiscount?: Maybe<SearchProductCampaignFixedDiscount>;
|
|
4773
|
+
id?: Maybe<Scalars['String']>;
|
|
4774
|
+
includeDiscountedProducts?: Maybe<Scalars['Boolean']>;
|
|
4780
4775
|
salesChannelIds?: Maybe<Array<Scalars['String']>>;
|
|
4781
4776
|
title: Scalars['String'];
|
|
4782
4777
|
type: CampaignTypeEnum;
|
|
@@ -4785,6 +4780,7 @@ export declare type SearchProductCampaignBuyX = {
|
|
|
4785
4780
|
__typename?: 'SearchProductCampaignBuyX';
|
|
4786
4781
|
amount: Scalars['Float'];
|
|
4787
4782
|
applyByQuantity: Scalars['Boolean'];
|
|
4783
|
+
filter?: Maybe<SearchProductCampaignFilter>;
|
|
4788
4784
|
};
|
|
4789
4785
|
export declare type SearchProductCampaignBuyXThenGetY = {
|
|
4790
4786
|
__typename?: 'SearchProductCampaignBuyXThenGetY';
|
|
@@ -4797,24 +4793,68 @@ export declare type SearchProductCampaignDateRangeField = {
|
|
|
4797
4793
|
end?: Maybe<Scalars['Timestamp']>;
|
|
4798
4794
|
start?: Maybe<Scalars['Timestamp']>;
|
|
4799
4795
|
};
|
|
4796
|
+
export declare type SearchProductCampaignFilter = {
|
|
4797
|
+
__typename?: 'SearchProductCampaignFilter';
|
|
4798
|
+
idList: Array<Scalars['String']>;
|
|
4799
|
+
type: CampaignFilterTypeEnum;
|
|
4800
|
+
};
|
|
4800
4801
|
export declare type SearchProductCampaignFixedDiscount = {
|
|
4801
4802
|
__typename?: 'SearchProductCampaignFixedDiscount';
|
|
4802
4803
|
amount?: Maybe<Scalars['Float']>;
|
|
4804
|
+
filters?: Maybe<Array<SearchProductCampaignFilter>>;
|
|
4803
4805
|
};
|
|
4804
4806
|
export declare type SearchProductCampaignGetY = {
|
|
4805
4807
|
__typename?: 'SearchProductCampaignGetY';
|
|
4806
4808
|
amount: Scalars['Float'];
|
|
4809
|
+
automaticallyAddItemToCart?: Maybe<Scalars['Boolean']>;
|
|
4807
4810
|
discountRatio: Scalars['Float'];
|
|
4811
|
+
filter?: Maybe<SearchProductCampaignFilter>;
|
|
4808
4812
|
};
|
|
4809
4813
|
export declare type SearchProductCampaignOffer = {
|
|
4810
4814
|
__typename?: 'SearchProductCampaignOffer';
|
|
4811
4815
|
id: Scalars['String'];
|
|
4812
4816
|
};
|
|
4817
|
+
export declare type SearchProductCampaignPrice = {
|
|
4818
|
+
__typename?: 'SearchProductCampaignPrice';
|
|
4819
|
+
campaignId?: Maybe<Scalars['String']>;
|
|
4820
|
+
campaignPrice?: Maybe<Scalars['Float']>;
|
|
4821
|
+
};
|
|
4813
4822
|
export declare type SearchProductCustomerReviewStar = {
|
|
4814
4823
|
__typename?: 'SearchProductCustomerReviewStar';
|
|
4815
4824
|
count: Scalars['Float'];
|
|
4816
4825
|
star: Scalars['Float'];
|
|
4817
4826
|
};
|
|
4827
|
+
export declare type SearchProductGroup = {
|
|
4828
|
+
__typename?: 'SearchProductGroup';
|
|
4829
|
+
groupKey: Scalars['String'];
|
|
4830
|
+
id: Scalars['String'];
|
|
4831
|
+
name: Scalars['String'];
|
|
4832
|
+
order: SearchProductGroupOrder;
|
|
4833
|
+
translations?: Maybe<Array<SearchProductGroupTranslation>>;
|
|
4834
|
+
values: Array<SearchProductGroupValueType>;
|
|
4835
|
+
};
|
|
4836
|
+
export declare type SearchProductGroupOrder = {
|
|
4837
|
+
__typename?: 'SearchProductGroupOrder';
|
|
4838
|
+
orderAttributeId: Scalars['String'];
|
|
4839
|
+
value: Scalars['String'];
|
|
4840
|
+
};
|
|
4841
|
+
export declare type SearchProductGroupTranslation = {
|
|
4842
|
+
__typename?: 'SearchProductGroupTranslation';
|
|
4843
|
+
locale: Scalars['String'];
|
|
4844
|
+
values?: Maybe<Array<SearchProductGroupValueTranslation>>;
|
|
4845
|
+
};
|
|
4846
|
+
export declare type SearchProductGroupValueTranslation = {
|
|
4847
|
+
__typename?: 'SearchProductGroupValueTranslation';
|
|
4848
|
+
id: Scalars['String'];
|
|
4849
|
+
name?: Maybe<Scalars['String']>;
|
|
4850
|
+
value?: Maybe<Scalars['String']>;
|
|
4851
|
+
};
|
|
4852
|
+
export declare type SearchProductGroupValueType = {
|
|
4853
|
+
__typename?: 'SearchProductGroupValueType';
|
|
4854
|
+
id: Scalars['String'];
|
|
4855
|
+
name: Scalars['String'];
|
|
4856
|
+
value: Scalars['String'];
|
|
4857
|
+
};
|
|
4818
4858
|
export declare type SearchProductImage = {
|
|
4819
4859
|
__typename?: 'SearchProductImage';
|
|
4820
4860
|
fileName?: Maybe<Scalars['String']>;
|
|
@@ -4826,6 +4866,7 @@ export declare type SearchProductImage = {
|
|
|
4826
4866
|
export declare type SearchProductPrice = {
|
|
4827
4867
|
__typename?: 'SearchProductPrice';
|
|
4828
4868
|
buyPrice?: Maybe<Scalars['Float']>;
|
|
4869
|
+
campaignPrice?: Maybe<SearchProductCampaignPrice>;
|
|
4829
4870
|
currency?: Maybe<Scalars['String']>;
|
|
4830
4871
|
currencyCode?: Maybe<Scalars['String']>;
|
|
4831
4872
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.OrderPackageStatusEnum = exports.OrderPackageFulfillStatusEnum = 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.ImportStatusEnum = 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 =
|
|
3
|
+
exports.OrderPaymentStatusEnum = exports.OrderPackageStatusEnum = exports.OrderPackageFulfillStatusEnum = 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.ImportStatusEnum = exports.HTMLMetaDataTargetTypeEnum = exports.CustomerRegistrationSourceEnum = exports.CustomerPriceListRuleValueTypeEnum = exports.CustomerPriceListRuleFilterTypeEnum = 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.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 = void 0;
|
|
5
5
|
var AbandonedCartSettingsNotificationTypeEnum;
|
|
6
6
|
(function (AbandonedCartSettingsNotificationTypeEnum) {
|
|
7
7
|
AbandonedCartSettingsNotificationTypeEnum["EMAIL"] = "EMAIL";
|
|
@@ -236,6 +236,7 @@ var CustomerRegistrationSourceEnum;
|
|
|
236
236
|
CustomerRegistrationSourceEnum["credentials"] = "credentials";
|
|
237
237
|
CustomerRegistrationSourceEnum["facebook"] = "facebook";
|
|
238
238
|
CustomerRegistrationSourceEnum["google"] = "google";
|
|
239
|
+
CustomerRegistrationSourceEnum["twitch"] = "twitch";
|
|
239
240
|
})(CustomerRegistrationSourceEnum = exports.CustomerRegistrationSourceEnum || (exports.CustomerRegistrationSourceEnum = {}));
|
|
240
241
|
/** Url Slug Target Type Enum Codes */
|
|
241
242
|
var HTMLMetaDataTargetTypeEnum;
|
|
@@ -245,16 +246,6 @@ var HTMLMetaDataTargetTypeEnum;
|
|
|
245
246
|
HTMLMetaDataTargetTypeEnum["PAGE"] = "PAGE";
|
|
246
247
|
HTMLMetaDataTargetTypeEnum["PRODUCT"] = "PRODUCT";
|
|
247
248
|
})(HTMLMetaDataTargetTypeEnum = exports.HTMLMetaDataTargetTypeEnum || (exports.HTMLMetaDataTargetTypeEnum = {}));
|
|
248
|
-
/** Import Source Type */
|
|
249
|
-
var ImportSourceEnum;
|
|
250
|
-
(function (ImportSourceEnum) {
|
|
251
|
-
ImportSourceEnum["CSV"] = "CSV";
|
|
252
|
-
ImportSourceEnum["DEMO"] = "DEMO";
|
|
253
|
-
ImportSourceEnum["SHOPIER"] = "SHOPIER";
|
|
254
|
-
ImportSourceEnum["SHOPIFY"] = "SHOPIFY";
|
|
255
|
-
ImportSourceEnum["XLS"] = "XLS";
|
|
256
|
-
ImportSourceEnum["XLSX"] = "XLSX";
|
|
257
|
-
})(ImportSourceEnum = exports.ImportSourceEnum || (exports.ImportSourceEnum = {}));
|
|
258
249
|
/** Import Status Type */
|
|
259
250
|
var ImportStatusEnum;
|
|
260
251
|
(function (ImportStatusEnum) {
|
|
@@ -462,6 +453,7 @@ var ProductAttributeTypeEnum;
|
|
|
462
453
|
(function (ProductAttributeTypeEnum) {
|
|
463
454
|
ProductAttributeTypeEnum["BOOLEAN"] = "BOOLEAN";
|
|
464
455
|
ProductAttributeTypeEnum["CHOICE"] = "CHOICE";
|
|
456
|
+
ProductAttributeTypeEnum["COLOR_THUMBNAIL_MULTIPLE_CHOICE"] = "COLOR_THUMBNAIL_MULTIPLE_CHOICE";
|
|
465
457
|
ProductAttributeTypeEnum["DATETIME"] = "DATETIME";
|
|
466
458
|
ProductAttributeTypeEnum["HTML"] = "HTML";
|
|
467
459
|
ProductAttributeTypeEnum["IMAGE"] = "IMAGE";
|