@ikas/api-client 1.0.25 → 1.0.28
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 +1 -0
- package/dist/api/admin/generated/default-gqls.js +19 -18
- package/dist/api/admin/generated/default-gqls.js.map +1 -1
- package/dist/api/admin/generated/index.d.ts +323 -91
- package/dist/api/admin/generated/index.js +30 -2
- package/dist/api/admin/generated/index.js.map +1 -1
- package/dist/api/admin/generated/query.d.ts +2 -1
- package/dist/api/admin/generated/query.js +7 -0
- package/dist/api/admin/generated/query.js.map +1 -1
- package/package.json +1 -1
|
@@ -94,7 +94,7 @@ export declare type AuthorizedApp = {
|
|
|
94
94
|
/** The date the app was added. */
|
|
95
95
|
addedDate: Scalars['Timestamp'];
|
|
96
96
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
97
|
-
deleted
|
|
97
|
+
deleted: Scalars['Boolean'];
|
|
98
98
|
id: Scalars['ID'];
|
|
99
99
|
partnerId: Scalars['String'];
|
|
100
100
|
/** The id of the sales channel owned by the merchant. */
|
|
@@ -108,6 +108,7 @@ export declare type AuthorizedApp = {
|
|
|
108
108
|
};
|
|
109
109
|
export declare type AvailableShippingMethod = {
|
|
110
110
|
__typename?: 'AvailableShippingMethod';
|
|
111
|
+
estimatedDeliveryTime?: Maybe<LocalDeliverySettingsDayEstimatedDeliveryTime>;
|
|
111
112
|
price: Scalars['Float'];
|
|
112
113
|
rateName: Scalars['String'];
|
|
113
114
|
shippingMethod: OrderShippingMethodEnum;
|
|
@@ -118,7 +119,7 @@ export declare type Branch = {
|
|
|
118
119
|
__typename?: 'Branch';
|
|
119
120
|
address: BranchAddress;
|
|
120
121
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
121
|
-
deleted
|
|
122
|
+
deleted: Scalars['Boolean'];
|
|
122
123
|
favoriteItems?: Maybe<Array<BranchFavoriteItem>>;
|
|
123
124
|
id: Scalars['ID'];
|
|
124
125
|
name: Scalars['String'];
|
|
@@ -440,7 +441,7 @@ export declare type Campaign = {
|
|
|
440
441
|
createdFor?: Maybe<CampaignCreatedForEnum>;
|
|
441
442
|
currencyCodes?: Maybe<Array<Scalars['String']>>;
|
|
442
443
|
dateRange?: Maybe<CampaignDateRangeField>;
|
|
443
|
-
deleted
|
|
444
|
+
deleted: Scalars['Boolean'];
|
|
444
445
|
fixedDiscount?: Maybe<FixedDiscount>;
|
|
445
446
|
hasCoupon: Scalars['Boolean'];
|
|
446
447
|
id: Scalars['ID'];
|
|
@@ -449,6 +450,7 @@ export declare type Campaign = {
|
|
|
449
450
|
onlyUseCustomer?: Maybe<Scalars['Boolean']>;
|
|
450
451
|
salesChannelIds?: Maybe<Array<Scalars['String']>>;
|
|
451
452
|
title: Scalars['String'];
|
|
453
|
+
translations?: Maybe<Array<CampaignTranslation>>;
|
|
452
454
|
type: CampaignTypeEnum;
|
|
453
455
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
454
456
|
usageCount: Scalars['Int'];
|
|
@@ -499,7 +501,7 @@ export declare type CampaignInput = {
|
|
|
499
501
|
createdFor?: InputMaybe<CampaignCreatedForEnum>;
|
|
500
502
|
currencyCodes?: InputMaybe<Array<Scalars['String']>>;
|
|
501
503
|
dateRange?: InputMaybe<CampaignDateRangeFieldInput>;
|
|
502
|
-
deleted?:
|
|
504
|
+
deleted?: Scalars['Boolean'];
|
|
503
505
|
fixedDiscount?: InputMaybe<FixedDiscountInput>;
|
|
504
506
|
hasCoupon: Scalars['Boolean'];
|
|
505
507
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -527,10 +529,11 @@ export declare type CampaignOffer = {
|
|
|
527
529
|
availableSalesChannelIds: Array<Scalars['String']>;
|
|
528
530
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
529
531
|
currencyCodes?: Maybe<Array<Scalars['String']>>;
|
|
530
|
-
deleted
|
|
532
|
+
deleted: Scalars['Boolean'];
|
|
531
533
|
endDate?: Maybe<Scalars['Timestamp']>;
|
|
532
534
|
followUpActionType: CampaignOfferFollowUpActionTypeEnum;
|
|
533
535
|
id: Scalars['ID'];
|
|
536
|
+
maximumRequiredCartAmount?: Maybe<Scalars['Float']>;
|
|
534
537
|
minimumRequiredCartAmount?: Maybe<Scalars['Float']>;
|
|
535
538
|
name: Scalars['String'];
|
|
536
539
|
offers: Array<CampaignOfferProduct>;
|
|
@@ -625,6 +628,13 @@ export declare type CampaignPaginationResponse = {
|
|
|
625
628
|
*/
|
|
626
629
|
page: Scalars['Int'];
|
|
627
630
|
};
|
|
631
|
+
export declare type CampaignTranslation = {
|
|
632
|
+
__typename?: 'CampaignTranslation';
|
|
633
|
+
/** It is the name information of the translation. */
|
|
634
|
+
locale: Scalars['String'];
|
|
635
|
+
/** It is the title information of the translation. */
|
|
636
|
+
title?: Maybe<Scalars['String']>;
|
|
637
|
+
};
|
|
628
638
|
export declare enum CampaignTypeEnum {
|
|
629
639
|
BUY_X_THEN_GET_Y = "BUY_X_THEN_GET_Y",
|
|
630
640
|
FIXED_AMOUNT = "FIXED_AMOUNT",
|
|
@@ -632,9 +642,14 @@ export declare enum CampaignTypeEnum {
|
|
|
632
642
|
RATIO = "RATIO"
|
|
633
643
|
}
|
|
634
644
|
export declare type CancelFulfillmentInput = {
|
|
645
|
+
lines?: InputMaybe<Array<CancelFulfillmentOrderLineInput>>;
|
|
635
646
|
orderId: Scalars['String'];
|
|
636
647
|
orderPackageId: Scalars['String'];
|
|
637
648
|
};
|
|
649
|
+
export declare type CancelFulfillmentOrderLineInput = {
|
|
650
|
+
orderLineItemId: Scalars['String'];
|
|
651
|
+
quantity: Scalars['Float'];
|
|
652
|
+
};
|
|
638
653
|
export declare type CancelOrderLineInput = {
|
|
639
654
|
orderId: Scalars['String'];
|
|
640
655
|
orderLineItems: Array<CancelOrderLineItemInput>;
|
|
@@ -642,7 +657,44 @@ export declare type CancelOrderLineInput = {
|
|
|
642
657
|
export declare type CancelOrderLineItemInput = {
|
|
643
658
|
orderLineItemId: Scalars['String'];
|
|
644
659
|
quantity: Scalars['Float'];
|
|
645
|
-
restockItems?:
|
|
660
|
+
restockItems?: Scalars['Boolean'];
|
|
661
|
+
};
|
|
662
|
+
export declare type Cart = {
|
|
663
|
+
__typename?: 'Cart';
|
|
664
|
+
campaignOffers?: Maybe<Array<CartCampaignOffer>>;
|
|
665
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
666
|
+
createdBy?: Maybe<CartCreatedByEnum>;
|
|
667
|
+
currencyCode?: Maybe<Scalars['String']>;
|
|
668
|
+
currencySymbol?: Maybe<Scalars['String']>;
|
|
669
|
+
customerId?: Maybe<Scalars['String']>;
|
|
670
|
+
deleted: Scalars['Boolean'];
|
|
671
|
+
dueDate: Scalars['Timestamp'];
|
|
672
|
+
id: Scalars['ID'];
|
|
673
|
+
itemCount: Scalars['Float'];
|
|
674
|
+
items: Array<OrderLineItem>;
|
|
675
|
+
lastActivityDate: Scalars['Timestamp'];
|
|
676
|
+
merchantId: Scalars['String'];
|
|
677
|
+
priceListId?: Maybe<Scalars['String']>;
|
|
678
|
+
salesChannelId: Scalars['String'];
|
|
679
|
+
status: CartStatusEnum;
|
|
680
|
+
storefrontId?: Maybe<Scalars['String']>;
|
|
681
|
+
storefrontRouting?: Maybe<CartStorefrontRouting>;
|
|
682
|
+
storefrontRoutingId?: Maybe<Scalars['String']>;
|
|
683
|
+
storefrontThemeId?: Maybe<Scalars['String']>;
|
|
684
|
+
taxLines?: Maybe<Array<OrderTaxLine>>;
|
|
685
|
+
totalPrice: Scalars['Float'];
|
|
686
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
687
|
+
};
|
|
688
|
+
export declare type CartCampaignOffer = {
|
|
689
|
+
__typename?: 'CartCampaignOffer';
|
|
690
|
+
appliedOrderLineId?: Maybe<Scalars['String']>;
|
|
691
|
+
campaignOfferId: Scalars['String'];
|
|
692
|
+
campaignOfferProductId?: Maybe<Scalars['String']>;
|
|
693
|
+
offerEndDate?: Maybe<Scalars['Timestamp']>;
|
|
694
|
+
offerStartDate: Scalars['Timestamp'];
|
|
695
|
+
status: CartCampaignOfferStatus;
|
|
696
|
+
targetPageTypes: Array<CampaignOfferTargetPageTypeEnum>;
|
|
697
|
+
triggerSourceOrderLineId: Scalars['String'];
|
|
646
698
|
};
|
|
647
699
|
export declare enum CartCampaignOfferStatus {
|
|
648
700
|
ACCEPTED = "ACCEPTED",
|
|
@@ -654,6 +706,56 @@ export declare enum CartCreatedByEnum {
|
|
|
654
706
|
ADMIN = "ADMIN",
|
|
655
707
|
CUSTOMER = "CUSTOMER"
|
|
656
708
|
}
|
|
709
|
+
export declare type CartPaginationResponse = {
|
|
710
|
+
__typename?: 'CartPaginationResponse';
|
|
711
|
+
/**
|
|
712
|
+
* Returns the first three records of each page in the records returned as a response.
|
|
713
|
+
* For example, **let's say page = 3, limit = 30, count = 3.**
|
|
714
|
+
* The records that will return as a response are the records **between 60-62.**
|
|
715
|
+
*/
|
|
716
|
+
count: Scalars['Int'];
|
|
717
|
+
data: Array<Checkout>;
|
|
718
|
+
/** In the records returned as Response, it shows whether there are any more records or not. For example, let's say our page field is three and our limit field is thirty. Records between 60 and 90 will be returned. If hasNext is `true` despite these records, **it means there are more records.** If hasNext is `false`, it means there are a total of **90 records.** */
|
|
719
|
+
hasNext: Scalars['Boolean'];
|
|
720
|
+
/**
|
|
721
|
+
* The maximum number of data you want to see on a page in the records returned as a response.
|
|
722
|
+
* For example, if the limit is **20**, the data will be displayed ** as 20 each. **
|
|
723
|
+
* :::note
|
|
724
|
+
* min 1, max 200 values can be given. If no value is entered, default 50 is accepted.
|
|
725
|
+
* :::
|
|
726
|
+
*/
|
|
727
|
+
limit: Scalars['Int'];
|
|
728
|
+
/**
|
|
729
|
+
* The number of the page you want to see in the records that return as response.
|
|
730
|
+
* For example: We entered the page field as **3**.And let our limit field be **30**.
|
|
731
|
+
* The records that will return as a response are the records **between 60-90.**
|
|
732
|
+
* :::note
|
|
733
|
+
* If no value is entered, default 1 is accepted.
|
|
734
|
+
* :::
|
|
735
|
+
*/
|
|
736
|
+
page: Scalars['Int'];
|
|
737
|
+
};
|
|
738
|
+
export declare enum CartStatusEnum {
|
|
739
|
+
ACTIVE = "ACTIVE",
|
|
740
|
+
FREEZE = "FREEZE",
|
|
741
|
+
PASSIVE = "PASSIVE"
|
|
742
|
+
}
|
|
743
|
+
export declare type CartStorefrontRouting = {
|
|
744
|
+
__typename?: 'CartStorefrontRouting';
|
|
745
|
+
domain?: Maybe<Scalars['String']>;
|
|
746
|
+
dynamicCurrencySettings?: Maybe<CartStorefrontRoutingDynamicCurrencySettings>;
|
|
747
|
+
id: Scalars['String'];
|
|
748
|
+
locale?: Maybe<Scalars['String']>;
|
|
749
|
+
path?: Maybe<Scalars['String']>;
|
|
750
|
+
priceListId?: Maybe<Scalars['String']>;
|
|
751
|
+
};
|
|
752
|
+
export declare type CartStorefrontRoutingDynamicCurrencySettings = {
|
|
753
|
+
__typename?: 'CartStorefrontRoutingDynamicCurrencySettings';
|
|
754
|
+
/** One of '.x0' | '.x9' | '.00' | '.90' | '.99' | '0.00' */
|
|
755
|
+
roundingFormat?: Maybe<Scalars['String']>;
|
|
756
|
+
targetCurrencyCode: Scalars['String'];
|
|
757
|
+
targetCurrencySymbol?: Maybe<Scalars['String']>;
|
|
758
|
+
};
|
|
657
759
|
export declare type CartV2CampaignOffer = {
|
|
658
760
|
__typename?: 'CartV2CampaignOffer';
|
|
659
761
|
appliedOrderLineId?: Maybe<Scalars['String']>;
|
|
@@ -680,7 +782,7 @@ export declare type Category = {
|
|
|
680
782
|
categoryPathItems?: Maybe<Array<CategoryPathItem>>;
|
|
681
783
|
conditions?: Maybe<Array<CategoryCondition>>;
|
|
682
784
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
683
|
-
deleted
|
|
785
|
+
deleted: Scalars['Boolean'];
|
|
684
786
|
/** It is the description of the category of the product. */
|
|
685
787
|
description?: Maybe<Scalars['String']>;
|
|
686
788
|
id: Scalars['ID'];
|
|
@@ -704,18 +806,26 @@ export declare type Category = {
|
|
|
704
806
|
export declare type CategoryCondition = {
|
|
705
807
|
__typename?: 'CategoryCondition';
|
|
706
808
|
conditionType: CategoryConditionTypeEnum;
|
|
809
|
+
method?: Maybe<CategoryConditionMethodEnum>;
|
|
707
810
|
valueList: Array<Scalars['String']>;
|
|
708
811
|
};
|
|
709
812
|
export declare type CategoryConditionInput = {
|
|
710
813
|
conditionType: CategoryConditionTypeEnum;
|
|
814
|
+
method?: InputMaybe<CategoryConditionMethodEnum>;
|
|
711
815
|
valueList: Array<Scalars['String']>;
|
|
712
816
|
};
|
|
817
|
+
export declare enum CategoryConditionMethodEnum {
|
|
818
|
+
IN = "IN",
|
|
819
|
+
NOT_IN = "NOT_IN"
|
|
820
|
+
}
|
|
713
821
|
/** CategoryCondition Types */
|
|
714
822
|
export declare enum CategoryConditionTypeEnum {
|
|
715
823
|
CAMPAIGN = "CAMPAIGN",
|
|
824
|
+
CATEGORY = "CATEGORY",
|
|
716
825
|
CREATED_AT = "CREATED_AT",
|
|
717
826
|
DISCOUNTED_PRODUCTS = "DISCOUNTED_PRODUCTS",
|
|
718
827
|
PRICE_RANGE = "PRICE_RANGE",
|
|
828
|
+
PRODUCT_ATTRIBUTE = "PRODUCT_ATTRIBUTE",
|
|
719
829
|
PRODUCT_BRAND = "PRODUCT_BRAND",
|
|
720
830
|
PRODUCT_TAG = "PRODUCT_TAG",
|
|
721
831
|
VARIANT_VALUE = "VARIANT_VALUE"
|
|
@@ -728,7 +838,7 @@ export declare type CategoryFilterInput = {
|
|
|
728
838
|
export declare type CategoryInput = {
|
|
729
839
|
conditions?: InputMaybe<Array<CategoryConditionInput>>;
|
|
730
840
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
731
|
-
deleted?:
|
|
841
|
+
deleted?: Scalars['Boolean'];
|
|
732
842
|
/** It is the description of the category of the product. */
|
|
733
843
|
description?: InputMaybe<Scalars['String']>;
|
|
734
844
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -755,7 +865,7 @@ export declare type CategoryPathFilterInput = {
|
|
|
755
865
|
export declare type CategoryPathItem = {
|
|
756
866
|
__typename?: 'CategoryPathItem';
|
|
757
867
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
758
|
-
deleted
|
|
868
|
+
deleted: Scalars['Boolean'];
|
|
759
869
|
/** It is the description of the category of the product. */
|
|
760
870
|
description?: Maybe<Scalars['String']>;
|
|
761
871
|
id: Scalars['ID'];
|
|
@@ -798,6 +908,52 @@ export declare type CategoryTranslationInput = {
|
|
|
798
908
|
/** It is the information in which language the translation is saved. */
|
|
799
909
|
name?: InputMaybe<Scalars['String']>;
|
|
800
910
|
};
|
|
911
|
+
export declare type Checkout = {
|
|
912
|
+
__typename?: 'Checkout';
|
|
913
|
+
abandonedCheckoutFlows?: Maybe<Array<AbandonedCartFlow>>;
|
|
914
|
+
adjustments?: Maybe<Array<OrderAdjustment>>;
|
|
915
|
+
availableShippingMethods?: Maybe<Array<AvailableShippingMethod>>;
|
|
916
|
+
billingAddress?: Maybe<OrderAddress>;
|
|
917
|
+
cart?: Maybe<Cart>;
|
|
918
|
+
cartId: Scalars['String'];
|
|
919
|
+
couponCode?: Maybe<Scalars['String']>;
|
|
920
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
921
|
+
customer?: Maybe<CheckoutCustomer>;
|
|
922
|
+
deleted: Scalars['Boolean'];
|
|
923
|
+
giftPackageLines?: Maybe<Array<OrderGiftPackageLine>>;
|
|
924
|
+
giftPackageNote?: Maybe<Scalars['String']>;
|
|
925
|
+
id: Scalars['ID'];
|
|
926
|
+
isGiftPackage?: Maybe<Scalars['Boolean']>;
|
|
927
|
+
merchantId: Scalars['String'];
|
|
928
|
+
note?: Maybe<Scalars['String']>;
|
|
929
|
+
orderId?: Maybe<Scalars['String']>;
|
|
930
|
+
orderNumber?: Maybe<Scalars['String']>;
|
|
931
|
+
orderedAt?: Maybe<Scalars['Timestamp']>;
|
|
932
|
+
recoverEmailStatus?: Maybe<CheckoutRecoveryEmailStatusEnum>;
|
|
933
|
+
recoveryStatus?: Maybe<CheckoutRecoveryStatusEnum>;
|
|
934
|
+
shippingAddress?: Maybe<OrderAddress>;
|
|
935
|
+
shippingLines?: Maybe<Array<OrderShippingLine>>;
|
|
936
|
+
shippingMethod: OrderShippingMethodEnum;
|
|
937
|
+
shippingSettingsId?: Maybe<Scalars['String']>;
|
|
938
|
+
shippingZoneRateId?: Maybe<Scalars['String']>;
|
|
939
|
+
status: CheckoutStatusEnum;
|
|
940
|
+
stockLocationId?: Maybe<Scalars['String']>;
|
|
941
|
+
totalFinalPrice: Scalars['Float'];
|
|
942
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
943
|
+
};
|
|
944
|
+
export declare type CheckoutCustomer = {
|
|
945
|
+
__typename?: 'CheckoutCustomer';
|
|
946
|
+
accountStatus?: Maybe<CustomerAccountStatusEnum>;
|
|
947
|
+
customerGroupIds?: Maybe<Array<Scalars['String']>>;
|
|
948
|
+
email?: Maybe<Scalars['String']>;
|
|
949
|
+
firstName?: Maybe<Scalars['String']>;
|
|
950
|
+
id?: Maybe<Scalars['String']>;
|
|
951
|
+
identityNumber?: Maybe<Scalars['String']>;
|
|
952
|
+
lastName?: Maybe<Scalars['String']>;
|
|
953
|
+
notificationsAccepted?: Maybe<Scalars['Boolean']>;
|
|
954
|
+
phone?: Maybe<Scalars['String']>;
|
|
955
|
+
subscriptionStatus?: Maybe<CustomerEmailSubscriptionStatusesEnum>;
|
|
956
|
+
};
|
|
801
957
|
export declare enum CheckoutRecoveryEmailStatusEnum {
|
|
802
958
|
NOT_SENT = "NOT_SENT",
|
|
803
959
|
SENT = "SENT"
|
|
@@ -806,6 +962,12 @@ export declare enum CheckoutRecoveryStatusEnum {
|
|
|
806
962
|
NOT_RECOVERED = "NOT_RECOVERED",
|
|
807
963
|
RECOVERED = "RECOVERED"
|
|
808
964
|
}
|
|
965
|
+
export declare enum CheckoutStatusEnum {
|
|
966
|
+
COMPLETED = "COMPLETED",
|
|
967
|
+
FREEZE = "FREEZE",
|
|
968
|
+
KILLED = "KILLED",
|
|
969
|
+
OPEN = "OPEN"
|
|
970
|
+
}
|
|
809
971
|
export declare type City = {
|
|
810
972
|
__typename?: 'City';
|
|
811
973
|
/** The two-letter city code corresponding to the city. */
|
|
@@ -813,7 +975,7 @@ export declare type City = {
|
|
|
813
975
|
/** ID indicating which country the city belongs to. */
|
|
814
976
|
countryId: Scalars['String'];
|
|
815
977
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
816
|
-
deleted
|
|
978
|
+
deleted: Scalars['Boolean'];
|
|
817
979
|
id: Scalars['ID'];
|
|
818
980
|
/** Indicates the latitude of the city. */
|
|
819
981
|
latitude?: Maybe<Scalars['String']>;
|
|
@@ -836,7 +998,7 @@ export declare type Country = {
|
|
|
836
998
|
currency?: Maybe<Scalars['String']>;
|
|
837
999
|
currencyCode?: Maybe<Scalars['String']>;
|
|
838
1000
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
839
|
-
deleted
|
|
1001
|
+
deleted: Scalars['Boolean'];
|
|
840
1002
|
/** Indicates the flag emoji of the county. */
|
|
841
1003
|
emoji?: Maybe<Scalars['String']>;
|
|
842
1004
|
/** Indicates the flag emoji code of the county. */
|
|
@@ -866,7 +1028,7 @@ export declare type Coupon = {
|
|
|
866
1028
|
canCombineWithOtherCampaigns: Scalars['Boolean'];
|
|
867
1029
|
code: Scalars['String'];
|
|
868
1030
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
869
|
-
deleted
|
|
1031
|
+
deleted: Scalars['Boolean'];
|
|
870
1032
|
id: Scalars['ID'];
|
|
871
1033
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
872
1034
|
usageCount: Scalars['Int'];
|
|
@@ -916,7 +1078,7 @@ export declare type CreateOrderInput = {
|
|
|
916
1078
|
currencyCode?: InputMaybe<Scalars['String']>;
|
|
917
1079
|
/** It is the customer information in the order. */
|
|
918
1080
|
customer?: InputMaybe<OrderCustomerInput>;
|
|
919
|
-
deleted?:
|
|
1081
|
+
deleted?: Scalars['Boolean'];
|
|
920
1082
|
/** Host name of order source. */
|
|
921
1083
|
host?: InputMaybe<Scalars['String']>;
|
|
922
1084
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -949,6 +1111,8 @@ export declare type CreateOrderInput = {
|
|
|
949
1111
|
shippingLines?: InputMaybe<Array<OrderShippingLineInput>>;
|
|
950
1112
|
/** It is the shipping method enum of the order */
|
|
951
1113
|
shippingMethod?: InputMaybe<OrderShippingMethodEnum>;
|
|
1114
|
+
/** It is the source id of the order. If the order came from the marketplace, it shows the order number in the marketplace. */
|
|
1115
|
+
sourceId?: InputMaybe<Scalars['String']>;
|
|
952
1116
|
/** It is the terminal session id of the order. If the order is placed via ikasPos, this field can be sent as filled. */
|
|
953
1117
|
terminalId?: InputMaybe<Scalars['String']>;
|
|
954
1118
|
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
@@ -977,7 +1141,7 @@ export declare type Customer = {
|
|
|
977
1141
|
customerGroupIds?: Maybe<Array<Scalars['String']>>;
|
|
978
1142
|
/** It is the sequence value of the customer. The sequence value starts from 1. */
|
|
979
1143
|
customerSequence?: Maybe<Scalars['Float']>;
|
|
980
|
-
deleted
|
|
1144
|
+
deleted: Scalars['Boolean'];
|
|
981
1145
|
/** The unique email address of the customer. Attempting to assign the same email address to multiple customers returns an error. */
|
|
982
1146
|
email?: Maybe<Scalars['String']>;
|
|
983
1147
|
/** The date the **email** was verified. */
|
|
@@ -987,6 +1151,7 @@ export declare type Customer = {
|
|
|
987
1151
|
/** Customer's full name. Firstname plus lastname if firstname and lastname exist. Otherwise, it is saved as firstname only. */
|
|
988
1152
|
fullName?: Maybe<Scalars['String']>;
|
|
989
1153
|
id: Scalars['ID'];
|
|
1154
|
+
ip?: Maybe<Scalars['String']>;
|
|
990
1155
|
/** Email verification status. **isEmailVerified** returns `true` if the email is verified. */
|
|
991
1156
|
isEmailVerified?: Maybe<Scalars['Boolean']>;
|
|
992
1157
|
/** Phone verification status. **isPhoneVerified** returns `true` if the email is verified. */
|
|
@@ -1012,6 +1177,7 @@ export declare type Customer = {
|
|
|
1012
1177
|
/** Tags that the store owner attaches to the customer. */
|
|
1013
1178
|
tagIds?: Maybe<Array<Scalars['String']>>;
|
|
1014
1179
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1180
|
+
userAgent?: Maybe<Scalars['String']>;
|
|
1015
1181
|
};
|
|
1016
1182
|
/** Customer Account Statuses */
|
|
1017
1183
|
export declare enum CustomerAccountStatusEnum {
|
|
@@ -1034,7 +1200,7 @@ export declare type CustomerAddress = {
|
|
|
1034
1200
|
/** The customer's country. */
|
|
1035
1201
|
country: CustomerAddressCountry;
|
|
1036
1202
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1037
|
-
deleted
|
|
1203
|
+
deleted: Scalars['Boolean'];
|
|
1038
1204
|
/** The customer's district in city. */
|
|
1039
1205
|
district?: Maybe<CustomerAddressDistrict>;
|
|
1040
1206
|
/** The customer's first name. */
|
|
@@ -1050,6 +1216,7 @@ export declare type CustomerAddress = {
|
|
|
1050
1216
|
phone?: Maybe<Scalars['String']>;
|
|
1051
1217
|
/** The customer's postal code, also known as zip, postcode, etc. */
|
|
1052
1218
|
postalCode?: Maybe<Scalars['String']>;
|
|
1219
|
+
region?: Maybe<CustomerAddressRegion>;
|
|
1053
1220
|
state?: Maybe<CustomerAddressState>;
|
|
1054
1221
|
/** Tax number that the customer will use for orders */
|
|
1055
1222
|
taxNumber?: Maybe<Scalars['String']>;
|
|
@@ -1086,6 +1253,14 @@ export declare type CustomerAddressDistrict = {
|
|
|
1086
1253
|
/** The customer's normalized district name. */
|
|
1087
1254
|
name?: Maybe<Scalars['String']>;
|
|
1088
1255
|
};
|
|
1256
|
+
export declare type CustomerAddressRegion = {
|
|
1257
|
+
__typename?: 'CustomerAddressRegion';
|
|
1258
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1259
|
+
deleted?: Maybe<Scalars['Boolean']>;
|
|
1260
|
+
id: Scalars['String'];
|
|
1261
|
+
name: Scalars['String'];
|
|
1262
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1263
|
+
};
|
|
1089
1264
|
export declare type CustomerAddressState = {
|
|
1090
1265
|
__typename?: 'CustomerAddressState';
|
|
1091
1266
|
code?: Maybe<Scalars['String']>;
|
|
@@ -1095,7 +1270,7 @@ export declare type CustomerAddressState = {
|
|
|
1095
1270
|
export declare type CustomerAttribute = {
|
|
1096
1271
|
__typename?: 'CustomerAttribute';
|
|
1097
1272
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1098
|
-
deleted
|
|
1273
|
+
deleted: Scalars['Boolean'];
|
|
1099
1274
|
description?: Maybe<Scalars['String']>;
|
|
1100
1275
|
id: Scalars['ID'];
|
|
1101
1276
|
name: Scalars['String'];
|
|
@@ -1109,7 +1284,7 @@ export declare type CustomerAttribute = {
|
|
|
1109
1284
|
export declare type CustomerAttributeOption = {
|
|
1110
1285
|
__typename?: 'CustomerAttributeOption';
|
|
1111
1286
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1112
|
-
deleted
|
|
1287
|
+
deleted: Scalars['Boolean'];
|
|
1113
1288
|
id: Scalars['ID'];
|
|
1114
1289
|
name: Scalars['String'];
|
|
1115
1290
|
order?: Maybe<Scalars['Float']>;
|
|
@@ -1198,6 +1373,7 @@ export declare type CustomerPaginationResponse = {
|
|
|
1198
1373
|
};
|
|
1199
1374
|
/** Customer Registration Source Enum */
|
|
1200
1375
|
export declare enum CustomerRegistrationSourceEnum {
|
|
1376
|
+
apple = "apple",
|
|
1201
1377
|
credentials = "credentials",
|
|
1202
1378
|
facebook = "facebook",
|
|
1203
1379
|
google = "google"
|
|
@@ -1227,7 +1403,7 @@ export declare type District = {
|
|
|
1227
1403
|
/** ID indicating which country the district belongs to. */
|
|
1228
1404
|
countryId: Scalars['String'];
|
|
1229
1405
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1230
|
-
deleted
|
|
1406
|
+
deleted: Scalars['Boolean'];
|
|
1231
1407
|
id: Scalars['ID'];
|
|
1232
1408
|
/** Indicates the latitude of the city. */
|
|
1233
1409
|
latitude?: Maybe<Scalars['String']>;
|
|
@@ -1302,7 +1478,7 @@ export declare type GetYInput = {
|
|
|
1302
1478
|
export declare type GlobalTaxSettings = {
|
|
1303
1479
|
__typename?: 'GlobalTaxSettings';
|
|
1304
1480
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1305
|
-
deleted
|
|
1481
|
+
deleted: Scalars['Boolean'];
|
|
1306
1482
|
id: Scalars['ID'];
|
|
1307
1483
|
isTaxExcludedOnPrices: Scalars['Boolean'];
|
|
1308
1484
|
isTaxExcludedOnShippingPrices: Scalars['Boolean'];
|
|
@@ -1313,7 +1489,7 @@ export declare type HTMLMetaData = {
|
|
|
1313
1489
|
/** Canonical URL list of entity. */
|
|
1314
1490
|
canonicals?: Maybe<Array<Scalars['String']>>;
|
|
1315
1491
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1316
|
-
deleted
|
|
1492
|
+
deleted: Scalars['Boolean'];
|
|
1317
1493
|
/** The description of the metadata. */
|
|
1318
1494
|
description?: Maybe<Scalars['String']>;
|
|
1319
1495
|
/** Defines if the entity is not indexable by search engines */
|
|
@@ -1334,7 +1510,7 @@ export declare type HTMLMetaData = {
|
|
|
1334
1510
|
export declare type HTMLMetaDataInput = {
|
|
1335
1511
|
canonicals?: InputMaybe<Array<Scalars['String']>>;
|
|
1336
1512
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1337
|
-
deleted?:
|
|
1513
|
+
deleted?: Scalars['Boolean'];
|
|
1338
1514
|
description?: InputMaybe<Scalars['String']>;
|
|
1339
1515
|
disableIndex?: InputMaybe<Scalars['Boolean']>;
|
|
1340
1516
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -1417,12 +1593,27 @@ export declare enum InvoiceTypeEnum {
|
|
|
1417
1593
|
export declare type Language = {
|
|
1418
1594
|
__typename?: 'Language';
|
|
1419
1595
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1420
|
-
deleted
|
|
1596
|
+
deleted: Scalars['Boolean'];
|
|
1421
1597
|
id: Scalars['ID'];
|
|
1422
1598
|
locale: Scalars['String'];
|
|
1423
1599
|
name: Scalars['String'];
|
|
1424
1600
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1425
1601
|
};
|
|
1602
|
+
export declare type ListAbandonedCartInput = {
|
|
1603
|
+
recoverEmailStatus?: InputMaybe<CheckoutRecoveryEmailStatusEnum>;
|
|
1604
|
+
recoveryStatus?: InputMaybe<CheckoutRecoveryStatusEnum>;
|
|
1605
|
+
};
|
|
1606
|
+
export declare type LocalDeliverySettingsDayEstimatedDeliveryTime = {
|
|
1607
|
+
__typename?: 'LocalDeliverySettingsDayEstimatedDeliveryTime';
|
|
1608
|
+
type: LocalDeliverySettingsDeliveryTimeType;
|
|
1609
|
+
value: Scalars['Float'];
|
|
1610
|
+
};
|
|
1611
|
+
/** LocalDeliverySettingsDeliveryTimeType */
|
|
1612
|
+
export declare enum LocalDeliverySettingsDeliveryTimeType {
|
|
1613
|
+
DAY = "DAY",
|
|
1614
|
+
HOUR = "HOUR",
|
|
1615
|
+
MINUTE = "MINUTE"
|
|
1616
|
+
}
|
|
1426
1617
|
export declare type LocationTranslations = {
|
|
1427
1618
|
__typename?: 'LocationTranslations';
|
|
1428
1619
|
de?: Maybe<Scalars['String']>;
|
|
@@ -1519,7 +1710,7 @@ export declare type MerchantAppPayment = {
|
|
|
1519
1710
|
/** The id of the app that generated the app payment. Actually, the id of the app for which merchant app payment was created. */
|
|
1520
1711
|
authorizedAppId?: Maybe<Scalars['String']>;
|
|
1521
1712
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1522
|
-
deleted
|
|
1713
|
+
deleted: Scalars['Boolean'];
|
|
1523
1714
|
id: Scalars['ID'];
|
|
1524
1715
|
/** 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. */
|
|
1525
1716
|
merchantPaymentUrl: Scalars['String'];
|
|
@@ -1599,7 +1790,7 @@ export declare type MerchantAppSubscription = {
|
|
|
1599
1790
|
currency?: Maybe<SubscriptionPriceCurrencyEnum>;
|
|
1600
1791
|
currencyCode?: Maybe<Scalars['String']>;
|
|
1601
1792
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
1602
|
-
deleted
|
|
1793
|
+
deleted: Scalars['Boolean'];
|
|
1603
1794
|
id: Scalars['ID'];
|
|
1604
1795
|
/** It is the date of receipt of the last payment for the license subscription. */
|
|
1605
1796
|
lastPaymentDate?: Maybe<Scalars['Timestamp']>;
|
|
@@ -1628,7 +1819,7 @@ export declare type MerchantLicence = {
|
|
|
1628
1819
|
/** If the license is attached to an app, its properties are kept in this domain. */
|
|
1629
1820
|
appSubscriptions?: Maybe<Array<MerchantAppSubscription>>;
|
|
1630
1821
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1631
|
-
deleted
|
|
1822
|
+
deleted: Scalars['Boolean'];
|
|
1632
1823
|
developmentStore?: Maybe<Scalars['Boolean']>;
|
|
1633
1824
|
/** It is the information of the start date of the license. */
|
|
1634
1825
|
fromDate?: Maybe<Scalars['Timestamp']>;
|
|
@@ -1944,6 +2135,7 @@ export declare type NumberFilterInput = {
|
|
|
1944
2135
|
export declare type Order = {
|
|
1945
2136
|
__typename?: 'Order';
|
|
1946
2137
|
abandonedCartFlows?: Maybe<Array<AbandonedCartFlow>>;
|
|
2138
|
+
attributes?: Maybe<Array<OrderAttributeValue>>;
|
|
1947
2139
|
availableShippingMethods?: Maybe<Array<AvailableShippingMethod>>;
|
|
1948
2140
|
/** It is the billing address of the order. */
|
|
1949
2141
|
billingAddress?: Maybe<OrderAddress>;
|
|
@@ -1977,7 +2169,7 @@ export declare type Order = {
|
|
|
1977
2169
|
customerId?: Maybe<Scalars['String']>;
|
|
1978
2170
|
/** It shows the number of orders given by the relevant customer. */
|
|
1979
2171
|
customerOrderCount?: Maybe<Scalars['Float']>;
|
|
1980
|
-
deleted
|
|
2172
|
+
deleted: Scalars['Boolean'];
|
|
1981
2173
|
dueDate?: Maybe<Scalars['Timestamp']>;
|
|
1982
2174
|
/** A list of gift package line objects, each containing information about a gift package pricing in the order. */
|
|
1983
2175
|
giftPackageLines?: Maybe<Array<OrderGiftPackageLine>>;
|
|
@@ -1991,6 +2183,7 @@ export declare type Order = {
|
|
|
1991
2183
|
/** Indicates whether there is a gift package in the order. **isGiftPackage** returns `true` if the order has gift package */
|
|
1992
2184
|
isGiftPackage?: Maybe<Scalars['Boolean']>;
|
|
1993
2185
|
itemCount?: Maybe<Scalars['Float']>;
|
|
2186
|
+
lastActivityDate?: Maybe<Scalars['Timestamp']>;
|
|
1994
2187
|
merchantId: Scalars['String'];
|
|
1995
2188
|
/** An optional note, can attach to the order. */
|
|
1996
2189
|
note?: Maybe<Scalars['String']>;
|
|
@@ -2033,6 +2226,7 @@ export declare type Order = {
|
|
|
2033
2226
|
shippingMethod: OrderShippingMethodEnum;
|
|
2034
2227
|
shippingSettingsId?: Maybe<Scalars['String']>;
|
|
2035
2228
|
shippingZoneRateId?: Maybe<Scalars['String']>;
|
|
2229
|
+
sourceId?: Maybe<Scalars['String']>;
|
|
2036
2230
|
/** It is the `staff` information of the orders created via ikasPOS. */
|
|
2037
2231
|
staff?: Maybe<OrderStaff>;
|
|
2038
2232
|
/** It is the status enum of the order */
|
|
@@ -2090,7 +2284,7 @@ export declare type OrderAddress = {
|
|
|
2090
2284
|
/** The postal code of the address. */
|
|
2091
2285
|
postalCode?: Maybe<Scalars['String']>;
|
|
2092
2286
|
/** The region information of the address. */
|
|
2093
|
-
region?: Maybe<
|
|
2287
|
+
region?: Maybe<OrderAddressRegion>;
|
|
2094
2288
|
/** The state information of the address. */
|
|
2095
2289
|
state?: Maybe<OrderAddressState>;
|
|
2096
2290
|
/** The tax number of the person associated with the address. */
|
|
@@ -2174,7 +2368,7 @@ export declare type OrderAddressInput = {
|
|
|
2174
2368
|
/** The postal code of the address. */
|
|
2175
2369
|
postalCode?: InputMaybe<Scalars['String']>;
|
|
2176
2370
|
/** The name of the region of the address. */
|
|
2177
|
-
region?: InputMaybe<
|
|
2371
|
+
region?: InputMaybe<OrderAddressRegionInput>;
|
|
2178
2372
|
/** The name of the state of the address. */
|
|
2179
2373
|
state?: InputMaybe<OrderAddressStateInput>;
|
|
2180
2374
|
/** The tax number of the person associated with the address. */
|
|
@@ -2182,6 +2376,20 @@ export declare type OrderAddressInput = {
|
|
|
2182
2376
|
/** The tax office of the person associated with the address. */
|
|
2183
2377
|
taxOffice?: InputMaybe<Scalars['String']>;
|
|
2184
2378
|
};
|
|
2379
|
+
export declare type OrderAddressRegion = {
|
|
2380
|
+
__typename?: 'OrderAddressRegion';
|
|
2381
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2382
|
+
deleted?: Maybe<Scalars['Boolean']>;
|
|
2383
|
+
/** It is the id of the region of the address. */
|
|
2384
|
+
id: Scalars['String'];
|
|
2385
|
+
/** It is the name of the region of the address. */
|
|
2386
|
+
name: Scalars['String'];
|
|
2387
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
2388
|
+
};
|
|
2389
|
+
export declare type OrderAddressRegionInput = {
|
|
2390
|
+
id: Scalars['String'];
|
|
2391
|
+
name: Scalars['String'];
|
|
2392
|
+
};
|
|
2185
2393
|
export declare type OrderAddressState = {
|
|
2186
2394
|
__typename?: 'OrderAddressState';
|
|
2187
2395
|
/** It is the code of the state of the address. */
|
|
@@ -2250,6 +2458,15 @@ export declare enum OrderAmountTypeEnum {
|
|
|
2250
2458
|
AMOUNT = "AMOUNT",
|
|
2251
2459
|
RATIO = "RATIO"
|
|
2252
2460
|
}
|
|
2461
|
+
export declare type OrderAttributeValue = {
|
|
2462
|
+
__typename?: 'OrderAttributeValue';
|
|
2463
|
+
/** It is the attribute id */
|
|
2464
|
+
orderAttributeId?: Maybe<Scalars['String']>;
|
|
2465
|
+
/** It is the attribute option id */
|
|
2466
|
+
orderAttributeOptionId?: Maybe<Scalars['String']>;
|
|
2467
|
+
/** It is the attribute value */
|
|
2468
|
+
value?: Maybe<Scalars['String']>;
|
|
2469
|
+
};
|
|
2253
2470
|
export declare type OrderBranch = {
|
|
2254
2471
|
__typename?: 'OrderBranch';
|
|
2255
2472
|
/** It is the id of the branch where the order was created. */
|
|
@@ -2296,6 +2513,8 @@ export declare type OrderCustomer = {
|
|
|
2296
2513
|
notificationsAccepted?: Maybe<Scalars['Boolean']>;
|
|
2297
2514
|
/** It is the phone number of the customer who created the order. */
|
|
2298
2515
|
phone?: Maybe<Scalars['String']>;
|
|
2516
|
+
/** It is the preferred language of the customer who created the order. */
|
|
2517
|
+
preferredLanguage?: Maybe<Scalars['String']>;
|
|
2299
2518
|
};
|
|
2300
2519
|
export declare type OrderCustomerInput = {
|
|
2301
2520
|
/** It is the email of the customer who created the order. */
|
|
@@ -2332,6 +2551,8 @@ export declare type OrderLineBundleVariant = {
|
|
|
2332
2551
|
brand?: Maybe<OrderLineVariantBrand>;
|
|
2333
2552
|
/** A list of category objects, each containing information about a category in the variant. */
|
|
2334
2553
|
categories?: Maybe<Array<OrderLineVariantCategory>>;
|
|
2554
|
+
/** It is the id of the product file. */
|
|
2555
|
+
fileId?: Maybe<Scalars['String']>;
|
|
2335
2556
|
/** It is the hasCode of the variant. */
|
|
2336
2557
|
hsCode?: Maybe<Scalars['String']>;
|
|
2337
2558
|
/** It is the id of the variant. */
|
|
@@ -2388,7 +2609,7 @@ export declare type OrderLineItem = {
|
|
|
2388
2609
|
/** It is the currency code of the order line item. */
|
|
2389
2610
|
currencyCode?: Maybe<Scalars['String']>;
|
|
2390
2611
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
2391
|
-
deleted
|
|
2612
|
+
deleted: Scalars['Boolean'];
|
|
2392
2613
|
/** Information about the discount. Shows the details of the discount applied to the order line item. */
|
|
2393
2614
|
discount?: Maybe<OrderLineDiscount>;
|
|
2394
2615
|
/** It is the discount price of the order line item. */
|
|
@@ -2406,6 +2627,7 @@ export declare type OrderLineItem = {
|
|
|
2406
2627
|
price: Scalars['Float'];
|
|
2407
2628
|
/** It is the quantity of variant in the order line item. */
|
|
2408
2629
|
quantity: Scalars['Float'];
|
|
2630
|
+
sourceId?: Maybe<Scalars['String']>;
|
|
2409
2631
|
/** It is the status enum of the order line item */
|
|
2410
2632
|
status: OrderLineItemStatusEnum;
|
|
2411
2633
|
/** It is the date when the last status of the order line item was updated. */
|
|
@@ -2422,7 +2644,7 @@ export declare type OrderLineItem = {
|
|
|
2422
2644
|
};
|
|
2423
2645
|
export declare type OrderLineItemInput = {
|
|
2424
2646
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2425
|
-
deleted?:
|
|
2647
|
+
deleted?: Scalars['Boolean'];
|
|
2426
2648
|
/** It is the discount information that will be applied to the line item. */
|
|
2427
2649
|
discount?: InputMaybe<OrderLineDiscountInput>;
|
|
2428
2650
|
/** It is the discount price of the line item. */
|
|
@@ -2434,6 +2656,8 @@ export declare type OrderLineItemInput = {
|
|
|
2434
2656
|
price: Scalars['Float'];
|
|
2435
2657
|
/** It is the quantity of the line item. */
|
|
2436
2658
|
quantity: Scalars['Float'];
|
|
2659
|
+
/** It is the source id of the line item. If the order came from the marketplace, it shows the line id in the marketplace. */
|
|
2660
|
+
sourceId?: InputMaybe<Scalars['String']>;
|
|
2437
2661
|
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2438
2662
|
/** It is the variant information in the order line item. */
|
|
2439
2663
|
variant: OrderLineVariantInput;
|
|
@@ -2497,6 +2721,8 @@ export declare type OrderLineVariant = {
|
|
|
2497
2721
|
bundleProducts?: Maybe<Array<OrderLineVariantBundleProductModel>>;
|
|
2498
2722
|
/** A list of category objects, each containing information about a category in the variant. */
|
|
2499
2723
|
categories?: Maybe<Array<OrderLineVariantCategory>>;
|
|
2724
|
+
/** It is the id of the product file. */
|
|
2725
|
+
fileId?: Maybe<Scalars['String']>;
|
|
2500
2726
|
/** It is the hasCode of the variant. */
|
|
2501
2727
|
hsCode?: Maybe<Scalars['String']>;
|
|
2502
2728
|
/** It is the id of the variant. */
|
|
@@ -2635,7 +2861,7 @@ export declare type OrderLineVariantVariantValues = {
|
|
|
2635
2861
|
export declare type OrderPackage = {
|
|
2636
2862
|
__typename?: 'OrderPackage';
|
|
2637
2863
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2638
|
-
deleted
|
|
2864
|
+
deleted: Scalars['Boolean'];
|
|
2639
2865
|
/** If the package was sent via the cargo application and received an error, this field is filled with an error message. */
|
|
2640
2866
|
errorMessage?: Maybe<Scalars['String']>;
|
|
2641
2867
|
id: Scalars['ID'];
|
|
@@ -2647,6 +2873,7 @@ export declare type OrderPackage = {
|
|
|
2647
2873
|
orderPackageFulfillStatus: OrderPackageFulfillStatusEnum;
|
|
2648
2874
|
/** It is the number of order package. Order package number is created with the order number - order package sequence format. */
|
|
2649
2875
|
orderPackageNumber: Scalars['String'];
|
|
2876
|
+
sourceId?: Maybe<Scalars['String']>;
|
|
2650
2877
|
stockLocationId: Scalars['String'];
|
|
2651
2878
|
/** It is the stock location id information where the package will be shipped. */
|
|
2652
2879
|
trackingInfo?: Maybe<TrackingInfo>;
|
|
@@ -2783,7 +3010,7 @@ export declare type OrderRefundInput = {
|
|
|
2783
3010
|
export declare type OrderRefundLineInput = {
|
|
2784
3011
|
orderLineItemId: Scalars['String'];
|
|
2785
3012
|
quantity: Scalars['Float'];
|
|
2786
|
-
restockItems?:
|
|
3013
|
+
restockItems?: Scalars['Boolean'];
|
|
2787
3014
|
};
|
|
2788
3015
|
export declare type OrderSalesChannel = {
|
|
2789
3016
|
__typename?: 'OrderSalesChannel';
|
|
@@ -2950,7 +3177,7 @@ export declare type OrderStorefrontTheme = {
|
|
|
2950
3177
|
export declare type OrderTag = {
|
|
2951
3178
|
__typename?: 'OrderTag';
|
|
2952
3179
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2953
|
-
deleted
|
|
3180
|
+
deleted: Scalars['Boolean'];
|
|
2954
3181
|
id: Scalars['ID'];
|
|
2955
3182
|
merchantId: Scalars['String'];
|
|
2956
3183
|
name: Scalars['String'];
|
|
@@ -2958,7 +3185,7 @@ export declare type OrderTag = {
|
|
|
2958
3185
|
};
|
|
2959
3186
|
export declare type OrderTagInput = {
|
|
2960
3187
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2961
|
-
deleted?:
|
|
3188
|
+
deleted?: Scalars['Boolean'];
|
|
2962
3189
|
id?: InputMaybe<Scalars['ID']>;
|
|
2963
3190
|
name: Scalars['String'];
|
|
2964
3191
|
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
@@ -3016,7 +3243,7 @@ export declare type PriceList = {
|
|
|
3016
3243
|
currency: Scalars['String'];
|
|
3017
3244
|
currencyCode?: Maybe<Scalars['String']>;
|
|
3018
3245
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
3019
|
-
deleted
|
|
3246
|
+
deleted: Scalars['Boolean'];
|
|
3020
3247
|
id: Scalars['ID'];
|
|
3021
3248
|
/** It is the name of the price list of the product. */
|
|
3022
3249
|
name: Scalars['String'];
|
|
@@ -3037,7 +3264,7 @@ export declare type Product = {
|
|
|
3037
3264
|
/** List category identifiers of the product. */
|
|
3038
3265
|
categoryIds?: Maybe<Array<Scalars['String']>>;
|
|
3039
3266
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3040
|
-
deleted
|
|
3267
|
+
deleted: Scalars['Boolean'];
|
|
3041
3268
|
/** Description of the product. */
|
|
3042
3269
|
description?: Maybe<Scalars['String']>;
|
|
3043
3270
|
googleTaxonomyId?: Maybe<Scalars['String']>;
|
|
@@ -3080,7 +3307,7 @@ export declare type Product = {
|
|
|
3080
3307
|
export declare type ProductAttribute = {
|
|
3081
3308
|
__typename?: 'ProductAttribute';
|
|
3082
3309
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3083
|
-
deleted
|
|
3310
|
+
deleted: Scalars['Boolean'];
|
|
3084
3311
|
/** Description of the attribute */
|
|
3085
3312
|
description?: Maybe<Scalars['String']>;
|
|
3086
3313
|
id: Scalars['ID'];
|
|
@@ -3098,7 +3325,7 @@ export declare type ProductAttribute = {
|
|
|
3098
3325
|
};
|
|
3099
3326
|
export declare type ProductAttributeInput = {
|
|
3100
3327
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3101
|
-
deleted?:
|
|
3328
|
+
deleted?: Scalars['Boolean'];
|
|
3102
3329
|
description?: InputMaybe<Scalars['String']>;
|
|
3103
3330
|
id?: InputMaybe<Scalars['ID']>;
|
|
3104
3331
|
name: Scalars['String'];
|
|
@@ -3111,7 +3338,7 @@ export declare type ProductAttributeInput = {
|
|
|
3111
3338
|
export declare type ProductAttributeOption = {
|
|
3112
3339
|
__typename?: 'ProductAttributeOption';
|
|
3113
3340
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3114
|
-
deleted
|
|
3341
|
+
deleted: Scalars['Boolean'];
|
|
3115
3342
|
id: Scalars['ID'];
|
|
3116
3343
|
/** Name of the product attribute option */
|
|
3117
3344
|
name: Scalars['String'];
|
|
@@ -3119,7 +3346,7 @@ export declare type ProductAttributeOption = {
|
|
|
3119
3346
|
};
|
|
3120
3347
|
export declare type ProductAttributeOptionInput = {
|
|
3121
3348
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3122
|
-
deleted?:
|
|
3349
|
+
deleted?: Scalars['Boolean'];
|
|
3123
3350
|
id?: InputMaybe<Scalars['ID']>;
|
|
3124
3351
|
name: Scalars['String'];
|
|
3125
3352
|
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
@@ -3219,7 +3446,7 @@ export declare type ProductBaseUnitModelInput = {
|
|
|
3219
3446
|
export declare type ProductBrand = {
|
|
3220
3447
|
__typename?: 'ProductBrand';
|
|
3221
3448
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3222
|
-
deleted
|
|
3449
|
+
deleted: Scalars['Boolean'];
|
|
3223
3450
|
/** The description of the product's brand. */
|
|
3224
3451
|
description?: Maybe<Scalars['String']>;
|
|
3225
3452
|
id: Scalars['ID'];
|
|
@@ -3238,7 +3465,7 @@ export declare type ProductBrand = {
|
|
|
3238
3465
|
};
|
|
3239
3466
|
export declare type ProductBrandInput = {
|
|
3240
3467
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3241
|
-
deleted?:
|
|
3468
|
+
deleted?: Scalars['Boolean'];
|
|
3242
3469
|
/** The description of the product's brand. */
|
|
3243
3470
|
description?: InputMaybe<Scalars['String']>;
|
|
3244
3471
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -3274,6 +3501,7 @@ export declare type ProductBrandTranslationInput = {
|
|
|
3274
3501
|
};
|
|
3275
3502
|
export declare type ProductImage = {
|
|
3276
3503
|
__typename?: 'ProductImage';
|
|
3504
|
+
fileName?: Maybe<Scalars['String']>;
|
|
3277
3505
|
/** Id of the product image. */
|
|
3278
3506
|
imageId?: Maybe<Scalars['String']>;
|
|
3279
3507
|
/** Whether the image is main image for the product or not. */
|
|
@@ -3284,6 +3512,7 @@ export declare type ProductImage = {
|
|
|
3284
3512
|
order: Scalars['Float'];
|
|
3285
3513
|
};
|
|
3286
3514
|
export declare type ProductImageInput = {
|
|
3515
|
+
fileName?: InputMaybe<Scalars['String']>;
|
|
3287
3516
|
imageId: Scalars['String'];
|
|
3288
3517
|
isMain: Scalars['Boolean'];
|
|
3289
3518
|
isVideo?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -3300,7 +3529,7 @@ export declare type ProductInput = {
|
|
|
3300
3529
|
brandId?: InputMaybe<Scalars['String']>;
|
|
3301
3530
|
categoryIds?: InputMaybe<Array<Scalars['String']>>;
|
|
3302
3531
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3303
|
-
deleted?:
|
|
3532
|
+
deleted?: Scalars['Boolean'];
|
|
3304
3533
|
description?: InputMaybe<Scalars['String']>;
|
|
3305
3534
|
googleTaxonomyId?: InputMaybe<Scalars['String']>;
|
|
3306
3535
|
groupVariantsByVariantTypeId?: InputMaybe<Scalars['String']>;
|
|
@@ -3326,7 +3555,7 @@ export declare type ProductOption = {
|
|
|
3326
3555
|
__typename?: 'ProductOption';
|
|
3327
3556
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3328
3557
|
dateSettings?: Maybe<ProductOptionDateSettings>;
|
|
3329
|
-
deleted
|
|
3558
|
+
deleted: Scalars['Boolean'];
|
|
3330
3559
|
fileSettings?: Maybe<ProductOptionFileSettings>;
|
|
3331
3560
|
id: Scalars['ID'];
|
|
3332
3561
|
isOptional?: Maybe<Scalars['Boolean']>;
|
|
@@ -3371,7 +3600,7 @@ export declare type ProductOptionSelectValue = {
|
|
|
3371
3600
|
__typename?: 'ProductOptionSelectValue';
|
|
3372
3601
|
colorCode?: Maybe<Scalars['String']>;
|
|
3373
3602
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3374
|
-
deleted
|
|
3603
|
+
deleted: Scalars['Boolean'];
|
|
3375
3604
|
id: Scalars['ID'];
|
|
3376
3605
|
order: Scalars['Float'];
|
|
3377
3606
|
otherPrices?: Maybe<Array<ProductOptionSelectValueOtherPrice>>;
|
|
@@ -3394,7 +3623,7 @@ export declare type ProductOptionSelectValueTranslations = {
|
|
|
3394
3623
|
export declare type ProductOptionSet = {
|
|
3395
3624
|
__typename?: 'ProductOptionSet';
|
|
3396
3625
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3397
|
-
deleted
|
|
3626
|
+
deleted: Scalars['Boolean'];
|
|
3398
3627
|
id: Scalars['ID'];
|
|
3399
3628
|
name: Scalars['String'];
|
|
3400
3629
|
options: Array<ProductOption>;
|
|
@@ -3504,7 +3733,7 @@ export declare type ProductSearchResponse = {
|
|
|
3504
3733
|
export declare type ProductStockLocation = {
|
|
3505
3734
|
__typename?: 'ProductStockLocation';
|
|
3506
3735
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3507
|
-
deleted
|
|
3736
|
+
deleted: Scalars['Boolean'];
|
|
3508
3737
|
id: Scalars['ID'];
|
|
3509
3738
|
productId: Scalars['String'];
|
|
3510
3739
|
stockCount: Scalars['Float'];
|
|
@@ -3514,7 +3743,7 @@ export declare type ProductStockLocation = {
|
|
|
3514
3743
|
};
|
|
3515
3744
|
export declare type ProductStockLocationInput = {
|
|
3516
3745
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3517
|
-
deleted?:
|
|
3746
|
+
deleted?: Scalars['Boolean'];
|
|
3518
3747
|
id?: InputMaybe<Scalars['ID']>;
|
|
3519
3748
|
/** It is the product id to which the variant associated. */
|
|
3520
3749
|
productId: Scalars['String'];
|
|
@@ -3558,7 +3787,7 @@ export declare type ProductStockLocationPaginationResponse = {
|
|
|
3558
3787
|
export declare type ProductTag = {
|
|
3559
3788
|
__typename?: 'ProductTag';
|
|
3560
3789
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3561
|
-
deleted
|
|
3790
|
+
deleted: Scalars['Boolean'];
|
|
3562
3791
|
id: Scalars['ID'];
|
|
3563
3792
|
/** The name of the product's tag. */
|
|
3564
3793
|
name: Scalars['String'];
|
|
@@ -3568,7 +3797,7 @@ export declare type ProductTag = {
|
|
|
3568
3797
|
};
|
|
3569
3798
|
export declare type ProductTagInput = {
|
|
3570
3799
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3571
|
-
deleted?:
|
|
3800
|
+
deleted?: Scalars['Boolean'];
|
|
3572
3801
|
id?: InputMaybe<Scalars['ID']>;
|
|
3573
3802
|
/** The name of the product's tag. */
|
|
3574
3803
|
name: Scalars['String'];
|
|
@@ -3617,7 +3846,7 @@ export declare enum ProductTypeEnum {
|
|
|
3617
3846
|
export declare type ProductUnit = {
|
|
3618
3847
|
__typename?: 'ProductUnit';
|
|
3619
3848
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3620
|
-
deleted
|
|
3849
|
+
deleted: Scalars['Boolean'];
|
|
3621
3850
|
id: Scalars['ID'];
|
|
3622
3851
|
/** The name of the product's unit. */
|
|
3623
3852
|
name: Scalars['String'];
|
|
@@ -3627,7 +3856,7 @@ export declare type ProductUnit = {
|
|
|
3627
3856
|
};
|
|
3628
3857
|
export declare type ProductUnitInput = {
|
|
3629
3858
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3630
|
-
deleted?:
|
|
3859
|
+
deleted?: Scalars['Boolean'];
|
|
3631
3860
|
id?: InputMaybe<Scalars['ID']>;
|
|
3632
3861
|
/** The name of the product's unit. */
|
|
3633
3862
|
name: Scalars['String'];
|
|
@@ -3689,7 +3918,7 @@ export declare type PublicTransaction = {
|
|
|
3689
3918
|
currencyCode: Scalars['String'];
|
|
3690
3919
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
3691
3920
|
customerId?: Maybe<Scalars['String']>;
|
|
3692
|
-
deleted
|
|
3921
|
+
deleted: Scalars['Boolean'];
|
|
3693
3922
|
error?: Maybe<TransactionError>;
|
|
3694
3923
|
id: Scalars['ID'];
|
|
3695
3924
|
orderId?: Maybe<Scalars['String']>;
|
|
@@ -3720,6 +3949,8 @@ export declare type Query = {
|
|
|
3720
3949
|
/** Using this api, you can view your sales channel. */
|
|
3721
3950
|
getSalesChannel?: Maybe<SalesChannel>;
|
|
3722
3951
|
getVideoUploadUrl: GetVideoUploadURLResponse;
|
|
3952
|
+
/** Use this query to get abandoned checkouts. */
|
|
3953
|
+
listAbandonedCheckouts: CartPaginationResponse;
|
|
3723
3954
|
listBranch: Array<Branch>;
|
|
3724
3955
|
listCampaign: CampaignPaginationResponse;
|
|
3725
3956
|
/**
|
|
@@ -3788,6 +4019,14 @@ export declare type QuerygetImportJobDataArgs = {
|
|
|
3788
4019
|
export declare type QuerygetVideoUploadUrlArgs = {
|
|
3789
4020
|
videoId: Scalars['String'];
|
|
3790
4021
|
};
|
|
4022
|
+
export declare type QuerylistAbandonedCheckoutsArgs = {
|
|
4023
|
+
id?: InputMaybe<StringFilterInput>;
|
|
4024
|
+
input: ListAbandonedCartInput;
|
|
4025
|
+
mailSendDate?: InputMaybe<DateFilterInput>;
|
|
4026
|
+
pagination?: InputMaybe<PaginationInput>;
|
|
4027
|
+
sort?: InputMaybe<Scalars['String']>;
|
|
4028
|
+
updatedAt?: InputMaybe<DateFilterInput>;
|
|
4029
|
+
};
|
|
3791
4030
|
export declare type QuerylistBranchArgs = {
|
|
3792
4031
|
id?: InputMaybe<StringFilterInput>;
|
|
3793
4032
|
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -4018,7 +4257,7 @@ export declare enum SFAnalyticsTrafficSourceEnum {
|
|
|
4018
4257
|
export declare type SalesChannel = {
|
|
4019
4258
|
__typename?: 'SalesChannel';
|
|
4020
4259
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4021
|
-
deleted
|
|
4260
|
+
deleted: Scalars['Boolean'];
|
|
4022
4261
|
id: Scalars['ID'];
|
|
4023
4262
|
/** The sales channel name field. */
|
|
4024
4263
|
name: Scalars['String'];
|
|
@@ -4228,6 +4467,7 @@ export declare type SearchProductCustomerReviewStar = {
|
|
|
4228
4467
|
};
|
|
4229
4468
|
export declare type SearchProductImage = {
|
|
4230
4469
|
__typename?: 'SearchProductImage';
|
|
4470
|
+
fileName?: Maybe<Scalars['String']>;
|
|
4231
4471
|
id: Scalars['String'];
|
|
4232
4472
|
isMain?: Maybe<Scalars['Boolean']>;
|
|
4233
4473
|
isVideo?: Maybe<Scalars['Boolean']>;
|
|
@@ -4310,25 +4550,10 @@ export declare type SearchVariationValueRelation = {
|
|
|
4310
4550
|
variantTypeId: Scalars['String'];
|
|
4311
4551
|
variantValueId: Scalars['String'];
|
|
4312
4552
|
};
|
|
4313
|
-
export declare type ShippingZoneRegion = {
|
|
4314
|
-
__typename?: 'ShippingZoneRegion';
|
|
4315
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4316
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
4317
|
-
id: Scalars['ID'];
|
|
4318
|
-
name: Scalars['String'];
|
|
4319
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
4320
|
-
};
|
|
4321
|
-
export declare type ShippingZoneRegionInput = {
|
|
4322
|
-
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4323
|
-
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
4324
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
4325
|
-
name: Scalars['String'];
|
|
4326
|
-
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4327
|
-
};
|
|
4328
4553
|
export declare type SimpleCategory = {
|
|
4329
4554
|
__typename?: 'SimpleCategory';
|
|
4330
4555
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4331
|
-
deleted
|
|
4556
|
+
deleted: Scalars['Boolean'];
|
|
4332
4557
|
id: Scalars['ID'];
|
|
4333
4558
|
/** It is the name of the category in which the product is located. */
|
|
4334
4559
|
name: Scalars['String'];
|
|
@@ -4339,7 +4564,7 @@ export declare type SimpleCategory = {
|
|
|
4339
4564
|
export declare type SimpleProductBrand = {
|
|
4340
4565
|
__typename?: 'SimpleProductBrand';
|
|
4341
4566
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4342
|
-
deleted
|
|
4567
|
+
deleted: Scalars['Boolean'];
|
|
4343
4568
|
id: Scalars['ID'];
|
|
4344
4569
|
/** The name of the product's brand. */
|
|
4345
4570
|
name: Scalars['String'];
|
|
@@ -4348,7 +4573,7 @@ export declare type SimpleProductBrand = {
|
|
|
4348
4573
|
export declare type SimpleProductTag = {
|
|
4349
4574
|
__typename?: 'SimpleProductTag';
|
|
4350
4575
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4351
|
-
deleted
|
|
4576
|
+
deleted: Scalars['Boolean'];
|
|
4352
4577
|
id: Scalars['ID'];
|
|
4353
4578
|
/** The name of the product's tag. */
|
|
4354
4579
|
name: Scalars['String'];
|
|
@@ -4371,7 +4596,7 @@ export declare type State = {
|
|
|
4371
4596
|
/** ID indicating which country the state belongs to. */
|
|
4372
4597
|
countryId: Scalars['String'];
|
|
4373
4598
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4374
|
-
deleted
|
|
4599
|
+
deleted: Scalars['Boolean'];
|
|
4375
4600
|
id: Scalars['ID'];
|
|
4376
4601
|
/** Shows spellings of state name in different languages. */
|
|
4377
4602
|
locationTranslations?: Maybe<LocationTranslations>;
|
|
@@ -4388,7 +4613,7 @@ export declare type StockLocation = {
|
|
|
4388
4613
|
/** It is the address information of the stock location. */
|
|
4389
4614
|
address?: Maybe<StockLocationAddress>;
|
|
4390
4615
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4391
|
-
deleted
|
|
4616
|
+
deleted: Scalars['Boolean'];
|
|
4392
4617
|
/** It is the delivery time of the stock location. */
|
|
4393
4618
|
deliveryTime?: Maybe<StockLocationDeliveryTimeEnum>;
|
|
4394
4619
|
/** It is the description of the stock location. */
|
|
@@ -4472,7 +4697,7 @@ export declare enum StockLocationTypeEnum {
|
|
|
4472
4697
|
export declare type Storefront = {
|
|
4473
4698
|
__typename?: 'Storefront';
|
|
4474
4699
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4475
|
-
deleted
|
|
4700
|
+
deleted: Scalars['Boolean'];
|
|
4476
4701
|
id: Scalars['ID'];
|
|
4477
4702
|
/** The storefront's name. */
|
|
4478
4703
|
name: Scalars['String'];
|
|
@@ -4485,7 +4710,7 @@ export declare type StorefrontJSScript = {
|
|
|
4485
4710
|
/** The type of javascript script content. */
|
|
4486
4711
|
contentType?: Maybe<StorefrontJSScriptContentTypeEnum>;
|
|
4487
4712
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4488
|
-
deleted
|
|
4713
|
+
deleted: Scalars['Boolean'];
|
|
4489
4714
|
/** The type of javascript script content. */
|
|
4490
4715
|
fileName?: Maybe<Scalars['String']>;
|
|
4491
4716
|
id: Scalars['ID'];
|
|
@@ -4557,7 +4782,7 @@ export declare type Terminal = {
|
|
|
4557
4782
|
__typename?: 'Terminal';
|
|
4558
4783
|
branchId: Scalars['String'];
|
|
4559
4784
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4560
|
-
deleted
|
|
4785
|
+
deleted: Scalars['Boolean'];
|
|
4561
4786
|
id: Scalars['ID'];
|
|
4562
4787
|
name: Scalars['String'];
|
|
4563
4788
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
@@ -4573,7 +4798,7 @@ export declare type TimelineInput = {
|
|
|
4573
4798
|
export declare type Town = {
|
|
4574
4799
|
__typename?: 'Town';
|
|
4575
4800
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4576
|
-
deleted
|
|
4801
|
+
deleted: Scalars['Boolean'];
|
|
4577
4802
|
/** ID indicating which district the town belongs to. */
|
|
4578
4803
|
districtId: Scalars['String'];
|
|
4579
4804
|
id: Scalars['ID'];
|
|
@@ -4643,7 +4868,7 @@ export declare type TransactionPaymentMethodDetail = {
|
|
|
4643
4868
|
installment?: Maybe<TransactionInstallmentPrice>;
|
|
4644
4869
|
lastFourDigits: Scalars['String'];
|
|
4645
4870
|
paymentMethodName?: Maybe<Scalars['String']>;
|
|
4646
|
-
threeDSecure
|
|
4871
|
+
threeDSecure: Scalars['Boolean'];
|
|
4647
4872
|
};
|
|
4648
4873
|
export declare enum TransactionStatusEnum {
|
|
4649
4874
|
AUTHORIZED = "AUTHORIZED",
|
|
@@ -4671,7 +4896,7 @@ export declare type UpdateOrderInput = {
|
|
|
4671
4896
|
editReason: Scalars['String'];
|
|
4672
4897
|
orderId: Scalars['String'];
|
|
4673
4898
|
orderLineItems: Array<OrderLineItemInput>;
|
|
4674
|
-
restockItems?:
|
|
4899
|
+
restockItems?: Scalars['Boolean'];
|
|
4675
4900
|
};
|
|
4676
4901
|
export declare type UpdateOrderPackageStatusInput = {
|
|
4677
4902
|
/**
|
|
@@ -4681,6 +4906,8 @@ export declare type UpdateOrderPackageStatusInput = {
|
|
|
4681
4906
|
orderId: Scalars['String'];
|
|
4682
4907
|
/** A list of package objects, each containing input about an package in the order. */
|
|
4683
4908
|
packages: Array<UpdateOrderPackageStatusPackagesInput>;
|
|
4909
|
+
/** It is the source id of the order. */
|
|
4910
|
+
sourceId?: InputMaybe<Scalars['String']>;
|
|
4684
4911
|
};
|
|
4685
4912
|
export declare type UpdateOrderPackageStatusPackagesInput = {
|
|
4686
4913
|
/** If the package fulfill status is an `ERROR` , this field can be sent as full. */
|
|
@@ -4690,6 +4917,8 @@ export declare type UpdateOrderPackageStatusPackagesInput = {
|
|
|
4690
4917
|
* * Is the entered id must be exist in ikas.
|
|
4691
4918
|
*/
|
|
4692
4919
|
packageId: Scalars['String'];
|
|
4920
|
+
/** It is the source id of the package. */
|
|
4921
|
+
sourceId?: InputMaybe<Scalars['String']>;
|
|
4693
4922
|
/** It is the status enum of the will be updated package */
|
|
4694
4923
|
status: OrderPackageFulfillStatusEnum;
|
|
4695
4924
|
/** It is the tracking information of the package */
|
|
@@ -4731,14 +4960,16 @@ export declare type Variant = {
|
|
|
4731
4960
|
/** Show the product bundle settings. */
|
|
4732
4961
|
bundleSettings?: Maybe<BundleSettingsModel>;
|
|
4733
4962
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4734
|
-
deleted
|
|
4963
|
+
deleted: Scalars['Boolean'];
|
|
4964
|
+
/** Id of product file. */
|
|
4965
|
+
fileId?: Maybe<Scalars['String']>;
|
|
4735
4966
|
/** Hs code of the variant. */
|
|
4736
4967
|
hsCode?: Maybe<Scalars['String']>;
|
|
4737
4968
|
id: Scalars['ID'];
|
|
4738
4969
|
/** List of images for variant. */
|
|
4739
4970
|
images?: Maybe<Array<ProductImage>>;
|
|
4740
4971
|
/** Whether the variant is active or not. */
|
|
4741
|
-
isActive
|
|
4972
|
+
isActive: Scalars['Boolean'];
|
|
4742
4973
|
/** List of prices for the variant. */
|
|
4743
4974
|
prices: Array<ProductPrice>;
|
|
4744
4975
|
/** Whether to sell if variant is out of stock or not. */
|
|
@@ -4759,11 +4990,12 @@ export declare type VariantInput = {
|
|
|
4759
4990
|
barcodeList?: InputMaybe<Array<Scalars['String']>>;
|
|
4760
4991
|
bundleSettings?: InputMaybe<BundleSettingsInput>;
|
|
4761
4992
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4762
|
-
deleted?:
|
|
4993
|
+
deleted?: Scalars['Boolean'];
|
|
4994
|
+
fileId?: InputMaybe<Scalars['String']>;
|
|
4763
4995
|
hsCode?: InputMaybe<Scalars['String']>;
|
|
4764
4996
|
id?: InputMaybe<Scalars['ID']>;
|
|
4765
4997
|
images?: InputMaybe<Array<ProductImageInput>>;
|
|
4766
|
-
isActive?:
|
|
4998
|
+
isActive?: Scalars['Boolean'];
|
|
4767
4999
|
prices: Array<ProductPriceInput>;
|
|
4768
5000
|
sellIfOutOfStock?: InputMaybe<Scalars['Boolean']>;
|
|
4769
5001
|
sku?: InputMaybe<Scalars['String']>;
|
|
@@ -4789,7 +5021,7 @@ export declare enum VariantSelectionTypeEnum {
|
|
|
4789
5021
|
export declare type VariantType = {
|
|
4790
5022
|
__typename?: 'VariantType';
|
|
4791
5023
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4792
|
-
deleted
|
|
5024
|
+
deleted: Scalars['Boolean'];
|
|
4793
5025
|
id: Scalars['ID'];
|
|
4794
5026
|
/** Product variant type name information. **For example: Size, Color, Number etc.**.It can be a maximum of 100 characters. */
|
|
4795
5027
|
name: Scalars['String'];
|
|
@@ -4803,7 +5035,7 @@ export declare type VariantType = {
|
|
|
4803
5035
|
};
|
|
4804
5036
|
export declare type VariantTypeInput = {
|
|
4805
5037
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4806
|
-
deleted?:
|
|
5038
|
+
deleted?: Scalars['Boolean'];
|
|
4807
5039
|
id?: InputMaybe<Scalars['ID']>;
|
|
4808
5040
|
/** Product variant type name information. **For example: Size, Color, Number etc.**.It can be a maximum of 100 characters. */
|
|
4809
5041
|
name: Scalars['String'];
|
|
@@ -4848,7 +5080,7 @@ export declare type VariantValue = {
|
|
|
4848
5080
|
/** It is the color code information of the variant values. It can be a maximum of 7 characters. */
|
|
4849
5081
|
colorCode?: Maybe<Scalars['String']>;
|
|
4850
5082
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4851
|
-
deleted
|
|
5083
|
+
deleted: Scalars['Boolean'];
|
|
4852
5084
|
id: Scalars['ID'];
|
|
4853
5085
|
/** 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. */
|
|
4854
5086
|
name: Scalars['String'];
|
|
@@ -4860,7 +5092,7 @@ export declare type VariantValueInput = {
|
|
|
4860
5092
|
/** It is the color code information of the variant values. It can be a maximum of 7 characters. */
|
|
4861
5093
|
colorCode?: InputMaybe<Scalars['String']>;
|
|
4862
5094
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4863
|
-
deleted?:
|
|
5095
|
+
deleted?: Scalars['Boolean'];
|
|
4864
5096
|
id?: InputMaybe<Scalars['ID']>;
|
|
4865
5097
|
/** 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. */
|
|
4866
5098
|
name: Scalars['String'];
|
|
@@ -4895,7 +5127,7 @@ export declare type Vendor = {
|
|
|
4895
5127
|
address?: Maybe<Scalars['String']>;
|
|
4896
5128
|
company?: Maybe<Scalars['String']>;
|
|
4897
5129
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4898
|
-
deleted
|
|
5130
|
+
deleted: Scalars['Boolean'];
|
|
4899
5131
|
email?: Maybe<Scalars['String']>;
|
|
4900
5132
|
id: Scalars['ID'];
|
|
4901
5133
|
name: Scalars['String'];
|
|
@@ -4910,7 +5142,7 @@ export declare type VendorInput = {
|
|
|
4910
5142
|
address?: InputMaybe<Scalars['String']>;
|
|
4911
5143
|
company?: InputMaybe<Scalars['String']>;
|
|
4912
5144
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4913
|
-
deleted?:
|
|
5145
|
+
deleted?: Scalars['Boolean'];
|
|
4914
5146
|
email?: InputMaybe<Scalars['String']>;
|
|
4915
5147
|
id?: InputMaybe<Scalars['ID']>;
|
|
4916
5148
|
name: Scalars['String'];
|
|
@@ -4930,7 +5162,7 @@ export declare enum VendorStatusEnum {
|
|
|
4930
5162
|
export declare type Webhook = {
|
|
4931
5163
|
__typename?: 'Webhook';
|
|
4932
5164
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4933
|
-
deleted
|
|
5165
|
+
deleted: Scalars['Boolean'];
|
|
4934
5166
|
/** URL address that webhooks will be pushed. */
|
|
4935
5167
|
endpoint: Scalars['String'];
|
|
4936
5168
|
id: Scalars['ID'];
|