@ikas/api-client 1.0.25 → 1.0.26
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 +17 -16
- package/dist/api/admin/generated/default-gqls.js.map +1 -1
- package/dist/api/admin/generated/index.d.ts +302 -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'];
|
|
@@ -499,7 +500,7 @@ export declare type CampaignInput = {
|
|
|
499
500
|
createdFor?: InputMaybe<CampaignCreatedForEnum>;
|
|
500
501
|
currencyCodes?: InputMaybe<Array<Scalars['String']>>;
|
|
501
502
|
dateRange?: InputMaybe<CampaignDateRangeFieldInput>;
|
|
502
|
-
deleted?:
|
|
503
|
+
deleted?: Scalars['Boolean'];
|
|
503
504
|
fixedDiscount?: InputMaybe<FixedDiscountInput>;
|
|
504
505
|
hasCoupon: Scalars['Boolean'];
|
|
505
506
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -527,10 +528,11 @@ export declare type CampaignOffer = {
|
|
|
527
528
|
availableSalesChannelIds: Array<Scalars['String']>;
|
|
528
529
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
529
530
|
currencyCodes?: Maybe<Array<Scalars['String']>>;
|
|
530
|
-
deleted
|
|
531
|
+
deleted: Scalars['Boolean'];
|
|
531
532
|
endDate?: Maybe<Scalars['Timestamp']>;
|
|
532
533
|
followUpActionType: CampaignOfferFollowUpActionTypeEnum;
|
|
533
534
|
id: Scalars['ID'];
|
|
535
|
+
maximumRequiredCartAmount?: Maybe<Scalars['Float']>;
|
|
534
536
|
minimumRequiredCartAmount?: Maybe<Scalars['Float']>;
|
|
535
537
|
name: Scalars['String'];
|
|
536
538
|
offers: Array<CampaignOfferProduct>;
|
|
@@ -632,9 +634,14 @@ export declare enum CampaignTypeEnum {
|
|
|
632
634
|
RATIO = "RATIO"
|
|
633
635
|
}
|
|
634
636
|
export declare type CancelFulfillmentInput = {
|
|
637
|
+
lines?: InputMaybe<Array<CancelFulfillmentOrderLineInput>>;
|
|
635
638
|
orderId: Scalars['String'];
|
|
636
639
|
orderPackageId: Scalars['String'];
|
|
637
640
|
};
|
|
641
|
+
export declare type CancelFulfillmentOrderLineInput = {
|
|
642
|
+
orderLineItemId: Scalars['String'];
|
|
643
|
+
quantity: Scalars['Float'];
|
|
644
|
+
};
|
|
638
645
|
export declare type CancelOrderLineInput = {
|
|
639
646
|
orderId: Scalars['String'];
|
|
640
647
|
orderLineItems: Array<CancelOrderLineItemInput>;
|
|
@@ -642,7 +649,43 @@ export declare type CancelOrderLineInput = {
|
|
|
642
649
|
export declare type CancelOrderLineItemInput = {
|
|
643
650
|
orderLineItemId: Scalars['String'];
|
|
644
651
|
quantity: Scalars['Float'];
|
|
645
|
-
restockItems?:
|
|
652
|
+
restockItems?: Scalars['Boolean'];
|
|
653
|
+
};
|
|
654
|
+
export declare type Cart = {
|
|
655
|
+
__typename?: 'Cart';
|
|
656
|
+
campaignOffers?: Maybe<Array<CartCampaignOffer>>;
|
|
657
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
658
|
+
createdBy?: Maybe<CartCreatedByEnum>;
|
|
659
|
+
currencyCode?: Maybe<Scalars['String']>;
|
|
660
|
+
currencySymbol?: Maybe<Scalars['String']>;
|
|
661
|
+
customerId?: Maybe<Scalars['String']>;
|
|
662
|
+
deleted: Scalars['Boolean'];
|
|
663
|
+
dueDate: Scalars['Timestamp'];
|
|
664
|
+
id: Scalars['ID'];
|
|
665
|
+
itemCount: Scalars['Float'];
|
|
666
|
+
items: Array<OrderLineItem>;
|
|
667
|
+
merchantId: Scalars['String'];
|
|
668
|
+
priceListId?: Maybe<Scalars['String']>;
|
|
669
|
+
salesChannelId: Scalars['String'];
|
|
670
|
+
status: CartStatusEnum;
|
|
671
|
+
storefrontId?: Maybe<Scalars['String']>;
|
|
672
|
+
storefrontRouting?: Maybe<CartStorefrontRouting>;
|
|
673
|
+
storefrontRoutingId?: Maybe<Scalars['String']>;
|
|
674
|
+
storefrontThemeId?: Maybe<Scalars['String']>;
|
|
675
|
+
taxLines?: Maybe<Array<OrderTaxLine>>;
|
|
676
|
+
totalPrice: Scalars['Float'];
|
|
677
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
678
|
+
};
|
|
679
|
+
export declare type CartCampaignOffer = {
|
|
680
|
+
__typename?: 'CartCampaignOffer';
|
|
681
|
+
appliedOrderLineId?: Maybe<Scalars['String']>;
|
|
682
|
+
campaignOfferId: Scalars['String'];
|
|
683
|
+
campaignOfferProductId?: Maybe<Scalars['String']>;
|
|
684
|
+
offerEndDate?: Maybe<Scalars['Timestamp']>;
|
|
685
|
+
offerStartDate: Scalars['Timestamp'];
|
|
686
|
+
status: CartCampaignOfferStatus;
|
|
687
|
+
targetPageTypes: Array<CampaignOfferTargetPageTypeEnum>;
|
|
688
|
+
triggerSourceOrderLineId: Scalars['String'];
|
|
646
689
|
};
|
|
647
690
|
export declare enum CartCampaignOfferStatus {
|
|
648
691
|
ACCEPTED = "ACCEPTED",
|
|
@@ -654,6 +697,56 @@ export declare enum CartCreatedByEnum {
|
|
|
654
697
|
ADMIN = "ADMIN",
|
|
655
698
|
CUSTOMER = "CUSTOMER"
|
|
656
699
|
}
|
|
700
|
+
export declare type CartPaginationResponse = {
|
|
701
|
+
__typename?: 'CartPaginationResponse';
|
|
702
|
+
/**
|
|
703
|
+
* Returns the first three records of each page in the records returned as a response.
|
|
704
|
+
* For example, **let's say page = 3, limit = 30, count = 3.**
|
|
705
|
+
* The records that will return as a response are the records **between 60-62.**
|
|
706
|
+
*/
|
|
707
|
+
count: Scalars['Int'];
|
|
708
|
+
data: Array<Checkout>;
|
|
709
|
+
/** 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.** */
|
|
710
|
+
hasNext: Scalars['Boolean'];
|
|
711
|
+
/**
|
|
712
|
+
* The maximum number of data you want to see on a page in the records returned as a response.
|
|
713
|
+
* For example, if the limit is **20**, the data will be displayed ** as 20 each. **
|
|
714
|
+
* :::note
|
|
715
|
+
* min 1, max 200 values can be given. If no value is entered, default 50 is accepted.
|
|
716
|
+
* :::
|
|
717
|
+
*/
|
|
718
|
+
limit: Scalars['Int'];
|
|
719
|
+
/**
|
|
720
|
+
* The number of the page you want to see in the records that return as response.
|
|
721
|
+
* For example: We entered the page field as **3**.And let our limit field be **30**.
|
|
722
|
+
* The records that will return as a response are the records **between 60-90.**
|
|
723
|
+
* :::note
|
|
724
|
+
* If no value is entered, default 1 is accepted.
|
|
725
|
+
* :::
|
|
726
|
+
*/
|
|
727
|
+
page: Scalars['Int'];
|
|
728
|
+
};
|
|
729
|
+
export declare enum CartStatusEnum {
|
|
730
|
+
ACTIVE = "ACTIVE",
|
|
731
|
+
FREEZE = "FREEZE",
|
|
732
|
+
PASSIVE = "PASSIVE"
|
|
733
|
+
}
|
|
734
|
+
export declare type CartStorefrontRouting = {
|
|
735
|
+
__typename?: 'CartStorefrontRouting';
|
|
736
|
+
domain?: Maybe<Scalars['String']>;
|
|
737
|
+
dynamicCurrencySettings?: Maybe<CartStorefrontRoutingDynamicCurrencySettings>;
|
|
738
|
+
id: Scalars['String'];
|
|
739
|
+
locale?: Maybe<Scalars['String']>;
|
|
740
|
+
path?: Maybe<Scalars['String']>;
|
|
741
|
+
priceListId?: Maybe<Scalars['String']>;
|
|
742
|
+
};
|
|
743
|
+
export declare type CartStorefrontRoutingDynamicCurrencySettings = {
|
|
744
|
+
__typename?: 'CartStorefrontRoutingDynamicCurrencySettings';
|
|
745
|
+
/** One of '.x0' | '.x9' | '.00' | '.90' | '.99' | '0.00' */
|
|
746
|
+
roundingFormat?: Maybe<Scalars['String']>;
|
|
747
|
+
targetCurrencyCode: Scalars['String'];
|
|
748
|
+
targetCurrencySymbol?: Maybe<Scalars['String']>;
|
|
749
|
+
};
|
|
657
750
|
export declare type CartV2CampaignOffer = {
|
|
658
751
|
__typename?: 'CartV2CampaignOffer';
|
|
659
752
|
appliedOrderLineId?: Maybe<Scalars['String']>;
|
|
@@ -680,7 +773,7 @@ export declare type Category = {
|
|
|
680
773
|
categoryPathItems?: Maybe<Array<CategoryPathItem>>;
|
|
681
774
|
conditions?: Maybe<Array<CategoryCondition>>;
|
|
682
775
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
683
|
-
deleted
|
|
776
|
+
deleted: Scalars['Boolean'];
|
|
684
777
|
/** It is the description of the category of the product. */
|
|
685
778
|
description?: Maybe<Scalars['String']>;
|
|
686
779
|
id: Scalars['ID'];
|
|
@@ -704,18 +797,26 @@ export declare type Category = {
|
|
|
704
797
|
export declare type CategoryCondition = {
|
|
705
798
|
__typename?: 'CategoryCondition';
|
|
706
799
|
conditionType: CategoryConditionTypeEnum;
|
|
800
|
+
method?: Maybe<CategoryConditionMethodEnum>;
|
|
707
801
|
valueList: Array<Scalars['String']>;
|
|
708
802
|
};
|
|
709
803
|
export declare type CategoryConditionInput = {
|
|
710
804
|
conditionType: CategoryConditionTypeEnum;
|
|
805
|
+
method?: InputMaybe<CategoryConditionMethodEnum>;
|
|
711
806
|
valueList: Array<Scalars['String']>;
|
|
712
807
|
};
|
|
808
|
+
export declare enum CategoryConditionMethodEnum {
|
|
809
|
+
IN = "IN",
|
|
810
|
+
NOT_IN = "NOT_IN"
|
|
811
|
+
}
|
|
713
812
|
/** CategoryCondition Types */
|
|
714
813
|
export declare enum CategoryConditionTypeEnum {
|
|
715
814
|
CAMPAIGN = "CAMPAIGN",
|
|
815
|
+
CATEGORY = "CATEGORY",
|
|
716
816
|
CREATED_AT = "CREATED_AT",
|
|
717
817
|
DISCOUNTED_PRODUCTS = "DISCOUNTED_PRODUCTS",
|
|
718
818
|
PRICE_RANGE = "PRICE_RANGE",
|
|
819
|
+
PRODUCT_ATTRIBUTE = "PRODUCT_ATTRIBUTE",
|
|
719
820
|
PRODUCT_BRAND = "PRODUCT_BRAND",
|
|
720
821
|
PRODUCT_TAG = "PRODUCT_TAG",
|
|
721
822
|
VARIANT_VALUE = "VARIANT_VALUE"
|
|
@@ -728,7 +829,7 @@ export declare type CategoryFilterInput = {
|
|
|
728
829
|
export declare type CategoryInput = {
|
|
729
830
|
conditions?: InputMaybe<Array<CategoryConditionInput>>;
|
|
730
831
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
731
|
-
deleted?:
|
|
832
|
+
deleted?: Scalars['Boolean'];
|
|
732
833
|
/** It is the description of the category of the product. */
|
|
733
834
|
description?: InputMaybe<Scalars['String']>;
|
|
734
835
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -755,7 +856,7 @@ export declare type CategoryPathFilterInput = {
|
|
|
755
856
|
export declare type CategoryPathItem = {
|
|
756
857
|
__typename?: 'CategoryPathItem';
|
|
757
858
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
758
|
-
deleted
|
|
859
|
+
deleted: Scalars['Boolean'];
|
|
759
860
|
/** It is the description of the category of the product. */
|
|
760
861
|
description?: Maybe<Scalars['String']>;
|
|
761
862
|
id: Scalars['ID'];
|
|
@@ -798,6 +899,52 @@ export declare type CategoryTranslationInput = {
|
|
|
798
899
|
/** It is the information in which language the translation is saved. */
|
|
799
900
|
name?: InputMaybe<Scalars['String']>;
|
|
800
901
|
};
|
|
902
|
+
export declare type Checkout = {
|
|
903
|
+
__typename?: 'Checkout';
|
|
904
|
+
abandonedCheckoutFlows?: Maybe<Array<AbandonedCartFlow>>;
|
|
905
|
+
adjustments?: Maybe<Array<OrderAdjustment>>;
|
|
906
|
+
availableShippingMethods?: Maybe<Array<AvailableShippingMethod>>;
|
|
907
|
+
billingAddress?: Maybe<OrderAddress>;
|
|
908
|
+
cart?: Maybe<Cart>;
|
|
909
|
+
cartId: Scalars['String'];
|
|
910
|
+
couponCode?: Maybe<Scalars['String']>;
|
|
911
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
912
|
+
customer?: Maybe<CheckoutCustomer>;
|
|
913
|
+
deleted: Scalars['Boolean'];
|
|
914
|
+
giftPackageLines?: Maybe<Array<OrderGiftPackageLine>>;
|
|
915
|
+
giftPackageNote?: Maybe<Scalars['String']>;
|
|
916
|
+
id: Scalars['ID'];
|
|
917
|
+
isGiftPackage?: Maybe<Scalars['Boolean']>;
|
|
918
|
+
merchantId: Scalars['String'];
|
|
919
|
+
note?: Maybe<Scalars['String']>;
|
|
920
|
+
orderId?: Maybe<Scalars['String']>;
|
|
921
|
+
orderNumber?: Maybe<Scalars['String']>;
|
|
922
|
+
orderedAt?: Maybe<Scalars['Timestamp']>;
|
|
923
|
+
recoverEmailStatus?: Maybe<CheckoutRecoveryEmailStatusEnum>;
|
|
924
|
+
recoveryStatus?: Maybe<CheckoutRecoveryStatusEnum>;
|
|
925
|
+
shippingAddress?: Maybe<OrderAddress>;
|
|
926
|
+
shippingLines?: Maybe<Array<OrderShippingLine>>;
|
|
927
|
+
shippingMethod: OrderShippingMethodEnum;
|
|
928
|
+
shippingSettingsId?: Maybe<Scalars['String']>;
|
|
929
|
+
shippingZoneRateId?: Maybe<Scalars['String']>;
|
|
930
|
+
status: CheckoutStatusEnum;
|
|
931
|
+
stockLocationId?: Maybe<Scalars['String']>;
|
|
932
|
+
totalFinalPrice: Scalars['Float'];
|
|
933
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
934
|
+
};
|
|
935
|
+
export declare type CheckoutCustomer = {
|
|
936
|
+
__typename?: 'CheckoutCustomer';
|
|
937
|
+
accountStatus?: Maybe<CustomerAccountStatusEnum>;
|
|
938
|
+
customerGroupIds?: Maybe<Array<Scalars['String']>>;
|
|
939
|
+
email?: Maybe<Scalars['String']>;
|
|
940
|
+
firstName?: Maybe<Scalars['String']>;
|
|
941
|
+
id?: Maybe<Scalars['String']>;
|
|
942
|
+
identityNumber?: Maybe<Scalars['String']>;
|
|
943
|
+
lastName?: Maybe<Scalars['String']>;
|
|
944
|
+
notificationsAccepted?: Maybe<Scalars['Boolean']>;
|
|
945
|
+
phone?: Maybe<Scalars['String']>;
|
|
946
|
+
subscriptionStatus?: Maybe<CustomerEmailSubscriptionStatusesEnum>;
|
|
947
|
+
};
|
|
801
948
|
export declare enum CheckoutRecoveryEmailStatusEnum {
|
|
802
949
|
NOT_SENT = "NOT_SENT",
|
|
803
950
|
SENT = "SENT"
|
|
@@ -806,6 +953,12 @@ export declare enum CheckoutRecoveryStatusEnum {
|
|
|
806
953
|
NOT_RECOVERED = "NOT_RECOVERED",
|
|
807
954
|
RECOVERED = "RECOVERED"
|
|
808
955
|
}
|
|
956
|
+
export declare enum CheckoutStatusEnum {
|
|
957
|
+
COMPLETED = "COMPLETED",
|
|
958
|
+
FREEZE = "FREEZE",
|
|
959
|
+
KILLED = "KILLED",
|
|
960
|
+
OPEN = "OPEN"
|
|
961
|
+
}
|
|
809
962
|
export declare type City = {
|
|
810
963
|
__typename?: 'City';
|
|
811
964
|
/** The two-letter city code corresponding to the city. */
|
|
@@ -813,7 +966,7 @@ export declare type City = {
|
|
|
813
966
|
/** ID indicating which country the city belongs to. */
|
|
814
967
|
countryId: Scalars['String'];
|
|
815
968
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
816
|
-
deleted
|
|
969
|
+
deleted: Scalars['Boolean'];
|
|
817
970
|
id: Scalars['ID'];
|
|
818
971
|
/** Indicates the latitude of the city. */
|
|
819
972
|
latitude?: Maybe<Scalars['String']>;
|
|
@@ -836,7 +989,7 @@ export declare type Country = {
|
|
|
836
989
|
currency?: Maybe<Scalars['String']>;
|
|
837
990
|
currencyCode?: Maybe<Scalars['String']>;
|
|
838
991
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
839
|
-
deleted
|
|
992
|
+
deleted: Scalars['Boolean'];
|
|
840
993
|
/** Indicates the flag emoji of the county. */
|
|
841
994
|
emoji?: Maybe<Scalars['String']>;
|
|
842
995
|
/** Indicates the flag emoji code of the county. */
|
|
@@ -866,7 +1019,7 @@ export declare type Coupon = {
|
|
|
866
1019
|
canCombineWithOtherCampaigns: Scalars['Boolean'];
|
|
867
1020
|
code: Scalars['String'];
|
|
868
1021
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
869
|
-
deleted
|
|
1022
|
+
deleted: Scalars['Boolean'];
|
|
870
1023
|
id: Scalars['ID'];
|
|
871
1024
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
872
1025
|
usageCount: Scalars['Int'];
|
|
@@ -916,7 +1069,7 @@ export declare type CreateOrderInput = {
|
|
|
916
1069
|
currencyCode?: InputMaybe<Scalars['String']>;
|
|
917
1070
|
/** It is the customer information in the order. */
|
|
918
1071
|
customer?: InputMaybe<OrderCustomerInput>;
|
|
919
|
-
deleted?:
|
|
1072
|
+
deleted?: Scalars['Boolean'];
|
|
920
1073
|
/** Host name of order source. */
|
|
921
1074
|
host?: InputMaybe<Scalars['String']>;
|
|
922
1075
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -977,7 +1130,7 @@ export declare type Customer = {
|
|
|
977
1130
|
customerGroupIds?: Maybe<Array<Scalars['String']>>;
|
|
978
1131
|
/** It is the sequence value of the customer. The sequence value starts from 1. */
|
|
979
1132
|
customerSequence?: Maybe<Scalars['Float']>;
|
|
980
|
-
deleted
|
|
1133
|
+
deleted: Scalars['Boolean'];
|
|
981
1134
|
/** The unique email address of the customer. Attempting to assign the same email address to multiple customers returns an error. */
|
|
982
1135
|
email?: Maybe<Scalars['String']>;
|
|
983
1136
|
/** The date the **email** was verified. */
|
|
@@ -987,6 +1140,7 @@ export declare type Customer = {
|
|
|
987
1140
|
/** Customer's full name. Firstname plus lastname if firstname and lastname exist. Otherwise, it is saved as firstname only. */
|
|
988
1141
|
fullName?: Maybe<Scalars['String']>;
|
|
989
1142
|
id: Scalars['ID'];
|
|
1143
|
+
ip?: Maybe<Scalars['String']>;
|
|
990
1144
|
/** Email verification status. **isEmailVerified** returns `true` if the email is verified. */
|
|
991
1145
|
isEmailVerified?: Maybe<Scalars['Boolean']>;
|
|
992
1146
|
/** Phone verification status. **isPhoneVerified** returns `true` if the email is verified. */
|
|
@@ -1012,6 +1166,7 @@ export declare type Customer = {
|
|
|
1012
1166
|
/** Tags that the store owner attaches to the customer. */
|
|
1013
1167
|
tagIds?: Maybe<Array<Scalars['String']>>;
|
|
1014
1168
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1169
|
+
userAgent?: Maybe<Scalars['String']>;
|
|
1015
1170
|
};
|
|
1016
1171
|
/** Customer Account Statuses */
|
|
1017
1172
|
export declare enum CustomerAccountStatusEnum {
|
|
@@ -1034,7 +1189,7 @@ export declare type CustomerAddress = {
|
|
|
1034
1189
|
/** The customer's country. */
|
|
1035
1190
|
country: CustomerAddressCountry;
|
|
1036
1191
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1037
|
-
deleted
|
|
1192
|
+
deleted: Scalars['Boolean'];
|
|
1038
1193
|
/** The customer's district in city. */
|
|
1039
1194
|
district?: Maybe<CustomerAddressDistrict>;
|
|
1040
1195
|
/** The customer's first name. */
|
|
@@ -1050,6 +1205,7 @@ export declare type CustomerAddress = {
|
|
|
1050
1205
|
phone?: Maybe<Scalars['String']>;
|
|
1051
1206
|
/** The customer's postal code, also known as zip, postcode, etc. */
|
|
1052
1207
|
postalCode?: Maybe<Scalars['String']>;
|
|
1208
|
+
region?: Maybe<CustomerAddressRegion>;
|
|
1053
1209
|
state?: Maybe<CustomerAddressState>;
|
|
1054
1210
|
/** Tax number that the customer will use for orders */
|
|
1055
1211
|
taxNumber?: Maybe<Scalars['String']>;
|
|
@@ -1086,6 +1242,14 @@ export declare type CustomerAddressDistrict = {
|
|
|
1086
1242
|
/** The customer's normalized district name. */
|
|
1087
1243
|
name?: Maybe<Scalars['String']>;
|
|
1088
1244
|
};
|
|
1245
|
+
export declare type CustomerAddressRegion = {
|
|
1246
|
+
__typename?: 'CustomerAddressRegion';
|
|
1247
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1248
|
+
deleted: Scalars['Boolean'];
|
|
1249
|
+
id: Scalars['String'];
|
|
1250
|
+
name: Scalars['String'];
|
|
1251
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1252
|
+
};
|
|
1089
1253
|
export declare type CustomerAddressState = {
|
|
1090
1254
|
__typename?: 'CustomerAddressState';
|
|
1091
1255
|
code?: Maybe<Scalars['String']>;
|
|
@@ -1095,7 +1259,7 @@ export declare type CustomerAddressState = {
|
|
|
1095
1259
|
export declare type CustomerAttribute = {
|
|
1096
1260
|
__typename?: 'CustomerAttribute';
|
|
1097
1261
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1098
|
-
deleted
|
|
1262
|
+
deleted: Scalars['Boolean'];
|
|
1099
1263
|
description?: Maybe<Scalars['String']>;
|
|
1100
1264
|
id: Scalars['ID'];
|
|
1101
1265
|
name: Scalars['String'];
|
|
@@ -1109,7 +1273,7 @@ export declare type CustomerAttribute = {
|
|
|
1109
1273
|
export declare type CustomerAttributeOption = {
|
|
1110
1274
|
__typename?: 'CustomerAttributeOption';
|
|
1111
1275
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1112
|
-
deleted
|
|
1276
|
+
deleted: Scalars['Boolean'];
|
|
1113
1277
|
id: Scalars['ID'];
|
|
1114
1278
|
name: Scalars['String'];
|
|
1115
1279
|
order?: Maybe<Scalars['Float']>;
|
|
@@ -1198,6 +1362,7 @@ export declare type CustomerPaginationResponse = {
|
|
|
1198
1362
|
};
|
|
1199
1363
|
/** Customer Registration Source Enum */
|
|
1200
1364
|
export declare enum CustomerRegistrationSourceEnum {
|
|
1365
|
+
apple = "apple",
|
|
1201
1366
|
credentials = "credentials",
|
|
1202
1367
|
facebook = "facebook",
|
|
1203
1368
|
google = "google"
|
|
@@ -1227,7 +1392,7 @@ export declare type District = {
|
|
|
1227
1392
|
/** ID indicating which country the district belongs to. */
|
|
1228
1393
|
countryId: Scalars['String'];
|
|
1229
1394
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1230
|
-
deleted
|
|
1395
|
+
deleted: Scalars['Boolean'];
|
|
1231
1396
|
id: Scalars['ID'];
|
|
1232
1397
|
/** Indicates the latitude of the city. */
|
|
1233
1398
|
latitude?: Maybe<Scalars['String']>;
|
|
@@ -1302,7 +1467,7 @@ export declare type GetYInput = {
|
|
|
1302
1467
|
export declare type GlobalTaxSettings = {
|
|
1303
1468
|
__typename?: 'GlobalTaxSettings';
|
|
1304
1469
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1305
|
-
deleted
|
|
1470
|
+
deleted: Scalars['Boolean'];
|
|
1306
1471
|
id: Scalars['ID'];
|
|
1307
1472
|
isTaxExcludedOnPrices: Scalars['Boolean'];
|
|
1308
1473
|
isTaxExcludedOnShippingPrices: Scalars['Boolean'];
|
|
@@ -1313,7 +1478,7 @@ export declare type HTMLMetaData = {
|
|
|
1313
1478
|
/** Canonical URL list of entity. */
|
|
1314
1479
|
canonicals?: Maybe<Array<Scalars['String']>>;
|
|
1315
1480
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1316
|
-
deleted
|
|
1481
|
+
deleted: Scalars['Boolean'];
|
|
1317
1482
|
/** The description of the metadata. */
|
|
1318
1483
|
description?: Maybe<Scalars['String']>;
|
|
1319
1484
|
/** Defines if the entity is not indexable by search engines */
|
|
@@ -1334,7 +1499,7 @@ export declare type HTMLMetaData = {
|
|
|
1334
1499
|
export declare type HTMLMetaDataInput = {
|
|
1335
1500
|
canonicals?: InputMaybe<Array<Scalars['String']>>;
|
|
1336
1501
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1337
|
-
deleted?:
|
|
1502
|
+
deleted?: Scalars['Boolean'];
|
|
1338
1503
|
description?: InputMaybe<Scalars['String']>;
|
|
1339
1504
|
disableIndex?: InputMaybe<Scalars['Boolean']>;
|
|
1340
1505
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -1417,12 +1582,27 @@ export declare enum InvoiceTypeEnum {
|
|
|
1417
1582
|
export declare type Language = {
|
|
1418
1583
|
__typename?: 'Language';
|
|
1419
1584
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1420
|
-
deleted
|
|
1585
|
+
deleted: Scalars['Boolean'];
|
|
1421
1586
|
id: Scalars['ID'];
|
|
1422
1587
|
locale: Scalars['String'];
|
|
1423
1588
|
name: Scalars['String'];
|
|
1424
1589
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1425
1590
|
};
|
|
1591
|
+
export declare type ListAbandonedCartInput = {
|
|
1592
|
+
recoverEmailStatus?: InputMaybe<CheckoutRecoveryEmailStatusEnum>;
|
|
1593
|
+
recoveryStatus?: InputMaybe<CheckoutRecoveryStatusEnum>;
|
|
1594
|
+
};
|
|
1595
|
+
export declare type LocalDeliverySettingsDayEstimatedDeliveryTime = {
|
|
1596
|
+
__typename?: 'LocalDeliverySettingsDayEstimatedDeliveryTime';
|
|
1597
|
+
type: LocalDeliverySettingsDeliveryTimeType;
|
|
1598
|
+
value: Scalars['Float'];
|
|
1599
|
+
};
|
|
1600
|
+
/** LocalDeliverySettingsDeliveryTimeType */
|
|
1601
|
+
export declare enum LocalDeliverySettingsDeliveryTimeType {
|
|
1602
|
+
DAY = "DAY",
|
|
1603
|
+
HOUR = "HOUR",
|
|
1604
|
+
MINUTE = "MINUTE"
|
|
1605
|
+
}
|
|
1426
1606
|
export declare type LocationTranslations = {
|
|
1427
1607
|
__typename?: 'LocationTranslations';
|
|
1428
1608
|
de?: Maybe<Scalars['String']>;
|
|
@@ -1519,7 +1699,7 @@ export declare type MerchantAppPayment = {
|
|
|
1519
1699
|
/** The id of the app that generated the app payment. Actually, the id of the app for which merchant app payment was created. */
|
|
1520
1700
|
authorizedAppId?: Maybe<Scalars['String']>;
|
|
1521
1701
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1522
|
-
deleted
|
|
1702
|
+
deleted: Scalars['Boolean'];
|
|
1523
1703
|
id: Scalars['ID'];
|
|
1524
1704
|
/** 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
1705
|
merchantPaymentUrl: Scalars['String'];
|
|
@@ -1599,7 +1779,7 @@ export declare type MerchantAppSubscription = {
|
|
|
1599
1779
|
currency?: Maybe<SubscriptionPriceCurrencyEnum>;
|
|
1600
1780
|
currencyCode?: Maybe<Scalars['String']>;
|
|
1601
1781
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
1602
|
-
deleted
|
|
1782
|
+
deleted: Scalars['Boolean'];
|
|
1603
1783
|
id: Scalars['ID'];
|
|
1604
1784
|
/** It is the date of receipt of the last payment for the license subscription. */
|
|
1605
1785
|
lastPaymentDate?: Maybe<Scalars['Timestamp']>;
|
|
@@ -1628,7 +1808,7 @@ export declare type MerchantLicence = {
|
|
|
1628
1808
|
/** If the license is attached to an app, its properties are kept in this domain. */
|
|
1629
1809
|
appSubscriptions?: Maybe<Array<MerchantAppSubscription>>;
|
|
1630
1810
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1631
|
-
deleted
|
|
1811
|
+
deleted: Scalars['Boolean'];
|
|
1632
1812
|
developmentStore?: Maybe<Scalars['Boolean']>;
|
|
1633
1813
|
/** It is the information of the start date of the license. */
|
|
1634
1814
|
fromDate?: Maybe<Scalars['Timestamp']>;
|
|
@@ -1944,6 +2124,7 @@ export declare type NumberFilterInput = {
|
|
|
1944
2124
|
export declare type Order = {
|
|
1945
2125
|
__typename?: 'Order';
|
|
1946
2126
|
abandonedCartFlows?: Maybe<Array<AbandonedCartFlow>>;
|
|
2127
|
+
attributes?: Maybe<Array<OrderAttributeValue>>;
|
|
1947
2128
|
availableShippingMethods?: Maybe<Array<AvailableShippingMethod>>;
|
|
1948
2129
|
/** It is the billing address of the order. */
|
|
1949
2130
|
billingAddress?: Maybe<OrderAddress>;
|
|
@@ -1977,7 +2158,7 @@ export declare type Order = {
|
|
|
1977
2158
|
customerId?: Maybe<Scalars['String']>;
|
|
1978
2159
|
/** It shows the number of orders given by the relevant customer. */
|
|
1979
2160
|
customerOrderCount?: Maybe<Scalars['Float']>;
|
|
1980
|
-
deleted
|
|
2161
|
+
deleted: Scalars['Boolean'];
|
|
1981
2162
|
dueDate?: Maybe<Scalars['Timestamp']>;
|
|
1982
2163
|
/** A list of gift package line objects, each containing information about a gift package pricing in the order. */
|
|
1983
2164
|
giftPackageLines?: Maybe<Array<OrderGiftPackageLine>>;
|
|
@@ -2090,7 +2271,7 @@ export declare type OrderAddress = {
|
|
|
2090
2271
|
/** The postal code of the address. */
|
|
2091
2272
|
postalCode?: Maybe<Scalars['String']>;
|
|
2092
2273
|
/** The region information of the address. */
|
|
2093
|
-
region?: Maybe<
|
|
2274
|
+
region?: Maybe<OrderAddressRegion>;
|
|
2094
2275
|
/** The state information of the address. */
|
|
2095
2276
|
state?: Maybe<OrderAddressState>;
|
|
2096
2277
|
/** The tax number of the person associated with the address. */
|
|
@@ -2174,7 +2355,7 @@ export declare type OrderAddressInput = {
|
|
|
2174
2355
|
/** The postal code of the address. */
|
|
2175
2356
|
postalCode?: InputMaybe<Scalars['String']>;
|
|
2176
2357
|
/** The name of the region of the address. */
|
|
2177
|
-
region?: InputMaybe<
|
|
2358
|
+
region?: InputMaybe<OrderAddressRegionInput>;
|
|
2178
2359
|
/** The name of the state of the address. */
|
|
2179
2360
|
state?: InputMaybe<OrderAddressStateInput>;
|
|
2180
2361
|
/** The tax number of the person associated with the address. */
|
|
@@ -2182,6 +2363,20 @@ export declare type OrderAddressInput = {
|
|
|
2182
2363
|
/** The tax office of the person associated with the address. */
|
|
2183
2364
|
taxOffice?: InputMaybe<Scalars['String']>;
|
|
2184
2365
|
};
|
|
2366
|
+
export declare type OrderAddressRegion = {
|
|
2367
|
+
__typename?: 'OrderAddressRegion';
|
|
2368
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2369
|
+
deleted?: Maybe<Scalars['Boolean']>;
|
|
2370
|
+
/** It is the id of the region of the address. */
|
|
2371
|
+
id: Scalars['String'];
|
|
2372
|
+
/** It is the name of the region of the address. */
|
|
2373
|
+
name: Scalars['String'];
|
|
2374
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
2375
|
+
};
|
|
2376
|
+
export declare type OrderAddressRegionInput = {
|
|
2377
|
+
id: Scalars['String'];
|
|
2378
|
+
name: Scalars['String'];
|
|
2379
|
+
};
|
|
2185
2380
|
export declare type OrderAddressState = {
|
|
2186
2381
|
__typename?: 'OrderAddressState';
|
|
2187
2382
|
/** It is the code of the state of the address. */
|
|
@@ -2250,6 +2445,15 @@ export declare enum OrderAmountTypeEnum {
|
|
|
2250
2445
|
AMOUNT = "AMOUNT",
|
|
2251
2446
|
RATIO = "RATIO"
|
|
2252
2447
|
}
|
|
2448
|
+
export declare type OrderAttributeValue = {
|
|
2449
|
+
__typename?: 'OrderAttributeValue';
|
|
2450
|
+
/** It is the attribute id */
|
|
2451
|
+
orderAttributeId?: Maybe<Scalars['String']>;
|
|
2452
|
+
/** It is the attribute option id */
|
|
2453
|
+
orderAttributeOptionId?: Maybe<Scalars['String']>;
|
|
2454
|
+
/** It is the attribute value */
|
|
2455
|
+
value?: Maybe<Scalars['String']>;
|
|
2456
|
+
};
|
|
2253
2457
|
export declare type OrderBranch = {
|
|
2254
2458
|
__typename?: 'OrderBranch';
|
|
2255
2459
|
/** It is the id of the branch where the order was created. */
|
|
@@ -2296,6 +2500,8 @@ export declare type OrderCustomer = {
|
|
|
2296
2500
|
notificationsAccepted?: Maybe<Scalars['Boolean']>;
|
|
2297
2501
|
/** It is the phone number of the customer who created the order. */
|
|
2298
2502
|
phone?: Maybe<Scalars['String']>;
|
|
2503
|
+
/** It is the preferred language of the customer who created the order. */
|
|
2504
|
+
preferredLanguage?: Maybe<Scalars['String']>;
|
|
2299
2505
|
};
|
|
2300
2506
|
export declare type OrderCustomerInput = {
|
|
2301
2507
|
/** It is the email of the customer who created the order. */
|
|
@@ -2332,6 +2538,8 @@ export declare type OrderLineBundleVariant = {
|
|
|
2332
2538
|
brand?: Maybe<OrderLineVariantBrand>;
|
|
2333
2539
|
/** A list of category objects, each containing information about a category in the variant. */
|
|
2334
2540
|
categories?: Maybe<Array<OrderLineVariantCategory>>;
|
|
2541
|
+
/** It is the id of the product file. */
|
|
2542
|
+
fileId?: Maybe<Scalars['String']>;
|
|
2335
2543
|
/** It is the hasCode of the variant. */
|
|
2336
2544
|
hsCode?: Maybe<Scalars['String']>;
|
|
2337
2545
|
/** It is the id of the variant. */
|
|
@@ -2388,7 +2596,7 @@ export declare type OrderLineItem = {
|
|
|
2388
2596
|
/** It is the currency code of the order line item. */
|
|
2389
2597
|
currencyCode?: Maybe<Scalars['String']>;
|
|
2390
2598
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
2391
|
-
deleted
|
|
2599
|
+
deleted: Scalars['Boolean'];
|
|
2392
2600
|
/** Information about the discount. Shows the details of the discount applied to the order line item. */
|
|
2393
2601
|
discount?: Maybe<OrderLineDiscount>;
|
|
2394
2602
|
/** It is the discount price of the order line item. */
|
|
@@ -2422,7 +2630,7 @@ export declare type OrderLineItem = {
|
|
|
2422
2630
|
};
|
|
2423
2631
|
export declare type OrderLineItemInput = {
|
|
2424
2632
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2425
|
-
deleted?:
|
|
2633
|
+
deleted?: Scalars['Boolean'];
|
|
2426
2634
|
/** It is the discount information that will be applied to the line item. */
|
|
2427
2635
|
discount?: InputMaybe<OrderLineDiscountInput>;
|
|
2428
2636
|
/** It is the discount price of the line item. */
|
|
@@ -2497,6 +2705,8 @@ export declare type OrderLineVariant = {
|
|
|
2497
2705
|
bundleProducts?: Maybe<Array<OrderLineVariantBundleProductModel>>;
|
|
2498
2706
|
/** A list of category objects, each containing information about a category in the variant. */
|
|
2499
2707
|
categories?: Maybe<Array<OrderLineVariantCategory>>;
|
|
2708
|
+
/** It is the id of the product file. */
|
|
2709
|
+
fileId?: Maybe<Scalars['String']>;
|
|
2500
2710
|
/** It is the hasCode of the variant. */
|
|
2501
2711
|
hsCode?: Maybe<Scalars['String']>;
|
|
2502
2712
|
/** It is the id of the variant. */
|
|
@@ -2635,7 +2845,7 @@ export declare type OrderLineVariantVariantValues = {
|
|
|
2635
2845
|
export declare type OrderPackage = {
|
|
2636
2846
|
__typename?: 'OrderPackage';
|
|
2637
2847
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2638
|
-
deleted
|
|
2848
|
+
deleted: Scalars['Boolean'];
|
|
2639
2849
|
/** If the package was sent via the cargo application and received an error, this field is filled with an error message. */
|
|
2640
2850
|
errorMessage?: Maybe<Scalars['String']>;
|
|
2641
2851
|
id: Scalars['ID'];
|
|
@@ -2783,7 +2993,7 @@ export declare type OrderRefundInput = {
|
|
|
2783
2993
|
export declare type OrderRefundLineInput = {
|
|
2784
2994
|
orderLineItemId: Scalars['String'];
|
|
2785
2995
|
quantity: Scalars['Float'];
|
|
2786
|
-
restockItems?:
|
|
2996
|
+
restockItems?: Scalars['Boolean'];
|
|
2787
2997
|
};
|
|
2788
2998
|
export declare type OrderSalesChannel = {
|
|
2789
2999
|
__typename?: 'OrderSalesChannel';
|
|
@@ -2950,7 +3160,7 @@ export declare type OrderStorefrontTheme = {
|
|
|
2950
3160
|
export declare type OrderTag = {
|
|
2951
3161
|
__typename?: 'OrderTag';
|
|
2952
3162
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2953
|
-
deleted
|
|
3163
|
+
deleted: Scalars['Boolean'];
|
|
2954
3164
|
id: Scalars['ID'];
|
|
2955
3165
|
merchantId: Scalars['String'];
|
|
2956
3166
|
name: Scalars['String'];
|
|
@@ -2958,7 +3168,7 @@ export declare type OrderTag = {
|
|
|
2958
3168
|
};
|
|
2959
3169
|
export declare type OrderTagInput = {
|
|
2960
3170
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2961
|
-
deleted?:
|
|
3171
|
+
deleted?: Scalars['Boolean'];
|
|
2962
3172
|
id?: InputMaybe<Scalars['ID']>;
|
|
2963
3173
|
name: Scalars['String'];
|
|
2964
3174
|
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
@@ -3016,7 +3226,7 @@ export declare type PriceList = {
|
|
|
3016
3226
|
currency: Scalars['String'];
|
|
3017
3227
|
currencyCode?: Maybe<Scalars['String']>;
|
|
3018
3228
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
3019
|
-
deleted
|
|
3229
|
+
deleted: Scalars['Boolean'];
|
|
3020
3230
|
id: Scalars['ID'];
|
|
3021
3231
|
/** It is the name of the price list of the product. */
|
|
3022
3232
|
name: Scalars['String'];
|
|
@@ -3037,7 +3247,7 @@ export declare type Product = {
|
|
|
3037
3247
|
/** List category identifiers of the product. */
|
|
3038
3248
|
categoryIds?: Maybe<Array<Scalars['String']>>;
|
|
3039
3249
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3040
|
-
deleted
|
|
3250
|
+
deleted: Scalars['Boolean'];
|
|
3041
3251
|
/** Description of the product. */
|
|
3042
3252
|
description?: Maybe<Scalars['String']>;
|
|
3043
3253
|
googleTaxonomyId?: Maybe<Scalars['String']>;
|
|
@@ -3080,7 +3290,7 @@ export declare type Product = {
|
|
|
3080
3290
|
export declare type ProductAttribute = {
|
|
3081
3291
|
__typename?: 'ProductAttribute';
|
|
3082
3292
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3083
|
-
deleted
|
|
3293
|
+
deleted: Scalars['Boolean'];
|
|
3084
3294
|
/** Description of the attribute */
|
|
3085
3295
|
description?: Maybe<Scalars['String']>;
|
|
3086
3296
|
id: Scalars['ID'];
|
|
@@ -3098,7 +3308,7 @@ export declare type ProductAttribute = {
|
|
|
3098
3308
|
};
|
|
3099
3309
|
export declare type ProductAttributeInput = {
|
|
3100
3310
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3101
|
-
deleted?:
|
|
3311
|
+
deleted?: Scalars['Boolean'];
|
|
3102
3312
|
description?: InputMaybe<Scalars['String']>;
|
|
3103
3313
|
id?: InputMaybe<Scalars['ID']>;
|
|
3104
3314
|
name: Scalars['String'];
|
|
@@ -3111,7 +3321,7 @@ export declare type ProductAttributeInput = {
|
|
|
3111
3321
|
export declare type ProductAttributeOption = {
|
|
3112
3322
|
__typename?: 'ProductAttributeOption';
|
|
3113
3323
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3114
|
-
deleted
|
|
3324
|
+
deleted: Scalars['Boolean'];
|
|
3115
3325
|
id: Scalars['ID'];
|
|
3116
3326
|
/** Name of the product attribute option */
|
|
3117
3327
|
name: Scalars['String'];
|
|
@@ -3119,7 +3329,7 @@ export declare type ProductAttributeOption = {
|
|
|
3119
3329
|
};
|
|
3120
3330
|
export declare type ProductAttributeOptionInput = {
|
|
3121
3331
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3122
|
-
deleted?:
|
|
3332
|
+
deleted?: Scalars['Boolean'];
|
|
3123
3333
|
id?: InputMaybe<Scalars['ID']>;
|
|
3124
3334
|
name: Scalars['String'];
|
|
3125
3335
|
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
@@ -3219,7 +3429,7 @@ export declare type ProductBaseUnitModelInput = {
|
|
|
3219
3429
|
export declare type ProductBrand = {
|
|
3220
3430
|
__typename?: 'ProductBrand';
|
|
3221
3431
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3222
|
-
deleted
|
|
3432
|
+
deleted: Scalars['Boolean'];
|
|
3223
3433
|
/** The description of the product's brand. */
|
|
3224
3434
|
description?: Maybe<Scalars['String']>;
|
|
3225
3435
|
id: Scalars['ID'];
|
|
@@ -3238,7 +3448,7 @@ export declare type ProductBrand = {
|
|
|
3238
3448
|
};
|
|
3239
3449
|
export declare type ProductBrandInput = {
|
|
3240
3450
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3241
|
-
deleted?:
|
|
3451
|
+
deleted?: Scalars['Boolean'];
|
|
3242
3452
|
/** The description of the product's brand. */
|
|
3243
3453
|
description?: InputMaybe<Scalars['String']>;
|
|
3244
3454
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -3274,6 +3484,7 @@ export declare type ProductBrandTranslationInput = {
|
|
|
3274
3484
|
};
|
|
3275
3485
|
export declare type ProductImage = {
|
|
3276
3486
|
__typename?: 'ProductImage';
|
|
3487
|
+
fileName?: Maybe<Scalars['String']>;
|
|
3277
3488
|
/** Id of the product image. */
|
|
3278
3489
|
imageId?: Maybe<Scalars['String']>;
|
|
3279
3490
|
/** Whether the image is main image for the product or not. */
|
|
@@ -3284,6 +3495,7 @@ export declare type ProductImage = {
|
|
|
3284
3495
|
order: Scalars['Float'];
|
|
3285
3496
|
};
|
|
3286
3497
|
export declare type ProductImageInput = {
|
|
3498
|
+
fileName?: InputMaybe<Scalars['String']>;
|
|
3287
3499
|
imageId: Scalars['String'];
|
|
3288
3500
|
isMain: Scalars['Boolean'];
|
|
3289
3501
|
isVideo?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -3300,7 +3512,7 @@ export declare type ProductInput = {
|
|
|
3300
3512
|
brandId?: InputMaybe<Scalars['String']>;
|
|
3301
3513
|
categoryIds?: InputMaybe<Array<Scalars['String']>>;
|
|
3302
3514
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3303
|
-
deleted?:
|
|
3515
|
+
deleted?: Scalars['Boolean'];
|
|
3304
3516
|
description?: InputMaybe<Scalars['String']>;
|
|
3305
3517
|
googleTaxonomyId?: InputMaybe<Scalars['String']>;
|
|
3306
3518
|
groupVariantsByVariantTypeId?: InputMaybe<Scalars['String']>;
|
|
@@ -3326,7 +3538,7 @@ export declare type ProductOption = {
|
|
|
3326
3538
|
__typename?: 'ProductOption';
|
|
3327
3539
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3328
3540
|
dateSettings?: Maybe<ProductOptionDateSettings>;
|
|
3329
|
-
deleted
|
|
3541
|
+
deleted: Scalars['Boolean'];
|
|
3330
3542
|
fileSettings?: Maybe<ProductOptionFileSettings>;
|
|
3331
3543
|
id: Scalars['ID'];
|
|
3332
3544
|
isOptional?: Maybe<Scalars['Boolean']>;
|
|
@@ -3371,7 +3583,7 @@ export declare type ProductOptionSelectValue = {
|
|
|
3371
3583
|
__typename?: 'ProductOptionSelectValue';
|
|
3372
3584
|
colorCode?: Maybe<Scalars['String']>;
|
|
3373
3585
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3374
|
-
deleted
|
|
3586
|
+
deleted: Scalars['Boolean'];
|
|
3375
3587
|
id: Scalars['ID'];
|
|
3376
3588
|
order: Scalars['Float'];
|
|
3377
3589
|
otherPrices?: Maybe<Array<ProductOptionSelectValueOtherPrice>>;
|
|
@@ -3394,7 +3606,7 @@ export declare type ProductOptionSelectValueTranslations = {
|
|
|
3394
3606
|
export declare type ProductOptionSet = {
|
|
3395
3607
|
__typename?: 'ProductOptionSet';
|
|
3396
3608
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3397
|
-
deleted
|
|
3609
|
+
deleted: Scalars['Boolean'];
|
|
3398
3610
|
id: Scalars['ID'];
|
|
3399
3611
|
name: Scalars['String'];
|
|
3400
3612
|
options: Array<ProductOption>;
|
|
@@ -3504,7 +3716,7 @@ export declare type ProductSearchResponse = {
|
|
|
3504
3716
|
export declare type ProductStockLocation = {
|
|
3505
3717
|
__typename?: 'ProductStockLocation';
|
|
3506
3718
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3507
|
-
deleted
|
|
3719
|
+
deleted: Scalars['Boolean'];
|
|
3508
3720
|
id: Scalars['ID'];
|
|
3509
3721
|
productId: Scalars['String'];
|
|
3510
3722
|
stockCount: Scalars['Float'];
|
|
@@ -3514,7 +3726,7 @@ export declare type ProductStockLocation = {
|
|
|
3514
3726
|
};
|
|
3515
3727
|
export declare type ProductStockLocationInput = {
|
|
3516
3728
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3517
|
-
deleted?:
|
|
3729
|
+
deleted?: Scalars['Boolean'];
|
|
3518
3730
|
id?: InputMaybe<Scalars['ID']>;
|
|
3519
3731
|
/** It is the product id to which the variant associated. */
|
|
3520
3732
|
productId: Scalars['String'];
|
|
@@ -3558,7 +3770,7 @@ export declare type ProductStockLocationPaginationResponse = {
|
|
|
3558
3770
|
export declare type ProductTag = {
|
|
3559
3771
|
__typename?: 'ProductTag';
|
|
3560
3772
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3561
|
-
deleted
|
|
3773
|
+
deleted: Scalars['Boolean'];
|
|
3562
3774
|
id: Scalars['ID'];
|
|
3563
3775
|
/** The name of the product's tag. */
|
|
3564
3776
|
name: Scalars['String'];
|
|
@@ -3568,7 +3780,7 @@ export declare type ProductTag = {
|
|
|
3568
3780
|
};
|
|
3569
3781
|
export declare type ProductTagInput = {
|
|
3570
3782
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3571
|
-
deleted?:
|
|
3783
|
+
deleted?: Scalars['Boolean'];
|
|
3572
3784
|
id?: InputMaybe<Scalars['ID']>;
|
|
3573
3785
|
/** The name of the product's tag. */
|
|
3574
3786
|
name: Scalars['String'];
|
|
@@ -3617,7 +3829,7 @@ export declare enum ProductTypeEnum {
|
|
|
3617
3829
|
export declare type ProductUnit = {
|
|
3618
3830
|
__typename?: 'ProductUnit';
|
|
3619
3831
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3620
|
-
deleted
|
|
3832
|
+
deleted: Scalars['Boolean'];
|
|
3621
3833
|
id: Scalars['ID'];
|
|
3622
3834
|
/** The name of the product's unit. */
|
|
3623
3835
|
name: Scalars['String'];
|
|
@@ -3627,7 +3839,7 @@ export declare type ProductUnit = {
|
|
|
3627
3839
|
};
|
|
3628
3840
|
export declare type ProductUnitInput = {
|
|
3629
3841
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3630
|
-
deleted?:
|
|
3842
|
+
deleted?: Scalars['Boolean'];
|
|
3631
3843
|
id?: InputMaybe<Scalars['ID']>;
|
|
3632
3844
|
/** The name of the product's unit. */
|
|
3633
3845
|
name: Scalars['String'];
|
|
@@ -3689,7 +3901,7 @@ export declare type PublicTransaction = {
|
|
|
3689
3901
|
currencyCode: Scalars['String'];
|
|
3690
3902
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
3691
3903
|
customerId?: Maybe<Scalars['String']>;
|
|
3692
|
-
deleted
|
|
3904
|
+
deleted: Scalars['Boolean'];
|
|
3693
3905
|
error?: Maybe<TransactionError>;
|
|
3694
3906
|
id: Scalars['ID'];
|
|
3695
3907
|
orderId?: Maybe<Scalars['String']>;
|
|
@@ -3720,6 +3932,8 @@ export declare type Query = {
|
|
|
3720
3932
|
/** Using this api, you can view your sales channel. */
|
|
3721
3933
|
getSalesChannel?: Maybe<SalesChannel>;
|
|
3722
3934
|
getVideoUploadUrl: GetVideoUploadURLResponse;
|
|
3935
|
+
/** Use this query to get abandoned checkouts. */
|
|
3936
|
+
listAbandonedCheckouts: CartPaginationResponse;
|
|
3723
3937
|
listBranch: Array<Branch>;
|
|
3724
3938
|
listCampaign: CampaignPaginationResponse;
|
|
3725
3939
|
/**
|
|
@@ -3788,6 +4002,14 @@ export declare type QuerygetImportJobDataArgs = {
|
|
|
3788
4002
|
export declare type QuerygetVideoUploadUrlArgs = {
|
|
3789
4003
|
videoId: Scalars['String'];
|
|
3790
4004
|
};
|
|
4005
|
+
export declare type QuerylistAbandonedCheckoutsArgs = {
|
|
4006
|
+
id?: InputMaybe<StringFilterInput>;
|
|
4007
|
+
input: ListAbandonedCartInput;
|
|
4008
|
+
mailSendDate?: InputMaybe<DateFilterInput>;
|
|
4009
|
+
pagination?: InputMaybe<PaginationInput>;
|
|
4010
|
+
sort?: InputMaybe<Scalars['String']>;
|
|
4011
|
+
updatedAt?: InputMaybe<DateFilterInput>;
|
|
4012
|
+
};
|
|
3791
4013
|
export declare type QuerylistBranchArgs = {
|
|
3792
4014
|
id?: InputMaybe<StringFilterInput>;
|
|
3793
4015
|
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -4018,7 +4240,7 @@ export declare enum SFAnalyticsTrafficSourceEnum {
|
|
|
4018
4240
|
export declare type SalesChannel = {
|
|
4019
4241
|
__typename?: 'SalesChannel';
|
|
4020
4242
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4021
|
-
deleted
|
|
4243
|
+
deleted: Scalars['Boolean'];
|
|
4022
4244
|
id: Scalars['ID'];
|
|
4023
4245
|
/** The sales channel name field. */
|
|
4024
4246
|
name: Scalars['String'];
|
|
@@ -4228,6 +4450,7 @@ export declare type SearchProductCustomerReviewStar = {
|
|
|
4228
4450
|
};
|
|
4229
4451
|
export declare type SearchProductImage = {
|
|
4230
4452
|
__typename?: 'SearchProductImage';
|
|
4453
|
+
fileName?: Maybe<Scalars['String']>;
|
|
4231
4454
|
id: Scalars['String'];
|
|
4232
4455
|
isMain?: Maybe<Scalars['Boolean']>;
|
|
4233
4456
|
isVideo?: Maybe<Scalars['Boolean']>;
|
|
@@ -4310,25 +4533,10 @@ export declare type SearchVariationValueRelation = {
|
|
|
4310
4533
|
variantTypeId: Scalars['String'];
|
|
4311
4534
|
variantValueId: Scalars['String'];
|
|
4312
4535
|
};
|
|
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
4536
|
export declare type SimpleCategory = {
|
|
4329
4537
|
__typename?: 'SimpleCategory';
|
|
4330
4538
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4331
|
-
deleted
|
|
4539
|
+
deleted: Scalars['Boolean'];
|
|
4332
4540
|
id: Scalars['ID'];
|
|
4333
4541
|
/** It is the name of the category in which the product is located. */
|
|
4334
4542
|
name: Scalars['String'];
|
|
@@ -4339,7 +4547,7 @@ export declare type SimpleCategory = {
|
|
|
4339
4547
|
export declare type SimpleProductBrand = {
|
|
4340
4548
|
__typename?: 'SimpleProductBrand';
|
|
4341
4549
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4342
|
-
deleted
|
|
4550
|
+
deleted: Scalars['Boolean'];
|
|
4343
4551
|
id: Scalars['ID'];
|
|
4344
4552
|
/** The name of the product's brand. */
|
|
4345
4553
|
name: Scalars['String'];
|
|
@@ -4348,7 +4556,7 @@ export declare type SimpleProductBrand = {
|
|
|
4348
4556
|
export declare type SimpleProductTag = {
|
|
4349
4557
|
__typename?: 'SimpleProductTag';
|
|
4350
4558
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4351
|
-
deleted
|
|
4559
|
+
deleted: Scalars['Boolean'];
|
|
4352
4560
|
id: Scalars['ID'];
|
|
4353
4561
|
/** The name of the product's tag. */
|
|
4354
4562
|
name: Scalars['String'];
|
|
@@ -4371,7 +4579,7 @@ export declare type State = {
|
|
|
4371
4579
|
/** ID indicating which country the state belongs to. */
|
|
4372
4580
|
countryId: Scalars['String'];
|
|
4373
4581
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4374
|
-
deleted
|
|
4582
|
+
deleted: Scalars['Boolean'];
|
|
4375
4583
|
id: Scalars['ID'];
|
|
4376
4584
|
/** Shows spellings of state name in different languages. */
|
|
4377
4585
|
locationTranslations?: Maybe<LocationTranslations>;
|
|
@@ -4388,7 +4596,7 @@ export declare type StockLocation = {
|
|
|
4388
4596
|
/** It is the address information of the stock location. */
|
|
4389
4597
|
address?: Maybe<StockLocationAddress>;
|
|
4390
4598
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4391
|
-
deleted
|
|
4599
|
+
deleted: Scalars['Boolean'];
|
|
4392
4600
|
/** It is the delivery time of the stock location. */
|
|
4393
4601
|
deliveryTime?: Maybe<StockLocationDeliveryTimeEnum>;
|
|
4394
4602
|
/** It is the description of the stock location. */
|
|
@@ -4472,7 +4680,7 @@ export declare enum StockLocationTypeEnum {
|
|
|
4472
4680
|
export declare type Storefront = {
|
|
4473
4681
|
__typename?: 'Storefront';
|
|
4474
4682
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4475
|
-
deleted
|
|
4683
|
+
deleted: Scalars['Boolean'];
|
|
4476
4684
|
id: Scalars['ID'];
|
|
4477
4685
|
/** The storefront's name. */
|
|
4478
4686
|
name: Scalars['String'];
|
|
@@ -4485,7 +4693,7 @@ export declare type StorefrontJSScript = {
|
|
|
4485
4693
|
/** The type of javascript script content. */
|
|
4486
4694
|
contentType?: Maybe<StorefrontJSScriptContentTypeEnum>;
|
|
4487
4695
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4488
|
-
deleted
|
|
4696
|
+
deleted: Scalars['Boolean'];
|
|
4489
4697
|
/** The type of javascript script content. */
|
|
4490
4698
|
fileName?: Maybe<Scalars['String']>;
|
|
4491
4699
|
id: Scalars['ID'];
|
|
@@ -4557,7 +4765,7 @@ export declare type Terminal = {
|
|
|
4557
4765
|
__typename?: 'Terminal';
|
|
4558
4766
|
branchId: Scalars['String'];
|
|
4559
4767
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4560
|
-
deleted
|
|
4768
|
+
deleted: Scalars['Boolean'];
|
|
4561
4769
|
id: Scalars['ID'];
|
|
4562
4770
|
name: Scalars['String'];
|
|
4563
4771
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
@@ -4573,7 +4781,7 @@ export declare type TimelineInput = {
|
|
|
4573
4781
|
export declare type Town = {
|
|
4574
4782
|
__typename?: 'Town';
|
|
4575
4783
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4576
|
-
deleted
|
|
4784
|
+
deleted: Scalars['Boolean'];
|
|
4577
4785
|
/** ID indicating which district the town belongs to. */
|
|
4578
4786
|
districtId: Scalars['String'];
|
|
4579
4787
|
id: Scalars['ID'];
|
|
@@ -4643,7 +4851,7 @@ export declare type TransactionPaymentMethodDetail = {
|
|
|
4643
4851
|
installment?: Maybe<TransactionInstallmentPrice>;
|
|
4644
4852
|
lastFourDigits: Scalars['String'];
|
|
4645
4853
|
paymentMethodName?: Maybe<Scalars['String']>;
|
|
4646
|
-
threeDSecure
|
|
4854
|
+
threeDSecure: Scalars['Boolean'];
|
|
4647
4855
|
};
|
|
4648
4856
|
export declare enum TransactionStatusEnum {
|
|
4649
4857
|
AUTHORIZED = "AUTHORIZED",
|
|
@@ -4671,7 +4879,7 @@ export declare type UpdateOrderInput = {
|
|
|
4671
4879
|
editReason: Scalars['String'];
|
|
4672
4880
|
orderId: Scalars['String'];
|
|
4673
4881
|
orderLineItems: Array<OrderLineItemInput>;
|
|
4674
|
-
restockItems?:
|
|
4882
|
+
restockItems?: Scalars['Boolean'];
|
|
4675
4883
|
};
|
|
4676
4884
|
export declare type UpdateOrderPackageStatusInput = {
|
|
4677
4885
|
/**
|
|
@@ -4731,14 +4939,16 @@ export declare type Variant = {
|
|
|
4731
4939
|
/** Show the product bundle settings. */
|
|
4732
4940
|
bundleSettings?: Maybe<BundleSettingsModel>;
|
|
4733
4941
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4734
|
-
deleted
|
|
4942
|
+
deleted: Scalars['Boolean'];
|
|
4943
|
+
/** Id of product file. */
|
|
4944
|
+
fileId?: Maybe<Scalars['String']>;
|
|
4735
4945
|
/** Hs code of the variant. */
|
|
4736
4946
|
hsCode?: Maybe<Scalars['String']>;
|
|
4737
4947
|
id: Scalars['ID'];
|
|
4738
4948
|
/** List of images for variant. */
|
|
4739
4949
|
images?: Maybe<Array<ProductImage>>;
|
|
4740
4950
|
/** Whether the variant is active or not. */
|
|
4741
|
-
isActive
|
|
4951
|
+
isActive: Scalars['Boolean'];
|
|
4742
4952
|
/** List of prices for the variant. */
|
|
4743
4953
|
prices: Array<ProductPrice>;
|
|
4744
4954
|
/** Whether to sell if variant is out of stock or not. */
|
|
@@ -4759,11 +4969,12 @@ export declare type VariantInput = {
|
|
|
4759
4969
|
barcodeList?: InputMaybe<Array<Scalars['String']>>;
|
|
4760
4970
|
bundleSettings?: InputMaybe<BundleSettingsInput>;
|
|
4761
4971
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4762
|
-
deleted?:
|
|
4972
|
+
deleted?: Scalars['Boolean'];
|
|
4973
|
+
fileId?: InputMaybe<Scalars['String']>;
|
|
4763
4974
|
hsCode?: InputMaybe<Scalars['String']>;
|
|
4764
4975
|
id?: InputMaybe<Scalars['ID']>;
|
|
4765
4976
|
images?: InputMaybe<Array<ProductImageInput>>;
|
|
4766
|
-
isActive?:
|
|
4977
|
+
isActive?: Scalars['Boolean'];
|
|
4767
4978
|
prices: Array<ProductPriceInput>;
|
|
4768
4979
|
sellIfOutOfStock?: InputMaybe<Scalars['Boolean']>;
|
|
4769
4980
|
sku?: InputMaybe<Scalars['String']>;
|
|
@@ -4789,7 +5000,7 @@ export declare enum VariantSelectionTypeEnum {
|
|
|
4789
5000
|
export declare type VariantType = {
|
|
4790
5001
|
__typename?: 'VariantType';
|
|
4791
5002
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4792
|
-
deleted
|
|
5003
|
+
deleted: Scalars['Boolean'];
|
|
4793
5004
|
id: Scalars['ID'];
|
|
4794
5005
|
/** Product variant type name information. **For example: Size, Color, Number etc.**.It can be a maximum of 100 characters. */
|
|
4795
5006
|
name: Scalars['String'];
|
|
@@ -4803,7 +5014,7 @@ export declare type VariantType = {
|
|
|
4803
5014
|
};
|
|
4804
5015
|
export declare type VariantTypeInput = {
|
|
4805
5016
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4806
|
-
deleted?:
|
|
5017
|
+
deleted?: Scalars['Boolean'];
|
|
4807
5018
|
id?: InputMaybe<Scalars['ID']>;
|
|
4808
5019
|
/** Product variant type name information. **For example: Size, Color, Number etc.**.It can be a maximum of 100 characters. */
|
|
4809
5020
|
name: Scalars['String'];
|
|
@@ -4848,7 +5059,7 @@ export declare type VariantValue = {
|
|
|
4848
5059
|
/** It is the color code information of the variant values. It can be a maximum of 7 characters. */
|
|
4849
5060
|
colorCode?: Maybe<Scalars['String']>;
|
|
4850
5061
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4851
|
-
deleted
|
|
5062
|
+
deleted: Scalars['Boolean'];
|
|
4852
5063
|
id: Scalars['ID'];
|
|
4853
5064
|
/** 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
5065
|
name: Scalars['String'];
|
|
@@ -4860,7 +5071,7 @@ export declare type VariantValueInput = {
|
|
|
4860
5071
|
/** It is the color code information of the variant values. It can be a maximum of 7 characters. */
|
|
4861
5072
|
colorCode?: InputMaybe<Scalars['String']>;
|
|
4862
5073
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4863
|
-
deleted?:
|
|
5074
|
+
deleted?: Scalars['Boolean'];
|
|
4864
5075
|
id?: InputMaybe<Scalars['ID']>;
|
|
4865
5076
|
/** 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
5077
|
name: Scalars['String'];
|
|
@@ -4895,7 +5106,7 @@ export declare type Vendor = {
|
|
|
4895
5106
|
address?: Maybe<Scalars['String']>;
|
|
4896
5107
|
company?: Maybe<Scalars['String']>;
|
|
4897
5108
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4898
|
-
deleted
|
|
5109
|
+
deleted: Scalars['Boolean'];
|
|
4899
5110
|
email?: Maybe<Scalars['String']>;
|
|
4900
5111
|
id: Scalars['ID'];
|
|
4901
5112
|
name: Scalars['String'];
|
|
@@ -4910,7 +5121,7 @@ export declare type VendorInput = {
|
|
|
4910
5121
|
address?: InputMaybe<Scalars['String']>;
|
|
4911
5122
|
company?: InputMaybe<Scalars['String']>;
|
|
4912
5123
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4913
|
-
deleted?:
|
|
5124
|
+
deleted?: Scalars['Boolean'];
|
|
4914
5125
|
email?: InputMaybe<Scalars['String']>;
|
|
4915
5126
|
id?: InputMaybe<Scalars['ID']>;
|
|
4916
5127
|
name: Scalars['String'];
|
|
@@ -4930,7 +5141,7 @@ export declare enum VendorStatusEnum {
|
|
|
4930
5141
|
export declare type Webhook = {
|
|
4931
5142
|
__typename?: 'Webhook';
|
|
4932
5143
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4933
|
-
deleted
|
|
5144
|
+
deleted: Scalars['Boolean'];
|
|
4934
5145
|
/** URL address that webhooks will be pushed. */
|
|
4935
5146
|
endpoint: Scalars['String'];
|
|
4936
5147
|
id: Scalars['ID'];
|