@ikas/api-client 1.0.36 → 1.0.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/admin/generated/default-gqls.d.ts +9 -4
- package/dist/api/admin/generated/default-gqls.js +34 -29
- package/dist/api/admin/generated/default-gqls.js.map +1 -1
- package/dist/api/admin/generated/index.d.ts +363 -120
- package/dist/api/admin/generated/index.js +44 -12
- package/dist/api/admin/generated/index.js.map +1 -1
- package/dist/api/admin/generated/mutation.d.ts +7 -3
- package/dist/api/admin/generated/mutation.js +42 -14
- package/dist/api/admin/generated/mutation.js.map +1 -1
- package/dist/api/admin/generated/query.d.ts +4 -3
- package/dist/api/admin/generated/query.js +21 -14
- package/dist/api/admin/generated/query.js.map +1 -1
- package/package.json +1 -1
|
@@ -255,6 +255,17 @@ export declare type BulkUpdateProductPriceInput = {
|
|
|
255
255
|
/** Sell price of product. */
|
|
256
256
|
sellPrice: Scalars['Float'];
|
|
257
257
|
};
|
|
258
|
+
export declare type BulkUpdateProductSalesChannels = {
|
|
259
|
+
/** Sales channels id for bulk update. */
|
|
260
|
+
id: Scalars['String'];
|
|
261
|
+
/** Max purchasable quantity of the sales channel for per cart. */
|
|
262
|
+
maxQuantityPerCart?: InputMaybe<Scalars['Float']>;
|
|
263
|
+
/** Min purchasable quantity of the sales channel for per cart. */
|
|
264
|
+
minQuantityPerCart?: InputMaybe<Scalars['Float']>;
|
|
265
|
+
quantitySettings?: InputMaybe<Array<Scalars['Float']>>;
|
|
266
|
+
/** Sales channels id for bulk update. */
|
|
267
|
+
status?: InputMaybe<SalesChannelStatusEnum>;
|
|
268
|
+
};
|
|
258
269
|
export declare type BulkUpdateProductStockInput = {
|
|
259
270
|
/** Number of available items in the stock location. */
|
|
260
271
|
stockCount: Scalars['Float'];
|
|
@@ -336,6 +347,8 @@ export declare type BulkUpdateProductsInput = {
|
|
|
336
347
|
productVariantTypes: Array<BulkUpdateProductVariantTypeImportInput>;
|
|
337
348
|
/** Sales channel ids for bulk update. */
|
|
338
349
|
salesChannelIds?: InputMaybe<Array<Scalars['String']>>;
|
|
350
|
+
/** Sales channels for bulk update. */
|
|
351
|
+
salesChannels?: InputMaybe<Array<BulkUpdateProductSalesChannels>>;
|
|
339
352
|
/** Short description of the product. */
|
|
340
353
|
shortDescription?: InputMaybe<Scalars['String']>;
|
|
341
354
|
/** Source id for bulk update. */
|
|
@@ -390,6 +403,8 @@ export declare type BundleProductOrderLine = {
|
|
|
390
403
|
bundleLineQuantity: Scalars['Float'];
|
|
391
404
|
/** If the order line is derived from a package product, it shows the bundle product name of the package product */
|
|
392
405
|
name?: Maybe<Scalars['String']>;
|
|
406
|
+
/** It is the option information of the variant value in the order line item. */
|
|
407
|
+
options?: Maybe<Array<OrderLineOption>>;
|
|
393
408
|
/** Information about the variant of the order line item. */
|
|
394
409
|
variant: OrderLineVariant;
|
|
395
410
|
};
|
|
@@ -429,16 +444,13 @@ export declare type BuyXThenGetYInput = {
|
|
|
429
444
|
getY: GetYInput;
|
|
430
445
|
maxUsagePerOrder?: InputMaybe<Scalars['Int']>;
|
|
431
446
|
};
|
|
432
|
-
export declare type CSVImportResponse = {
|
|
433
|
-
__typename?: 'CSVImportResponse';
|
|
434
|
-
csvContent?: Maybe<Scalars['String']>;
|
|
435
|
-
isSuccess: Scalars['Boolean'];
|
|
436
|
-
};
|
|
437
447
|
export declare type Campaign = {
|
|
438
448
|
__typename?: 'Campaign';
|
|
439
449
|
applicableCustomerGroupIds?: Maybe<Array<Scalars['String']>>;
|
|
440
450
|
applicableCustomerIds?: Maybe<Array<Scalars['String']>>;
|
|
451
|
+
applicableCustomerSegmentIds?: Maybe<Array<Scalars['String']>>;
|
|
441
452
|
applicablePrice: CampaignApplicablePriceEnum;
|
|
453
|
+
applyCampaignToProductPrice?: Maybe<Scalars['Boolean']>;
|
|
442
454
|
buyXThenGetY?: Maybe<BuyXThenGetY>;
|
|
443
455
|
canCombineWithOtherCampaigns: Scalars['Boolean'];
|
|
444
456
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
@@ -453,6 +465,7 @@ export declare type Campaign = {
|
|
|
453
465
|
isFreeShipping?: Maybe<Scalars['Boolean']>;
|
|
454
466
|
onlyUseCustomer?: Maybe<Scalars['Boolean']>;
|
|
455
467
|
salesChannelIds?: Maybe<Array<Scalars['String']>>;
|
|
468
|
+
tieredDiscount?: Maybe<CampaignTieredDiscount>;
|
|
456
469
|
title: Scalars['String'];
|
|
457
470
|
translations?: Maybe<Array<CampaignTranslation>>;
|
|
458
471
|
type: CampaignTypeEnum;
|
|
@@ -490,15 +503,23 @@ export declare type CampaignFilterInput = {
|
|
|
490
503
|
};
|
|
491
504
|
export declare enum CampaignFilterTypeEnum {
|
|
492
505
|
CATEGORY = "CATEGORY",
|
|
506
|
+
DYNAMIC_CATEGORY = "DYNAMIC_CATEGORY",
|
|
493
507
|
PRODUCT = "PRODUCT",
|
|
494
508
|
PRODUCT_BRAND = "PRODUCT_BRAND",
|
|
495
509
|
PRODUCT_TAG = "PRODUCT_TAG",
|
|
496
510
|
VARIANT = "VARIANT"
|
|
497
511
|
}
|
|
512
|
+
export declare enum CampaignGetYDiscountTypeEnum {
|
|
513
|
+
AMOUNT = "AMOUNT",
|
|
514
|
+
FIXED_PRODUCT_PRICE = "FIXED_PRODUCT_PRICE",
|
|
515
|
+
RATIO = "RATIO"
|
|
516
|
+
}
|
|
498
517
|
export declare type CampaignInput = {
|
|
499
518
|
applicableCustomerGroupIds?: InputMaybe<Array<Scalars['String']>>;
|
|
500
519
|
applicableCustomerIds?: InputMaybe<Array<Scalars['String']>>;
|
|
520
|
+
applicableCustomerSegmentIds?: InputMaybe<Array<Scalars['String']>>;
|
|
501
521
|
applicablePrice: CampaignApplicablePriceEnum;
|
|
522
|
+
applyCampaignToProductPrice?: InputMaybe<Scalars['Boolean']>;
|
|
502
523
|
buyXThenGetY?: InputMaybe<BuyXThenGetYInput>;
|
|
503
524
|
canCombineWithOtherCampaigns: Scalars['Boolean'];
|
|
504
525
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
@@ -513,7 +534,9 @@ export declare type CampaignInput = {
|
|
|
513
534
|
isFreeShipping?: InputMaybe<Scalars['Boolean']>;
|
|
514
535
|
onlyUseCustomer?: InputMaybe<Scalars['Boolean']>;
|
|
515
536
|
salesChannelIds?: InputMaybe<Array<Scalars['String']>>;
|
|
537
|
+
tieredDiscount?: InputMaybe<TieredDiscountInput>;
|
|
516
538
|
title: Scalars['String'];
|
|
539
|
+
translations?: InputMaybe<Array<CampaignTranslationInput>>;
|
|
517
540
|
type: CampaignTypeEnum;
|
|
518
541
|
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
519
542
|
usageLimit?: InputMaybe<Scalars['Int']>;
|
|
@@ -634,6 +657,19 @@ export declare type CampaignPaginationResponse = {
|
|
|
634
657
|
*/
|
|
635
658
|
page: Scalars['Int'];
|
|
636
659
|
};
|
|
660
|
+
export declare type CampaignTieredDiscount = {
|
|
661
|
+
__typename?: 'CampaignTieredDiscount';
|
|
662
|
+
filters?: Maybe<Array<CampaignFilter>>;
|
|
663
|
+
isApplyByCartAmount?: Maybe<Scalars['Boolean']>;
|
|
664
|
+
rules: Array<CampaignTieredDiscountRule>;
|
|
665
|
+
shouldMatchAllConditions?: Maybe<Scalars['Boolean']>;
|
|
666
|
+
};
|
|
667
|
+
export declare type CampaignTieredDiscountRule = {
|
|
668
|
+
__typename?: 'CampaignTieredDiscountRule';
|
|
669
|
+
amount: Scalars['Float'];
|
|
670
|
+
lineItemQuantityRange?: Maybe<CampaignMinMaxRangeField>;
|
|
671
|
+
priceRange?: Maybe<CampaignMinMaxRangeField>;
|
|
672
|
+
};
|
|
637
673
|
export declare type CampaignTranslation = {
|
|
638
674
|
__typename?: 'CampaignTranslation';
|
|
639
675
|
/** It is the name information of the translation. */
|
|
@@ -641,6 +677,10 @@ export declare type CampaignTranslation = {
|
|
|
641
677
|
/** It is the title information of the translation. */
|
|
642
678
|
title?: Maybe<Scalars['String']>;
|
|
643
679
|
};
|
|
680
|
+
export declare type CampaignTranslationInput = {
|
|
681
|
+
locale: Scalars['String'];
|
|
682
|
+
title?: InputMaybe<Scalars['String']>;
|
|
683
|
+
};
|
|
644
684
|
export declare enum CampaignTypeEnum {
|
|
645
685
|
BUY_X_THEN_GET_Y = "BUY_X_THEN_GET_Y",
|
|
646
686
|
FIXED_AMOUNT = "FIXED_AMOUNT",
|
|
@@ -1049,6 +1089,7 @@ export declare type Country = {
|
|
|
1049
1089
|
};
|
|
1050
1090
|
export declare type Coupon = {
|
|
1051
1091
|
__typename?: 'Coupon';
|
|
1092
|
+
applicableCustomerId?: Maybe<Scalars['String']>;
|
|
1052
1093
|
campaignId: Scalars['String'];
|
|
1053
1094
|
canCombineWithOtherCampaigns: Scalars['Boolean'];
|
|
1054
1095
|
code: Scalars['String'];
|
|
@@ -1145,6 +1186,8 @@ export declare type CreateOrderInput = {
|
|
|
1145
1186
|
export declare type CreateOrderWithTransactionsInput = {
|
|
1146
1187
|
/** 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
1188
|
disableAutoCreateCustomer?: InputMaybe<Scalars['Boolean']>;
|
|
1189
|
+
/** If this value is sent as 'true,' your order lines will not be taxed. */
|
|
1190
|
+
isTaxFreeOrder?: InputMaybe<Scalars['Boolean']>;
|
|
1148
1191
|
/** Contains the order information to be created. */
|
|
1149
1192
|
order: CreateOrderInput;
|
|
1150
1193
|
/**
|
|
@@ -1161,6 +1204,7 @@ export declare type Customer = {
|
|
|
1161
1204
|
/** A list of the ten most recently updated addresses for the customer. */
|
|
1162
1205
|
addresses?: Maybe<Array<CustomerAddress>>;
|
|
1163
1206
|
attributes?: Maybe<Array<CustomerAttributeValue>>;
|
|
1207
|
+
birthDate?: Maybe<Scalars['Timestamp']>;
|
|
1164
1208
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1165
1209
|
/** Groups that the store owner attaches to the customer. */
|
|
1166
1210
|
customerGroupIds?: Maybe<Array<Scalars['String']>>;
|
|
@@ -1179,6 +1223,7 @@ export declare type Customer = {
|
|
|
1179
1223
|
firstOrderDate?: Maybe<Scalars['Timestamp']>;
|
|
1180
1224
|
/** Customer's full name. Firstname plus lastname if firstname and lastname exist. Otherwise, it is saved as firstname only. */
|
|
1181
1225
|
fullName?: Maybe<Scalars['String']>;
|
|
1226
|
+
gender?: Maybe<CustomerGenderTypeEnum>;
|
|
1182
1227
|
id: Scalars['ID'];
|
|
1183
1228
|
ip?: Maybe<Scalars['String']>;
|
|
1184
1229
|
/** Email verification status. **isEmailVerified** returns `true` if the email is verified. */
|
|
@@ -1201,6 +1246,9 @@ export declare type Customer = {
|
|
|
1201
1246
|
passwordUpdateDate?: Maybe<Scalars['Timestamp']>;
|
|
1202
1247
|
/** The customer's phone number */
|
|
1203
1248
|
phone?: Maybe<Scalars['String']>;
|
|
1249
|
+
/** CustomerEmailSubscriptionStatusesEnum */
|
|
1250
|
+
phoneSubscriptionStatus?: Maybe<CustomerEmailSubscriptionStatusesEnum>;
|
|
1251
|
+
phoneSubscriptionStatusUpdatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1204
1252
|
/** The date the **email** was verified. */
|
|
1205
1253
|
phoneVerifiedDate?: Maybe<Scalars['Timestamp']>;
|
|
1206
1254
|
preferredLanguage?: Maybe<Scalars['String']>;
|
|
@@ -1209,6 +1257,9 @@ export declare type Customer = {
|
|
|
1209
1257
|
/** Registration source of customer. */
|
|
1210
1258
|
registrationSource?: Maybe<CustomerRegistrationSourceEnum>;
|
|
1211
1259
|
/** CustomerEmailSubscriptionStatusesEnum */
|
|
1260
|
+
smsSubscriptionStatus?: Maybe<CustomerEmailSubscriptionStatusesEnum>;
|
|
1261
|
+
smsSubscriptionStatusUpdatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1262
|
+
/** CustomerEmailSubscriptionStatusesEnum */
|
|
1212
1263
|
subscriptionStatus?: Maybe<CustomerEmailSubscriptionStatusesEnum>;
|
|
1213
1264
|
subscriptionStatusUpdatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1214
1265
|
/** Tags that the store owner attaches to the customer. */
|
|
@@ -1315,6 +1366,7 @@ export declare type CustomerAttribute = {
|
|
|
1315
1366
|
name: Scalars['String'];
|
|
1316
1367
|
options?: Maybe<Array<CustomerAttributeOption>>;
|
|
1317
1368
|
order?: Maybe<Scalars['Float']>;
|
|
1369
|
+
routings?: Maybe<Array<CustomerAttributeRouting>>;
|
|
1318
1370
|
salesChannels?: Maybe<Array<CustomerAttributeSalesChannel>>;
|
|
1319
1371
|
translations?: Maybe<Array<CustomerAttributeTranslation>>;
|
|
1320
1372
|
type: CustomerAttributeTypeEnum;
|
|
@@ -1346,6 +1398,10 @@ export declare enum CustomerAttributeRegisterPageRequirementEnum {
|
|
|
1346
1398
|
MANDATORY = "MANDATORY",
|
|
1347
1399
|
OPTIONAL = "OPTIONAL"
|
|
1348
1400
|
}
|
|
1401
|
+
export declare type CustomerAttributeRouting = {
|
|
1402
|
+
__typename?: 'CustomerAttributeRouting';
|
|
1403
|
+
storefrontRoutingId: Scalars['String'];
|
|
1404
|
+
};
|
|
1349
1405
|
export declare type CustomerAttributeSalesChannel = {
|
|
1350
1406
|
__typename?: 'CustomerAttributeSalesChannel';
|
|
1351
1407
|
permission: CustomerAttributePermissionEnum;
|
|
@@ -1381,6 +1437,11 @@ export declare enum CustomerEmailSubscriptionStatusesEnum {
|
|
|
1381
1437
|
PENDING_CONFIRMATION = "PENDING_CONFIRMATION",
|
|
1382
1438
|
SUBSCRIBED = "SUBSCRIBED"
|
|
1383
1439
|
}
|
|
1440
|
+
export declare enum CustomerGenderTypeEnum {
|
|
1441
|
+
FEMALE = "FEMALE",
|
|
1442
|
+
MALE = "MALE",
|
|
1443
|
+
OTHER = "OTHER"
|
|
1444
|
+
}
|
|
1384
1445
|
export declare type CustomerPaginationResponse = {
|
|
1385
1446
|
__typename?: 'CustomerPaginationResponse';
|
|
1386
1447
|
/**
|
|
@@ -1440,7 +1501,8 @@ export declare enum CustomerRegistrationSourceEnum {
|
|
|
1440
1501
|
apple = "apple",
|
|
1441
1502
|
credentials = "credentials",
|
|
1442
1503
|
facebook = "facebook",
|
|
1443
|
-
google = "google"
|
|
1504
|
+
google = "google",
|
|
1505
|
+
twitch = "twitch"
|
|
1444
1506
|
}
|
|
1445
1507
|
export declare type DateFilterInput = {
|
|
1446
1508
|
/** `equal`. The filter used for equality. */
|
|
@@ -1485,14 +1547,18 @@ export declare type FixedDiscount = {
|
|
|
1485
1547
|
__typename?: 'FixedDiscount';
|
|
1486
1548
|
amount?: Maybe<Scalars['Float']>;
|
|
1487
1549
|
filters?: Maybe<Array<CampaignFilter>>;
|
|
1550
|
+
isApplyByCartAmount?: Maybe<Scalars['Boolean']>;
|
|
1488
1551
|
lineItemQuantityRange?: Maybe<CampaignMinMaxRangeField>;
|
|
1489
1552
|
priceRange?: Maybe<CampaignMinMaxRangeField>;
|
|
1553
|
+
shouldMatchAllConditions?: Maybe<Scalars['Boolean']>;
|
|
1490
1554
|
};
|
|
1491
1555
|
export declare type FixedDiscountInput = {
|
|
1492
1556
|
amount?: InputMaybe<Scalars['Float']>;
|
|
1493
1557
|
filters?: InputMaybe<Array<CampaignFilterInput>>;
|
|
1558
|
+
isApplyByCartAmount?: InputMaybe<Scalars['Boolean']>;
|
|
1494
1559
|
lineItemQuantityRange?: InputMaybe<CampaignMinMaxRangeFieldInput>;
|
|
1495
1560
|
priceRange?: InputMaybe<CampaignMinMaxRangeFieldInput>;
|
|
1561
|
+
shouldMatchAllConditions?: InputMaybe<Scalars['Boolean']>;
|
|
1496
1562
|
};
|
|
1497
1563
|
export declare type FulFillOrderInput = {
|
|
1498
1564
|
lines: Array<FulfillOrderLineInput>;
|
|
@@ -1507,6 +1573,7 @@ export declare type FulfillOrderLineInput = {
|
|
|
1507
1573
|
quantity: Scalars['Float'];
|
|
1508
1574
|
};
|
|
1509
1575
|
export declare type GenerateCouponInput = {
|
|
1576
|
+
applicableCustomerId?: InputMaybe<Scalars['String']>;
|
|
1510
1577
|
canCombineWithOtherCampaigns: Scalars['Boolean'];
|
|
1511
1578
|
prefix: Scalars['String'];
|
|
1512
1579
|
quantity: Scalars['Int'];
|
|
@@ -1541,12 +1608,14 @@ export declare type GetY = {
|
|
|
1541
1608
|
amount: Scalars['Float'];
|
|
1542
1609
|
automaticallyAddItemToCart?: Maybe<Scalars['Boolean']>;
|
|
1543
1610
|
discountRatio: Scalars['Float'];
|
|
1611
|
+
discountType?: Maybe<CampaignGetYDiscountTypeEnum>;
|
|
1544
1612
|
filter: CampaignFilter;
|
|
1545
1613
|
};
|
|
1546
1614
|
export declare type GetYInput = {
|
|
1547
1615
|
amount: Scalars['Float'];
|
|
1548
1616
|
automaticallyAddItemToCart?: InputMaybe<Scalars['Boolean']>;
|
|
1549
1617
|
discountRatio: Scalars['Float'];
|
|
1618
|
+
discountType?: InputMaybe<CampaignGetYDiscountTypeEnum>;
|
|
1550
1619
|
filter: CampaignFilterInput;
|
|
1551
1620
|
};
|
|
1552
1621
|
export declare type GlobalTaxSettings = {
|
|
@@ -1559,6 +1628,15 @@ export declare type GlobalTaxSettings = {
|
|
|
1559
1628
|
storefrontId?: Maybe<Scalars['String']>;
|
|
1560
1629
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1561
1630
|
};
|
|
1631
|
+
export declare type GlobalTaxSettingsInput = {
|
|
1632
|
+
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1633
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
1634
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1635
|
+
isTaxExcludedOnPrices?: Scalars['Boolean'];
|
|
1636
|
+
isTaxExcludedOnShippingPrices?: Scalars['Boolean'];
|
|
1637
|
+
storefrontId?: InputMaybe<Scalars['String']>;
|
|
1638
|
+
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1639
|
+
};
|
|
1562
1640
|
export declare type HTMLMetaData = {
|
|
1563
1641
|
__typename?: 'HTMLMetaData';
|
|
1564
1642
|
/** Canonical URL list of entity. */
|
|
@@ -1632,15 +1710,6 @@ export declare type HTMLMetaDataTranslationInput = {
|
|
|
1632
1710
|
pageTitle?: InputMaybe<Scalars['String']>;
|
|
1633
1711
|
slug?: InputMaybe<Scalars['String']>;
|
|
1634
1712
|
};
|
|
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
1713
|
/** Import Status Type */
|
|
1645
1714
|
export declare enum ImportStatusEnum {
|
|
1646
1715
|
FAILED = "FAILED",
|
|
@@ -1650,6 +1719,31 @@ export declare enum ImportStatusEnum {
|
|
|
1650
1719
|
WAITING = "WAITING",
|
|
1651
1720
|
WAITING_FOR_IMPORT = "WAITING_FOR_IMPORT"
|
|
1652
1721
|
}
|
|
1722
|
+
/** Import Type */
|
|
1723
|
+
export declare enum ImportTypeEnum {
|
|
1724
|
+
CUSTOMER = "CUSTOMER",
|
|
1725
|
+
CUSTOMER_ATTRIBUTE = "CUSTOMER_ATTRIBUTE",
|
|
1726
|
+
CUSTOMER_REVIEW = "CUSTOMER_REVIEW",
|
|
1727
|
+
ORDER = "ORDER",
|
|
1728
|
+
ORDER_COUPON = "ORDER_COUPON",
|
|
1729
|
+
ORDER_RAFFLE_PARTICIPANT = "ORDER_RAFFLE_PARTICIPANT",
|
|
1730
|
+
PRODUCT = "PRODUCT",
|
|
1731
|
+
PRODUCT_ATTRIBUTE = "PRODUCT_ATTRIBUTE",
|
|
1732
|
+
PRODUCT_BACK_IN_STOCK_REMINDER = "PRODUCT_BACK_IN_STOCK_REMINDER",
|
|
1733
|
+
PRODUCT_BRAND = "PRODUCT_BRAND",
|
|
1734
|
+
PRODUCT_CATEGORY = "PRODUCT_CATEGORY",
|
|
1735
|
+
PRODUCT_ORDER = "PRODUCT_ORDER",
|
|
1736
|
+
PRODUCT_PRICE_LIST = "PRODUCT_PRICE_LIST",
|
|
1737
|
+
PRODUCT_PURCHASE_ORDER = "PRODUCT_PURCHASE_ORDER",
|
|
1738
|
+
PRODUCT_STOCK_COUNT = "PRODUCT_STOCK_COUNT",
|
|
1739
|
+
PRODUCT_STOCK_TRANSFER = "PRODUCT_STOCK_TRANSFER",
|
|
1740
|
+
REPORT_PURCHASE_ORDER_BY_DATE = "REPORT_PURCHASE_ORDER_BY_DATE",
|
|
1741
|
+
REPORT_SALES_BY_DATE = "REPORT_SALES_BY_DATE",
|
|
1742
|
+
REPORT_SALES_BY_GROUP_FIELDS = "REPORT_SALES_BY_GROUP_FIELDS",
|
|
1743
|
+
STOREFRONT_REDIRECT = "STOREFRONT_REDIRECT",
|
|
1744
|
+
STORE_FRONT_THEME_LOCALIZATION = "STORE_FRONT_THEME_LOCALIZATION",
|
|
1745
|
+
TRANSLATION = "TRANSLATION"
|
|
1746
|
+
}
|
|
1653
1747
|
export declare type Invoice = {
|
|
1654
1748
|
__typename?: 'Invoice';
|
|
1655
1749
|
/** It is the id of the order invoice. */
|
|
@@ -2005,6 +2099,7 @@ export declare type Mutation = {
|
|
|
2005
2099
|
/** Using this api, you can delete the categories of products. */
|
|
2006
2100
|
deleteCategoryList: Scalars['Boolean'];
|
|
2007
2101
|
deleteCouponList: Scalars['String'];
|
|
2102
|
+
deleteGlobalTaxSettingsList: Scalars['Boolean'];
|
|
2008
2103
|
deleteOrderTagList: Scalars['Boolean'];
|
|
2009
2104
|
/** Use this mutation to delete product attributes with specific ids. */
|
|
2010
2105
|
deleteProductAttributeList: Scalars['Boolean'];
|
|
@@ -2012,6 +2107,7 @@ export declare type Mutation = {
|
|
|
2012
2107
|
deleteProductBrandList: Scalars['Boolean'];
|
|
2013
2108
|
/** Use this mutation to delete products with specific product ids. */
|
|
2014
2109
|
deleteProductList: Scalars['Boolean'];
|
|
2110
|
+
deleteProductOrderList: Scalars['Boolean'];
|
|
2015
2111
|
/** Using this api, you can delete the tags of products. */
|
|
2016
2112
|
deleteProductTagList: Scalars['Boolean'];
|
|
2017
2113
|
/** Using this api, you can delete the units of products. */
|
|
@@ -2020,6 +2116,7 @@ export declare type Mutation = {
|
|
|
2020
2116
|
deleteProductVolumeDiscountList: Scalars['Boolean'];
|
|
2021
2117
|
/** Using this api, you can delete javascript script from a the storefront. */
|
|
2022
2118
|
deleteStorefrontJSScript: Scalars['Boolean'];
|
|
2119
|
+
deleteTaxSettingsList: Scalars['Boolean'];
|
|
2023
2120
|
/** Using this api, you can delete the variant types of products. */
|
|
2024
2121
|
deleteVariantTypeList: Scalars['Boolean'];
|
|
2025
2122
|
/** Use this mutation to delete vendors with specific vendor ids. */
|
|
@@ -2031,13 +2128,13 @@ export declare type Mutation = {
|
|
|
2031
2128
|
/** Using this api, you can collect demo day. */
|
|
2032
2129
|
getAppDemoDay?: Maybe<Scalars['Float']>;
|
|
2033
2130
|
getOrderInvoicePdfUrl?: Maybe<Scalars['String']>;
|
|
2034
|
-
productAttributeImport: CSVImportResponse;
|
|
2035
2131
|
/** Use this mutation to refund given order lines. */
|
|
2036
2132
|
refundOrderLine: Order;
|
|
2037
2133
|
removeOrderTag: Scalars['Boolean'];
|
|
2038
2134
|
saveCampaign: Campaign;
|
|
2039
2135
|
/** Using this api, you can update the categories of products. */
|
|
2040
2136
|
saveCategory: Category;
|
|
2137
|
+
saveGlobalTaxSettings: GlobalTaxSettings;
|
|
2041
2138
|
saveOrderTag: OrderTag;
|
|
2042
2139
|
/** Use this mutation to create or update a product with provided input values. */
|
|
2043
2140
|
saveProduct: Product;
|
|
@@ -2045,6 +2142,7 @@ export declare type Mutation = {
|
|
|
2045
2142
|
saveProductAttribute: ProductAttribute;
|
|
2046
2143
|
/** Using this api, you can update the brands of products. */
|
|
2047
2144
|
saveProductBrand: ProductBrand;
|
|
2145
|
+
saveProductOrder: ProductOrder;
|
|
2048
2146
|
/** Use this mutation to define new stock or update stocks by location. */
|
|
2049
2147
|
saveProductStockLocations: Scalars['Boolean'];
|
|
2050
2148
|
/** Using this api, you can update the tags of products. */
|
|
@@ -2057,6 +2155,7 @@ export declare type Mutation = {
|
|
|
2057
2155
|
saveSalesChannel?: Maybe<SalesChannel>;
|
|
2058
2156
|
/** Using this api, you can save javascript script to a the storefront. */
|
|
2059
2157
|
saveStorefrontJSScript: StorefrontJSScript;
|
|
2158
|
+
saveTaxSettings: TaxSettings;
|
|
2060
2159
|
/** Response indicating the status of operation. */
|
|
2061
2160
|
saveVariantPrices: Scalars['Boolean'];
|
|
2062
2161
|
/** Using this api, you can update the variant types of products. */
|
|
@@ -2074,7 +2173,6 @@ export declare type Mutation = {
|
|
|
2074
2173
|
/** Response indicating the status of operation. */
|
|
2075
2174
|
updateProductSalesChannelStatus: Scalars['Boolean'];
|
|
2076
2175
|
updateSubscriptionStatus: Scalars['Boolean'];
|
|
2077
|
-
variantAttributeImport: CSVImportResponse;
|
|
2078
2176
|
};
|
|
2079
2177
|
export declare type MutationaddCustomTimelineEntryArgs = {
|
|
2080
2178
|
input: TimelineInput;
|
|
@@ -2118,6 +2216,9 @@ export declare type MutationdeleteCategoryListArgs = {
|
|
|
2118
2216
|
export declare type MutationdeleteCouponListArgs = {
|
|
2119
2217
|
idList: Array<Scalars['String']>;
|
|
2120
2218
|
};
|
|
2219
|
+
export declare type MutationdeleteGlobalTaxSettingsListArgs = {
|
|
2220
|
+
idList: Array<Scalars['String']>;
|
|
2221
|
+
};
|
|
2121
2222
|
export declare type MutationdeleteOrderTagListArgs = {
|
|
2122
2223
|
idList: Array<Scalars['String']>;
|
|
2123
2224
|
};
|
|
@@ -2130,6 +2231,9 @@ export declare type MutationdeleteProductBrandListArgs = {
|
|
|
2130
2231
|
export declare type MutationdeleteProductListArgs = {
|
|
2131
2232
|
idList: Array<Scalars['String']>;
|
|
2132
2233
|
};
|
|
2234
|
+
export declare type MutationdeleteProductOrderListArgs = {
|
|
2235
|
+
idList: Array<Scalars['String']>;
|
|
2236
|
+
};
|
|
2133
2237
|
export declare type MutationdeleteProductTagListArgs = {
|
|
2134
2238
|
idList: Array<Scalars['String']>;
|
|
2135
2239
|
};
|
|
@@ -2142,6 +2246,9 @@ export declare type MutationdeleteProductVolumeDiscountListArgs = {
|
|
|
2142
2246
|
export declare type MutationdeleteStorefrontJSScriptArgs = {
|
|
2143
2247
|
storefrontIdList: Array<Scalars['String']>;
|
|
2144
2248
|
};
|
|
2249
|
+
export declare type MutationdeleteTaxSettingsListArgs = {
|
|
2250
|
+
idList: Array<Scalars['String']>;
|
|
2251
|
+
};
|
|
2145
2252
|
export declare type MutationdeleteVariantTypeListArgs = {
|
|
2146
2253
|
idList: Array<Scalars['String']>;
|
|
2147
2254
|
};
|
|
@@ -2160,10 +2267,6 @@ export declare type MutationgetAppDemoDayArgs = {
|
|
|
2160
2267
|
export declare type MutationgetOrderInvoicePdfUrlArgs = {
|
|
2161
2268
|
input: GetOrderInvoicePdfUrlInput;
|
|
2162
2269
|
};
|
|
2163
|
-
export declare type MutationproductAttributeImportArgs = {
|
|
2164
|
-
file: Scalars['String'];
|
|
2165
|
-
fileType?: InputMaybe<ImportSourceEnum>;
|
|
2166
|
-
};
|
|
2167
2270
|
export declare type MutationrefundOrderLineArgs = {
|
|
2168
2271
|
input: OrderRefundInput;
|
|
2169
2272
|
};
|
|
@@ -2176,6 +2279,9 @@ export declare type MutationsaveCampaignArgs = {
|
|
|
2176
2279
|
export declare type MutationsaveCategoryArgs = {
|
|
2177
2280
|
input: CategoryInput;
|
|
2178
2281
|
};
|
|
2282
|
+
export declare type MutationsaveGlobalTaxSettingsArgs = {
|
|
2283
|
+
input: GlobalTaxSettingsInput;
|
|
2284
|
+
};
|
|
2179
2285
|
export declare type MutationsaveOrderTagArgs = {
|
|
2180
2286
|
input: OrderTagInput;
|
|
2181
2287
|
};
|
|
@@ -2188,6 +2294,9 @@ export declare type MutationsaveProductAttributeArgs = {
|
|
|
2188
2294
|
export declare type MutationsaveProductBrandArgs = {
|
|
2189
2295
|
input: ProductBrandInput;
|
|
2190
2296
|
};
|
|
2297
|
+
export declare type MutationsaveProductOrderArgs = {
|
|
2298
|
+
input: ProductOrderInput;
|
|
2299
|
+
};
|
|
2191
2300
|
export declare type MutationsaveProductStockLocationsArgs = {
|
|
2192
2301
|
input: SaveStockLocationsInput;
|
|
2193
2302
|
};
|
|
@@ -2206,6 +2315,9 @@ export declare type MutationsaveSalesChannelArgs = {
|
|
|
2206
2315
|
export declare type MutationsaveStorefrontJSScriptArgs = {
|
|
2207
2316
|
input: StorefrontJSScriptInput;
|
|
2208
2317
|
};
|
|
2318
|
+
export declare type MutationsaveTaxSettingsArgs = {
|
|
2319
|
+
input: TaxSettingsInput;
|
|
2320
|
+
};
|
|
2209
2321
|
export declare type MutationsaveVariantPricesArgs = {
|
|
2210
2322
|
input: SaveVariantPricesInput;
|
|
2211
2323
|
};
|
|
@@ -2235,35 +2347,14 @@ export declare type MutationupdateSubscriptionStatusArgs = {
|
|
|
2235
2347
|
customerId: Scalars['String'];
|
|
2236
2348
|
subscriptionStatus: CustomerEmailSubscriptionStatusesEnum;
|
|
2237
2349
|
};
|
|
2238
|
-
export declare type MutationvariantAttributeImportArgs = {
|
|
2239
|
-
file: Scalars['String'];
|
|
2240
|
-
fileType?: InputMaybe<ImportSourceEnum>;
|
|
2241
|
-
};
|
|
2242
2350
|
export declare type NewCouponInput = {
|
|
2351
|
+
applicableCustomerId?: InputMaybe<Scalars['String']>;
|
|
2243
2352
|
canCombineWithOtherCampaigns: Scalars['Boolean'];
|
|
2244
2353
|
code: Scalars['String'];
|
|
2245
2354
|
id?: InputMaybe<Scalars['ID']>;
|
|
2246
2355
|
usageLimit?: InputMaybe<Scalars['Int']>;
|
|
2247
2356
|
usageLimitPerCustomer?: InputMaybe<Scalars['Int']>;
|
|
2248
2357
|
};
|
|
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
2358
|
export declare type Order = {
|
|
2268
2359
|
__typename?: 'Order';
|
|
2269
2360
|
abandonedCartFlows?: Maybe<Array<AbandonedCartFlow>>;
|
|
@@ -2299,9 +2390,11 @@ export declare type Order = {
|
|
|
2299
2390
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
2300
2391
|
/** 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
2392
|
customer?: Maybe<OrderCustomer>;
|
|
2393
|
+
customerGroups?: Maybe<Array<OrderCustomerGroup>>;
|
|
2302
2394
|
customerId?: Maybe<Scalars['String']>;
|
|
2303
2395
|
/** It shows the number of orders given by the relevant customer. */
|
|
2304
2396
|
customerOrderCount?: Maybe<Scalars['Float']>;
|
|
2397
|
+
customerSegments?: Maybe<Array<OrderCustomerSegment>>;
|
|
2305
2398
|
deleted: Scalars['Boolean'];
|
|
2306
2399
|
dueDate?: Maybe<Scalars['Timestamp']>;
|
|
2307
2400
|
/** A list of gift package line objects, each containing information about a gift package pricing in the order. */
|
|
@@ -2652,6 +2745,13 @@ export declare type OrderCustomer = {
|
|
|
2652
2745
|
/** It is the preferred language of the customer who created the order. */
|
|
2653
2746
|
preferredLanguage?: Maybe<Scalars['String']>;
|
|
2654
2747
|
};
|
|
2748
|
+
export declare type OrderCustomerGroup = {
|
|
2749
|
+
__typename?: 'OrderCustomerGroup';
|
|
2750
|
+
/** It is the customer's group id */
|
|
2751
|
+
id: Scalars['String'];
|
|
2752
|
+
/** It is the customer's group name */
|
|
2753
|
+
name: Scalars['String'];
|
|
2754
|
+
};
|
|
2655
2755
|
export declare type OrderCustomerInput = {
|
|
2656
2756
|
/** It is the email of the customer who created the order. */
|
|
2657
2757
|
email?: InputMaybe<Scalars['String']>;
|
|
@@ -2661,6 +2761,13 @@ export declare type OrderCustomerInput = {
|
|
|
2661
2761
|
/** It is the last name of the customer who created the order. */
|
|
2662
2762
|
lastName?: InputMaybe<Scalars['String']>;
|
|
2663
2763
|
};
|
|
2764
|
+
export declare type OrderCustomerSegment = {
|
|
2765
|
+
__typename?: 'OrderCustomerSegment';
|
|
2766
|
+
/** It is the customer's segment id */
|
|
2767
|
+
id: Scalars['String'];
|
|
2768
|
+
/** It is the customer's segment name */
|
|
2769
|
+
name: Scalars['String'];
|
|
2770
|
+
};
|
|
2664
2771
|
export declare type OrderGiftPackageLine = {
|
|
2665
2772
|
__typename?: 'OrderGiftPackageLine';
|
|
2666
2773
|
/** Indicates whether the gift cost is refunded if the order is refunded. **isRefunded** returns `true` if the amount is refunded. */
|
|
@@ -2921,6 +3028,8 @@ export declare type OrderLineVariantBundleProductModel = {
|
|
|
2921
3028
|
/** It is the final price of the variant. */
|
|
2922
3029
|
finalPrice?: Maybe<Scalars['Float']>;
|
|
2923
3030
|
id: Scalars['String'];
|
|
3031
|
+
/** It is the option information of the variant value in the order line item. */
|
|
3032
|
+
options?: Maybe<Array<OrderLineOption>>;
|
|
2924
3033
|
/** Indicates the order of the product in the bundle. */
|
|
2925
3034
|
order: Scalars['Float'];
|
|
2926
3035
|
/** It is the price of the variant. */
|
|
@@ -3149,6 +3258,7 @@ export declare type OrderPriceList = {
|
|
|
3149
3258
|
name?: Maybe<Scalars['String']>;
|
|
3150
3259
|
};
|
|
3151
3260
|
export declare type OrderRefundInput = {
|
|
3261
|
+
forceRefund?: InputMaybe<Scalars['Boolean']>;
|
|
3152
3262
|
orderId: Scalars['String'];
|
|
3153
3263
|
orderRefundLines: Array<OrderRefundLineInput>;
|
|
3154
3264
|
paymentGatewayId: Scalars['String'];
|
|
@@ -3494,6 +3604,8 @@ export declare type Product = {
|
|
|
3494
3604
|
productVolumeDiscountId?: Maybe<Scalars['String']>;
|
|
3495
3605
|
/** List of sales channel ids of the product. */
|
|
3496
3606
|
salesChannelIds?: Maybe<Array<Scalars['String']>>;
|
|
3607
|
+
/** List of hidden sales channels of the product. */
|
|
3608
|
+
salesChannels?: Maybe<Array<ProductSalesChannel>>;
|
|
3497
3609
|
/** Short description of the product. */
|
|
3498
3610
|
shortDescription?: Maybe<Scalars['String']>;
|
|
3499
3611
|
/** List of product tag identifiers. */
|
|
@@ -3551,23 +3663,24 @@ export declare type ProductAttributeInput = {
|
|
|
3551
3663
|
};
|
|
3552
3664
|
export declare type ProductAttributeOption = {
|
|
3553
3665
|
__typename?: 'ProductAttributeOption';
|
|
3666
|
+
/** It is the color code information of the product attribute option. It can be a maximum of 7 characters. */
|
|
3667
|
+
colorCode?: Maybe<Scalars['String']>;
|
|
3554
3668
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3555
3669
|
deleted: Scalars['Boolean'];
|
|
3556
3670
|
id: Scalars['ID'];
|
|
3557
3671
|
/** Name of the product attribute option */
|
|
3558
3672
|
name: Scalars['String'];
|
|
3673
|
+
/** It is the image information of the product attribute option. */
|
|
3674
|
+
thumbnailImageId?: Maybe<Scalars['String']>;
|
|
3559
3675
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
3560
3676
|
};
|
|
3561
|
-
export declare type ProductAttributeOptionFilterInput = {
|
|
3562
|
-
eq?: InputMaybe<Scalars['String']>;
|
|
3563
|
-
in?: InputMaybe<Array<Scalars['String']>>;
|
|
3564
|
-
nin?: InputMaybe<Array<Scalars['String']>>;
|
|
3565
|
-
};
|
|
3566
3677
|
export declare type ProductAttributeOptionInput = {
|
|
3678
|
+
colorCode?: InputMaybe<Scalars['String']>;
|
|
3567
3679
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3568
3680
|
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
3569
3681
|
id?: InputMaybe<Scalars['ID']>;
|
|
3570
3682
|
name: Scalars['String'];
|
|
3683
|
+
thumbnailImageId?: InputMaybe<Scalars['String']>;
|
|
3571
3684
|
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3572
3685
|
};
|
|
3573
3686
|
export declare type ProductAttributeOptionTranslation = {
|
|
@@ -3622,6 +3735,7 @@ export declare type ProductAttributeTranslationInput = {
|
|
|
3622
3735
|
export declare enum ProductAttributeTypeEnum {
|
|
3623
3736
|
BOOLEAN = "BOOLEAN",
|
|
3624
3737
|
CHOICE = "CHOICE",
|
|
3738
|
+
COLOR_THUMBNAIL_MULTIPLE_CHOICE = "COLOR_THUMBNAIL_MULTIPLE_CHOICE",
|
|
3625
3739
|
DATETIME = "DATETIME",
|
|
3626
3740
|
HTML = "HTML",
|
|
3627
3741
|
IMAGE = "IMAGE",
|
|
@@ -3757,6 +3871,8 @@ export declare type ProductInput = {
|
|
|
3757
3871
|
productVariantTypes?: InputMaybe<Array<ProductVariantTypeInput>>;
|
|
3758
3872
|
productVolumeDiscountId?: InputMaybe<Scalars['String']>;
|
|
3759
3873
|
salesChannelIds?: InputMaybe<Array<Scalars['String']>>;
|
|
3874
|
+
/** List of sales channels of the product. */
|
|
3875
|
+
salesChannels?: InputMaybe<Array<ProductSalesChannelInput>>;
|
|
3760
3876
|
shortDescription?: InputMaybe<Scalars['String']>;
|
|
3761
3877
|
tagIds?: InputMaybe<Array<Scalars['String']>>;
|
|
3762
3878
|
translations?: InputMaybe<Array<ProductTranslationInput>>;
|
|
@@ -3766,10 +3882,6 @@ export declare type ProductInput = {
|
|
|
3766
3882
|
vendorId?: InputMaybe<Scalars['String']>;
|
|
3767
3883
|
weight?: InputMaybe<Scalars['Float']>;
|
|
3768
3884
|
};
|
|
3769
|
-
export declare type ProductLocaleFilterInput = {
|
|
3770
|
-
in?: InputMaybe<Array<Scalars['String']>>;
|
|
3771
|
-
notIn?: InputMaybe<Array<Scalars['String']>>;
|
|
3772
|
-
};
|
|
3773
3885
|
export declare type ProductOption = {
|
|
3774
3886
|
__typename?: 'ProductOption';
|
|
3775
3887
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
@@ -3877,6 +3989,34 @@ export declare enum ProductOptionTypeEnum {
|
|
|
3877
3989
|
TEXT = "TEXT",
|
|
3878
3990
|
TEXT_AREA = "TEXT_AREA"
|
|
3879
3991
|
}
|
|
3992
|
+
export declare type ProductOrder = {
|
|
3993
|
+
__typename?: 'ProductOrder';
|
|
3994
|
+
brandIds?: Maybe<Array<Scalars['String']>>;
|
|
3995
|
+
categoryIds?: Maybe<Array<Scalars['String']>>;
|
|
3996
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3997
|
+
deleted: Scalars['Boolean'];
|
|
3998
|
+
id: Scalars['ID'];
|
|
3999
|
+
products: Array<ProductOrderProduct>;
|
|
4000
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
4001
|
+
};
|
|
4002
|
+
export declare type ProductOrderInput = {
|
|
4003
|
+
brandIds?: InputMaybe<Array<Scalars['String']>>;
|
|
4004
|
+
categoryIds?: InputMaybe<Array<Scalars['String']>>;
|
|
4005
|
+
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4006
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
4007
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
4008
|
+
products: Array<ProductOrderProductInput>;
|
|
4009
|
+
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4010
|
+
};
|
|
4011
|
+
export declare type ProductOrderProduct = {
|
|
4012
|
+
__typename?: 'ProductOrderProduct';
|
|
4013
|
+
order: Scalars['Int'];
|
|
4014
|
+
productId: Scalars['String'];
|
|
4015
|
+
};
|
|
4016
|
+
export declare type ProductOrderProductInput = {
|
|
4017
|
+
order: Scalars['Int'];
|
|
4018
|
+
productId: Scalars['String'];
|
|
4019
|
+
};
|
|
3880
4020
|
export declare type ProductPaginationResponse = {
|
|
3881
4021
|
__typename?: 'ProductPaginationResponse';
|
|
3882
4022
|
/**
|
|
@@ -3928,6 +4068,28 @@ export declare type ProductPriceInput = {
|
|
|
3928
4068
|
priceListId?: InputMaybe<Scalars['String']>;
|
|
3929
4069
|
sellPrice: Scalars['Float'];
|
|
3930
4070
|
};
|
|
4071
|
+
export declare type ProductSalesChannel = {
|
|
4072
|
+
__typename?: 'ProductSalesChannel';
|
|
4073
|
+
id: Scalars['String'];
|
|
4074
|
+
/** Max purchasable quantity of the product for per cart. */
|
|
4075
|
+
maxQuantityPerCart?: Maybe<Scalars['Float']>;
|
|
4076
|
+
/** Min purchasable quantity of the product for per cart. */
|
|
4077
|
+
minQuantityPerCart?: Maybe<Scalars['Float']>;
|
|
4078
|
+
/** Volume discount id of the product. */
|
|
4079
|
+
productVolumeDiscountId?: Maybe<Scalars['String']>;
|
|
4080
|
+
quantitySettings?: Maybe<Array<Scalars['Float']>>;
|
|
4081
|
+
status: SalesChannelStatusEnum;
|
|
4082
|
+
};
|
|
4083
|
+
export declare type ProductSalesChannelInput = {
|
|
4084
|
+
id: Scalars['String'];
|
|
4085
|
+
/** Max purchasable quantity of the product for per cart. */
|
|
4086
|
+
maxQuantityPerCart?: InputMaybe<Scalars['Float']>;
|
|
4087
|
+
/** Min purchasable quantity of the product for per cart. */
|
|
4088
|
+
minQuantityPerCart?: InputMaybe<Scalars['Float']>;
|
|
4089
|
+
productVolumeDiscountId?: InputMaybe<Scalars['String']>;
|
|
4090
|
+
quantitySettings?: InputMaybe<Array<Scalars['Float']>>;
|
|
4091
|
+
status: SalesChannelStatusEnum;
|
|
4092
|
+
};
|
|
3931
4093
|
export declare type ProductSearchCustomerReviewSummaries = {
|
|
3932
4094
|
__typename?: 'ProductSearchCustomerReviewSummaries';
|
|
3933
4095
|
averageRating?: Maybe<Scalars['Float']>;
|
|
@@ -4063,16 +4225,6 @@ export declare enum ProductTypeEnum {
|
|
|
4063
4225
|
MEMBERSHIP = "MEMBERSHIP",
|
|
4064
4226
|
PHYSICAL = "PHYSICAL"
|
|
4065
4227
|
}
|
|
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
4228
|
export declare type ProductUnit = {
|
|
4077
4229
|
__typename?: 'ProductUnit';
|
|
4078
4230
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
@@ -4222,6 +4374,7 @@ export declare type Query = {
|
|
|
4222
4374
|
getMerchantLicence: MerchantLicence;
|
|
4223
4375
|
/** Using this api, you can view your sales channel. */
|
|
4224
4376
|
getSalesChannel?: Maybe<SalesChannel>;
|
|
4377
|
+
getTimelineEntry: Scalars['String'];
|
|
4225
4378
|
getVideoUploadUrl: GetVideoUploadURLResponse;
|
|
4226
4379
|
/** Use this query to get abandoned checkouts. */
|
|
4227
4380
|
listAbandonedCheckouts: CartPaginationResponse;
|
|
@@ -4239,6 +4392,7 @@ export declare type Query = {
|
|
|
4239
4392
|
listCustomer: CustomerPaginationResponse;
|
|
4240
4393
|
listCustomerAttribute: Array<CustomerAttribute>;
|
|
4241
4394
|
listDistrict: Array<District>;
|
|
4395
|
+
listGlobalTaxSettings: Array<GlobalTaxSettings>;
|
|
4242
4396
|
listLanguage: Array<Language>;
|
|
4243
4397
|
/** Using this api, you can view the payment features that a merchant has created for the app. */
|
|
4244
4398
|
listMerchantAppPayment: MerchantAppPaymentPaginationResponse;
|
|
@@ -4259,6 +4413,7 @@ export declare type Query = {
|
|
|
4259
4413
|
*/
|
|
4260
4414
|
listProductBrand: Array<ProductBrand>;
|
|
4261
4415
|
listProductOptionSet: Array<ProductOptionSet>;
|
|
4416
|
+
listProductOrder: Array<ProductOrder>;
|
|
4262
4417
|
listProductStockLocation: ProductStockLocationPaginationResponse;
|
|
4263
4418
|
/** Using this api, you can view the tags of products. */
|
|
4264
4419
|
listProductTag: Array<ProductTag>;
|
|
@@ -4283,10 +4438,8 @@ export declare type Query = {
|
|
|
4283
4438
|
/** Use this query to list active webhooks of your application. */
|
|
4284
4439
|
listWebhook: Array<Webhook>;
|
|
4285
4440
|
me?: Maybe<MeResponse>;
|
|
4286
|
-
productAttributeExport: Scalars['String'];
|
|
4287
4441
|
/** Result(s) containing searched products. */
|
|
4288
4442
|
searchProducts: ProductSearchResponse;
|
|
4289
|
-
variantAttributeExport: Scalars['String'];
|
|
4290
4443
|
};
|
|
4291
4444
|
export declare type QuerygetImageUploadUrlArgs = {
|
|
4292
4445
|
imageDir?: InputMaybe<Scalars['String']>;
|
|
@@ -4294,6 +4447,7 @@ export declare type QuerygetImageUploadUrlArgs = {
|
|
|
4294
4447
|
};
|
|
4295
4448
|
export declare type QuerygetImportJobDataArgs = {
|
|
4296
4449
|
importJobId: Scalars['String'];
|
|
4450
|
+
importType: ImportTypeEnum;
|
|
4297
4451
|
};
|
|
4298
4452
|
export declare type QuerygetVideoUploadUrlArgs = {
|
|
4299
4453
|
videoId: Scalars['String'];
|
|
@@ -4301,10 +4455,10 @@ export declare type QuerygetVideoUploadUrlArgs = {
|
|
|
4301
4455
|
export declare type QuerylistAbandonedCheckoutsArgs = {
|
|
4302
4456
|
id?: InputMaybe<StringFilterInput>;
|
|
4303
4457
|
input: ListAbandonedCartInput;
|
|
4458
|
+
lastActivityDate?: InputMaybe<DateFilterInput>;
|
|
4304
4459
|
mailSendDate?: InputMaybe<DateFilterInput>;
|
|
4305
4460
|
pagination?: InputMaybe<PaginationInput>;
|
|
4306
4461
|
sort?: InputMaybe<Scalars['String']>;
|
|
4307
|
-
updatedAt?: InputMaybe<DateFilterInput>;
|
|
4308
4462
|
};
|
|
4309
4463
|
export declare type QuerylistBranchArgs = {
|
|
4310
4464
|
id?: InputMaybe<StringFilterInput>;
|
|
@@ -4314,10 +4468,13 @@ export declare type QuerylistBranchArgs = {
|
|
|
4314
4468
|
updatedAt?: InputMaybe<DateFilterInput>;
|
|
4315
4469
|
};
|
|
4316
4470
|
export declare type QuerylistCampaignArgs = {
|
|
4471
|
+
canCombineWithOtherCampaigns?: InputMaybe<Scalars['Boolean']>;
|
|
4317
4472
|
id?: InputMaybe<StringFilterInput>;
|
|
4318
4473
|
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
4319
4474
|
pagination?: InputMaybe<PaginationInput>;
|
|
4320
4475
|
search?: InputMaybe<Scalars['String']>;
|
|
4476
|
+
sort?: InputMaybe<Scalars['String']>;
|
|
4477
|
+
type?: InputMaybe<CampaignTypeEnum>;
|
|
4321
4478
|
updatedAt?: InputMaybe<DateFilterInput>;
|
|
4322
4479
|
};
|
|
4323
4480
|
export declare type QuerylistCargoCompanyArgs = {
|
|
@@ -4373,6 +4530,10 @@ export declare type QuerylistDistrictArgs = {
|
|
|
4373
4530
|
stateId?: InputMaybe<StringFilterInput>;
|
|
4374
4531
|
updatedAt?: InputMaybe<DateFilterInput>;
|
|
4375
4532
|
};
|
|
4533
|
+
export declare type QuerylistGlobalTaxSettingsArgs = {
|
|
4534
|
+
id?: InputMaybe<StringFilterInput>;
|
|
4535
|
+
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
4536
|
+
};
|
|
4376
4537
|
export declare type QuerylistLanguageArgs = {
|
|
4377
4538
|
id?: InputMaybe<StringFilterInput>;
|
|
4378
4539
|
};
|
|
@@ -4421,6 +4582,7 @@ export declare type QuerylistProductArgs = {
|
|
|
4421
4582
|
attributeId?: InputMaybe<ProductAttributeFilterInput>;
|
|
4422
4583
|
barcodeList?: InputMaybe<StringFilterInput>;
|
|
4423
4584
|
brandId?: InputMaybe<StringFilterInput>;
|
|
4585
|
+
bundleProductsProductId?: InputMaybe<StringFilterInput>;
|
|
4424
4586
|
categoryIds?: InputMaybe<CategoryFilterInput>;
|
|
4425
4587
|
id?: InputMaybe<StringFilterInput>;
|
|
4426
4588
|
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -4451,6 +4613,13 @@ export declare type QuerylistProductOptionSetArgs = {
|
|
|
4451
4613
|
search?: InputMaybe<Scalars['String']>;
|
|
4452
4614
|
updatedAt?: InputMaybe<DateFilterInput>;
|
|
4453
4615
|
};
|
|
4616
|
+
export declare type QuerylistProductOrderArgs = {
|
|
4617
|
+
brandIds?: InputMaybe<StringFilterInput>;
|
|
4618
|
+
categoryIds?: InputMaybe<StringFilterInput>;
|
|
4619
|
+
id?: InputMaybe<StringFilterInput>;
|
|
4620
|
+
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
4621
|
+
updatedAt?: InputMaybe<DateFilterInput>;
|
|
4622
|
+
};
|
|
4454
4623
|
export declare type QuerylistProductStockLocationArgs = {
|
|
4455
4624
|
id?: InputMaybe<StringFilterInput>;
|
|
4456
4625
|
pagination?: InputMaybe<PaginationInput>;
|
|
@@ -4520,61 +4689,9 @@ export declare type QuerylistVendorArgs = {
|
|
|
4520
4689
|
name?: InputMaybe<StringFilterInput>;
|
|
4521
4690
|
updatedAt?: InputMaybe<DateFilterInput>;
|
|
4522
4691
|
};
|
|
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
4692
|
export declare type QuerysearchProductsArgs = {
|
|
4550
4693
|
input: SearchInput;
|
|
4551
4694
|
};
|
|
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
4695
|
export declare enum SFAnalyticsTrafficSourceEnum {
|
|
4579
4696
|
ADS_OTHER = "ADS_OTHER",
|
|
4580
4697
|
AFFILIATE = "AFFILIATE",
|
|
@@ -4623,6 +4740,7 @@ export declare type SalesChannelPaymentGateway = {
|
|
|
4623
4740
|
};
|
|
4624
4741
|
export declare enum SalesChannelStatusEnum {
|
|
4625
4742
|
HIDDEN = "HIDDEN",
|
|
4743
|
+
PASSIVE = "PASSIVE",
|
|
4626
4744
|
VISIBLE = "VISIBLE"
|
|
4627
4745
|
}
|
|
4628
4746
|
export declare type SalesChannelStockLocation = {
|
|
@@ -4660,14 +4778,24 @@ export declare type SearchCategory = {
|
|
|
4660
4778
|
name: Scalars['String'];
|
|
4661
4779
|
path: Array<SearchCategoryPath>;
|
|
4662
4780
|
slug?: Maybe<Scalars['String']>;
|
|
4663
|
-
translations?: Maybe<Array<
|
|
4781
|
+
translations?: Maybe<Array<SearchCategoryTranslation>>;
|
|
4664
4782
|
};
|
|
4665
4783
|
export declare type SearchCategoryPath = {
|
|
4666
4784
|
__typename?: 'SearchCategoryPath';
|
|
4667
4785
|
id: Scalars['String'];
|
|
4668
4786
|
name: Scalars['String'];
|
|
4669
4787
|
slug?: Maybe<Scalars['String']>;
|
|
4670
|
-
translations?: Maybe<Array<
|
|
4788
|
+
translations?: Maybe<Array<SearchCategoryTranslation>>;
|
|
4789
|
+
};
|
|
4790
|
+
export declare type SearchCategoryTranslation = {
|
|
4791
|
+
__typename?: 'SearchCategoryTranslation';
|
|
4792
|
+
/** It is the description information of the translation. */
|
|
4793
|
+
description?: Maybe<Scalars['String']>;
|
|
4794
|
+
/** It is the name information of the translation. */
|
|
4795
|
+
locale: Scalars['String'];
|
|
4796
|
+
/** It is the information in which language the translation is saved. */
|
|
4797
|
+
name?: Maybe<Scalars['String']>;
|
|
4798
|
+
slug?: Maybe<Scalars['String']>;
|
|
4671
4799
|
};
|
|
4672
4800
|
export declare type SearchHTMLMetaData = {
|
|
4673
4801
|
__typename?: 'SearchHTMLMetaData';
|
|
@@ -4719,11 +4847,13 @@ export declare type SearchProduct = {
|
|
|
4719
4847
|
id: Scalars['String'];
|
|
4720
4848
|
metaData?: Maybe<SearchHTMLMetaData>;
|
|
4721
4849
|
name: Scalars['String'];
|
|
4850
|
+
productGroup?: Maybe<SearchProductGroup>;
|
|
4722
4851
|
productOptionSetId?: Maybe<Scalars['String']>;
|
|
4723
4852
|
productVariantTypes: Array<SearchProductVariantType>;
|
|
4724
4853
|
productVolumeDiscountId?: Maybe<Scalars['String']>;
|
|
4725
4854
|
reviewCount?: Maybe<Scalars['Float']>;
|
|
4726
4855
|
salesChannelIds?: Maybe<Array<Scalars['String']>>;
|
|
4856
|
+
salesChannels?: Maybe<Array<SearchProductSalesChannel>>;
|
|
4727
4857
|
shortDescription?: Maybe<Scalars['String']>;
|
|
4728
4858
|
stars?: Maybe<Array<SearchProductCustomerReviewStar>>;
|
|
4729
4859
|
tags?: Maybe<Array<SearchProductTag>>;
|
|
@@ -4769,14 +4899,28 @@ export declare type SearchProductBrand = {
|
|
|
4769
4899
|
imageId?: Maybe<Scalars['String']>;
|
|
4770
4900
|
name: Scalars['String'];
|
|
4771
4901
|
slug?: Maybe<Scalars['String']>;
|
|
4772
|
-
translations?: Maybe<Array<
|
|
4902
|
+
translations?: Maybe<Array<SearchProductBrandTranslation>>;
|
|
4903
|
+
};
|
|
4904
|
+
export declare type SearchProductBrandTranslation = {
|
|
4905
|
+
__typename?: 'SearchProductBrandTranslation';
|
|
4906
|
+
/** It is the description information of the translation. */
|
|
4907
|
+
description?: Maybe<Scalars['String']>;
|
|
4908
|
+
/** It is the name information of the translation. */
|
|
4909
|
+
locale: Scalars['String'];
|
|
4910
|
+
/** It is the information in which language the translation is saved. */
|
|
4911
|
+
name?: Maybe<Scalars['String']>;
|
|
4912
|
+
slug?: Maybe<Scalars['String']>;
|
|
4773
4913
|
};
|
|
4774
4914
|
export declare type SearchProductCampaign = {
|
|
4775
4915
|
__typename?: 'SearchProductCampaign';
|
|
4916
|
+
applicablePrice?: Maybe<CampaignApplicablePriceEnum>;
|
|
4917
|
+
applyCampaignToProductPrice?: Maybe<Scalars['Boolean']>;
|
|
4776
4918
|
buyXThenGetY?: Maybe<SearchProductCampaignBuyXThenGetY>;
|
|
4777
4919
|
currencyCodes?: Maybe<Array<Scalars['String']>>;
|
|
4778
4920
|
dateRange?: Maybe<SearchProductCampaignDateRangeField>;
|
|
4779
4921
|
fixedDiscount?: Maybe<SearchProductCampaignFixedDiscount>;
|
|
4922
|
+
id?: Maybe<Scalars['String']>;
|
|
4923
|
+
includeDiscountedProducts?: Maybe<Scalars['Boolean']>;
|
|
4780
4924
|
salesChannelIds?: Maybe<Array<Scalars['String']>>;
|
|
4781
4925
|
title: Scalars['String'];
|
|
4782
4926
|
type: CampaignTypeEnum;
|
|
@@ -4785,6 +4929,7 @@ export declare type SearchProductCampaignBuyX = {
|
|
|
4785
4929
|
__typename?: 'SearchProductCampaignBuyX';
|
|
4786
4930
|
amount: Scalars['Float'];
|
|
4787
4931
|
applyByQuantity: Scalars['Boolean'];
|
|
4932
|
+
filter?: Maybe<SearchProductCampaignFilter>;
|
|
4788
4933
|
};
|
|
4789
4934
|
export declare type SearchProductCampaignBuyXThenGetY = {
|
|
4790
4935
|
__typename?: 'SearchProductCampaignBuyXThenGetY';
|
|
@@ -4797,24 +4942,68 @@ export declare type SearchProductCampaignDateRangeField = {
|
|
|
4797
4942
|
end?: Maybe<Scalars['Timestamp']>;
|
|
4798
4943
|
start?: Maybe<Scalars['Timestamp']>;
|
|
4799
4944
|
};
|
|
4945
|
+
export declare type SearchProductCampaignFilter = {
|
|
4946
|
+
__typename?: 'SearchProductCampaignFilter';
|
|
4947
|
+
idList: Array<Scalars['String']>;
|
|
4948
|
+
type: CampaignFilterTypeEnum;
|
|
4949
|
+
};
|
|
4800
4950
|
export declare type SearchProductCampaignFixedDiscount = {
|
|
4801
4951
|
__typename?: 'SearchProductCampaignFixedDiscount';
|
|
4802
4952
|
amount?: Maybe<Scalars['Float']>;
|
|
4953
|
+
filters?: Maybe<Array<SearchProductCampaignFilter>>;
|
|
4803
4954
|
};
|
|
4804
4955
|
export declare type SearchProductCampaignGetY = {
|
|
4805
4956
|
__typename?: 'SearchProductCampaignGetY';
|
|
4806
4957
|
amount: Scalars['Float'];
|
|
4958
|
+
automaticallyAddItemToCart?: Maybe<Scalars['Boolean']>;
|
|
4807
4959
|
discountRatio: Scalars['Float'];
|
|
4960
|
+
filter?: Maybe<SearchProductCampaignFilter>;
|
|
4808
4961
|
};
|
|
4809
4962
|
export declare type SearchProductCampaignOffer = {
|
|
4810
4963
|
__typename?: 'SearchProductCampaignOffer';
|
|
4811
4964
|
id: Scalars['String'];
|
|
4812
4965
|
};
|
|
4966
|
+
export declare type SearchProductCampaignPrice = {
|
|
4967
|
+
__typename?: 'SearchProductCampaignPrice';
|
|
4968
|
+
campaignId?: Maybe<Scalars['String']>;
|
|
4969
|
+
campaignPrice?: Maybe<Scalars['Float']>;
|
|
4970
|
+
};
|
|
4813
4971
|
export declare type SearchProductCustomerReviewStar = {
|
|
4814
4972
|
__typename?: 'SearchProductCustomerReviewStar';
|
|
4815
4973
|
count: Scalars['Float'];
|
|
4816
4974
|
star: Scalars['Float'];
|
|
4817
4975
|
};
|
|
4976
|
+
export declare type SearchProductGroup = {
|
|
4977
|
+
__typename?: 'SearchProductGroup';
|
|
4978
|
+
groupKey: Scalars['String'];
|
|
4979
|
+
id: Scalars['String'];
|
|
4980
|
+
name: Scalars['String'];
|
|
4981
|
+
order: SearchProductGroupOrder;
|
|
4982
|
+
translations?: Maybe<Array<SearchProductGroupTranslation>>;
|
|
4983
|
+
values: Array<SearchProductGroupValueType>;
|
|
4984
|
+
};
|
|
4985
|
+
export declare type SearchProductGroupOrder = {
|
|
4986
|
+
__typename?: 'SearchProductGroupOrder';
|
|
4987
|
+
orderAttributeId: Scalars['String'];
|
|
4988
|
+
value: Scalars['String'];
|
|
4989
|
+
};
|
|
4990
|
+
export declare type SearchProductGroupTranslation = {
|
|
4991
|
+
__typename?: 'SearchProductGroupTranslation';
|
|
4992
|
+
locale: Scalars['String'];
|
|
4993
|
+
values?: Maybe<Array<SearchProductGroupValueTranslation>>;
|
|
4994
|
+
};
|
|
4995
|
+
export declare type SearchProductGroupValueTranslation = {
|
|
4996
|
+
__typename?: 'SearchProductGroupValueTranslation';
|
|
4997
|
+
id: Scalars['String'];
|
|
4998
|
+
name?: Maybe<Scalars['String']>;
|
|
4999
|
+
value?: Maybe<Scalars['String']>;
|
|
5000
|
+
};
|
|
5001
|
+
export declare type SearchProductGroupValueType = {
|
|
5002
|
+
__typename?: 'SearchProductGroupValueType';
|
|
5003
|
+
id: Scalars['String'];
|
|
5004
|
+
name: Scalars['String'];
|
|
5005
|
+
value: Scalars['String'];
|
|
5006
|
+
};
|
|
4818
5007
|
export declare type SearchProductImage = {
|
|
4819
5008
|
__typename?: 'SearchProductImage';
|
|
4820
5009
|
fileName?: Maybe<Scalars['String']>;
|
|
@@ -4826,6 +5015,7 @@ export declare type SearchProductImage = {
|
|
|
4826
5015
|
export declare type SearchProductPrice = {
|
|
4827
5016
|
__typename?: 'SearchProductPrice';
|
|
4828
5017
|
buyPrice?: Maybe<Scalars['Float']>;
|
|
5018
|
+
campaignPrice?: Maybe<SearchProductCampaignPrice>;
|
|
4829
5019
|
currency?: Maybe<Scalars['String']>;
|
|
4830
5020
|
currencyCode?: Maybe<Scalars['String']>;
|
|
4831
5021
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
@@ -4846,6 +5036,15 @@ export declare type SearchProductProductUnit = {
|
|
|
4846
5036
|
name: Scalars['String'];
|
|
4847
5037
|
translations?: Maybe<Array<ProductUnitTranslation>>;
|
|
4848
5038
|
};
|
|
5039
|
+
export declare type SearchProductSalesChannel = {
|
|
5040
|
+
__typename?: 'SearchProductSalesChannel';
|
|
5041
|
+
id: Scalars['String'];
|
|
5042
|
+
maxQuantityPerCart?: Maybe<Scalars['Float']>;
|
|
5043
|
+
minQuantityPerCart?: Maybe<Scalars['Float']>;
|
|
5044
|
+
productVolumeDiscountId?: Maybe<Scalars['String']>;
|
|
5045
|
+
quantitySettings?: Maybe<Array<Scalars['Float']>>;
|
|
5046
|
+
status: SalesChannelStatusEnum;
|
|
5047
|
+
};
|
|
4849
5048
|
export declare type SearchProductStockLocation = {
|
|
4850
5049
|
__typename?: 'SearchProductStockLocation';
|
|
4851
5050
|
stockCount: Scalars['Float'];
|
|
@@ -5090,6 +5289,10 @@ export declare type StockLocationAddressCountry = {
|
|
|
5090
5289
|
code?: Maybe<Scalars['String']>;
|
|
5091
5290
|
/** It is the id of the country of the address. */
|
|
5092
5291
|
id?: Maybe<Scalars['String']>;
|
|
5292
|
+
/** It is the code of the country of the address. */
|
|
5293
|
+
iso2?: Maybe<Scalars['String']>;
|
|
5294
|
+
/** It is the code of the country of the address. */
|
|
5295
|
+
iso3?: Maybe<Scalars['String']>;
|
|
5093
5296
|
/** It is the name of the country of the address. */
|
|
5094
5297
|
name: Scalars['String'];
|
|
5095
5298
|
};
|
|
@@ -5231,22 +5434,51 @@ export declare type TaxSettingsGiftPackageTaxRate = {
|
|
|
5231
5434
|
stateId?: Maybe<Scalars['String']>;
|
|
5232
5435
|
taxRate: Scalars['Float'];
|
|
5233
5436
|
};
|
|
5437
|
+
export declare type TaxSettingsGiftPackageTaxRateInput = {
|
|
5438
|
+
stateId?: InputMaybe<Scalars['String']>;
|
|
5439
|
+
taxRate: Scalars['Float'];
|
|
5440
|
+
};
|
|
5441
|
+
export declare type TaxSettingsInput = {
|
|
5442
|
+
countryId: Scalars['String'];
|
|
5443
|
+
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
5444
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
5445
|
+
giftPackageTaxRates?: InputMaybe<Array<TaxSettingsGiftPackageTaxRateInput>>;
|
|
5446
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
5447
|
+
productOverrides: Array<TaxSettingsProductOverrideInput>;
|
|
5448
|
+
rates?: InputMaybe<Array<TaxSettingsRateInput>>;
|
|
5449
|
+
shippingTaxRates?: InputMaybe<Array<TaxSettingsShippingTaxRateInput>>;
|
|
5450
|
+
taxRate: Scalars['Float'];
|
|
5451
|
+
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
5452
|
+
};
|
|
5234
5453
|
export declare type TaxSettingsProductOverride = {
|
|
5235
5454
|
__typename?: 'TaxSettingsProductOverride';
|
|
5236
5455
|
productTagIds: Array<Scalars['String']>;
|
|
5237
5456
|
stateId?: Maybe<Scalars['String']>;
|
|
5238
5457
|
taxRate: Scalars['Float'];
|
|
5239
5458
|
};
|
|
5459
|
+
export declare type TaxSettingsProductOverrideInput = {
|
|
5460
|
+
productTagIds: Array<Scalars['String']>;
|
|
5461
|
+
stateId?: InputMaybe<Scalars['String']>;
|
|
5462
|
+
taxRate: Scalars['Float'];
|
|
5463
|
+
};
|
|
5240
5464
|
export declare type TaxSettingsRate = {
|
|
5241
5465
|
__typename?: 'TaxSettingsRate';
|
|
5242
5466
|
stateId: Scalars['String'];
|
|
5243
5467
|
taxRate: Scalars['Float'];
|
|
5244
5468
|
};
|
|
5469
|
+
export declare type TaxSettingsRateInput = {
|
|
5470
|
+
stateId: Scalars['String'];
|
|
5471
|
+
taxRate: Scalars['Float'];
|
|
5472
|
+
};
|
|
5245
5473
|
export declare type TaxSettingsShippingTaxRate = {
|
|
5246
5474
|
__typename?: 'TaxSettingsShippingTaxRate';
|
|
5247
5475
|
stateId?: Maybe<Scalars['String']>;
|
|
5248
5476
|
taxRate: Scalars['Float'];
|
|
5249
5477
|
};
|
|
5478
|
+
export declare type TaxSettingsShippingTaxRateInput = {
|
|
5479
|
+
stateId?: InputMaybe<Scalars['String']>;
|
|
5480
|
+
taxRate: Scalars['Float'];
|
|
5481
|
+
};
|
|
5250
5482
|
export declare type Terminal = {
|
|
5251
5483
|
__typename?: 'Terminal';
|
|
5252
5484
|
branchId: Scalars['String'];
|
|
@@ -5256,6 +5488,17 @@ export declare type Terminal = {
|
|
|
5256
5488
|
name: Scalars['String'];
|
|
5257
5489
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
5258
5490
|
};
|
|
5491
|
+
export declare type TieredDiscountInput = {
|
|
5492
|
+
filters?: InputMaybe<Array<CampaignFilterInput>>;
|
|
5493
|
+
isApplyByCartAmount?: InputMaybe<Scalars['Boolean']>;
|
|
5494
|
+
rules: Array<TieredDiscountRuleInput>;
|
|
5495
|
+
shouldMatchAllConditions?: InputMaybe<Scalars['Boolean']>;
|
|
5496
|
+
};
|
|
5497
|
+
export declare type TieredDiscountRuleInput = {
|
|
5498
|
+
amount: Scalars['Float'];
|
|
5499
|
+
lineItemQuantityRange?: InputMaybe<CampaignMinMaxRangeFieldInput>;
|
|
5500
|
+
priceRange?: InputMaybe<CampaignMinMaxRangeFieldInput>;
|
|
5501
|
+
};
|
|
5259
5502
|
export declare type TimelineInput = {
|
|
5260
5503
|
/** The message you want to add */
|
|
5261
5504
|
message: Scalars['String'];
|