@ikas/api-client 1.0.89 → 1.0.91
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/admin/generated/default-gqls.d.ts +5 -0
- package/dist/api/admin/generated/default-gqls.js +27 -22
- package/dist/api/admin/generated/default-gqls.js.map +1 -1
- package/dist/api/admin/generated/index.d.ts +370 -100
- package/dist/api/admin/generated/index.js +71 -4
- package/dist/api/admin/generated/index.js.map +1 -1
- package/dist/api/admin/generated/mutation.d.ts +3 -1
- package/dist/api/admin/generated/mutation.js +6 -0
- package/dist/api/admin/generated/mutation.js.map +1 -1
- package/dist/api/admin/generated/query.d.ts +4 -1
- package/dist/api/admin/generated/query.js +9 -0
- package/dist/api/admin/generated/query.js.map +1 -1
- package/package.json +1 -1
|
@@ -92,6 +92,10 @@ export declare enum AppScopeEnum {
|
|
|
92
92
|
WRITE_PRODUCTS = "WRITE_PRODUCTS",
|
|
93
93
|
WRITE_STOREFRONT = "WRITE_STOREFRONT"
|
|
94
94
|
}
|
|
95
|
+
export type AppSubscriptionTrialConfig = {
|
|
96
|
+
__typename?: 'AppSubscriptionTrialConfig';
|
|
97
|
+
days: Scalars['Float'];
|
|
98
|
+
};
|
|
95
99
|
export type ApproveOrderTransactionsInput = {
|
|
96
100
|
orderId: Scalars['String'];
|
|
97
101
|
paymentMethods?: InputMaybe<Array<PaymentMethodTypeEnum>>;
|
|
@@ -102,7 +106,7 @@ export type AuthorizedApp = {
|
|
|
102
106
|
addedDate: Scalars['Timestamp'];
|
|
103
107
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
104
108
|
deleted: Scalars['Boolean'];
|
|
105
|
-
id: Scalars['
|
|
109
|
+
id: Scalars['String'];
|
|
106
110
|
partnerId: Scalars['String'];
|
|
107
111
|
/** The id of the sales channel owned by the merchant. */
|
|
108
112
|
salesChannelId?: Maybe<Scalars['String']>;
|
|
@@ -132,7 +136,7 @@ export type Branch = {
|
|
|
132
136
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
133
137
|
deleted: Scalars['Boolean'];
|
|
134
138
|
favoriteItems?: Maybe<Array<BranchFavoriteItem>>;
|
|
135
|
-
id: Scalars['
|
|
139
|
+
id: Scalars['String'];
|
|
136
140
|
name: Scalars['String'];
|
|
137
141
|
salesChannelId: Scalars['String'];
|
|
138
142
|
settings?: Maybe<BranchSettings>;
|
|
@@ -481,6 +485,7 @@ export type Campaign = {
|
|
|
481
485
|
applyCampaignToProductPrice?: Maybe<Scalars['Boolean']>;
|
|
482
486
|
buyXThenGetY?: Maybe<BuyXThenGetY>;
|
|
483
487
|
canCombineWithOtherCampaigns: Scalars['Boolean'];
|
|
488
|
+
couponAutoAddProduct?: Maybe<CouponAutoAddProduct>;
|
|
484
489
|
couponPrefix?: Maybe<Scalars['String']>;
|
|
485
490
|
couponValidityPeriod?: Maybe<Scalars['Float']>;
|
|
486
491
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
@@ -490,7 +495,7 @@ export type Campaign = {
|
|
|
490
495
|
deleted: Scalars['Boolean'];
|
|
491
496
|
fixedDiscount?: Maybe<FixedDiscount>;
|
|
492
497
|
hasCoupon: Scalars['Boolean'];
|
|
493
|
-
id: Scalars['
|
|
498
|
+
id: Scalars['String'];
|
|
494
499
|
includeDiscountedProducts?: Maybe<Scalars['Boolean']>;
|
|
495
500
|
isFreeShipping?: Maybe<Scalars['Boolean']>;
|
|
496
501
|
onlyUseCustomer?: Maybe<Scalars['Boolean']>;
|
|
@@ -525,6 +530,9 @@ export type CampaignDateRangeFieldInput = {
|
|
|
525
530
|
end?: InputMaybe<Scalars['Timestamp']>;
|
|
526
531
|
start?: InputMaybe<Scalars['Timestamp']>;
|
|
527
532
|
};
|
|
533
|
+
export type CampaignDateRangeIsActiveFilterInput = {
|
|
534
|
+
eq?: InputMaybe<Scalars['Boolean']>;
|
|
535
|
+
};
|
|
528
536
|
export type CampaignFilter = {
|
|
529
537
|
__typename?: 'CampaignFilter';
|
|
530
538
|
idList: Array<Scalars['String']>;
|
|
@@ -556,6 +564,7 @@ export type CampaignInput = {
|
|
|
556
564
|
applyCampaignToProductPrice?: InputMaybe<Scalars['Boolean']>;
|
|
557
565
|
buyXThenGetY?: InputMaybe<BuyXThenGetYInput>;
|
|
558
566
|
canCombineWithOtherCampaigns: Scalars['Boolean'];
|
|
567
|
+
couponAutoAddProduct?: InputMaybe<CouponAutoAddProductInput>;
|
|
559
568
|
couponPrefix?: InputMaybe<Scalars['String']>;
|
|
560
569
|
couponValidityPeriod?: InputMaybe<Scalars['Float']>;
|
|
561
570
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
@@ -565,7 +574,7 @@ export type CampaignInput = {
|
|
|
565
574
|
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
566
575
|
fixedDiscount?: InputMaybe<FixedDiscountInput>;
|
|
567
576
|
hasCoupon: Scalars['Boolean'];
|
|
568
|
-
id?: InputMaybe<Scalars['
|
|
577
|
+
id?: InputMaybe<Scalars['String']>;
|
|
569
578
|
includeDiscountedProducts?: InputMaybe<Scalars['Boolean']>;
|
|
570
579
|
isFreeShipping?: InputMaybe<Scalars['Boolean']>;
|
|
571
580
|
onlyUseCustomer?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -595,7 +604,7 @@ export type CampaignOffer = {
|
|
|
595
604
|
deleted: Scalars['Boolean'];
|
|
596
605
|
endDate?: Maybe<Scalars['Timestamp']>;
|
|
597
606
|
followUpActionType: CampaignOfferFollowUpActionTypeEnum;
|
|
598
|
-
id: Scalars['
|
|
607
|
+
id: Scalars['String'];
|
|
599
608
|
maxCount?: Maybe<Scalars['Float']>;
|
|
600
609
|
maximumRequiredCartAmount?: Maybe<Scalars['Float']>;
|
|
601
610
|
minimumRequiredCartAmount?: Maybe<Scalars['Float']>;
|
|
@@ -776,7 +785,7 @@ export type Cart = {
|
|
|
776
785
|
customerId?: Maybe<Scalars['String']>;
|
|
777
786
|
deleted: Scalars['Boolean'];
|
|
778
787
|
dueDate: Scalars['Timestamp'];
|
|
779
|
-
id: Scalars['
|
|
788
|
+
id: Scalars['String'];
|
|
780
789
|
itemCount: Scalars['Float'];
|
|
781
790
|
items: Array<OrderLineItem>;
|
|
782
791
|
lastActivityDate: Scalars['Timestamp'];
|
|
@@ -893,7 +902,7 @@ export type Category = {
|
|
|
893
902
|
deleted: Scalars['Boolean'];
|
|
894
903
|
/** It is the description of the category of the product. */
|
|
895
904
|
description?: Maybe<Scalars['String']>;
|
|
896
|
-
id: Scalars['
|
|
905
|
+
id: Scalars['String'];
|
|
897
906
|
/** It is the id where the picture of the category is kept in the system. */
|
|
898
907
|
imageId?: Maybe<Scalars['String']>;
|
|
899
908
|
isAutomated?: Maybe<Scalars['Boolean']>;
|
|
@@ -952,7 +961,7 @@ export type CategoryInput = {
|
|
|
952
961
|
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
953
962
|
/** It is the description of the category of the product. */
|
|
954
963
|
description?: InputMaybe<Scalars['String']>;
|
|
955
|
-
id?: InputMaybe<Scalars['
|
|
964
|
+
id?: InputMaybe<Scalars['String']>;
|
|
956
965
|
/** It is the id where the picture of the category is kept in the system. */
|
|
957
966
|
imageId?: InputMaybe<Scalars['String']>;
|
|
958
967
|
isAutomated?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -979,7 +988,7 @@ export type CategoryPathItem = {
|
|
|
979
988
|
deleted: Scalars['Boolean'];
|
|
980
989
|
/** It is the description of the category of the product. */
|
|
981
990
|
description?: Maybe<Scalars['String']>;
|
|
982
|
-
id: Scalars['
|
|
991
|
+
id: Scalars['String'];
|
|
983
992
|
/** It is the id where the picture of the category is kept in the system. */
|
|
984
993
|
imageId?: Maybe<Scalars['String']>;
|
|
985
994
|
isAutomated?: Maybe<Scalars['Boolean']>;
|
|
@@ -1049,7 +1058,7 @@ export type Checkout = {
|
|
|
1049
1058
|
deleted: Scalars['Boolean'];
|
|
1050
1059
|
giftPackageLines?: Maybe<Array<OrderGiftPackageLine>>;
|
|
1051
1060
|
giftPackageNote?: Maybe<Scalars['String']>;
|
|
1052
|
-
id: Scalars['
|
|
1061
|
+
id: Scalars['String'];
|
|
1053
1062
|
isGiftPackage?: Maybe<Scalars['Boolean']>;
|
|
1054
1063
|
merchantId: Scalars['String'];
|
|
1055
1064
|
note?: Maybe<Scalars['String']>;
|
|
@@ -1103,7 +1112,7 @@ export type City = {
|
|
|
1103
1112
|
countryId: Scalars['String'];
|
|
1104
1113
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1105
1114
|
deleted: Scalars['Boolean'];
|
|
1106
|
-
id: Scalars['
|
|
1115
|
+
id: Scalars['String'];
|
|
1107
1116
|
/** Indicates the latitude of the city. */
|
|
1108
1117
|
latitude?: Maybe<Scalars['String']>;
|
|
1109
1118
|
/** Indicates the longitude of the city. */
|
|
@@ -1130,7 +1139,7 @@ export type Country = {
|
|
|
1130
1139
|
emoji?: Maybe<Scalars['String']>;
|
|
1131
1140
|
/** Indicates the flag emoji code of the county. */
|
|
1132
1141
|
emojiString?: Maybe<Scalars['String']>;
|
|
1133
|
-
id: Scalars['
|
|
1142
|
+
id: Scalars['String'];
|
|
1134
1143
|
/** The two-letter country code corresponding to the country. */
|
|
1135
1144
|
iso2?: Maybe<Scalars['String']>;
|
|
1136
1145
|
/** The three-letter country code corresponding to the country. */
|
|
@@ -1158,12 +1167,23 @@ export type Coupon = {
|
|
|
1158
1167
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1159
1168
|
dateRange?: Maybe<CouponDateRangeField>;
|
|
1160
1169
|
deleted: Scalars['Boolean'];
|
|
1161
|
-
id: Scalars['
|
|
1170
|
+
id: Scalars['String'];
|
|
1162
1171
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1163
1172
|
usageCount: Scalars['Int'];
|
|
1164
1173
|
usageLimit?: Maybe<Scalars['Int']>;
|
|
1165
1174
|
usageLimitPerCustomer?: Maybe<Scalars['Int']>;
|
|
1166
1175
|
};
|
|
1176
|
+
export type CouponAutoAddProduct = {
|
|
1177
|
+
__typename?: 'CouponAutoAddProduct';
|
|
1178
|
+
discountRatio: Scalars['Float'];
|
|
1179
|
+
filter: CampaignFilter;
|
|
1180
|
+
quantity: Scalars['Float'];
|
|
1181
|
+
};
|
|
1182
|
+
export type CouponAutoAddProductInput = {
|
|
1183
|
+
discountRatio?: Scalars['Float'];
|
|
1184
|
+
filter: CampaignFilterInput;
|
|
1185
|
+
quantity?: Scalars['Float'];
|
|
1186
|
+
};
|
|
1167
1187
|
export type CouponDateRangeField = {
|
|
1168
1188
|
__typename?: 'CouponDateRangeField';
|
|
1169
1189
|
end?: Maybe<Scalars['Timestamp']>;
|
|
@@ -1215,7 +1235,7 @@ export type CreateOrderInput = {
|
|
|
1215
1235
|
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
1216
1236
|
/** Host name of order source. */
|
|
1217
1237
|
host?: InputMaybe<Scalars['String']>;
|
|
1218
|
-
id?: InputMaybe<Scalars['
|
|
1238
|
+
id?: InputMaybe<Scalars['String']>;
|
|
1219
1239
|
/** It is an order note. */
|
|
1220
1240
|
note?: InputMaybe<Scalars['String']>;
|
|
1221
1241
|
/** A list of adjustment objects, each containing information about a adjustment in the order. */
|
|
@@ -1282,11 +1302,28 @@ export type CreateWalletTransactionInput = {
|
|
|
1282
1302
|
transactionCategory: IkasWalletTransactionCategoryEnum;
|
|
1283
1303
|
transactionId: Scalars['String'];
|
|
1284
1304
|
type: CreateWalletTransactionTypeEnum;
|
|
1305
|
+
usableSources?: InputMaybe<Array<IkasWalletTransactionSourceEnum>>;
|
|
1285
1306
|
};
|
|
1286
1307
|
export declare enum CreateWalletTransactionTypeEnum {
|
|
1287
1308
|
REFUND = "REFUND",
|
|
1288
1309
|
SALE = "SALE"
|
|
1289
1310
|
}
|
|
1311
|
+
export type Currency = {
|
|
1312
|
+
__typename?: 'Currency';
|
|
1313
|
+
code: Scalars['String'];
|
|
1314
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1315
|
+
decimalDigits: Scalars['Float'];
|
|
1316
|
+
deleted: Scalars['Boolean'];
|
|
1317
|
+
id: Scalars['String'];
|
|
1318
|
+
isoNum?: Maybe<Scalars['Float']>;
|
|
1319
|
+
name: Scalars['String'];
|
|
1320
|
+
namePlural: Scalars['String'];
|
|
1321
|
+
order: Scalars['Float'];
|
|
1322
|
+
rounding: Scalars['Float'];
|
|
1323
|
+
symbol: Scalars['String'];
|
|
1324
|
+
symbolNative: Scalars['String'];
|
|
1325
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1326
|
+
};
|
|
1290
1327
|
export declare enum CurrencyFormatSymbolPosition {
|
|
1291
1328
|
LEFT = "LEFT",
|
|
1292
1329
|
RIGHT = "RIGHT"
|
|
@@ -1320,7 +1357,7 @@ export type Customer = {
|
|
|
1320
1357
|
/** Customer's full name. Firstname plus lastname if firstname and lastname exist. Otherwise, it is saved as firstname only. */
|
|
1321
1358
|
fullName?: Maybe<Scalars['String']>;
|
|
1322
1359
|
gender?: Maybe<CustomerGenderTypeEnum>;
|
|
1323
|
-
id: Scalars['
|
|
1360
|
+
id: Scalars['String'];
|
|
1324
1361
|
ip?: Maybe<Scalars['String']>;
|
|
1325
1362
|
/** Email verification status. **isEmailVerified** returns `true` if the email is verified. */
|
|
1326
1363
|
isEmailVerified?: Maybe<Scalars['Boolean']>;
|
|
@@ -1392,7 +1429,7 @@ export type CustomerAddress = {
|
|
|
1392
1429
|
district?: Maybe<CustomerAddressDistrict>;
|
|
1393
1430
|
/** The customer's first name. */
|
|
1394
1431
|
firstName: Scalars['String'];
|
|
1395
|
-
id: Scalars['
|
|
1432
|
+
id: Scalars['String'];
|
|
1396
1433
|
/** The customer's identity numbers. */
|
|
1397
1434
|
identityNumber?: Maybe<Scalars['String']>;
|
|
1398
1435
|
/** Whether this address is the default address for the customer. Returns `true` for each default address. */
|
|
@@ -1467,7 +1504,7 @@ export type CustomerAddressInput = {
|
|
|
1467
1504
|
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
1468
1505
|
district?: InputMaybe<CustomerAddressDistrictInput>;
|
|
1469
1506
|
firstName: Scalars['String'];
|
|
1470
|
-
id?: InputMaybe<Scalars['
|
|
1507
|
+
id?: InputMaybe<Scalars['String']>;
|
|
1471
1508
|
identityNumber?: InputMaybe<Scalars['String']>;
|
|
1472
1509
|
isDefault?: Scalars['Boolean'];
|
|
1473
1510
|
lastName: Scalars['String'];
|
|
@@ -1508,7 +1545,7 @@ export type CustomerAttribute = {
|
|
|
1508
1545
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1509
1546
|
deleted: Scalars['Boolean'];
|
|
1510
1547
|
description?: Maybe<Scalars['String']>;
|
|
1511
|
-
id: Scalars['
|
|
1548
|
+
id: Scalars['String'];
|
|
1512
1549
|
name: Scalars['String'];
|
|
1513
1550
|
options?: Maybe<Array<CustomerAttributeOption>>;
|
|
1514
1551
|
order?: Maybe<Scalars['Float']>;
|
|
@@ -1522,7 +1559,7 @@ export type CustomerAttributeOption = {
|
|
|
1522
1559
|
__typename?: 'CustomerAttributeOption';
|
|
1523
1560
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1524
1561
|
deleted: Scalars['Boolean'];
|
|
1525
|
-
id: Scalars['
|
|
1562
|
+
id: Scalars['String'];
|
|
1526
1563
|
name: Scalars['String'];
|
|
1527
1564
|
order?: Maybe<Scalars['Float']>;
|
|
1528
1565
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
@@ -1604,7 +1641,7 @@ export type CustomerGroup = {
|
|
|
1604
1641
|
conditions?: Maybe<Array<CustomerGroupCondition>>;
|
|
1605
1642
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1606
1643
|
deleted: Scalars['Boolean'];
|
|
1607
|
-
id: Scalars['
|
|
1644
|
+
id: Scalars['String'];
|
|
1608
1645
|
isAutomated?: Maybe<Scalars['Boolean']>;
|
|
1609
1646
|
name: Scalars['String'];
|
|
1610
1647
|
priceListId?: Maybe<Scalars['String']>;
|
|
@@ -1645,7 +1682,7 @@ export type CustomerGroupInput = {
|
|
|
1645
1682
|
conditions?: InputMaybe<Array<CustomerGroupConditionInput>>;
|
|
1646
1683
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1647
1684
|
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
1648
|
-
id?: InputMaybe<Scalars['
|
|
1685
|
+
id?: InputMaybe<Scalars['String']>;
|
|
1649
1686
|
isAutomated?: InputMaybe<Scalars['Boolean']>;
|
|
1650
1687
|
name: Scalars['String'];
|
|
1651
1688
|
priceListId?: InputMaybe<Scalars['String']>;
|
|
@@ -1666,7 +1703,7 @@ export type CustomerInput = {
|
|
|
1666
1703
|
firstName: Scalars['String'];
|
|
1667
1704
|
fullName?: InputMaybe<Scalars['String']>;
|
|
1668
1705
|
gender?: InputMaybe<CustomerGenderTypeEnum>;
|
|
1669
|
-
id?: InputMaybe<Scalars['
|
|
1706
|
+
id?: InputMaybe<Scalars['String']>;
|
|
1670
1707
|
lastName?: InputMaybe<Scalars['String']>;
|
|
1671
1708
|
note?: InputMaybe<Scalars['String']>;
|
|
1672
1709
|
phone?: InputMaybe<Scalars['String']>;
|
|
@@ -1766,6 +1803,21 @@ export declare enum CustomerSubscriptionPlanOrderStatusEnum {
|
|
|
1766
1803
|
PLANNED = "PLANNED",
|
|
1767
1804
|
POSTPONED = "POSTPONED"
|
|
1768
1805
|
}
|
|
1806
|
+
export type CustomerTag = {
|
|
1807
|
+
__typename?: 'CustomerTag';
|
|
1808
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1809
|
+
deleted: Scalars['Boolean'];
|
|
1810
|
+
id: Scalars['String'];
|
|
1811
|
+
name: Scalars['String'];
|
|
1812
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1813
|
+
};
|
|
1814
|
+
export type CustomerTagInput = {
|
|
1815
|
+
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1816
|
+
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
1817
|
+
id?: InputMaybe<Scalars['String']>;
|
|
1818
|
+
name: Scalars['String'];
|
|
1819
|
+
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1820
|
+
};
|
|
1769
1821
|
export type DateFilterInput = {
|
|
1770
1822
|
/** Equal to operator. Matches exact values. */
|
|
1771
1823
|
eq?: InputMaybe<Scalars['Timestamp']>;
|
|
@@ -1792,7 +1844,7 @@ export type District = {
|
|
|
1792
1844
|
countryId: Scalars['String'];
|
|
1793
1845
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1794
1846
|
deleted: Scalars['Boolean'];
|
|
1795
|
-
id: Scalars['
|
|
1847
|
+
id: Scalars['String'];
|
|
1796
1848
|
/** Indicates the latitude of the city. */
|
|
1797
1849
|
latitude?: Maybe<Scalars['String']>;
|
|
1798
1850
|
/** Indicates the longitude of the city. */
|
|
@@ -1849,6 +1901,20 @@ export type GenerateOrderPaymentLinkInput = {
|
|
|
1849
1901
|
storefrontRoutingId?: InputMaybe<Scalars['String']>;
|
|
1850
1902
|
storefrontThemeId?: InputMaybe<Scalars['String']>;
|
|
1851
1903
|
};
|
|
1904
|
+
export type GetAvailableSubscriptionPrice = {
|
|
1905
|
+
__typename?: 'GetAvailableSubscriptionPrice';
|
|
1906
|
+
period: SubscriptionPeriodEnum;
|
|
1907
|
+
price: Scalars['Float'];
|
|
1908
|
+
};
|
|
1909
|
+
export type GetAvailableSubscriptionResponse = {
|
|
1910
|
+
__typename?: 'GetAvailableSubscriptionResponse';
|
|
1911
|
+
currencyCode: SubscriptionPriceCurrencyEnum;
|
|
1912
|
+
id: Scalars['String'];
|
|
1913
|
+
key: Scalars['String'];
|
|
1914
|
+
name: Scalars['String'];
|
|
1915
|
+
prices: Array<GetAvailableSubscriptionPrice>;
|
|
1916
|
+
trialConfig: AppSubscriptionTrialConfig;
|
|
1917
|
+
};
|
|
1852
1918
|
export type GetIkasWalletWithBalanceGatewayResponse = {
|
|
1853
1919
|
__typename?: 'GetIkasWalletWithBalanceGatewayResponse';
|
|
1854
1920
|
id: Scalars['String'];
|
|
@@ -1918,7 +1984,7 @@ export type GlobalTaxSettings = {
|
|
|
1918
1984
|
__typename?: 'GlobalTaxSettings';
|
|
1919
1985
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1920
1986
|
deleted: Scalars['Boolean'];
|
|
1921
|
-
id: Scalars['
|
|
1987
|
+
id: Scalars['String'];
|
|
1922
1988
|
isTaxExcludedOnPrices: Scalars['Boolean'];
|
|
1923
1989
|
isTaxExcludedOnShippingPrices: Scalars['Boolean'];
|
|
1924
1990
|
storefrontId?: Maybe<Scalars['String']>;
|
|
@@ -1927,12 +1993,16 @@ export type GlobalTaxSettings = {
|
|
|
1927
1993
|
export type GlobalTaxSettingsInput = {
|
|
1928
1994
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1929
1995
|
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
1930
|
-
id?: InputMaybe<Scalars['
|
|
1996
|
+
id?: InputMaybe<Scalars['String']>;
|
|
1931
1997
|
isTaxExcludedOnPrices?: Scalars['Boolean'];
|
|
1932
1998
|
isTaxExcludedOnShippingPrices?: Scalars['Boolean'];
|
|
1933
1999
|
storefrontId?: InputMaybe<Scalars['String']>;
|
|
1934
2000
|
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1935
2001
|
};
|
|
2002
|
+
export declare enum GoogleCatalogBarcodeDisplayType {
|
|
2003
|
+
GTIN = "GTIN",
|
|
2004
|
+
MPN = "MPN"
|
|
2005
|
+
}
|
|
1936
2006
|
export type HTMLMetaData = {
|
|
1937
2007
|
__typename?: 'HTMLMetaData';
|
|
1938
2008
|
/** Canonical URL list of entity. */
|
|
@@ -1943,7 +2013,7 @@ export type HTMLMetaData = {
|
|
|
1943
2013
|
description?: Maybe<Scalars['String']>;
|
|
1944
2014
|
/** Defines if the entity is not indexable by search engines */
|
|
1945
2015
|
disableIndex?: Maybe<Scalars['Boolean']>;
|
|
1946
|
-
id: Scalars['
|
|
2016
|
+
id: Scalars['String'];
|
|
1947
2017
|
metadataOverrides?: Maybe<Array<HTMLMetaDataOverride>>;
|
|
1948
2018
|
/** The page title of the metadata. */
|
|
1949
2019
|
pageTitle?: Maybe<Scalars['String']>;
|
|
@@ -1962,7 +2032,7 @@ export type HTMLMetaDataInput = {
|
|
|
1962
2032
|
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
1963
2033
|
description?: InputMaybe<Scalars['String']>;
|
|
1964
2034
|
disableIndex?: InputMaybe<Scalars['Boolean']>;
|
|
1965
|
-
id?: InputMaybe<Scalars['
|
|
2035
|
+
id?: InputMaybe<Scalars['String']>;
|
|
1966
2036
|
metadataOverrides?: InputMaybe<Array<HTMLMetaDataOverrideInput>>;
|
|
1967
2037
|
pageTitle?: InputMaybe<Scalars['String']>;
|
|
1968
2038
|
slug: Scalars['String'];
|
|
@@ -2011,8 +2081,9 @@ export type IkasWallet = {
|
|
|
2011
2081
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2012
2082
|
deleted: Scalars['Boolean'];
|
|
2013
2083
|
hasCommissionFree?: Maybe<Scalars['Boolean']>;
|
|
2084
|
+
hasTaxExemption?: Maybe<Scalars['Boolean']>;
|
|
2014
2085
|
hasVatExemption?: Maybe<Scalars['Boolean']>;
|
|
2015
|
-
id: Scalars['
|
|
2086
|
+
id: Scalars['String'];
|
|
2016
2087
|
lastPayoutDate?: Maybe<Scalars['Timestamp']>;
|
|
2017
2088
|
minimumBalance?: Maybe<Scalars['Float']>;
|
|
2018
2089
|
nextEstimatedPayoutDate: Scalars['Timestamp'];
|
|
@@ -2082,13 +2153,14 @@ export type IkasWalletTransaction = {
|
|
|
2082
2153
|
__typename?: 'IkasWalletTransaction';
|
|
2083
2154
|
amount: Scalars['Float'];
|
|
2084
2155
|
amountWithoutTax?: Maybe<Scalars['Float']>;
|
|
2156
|
+
campaignSnapshot?: Maybe<IkasWalletTransactionCampaignSnapshot>;
|
|
2085
2157
|
commission?: Maybe<IkasWalletTransactionCommission>;
|
|
2086
2158
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2087
2159
|
currencyCode: Scalars['String'];
|
|
2088
2160
|
deleted: Scalars['Boolean'];
|
|
2089
2161
|
error?: Maybe<IkasWalletTransactionError>;
|
|
2090
2162
|
expectedPayoutDate?: Maybe<Scalars['Timestamp']>;
|
|
2091
|
-
id: Scalars['
|
|
2163
|
+
id: Scalars['String'];
|
|
2092
2164
|
metadata?: Maybe<Scalars['JSON']>;
|
|
2093
2165
|
orderDetail?: Maybe<IkasWalletTransactionOrderDetail>;
|
|
2094
2166
|
paymentGatewayCode?: Maybe<PaymentGatewayCodeEnum>;
|
|
@@ -2109,6 +2181,14 @@ export type IkasWalletTransaction = {
|
|
|
2109
2181
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
2110
2182
|
withholding?: Maybe<IkasWalletTransactionWithholding>;
|
|
2111
2183
|
};
|
|
2184
|
+
export type IkasWalletTransactionCampaignSnapshot = {
|
|
2185
|
+
__typename?: 'IkasWalletTransactionCampaignSnapshot';
|
|
2186
|
+
amount: Scalars['Float'];
|
|
2187
|
+
id: Scalars['String'];
|
|
2188
|
+
isCustomAmount: Scalars['Boolean'];
|
|
2189
|
+
name: Scalars['String'];
|
|
2190
|
+
type: IkasWalletTransactionFreeCreditCampaignTypeEnum;
|
|
2191
|
+
};
|
|
2112
2192
|
/** Ikas Wallet Transaction Card Association Enum */
|
|
2113
2193
|
export declare enum IkasWalletTransactionCardAssociationEnum {
|
|
2114
2194
|
AMERICAN_EXPRESS = "AMERICAN_EXPRESS",
|
|
@@ -2140,6 +2220,11 @@ export type IkasWalletTransactionError = {
|
|
|
2140
2220
|
code: Scalars['String'];
|
|
2141
2221
|
message: Scalars['String'];
|
|
2142
2222
|
};
|
|
2223
|
+
/** Ikas Wallet Transaction Free Credit Campaign Type Enum */
|
|
2224
|
+
export declare enum IkasWalletTransactionFreeCreditCampaignTypeEnum {
|
|
2225
|
+
FIRST_DELIVERED_ORDER = "FIRST_DELIVERED_ORDER",
|
|
2226
|
+
REFERENCE_PROGRAM = "REFERENCE_PROGRAM"
|
|
2227
|
+
}
|
|
2143
2228
|
export type IkasWalletTransactionInstallment = {
|
|
2144
2229
|
__typename?: 'IkasWalletTransactionInstallment';
|
|
2145
2230
|
installmentCount?: Maybe<Scalars['Float']>;
|
|
@@ -2228,6 +2313,7 @@ export type IkasWalletTransactionSourceMetadata = {
|
|
|
2228
2313
|
lastName?: Maybe<Scalars['String']>;
|
|
2229
2314
|
};
|
|
2230
2315
|
export declare enum IkasWalletTransactionStatusEnum {
|
|
2316
|
+
AUTHORIZED = "AUTHORIZED",
|
|
2231
2317
|
FAILED = "FAILED",
|
|
2232
2318
|
PENDING = "PENDING",
|
|
2233
2319
|
SUCCESS = "SUCCESS"
|
|
@@ -2253,6 +2339,7 @@ export declare enum IkasWalletTransactionTypeEnum {
|
|
|
2253
2339
|
export type IkasWalletTransactionWithholding = {
|
|
2254
2340
|
__typename?: 'IkasWalletTransactionWithholding';
|
|
2255
2341
|
amount: Scalars['Float'];
|
|
2342
|
+
isTaxFree?: Maybe<Scalars['Boolean']>;
|
|
2256
2343
|
rate: Scalars['Float'];
|
|
2257
2344
|
};
|
|
2258
2345
|
/** Import Status Type */
|
|
@@ -2282,13 +2369,30 @@ export declare enum ImportTypeEnum {
|
|
|
2282
2369
|
PRODUCT_PURCHASE_ORDER = "PRODUCT_PURCHASE_ORDER",
|
|
2283
2370
|
PRODUCT_STOCK_COUNT = "PRODUCT_STOCK_COUNT",
|
|
2284
2371
|
PRODUCT_STOCK_TRANSFER = "PRODUCT_STOCK_TRANSFER",
|
|
2372
|
+
REPORT_PURCHASED_TOGETHER = "REPORT_PURCHASED_TOGETHER",
|
|
2285
2373
|
REPORT_PURCHASE_ORDER_BY_DATE = "REPORT_PURCHASE_ORDER_BY_DATE",
|
|
2286
2374
|
REPORT_SALES_BY_DATE = "REPORT_SALES_BY_DATE",
|
|
2287
2375
|
REPORT_SALES_BY_GROUP_FIELDS = "REPORT_SALES_BY_GROUP_FIELDS",
|
|
2376
|
+
REPORT_SF_ANALYTICS_CONVERSION = "REPORT_SF_ANALYTICS_CONVERSION",
|
|
2288
2377
|
STOREFRONT_REDIRECT = "STOREFRONT_REDIRECT",
|
|
2289
2378
|
STORE_FRONT_THEME_LOCALIZATION = "STORE_FRONT_THEME_LOCALIZATION",
|
|
2290
|
-
TRANSLATION = "TRANSLATION"
|
|
2379
|
+
TRANSLATION = "TRANSLATION",
|
|
2380
|
+
VARIANT_TYPE = "VARIANT_TYPE"
|
|
2291
2381
|
}
|
|
2382
|
+
export type IndexPageSeoSetting = {
|
|
2383
|
+
__typename?: 'IndexPageSeoSetting';
|
|
2384
|
+
canonicals?: Maybe<Array<Scalars['String']>>;
|
|
2385
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2386
|
+
deleted: Scalars['Boolean'];
|
|
2387
|
+
description?: Maybe<Scalars['String']>;
|
|
2388
|
+
disableIndex?: Maybe<Scalars['Boolean']>;
|
|
2389
|
+
favIcon?: Maybe<Scalars['String']>;
|
|
2390
|
+
id: Scalars['String'];
|
|
2391
|
+
locale: Scalars['String'];
|
|
2392
|
+
pageTitle?: Maybe<Scalars['String']>;
|
|
2393
|
+
slug?: Maybe<Scalars['String']>;
|
|
2394
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
2395
|
+
};
|
|
2292
2396
|
export type Invoice = {
|
|
2293
2397
|
__typename?: 'Invoice';
|
|
2294
2398
|
/** It is the app id where the merchant is registered and creates the order invoice. */
|
|
@@ -2319,7 +2423,7 @@ export type Language = {
|
|
|
2319
2423
|
__typename?: 'Language';
|
|
2320
2424
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2321
2425
|
deleted: Scalars['Boolean'];
|
|
2322
|
-
id: Scalars['
|
|
2426
|
+
id: Scalars['String'];
|
|
2323
2427
|
isFree?: Maybe<Scalars['Boolean']>;
|
|
2324
2428
|
locale: Scalars['String'];
|
|
2325
2429
|
name: Scalars['String'];
|
|
@@ -2374,6 +2478,15 @@ export type LocationTranslations = {
|
|
|
2374
2478
|
fr?: Maybe<Scalars['String']>;
|
|
2375
2479
|
tr: Scalars['String'];
|
|
2376
2480
|
};
|
|
2481
|
+
export type MarketingCatalogGoogleConfigurations = {
|
|
2482
|
+
__typename?: 'MarketingCatalogGoogleConfigurations';
|
|
2483
|
+
barcodeDisplayType?: Maybe<GoogleCatalogBarcodeDisplayType>;
|
|
2484
|
+
};
|
|
2485
|
+
export type MarketingCatalogSettings = {
|
|
2486
|
+
__typename?: 'MarketingCatalogSettings';
|
|
2487
|
+
applyCampaignsToMarketingCatalog?: Maybe<Scalars['Boolean']>;
|
|
2488
|
+
googleConfigurations?: Maybe<MarketingCatalogGoogleConfigurations>;
|
|
2489
|
+
};
|
|
2377
2490
|
export type MeResponse = {
|
|
2378
2491
|
__typename?: 'MeResponse';
|
|
2379
2492
|
/** The date the app was added. */
|
|
@@ -2420,6 +2533,8 @@ export type MerchantAddress = {
|
|
|
2420
2533
|
taxOffice?: Maybe<Scalars['String']>;
|
|
2421
2534
|
title?: Maybe<Scalars['String']>;
|
|
2422
2535
|
type?: Maybe<MerchantSettingsAddressTypeEnum>;
|
|
2536
|
+
verified?: Maybe<Scalars['Boolean']>;
|
|
2537
|
+
verifiedAt?: Maybe<Scalars['Timestamp']>;
|
|
2423
2538
|
vkn?: Maybe<Scalars['String']>;
|
|
2424
2539
|
};
|
|
2425
2540
|
export type MerchantAddressCity = {
|
|
@@ -2464,7 +2579,7 @@ export type MerchantAppPayment = {
|
|
|
2464
2579
|
authorizedAppId?: Maybe<Scalars['String']>;
|
|
2465
2580
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2466
2581
|
deleted: Scalars['Boolean'];
|
|
2467
|
-
id: Scalars['
|
|
2582
|
+
id: Scalars['String'];
|
|
2468
2583
|
/** The url where the Merchant will be redirected to the payment screen. On this page, the payment process is performed by obtaining the card information. */
|
|
2469
2584
|
merchantPaymentUrl: Scalars['String'];
|
|
2470
2585
|
/** The created merchant app keeps the name of the payment. */
|
|
@@ -2545,7 +2660,7 @@ export type MerchantAppSubscription = {
|
|
|
2545
2660
|
currencyCode?: Maybe<Scalars['String']>;
|
|
2546
2661
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
2547
2662
|
deleted: Scalars['Boolean'];
|
|
2548
|
-
id: Scalars['
|
|
2663
|
+
id: Scalars['String'];
|
|
2549
2664
|
/** It is the date of receipt of the last payment for the license subscription. */
|
|
2550
2665
|
lastPaymentDate?: Maybe<Scalars['Timestamp']>;
|
|
2551
2666
|
/** The discount rate on the last payment for the app license subscription. */
|
|
@@ -2577,7 +2692,7 @@ export type MerchantLicence = {
|
|
|
2577
2692
|
developmentStore?: Maybe<Scalars['Boolean']>;
|
|
2578
2693
|
/** It is the information of the start date of the license. */
|
|
2579
2694
|
fromDate?: Maybe<Scalars['Timestamp']>;
|
|
2580
|
-
id: Scalars['
|
|
2695
|
+
id: Scalars['String'];
|
|
2581
2696
|
period?: Maybe<SubscriptionPeriodEnum>;
|
|
2582
2697
|
region: MerchantRegionEnum;
|
|
2583
2698
|
/** It is the information of the expiry date of the license. */
|
|
@@ -2630,7 +2745,7 @@ export type MerchantSettings = {
|
|
|
2630
2745
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
2631
2746
|
defaultLocale?: Maybe<Scalars['String']>;
|
|
2632
2747
|
deleted: Scalars['Boolean'];
|
|
2633
|
-
id: Scalars['
|
|
2748
|
+
id: Scalars['String'];
|
|
2634
2749
|
logoId?: Maybe<Scalars['String']>;
|
|
2635
2750
|
merchantName: Scalars['String'];
|
|
2636
2751
|
phone?: Maybe<Scalars['String']>;
|
|
@@ -2688,6 +2803,8 @@ export type Mutation = {
|
|
|
2688
2803
|
deleteCustomerGroupList: Scalars['Boolean'];
|
|
2689
2804
|
/** Mutation to delete Customer */
|
|
2690
2805
|
deleteCustomerList: Scalars['Boolean'];
|
|
2806
|
+
/** Mutation to delete CustomerTag */
|
|
2807
|
+
deleteCustomerTagList: Scalars['Boolean'];
|
|
2691
2808
|
/** Mutation to delete GlobalTaxSettings */
|
|
2692
2809
|
deleteGlobalTaxSettingsList: Scalars['Boolean'];
|
|
2693
2810
|
/** Mutation to delete OrderTag */
|
|
@@ -2735,6 +2852,8 @@ export type Mutation = {
|
|
|
2735
2852
|
saveCustomer: Customer;
|
|
2736
2853
|
/** Mutation to save CustomerGroup */
|
|
2737
2854
|
saveCustomerGroup: CustomerGroup;
|
|
2855
|
+
/** Mutation to save CustomerTag */
|
|
2856
|
+
saveCustomerTag: CustomerTag;
|
|
2738
2857
|
/** Mutation to save GlobalTaxSettings */
|
|
2739
2858
|
saveGlobalTaxSettings: GlobalTaxSettings;
|
|
2740
2859
|
/** Mutation to save OrderTag */
|
|
@@ -2836,6 +2955,9 @@ export type MutationdeleteCustomerGroupListArgs = {
|
|
|
2836
2955
|
export type MutationdeleteCustomerListArgs = {
|
|
2837
2956
|
idList: Array<Scalars['String']>;
|
|
2838
2957
|
};
|
|
2958
|
+
export type MutationdeleteCustomerTagListArgs = {
|
|
2959
|
+
idList: Array<Scalars['String']>;
|
|
2960
|
+
};
|
|
2839
2961
|
export type MutationdeleteGlobalTaxSettingsListArgs = {
|
|
2840
2962
|
idList: Array<Scalars['String']>;
|
|
2841
2963
|
};
|
|
@@ -2911,6 +3033,9 @@ export type MutationsaveCustomerArgs = {
|
|
|
2911
3033
|
export type MutationsaveCustomerGroupArgs = {
|
|
2912
3034
|
input: CustomerGroupInput;
|
|
2913
3035
|
};
|
|
3036
|
+
export type MutationsaveCustomerTagArgs = {
|
|
3037
|
+
input: CustomerTagInput;
|
|
3038
|
+
};
|
|
2914
3039
|
export type MutationsaveGlobalTaxSettingsArgs = {
|
|
2915
3040
|
input: GlobalTaxSettingsInput;
|
|
2916
3041
|
};
|
|
@@ -3120,6 +3245,7 @@ export type Order = {
|
|
|
3120
3245
|
taxLines?: Maybe<Array<OrderTaxLine>>;
|
|
3121
3246
|
/** It is the `terminalId`` information of the orders created via ikasPOS. */
|
|
3122
3247
|
terminalId?: Maybe<Scalars['String']>;
|
|
3248
|
+
timezone?: Maybe<Scalars['String']>;
|
|
3123
3249
|
/** The total final price of the order resulting from the apply of `orderAdjustments` , `shippingLines`, and `giftPackageLines` pricing to the order total price. */
|
|
3124
3250
|
totalFinalPrice: Scalars['Float'];
|
|
3125
3251
|
/** It is the sum of the net prices of the line items in the order. */
|
|
@@ -3293,6 +3419,7 @@ export type OrderAdjustment = {
|
|
|
3293
3419
|
campaignType?: Maybe<CampaignTypeEnum>;
|
|
3294
3420
|
/** It is the coupon id generated depending on the campaign. */
|
|
3295
3421
|
couponId?: Maybe<Scalars['String']>;
|
|
3422
|
+
createdFor?: Maybe<CampaignCreatedForEnum>;
|
|
3296
3423
|
/** It is the name of the adjustment. */
|
|
3297
3424
|
name: Scalars['String'];
|
|
3298
3425
|
/** It is the order of the adjustment. Adjustments are applied in this order. */
|
|
@@ -3300,6 +3427,7 @@ export type OrderAdjustment = {
|
|
|
3300
3427
|
/** The amount is the id of the transaction. */
|
|
3301
3428
|
transactionId?: Maybe<Scalars['String']>;
|
|
3302
3429
|
type: OrderAdjustmentEnum;
|
|
3430
|
+
usedLoyaltyPoints?: Maybe<Scalars['Float']>;
|
|
3303
3431
|
};
|
|
3304
3432
|
export type OrderAdjustmentAppliedOrderLine = {
|
|
3305
3433
|
__typename?: 'OrderAdjustmentAppliedOrderLine';
|
|
@@ -3406,7 +3534,7 @@ export type OrderCustomerInput = {
|
|
|
3406
3534
|
email?: InputMaybe<Scalars['String']>;
|
|
3407
3535
|
/** It is the first name of the customer who created the order. */
|
|
3408
3536
|
firstName?: InputMaybe<Scalars['String']>;
|
|
3409
|
-
id?: InputMaybe<Scalars['
|
|
3537
|
+
id?: InputMaybe<Scalars['String']>;
|
|
3410
3538
|
/** It is the last name of the customer who created the order. */
|
|
3411
3539
|
lastName?: InputMaybe<Scalars['String']>;
|
|
3412
3540
|
};
|
|
@@ -3542,7 +3670,7 @@ export type OrderLineItem = {
|
|
|
3542
3670
|
finalPrice?: Maybe<Scalars['Float']>;
|
|
3543
3671
|
/** It is the unit price of the order line item. */
|
|
3544
3672
|
finalUnitPrice?: Maybe<Scalars['Float']>;
|
|
3545
|
-
id: Scalars['
|
|
3673
|
+
id: Scalars['String'];
|
|
3546
3674
|
/** It is the option information of the variant value in the order line item. */
|
|
3547
3675
|
options?: Maybe<Array<OrderLineOption>>;
|
|
3548
3676
|
/** It is the original order line item id of the line item. If the line item is derived from another line item, this field is filled. */
|
|
@@ -3582,7 +3710,7 @@ export type OrderLineItemInput = {
|
|
|
3582
3710
|
discount?: InputMaybe<OrderLineDiscountInput>;
|
|
3583
3711
|
/** It is the discount price of the line item. */
|
|
3584
3712
|
discountPrice?: InputMaybe<Scalars['Float']>;
|
|
3585
|
-
id?: InputMaybe<Scalars['
|
|
3713
|
+
id?: InputMaybe<Scalars['String']>;
|
|
3586
3714
|
/** It is the options information in the order line item. */
|
|
3587
3715
|
options?: InputMaybe<Array<OrderLineOptionInput>>;
|
|
3588
3716
|
/** It is the price of the line item. */
|
|
@@ -3860,7 +3988,7 @@ export type OrderPackage = {
|
|
|
3860
3988
|
deleted: Scalars['Boolean'];
|
|
3861
3989
|
/** If the package was sent via the cargo application and received an error, this field is filled with an error message. */
|
|
3862
3990
|
errorMessage?: Maybe<Scalars['String']>;
|
|
3863
|
-
id: Scalars['
|
|
3991
|
+
id: Scalars['String'];
|
|
3864
3992
|
/** An optional note, can attach to the order package. */
|
|
3865
3993
|
note?: Maybe<Scalars['String']>;
|
|
3866
3994
|
/** It is the id list of the order line items in the package. */
|
|
@@ -4062,7 +4190,7 @@ export type OrderSession = {
|
|
|
4062
4190
|
durationMS?: Maybe<Scalars['Float']>;
|
|
4063
4191
|
end?: Maybe<Scalars['Timestamp']>;
|
|
4064
4192
|
host?: Maybe<Scalars['String']>;
|
|
4065
|
-
id: Scalars['
|
|
4193
|
+
id: Scalars['String'];
|
|
4066
4194
|
ip?: Maybe<Scalars['String']>;
|
|
4067
4195
|
journeyId: Scalars['String'];
|
|
4068
4196
|
orderId?: Maybe<Scalars['String']>;
|
|
@@ -4262,14 +4390,14 @@ export type OrderTag = {
|
|
|
4262
4390
|
__typename?: 'OrderTag';
|
|
4263
4391
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4264
4392
|
deleted: Scalars['Boolean'];
|
|
4265
|
-
id: Scalars['
|
|
4393
|
+
id: Scalars['String'];
|
|
4266
4394
|
name: Scalars['String'];
|
|
4267
4395
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
4268
4396
|
};
|
|
4269
4397
|
export type OrderTagInput = {
|
|
4270
4398
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4271
4399
|
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
4272
|
-
id?: InputMaybe<Scalars['
|
|
4400
|
+
id?: InputMaybe<Scalars['String']>;
|
|
4273
4401
|
name: Scalars['String'];
|
|
4274
4402
|
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4275
4403
|
};
|
|
@@ -4308,7 +4436,7 @@ export type PaymentGateway = {
|
|
|
4308
4436
|
deleted: Scalars['Boolean'];
|
|
4309
4437
|
description?: Maybe<Scalars['String']>;
|
|
4310
4438
|
group?: Maybe<PaymentGatewayGroup>;
|
|
4311
|
-
id: Scalars['
|
|
4439
|
+
id: Scalars['String'];
|
|
4312
4440
|
isPassive?: Maybe<Scalars['Boolean']>;
|
|
4313
4441
|
logoUrl?: Maybe<Scalars['String']>;
|
|
4314
4442
|
masterPassClientId?: Maybe<Scalars['String']>;
|
|
@@ -4342,7 +4470,7 @@ export declare enum PaymentGatewayCodeEnum {
|
|
|
4342
4470
|
IKAS_PAY_PARATIKA = "IKAS_PAY_PARATIKA",
|
|
4343
4471
|
IKAS_PAY_PAYZEE = "IKAS_PAY_PAYZEE",
|
|
4344
4472
|
IKAS_WALLET = "IKAS_WALLET",
|
|
4345
|
-
|
|
4473
|
+
IYZICO = "IYZICO",
|
|
4346
4474
|
KLARNA = "KLARNA",
|
|
4347
4475
|
MANUEL = "MANUEL",
|
|
4348
4476
|
MOKA = "MOKA",
|
|
@@ -4430,7 +4558,7 @@ export type PriceList = {
|
|
|
4430
4558
|
currencyCode?: Maybe<Scalars['String']>;
|
|
4431
4559
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
4432
4560
|
deleted: Scalars['Boolean'];
|
|
4433
|
-
id: Scalars['
|
|
4561
|
+
id: Scalars['String'];
|
|
4434
4562
|
/** It is the name of the price list of the product. */
|
|
4435
4563
|
name: Scalars['String'];
|
|
4436
4564
|
ruleList?: Maybe<Array<PriceListRuleList>>;
|
|
@@ -4506,7 +4634,7 @@ export type Product = {
|
|
|
4506
4634
|
groupVariantsByVariantTypeId?: Maybe<Scalars['String']>;
|
|
4507
4635
|
/** List of hidden sales channel ids of the product. */
|
|
4508
4636
|
hiddenSalesChannelIds?: Maybe<Array<Scalars['String']>>;
|
|
4509
|
-
id: Scalars['
|
|
4637
|
+
id: Scalars['String'];
|
|
4510
4638
|
/** Max purchasable quantity of the product for per cart. */
|
|
4511
4639
|
maxQuantityPerCart?: Maybe<Scalars['Float']>;
|
|
4512
4640
|
/** HTML Metadata identifier of the product. */
|
|
@@ -4552,7 +4680,7 @@ export type ProductAttribute = {
|
|
|
4552
4680
|
deleted: Scalars['Boolean'];
|
|
4553
4681
|
/** Description of the attribute */
|
|
4554
4682
|
description?: Maybe<Scalars['String']>;
|
|
4555
|
-
id: Scalars['
|
|
4683
|
+
id: Scalars['String'];
|
|
4556
4684
|
/** Name of the attribute */
|
|
4557
4685
|
name: Scalars['String'];
|
|
4558
4686
|
/** Options of the attribute */
|
|
@@ -4574,7 +4702,7 @@ export type ProductAttributeInput = {
|
|
|
4574
4702
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4575
4703
|
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
4576
4704
|
description?: InputMaybe<Scalars['String']>;
|
|
4577
|
-
id?: InputMaybe<Scalars['
|
|
4705
|
+
id?: InputMaybe<Scalars['String']>;
|
|
4578
4706
|
name: Scalars['String'];
|
|
4579
4707
|
options?: InputMaybe<Array<ProductAttributeOptionInput>>;
|
|
4580
4708
|
tableTemplate?: InputMaybe<ProductAttributeTableTemplateInput>;
|
|
@@ -4588,7 +4716,7 @@ export type ProductAttributeOption = {
|
|
|
4588
4716
|
colorCode?: Maybe<Scalars['String']>;
|
|
4589
4717
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4590
4718
|
deleted: Scalars['Boolean'];
|
|
4591
|
-
id: Scalars['
|
|
4719
|
+
id: Scalars['String'];
|
|
4592
4720
|
/** Name of the product attribute option */
|
|
4593
4721
|
name: Scalars['String'];
|
|
4594
4722
|
/** It is the image information of the product attribute option. */
|
|
@@ -4599,7 +4727,7 @@ export type ProductAttributeOptionInput = {
|
|
|
4599
4727
|
colorCode?: InputMaybe<Scalars['String']>;
|
|
4600
4728
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4601
4729
|
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
4602
|
-
id?: InputMaybe<Scalars['
|
|
4730
|
+
id?: InputMaybe<Scalars['String']>;
|
|
4603
4731
|
name: Scalars['String'];
|
|
4604
4732
|
thumbnailImageId?: InputMaybe<Scalars['String']>;
|
|
4605
4733
|
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
@@ -4680,7 +4808,7 @@ export type ProductAttributeValue = {
|
|
|
4680
4808
|
};
|
|
4681
4809
|
export type ProductAttributeValueInput = {
|
|
4682
4810
|
imageIds?: InputMaybe<Array<Scalars['String']>>;
|
|
4683
|
-
productAttributeId
|
|
4811
|
+
productAttributeId: Scalars['String'];
|
|
4684
4812
|
productAttributeOptionId?: InputMaybe<Scalars['String']>;
|
|
4685
4813
|
value?: InputMaybe<Scalars['String']>;
|
|
4686
4814
|
};
|
|
@@ -4704,7 +4832,7 @@ export type ProductBrand = {
|
|
|
4704
4832
|
deleted: Scalars['Boolean'];
|
|
4705
4833
|
/** The description of the product's brand. */
|
|
4706
4834
|
description?: Maybe<Scalars['String']>;
|
|
4707
|
-
id: Scalars['
|
|
4835
|
+
id: Scalars['String'];
|
|
4708
4836
|
/** The image information of the product's brand. */
|
|
4709
4837
|
imageId?: Maybe<Scalars['String']>;
|
|
4710
4838
|
/** It is the metadata information of the product brand. */
|
|
@@ -4723,7 +4851,7 @@ export type ProductBrandInput = {
|
|
|
4723
4851
|
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
4724
4852
|
/** The description of the product's brand. */
|
|
4725
4853
|
description?: InputMaybe<Scalars['String']>;
|
|
4726
|
-
id?: InputMaybe<Scalars['
|
|
4854
|
+
id?: InputMaybe<Scalars['String']>;
|
|
4727
4855
|
/** The image information of the product's brand. */
|
|
4728
4856
|
imageId?: InputMaybe<Scalars['String']>;
|
|
4729
4857
|
/** It is the metadata information of the product brand. */
|
|
@@ -4785,7 +4913,7 @@ export type ProductInput = {
|
|
|
4785
4913
|
googleTaxonomyId?: InputMaybe<Scalars['String']>;
|
|
4786
4914
|
groupVariantsByVariantTypeId?: InputMaybe<Scalars['String']>;
|
|
4787
4915
|
hiddenSalesChannelIds?: InputMaybe<Array<Scalars['String']>>;
|
|
4788
|
-
id?: InputMaybe<Scalars['
|
|
4916
|
+
id?: InputMaybe<Scalars['String']>;
|
|
4789
4917
|
/** Max purchasable quantity of the product for per cart. */
|
|
4790
4918
|
maxQuantityPerCart?: InputMaybe<Scalars['Float']>;
|
|
4791
4919
|
metaData?: InputMaybe<HTMLMetaDataInput>;
|
|
@@ -4814,7 +4942,7 @@ export type ProductOption = {
|
|
|
4814
4942
|
dateSettings?: Maybe<ProductOptionDateSettings>;
|
|
4815
4943
|
deleted: Scalars['Boolean'];
|
|
4816
4944
|
fileSettings?: Maybe<ProductOptionFileSettings>;
|
|
4817
|
-
id: Scalars['
|
|
4945
|
+
id: Scalars['String'];
|
|
4818
4946
|
isOptional?: Maybe<Scalars['Boolean']>;
|
|
4819
4947
|
name: Scalars['String'];
|
|
4820
4948
|
optionalText?: Maybe<Scalars['String']>;
|
|
@@ -4863,7 +4991,7 @@ export type ProductOptionSelectValue = {
|
|
|
4863
4991
|
colorCode?: Maybe<Scalars['String']>;
|
|
4864
4992
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4865
4993
|
deleted: Scalars['Boolean'];
|
|
4866
|
-
id: Scalars['
|
|
4994
|
+
id: Scalars['String'];
|
|
4867
4995
|
order: Scalars['Float'];
|
|
4868
4996
|
otherPrices?: Maybe<Array<ProductOptionSelectValueOtherPrice>>;
|
|
4869
4997
|
price?: Maybe<Scalars['Float']>;
|
|
@@ -4889,7 +5017,7 @@ export type ProductOptionSet = {
|
|
|
4889
5017
|
__typename?: 'ProductOptionSet';
|
|
4890
5018
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4891
5019
|
deleted: Scalars['Boolean'];
|
|
4892
|
-
id: Scalars['
|
|
5020
|
+
id: Scalars['String'];
|
|
4893
5021
|
name: Scalars['String'];
|
|
4894
5022
|
options: Array<ProductOption>;
|
|
4895
5023
|
translations?: Maybe<Array<ProductOptionSetTranslations>>;
|
|
@@ -4928,7 +5056,7 @@ export type ProductOrder = {
|
|
|
4928
5056
|
categoryIds?: Maybe<Array<Scalars['String']>>;
|
|
4929
5057
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4930
5058
|
deleted: Scalars['Boolean'];
|
|
4931
|
-
id: Scalars['
|
|
5059
|
+
id: Scalars['String'];
|
|
4932
5060
|
products: Array<ProductOrderProduct>;
|
|
4933
5061
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
4934
5062
|
};
|
|
@@ -4937,17 +5065,17 @@ export type ProductOrderInput = {
|
|
|
4937
5065
|
categoryIds?: InputMaybe<Array<Scalars['String']>>;
|
|
4938
5066
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4939
5067
|
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
4940
|
-
id?: InputMaybe<Scalars['
|
|
5068
|
+
id?: InputMaybe<Scalars['String']>;
|
|
4941
5069
|
products: Array<ProductOrderProductInput>;
|
|
4942
5070
|
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4943
5071
|
};
|
|
4944
5072
|
export type ProductOrderProduct = {
|
|
4945
5073
|
__typename?: 'ProductOrderProduct';
|
|
4946
|
-
order: Scalars['
|
|
5074
|
+
order: Scalars['Float'];
|
|
4947
5075
|
productId: Scalars['String'];
|
|
4948
5076
|
};
|
|
4949
5077
|
export type ProductOrderProductInput = {
|
|
4950
|
-
order: Scalars['
|
|
5078
|
+
order: Scalars['Float'];
|
|
4951
5079
|
productId: Scalars['String'];
|
|
4952
5080
|
};
|
|
4953
5081
|
export type ProductPaginationResponse = {
|
|
@@ -5035,7 +5163,7 @@ export type ProductSearchResponse = {
|
|
|
5035
5163
|
/** Number of search results listed in current page. */
|
|
5036
5164
|
count: Scalars['Float'];
|
|
5037
5165
|
/** Search result */
|
|
5038
|
-
data:
|
|
5166
|
+
data: Array<SearchProduct>;
|
|
5039
5167
|
/** Maximum number of results returned in each page. */
|
|
5040
5168
|
limit: Scalars['Float'];
|
|
5041
5169
|
/** Current page number of the search results. */
|
|
@@ -5049,7 +5177,7 @@ export type ProductStockLocation = {
|
|
|
5049
5177
|
__typename?: 'ProductStockLocation';
|
|
5050
5178
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
5051
5179
|
deleted: Scalars['Boolean'];
|
|
5052
|
-
id: Scalars['
|
|
5180
|
+
id: Scalars['String'];
|
|
5053
5181
|
productId: Scalars['String'];
|
|
5054
5182
|
stockCount: Scalars['Float'];
|
|
5055
5183
|
stockLocationId: Scalars['String'];
|
|
@@ -5059,7 +5187,7 @@ export type ProductStockLocation = {
|
|
|
5059
5187
|
export type ProductStockLocationInput = {
|
|
5060
5188
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
5061
5189
|
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
5062
|
-
id?: InputMaybe<Scalars['
|
|
5190
|
+
id?: InputMaybe<Scalars['String']>;
|
|
5063
5191
|
/** It is the product id to which the variant associated. */
|
|
5064
5192
|
productId: Scalars['String'];
|
|
5065
5193
|
/** It is the stock quantity of the variant. */
|
|
@@ -5103,7 +5231,7 @@ export type ProductTag = {
|
|
|
5103
5231
|
__typename?: 'ProductTag';
|
|
5104
5232
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
5105
5233
|
deleted: Scalars['Boolean'];
|
|
5106
|
-
id: Scalars['
|
|
5234
|
+
id: Scalars['String'];
|
|
5107
5235
|
/** The name of the product's tag. */
|
|
5108
5236
|
name: Scalars['String'];
|
|
5109
5237
|
/** The name of the product's tag. */
|
|
@@ -5113,7 +5241,7 @@ export type ProductTag = {
|
|
|
5113
5241
|
export type ProductTagInput = {
|
|
5114
5242
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
5115
5243
|
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
5116
|
-
id?: InputMaybe<Scalars['
|
|
5244
|
+
id?: InputMaybe<Scalars['String']>;
|
|
5117
5245
|
/** The name of the product's tag. */
|
|
5118
5246
|
name: Scalars['String'];
|
|
5119
5247
|
/** The name of the product's tag. */
|
|
@@ -5163,7 +5291,7 @@ export type ProductUnit = {
|
|
|
5163
5291
|
__typename?: 'ProductUnit';
|
|
5164
5292
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
5165
5293
|
deleted: Scalars['Boolean'];
|
|
5166
|
-
id: Scalars['
|
|
5294
|
+
id: Scalars['String'];
|
|
5167
5295
|
/** The name of the product's unit. */
|
|
5168
5296
|
name: Scalars['String'];
|
|
5169
5297
|
/** The name of the product's unit. */
|
|
@@ -5173,7 +5301,7 @@ export type ProductUnit = {
|
|
|
5173
5301
|
export type ProductUnitInput = {
|
|
5174
5302
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
5175
5303
|
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
5176
|
-
id?: InputMaybe<Scalars['
|
|
5304
|
+
id?: InputMaybe<Scalars['String']>;
|
|
5177
5305
|
/** The name of the product's unit. */
|
|
5178
5306
|
name: Scalars['String'];
|
|
5179
5307
|
/** The name of the product's unit. */
|
|
@@ -5229,7 +5357,7 @@ export type ProductVolumeDiscount = {
|
|
|
5229
5357
|
__typename?: 'ProductVolumeDiscount';
|
|
5230
5358
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
5231
5359
|
deleted: Scalars['Boolean'];
|
|
5232
|
-
id: Scalars['
|
|
5360
|
+
id: Scalars['String'];
|
|
5233
5361
|
/** The name of the product volume discount. */
|
|
5234
5362
|
name: Scalars['String'];
|
|
5235
5363
|
/** Shows the product volume discount rules. */
|
|
@@ -5241,7 +5369,7 @@ export type ProductVolumeDiscount = {
|
|
|
5241
5369
|
export type ProductVolumeDiscountInput = {
|
|
5242
5370
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
5243
5371
|
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
5244
|
-
id?: InputMaybe<Scalars['
|
|
5372
|
+
id?: InputMaybe<Scalars['String']>;
|
|
5245
5373
|
/** The name of the product volume discount. */
|
|
5246
5374
|
name: Scalars['String'];
|
|
5247
5375
|
/** Shows the product volume discount rules. */
|
|
@@ -5280,7 +5408,7 @@ export type PublicTransaction = {
|
|
|
5280
5408
|
deleted: Scalars['Boolean'];
|
|
5281
5409
|
error?: Maybe<TransactionError>;
|
|
5282
5410
|
gatewayReferenceId?: Maybe<Scalars['String']>;
|
|
5283
|
-
id: Scalars['
|
|
5411
|
+
id: Scalars['String'];
|
|
5284
5412
|
lineItems?: Maybe<Array<TransactionOrderLineItem>>;
|
|
5285
5413
|
orderId?: Maybe<Scalars['String']>;
|
|
5286
5414
|
paymentGatewayCode?: Maybe<Scalars['String']>;
|
|
@@ -5298,6 +5426,8 @@ export type Query = {
|
|
|
5298
5426
|
__typename?: 'Query';
|
|
5299
5427
|
/** By using this api you can get properties of merchant and merchant staff. */
|
|
5300
5428
|
getAuthorizedApp?: Maybe<AuthorizedApp>;
|
|
5429
|
+
/** Using this api, you can get available subscriptions for a merchant app. */
|
|
5430
|
+
getAvailableSubscriptions: Array<GetAvailableSubscriptionResponse>;
|
|
5301
5431
|
/** Use this mutation to get global settings. */
|
|
5302
5432
|
getGlobalTaxSettings?: Maybe<GlobalTaxSettings>;
|
|
5303
5433
|
/** Using this API, you can make payments and refunds via Ikas Wallet. */
|
|
@@ -5334,6 +5464,7 @@ export type Query = {
|
|
|
5334
5464
|
listCity: Array<City>;
|
|
5335
5465
|
listCountry: Array<Country>;
|
|
5336
5466
|
listCoupon: CouponPaginationResponse;
|
|
5467
|
+
listCurrency: Array<Currency>;
|
|
5337
5468
|
/**
|
|
5338
5469
|
* Use this mutation to list customers as paginated by supplying the `CustomerArgs` input.
|
|
5339
5470
|
* Search functionality is available for the following fields: `firstName`, `lastName`, `email`, `phone`.
|
|
@@ -5347,6 +5478,8 @@ export type Query = {
|
|
|
5347
5478
|
listCustomerAttribute: Array<CustomerAttribute>;
|
|
5348
5479
|
/** Query to list CustomerGroup */
|
|
5349
5480
|
listCustomerGroup: Array<CustomerGroup>;
|
|
5481
|
+
/** Query to list CustomerTag */
|
|
5482
|
+
listCustomerTag: Array<CustomerTag>;
|
|
5350
5483
|
listDistrict: Array<District>;
|
|
5351
5484
|
/** Query to list GlobalTaxSettings */
|
|
5352
5485
|
listGlobalTaxSettings: Array<GlobalTaxSettings>;
|
|
@@ -5441,6 +5574,7 @@ export type QuerygetVideoUploadUrlArgs = {
|
|
|
5441
5574
|
videoId: Scalars['String'];
|
|
5442
5575
|
};
|
|
5443
5576
|
export type QuerylistAbandonedCheckoutsArgs = {
|
|
5577
|
+
customerId?: InputMaybe<StringFilterInput>;
|
|
5444
5578
|
id?: InputMaybe<StringFilterInput>;
|
|
5445
5579
|
input: ListAbandonedCartInput;
|
|
5446
5580
|
lastActivityDate?: InputMaybe<DateFilterInput>;
|
|
@@ -5457,6 +5591,8 @@ export type QuerylistBranchArgs = {
|
|
|
5457
5591
|
};
|
|
5458
5592
|
export type QuerylistCampaignArgs = {
|
|
5459
5593
|
canCombineWithOtherCampaigns?: InputMaybe<BooleanFilterInput>;
|
|
5594
|
+
dateRangeIsActive?: InputMaybe<CampaignDateRangeIsActiveFilterInput>;
|
|
5595
|
+
hasCoupon?: InputMaybe<BooleanFilterInput>;
|
|
5460
5596
|
id?: InputMaybe<StringFilterInput>;
|
|
5461
5597
|
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
5462
5598
|
pagination?: InputMaybe<PaginationInput>;
|
|
@@ -5499,6 +5635,9 @@ export type QuerylistCouponArgs = {
|
|
|
5499
5635
|
pagination?: InputMaybe<PaginationInput>;
|
|
5500
5636
|
search?: InputMaybe<Scalars['String']>;
|
|
5501
5637
|
};
|
|
5638
|
+
export type QuerylistCurrencyArgs = {
|
|
5639
|
+
code?: InputMaybe<StringFilterInput>;
|
|
5640
|
+
};
|
|
5502
5641
|
export type QuerylistCustomerArgs = {
|
|
5503
5642
|
email?: InputMaybe<StringFilterInput>;
|
|
5504
5643
|
id?: InputMaybe<StringFilterInput>;
|
|
@@ -5518,6 +5657,12 @@ export type QuerylistCustomerGroupArgs = {
|
|
|
5518
5657
|
name?: InputMaybe<StringFilterInput>;
|
|
5519
5658
|
updatedAt?: InputMaybe<DateFilterInput>;
|
|
5520
5659
|
};
|
|
5660
|
+
export type QuerylistCustomerTagArgs = {
|
|
5661
|
+
id?: InputMaybe<StringFilterInput>;
|
|
5662
|
+
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
5663
|
+
name?: InputMaybe<StringFilterInput>;
|
|
5664
|
+
updatedAt?: InputMaybe<DateFilterInput>;
|
|
5665
|
+
};
|
|
5521
5666
|
export type QuerylistDistrictArgs = {
|
|
5522
5667
|
cityId: StringFilterInput;
|
|
5523
5668
|
countryId?: InputMaybe<StringFilterInput>;
|
|
@@ -5694,6 +5839,8 @@ export type QuerylistStorefrontPolicyArgs = {
|
|
|
5694
5839
|
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
5695
5840
|
language?: InputMaybe<StringFilterInput>;
|
|
5696
5841
|
name?: InputMaybe<StringFilterInput>;
|
|
5842
|
+
pagination?: InputMaybe<PaginationInput>;
|
|
5843
|
+
search?: InputMaybe<Scalars['String']>;
|
|
5697
5844
|
updatedAt?: InputMaybe<DateFilterInput>;
|
|
5698
5845
|
};
|
|
5699
5846
|
export type QuerylistTaxSettingsArgs = {
|
|
@@ -5749,7 +5896,7 @@ export type SalesChannel = {
|
|
|
5749
5896
|
__typename?: 'SalesChannel';
|
|
5750
5897
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
5751
5898
|
deleted: Scalars['Boolean'];
|
|
5752
|
-
id: Scalars['
|
|
5899
|
+
id: Scalars['String'];
|
|
5753
5900
|
/** The sales channel name field. */
|
|
5754
5901
|
name: Scalars['String'];
|
|
5755
5902
|
/** The sales channel payment gateway field. */
|
|
@@ -6198,7 +6345,7 @@ export type ShippingSettings = {
|
|
|
6198
6345
|
__typename?: 'ShippingSettings';
|
|
6199
6346
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
6200
6347
|
deleted: Scalars['Boolean'];
|
|
6201
|
-
id: Scalars['
|
|
6348
|
+
id: Scalars['String'];
|
|
6202
6349
|
isPassive?: Maybe<Scalars['Boolean']>;
|
|
6203
6350
|
localDeliverySettings?: Maybe<LocalDeliverySettings>;
|
|
6204
6351
|
order?: Maybe<Scalars['Float']>;
|
|
@@ -6255,7 +6402,7 @@ export type ShippingZoneRate = {
|
|
|
6255
6402
|
currencyCode?: Maybe<Scalars['String']>;
|
|
6256
6403
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
6257
6404
|
deleted: Scalars['Boolean'];
|
|
6258
|
-
id: Scalars['
|
|
6405
|
+
id: Scalars['String'];
|
|
6259
6406
|
price: Scalars['Float'];
|
|
6260
6407
|
priceListId?: Maybe<Scalars['String']>;
|
|
6261
6408
|
rateName: Scalars['String'];
|
|
@@ -6276,7 +6423,7 @@ export type ShippingZoneRegion = {
|
|
|
6276
6423
|
__typename?: 'ShippingZoneRegion';
|
|
6277
6424
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
6278
6425
|
deleted: Scalars['Boolean'];
|
|
6279
|
-
id: Scalars['
|
|
6426
|
+
id: Scalars['String'];
|
|
6280
6427
|
name: Scalars['String'];
|
|
6281
6428
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
6282
6429
|
};
|
|
@@ -6290,7 +6437,7 @@ export type SimpleCategory = {
|
|
|
6290
6437
|
__typename?: 'SimpleCategory';
|
|
6291
6438
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
6292
6439
|
deleted: Scalars['Boolean'];
|
|
6293
|
-
id: Scalars['
|
|
6440
|
+
id: Scalars['String'];
|
|
6294
6441
|
/** It is the name of the category in which the product is located. */
|
|
6295
6442
|
name: Scalars['String'];
|
|
6296
6443
|
/** It is the id of the superclass category of the category. */
|
|
@@ -6301,7 +6448,7 @@ export type SimpleProductBrand = {
|
|
|
6301
6448
|
__typename?: 'SimpleProductBrand';
|
|
6302
6449
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
6303
6450
|
deleted: Scalars['Boolean'];
|
|
6304
|
-
id: Scalars['
|
|
6451
|
+
id: Scalars['String'];
|
|
6305
6452
|
/** The name of the product's brand. */
|
|
6306
6453
|
name: Scalars['String'];
|
|
6307
6454
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
@@ -6310,11 +6457,26 @@ export type SimpleProductTag = {
|
|
|
6310
6457
|
__typename?: 'SimpleProductTag';
|
|
6311
6458
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
6312
6459
|
deleted: Scalars['Boolean'];
|
|
6313
|
-
id: Scalars['
|
|
6460
|
+
id: Scalars['String'];
|
|
6314
6461
|
/** The name of the product's tag. */
|
|
6315
6462
|
name: Scalars['String'];
|
|
6316
6463
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
6317
6464
|
};
|
|
6465
|
+
export type SocialLoginSettings = {
|
|
6466
|
+
__typename?: 'SocialLoginSettings';
|
|
6467
|
+
apiKey?: Maybe<Scalars['String']>;
|
|
6468
|
+
apiSecret?: Maybe<Scalars['String']>;
|
|
6469
|
+
bundleId?: Maybe<Scalars['String']>;
|
|
6470
|
+
keyId?: Maybe<Scalars['String']>;
|
|
6471
|
+
provider: SocialLoginSettingsSocialLoginProviderEnum;
|
|
6472
|
+
teamId?: Maybe<Scalars['String']>;
|
|
6473
|
+
};
|
|
6474
|
+
export declare enum SocialLoginSettingsSocialLoginProviderEnum {
|
|
6475
|
+
apple = "apple",
|
|
6476
|
+
facebook = "facebook",
|
|
6477
|
+
google = "google",
|
|
6478
|
+
twitch = "twitch"
|
|
6479
|
+
}
|
|
6318
6480
|
/** Timeline Source Types */
|
|
6319
6481
|
export declare enum SourceTypeEnum {
|
|
6320
6482
|
CUSTOMER = "CUSTOMER",
|
|
@@ -6336,7 +6498,7 @@ export type State = {
|
|
|
6336
6498
|
countryId: Scalars['String'];
|
|
6337
6499
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
6338
6500
|
deleted: Scalars['Boolean'];
|
|
6339
|
-
id: Scalars['
|
|
6501
|
+
id: Scalars['String'];
|
|
6340
6502
|
/** Shows spellings of state name in different languages. */
|
|
6341
6503
|
locationTranslations?: Maybe<LocationTranslations>;
|
|
6342
6504
|
/** State's name. */
|
|
@@ -6357,7 +6519,7 @@ export type StockLocation = {
|
|
|
6357
6519
|
deliveryTime?: Maybe<StockLocationDeliveryTimeEnum>;
|
|
6358
6520
|
/** It is the description of the stock location. */
|
|
6359
6521
|
description?: Maybe<Scalars['String']>;
|
|
6360
|
-
id: Scalars['
|
|
6522
|
+
id: Scalars['String'];
|
|
6361
6523
|
isRemindOutOfStockEnabled?: Maybe<Scalars['Boolean']>;
|
|
6362
6524
|
/** It is the name of the stock location. */
|
|
6363
6525
|
name: Scalars['String'];
|
|
@@ -6448,14 +6610,62 @@ export declare enum StockLocationTypeEnum {
|
|
|
6448
6610
|
}
|
|
6449
6611
|
export type Storefront = {
|
|
6450
6612
|
__typename?: 'Storefront';
|
|
6613
|
+
analytics4Id?: Maybe<Scalars['String']>;
|
|
6614
|
+
analytics4Secret?: Maybe<Scalars['String']>;
|
|
6615
|
+
analytics4Verified?: Maybe<Scalars['Boolean']>;
|
|
6616
|
+
b2bSettings?: Maybe<StorefrontB2BSettings>;
|
|
6451
6617
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
6452
6618
|
deleted: Scalars['Boolean'];
|
|
6453
|
-
|
|
6454
|
-
|
|
6619
|
+
domains?: Maybe<Array<StorefrontDomain>>;
|
|
6620
|
+
emailSettingsId?: Maybe<Scalars['String']>;
|
|
6621
|
+
fbAccessToken?: Maybe<Scalars['String']>;
|
|
6622
|
+
fbcVerified?: Maybe<Scalars['Boolean']>;
|
|
6623
|
+
fbpId?: Maybe<Scalars['String']>;
|
|
6624
|
+
gtmId?: Maybe<Scalars['String']>;
|
|
6625
|
+
id: Scalars['String'];
|
|
6626
|
+
indexPageSeoSettings?: Maybe<Array<IndexPageSeoSetting>>;
|
|
6627
|
+
localizations: Array<StorefrontLocalization>;
|
|
6628
|
+
mainStorefrontThemeId?: Maybe<Scalars['String']>;
|
|
6629
|
+
marketingCatalogSettings?: Maybe<MarketingCatalogSettings>;
|
|
6630
|
+
metaTemplates?: Maybe<Array<StorefrontMetaTemplate>>;
|
|
6455
6631
|
name: Scalars['String'];
|
|
6456
|
-
|
|
6632
|
+
pickUpStockLocationIds?: Maybe<Array<Scalars['String']>>;
|
|
6633
|
+
robotsTxt?: Maybe<Scalars['String']>;
|
|
6457
6634
|
routings: Array<StorefrontRouting>;
|
|
6458
6635
|
salesChannelId: Scalars['String'];
|
|
6636
|
+
socialLoginSettings?: Maybe<Array<SocialLoginSettings>>;
|
|
6637
|
+
status: StorefrontStatusTypes;
|
|
6638
|
+
themes: Array<StorefrontTheme>;
|
|
6639
|
+
tiktokPixelId?: Maybe<Scalars['String']>;
|
|
6640
|
+
token?: Maybe<Scalars['String']>;
|
|
6641
|
+
type: StorefrontTypeEnum;
|
|
6642
|
+
universalAnalyticsId?: Maybe<Scalars['String']>;
|
|
6643
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
6644
|
+
};
|
|
6645
|
+
export type StorefrontB2BSettings = {
|
|
6646
|
+
__typename?: 'StorefrontB2BSettings';
|
|
6647
|
+
allowOnlyApprovedCustomersToLogin: Scalars['Boolean'];
|
|
6648
|
+
showPrices: StorefrontB2BShowPricesEnum;
|
|
6649
|
+
showProducts: StorefrontB2BShowProductsEnum;
|
|
6650
|
+
};
|
|
6651
|
+
export declare enum StorefrontB2BShowPricesEnum {
|
|
6652
|
+
ALWAYS = "ALWAYS",
|
|
6653
|
+
NEVER = "NEVER",
|
|
6654
|
+
ONLY_TO_CUSTOMERS = "ONLY_TO_CUSTOMERS"
|
|
6655
|
+
}
|
|
6656
|
+
export declare enum StorefrontB2BShowProductsEnum {
|
|
6657
|
+
ALWAYS = "ALWAYS",
|
|
6658
|
+
ONLY_TO_CUSTOMERS = "ONLY_TO_CUSTOMERS"
|
|
6659
|
+
}
|
|
6660
|
+
export type StorefrontDomain = {
|
|
6661
|
+
__typename?: 'StorefrontDomain';
|
|
6662
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
6663
|
+
deleted: Scalars['Boolean'];
|
|
6664
|
+
id: Scalars['String'];
|
|
6665
|
+
isDefault?: Maybe<Scalars['Boolean']>;
|
|
6666
|
+
merchantDomainId: Scalars['String'];
|
|
6667
|
+
name: Scalars['String'];
|
|
6668
|
+
redirectDomainName?: Maybe<Scalars['String']>;
|
|
6459
6669
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
6460
6670
|
};
|
|
6461
6671
|
export type StorefrontDynamicCurrencySettings = {
|
|
@@ -6475,7 +6685,7 @@ export type StorefrontJSScript = {
|
|
|
6475
6685
|
deleted: Scalars['Boolean'];
|
|
6476
6686
|
/** The type of javascript script content. */
|
|
6477
6687
|
fileName?: Maybe<Scalars['String']>;
|
|
6478
|
-
id: Scalars['
|
|
6688
|
+
id: Scalars['String'];
|
|
6479
6689
|
/** Shows the availability status of the storefront. */
|
|
6480
6690
|
isActive: Scalars['Boolean'];
|
|
6481
6691
|
/** Indicates if the script has a high priority and should be executed before others. */
|
|
@@ -6504,12 +6714,37 @@ export type StorefrontJSScriptInput = {
|
|
|
6504
6714
|
scriptContent: Scalars['String'];
|
|
6505
6715
|
storefrontId: Scalars['String'];
|
|
6506
6716
|
};
|
|
6717
|
+
export type StorefrontLocalization = {
|
|
6718
|
+
__typename?: 'StorefrontLocalization';
|
|
6719
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
6720
|
+
deleted: Scalars['Boolean'];
|
|
6721
|
+
id: Scalars['String'];
|
|
6722
|
+
isDefault: Scalars['Boolean'];
|
|
6723
|
+
locale: Scalars['String'];
|
|
6724
|
+
name: Scalars['String'];
|
|
6725
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
6726
|
+
};
|
|
6727
|
+
export type StorefrontMetaTemplate = {
|
|
6728
|
+
__typename?: 'StorefrontMetaTemplate';
|
|
6729
|
+
descriptionTemplate?: Maybe<Scalars['String']>;
|
|
6730
|
+
locale?: Maybe<Scalars['String']>;
|
|
6731
|
+
pageType?: Maybe<StorefrontPageTypesEnum>;
|
|
6732
|
+
titleTemplate?: Maybe<Scalars['String']>;
|
|
6733
|
+
};
|
|
6734
|
+
export declare enum StorefrontPageTypesEnum {
|
|
6735
|
+
BLOG = "BLOG",
|
|
6736
|
+
BLOG_CATEGORY = "BLOG_CATEGORY",
|
|
6737
|
+
BRAND = "BRAND",
|
|
6738
|
+
CATEGORY = "CATEGORY",
|
|
6739
|
+
CUSTOM = "CUSTOM",
|
|
6740
|
+
PRODUCT = "PRODUCT"
|
|
6741
|
+
}
|
|
6507
6742
|
export type StorefrontPolicy = {
|
|
6508
6743
|
__typename?: 'StorefrontPolicy';
|
|
6509
6744
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
6510
6745
|
currentVersionId: Scalars['String'];
|
|
6511
6746
|
deleted: Scalars['Boolean'];
|
|
6512
|
-
id: Scalars['
|
|
6747
|
+
id: Scalars['String'];
|
|
6513
6748
|
locale: Scalars['String'];
|
|
6514
6749
|
name: Scalars['String'];
|
|
6515
6750
|
sendEmail: Scalars['Boolean'];
|
|
@@ -6523,7 +6758,7 @@ export type StorefrontPolicyInput = {
|
|
|
6523
6758
|
content: Scalars['String'];
|
|
6524
6759
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
6525
6760
|
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
6526
|
-
id?: InputMaybe<Scalars['
|
|
6761
|
+
id?: InputMaybe<Scalars['String']>;
|
|
6527
6762
|
locale: Scalars['String'];
|
|
6528
6763
|
name: Scalars['String'];
|
|
6529
6764
|
sendEmail: Scalars['Boolean'];
|
|
@@ -6559,12 +6794,46 @@ export type StorefrontRouting = {
|
|
|
6559
6794
|
deleted: Scalars['Boolean'];
|
|
6560
6795
|
domain?: Maybe<Scalars['String']>;
|
|
6561
6796
|
dynamicCurrencySettings?: Maybe<StorefrontDynamicCurrencySettings>;
|
|
6562
|
-
id: Scalars['
|
|
6797
|
+
id: Scalars['String'];
|
|
6563
6798
|
locale: Scalars['String'];
|
|
6564
6799
|
path?: Maybe<Scalars['String']>;
|
|
6565
6800
|
priceListId?: Maybe<Scalars['String']>;
|
|
6566
6801
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
6567
6802
|
};
|
|
6803
|
+
export declare enum StorefrontStatusTypes {
|
|
6804
|
+
FAILED = "FAILED",
|
|
6805
|
+
NOT_DEPLOYED = "NOT_DEPLOYED",
|
|
6806
|
+
READY = "READY",
|
|
6807
|
+
WAITING = "WAITING"
|
|
6808
|
+
}
|
|
6809
|
+
export type StorefrontTheme = {
|
|
6810
|
+
__typename?: 'StorefrontTheme';
|
|
6811
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
6812
|
+
deleted: Scalars['Boolean'];
|
|
6813
|
+
domainPrefix?: Maybe<Scalars['String']>;
|
|
6814
|
+
id: Scalars['String'];
|
|
6815
|
+
isMainTheme: Scalars['Boolean'];
|
|
6816
|
+
name: Scalars['String'];
|
|
6817
|
+
status: StorefrontThemeStatus;
|
|
6818
|
+
themeId?: Maybe<Scalars['String']>;
|
|
6819
|
+
themeVersionId?: Maybe<Scalars['String']>;
|
|
6820
|
+
type?: Maybe<StorefrontThemeTypeEnum>;
|
|
6821
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
6822
|
+
};
|
|
6823
|
+
export declare enum StorefrontThemeStatus {
|
|
6824
|
+
FAILED = "FAILED",
|
|
6825
|
+
NOT_DEPLOYED = "NOT_DEPLOYED",
|
|
6826
|
+
READY = "READY",
|
|
6827
|
+
WAITING = "WAITING"
|
|
6828
|
+
}
|
|
6829
|
+
export declare enum StorefrontThemeTypeEnum {
|
|
6830
|
+
STOREFRONT_PROJECT = "STOREFRONT_PROJECT",
|
|
6831
|
+
THEME = "THEME"
|
|
6832
|
+
}
|
|
6833
|
+
export declare enum StorefrontTypeEnum {
|
|
6834
|
+
B2B_STOREFRONT = "B2B_STOREFRONT",
|
|
6835
|
+
STOREFRONT = "STOREFRONT"
|
|
6836
|
+
}
|
|
6568
6837
|
export type StringFilterInput = {
|
|
6569
6838
|
/** Equal to operator. Matches exact values. */
|
|
6570
6839
|
eq?: InputMaybe<Scalars['String']>;
|
|
@@ -6635,7 +6904,7 @@ export type TaxSettings = {
|
|
|
6635
6904
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
6636
6905
|
deleted: Scalars['Boolean'];
|
|
6637
6906
|
giftPackageTaxRates?: Maybe<Array<TaxSettingsGiftPackageTaxRate>>;
|
|
6638
|
-
id: Scalars['
|
|
6907
|
+
id: Scalars['String'];
|
|
6639
6908
|
productOverrides?: Maybe<Array<TaxSettingsProductOverride>>;
|
|
6640
6909
|
rates?: Maybe<Array<TaxSettingsRate>>;
|
|
6641
6910
|
shippingTaxRates?: Maybe<Array<TaxSettingsShippingTaxRate>>;
|
|
@@ -6656,7 +6925,7 @@ export type TaxSettingsInput = {
|
|
|
6656
6925
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
6657
6926
|
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
6658
6927
|
giftPackageTaxRates?: InputMaybe<Array<TaxSettingsGiftPackageTaxRateInput>>;
|
|
6659
|
-
id?: InputMaybe<Scalars['
|
|
6928
|
+
id?: InputMaybe<Scalars['String']>;
|
|
6660
6929
|
productOverrides: Array<TaxSettingsProductOverrideInput>;
|
|
6661
6930
|
rates?: InputMaybe<Array<TaxSettingsRateInput>>;
|
|
6662
6931
|
shippingTaxRates?: InputMaybe<Array<TaxSettingsShippingTaxRateInput>>;
|
|
@@ -6697,7 +6966,7 @@ export type Terminal = {
|
|
|
6697
6966
|
branchId: Scalars['String'];
|
|
6698
6967
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
6699
6968
|
deleted: Scalars['Boolean'];
|
|
6700
|
-
id: Scalars['
|
|
6969
|
+
id: Scalars['String'];
|
|
6701
6970
|
name: Scalars['String'];
|
|
6702
6971
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
6703
6972
|
};
|
|
@@ -6726,7 +6995,7 @@ export type Town = {
|
|
|
6726
6995
|
deleted: Scalars['Boolean'];
|
|
6727
6996
|
/** ID indicating which district the town belongs to. */
|
|
6728
6997
|
districtId: Scalars['String'];
|
|
6729
|
-
id: Scalars['
|
|
6998
|
+
id: Scalars['String'];
|
|
6730
6999
|
/** Town's name. */
|
|
6731
7000
|
name: Scalars['String'];
|
|
6732
7001
|
/** Specifies the order of towns. */
|
|
@@ -6824,6 +7093,7 @@ export type TransactionPaymentMethodDetail = {
|
|
|
6824
7093
|
};
|
|
6825
7094
|
export declare enum TransactionStatusEnum {
|
|
6826
7095
|
AUTHORIZED = "AUTHORIZED",
|
|
7096
|
+
CANCELLED = "CANCELLED",
|
|
6827
7097
|
FAILED = "FAILED",
|
|
6828
7098
|
PENDING = "PENDING",
|
|
6829
7099
|
SUCCESS = "SUCCESS"
|
|
@@ -6917,7 +7187,7 @@ export type Variant = {
|
|
|
6917
7187
|
fileId?: Maybe<Scalars['String']>;
|
|
6918
7188
|
/** Hs code of the variant. */
|
|
6919
7189
|
hsCode?: Maybe<Scalars['String']>;
|
|
6920
|
-
id: Scalars['
|
|
7190
|
+
id: Scalars['String'];
|
|
6921
7191
|
/** List of images for variant. */
|
|
6922
7192
|
images?: Maybe<Array<ProductImage>>;
|
|
6923
7193
|
/** Whether the variant is active or not. */
|
|
@@ -6947,7 +7217,7 @@ export type VariantInput = {
|
|
|
6947
7217
|
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
6948
7218
|
fileId?: InputMaybe<Scalars['String']>;
|
|
6949
7219
|
hsCode?: InputMaybe<Scalars['String']>;
|
|
6950
|
-
id?: InputMaybe<Scalars['
|
|
7220
|
+
id?: InputMaybe<Scalars['String']>;
|
|
6951
7221
|
images?: InputMaybe<Array<ProductImageInput>>;
|
|
6952
7222
|
isActive?: Scalars['Boolean'];
|
|
6953
7223
|
prices: Array<ProductPriceInput>;
|
|
@@ -6977,7 +7247,7 @@ export type VariantType = {
|
|
|
6977
7247
|
__typename?: 'VariantType';
|
|
6978
7248
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
6979
7249
|
deleted: Scalars['Boolean'];
|
|
6980
|
-
id: Scalars['
|
|
7250
|
+
id: Scalars['String'];
|
|
6981
7251
|
/** Product variant type name information. **For example: Size, Color, Number etc.**.It can be a maximum of 100 characters. */
|
|
6982
7252
|
name: Scalars['String'];
|
|
6983
7253
|
/** Product variant type selection type. It can be choice or color. */
|
|
@@ -6991,7 +7261,7 @@ export type VariantType = {
|
|
|
6991
7261
|
export type VariantTypeInput = {
|
|
6992
7262
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
6993
7263
|
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
6994
|
-
id?: InputMaybe<Scalars['
|
|
7264
|
+
id?: InputMaybe<Scalars['String']>;
|
|
6995
7265
|
/** Product variant type name information. **For example: Size, Color, Number etc.**.It can be a maximum of 100 characters. */
|
|
6996
7266
|
name: Scalars['String'];
|
|
6997
7267
|
/** Product variant type selection type. It can be choice or color. */
|
|
@@ -7036,7 +7306,7 @@ export type VariantValue = {
|
|
|
7036
7306
|
colorCode?: Maybe<Scalars['String']>;
|
|
7037
7307
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
7038
7308
|
deleted: Scalars['Boolean'];
|
|
7039
|
-
id: Scalars['
|
|
7309
|
+
id: Scalars['String'];
|
|
7040
7310
|
/** 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. */
|
|
7041
7311
|
name: Scalars['String'];
|
|
7042
7312
|
/** It is the image information of the variant values. */
|
|
@@ -7048,7 +7318,7 @@ export type VariantValueInput = {
|
|
|
7048
7318
|
colorCode?: InputMaybe<Scalars['String']>;
|
|
7049
7319
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
7050
7320
|
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
7051
|
-
id?: InputMaybe<Scalars['
|
|
7321
|
+
id?: InputMaybe<Scalars['String']>;
|
|
7052
7322
|
/** 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. */
|
|
7053
7323
|
name: Scalars['String'];
|
|
7054
7324
|
/** It is the image information of the variant values. */
|
|
@@ -7084,7 +7354,7 @@ export type Vendor = {
|
|
|
7084
7354
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
7085
7355
|
deleted: Scalars['Boolean'];
|
|
7086
7356
|
email?: Maybe<Scalars['String']>;
|
|
7087
|
-
id: Scalars['
|
|
7357
|
+
id: Scalars['String'];
|
|
7088
7358
|
name: Scalars['String'];
|
|
7089
7359
|
phone?: Maybe<Scalars['String']>;
|
|
7090
7360
|
staffName?: Maybe<Scalars['String']>;
|
|
@@ -7099,7 +7369,7 @@ export type VendorInput = {
|
|
|
7099
7369
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
7100
7370
|
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
7101
7371
|
email?: InputMaybe<Scalars['String']>;
|
|
7102
|
-
id?: InputMaybe<Scalars['
|
|
7372
|
+
id?: InputMaybe<Scalars['String']>;
|
|
7103
7373
|
name: Scalars['String'];
|
|
7104
7374
|
phone?: InputMaybe<Scalars['String']>;
|
|
7105
7375
|
staffName?: InputMaybe<Scalars['String']>;
|
|
@@ -7133,7 +7403,7 @@ export type Webhook = {
|
|
|
7133
7403
|
deleted: Scalars['Boolean'];
|
|
7134
7404
|
/** URL address that webhooks will be pushed. */
|
|
7135
7405
|
endpoint: Scalars['String'];
|
|
7136
|
-
id: Scalars['
|
|
7406
|
+
id: Scalars['String'];
|
|
7137
7407
|
/** Scope of webhook that defines content of webhook. */
|
|
7138
7408
|
scope: Scalars['String'];
|
|
7139
7409
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|