@ikas/api-client 1.0.20-alpha.5 → 1.0.20-alpha.7
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 +8 -0
- package/dist/api/admin/generated/default-gqls.js +35 -27
- package/dist/api/admin/generated/default-gqls.js.map +1 -1
- package/dist/api/admin/generated/index.d.ts +501 -44
- package/dist/api/admin/generated/index.js +92 -8
- 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 +5 -1
- package/dist/api/admin/generated/query.js +28 -0
- package/dist/api/admin/generated/query.js.map +1 -1
- package/package.json +1 -1
|
@@ -416,15 +416,6 @@ export declare type BuyXThenGetYInput = {
|
|
|
416
416
|
getY: GetYInput;
|
|
417
417
|
maxUsagePerOrder?: InputMaybe<Scalars['Int']>;
|
|
418
418
|
};
|
|
419
|
-
export declare type CSVExportFilterInput = {
|
|
420
|
-
brandId?: InputMaybe<StringFilterInput>;
|
|
421
|
-
categoryIds?: InputMaybe<CategoryFilterInput>;
|
|
422
|
-
salesChannelIds?: InputMaybe<StringFilterInput>;
|
|
423
|
-
stockLocationId?: InputMaybe<StringFilterInput>;
|
|
424
|
-
tagIds?: InputMaybe<StringFilterInput>;
|
|
425
|
-
totalStock?: InputMaybe<NumberFilterInput>;
|
|
426
|
-
updatedAt?: InputMaybe<DateFilterInput>;
|
|
427
|
-
};
|
|
428
419
|
export declare type CSVImportResponse = {
|
|
429
420
|
__typename?: 'CSVImportResponse';
|
|
430
421
|
csvContent?: Maybe<Scalars['String']>;
|
|
@@ -501,7 +492,7 @@ export declare type CampaignInput = {
|
|
|
501
492
|
createdFor?: InputMaybe<CampaignCreatedForEnum>;
|
|
502
493
|
currencyCodes?: InputMaybe<Array<Scalars['String']>>;
|
|
503
494
|
dateRange?: InputMaybe<CampaignDateRangeFieldInput>;
|
|
504
|
-
deleted?: Scalars['Boolean']
|
|
495
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
505
496
|
fixedDiscount?: InputMaybe<FixedDiscountInput>;
|
|
506
497
|
hasCoupon: Scalars['Boolean'];
|
|
507
498
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -533,6 +524,7 @@ export declare type CampaignOffer = {
|
|
|
533
524
|
endDate?: Maybe<Scalars['Timestamp']>;
|
|
534
525
|
followUpActionType: CampaignOfferFollowUpActionTypeEnum;
|
|
535
526
|
id: Scalars['ID'];
|
|
527
|
+
maxCount?: Maybe<Scalars['Float']>;
|
|
536
528
|
maximumRequiredCartAmount?: Maybe<Scalars['Float']>;
|
|
537
529
|
minimumRequiredCartAmount?: Maybe<Scalars['Float']>;
|
|
538
530
|
name: Scalars['String'];
|
|
@@ -580,7 +572,8 @@ export declare type CampaignOfferProductTranslation = {
|
|
|
580
572
|
};
|
|
581
573
|
export declare enum CampaignOfferTargetPageTypeEnum {
|
|
582
574
|
CHECKOUT = "CHECKOUT",
|
|
583
|
-
POST_CHECKOUT = "POST_CHECKOUT"
|
|
575
|
+
POST_CHECKOUT = "POST_CHECKOUT",
|
|
576
|
+
PRODUCT = "PRODUCT"
|
|
584
577
|
}
|
|
585
578
|
export declare enum CampaignOfferTriggerFilterTypeEnum {
|
|
586
579
|
ALL_PRODUCTS = "ALL_PRODUCTS",
|
|
@@ -659,6 +652,11 @@ export declare type CancelOrderLineItemInput = {
|
|
|
659
652
|
quantity: Scalars['Float'];
|
|
660
653
|
restockItems?: Scalars['Boolean'];
|
|
661
654
|
};
|
|
655
|
+
export declare type CargoCompany = {
|
|
656
|
+
__typename?: 'CargoCompany';
|
|
657
|
+
id: Scalars['String'];
|
|
658
|
+
name: Scalars['String'];
|
|
659
|
+
};
|
|
662
660
|
export declare type Cart = {
|
|
663
661
|
__typename?: 'Cart';
|
|
664
662
|
campaignOffers?: Maybe<Array<CartCampaignOffer>>;
|
|
@@ -704,7 +702,8 @@ export declare enum CartCampaignOfferStatus {
|
|
|
704
702
|
}
|
|
705
703
|
export declare enum CartCreatedByEnum {
|
|
706
704
|
ADMIN = "ADMIN",
|
|
707
|
-
CUSTOMER = "CUSTOMER"
|
|
705
|
+
CUSTOMER = "CUSTOMER",
|
|
706
|
+
UPSELL = "UPSELL"
|
|
708
707
|
}
|
|
709
708
|
export declare type CartPaginationResponse = {
|
|
710
709
|
__typename?: 'CartPaginationResponse';
|
|
@@ -751,7 +750,7 @@ export declare type CartStorefrontRouting = {
|
|
|
751
750
|
};
|
|
752
751
|
export declare type CartStorefrontRoutingDynamicCurrencySettings = {
|
|
753
752
|
__typename?: 'CartStorefrontRoutingDynamicCurrencySettings';
|
|
754
|
-
/** One of '.x0' | '.x9' | '.00' | '.90' | '.99' | '0.00' */
|
|
753
|
+
/** One of '.x0' | '.x9' | '.00' | '.90' | '.99' | '0.00' | '9.90' */
|
|
755
754
|
roundingFormat?: Maybe<Scalars['String']>;
|
|
756
755
|
targetCurrencyCode: Scalars['String'];
|
|
757
756
|
targetCurrencySymbol?: Maybe<Scalars['String']>;
|
|
@@ -798,6 +797,8 @@ export declare type Category = {
|
|
|
798
797
|
parentId?: Maybe<Scalars['String']>;
|
|
799
798
|
/** It is the information of which sales channel the product category is in. */
|
|
800
799
|
salesChannelIds?: Maybe<Array<Scalars['String']>>;
|
|
800
|
+
/** List of hidden sales channels of the category. */
|
|
801
|
+
salesChannels?: Maybe<Array<CategorySalesChannel>>;
|
|
801
802
|
shouldMatchAllConditions?: Maybe<Scalars['Boolean']>;
|
|
802
803
|
/** It is the translation information of the product category. */
|
|
803
804
|
translations?: Maybe<Array<CategoryTranslation>>;
|
|
@@ -838,7 +839,7 @@ export declare type CategoryFilterInput = {
|
|
|
838
839
|
export declare type CategoryInput = {
|
|
839
840
|
conditions?: InputMaybe<Array<CategoryConditionInput>>;
|
|
840
841
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
841
|
-
deleted?: Scalars['Boolean']
|
|
842
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
842
843
|
/** It is the description of the category of the product. */
|
|
843
844
|
description?: InputMaybe<Scalars['String']>;
|
|
844
845
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -852,8 +853,8 @@ export declare type CategoryInput = {
|
|
|
852
853
|
orderType?: InputMaybe<CategoryProductsOrderTypeEnum>;
|
|
853
854
|
/** It is the id of the superclass category of the category. */
|
|
854
855
|
parentId?: InputMaybe<Scalars['String']>;
|
|
855
|
-
/**
|
|
856
|
-
|
|
856
|
+
/** List of hidden sales channels of the category. */
|
|
857
|
+
salesChannels?: InputMaybe<Array<CategorySalesChannelInput>>;
|
|
857
858
|
shouldMatchAllConditions?: InputMaybe<Scalars['Boolean']>;
|
|
858
859
|
/** It is the translation information of the product category. */
|
|
859
860
|
translations?: InputMaybe<Array<CategoryTranslationInput>>;
|
|
@@ -888,9 +889,20 @@ export declare enum CategoryProductsOrderTypeEnum {
|
|
|
888
889
|
LOWEST_DISCOUNT_RATIO = "LOWEST_DISCOUNT_RATIO",
|
|
889
890
|
LOWEST_PRICE = "LOWEST_PRICE",
|
|
890
891
|
MANUALLY = "MANUALLY",
|
|
892
|
+
NAME_ASC = "NAME_ASC",
|
|
893
|
+
NAME_DESC = "NAME_DESC",
|
|
891
894
|
NEWEST = "NEWEST",
|
|
892
895
|
OLDEST = "OLDEST"
|
|
893
896
|
}
|
|
897
|
+
export declare type CategorySalesChannel = {
|
|
898
|
+
__typename?: 'CategorySalesChannel';
|
|
899
|
+
id: Scalars['String'];
|
|
900
|
+
status: SalesChannelStatusEnum;
|
|
901
|
+
};
|
|
902
|
+
export declare type CategorySalesChannelInput = {
|
|
903
|
+
id: Scalars['String'];
|
|
904
|
+
status: SalesChannelStatusEnum;
|
|
905
|
+
};
|
|
894
906
|
export declare type CategoryTranslation = {
|
|
895
907
|
__typename?: 'CategoryTranslation';
|
|
896
908
|
/** It is the description information of the translation. */
|
|
@@ -1078,7 +1090,7 @@ export declare type CreateOrderInput = {
|
|
|
1078
1090
|
currencyCode?: InputMaybe<Scalars['String']>;
|
|
1079
1091
|
/** It is the customer information in the order. */
|
|
1080
1092
|
customer?: InputMaybe<OrderCustomerInput>;
|
|
1081
|
-
deleted?: Scalars['Boolean']
|
|
1093
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
1082
1094
|
/** Host name of order source. */
|
|
1083
1095
|
host?: InputMaybe<Scalars['String']>;
|
|
1084
1096
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -1148,6 +1160,8 @@ export declare type Customer = {
|
|
|
1148
1160
|
emailVerifiedDate?: Maybe<Scalars['Timestamp']>;
|
|
1149
1161
|
/** The customer's first name. */
|
|
1150
1162
|
firstName: Scalars['String'];
|
|
1163
|
+
/** Date of first order by the customer */
|
|
1164
|
+
firstOrderDate?: Maybe<Scalars['Timestamp']>;
|
|
1151
1165
|
/** Customer's full name. Firstname plus lastname if firstname and lastname exist. Otherwise, it is saved as firstname only. */
|
|
1152
1166
|
fullName?: Maybe<Scalars['String']>;
|
|
1153
1167
|
id: Scalars['ID'];
|
|
@@ -1158,6 +1172,12 @@ export declare type Customer = {
|
|
|
1158
1172
|
isPhoneVerified?: Maybe<Scalars['Boolean']>;
|
|
1159
1173
|
/** The customer's last name. */
|
|
1160
1174
|
lastName?: Maybe<Scalars['String']>;
|
|
1175
|
+
/** Date of last order by the customer */
|
|
1176
|
+
lastOrderDate?: Maybe<Scalars['Timestamp']>;
|
|
1177
|
+
/** Last used price list id by the customer */
|
|
1178
|
+
lastPriceListId?: Maybe<Scalars['String']>;
|
|
1179
|
+
/** Last used storefront routing id by the customer */
|
|
1180
|
+
lastStorefrontRoutingId?: Maybe<Scalars['String']>;
|
|
1161
1181
|
/** A note about the customer. */
|
|
1162
1182
|
note?: Maybe<Scalars['String']>;
|
|
1163
1183
|
/** Number of orders placed by the customer. */
|
|
@@ -1169,6 +1189,8 @@ export declare type Customer = {
|
|
|
1169
1189
|
/** The date the **email** was verified. */
|
|
1170
1190
|
phoneVerifiedDate?: Maybe<Scalars['Timestamp']>;
|
|
1171
1191
|
preferredLanguage?: Maybe<Scalars['String']>;
|
|
1192
|
+
priceListId?: Maybe<Scalars['String']>;
|
|
1193
|
+
priceListRules?: Maybe<Array<CustomerPriceListRule>>;
|
|
1172
1194
|
/** Registration source of customer. */
|
|
1173
1195
|
registrationSource?: Maybe<CustomerRegistrationSourceEnum>;
|
|
1174
1196
|
/** CustomerEmailSubscriptionStatusesEnum */
|
|
@@ -1176,6 +1198,8 @@ export declare type Customer = {
|
|
|
1176
1198
|
subscriptionStatusUpdatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1177
1199
|
/** Tags that the store owner attaches to the customer. */
|
|
1178
1200
|
tagIds?: Maybe<Array<Scalars['String']>>;
|
|
1201
|
+
/** Amount of orders by the customer */
|
|
1202
|
+
totalOrderPrice?: Maybe<Scalars['Float']>;
|
|
1179
1203
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1180
1204
|
userAgent?: Maybe<Scalars['String']>;
|
|
1181
1205
|
};
|
|
@@ -1371,6 +1395,29 @@ export declare type CustomerPaginationResponse = {
|
|
|
1371
1395
|
*/
|
|
1372
1396
|
page: Scalars['Int'];
|
|
1373
1397
|
};
|
|
1398
|
+
export declare type CustomerPriceListRule = {
|
|
1399
|
+
__typename?: 'CustomerPriceListRule';
|
|
1400
|
+
filters?: Maybe<Array<CustomerPriceListRuleFilter>>;
|
|
1401
|
+
shouldMatchAllFilters?: Maybe<Scalars['Boolean']>;
|
|
1402
|
+
value: Scalars['Float'];
|
|
1403
|
+
valueType: CustomerPriceListRuleValueTypeEnum;
|
|
1404
|
+
};
|
|
1405
|
+
export declare type CustomerPriceListRuleFilter = {
|
|
1406
|
+
__typename?: 'CustomerPriceListRuleFilter';
|
|
1407
|
+
type: CustomerPriceListRuleFilterTypeEnum;
|
|
1408
|
+
valueList: Array<Scalars['String']>;
|
|
1409
|
+
};
|
|
1410
|
+
export declare enum CustomerPriceListRuleFilterTypeEnum {
|
|
1411
|
+
CATEGORY = "CATEGORY",
|
|
1412
|
+
PRODUCT = "PRODUCT",
|
|
1413
|
+
PRODUCT_BRAND = "PRODUCT_BRAND",
|
|
1414
|
+
PRODUCT_TAG = "PRODUCT_TAG"
|
|
1415
|
+
}
|
|
1416
|
+
export declare enum CustomerPriceListRuleValueTypeEnum {
|
|
1417
|
+
DISCOUNT_AMOUNT = "DISCOUNT_AMOUNT",
|
|
1418
|
+
DISCOUNT_RATE = "DISCOUNT_RATE",
|
|
1419
|
+
FIXED_PRICE = "FIXED_PRICE"
|
|
1420
|
+
}
|
|
1374
1421
|
/** Customer Registration Source Enum */
|
|
1375
1422
|
export declare enum CustomerRegistrationSourceEnum {
|
|
1376
1423
|
apple = "apple",
|
|
@@ -1435,6 +1482,7 @@ export declare type FulFillOrderInput = {
|
|
|
1435
1482
|
markAsReadyForShipment?: InputMaybe<Scalars['Boolean']>;
|
|
1436
1483
|
orderId: Scalars['String'];
|
|
1437
1484
|
sendNotificationToCustomer?: InputMaybe<Scalars['Boolean']>;
|
|
1485
|
+
sourcePackageId?: InputMaybe<Scalars['String']>;
|
|
1438
1486
|
trackingInfoDetail?: InputMaybe<TrackingInfoDetailInput>;
|
|
1439
1487
|
};
|
|
1440
1488
|
export declare type FulfillOrderLineInput = {
|
|
@@ -1455,6 +1503,10 @@ export declare type GetImportJobDataResponse = {
|
|
|
1455
1503
|
importJobId?: Maybe<Scalars['String']>;
|
|
1456
1504
|
status?: Maybe<ImportStatusEnum>;
|
|
1457
1505
|
};
|
|
1506
|
+
export declare type GetOrderInvoicePdfUrlInput = {
|
|
1507
|
+
invoiceId: Scalars['String'];
|
|
1508
|
+
orderId: Scalars['String'];
|
|
1509
|
+
};
|
|
1458
1510
|
export declare type GetVideoUploadURLResponse = {
|
|
1459
1511
|
__typename?: 'GetVideoUploadURLResponse';
|
|
1460
1512
|
/** Fields object that should be sent with the video file as multipart form-data. */
|
|
@@ -1510,7 +1562,7 @@ export declare type HTMLMetaData = {
|
|
|
1510
1562
|
export declare type HTMLMetaDataInput = {
|
|
1511
1563
|
canonicals?: InputMaybe<Array<Scalars['String']>>;
|
|
1512
1564
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1513
|
-
deleted?: Scalars['Boolean']
|
|
1565
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
1514
1566
|
description?: InputMaybe<Scalars['String']>;
|
|
1515
1567
|
disableIndex?: InputMaybe<Scalars['Boolean']>;
|
|
1516
1568
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -1549,12 +1601,23 @@ export declare type HTMLMetaDataTranslation = {
|
|
|
1549
1601
|
description?: Maybe<Scalars['String']>;
|
|
1550
1602
|
locale: Scalars['String'];
|
|
1551
1603
|
pageTitle?: Maybe<Scalars['String']>;
|
|
1604
|
+
slug?: Maybe<Scalars['String']>;
|
|
1552
1605
|
};
|
|
1553
1606
|
export declare type HTMLMetaDataTranslationInput = {
|
|
1554
1607
|
description?: InputMaybe<Scalars['String']>;
|
|
1555
1608
|
locale: Scalars['String'];
|
|
1556
1609
|
pageTitle?: InputMaybe<Scalars['String']>;
|
|
1610
|
+
slug?: InputMaybe<Scalars['String']>;
|
|
1557
1611
|
};
|
|
1612
|
+
/** Import Source Type */
|
|
1613
|
+
export declare enum ImportSourceEnum {
|
|
1614
|
+
CSV = "CSV",
|
|
1615
|
+
DEMO = "DEMO",
|
|
1616
|
+
SHOPIER = "SHOPIER",
|
|
1617
|
+
SHOPIFY = "SHOPIFY",
|
|
1618
|
+
XLS = "XLS",
|
|
1619
|
+
XLSX = "XLSX"
|
|
1620
|
+
}
|
|
1558
1621
|
/** Import Status Type */
|
|
1559
1622
|
export declare enum ImportStatusEnum {
|
|
1560
1623
|
FAILED = "FAILED",
|
|
@@ -1603,11 +1666,38 @@ export declare type ListAbandonedCartInput = {
|
|
|
1603
1666
|
recoverEmailStatus?: InputMaybe<CheckoutRecoveryEmailStatusEnum>;
|
|
1604
1667
|
recoveryStatus?: InputMaybe<CheckoutRecoveryStatusEnum>;
|
|
1605
1668
|
};
|
|
1669
|
+
export declare type LocalDeliveryAvailableHoursRange = {
|
|
1670
|
+
__typename?: 'LocalDeliveryAvailableHoursRange';
|
|
1671
|
+
endTime: Scalars['String'];
|
|
1672
|
+
startTime: Scalars['String'];
|
|
1673
|
+
};
|
|
1674
|
+
export declare type LocalDeliverySettings = {
|
|
1675
|
+
__typename?: 'LocalDeliverySettings';
|
|
1676
|
+
activeDays: Array<LocalDeliverySettingsDayType>;
|
|
1677
|
+
activeLocalDeliveryHours?: Maybe<LocalDeliveryAvailableHoursRange>;
|
|
1678
|
+
timezone: Scalars['String'];
|
|
1679
|
+
};
|
|
1606
1680
|
export declare type LocalDeliverySettingsDayEstimatedDeliveryTime = {
|
|
1607
1681
|
__typename?: 'LocalDeliverySettingsDayEstimatedDeliveryTime';
|
|
1608
1682
|
type: LocalDeliverySettingsDeliveryTimeType;
|
|
1609
1683
|
value: Scalars['Float'];
|
|
1610
1684
|
};
|
|
1685
|
+
export declare type LocalDeliverySettingsDayType = {
|
|
1686
|
+
__typename?: 'LocalDeliverySettingsDayType';
|
|
1687
|
+
activeLocalDeliveryHours?: Maybe<LocalDeliveryAvailableHoursRange>;
|
|
1688
|
+
day: LocalDeliverySettingsDayTypes;
|
|
1689
|
+
estimatedDeliveryTime?: Maybe<LocalDeliverySettingsDayEstimatedDeliveryTime>;
|
|
1690
|
+
};
|
|
1691
|
+
/** LocalDeliverySettingsDayTypes */
|
|
1692
|
+
export declare enum LocalDeliverySettingsDayTypes {
|
|
1693
|
+
FRIDAY = "FRIDAY",
|
|
1694
|
+
MONDAY = "MONDAY",
|
|
1695
|
+
SATURDAY = "SATURDAY",
|
|
1696
|
+
SUNDAY = "SUNDAY",
|
|
1697
|
+
THURSDAY = "THURSDAY",
|
|
1698
|
+
TUESDAY = "TUESDAY",
|
|
1699
|
+
WEDNESDAY = "WEDNESDAY"
|
|
1700
|
+
}
|
|
1611
1701
|
/** LocalDeliverySettingsDeliveryTimeType */
|
|
1612
1702
|
export declare enum LocalDeliverySettingsDeliveryTimeType {
|
|
1613
1703
|
DAY = "DAY",
|
|
@@ -1903,6 +1993,8 @@ export declare type Mutation = {
|
|
|
1903
1993
|
deleteProductTagList: Scalars['Boolean'];
|
|
1904
1994
|
/** Using this api, you can delete the units of products. */
|
|
1905
1995
|
deleteProductUnitList: Scalars['Boolean'];
|
|
1996
|
+
/** Using this api, you can delete the product volume discounts */
|
|
1997
|
+
deleteProductVolumeDiscountList: Scalars['Boolean'];
|
|
1906
1998
|
/** Using this api, you can delete javascript script from a the storefront. */
|
|
1907
1999
|
deleteStorefrontJSScript: Scalars['Boolean'];
|
|
1908
2000
|
/** Using this api, you can delete the variant types of products. */
|
|
@@ -1915,6 +2007,7 @@ export declare type Mutation = {
|
|
|
1915
2007
|
fulfillOrder: Order;
|
|
1916
2008
|
/** Using this api, you can collect demo day. */
|
|
1917
2009
|
getAppDemoDay?: Maybe<Scalars['Float']>;
|
|
2010
|
+
getOrderInvoicePdfUrl?: Maybe<Scalars['String']>;
|
|
1918
2011
|
productAttributeImport: CSVImportResponse;
|
|
1919
2012
|
/** Use this mutation to refund given order lines. */
|
|
1920
2013
|
refundOrderLine: Order;
|
|
@@ -1935,6 +2028,8 @@ export declare type Mutation = {
|
|
|
1935
2028
|
saveProductTag: ProductTag;
|
|
1936
2029
|
/** Using this api, you can update the units of products. */
|
|
1937
2030
|
saveProductUnit: ProductUnit;
|
|
2031
|
+
/** Using this api, you can update the product volume discounts */
|
|
2032
|
+
saveProductVolumeDiscount: ProductVolumeDiscount;
|
|
1938
2033
|
/** Using this api you can update the sales channel name, priceList Id and stockLocations properties. */
|
|
1939
2034
|
saveSalesChannel?: Maybe<SalesChannel>;
|
|
1940
2035
|
/** Using this api, you can save javascript script to a the storefront. */
|
|
@@ -1955,6 +2050,7 @@ export declare type Mutation = {
|
|
|
1955
2050
|
updateOrderPackageStatus: Order;
|
|
1956
2051
|
/** Response indicating the status of operation. */
|
|
1957
2052
|
updateProductSalesChannelStatus: Scalars['Boolean'];
|
|
2053
|
+
updateSubscriptionStatus: Scalars['Boolean'];
|
|
1958
2054
|
variantAttributeImport: CSVImportResponse;
|
|
1959
2055
|
};
|
|
1960
2056
|
export declare type MutationaddCustomTimelineEntryArgs = {
|
|
@@ -2017,6 +2113,9 @@ export declare type MutationdeleteProductTagListArgs = {
|
|
|
2017
2113
|
export declare type MutationdeleteProductUnitListArgs = {
|
|
2018
2114
|
idList: Array<Scalars['String']>;
|
|
2019
2115
|
};
|
|
2116
|
+
export declare type MutationdeleteProductVolumeDiscountListArgs = {
|
|
2117
|
+
idList: Array<Scalars['String']>;
|
|
2118
|
+
};
|
|
2020
2119
|
export declare type MutationdeleteStorefrontJSScriptArgs = {
|
|
2021
2120
|
storefrontIdList: Array<Scalars['String']>;
|
|
2022
2121
|
};
|
|
@@ -2035,9 +2134,12 @@ export declare type MutationfulfillOrderArgs = {
|
|
|
2035
2134
|
export declare type MutationgetAppDemoDayArgs = {
|
|
2036
2135
|
input: CreateMerchantAppPaymentWithSubscriptionInput;
|
|
2037
2136
|
};
|
|
2137
|
+
export declare type MutationgetOrderInvoicePdfUrlArgs = {
|
|
2138
|
+
input: GetOrderInvoicePdfUrlInput;
|
|
2139
|
+
};
|
|
2038
2140
|
export declare type MutationproductAttributeImportArgs = {
|
|
2039
2141
|
file: Scalars['String'];
|
|
2040
|
-
fileType?: InputMaybe<
|
|
2142
|
+
fileType?: InputMaybe<ImportSourceEnum>;
|
|
2041
2143
|
};
|
|
2042
2144
|
export declare type MutationrefundOrderLineArgs = {
|
|
2043
2145
|
input: OrderRefundInput;
|
|
@@ -2072,6 +2174,9 @@ export declare type MutationsaveProductTagArgs = {
|
|
|
2072
2174
|
export declare type MutationsaveProductUnitArgs = {
|
|
2073
2175
|
input: ProductUnitInput;
|
|
2074
2176
|
};
|
|
2177
|
+
export declare type MutationsaveProductVolumeDiscountArgs = {
|
|
2178
|
+
input: ProductVolumeDiscountInput;
|
|
2179
|
+
};
|
|
2075
2180
|
export declare type MutationsaveSalesChannelArgs = {
|
|
2076
2181
|
input: SalesChannelInput;
|
|
2077
2182
|
};
|
|
@@ -2103,9 +2208,13 @@ export declare type MutationupdateProductSalesChannelStatusArgs = {
|
|
|
2103
2208
|
input: Array<UpdateProductSalesChannelStatusInput>;
|
|
2104
2209
|
salesChannelId?: InputMaybe<Scalars['String']>;
|
|
2105
2210
|
};
|
|
2211
|
+
export declare type MutationupdateSubscriptionStatusArgs = {
|
|
2212
|
+
customerId: Scalars['String'];
|
|
2213
|
+
subscriptionStatus: CustomerEmailSubscriptionStatusesEnum;
|
|
2214
|
+
};
|
|
2106
2215
|
export declare type MutationvariantAttributeImportArgs = {
|
|
2107
2216
|
file: Scalars['String'];
|
|
2108
|
-
fileType?: InputMaybe<
|
|
2217
|
+
fileType?: InputMaybe<ImportSourceEnum>;
|
|
2109
2218
|
};
|
|
2110
2219
|
export declare type NewCouponInput = {
|
|
2111
2220
|
canCombineWithOtherCampaigns: Scalars['Boolean'];
|
|
@@ -2135,6 +2244,7 @@ export declare type NumberFilterInput = {
|
|
|
2135
2244
|
export declare type Order = {
|
|
2136
2245
|
__typename?: 'Order';
|
|
2137
2246
|
abandonedCartFlows?: Maybe<Array<AbandonedCartFlow>>;
|
|
2247
|
+
archived: Scalars['Boolean'];
|
|
2138
2248
|
attributes?: Maybe<Array<OrderAttributeValue>>;
|
|
2139
2249
|
availableShippingMethods?: Maybe<Array<AvailableShippingMethod>>;
|
|
2140
2250
|
/** It is the billing address of the order. */
|
|
@@ -2184,6 +2294,7 @@ export declare type Order = {
|
|
|
2184
2294
|
isGiftPackage?: Maybe<Scalars['Boolean']>;
|
|
2185
2295
|
itemCount?: Maybe<Scalars['Float']>;
|
|
2186
2296
|
lastActivityDate?: Maybe<Scalars['Timestamp']>;
|
|
2297
|
+
marketingCampaignId?: Maybe<Scalars['String']>;
|
|
2187
2298
|
merchantId: Scalars['String'];
|
|
2188
2299
|
/** An optional note, can attach to the order. */
|
|
2189
2300
|
note?: Maybe<Scalars['String']>;
|
|
@@ -2421,6 +2532,8 @@ export declare type OrderAdjustment = {
|
|
|
2421
2532
|
name: Scalars['String'];
|
|
2422
2533
|
/** It is the order of the adjustment. Adjustments are applied in this order. */
|
|
2423
2534
|
order: Scalars['Float'];
|
|
2535
|
+
/** The amount is the id of the transaction. */
|
|
2536
|
+
transactionId?: Maybe<Scalars['String']>;
|
|
2424
2537
|
type: OrderAdjustmentEnum;
|
|
2425
2538
|
};
|
|
2426
2539
|
export declare type OrderAdjustmentAppliedOrderLine = {
|
|
@@ -2527,8 +2640,11 @@ export declare type OrderCustomerInput = {
|
|
|
2527
2640
|
};
|
|
2528
2641
|
export declare type OrderGiftPackageLine = {
|
|
2529
2642
|
__typename?: 'OrderGiftPackageLine';
|
|
2643
|
+
/** Indicates whether the gift cost is refunded if the order is refunded. **isRefunded** returns `true` if the amount is refunded. */
|
|
2644
|
+
isRefunded?: Maybe<Scalars['Boolean']>;
|
|
2530
2645
|
/** It is the price of the order gift package line. */
|
|
2531
2646
|
price: Scalars['Float'];
|
|
2647
|
+
priceListId?: Maybe<Scalars['String']>;
|
|
2532
2648
|
/** It is the tax value of the order gift package line price. */
|
|
2533
2649
|
taxValue?: Maybe<Scalars['Float']>;
|
|
2534
2650
|
};
|
|
@@ -2565,6 +2681,8 @@ export declare type OrderLineBundleVariant = {
|
|
|
2565
2681
|
prices?: Maybe<Array<OrderLineVariantPrice>>;
|
|
2566
2682
|
/** It is the product id of the variant. */
|
|
2567
2683
|
productId?: Maybe<Scalars['String']>;
|
|
2684
|
+
/** It is the product volume discount id of the product. */
|
|
2685
|
+
productVolumeDiscountId?: Maybe<Scalars['String']>;
|
|
2568
2686
|
/** It is the sku of the variant. */
|
|
2569
2687
|
sku?: Maybe<Scalars['String']>;
|
|
2570
2688
|
/** It is the slug of the variant. The slug value is unique each variant and product. */
|
|
@@ -2592,6 +2710,7 @@ export declare type OrderLineDiscount = {
|
|
|
2592
2710
|
campaignOfferId?: Maybe<Scalars['String']>;
|
|
2593
2711
|
campaignOfferProductId?: Maybe<Scalars['String']>;
|
|
2594
2712
|
maxApplicableQuantity?: Maybe<Scalars['Float']>;
|
|
2713
|
+
productVolumeDiscountId?: Maybe<Scalars['String']>;
|
|
2595
2714
|
reason?: Maybe<Scalars['String']>;
|
|
2596
2715
|
};
|
|
2597
2716
|
export declare type OrderLineDiscountInput = {
|
|
@@ -2644,7 +2763,7 @@ export declare type OrderLineItem = {
|
|
|
2644
2763
|
};
|
|
2645
2764
|
export declare type OrderLineItemInput = {
|
|
2646
2765
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2647
|
-
deleted?: Scalars['Boolean']
|
|
2766
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
2648
2767
|
/** It is the discount information that will be applied to the line item. */
|
|
2649
2768
|
discount?: InputMaybe<OrderLineDiscountInput>;
|
|
2650
2769
|
/** It is the discount price of the line item. */
|
|
@@ -2735,6 +2854,8 @@ export declare type OrderLineVariant = {
|
|
|
2735
2854
|
prices?: Maybe<Array<OrderLineVariantPrice>>;
|
|
2736
2855
|
/** It is the product id of the variant. */
|
|
2737
2856
|
productId?: Maybe<Scalars['String']>;
|
|
2857
|
+
/** It is the product volume discount id of the product. */
|
|
2858
|
+
productVolumeDiscountId?: Maybe<Scalars['String']>;
|
|
2738
2859
|
/** It is the sku of the variant. */
|
|
2739
2860
|
sku?: Maybe<Scalars['String']>;
|
|
2740
2861
|
/** It is the slug of the variant. The slug value is unique each variant and product. */
|
|
@@ -2977,6 +3098,7 @@ export declare type OrderPaymentMethodEnumFilterInput = {
|
|
|
2977
3098
|
nin?: InputMaybe<Array<InputMaybe<PaymentMethodTypeEnum>>>;
|
|
2978
3099
|
};
|
|
2979
3100
|
export declare enum OrderPaymentStatusEnum {
|
|
3101
|
+
FAILED = "FAILED",
|
|
2980
3102
|
PAID = "PAID",
|
|
2981
3103
|
PARTIALLY_PAID = "PARTIALLY_PAID",
|
|
2982
3104
|
WAITING = "WAITING"
|
|
@@ -3003,6 +3125,7 @@ export declare type OrderRefundInput = {
|
|
|
3003
3125
|
orderRefundLines: Array<OrderRefundLineInput>;
|
|
3004
3126
|
paymentGatewayId: Scalars['String'];
|
|
3005
3127
|
reason?: InputMaybe<Scalars['String']>;
|
|
3128
|
+
refundGift?: InputMaybe<Scalars['Boolean']>;
|
|
3006
3129
|
refundShipping?: InputMaybe<Scalars['Boolean']>;
|
|
3007
3130
|
sendNotificationToCustomer?: InputMaybe<Scalars['Boolean']>;
|
|
3008
3131
|
stockLocationId: Scalars['String'];
|
|
@@ -3067,6 +3190,7 @@ export declare type OrderShippingLine = {
|
|
|
3067
3190
|
paymentMethod?: Maybe<PaymentMethodTypeEnum>;
|
|
3068
3191
|
/** It is the price of the order shipping line. */
|
|
3069
3192
|
price: Scalars['Float'];
|
|
3193
|
+
priceListId?: Maybe<Scalars['String']>;
|
|
3070
3194
|
/** It is the shipping settings id of the order shipping line. */
|
|
3071
3195
|
shippingSettingsId?: Maybe<Scalars['String']>;
|
|
3072
3196
|
/** It is the shipping zone rate id of the order shipping line. */
|
|
@@ -3075,10 +3199,13 @@ export declare type OrderShippingLine = {
|
|
|
3075
3199
|
taxValue?: Maybe<Scalars['Float']>;
|
|
3076
3200
|
/** It is the title of the order shipping line. */
|
|
3077
3201
|
title: Scalars['String'];
|
|
3202
|
+
/** The amount is the id of the transaction. */
|
|
3203
|
+
transactionId?: Maybe<Scalars['String']>;
|
|
3078
3204
|
};
|
|
3079
3205
|
export declare type OrderShippingLineInput = {
|
|
3080
3206
|
/** It is the price of the order shipping line. */
|
|
3081
3207
|
price: Scalars['Float'];
|
|
3208
|
+
priceListId?: InputMaybe<Scalars['Float']>;
|
|
3082
3209
|
/** It is the tax value of the order shipping line. */
|
|
3083
3210
|
taxValue?: InputMaybe<Scalars['Float']>;
|
|
3084
3211
|
/** It is the title of the order shipping line. */
|
|
@@ -3106,6 +3233,8 @@ export declare type OrderStaff = {
|
|
|
3106
3233
|
email: Scalars['String'];
|
|
3107
3234
|
/** It is the first name of the staff who created the order. */
|
|
3108
3235
|
firstName: Scalars['String'];
|
|
3236
|
+
/** It is the first name of the staff who created the order. */
|
|
3237
|
+
id: Scalars['String'];
|
|
3109
3238
|
/** It is the last name of the staff who created the order. */
|
|
3110
3239
|
lastName: Scalars['String'];
|
|
3111
3240
|
};
|
|
@@ -3117,7 +3246,8 @@ export declare enum OrderStatusEnum {
|
|
|
3117
3246
|
PARTIALLY_REFUNDED = "PARTIALLY_REFUNDED",
|
|
3118
3247
|
REFUNDED = "REFUNDED",
|
|
3119
3248
|
REFUND_REJECTED = "REFUND_REJECTED",
|
|
3120
|
-
REFUND_REQUESTED = "REFUND_REQUESTED"
|
|
3249
|
+
REFUND_REQUESTED = "REFUND_REQUESTED",
|
|
3250
|
+
WAITING_UPSELL_ACTION = "WAITING_UPSELL_ACTION"
|
|
3121
3251
|
}
|
|
3122
3252
|
export declare type OrderStatusEnumInputFilter = {
|
|
3123
3253
|
/** `equal`. The filter used for equality. */
|
|
@@ -3159,7 +3289,7 @@ export declare type OrderStorefrontRouting = {
|
|
|
3159
3289
|
};
|
|
3160
3290
|
export declare type OrderStorefrontRoutingDynamicCurrencySettings = {
|
|
3161
3291
|
__typename?: 'OrderStorefrontRoutingDynamicCurrencySettings';
|
|
3162
|
-
/** One of '.x0' | '.x9' | '.00' | '.90' | '.99' | '0.00' */
|
|
3292
|
+
/** One of '.x0' | '.x9' | '.00' | '.90' | '.99' | '0.00' | '9.90' */
|
|
3163
3293
|
roundingFormat?: Maybe<Scalars['String']>;
|
|
3164
3294
|
targetCurrencyCode: Scalars['String'];
|
|
3165
3295
|
};
|
|
@@ -3185,7 +3315,7 @@ export declare type OrderTag = {
|
|
|
3185
3315
|
};
|
|
3186
3316
|
export declare type OrderTagInput = {
|
|
3187
3317
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3188
|
-
deleted?: Scalars['Boolean']
|
|
3318
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
3189
3319
|
id?: InputMaybe<Scalars['ID']>;
|
|
3190
3320
|
name: Scalars['String'];
|
|
3191
3321
|
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
@@ -3238,6 +3368,7 @@ export declare enum PaymentMethodTypeEnum {
|
|
|
3238
3368
|
}
|
|
3239
3369
|
export declare type PriceList = {
|
|
3240
3370
|
__typename?: 'PriceList';
|
|
3371
|
+
addProductsAutomatically?: Maybe<Scalars['Boolean']>;
|
|
3241
3372
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3242
3373
|
/** The currency of the product's price list. */
|
|
3243
3374
|
currency: Scalars['String'];
|
|
@@ -3247,8 +3378,55 @@ export declare type PriceList = {
|
|
|
3247
3378
|
id: Scalars['ID'];
|
|
3248
3379
|
/** It is the name of the price list of the product. */
|
|
3249
3380
|
name: Scalars['String'];
|
|
3381
|
+
ruleList?: Maybe<Array<PriceListRuleList>>;
|
|
3382
|
+
/** Type of price price list */
|
|
3383
|
+
type?: Maybe<PriceListTypeEnum>;
|
|
3250
3384
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
3251
3385
|
};
|
|
3386
|
+
export declare type PriceListCurrencyRateSettings = {
|
|
3387
|
+
__typename?: 'PriceListCurrencyRateSettings';
|
|
3388
|
+
amount?: Maybe<Scalars['Float']>;
|
|
3389
|
+
type: PriceListCurrencyRateTypeEnum;
|
|
3390
|
+
};
|
|
3391
|
+
/** Price List Currency Rate Type Enum */
|
|
3392
|
+
export declare enum PriceListCurrencyRateTypeEnum {
|
|
3393
|
+
CURRENT_RATE = "CURRENT_RATE",
|
|
3394
|
+
CUSTOM_RATE = "CUSTOM_RATE"
|
|
3395
|
+
}
|
|
3396
|
+
export declare type PriceListCurrencySettings = {
|
|
3397
|
+
__typename?: 'PriceListCurrencySettings';
|
|
3398
|
+
/** One of '.x0' | '.x9' | '.00' | '.90' | '.99' | '0.00' */
|
|
3399
|
+
roundingFormat?: Maybe<Scalars['String']>;
|
|
3400
|
+
};
|
|
3401
|
+
export declare type PriceListRuleList = {
|
|
3402
|
+
__typename?: 'PriceListRuleList';
|
|
3403
|
+
basePriceListId?: Maybe<Scalars['String']>;
|
|
3404
|
+
currencyRateSettings?: Maybe<PriceListCurrencyRateSettings>;
|
|
3405
|
+
currencySettings: PriceListCurrencySettings;
|
|
3406
|
+
rules: Array<PriceListRules>;
|
|
3407
|
+
};
|
|
3408
|
+
export declare type PriceListRules = {
|
|
3409
|
+
__typename?: 'PriceListRules';
|
|
3410
|
+
amount: Scalars['Float'];
|
|
3411
|
+
amountType: PriceListRulesAmountTypeEnum;
|
|
3412
|
+
operationType: PriceListRulesOperationTypeEnum;
|
|
3413
|
+
};
|
|
3414
|
+
/** Price List Rules Amount Type Enum */
|
|
3415
|
+
export declare enum PriceListRulesAmountTypeEnum {
|
|
3416
|
+
AMOUNT = "AMOUNT",
|
|
3417
|
+
RATIO = "RATIO"
|
|
3418
|
+
}
|
|
3419
|
+
/** Price List Rules Operation Type Enum */
|
|
3420
|
+
export declare enum PriceListRulesOperationTypeEnum {
|
|
3421
|
+
DECREASE = "DECREASE",
|
|
3422
|
+
INCREASE = "INCREASE"
|
|
3423
|
+
}
|
|
3424
|
+
/** Price List Type Enum */
|
|
3425
|
+
export declare enum PriceListTypeEnum {
|
|
3426
|
+
DYNAMIC = "DYNAMIC",
|
|
3427
|
+
DYNAMIC_RATE = "DYNAMIC_RATE",
|
|
3428
|
+
MANUAL = "MANUAL"
|
|
3429
|
+
}
|
|
3252
3430
|
export declare type Product = {
|
|
3253
3431
|
__typename?: 'Product';
|
|
3254
3432
|
/** List of product attributes. */
|
|
@@ -3267,6 +3445,7 @@ export declare type Product = {
|
|
|
3267
3445
|
deleted: Scalars['Boolean'];
|
|
3268
3446
|
/** Description of the product. */
|
|
3269
3447
|
description?: Maybe<Scalars['String']>;
|
|
3448
|
+
dynamicPriceListIds?: Maybe<Array<Scalars['String']>>;
|
|
3270
3449
|
googleTaxonomyId?: Maybe<Scalars['String']>;
|
|
3271
3450
|
/** This is the variant type id that can be used to group variants by a specific variant type id. */
|
|
3272
3451
|
groupVariantsByVariantTypeId?: Maybe<Scalars['String']>;
|
|
@@ -3283,6 +3462,8 @@ export declare type Product = {
|
|
|
3283
3462
|
productOptionSetId?: Maybe<Scalars['String']>;
|
|
3284
3463
|
/** Variant types of the product. */
|
|
3285
3464
|
productVariantTypes?: Maybe<Array<ProductVariantType>>;
|
|
3465
|
+
/** Volume discount id of the product. */
|
|
3466
|
+
productVolumeDiscountId?: Maybe<Scalars['String']>;
|
|
3286
3467
|
/** List of sales channel ids of the product. */
|
|
3287
3468
|
salesChannelIds?: Maybe<Array<Scalars['String']>>;
|
|
3288
3469
|
/** Short description of the product. */
|
|
@@ -3323,9 +3504,14 @@ export declare type ProductAttribute = {
|
|
|
3323
3504
|
type: ProductAttributeTypeEnum;
|
|
3324
3505
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
3325
3506
|
};
|
|
3507
|
+
export declare type ProductAttributeFilterInput = {
|
|
3508
|
+
eq?: InputMaybe<Scalars['String']>;
|
|
3509
|
+
in?: InputMaybe<Array<Scalars['String']>>;
|
|
3510
|
+
nin?: InputMaybe<Array<Scalars['String']>>;
|
|
3511
|
+
};
|
|
3326
3512
|
export declare type ProductAttributeInput = {
|
|
3327
3513
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3328
|
-
deleted?: Scalars['Boolean']
|
|
3514
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
3329
3515
|
description?: InputMaybe<Scalars['String']>;
|
|
3330
3516
|
id?: InputMaybe<Scalars['ID']>;
|
|
3331
3517
|
name: Scalars['String'];
|
|
@@ -3344,9 +3530,14 @@ export declare type ProductAttributeOption = {
|
|
|
3344
3530
|
name: Scalars['String'];
|
|
3345
3531
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
3346
3532
|
};
|
|
3533
|
+
export declare type ProductAttributeOptionFilterInput = {
|
|
3534
|
+
eq?: InputMaybe<Scalars['String']>;
|
|
3535
|
+
in?: InputMaybe<Array<Scalars['String']>>;
|
|
3536
|
+
nin?: InputMaybe<Array<Scalars['String']>>;
|
|
3537
|
+
};
|
|
3347
3538
|
export declare type ProductAttributeOptionInput = {
|
|
3348
3539
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3349
|
-
deleted?: Scalars['Boolean']
|
|
3540
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
3350
3541
|
id?: InputMaybe<Scalars['ID']>;
|
|
3351
3542
|
name: Scalars['String'];
|
|
3352
3543
|
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
@@ -3465,7 +3656,7 @@ export declare type ProductBrand = {
|
|
|
3465
3656
|
};
|
|
3466
3657
|
export declare type ProductBrandInput = {
|
|
3467
3658
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3468
|
-
deleted?: Scalars['Boolean']
|
|
3659
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
3469
3660
|
/** The description of the product's brand. */
|
|
3470
3661
|
description?: InputMaybe<Scalars['String']>;
|
|
3471
3662
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -3518,18 +3709,13 @@ export declare type ProductImageInput = {
|
|
|
3518
3709
|
isVideo?: InputMaybe<Scalars['Boolean']>;
|
|
3519
3710
|
order: Scalars['Float'];
|
|
3520
3711
|
};
|
|
3521
|
-
export declare enum ProductImportFileType {
|
|
3522
|
-
CSV = "CSV",
|
|
3523
|
-
XLS = "XLS",
|
|
3524
|
-
XLSX = "XLSX"
|
|
3525
|
-
}
|
|
3526
3712
|
export declare type ProductInput = {
|
|
3527
3713
|
attributes?: InputMaybe<Array<ProductAttributeValueInput>>;
|
|
3528
3714
|
baseUnit?: InputMaybe<ProductBaseUnitModelInput>;
|
|
3529
3715
|
brandId?: InputMaybe<Scalars['String']>;
|
|
3530
3716
|
categoryIds?: InputMaybe<Array<Scalars['String']>>;
|
|
3531
3717
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3532
|
-
deleted?: Scalars['Boolean']
|
|
3718
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
3533
3719
|
description?: InputMaybe<Scalars['String']>;
|
|
3534
3720
|
googleTaxonomyId?: InputMaybe<Scalars['String']>;
|
|
3535
3721
|
groupVariantsByVariantTypeId?: InputMaybe<Scalars['String']>;
|
|
@@ -3541,6 +3727,7 @@ export declare type ProductInput = {
|
|
|
3541
3727
|
name: Scalars['String'];
|
|
3542
3728
|
productOptionSetId?: InputMaybe<Scalars['String']>;
|
|
3543
3729
|
productVariantTypes?: InputMaybe<Array<ProductVariantTypeInput>>;
|
|
3730
|
+
productVolumeDiscountId?: InputMaybe<Scalars['String']>;
|
|
3544
3731
|
salesChannelIds?: InputMaybe<Array<Scalars['String']>>;
|
|
3545
3732
|
shortDescription?: InputMaybe<Scalars['String']>;
|
|
3546
3733
|
tagIds?: InputMaybe<Array<Scalars['String']>>;
|
|
@@ -3551,6 +3738,10 @@ export declare type ProductInput = {
|
|
|
3551
3738
|
vendorId?: InputMaybe<Scalars['String']>;
|
|
3552
3739
|
weight?: InputMaybe<Scalars['Float']>;
|
|
3553
3740
|
};
|
|
3741
|
+
export declare type ProductLocaleFilterInput = {
|
|
3742
|
+
in?: InputMaybe<Array<Scalars['String']>>;
|
|
3743
|
+
notIn?: InputMaybe<Array<Scalars['String']>>;
|
|
3744
|
+
};
|
|
3554
3745
|
export declare type ProductOption = {
|
|
3555
3746
|
__typename?: 'ProductOption';
|
|
3556
3747
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
@@ -3614,6 +3805,7 @@ export declare type ProductOptionSelectValueOtherPrice = {
|
|
|
3614
3805
|
currencyCode: Scalars['String'];
|
|
3615
3806
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
3616
3807
|
price: Scalars['Float'];
|
|
3808
|
+
priceListId?: Maybe<Scalars['String']>;
|
|
3617
3809
|
};
|
|
3618
3810
|
export declare type ProductOptionSelectValueTranslations = {
|
|
3619
3811
|
__typename?: 'ProductOptionSelectValueTranslations';
|
|
@@ -3743,7 +3935,7 @@ export declare type ProductStockLocation = {
|
|
|
3743
3935
|
};
|
|
3744
3936
|
export declare type ProductStockLocationInput = {
|
|
3745
3937
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3746
|
-
deleted?: Scalars['Boolean']
|
|
3938
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
3747
3939
|
id?: InputMaybe<Scalars['ID']>;
|
|
3748
3940
|
/** It is the product id to which the variant associated. */
|
|
3749
3941
|
productId: Scalars['String'];
|
|
@@ -3797,7 +3989,7 @@ export declare type ProductTag = {
|
|
|
3797
3989
|
};
|
|
3798
3990
|
export declare type ProductTagInput = {
|
|
3799
3991
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3800
|
-
deleted?: Scalars['Boolean']
|
|
3992
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
3801
3993
|
id?: InputMaybe<Scalars['ID']>;
|
|
3802
3994
|
/** The name of the product's tag. */
|
|
3803
3995
|
name: Scalars['String'];
|
|
@@ -3843,6 +4035,16 @@ export declare enum ProductTypeEnum {
|
|
|
3843
4035
|
MEMBERSHIP = "MEMBERSHIP",
|
|
3844
4036
|
PHYSICAL = "PHYSICAL"
|
|
3845
4037
|
}
|
|
4038
|
+
export declare type ProductTypeEnumFilterInput = {
|
|
4039
|
+
/** `equal`. The filter used for equality. */
|
|
4040
|
+
eq?: InputMaybe<ProductTypeEnum>;
|
|
4041
|
+
/** Returns a boolean indicating whether a specified value is in an array. */
|
|
4042
|
+
in?: InputMaybe<Array<InputMaybe<ProductTypeEnum>>>;
|
|
4043
|
+
/** `not equal`. The filter used for not equality. */
|
|
4044
|
+
ne?: InputMaybe<ProductTypeEnum>;
|
|
4045
|
+
/** Returns a boolean indicating whether a specified value is not in an array. */
|
|
4046
|
+
nin?: InputMaybe<Array<InputMaybe<ProductTypeEnum>>>;
|
|
4047
|
+
};
|
|
3846
4048
|
export declare type ProductUnit = {
|
|
3847
4049
|
__typename?: 'ProductUnit';
|
|
3848
4050
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
@@ -3856,7 +4058,7 @@ export declare type ProductUnit = {
|
|
|
3856
4058
|
};
|
|
3857
4059
|
export declare type ProductUnitInput = {
|
|
3858
4060
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3859
|
-
deleted?: Scalars['Boolean']
|
|
4061
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
3860
4062
|
id?: InputMaybe<Scalars['ID']>;
|
|
3861
4063
|
/** The name of the product's unit. */
|
|
3862
4064
|
name: Scalars['String'];
|
|
@@ -3909,6 +4111,49 @@ export declare type ProductVariantTypeInput = {
|
|
|
3909
4111
|
variantTypeId: Scalars['String'];
|
|
3910
4112
|
variantValueIds: Array<Scalars['String']>;
|
|
3911
4113
|
};
|
|
4114
|
+
export declare type ProductVolumeDiscount = {
|
|
4115
|
+
__typename?: 'ProductVolumeDiscount';
|
|
4116
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4117
|
+
deleted: Scalars['Boolean'];
|
|
4118
|
+
id: Scalars['ID'];
|
|
4119
|
+
/** The name of the product volume discount. */
|
|
4120
|
+
name: Scalars['String'];
|
|
4121
|
+
/** Shows the product volume discount rules. */
|
|
4122
|
+
rules: Array<ProductVolumeDiscountRule>;
|
|
4123
|
+
/** Determines whether variants will be evaluated separately. */
|
|
4124
|
+
scope: ProductVolumeDiscountScopeEnum;
|
|
4125
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
4126
|
+
};
|
|
4127
|
+
export declare type ProductVolumeDiscountInput = {
|
|
4128
|
+
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4129
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
4130
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
4131
|
+
/** The name of the product volume discount. */
|
|
4132
|
+
name: Scalars['String'];
|
|
4133
|
+
/** Shows the product volume discount rules. */
|
|
4134
|
+
rules: Array<ProductVolumeDiscountRuleInput>;
|
|
4135
|
+
/** Determines whether variants will be evaluated separately. */
|
|
4136
|
+
scope: ProductVolumeDiscountScopeEnum;
|
|
4137
|
+
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4138
|
+
};
|
|
4139
|
+
export declare type ProductVolumeDiscountRule = {
|
|
4140
|
+
__typename?: 'ProductVolumeDiscountRule';
|
|
4141
|
+
/** Shows the discount amount of the rule. */
|
|
4142
|
+
discountRatio: Scalars['Float'];
|
|
4143
|
+
/** It shows the quantity of the product that will be included in the rule. */
|
|
4144
|
+
lineItemQuantityRange: VolumeDiscountMinMaxRangeField;
|
|
4145
|
+
};
|
|
4146
|
+
export declare type ProductVolumeDiscountRuleInput = {
|
|
4147
|
+
/** Shows the discount amount of the rule. */
|
|
4148
|
+
discountRatio: Scalars['Float'];
|
|
4149
|
+
/** It shows the quantity of the product that will be included in the rule. */
|
|
4150
|
+
lineItemQuantityRange: VolumeDiscountMinMaxRangeFieldInput;
|
|
4151
|
+
};
|
|
4152
|
+
/** Product Volume Discount Scope Enum */
|
|
4153
|
+
export declare enum ProductVolumeDiscountScopeEnum {
|
|
4154
|
+
PRODUCT = "PRODUCT",
|
|
4155
|
+
VARIANT = "VARIANT"
|
|
4156
|
+
}
|
|
3912
4157
|
export declare type PublicTransaction = {
|
|
3913
4158
|
__typename?: 'PublicTransaction';
|
|
3914
4159
|
amount: Scalars['Float'];
|
|
@@ -3953,6 +4198,7 @@ export declare type Query = {
|
|
|
3953
4198
|
listAbandonedCheckouts: CartPaginationResponse;
|
|
3954
4199
|
listBranch: Array<Branch>;
|
|
3955
4200
|
listCampaign: CampaignPaginationResponse;
|
|
4201
|
+
listCargoCompany: Array<CargoCompany>;
|
|
3956
4202
|
/**
|
|
3957
4203
|
* Using this api, you can view the categories of products.
|
|
3958
4204
|
* Search applies to following fields: `name`
|
|
@@ -3989,12 +4235,16 @@ export declare type Query = {
|
|
|
3989
4235
|
listProductTag: Array<ProductTag>;
|
|
3990
4236
|
/** Using this api, you can view the units of products. */
|
|
3991
4237
|
listProductUnit: Array<ProductUnit>;
|
|
4238
|
+
/** Using this api, you can view the product volume discounts. */
|
|
4239
|
+
listProductVolumeDiscount: Array<ProductVolumeDiscount>;
|
|
3992
4240
|
listSalesChannel: Array<SalesChannel>;
|
|
4241
|
+
listShippingSettings: Array<ShippingSettings>;
|
|
3993
4242
|
listState: Array<State>;
|
|
3994
4243
|
listStockLocation: Array<StockLocation>;
|
|
3995
4244
|
listStorefront: Array<Storefront>;
|
|
3996
4245
|
/** Use this query to list storefront javascript scripts by supplying the `storefrontId` input. */
|
|
3997
4246
|
listStorefrontJSScript: Array<StorefrontJSScript>;
|
|
4247
|
+
listTaxSettings: Array<TaxSettings>;
|
|
3998
4248
|
listTerminal: Array<Terminal>;
|
|
3999
4249
|
listTown: Array<Town>;
|
|
4000
4250
|
/** Using this api, you can view the variant types of products. */
|
|
@@ -4041,6 +4291,10 @@ export declare type QuerylistCampaignArgs = {
|
|
|
4041
4291
|
search?: InputMaybe<Scalars['String']>;
|
|
4042
4292
|
updatedAt?: InputMaybe<DateFilterInput>;
|
|
4043
4293
|
};
|
|
4294
|
+
export declare type QuerylistCargoCompanyArgs = {
|
|
4295
|
+
id?: InputMaybe<StringFilterInput>;
|
|
4296
|
+
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
4297
|
+
};
|
|
4044
4298
|
export declare type QuerylistCategoryArgs = {
|
|
4045
4299
|
categoryPath?: InputMaybe<CategoryPathFilterInput>;
|
|
4046
4300
|
id?: InputMaybe<StringFilterInput>;
|
|
@@ -4135,6 +4389,7 @@ export declare type QuerylistPriceListArgs = {
|
|
|
4135
4389
|
id?: InputMaybe<StringFilterInput>;
|
|
4136
4390
|
};
|
|
4137
4391
|
export declare type QuerylistProductArgs = {
|
|
4392
|
+
attributeId?: InputMaybe<ProductAttributeFilterInput>;
|
|
4138
4393
|
barcodeList?: InputMaybe<StringFilterInput>;
|
|
4139
4394
|
brandId?: InputMaybe<StringFilterInput>;
|
|
4140
4395
|
categoryIds?: InputMaybe<CategoryFilterInput>;
|
|
@@ -4147,6 +4402,7 @@ export declare type QuerylistProductArgs = {
|
|
|
4147
4402
|
sort?: InputMaybe<Scalars['String']>;
|
|
4148
4403
|
tagIds?: InputMaybe<StringFilterInput>;
|
|
4149
4404
|
variantStockLocationId?: InputMaybe<StringFilterInput>;
|
|
4405
|
+
variantTypeId?: InputMaybe<StringFilterInput>;
|
|
4150
4406
|
vendorId?: InputMaybe<StringFilterInput>;
|
|
4151
4407
|
};
|
|
4152
4408
|
export declare type QuerylistProductAttributeArgs = {
|
|
@@ -4183,6 +4439,9 @@ export declare type QuerylistProductTagArgs = {
|
|
|
4183
4439
|
export declare type QuerylistProductUnitArgs = {
|
|
4184
4440
|
id?: InputMaybe<StringFilterInput>;
|
|
4185
4441
|
};
|
|
4442
|
+
export declare type QuerylistProductVolumeDiscountArgs = {
|
|
4443
|
+
id?: InputMaybe<StringFilterInput>;
|
|
4444
|
+
};
|
|
4186
4445
|
export declare type QuerylistSalesChannelArgs = {
|
|
4187
4446
|
id?: InputMaybe<StringFilterInput>;
|
|
4188
4447
|
};
|
|
@@ -4203,6 +4462,11 @@ export declare type QuerylistStorefrontArgs = {
|
|
|
4203
4462
|
export declare type QuerylistStorefrontJSScriptArgs = {
|
|
4204
4463
|
storefrontId?: InputMaybe<Scalars['String']>;
|
|
4205
4464
|
};
|
|
4465
|
+
export declare type QuerylistTaxSettingsArgs = {
|
|
4466
|
+
countryId?: InputMaybe<StringFilterInput>;
|
|
4467
|
+
id?: InputMaybe<StringFilterInput>;
|
|
4468
|
+
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
4469
|
+
};
|
|
4206
4470
|
export declare type QuerylistTerminalArgs = {
|
|
4207
4471
|
branchId?: InputMaybe<StringFilterInput>;
|
|
4208
4472
|
id?: InputMaybe<StringFilterInput>;
|
|
@@ -4228,15 +4492,59 @@ export declare type QuerylistVendorArgs = {
|
|
|
4228
4492
|
updatedAt?: InputMaybe<DateFilterInput>;
|
|
4229
4493
|
};
|
|
4230
4494
|
export declare type QueryproductAttributeExportArgs = {
|
|
4231
|
-
|
|
4232
|
-
|
|
4495
|
+
attributeId?: InputMaybe<ProductAttributeFilterInput>;
|
|
4496
|
+
attributeOptionId?: InputMaybe<ProductAttributeOptionFilterInput>;
|
|
4497
|
+
brandId?: InputMaybe<StringFilterInput>;
|
|
4498
|
+
categoryIds?: InputMaybe<CategoryFilterInput>;
|
|
4499
|
+
dynamicPriceListIds?: InputMaybe<StringFilterInput>;
|
|
4500
|
+
fileType?: InputMaybe<ImportSourceEnum>;
|
|
4501
|
+
id?: InputMaybe<StringFilterInput>;
|
|
4502
|
+
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
4503
|
+
locale?: InputMaybe<ProductLocaleFilterInput>;
|
|
4504
|
+
name?: InputMaybe<StringFilterInput>;
|
|
4505
|
+
pagination?: InputMaybe<PaginationInput>;
|
|
4506
|
+
priceListIdFilter?: InputMaybe<StringFilterInput>;
|
|
4507
|
+
salesChannelIds?: InputMaybe<StringFilterInput>;
|
|
4508
|
+
search?: InputMaybe<Scalars['String']>;
|
|
4509
|
+
sort?: InputMaybe<Scalars['String']>;
|
|
4510
|
+
stockLocationId?: InputMaybe<StringFilterInput>;
|
|
4511
|
+
tagIds?: InputMaybe<StringFilterInput>;
|
|
4512
|
+
totalStock?: InputMaybe<NumberFilterInput>;
|
|
4513
|
+
type?: InputMaybe<ProductTypeEnumFilterInput>;
|
|
4514
|
+
updatedAt?: InputMaybe<DateFilterInput>;
|
|
4515
|
+
variantId?: InputMaybe<StringFilterInput>;
|
|
4516
|
+
variantTypeId?: InputMaybe<StringFilterInput>;
|
|
4517
|
+
variantValueId?: InputMaybe<StringFilterInput>;
|
|
4518
|
+
vendorId?: InputMaybe<StringFilterInput>;
|
|
4233
4519
|
};
|
|
4234
4520
|
export declare type QuerysearchProductsArgs = {
|
|
4235
4521
|
input: SearchInput;
|
|
4236
4522
|
};
|
|
4237
4523
|
export declare type QueryvariantAttributeExportArgs = {
|
|
4238
|
-
|
|
4239
|
-
|
|
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
|
+
priceListIdFilter?: 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>;
|
|
4240
4548
|
};
|
|
4241
4549
|
export declare enum SFAnalyticsTrafficSourceEnum {
|
|
4242
4550
|
ADS_OTHER = "ADS_OTHER",
|
|
@@ -4284,6 +4592,10 @@ export declare type SalesChannelPaymentGateway = {
|
|
|
4284
4592
|
/** The field where the Sales Channel Stock Position order is kept. */
|
|
4285
4593
|
order: Scalars['Float'];
|
|
4286
4594
|
};
|
|
4595
|
+
export declare enum SalesChannelStatusEnum {
|
|
4596
|
+
HIDDEN = "HIDDEN",
|
|
4597
|
+
VISIBLE = "VISIBLE"
|
|
4598
|
+
}
|
|
4287
4599
|
export declare type SalesChannelStockLocation = {
|
|
4288
4600
|
__typename?: 'SalesChannelStockLocation';
|
|
4289
4601
|
id: Scalars['String'];
|
|
@@ -4299,6 +4611,7 @@ export declare type SalesChannelStockLocationInput = {
|
|
|
4299
4611
|
export declare enum SalesChannelTypeEnum {
|
|
4300
4612
|
ADMIN = "ADMIN",
|
|
4301
4613
|
APP = "APP",
|
|
4614
|
+
B2B_STOREFRONT = "B2B_STOREFRONT",
|
|
4302
4615
|
FACEBOOK = "FACEBOOK",
|
|
4303
4616
|
GOOGLE = "GOOGLE",
|
|
4304
4617
|
POS = "POS",
|
|
@@ -4364,12 +4677,14 @@ export declare type SearchProduct = {
|
|
|
4364
4677
|
averageRating?: Maybe<Scalars['Float']>;
|
|
4365
4678
|
baseUnit?: Maybe<SearchProductProductBaseUnit>;
|
|
4366
4679
|
brand?: Maybe<SearchProductBrand>;
|
|
4680
|
+
campaignOffers?: Maybe<Array<SearchProductCampaignOffer>>;
|
|
4367
4681
|
campaigns?: Maybe<Array<SearchProductCampaign>>;
|
|
4368
4682
|
categories?: Maybe<Array<SearchCategory>>;
|
|
4369
4683
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4370
4684
|
customerReviewSummaries?: Maybe<ProductSearchCustomerReviewSummaries>;
|
|
4371
4685
|
deleted?: Maybe<Scalars['Boolean']>;
|
|
4372
4686
|
description?: Maybe<Scalars['String']>;
|
|
4687
|
+
dynamicPriceListIds?: Maybe<Array<Scalars['String']>>;
|
|
4373
4688
|
groupVariantsByVariantTypeId?: Maybe<Scalars['String']>;
|
|
4374
4689
|
hiddenSalesChannelIds?: Maybe<Array<Scalars['String']>>;
|
|
4375
4690
|
id: Scalars['String'];
|
|
@@ -4377,6 +4692,7 @@ export declare type SearchProduct = {
|
|
|
4377
4692
|
name: Scalars['String'];
|
|
4378
4693
|
productOptionSetId?: Maybe<Scalars['String']>;
|
|
4379
4694
|
productVariantTypes: Array<SearchProductVariantType>;
|
|
4695
|
+
productVolumeDiscountId?: Maybe<Scalars['String']>;
|
|
4380
4696
|
reviewCount?: Maybe<Scalars['Float']>;
|
|
4381
4697
|
salesChannelIds?: Maybe<Array<Scalars['String']>>;
|
|
4382
4698
|
shortDescription?: Maybe<Scalars['String']>;
|
|
@@ -4421,6 +4737,7 @@ export declare type SearchProductAttributeValue = {
|
|
|
4421
4737
|
export declare type SearchProductBrand = {
|
|
4422
4738
|
__typename?: 'SearchProductBrand';
|
|
4423
4739
|
id: Scalars['String'];
|
|
4740
|
+
imageId?: Maybe<Scalars['String']>;
|
|
4424
4741
|
name: Scalars['String'];
|
|
4425
4742
|
slug?: Maybe<Scalars['String']>;
|
|
4426
4743
|
translations?: Maybe<Array<ProductBrandTranslation>>;
|
|
@@ -4460,6 +4777,10 @@ export declare type SearchProductCampaignGetY = {
|
|
|
4460
4777
|
amount: Scalars['Float'];
|
|
4461
4778
|
discountRatio: Scalars['Float'];
|
|
4462
4779
|
};
|
|
4780
|
+
export declare type SearchProductCampaignOffer = {
|
|
4781
|
+
__typename?: 'SearchProductCampaignOffer';
|
|
4782
|
+
id: Scalars['String'];
|
|
4783
|
+
};
|
|
4463
4784
|
export declare type SearchProductCustomerReviewStar = {
|
|
4464
4785
|
__typename?: 'SearchProductCustomerReviewStar';
|
|
4465
4786
|
count: Scalars['Float'];
|
|
@@ -4517,6 +4838,7 @@ export declare type SearchVariant = {
|
|
|
4517
4838
|
__typename?: 'SearchVariant';
|
|
4518
4839
|
attributes?: Maybe<Array<SearchProductAttributeValue>>;
|
|
4519
4840
|
barcodeList?: Maybe<Array<Scalars['String']>>;
|
|
4841
|
+
baseBundlePrices?: Maybe<Array<SearchProductPrice>>;
|
|
4520
4842
|
bundleSettings?: Maybe<BundleSettingsModel>;
|
|
4521
4843
|
deleted?: Maybe<Scalars['Boolean']>;
|
|
4522
4844
|
id: Scalars['String'];
|
|
@@ -4550,6 +4872,86 @@ export declare type SearchVariationValueRelation = {
|
|
|
4550
4872
|
variantTypeId: Scalars['String'];
|
|
4551
4873
|
variantValueId: Scalars['String'];
|
|
4552
4874
|
};
|
|
4875
|
+
export declare type ShippingSettings = {
|
|
4876
|
+
__typename?: 'ShippingSettings';
|
|
4877
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4878
|
+
deleted: Scalars['Boolean'];
|
|
4879
|
+
id: Scalars['ID'];
|
|
4880
|
+
isPassive?: Maybe<Scalars['Boolean']>;
|
|
4881
|
+
localDeliverySettings?: Maybe<LocalDeliverySettings>;
|
|
4882
|
+
salesChannelId: Scalars['String'];
|
|
4883
|
+
shippingZones: Array<ShippingZone>;
|
|
4884
|
+
stockLocations?: Maybe<Array<ShippingSettingsStockLocation>>;
|
|
4885
|
+
type: ShippingSettingsType;
|
|
4886
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
4887
|
+
zoneName: Scalars['String'];
|
|
4888
|
+
zoneRate: Array<ShippingZoneRate>;
|
|
4889
|
+
};
|
|
4890
|
+
export declare type ShippingSettingsStockLocation = {
|
|
4891
|
+
__typename?: 'ShippingSettingsStockLocation';
|
|
4892
|
+
order: Scalars['Float'];
|
|
4893
|
+
stockLocationId: Scalars['String'];
|
|
4894
|
+
};
|
|
4895
|
+
/** ShippingSettingsType */
|
|
4896
|
+
export declare enum ShippingSettingsType {
|
|
4897
|
+
LOCAL_DELIVERY = "LOCAL_DELIVERY",
|
|
4898
|
+
SHIPMENT = "SHIPMENT"
|
|
4899
|
+
}
|
|
4900
|
+
export declare type ShippingZone = {
|
|
4901
|
+
__typename?: 'ShippingZone';
|
|
4902
|
+
countryId: Scalars['String'];
|
|
4903
|
+
postalCodes?: Maybe<Array<Scalars['String']>>;
|
|
4904
|
+
states?: Maybe<Array<ShippingZoneState>>;
|
|
4905
|
+
};
|
|
4906
|
+
export declare type ShippingZoneCity = {
|
|
4907
|
+
__typename?: 'ShippingZoneCity';
|
|
4908
|
+
districts?: Maybe<Array<ShippingZoneDistrict>>;
|
|
4909
|
+
id: Scalars['String'];
|
|
4910
|
+
};
|
|
4911
|
+
export declare type ShippingZoneDistrict = {
|
|
4912
|
+
__typename?: 'ShippingZoneDistrict';
|
|
4913
|
+
id: Scalars['String'];
|
|
4914
|
+
regions: Array<ShippingZoneRegion>;
|
|
4915
|
+
};
|
|
4916
|
+
export declare type ShippingZoneRate = {
|
|
4917
|
+
__typename?: 'ShippingZoneRate';
|
|
4918
|
+
condition?: Maybe<ShippingZoneRateCondition>;
|
|
4919
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4920
|
+
currency?: Maybe<Scalars['String']>;
|
|
4921
|
+
currencyCode?: Maybe<Scalars['String']>;
|
|
4922
|
+
currencySymbol?: Maybe<Scalars['String']>;
|
|
4923
|
+
deleted: Scalars['Boolean'];
|
|
4924
|
+
id: Scalars['ID'];
|
|
4925
|
+
price: Scalars['Float'];
|
|
4926
|
+
priceListId?: Maybe<Scalars['String']>;
|
|
4927
|
+
rateName: Scalars['String'];
|
|
4928
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
4929
|
+
};
|
|
4930
|
+
export declare type ShippingZoneRateCondition = {
|
|
4931
|
+
__typename?: 'ShippingZoneRateCondition';
|
|
4932
|
+
maxAmount?: Maybe<Scalars['Float']>;
|
|
4933
|
+
minAmount?: Maybe<Scalars['Float']>;
|
|
4934
|
+
type: ShippingZoneRateConditionType;
|
|
4935
|
+
};
|
|
4936
|
+
/** ShippingZoneRateConditionType */
|
|
4937
|
+
export declare enum ShippingZoneRateConditionType {
|
|
4938
|
+
BASED_ON_ITEM_WEIGHT = "BASED_ON_ITEM_WEIGHT",
|
|
4939
|
+
BASED_ON_ORDER_PRICE = "BASED_ON_ORDER_PRICE"
|
|
4940
|
+
}
|
|
4941
|
+
export declare type ShippingZoneRegion = {
|
|
4942
|
+
__typename?: 'ShippingZoneRegion';
|
|
4943
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4944
|
+
deleted: Scalars['Boolean'];
|
|
4945
|
+
id: Scalars['ID'];
|
|
4946
|
+
name: Scalars['String'];
|
|
4947
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
4948
|
+
};
|
|
4949
|
+
export declare type ShippingZoneState = {
|
|
4950
|
+
__typename?: 'ShippingZoneState';
|
|
4951
|
+
cities?: Maybe<Array<ShippingZoneCity>>;
|
|
4952
|
+
id: Scalars['String'];
|
|
4953
|
+
postalCodes?: Maybe<Array<Scalars['String']>>;
|
|
4954
|
+
};
|
|
4553
4955
|
export declare type SimpleCategory = {
|
|
4554
4956
|
__typename?: 'SimpleCategory';
|
|
4555
4957
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
@@ -4716,6 +5118,8 @@ export declare type StorefrontJSScript = {
|
|
|
4716
5118
|
id: Scalars['ID'];
|
|
4717
5119
|
/** Shows the availability status of the storefront. */
|
|
4718
5120
|
isActive: Scalars['Boolean'];
|
|
5121
|
+
/** Indicates if the script has a high priority and should be executed before others. */
|
|
5122
|
+
isHighPriority?: Maybe<Scalars['Boolean']>;
|
|
4719
5123
|
/** The storefront javascript script's name. */
|
|
4720
5124
|
name: Scalars['String'];
|
|
4721
5125
|
/** The order of the script to be executed. */
|
|
@@ -4735,6 +5139,7 @@ export declare enum StorefrontJSScriptContentTypeEnum {
|
|
|
4735
5139
|
export declare type StorefrontJSScriptInput = {
|
|
4736
5140
|
contentType: StorefrontJSScriptContentTypeEnum;
|
|
4737
5141
|
fileName?: InputMaybe<Scalars['String']>;
|
|
5142
|
+
isHighPriority?: InputMaybe<Scalars['Boolean']>;
|
|
4738
5143
|
name: Scalars['String'];
|
|
4739
5144
|
scriptContent: Scalars['String'];
|
|
4740
5145
|
storefrontId: Scalars['String'];
|
|
@@ -4762,6 +5167,7 @@ export declare enum SubscriptionCodeEnum {
|
|
|
4762
5167
|
EXTENSION = "EXTENSION",
|
|
4763
5168
|
FREEMIUM = "FREEMIUM",
|
|
4764
5169
|
GROW = "GROW",
|
|
5170
|
+
ONE_TIME = "ONE_TIME",
|
|
4765
5171
|
PREMIUM = "PREMIUM",
|
|
4766
5172
|
SCALE = "SCALE",
|
|
4767
5173
|
SCALE_PLUS = "SCALE_PLUS",
|
|
@@ -4778,6 +5184,40 @@ export declare enum SubscriptionPriceCurrencyEnum {
|
|
|
4778
5184
|
TRY = "TRY",
|
|
4779
5185
|
USD = "USD"
|
|
4780
5186
|
}
|
|
5187
|
+
export declare type TaxSettings = {
|
|
5188
|
+
__typename?: 'TaxSettings';
|
|
5189
|
+
countryId: Scalars['String'];
|
|
5190
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
5191
|
+
deleted: Scalars['Boolean'];
|
|
5192
|
+
giftPackageTaxRates?: Maybe<Array<TaxSettingsGiftPackageTaxRate>>;
|
|
5193
|
+
id: Scalars['ID'];
|
|
5194
|
+
productOverrides?: Maybe<Array<TaxSettingsProductOverride>>;
|
|
5195
|
+
rates?: Maybe<Array<TaxSettingsRate>>;
|
|
5196
|
+
shippingTaxRates?: Maybe<Array<TaxSettingsShippingTaxRate>>;
|
|
5197
|
+
taxRate: Scalars['Float'];
|
|
5198
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
5199
|
+
};
|
|
5200
|
+
export declare type TaxSettingsGiftPackageTaxRate = {
|
|
5201
|
+
__typename?: 'TaxSettingsGiftPackageTaxRate';
|
|
5202
|
+
stateId?: Maybe<Scalars['String']>;
|
|
5203
|
+
taxRate: Scalars['Float'];
|
|
5204
|
+
};
|
|
5205
|
+
export declare type TaxSettingsProductOverride = {
|
|
5206
|
+
__typename?: 'TaxSettingsProductOverride';
|
|
5207
|
+
productTagIds: Array<Scalars['String']>;
|
|
5208
|
+
stateId?: Maybe<Scalars['String']>;
|
|
5209
|
+
taxRate: Scalars['Float'];
|
|
5210
|
+
};
|
|
5211
|
+
export declare type TaxSettingsRate = {
|
|
5212
|
+
__typename?: 'TaxSettingsRate';
|
|
5213
|
+
stateId: Scalars['String'];
|
|
5214
|
+
taxRate: Scalars['Float'];
|
|
5215
|
+
};
|
|
5216
|
+
export declare type TaxSettingsShippingTaxRate = {
|
|
5217
|
+
__typename?: 'TaxSettingsShippingTaxRate';
|
|
5218
|
+
stateId?: Maybe<Scalars['String']>;
|
|
5219
|
+
taxRate: Scalars['Float'];
|
|
5220
|
+
};
|
|
4781
5221
|
export declare type Terminal = {
|
|
4782
5222
|
__typename?: 'Terminal';
|
|
4783
5223
|
branchId: Scalars['String'];
|
|
@@ -4814,6 +5254,8 @@ export declare type TrackingInfo = {
|
|
|
4814
5254
|
barcode?: Maybe<Scalars['String']>;
|
|
4815
5255
|
/** It is the name of the cargo company. */
|
|
4816
5256
|
cargoCompany?: Maybe<Scalars['String']>;
|
|
5257
|
+
/** It is the key of the cargo company which can be retrieved via listCargoCompany query. */
|
|
5258
|
+
cargoCompanyId?: Maybe<Scalars['String']>;
|
|
4817
5259
|
/** Indicates whether the notification is sent to the customer after the cargo is delivered. **isSendNotification** returns true if the notification is sent. */
|
|
4818
5260
|
isSendNotification?: Maybe<Scalars['Boolean']>;
|
|
4819
5261
|
/** It is the tracking link of the order package. */
|
|
@@ -4826,6 +5268,8 @@ export declare type TrackingInfoDetailInput = {
|
|
|
4826
5268
|
barcode?: InputMaybe<Scalars['String']>;
|
|
4827
5269
|
/** It is the name of the cargo company. */
|
|
4828
5270
|
cargoCompany?: InputMaybe<Scalars['String']>;
|
|
5271
|
+
/** It is the key of the cargo company which can be retrieved via listCargoCompany query. */
|
|
5272
|
+
cargoCompanyId?: InputMaybe<Scalars['String']>;
|
|
4829
5273
|
/** If the customer is to be informed after the cargo is delivered, this field can be sent as `true`. */
|
|
4830
5274
|
isSendNotification?: InputMaybe<Scalars['Boolean']>;
|
|
4831
5275
|
/** It is the tracking link of the order package. */
|
|
@@ -4990,7 +5434,7 @@ export declare type VariantInput = {
|
|
|
4990
5434
|
barcodeList?: InputMaybe<Array<Scalars['String']>>;
|
|
4991
5435
|
bundleSettings?: InputMaybe<BundleSettingsInput>;
|
|
4992
5436
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4993
|
-
deleted?: Scalars['Boolean']
|
|
5437
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
4994
5438
|
fileId?: InputMaybe<Scalars['String']>;
|
|
4995
5439
|
hsCode?: InputMaybe<Scalars['String']>;
|
|
4996
5440
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -5035,7 +5479,7 @@ export declare type VariantType = {
|
|
|
5035
5479
|
};
|
|
5036
5480
|
export declare type VariantTypeInput = {
|
|
5037
5481
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
5038
|
-
deleted?: Scalars['Boolean']
|
|
5482
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
5039
5483
|
id?: InputMaybe<Scalars['ID']>;
|
|
5040
5484
|
/** Product variant type name information. **For example: Size, Color, Number etc.**.It can be a maximum of 100 characters. */
|
|
5041
5485
|
name: Scalars['String'];
|
|
@@ -5092,7 +5536,7 @@ export declare type VariantValueInput = {
|
|
|
5092
5536
|
/** It is the color code information of the variant values. It can be a maximum of 7 characters. */
|
|
5093
5537
|
colorCode?: InputMaybe<Scalars['String']>;
|
|
5094
5538
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
5095
|
-
deleted?: Scalars['Boolean']
|
|
5539
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
5096
5540
|
id?: InputMaybe<Scalars['ID']>;
|
|
5097
5541
|
/** It is the name information of the values used in the Variant type. Value information of Variant type is unique according to name.It can be a maximum of 100 characters. */
|
|
5098
5542
|
name: Scalars['String'];
|
|
@@ -5142,7 +5586,7 @@ export declare type VendorInput = {
|
|
|
5142
5586
|
address?: InputMaybe<Scalars['String']>;
|
|
5143
5587
|
company?: InputMaybe<Scalars['String']>;
|
|
5144
5588
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
5145
|
-
deleted?: Scalars['Boolean']
|
|
5589
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
5146
5590
|
email?: InputMaybe<Scalars['String']>;
|
|
5147
5591
|
id?: InputMaybe<Scalars['ID']>;
|
|
5148
5592
|
name: Scalars['String'];
|
|
@@ -5158,6 +5602,19 @@ export declare enum VendorStatusEnum {
|
|
|
5158
5602
|
ACTIVE = "ACTIVE",
|
|
5159
5603
|
ARCHIVED = "ARCHIVED"
|
|
5160
5604
|
}
|
|
5605
|
+
export declare type VolumeDiscountMinMaxRangeField = {
|
|
5606
|
+
__typename?: 'VolumeDiscountMinMaxRangeField';
|
|
5607
|
+
/** Indicates the minimum amount of the product to be included in the rule. */
|
|
5608
|
+
max?: Maybe<Scalars['Float']>;
|
|
5609
|
+
/** Indicates the minimum amount of the product to be included in the rule. */
|
|
5610
|
+
min: Scalars['Float'];
|
|
5611
|
+
};
|
|
5612
|
+
export declare type VolumeDiscountMinMaxRangeFieldInput = {
|
|
5613
|
+
/** Indicates the maximum amount of the product to be included in the rule. */
|
|
5614
|
+
max?: InputMaybe<Scalars['Float']>;
|
|
5615
|
+
/** Indicates the minimum amount of the product to be included in the rule. */
|
|
5616
|
+
min: Scalars['Float'];
|
|
5617
|
+
};
|
|
5161
5618
|
/** **Webhook** model description. */
|
|
5162
5619
|
export declare type Webhook = {
|
|
5163
5620
|
__typename?: 'Webhook';
|