@ikas/api-client 1.0.24 → 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 +304 -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'];
|
|
@@ -333,6 +334,8 @@ export declare type BulkUpdateProductsInput = {
|
|
|
333
334
|
name: Scalars['String'];
|
|
334
335
|
/** Variant types of the product. */
|
|
335
336
|
productVariantTypes: Array<BulkUpdateProductVariantTypeImportInput>;
|
|
337
|
+
/** Sales channel ids for bulk update. */
|
|
338
|
+
salesChannelIds?: InputMaybe<Array<Scalars['String']>>;
|
|
336
339
|
/** Short description of the product. */
|
|
337
340
|
shortDescription?: InputMaybe<Scalars['String']>;
|
|
338
341
|
/** Source id for bulk update. */
|
|
@@ -438,7 +441,7 @@ export declare type Campaign = {
|
|
|
438
441
|
createdFor?: Maybe<CampaignCreatedForEnum>;
|
|
439
442
|
currencyCodes?: Maybe<Array<Scalars['String']>>;
|
|
440
443
|
dateRange?: Maybe<CampaignDateRangeField>;
|
|
441
|
-
deleted
|
|
444
|
+
deleted: Scalars['Boolean'];
|
|
442
445
|
fixedDiscount?: Maybe<FixedDiscount>;
|
|
443
446
|
hasCoupon: Scalars['Boolean'];
|
|
444
447
|
id: Scalars['ID'];
|
|
@@ -497,7 +500,7 @@ export declare type CampaignInput = {
|
|
|
497
500
|
createdFor?: InputMaybe<CampaignCreatedForEnum>;
|
|
498
501
|
currencyCodes?: InputMaybe<Array<Scalars['String']>>;
|
|
499
502
|
dateRange?: InputMaybe<CampaignDateRangeFieldInput>;
|
|
500
|
-
deleted?:
|
|
503
|
+
deleted?: Scalars['Boolean'];
|
|
501
504
|
fixedDiscount?: InputMaybe<FixedDiscountInput>;
|
|
502
505
|
hasCoupon: Scalars['Boolean'];
|
|
503
506
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -525,10 +528,11 @@ export declare type CampaignOffer = {
|
|
|
525
528
|
availableSalesChannelIds: Array<Scalars['String']>;
|
|
526
529
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
527
530
|
currencyCodes?: Maybe<Array<Scalars['String']>>;
|
|
528
|
-
deleted
|
|
531
|
+
deleted: Scalars['Boolean'];
|
|
529
532
|
endDate?: Maybe<Scalars['Timestamp']>;
|
|
530
533
|
followUpActionType: CampaignOfferFollowUpActionTypeEnum;
|
|
531
534
|
id: Scalars['ID'];
|
|
535
|
+
maximumRequiredCartAmount?: Maybe<Scalars['Float']>;
|
|
532
536
|
minimumRequiredCartAmount?: Maybe<Scalars['Float']>;
|
|
533
537
|
name: Scalars['String'];
|
|
534
538
|
offers: Array<CampaignOfferProduct>;
|
|
@@ -630,9 +634,14 @@ export declare enum CampaignTypeEnum {
|
|
|
630
634
|
RATIO = "RATIO"
|
|
631
635
|
}
|
|
632
636
|
export declare type CancelFulfillmentInput = {
|
|
637
|
+
lines?: InputMaybe<Array<CancelFulfillmentOrderLineInput>>;
|
|
633
638
|
orderId: Scalars['String'];
|
|
634
639
|
orderPackageId: Scalars['String'];
|
|
635
640
|
};
|
|
641
|
+
export declare type CancelFulfillmentOrderLineInput = {
|
|
642
|
+
orderLineItemId: Scalars['String'];
|
|
643
|
+
quantity: Scalars['Float'];
|
|
644
|
+
};
|
|
636
645
|
export declare type CancelOrderLineInput = {
|
|
637
646
|
orderId: Scalars['String'];
|
|
638
647
|
orderLineItems: Array<CancelOrderLineItemInput>;
|
|
@@ -640,7 +649,43 @@ export declare type CancelOrderLineInput = {
|
|
|
640
649
|
export declare type CancelOrderLineItemInput = {
|
|
641
650
|
orderLineItemId: Scalars['String'];
|
|
642
651
|
quantity: Scalars['Float'];
|
|
643
|
-
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'];
|
|
644
689
|
};
|
|
645
690
|
export declare enum CartCampaignOfferStatus {
|
|
646
691
|
ACCEPTED = "ACCEPTED",
|
|
@@ -652,6 +697,56 @@ export declare enum CartCreatedByEnum {
|
|
|
652
697
|
ADMIN = "ADMIN",
|
|
653
698
|
CUSTOMER = "CUSTOMER"
|
|
654
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
|
+
};
|
|
655
750
|
export declare type CartV2CampaignOffer = {
|
|
656
751
|
__typename?: 'CartV2CampaignOffer';
|
|
657
752
|
appliedOrderLineId?: Maybe<Scalars['String']>;
|
|
@@ -678,7 +773,7 @@ export declare type Category = {
|
|
|
678
773
|
categoryPathItems?: Maybe<Array<CategoryPathItem>>;
|
|
679
774
|
conditions?: Maybe<Array<CategoryCondition>>;
|
|
680
775
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
681
|
-
deleted
|
|
776
|
+
deleted: Scalars['Boolean'];
|
|
682
777
|
/** It is the description of the category of the product. */
|
|
683
778
|
description?: Maybe<Scalars['String']>;
|
|
684
779
|
id: Scalars['ID'];
|
|
@@ -702,18 +797,26 @@ export declare type Category = {
|
|
|
702
797
|
export declare type CategoryCondition = {
|
|
703
798
|
__typename?: 'CategoryCondition';
|
|
704
799
|
conditionType: CategoryConditionTypeEnum;
|
|
800
|
+
method?: Maybe<CategoryConditionMethodEnum>;
|
|
705
801
|
valueList: Array<Scalars['String']>;
|
|
706
802
|
};
|
|
707
803
|
export declare type CategoryConditionInput = {
|
|
708
804
|
conditionType: CategoryConditionTypeEnum;
|
|
805
|
+
method?: InputMaybe<CategoryConditionMethodEnum>;
|
|
709
806
|
valueList: Array<Scalars['String']>;
|
|
710
807
|
};
|
|
808
|
+
export declare enum CategoryConditionMethodEnum {
|
|
809
|
+
IN = "IN",
|
|
810
|
+
NOT_IN = "NOT_IN"
|
|
811
|
+
}
|
|
711
812
|
/** CategoryCondition Types */
|
|
712
813
|
export declare enum CategoryConditionTypeEnum {
|
|
713
814
|
CAMPAIGN = "CAMPAIGN",
|
|
815
|
+
CATEGORY = "CATEGORY",
|
|
714
816
|
CREATED_AT = "CREATED_AT",
|
|
715
817
|
DISCOUNTED_PRODUCTS = "DISCOUNTED_PRODUCTS",
|
|
716
818
|
PRICE_RANGE = "PRICE_RANGE",
|
|
819
|
+
PRODUCT_ATTRIBUTE = "PRODUCT_ATTRIBUTE",
|
|
717
820
|
PRODUCT_BRAND = "PRODUCT_BRAND",
|
|
718
821
|
PRODUCT_TAG = "PRODUCT_TAG",
|
|
719
822
|
VARIANT_VALUE = "VARIANT_VALUE"
|
|
@@ -726,7 +829,7 @@ export declare type CategoryFilterInput = {
|
|
|
726
829
|
export declare type CategoryInput = {
|
|
727
830
|
conditions?: InputMaybe<Array<CategoryConditionInput>>;
|
|
728
831
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
729
|
-
deleted?:
|
|
832
|
+
deleted?: Scalars['Boolean'];
|
|
730
833
|
/** It is the description of the category of the product. */
|
|
731
834
|
description?: InputMaybe<Scalars['String']>;
|
|
732
835
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -753,7 +856,7 @@ export declare type CategoryPathFilterInput = {
|
|
|
753
856
|
export declare type CategoryPathItem = {
|
|
754
857
|
__typename?: 'CategoryPathItem';
|
|
755
858
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
756
|
-
deleted
|
|
859
|
+
deleted: Scalars['Boolean'];
|
|
757
860
|
/** It is the description of the category of the product. */
|
|
758
861
|
description?: Maybe<Scalars['String']>;
|
|
759
862
|
id: Scalars['ID'];
|
|
@@ -796,6 +899,52 @@ export declare type CategoryTranslationInput = {
|
|
|
796
899
|
/** It is the information in which language the translation is saved. */
|
|
797
900
|
name?: InputMaybe<Scalars['String']>;
|
|
798
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
|
+
};
|
|
799
948
|
export declare enum CheckoutRecoveryEmailStatusEnum {
|
|
800
949
|
NOT_SENT = "NOT_SENT",
|
|
801
950
|
SENT = "SENT"
|
|
@@ -804,6 +953,12 @@ export declare enum CheckoutRecoveryStatusEnum {
|
|
|
804
953
|
NOT_RECOVERED = "NOT_RECOVERED",
|
|
805
954
|
RECOVERED = "RECOVERED"
|
|
806
955
|
}
|
|
956
|
+
export declare enum CheckoutStatusEnum {
|
|
957
|
+
COMPLETED = "COMPLETED",
|
|
958
|
+
FREEZE = "FREEZE",
|
|
959
|
+
KILLED = "KILLED",
|
|
960
|
+
OPEN = "OPEN"
|
|
961
|
+
}
|
|
807
962
|
export declare type City = {
|
|
808
963
|
__typename?: 'City';
|
|
809
964
|
/** The two-letter city code corresponding to the city. */
|
|
@@ -811,7 +966,7 @@ export declare type City = {
|
|
|
811
966
|
/** ID indicating which country the city belongs to. */
|
|
812
967
|
countryId: Scalars['String'];
|
|
813
968
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
814
|
-
deleted
|
|
969
|
+
deleted: Scalars['Boolean'];
|
|
815
970
|
id: Scalars['ID'];
|
|
816
971
|
/** Indicates the latitude of the city. */
|
|
817
972
|
latitude?: Maybe<Scalars['String']>;
|
|
@@ -834,7 +989,7 @@ export declare type Country = {
|
|
|
834
989
|
currency?: Maybe<Scalars['String']>;
|
|
835
990
|
currencyCode?: Maybe<Scalars['String']>;
|
|
836
991
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
837
|
-
deleted
|
|
992
|
+
deleted: Scalars['Boolean'];
|
|
838
993
|
/** Indicates the flag emoji of the county. */
|
|
839
994
|
emoji?: Maybe<Scalars['String']>;
|
|
840
995
|
/** Indicates the flag emoji code of the county. */
|
|
@@ -864,7 +1019,7 @@ export declare type Coupon = {
|
|
|
864
1019
|
canCombineWithOtherCampaigns: Scalars['Boolean'];
|
|
865
1020
|
code: Scalars['String'];
|
|
866
1021
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
867
|
-
deleted
|
|
1022
|
+
deleted: Scalars['Boolean'];
|
|
868
1023
|
id: Scalars['ID'];
|
|
869
1024
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
870
1025
|
usageCount: Scalars['Int'];
|
|
@@ -914,7 +1069,7 @@ export declare type CreateOrderInput = {
|
|
|
914
1069
|
currencyCode?: InputMaybe<Scalars['String']>;
|
|
915
1070
|
/** It is the customer information in the order. */
|
|
916
1071
|
customer?: InputMaybe<OrderCustomerInput>;
|
|
917
|
-
deleted?:
|
|
1072
|
+
deleted?: Scalars['Boolean'];
|
|
918
1073
|
/** Host name of order source. */
|
|
919
1074
|
host?: InputMaybe<Scalars['String']>;
|
|
920
1075
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -975,7 +1130,7 @@ export declare type Customer = {
|
|
|
975
1130
|
customerGroupIds?: Maybe<Array<Scalars['String']>>;
|
|
976
1131
|
/** It is the sequence value of the customer. The sequence value starts from 1. */
|
|
977
1132
|
customerSequence?: Maybe<Scalars['Float']>;
|
|
978
|
-
deleted
|
|
1133
|
+
deleted: Scalars['Boolean'];
|
|
979
1134
|
/** The unique email address of the customer. Attempting to assign the same email address to multiple customers returns an error. */
|
|
980
1135
|
email?: Maybe<Scalars['String']>;
|
|
981
1136
|
/** The date the **email** was verified. */
|
|
@@ -985,6 +1140,7 @@ export declare type Customer = {
|
|
|
985
1140
|
/** Customer's full name. Firstname plus lastname if firstname and lastname exist. Otherwise, it is saved as firstname only. */
|
|
986
1141
|
fullName?: Maybe<Scalars['String']>;
|
|
987
1142
|
id: Scalars['ID'];
|
|
1143
|
+
ip?: Maybe<Scalars['String']>;
|
|
988
1144
|
/** Email verification status. **isEmailVerified** returns `true` if the email is verified. */
|
|
989
1145
|
isEmailVerified?: Maybe<Scalars['Boolean']>;
|
|
990
1146
|
/** Phone verification status. **isPhoneVerified** returns `true` if the email is verified. */
|
|
@@ -1010,6 +1166,7 @@ export declare type Customer = {
|
|
|
1010
1166
|
/** Tags that the store owner attaches to the customer. */
|
|
1011
1167
|
tagIds?: Maybe<Array<Scalars['String']>>;
|
|
1012
1168
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1169
|
+
userAgent?: Maybe<Scalars['String']>;
|
|
1013
1170
|
};
|
|
1014
1171
|
/** Customer Account Statuses */
|
|
1015
1172
|
export declare enum CustomerAccountStatusEnum {
|
|
@@ -1032,7 +1189,7 @@ export declare type CustomerAddress = {
|
|
|
1032
1189
|
/** The customer's country. */
|
|
1033
1190
|
country: CustomerAddressCountry;
|
|
1034
1191
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1035
|
-
deleted
|
|
1192
|
+
deleted: Scalars['Boolean'];
|
|
1036
1193
|
/** The customer's district in city. */
|
|
1037
1194
|
district?: Maybe<CustomerAddressDistrict>;
|
|
1038
1195
|
/** The customer's first name. */
|
|
@@ -1048,6 +1205,7 @@ export declare type CustomerAddress = {
|
|
|
1048
1205
|
phone?: Maybe<Scalars['String']>;
|
|
1049
1206
|
/** The customer's postal code, also known as zip, postcode, etc. */
|
|
1050
1207
|
postalCode?: Maybe<Scalars['String']>;
|
|
1208
|
+
region?: Maybe<CustomerAddressRegion>;
|
|
1051
1209
|
state?: Maybe<CustomerAddressState>;
|
|
1052
1210
|
/** Tax number that the customer will use for orders */
|
|
1053
1211
|
taxNumber?: Maybe<Scalars['String']>;
|
|
@@ -1084,6 +1242,14 @@ export declare type CustomerAddressDistrict = {
|
|
|
1084
1242
|
/** The customer's normalized district name. */
|
|
1085
1243
|
name?: Maybe<Scalars['String']>;
|
|
1086
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
|
+
};
|
|
1087
1253
|
export declare type CustomerAddressState = {
|
|
1088
1254
|
__typename?: 'CustomerAddressState';
|
|
1089
1255
|
code?: Maybe<Scalars['String']>;
|
|
@@ -1093,7 +1259,7 @@ export declare type CustomerAddressState = {
|
|
|
1093
1259
|
export declare type CustomerAttribute = {
|
|
1094
1260
|
__typename?: 'CustomerAttribute';
|
|
1095
1261
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1096
|
-
deleted
|
|
1262
|
+
deleted: Scalars['Boolean'];
|
|
1097
1263
|
description?: Maybe<Scalars['String']>;
|
|
1098
1264
|
id: Scalars['ID'];
|
|
1099
1265
|
name: Scalars['String'];
|
|
@@ -1107,7 +1273,7 @@ export declare type CustomerAttribute = {
|
|
|
1107
1273
|
export declare type CustomerAttributeOption = {
|
|
1108
1274
|
__typename?: 'CustomerAttributeOption';
|
|
1109
1275
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1110
|
-
deleted
|
|
1276
|
+
deleted: Scalars['Boolean'];
|
|
1111
1277
|
id: Scalars['ID'];
|
|
1112
1278
|
name: Scalars['String'];
|
|
1113
1279
|
order?: Maybe<Scalars['Float']>;
|
|
@@ -1196,6 +1362,7 @@ export declare type CustomerPaginationResponse = {
|
|
|
1196
1362
|
};
|
|
1197
1363
|
/** Customer Registration Source Enum */
|
|
1198
1364
|
export declare enum CustomerRegistrationSourceEnum {
|
|
1365
|
+
apple = "apple",
|
|
1199
1366
|
credentials = "credentials",
|
|
1200
1367
|
facebook = "facebook",
|
|
1201
1368
|
google = "google"
|
|
@@ -1225,7 +1392,7 @@ export declare type District = {
|
|
|
1225
1392
|
/** ID indicating which country the district belongs to. */
|
|
1226
1393
|
countryId: Scalars['String'];
|
|
1227
1394
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1228
|
-
deleted
|
|
1395
|
+
deleted: Scalars['Boolean'];
|
|
1229
1396
|
id: Scalars['ID'];
|
|
1230
1397
|
/** Indicates the latitude of the city. */
|
|
1231
1398
|
latitude?: Maybe<Scalars['String']>;
|
|
@@ -1300,7 +1467,7 @@ export declare type GetYInput = {
|
|
|
1300
1467
|
export declare type GlobalTaxSettings = {
|
|
1301
1468
|
__typename?: 'GlobalTaxSettings';
|
|
1302
1469
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1303
|
-
deleted
|
|
1470
|
+
deleted: Scalars['Boolean'];
|
|
1304
1471
|
id: Scalars['ID'];
|
|
1305
1472
|
isTaxExcludedOnPrices: Scalars['Boolean'];
|
|
1306
1473
|
isTaxExcludedOnShippingPrices: Scalars['Boolean'];
|
|
@@ -1311,7 +1478,7 @@ export declare type HTMLMetaData = {
|
|
|
1311
1478
|
/** Canonical URL list of entity. */
|
|
1312
1479
|
canonicals?: Maybe<Array<Scalars['String']>>;
|
|
1313
1480
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1314
|
-
deleted
|
|
1481
|
+
deleted: Scalars['Boolean'];
|
|
1315
1482
|
/** The description of the metadata. */
|
|
1316
1483
|
description?: Maybe<Scalars['String']>;
|
|
1317
1484
|
/** Defines if the entity is not indexable by search engines */
|
|
@@ -1332,7 +1499,7 @@ export declare type HTMLMetaData = {
|
|
|
1332
1499
|
export declare type HTMLMetaDataInput = {
|
|
1333
1500
|
canonicals?: InputMaybe<Array<Scalars['String']>>;
|
|
1334
1501
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1335
|
-
deleted?:
|
|
1502
|
+
deleted?: Scalars['Boolean'];
|
|
1336
1503
|
description?: InputMaybe<Scalars['String']>;
|
|
1337
1504
|
disableIndex?: InputMaybe<Scalars['Boolean']>;
|
|
1338
1505
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -1415,12 +1582,27 @@ export declare enum InvoiceTypeEnum {
|
|
|
1415
1582
|
export declare type Language = {
|
|
1416
1583
|
__typename?: 'Language';
|
|
1417
1584
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1418
|
-
deleted
|
|
1585
|
+
deleted: Scalars['Boolean'];
|
|
1419
1586
|
id: Scalars['ID'];
|
|
1420
1587
|
locale: Scalars['String'];
|
|
1421
1588
|
name: Scalars['String'];
|
|
1422
1589
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1423
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
|
+
}
|
|
1424
1606
|
export declare type LocationTranslations = {
|
|
1425
1607
|
__typename?: 'LocationTranslations';
|
|
1426
1608
|
de?: Maybe<Scalars['String']>;
|
|
@@ -1517,7 +1699,7 @@ export declare type MerchantAppPayment = {
|
|
|
1517
1699
|
/** The id of the app that generated the app payment. Actually, the id of the app for which merchant app payment was created. */
|
|
1518
1700
|
authorizedAppId?: Maybe<Scalars['String']>;
|
|
1519
1701
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1520
|
-
deleted
|
|
1702
|
+
deleted: Scalars['Boolean'];
|
|
1521
1703
|
id: Scalars['ID'];
|
|
1522
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. */
|
|
1523
1705
|
merchantPaymentUrl: Scalars['String'];
|
|
@@ -1597,7 +1779,7 @@ export declare type MerchantAppSubscription = {
|
|
|
1597
1779
|
currency?: Maybe<SubscriptionPriceCurrencyEnum>;
|
|
1598
1780
|
currencyCode?: Maybe<Scalars['String']>;
|
|
1599
1781
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
1600
|
-
deleted
|
|
1782
|
+
deleted: Scalars['Boolean'];
|
|
1601
1783
|
id: Scalars['ID'];
|
|
1602
1784
|
/** It is the date of receipt of the last payment for the license subscription. */
|
|
1603
1785
|
lastPaymentDate?: Maybe<Scalars['Timestamp']>;
|
|
@@ -1626,7 +1808,7 @@ export declare type MerchantLicence = {
|
|
|
1626
1808
|
/** If the license is attached to an app, its properties are kept in this domain. */
|
|
1627
1809
|
appSubscriptions?: Maybe<Array<MerchantAppSubscription>>;
|
|
1628
1810
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1629
|
-
deleted
|
|
1811
|
+
deleted: Scalars['Boolean'];
|
|
1630
1812
|
developmentStore?: Maybe<Scalars['Boolean']>;
|
|
1631
1813
|
/** It is the information of the start date of the license. */
|
|
1632
1814
|
fromDate?: Maybe<Scalars['Timestamp']>;
|
|
@@ -1942,6 +2124,7 @@ export declare type NumberFilterInput = {
|
|
|
1942
2124
|
export declare type Order = {
|
|
1943
2125
|
__typename?: 'Order';
|
|
1944
2126
|
abandonedCartFlows?: Maybe<Array<AbandonedCartFlow>>;
|
|
2127
|
+
attributes?: Maybe<Array<OrderAttributeValue>>;
|
|
1945
2128
|
availableShippingMethods?: Maybe<Array<AvailableShippingMethod>>;
|
|
1946
2129
|
/** It is the billing address of the order. */
|
|
1947
2130
|
billingAddress?: Maybe<OrderAddress>;
|
|
@@ -1975,7 +2158,7 @@ export declare type Order = {
|
|
|
1975
2158
|
customerId?: Maybe<Scalars['String']>;
|
|
1976
2159
|
/** It shows the number of orders given by the relevant customer. */
|
|
1977
2160
|
customerOrderCount?: Maybe<Scalars['Float']>;
|
|
1978
|
-
deleted
|
|
2161
|
+
deleted: Scalars['Boolean'];
|
|
1979
2162
|
dueDate?: Maybe<Scalars['Timestamp']>;
|
|
1980
2163
|
/** A list of gift package line objects, each containing information about a gift package pricing in the order. */
|
|
1981
2164
|
giftPackageLines?: Maybe<Array<OrderGiftPackageLine>>;
|
|
@@ -2088,7 +2271,7 @@ export declare type OrderAddress = {
|
|
|
2088
2271
|
/** The postal code of the address. */
|
|
2089
2272
|
postalCode?: Maybe<Scalars['String']>;
|
|
2090
2273
|
/** The region information of the address. */
|
|
2091
|
-
region?: Maybe<
|
|
2274
|
+
region?: Maybe<OrderAddressRegion>;
|
|
2092
2275
|
/** The state information of the address. */
|
|
2093
2276
|
state?: Maybe<OrderAddressState>;
|
|
2094
2277
|
/** The tax number of the person associated with the address. */
|
|
@@ -2172,7 +2355,7 @@ export declare type OrderAddressInput = {
|
|
|
2172
2355
|
/** The postal code of the address. */
|
|
2173
2356
|
postalCode?: InputMaybe<Scalars['String']>;
|
|
2174
2357
|
/** The name of the region of the address. */
|
|
2175
|
-
region?: InputMaybe<
|
|
2358
|
+
region?: InputMaybe<OrderAddressRegionInput>;
|
|
2176
2359
|
/** The name of the state of the address. */
|
|
2177
2360
|
state?: InputMaybe<OrderAddressStateInput>;
|
|
2178
2361
|
/** The tax number of the person associated with the address. */
|
|
@@ -2180,6 +2363,20 @@ export declare type OrderAddressInput = {
|
|
|
2180
2363
|
/** The tax office of the person associated with the address. */
|
|
2181
2364
|
taxOffice?: InputMaybe<Scalars['String']>;
|
|
2182
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
|
+
};
|
|
2183
2380
|
export declare type OrderAddressState = {
|
|
2184
2381
|
__typename?: 'OrderAddressState';
|
|
2185
2382
|
/** It is the code of the state of the address. */
|
|
@@ -2248,6 +2445,15 @@ export declare enum OrderAmountTypeEnum {
|
|
|
2248
2445
|
AMOUNT = "AMOUNT",
|
|
2249
2446
|
RATIO = "RATIO"
|
|
2250
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
|
+
};
|
|
2251
2457
|
export declare type OrderBranch = {
|
|
2252
2458
|
__typename?: 'OrderBranch';
|
|
2253
2459
|
/** It is the id of the branch where the order was created. */
|
|
@@ -2294,6 +2500,8 @@ export declare type OrderCustomer = {
|
|
|
2294
2500
|
notificationsAccepted?: Maybe<Scalars['Boolean']>;
|
|
2295
2501
|
/** It is the phone number of the customer who created the order. */
|
|
2296
2502
|
phone?: Maybe<Scalars['String']>;
|
|
2503
|
+
/** It is the preferred language of the customer who created the order. */
|
|
2504
|
+
preferredLanguage?: Maybe<Scalars['String']>;
|
|
2297
2505
|
};
|
|
2298
2506
|
export declare type OrderCustomerInput = {
|
|
2299
2507
|
/** It is the email of the customer who created the order. */
|
|
@@ -2330,6 +2538,8 @@ export declare type OrderLineBundleVariant = {
|
|
|
2330
2538
|
brand?: Maybe<OrderLineVariantBrand>;
|
|
2331
2539
|
/** A list of category objects, each containing information about a category in the variant. */
|
|
2332
2540
|
categories?: Maybe<Array<OrderLineVariantCategory>>;
|
|
2541
|
+
/** It is the id of the product file. */
|
|
2542
|
+
fileId?: Maybe<Scalars['String']>;
|
|
2333
2543
|
/** It is the hasCode of the variant. */
|
|
2334
2544
|
hsCode?: Maybe<Scalars['String']>;
|
|
2335
2545
|
/** It is the id of the variant. */
|
|
@@ -2386,7 +2596,7 @@ export declare type OrderLineItem = {
|
|
|
2386
2596
|
/** It is the currency code of the order line item. */
|
|
2387
2597
|
currencyCode?: Maybe<Scalars['String']>;
|
|
2388
2598
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
2389
|
-
deleted
|
|
2599
|
+
deleted: Scalars['Boolean'];
|
|
2390
2600
|
/** Information about the discount. Shows the details of the discount applied to the order line item. */
|
|
2391
2601
|
discount?: Maybe<OrderLineDiscount>;
|
|
2392
2602
|
/** It is the discount price of the order line item. */
|
|
@@ -2420,7 +2630,7 @@ export declare type OrderLineItem = {
|
|
|
2420
2630
|
};
|
|
2421
2631
|
export declare type OrderLineItemInput = {
|
|
2422
2632
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2423
|
-
deleted?:
|
|
2633
|
+
deleted?: Scalars['Boolean'];
|
|
2424
2634
|
/** It is the discount information that will be applied to the line item. */
|
|
2425
2635
|
discount?: InputMaybe<OrderLineDiscountInput>;
|
|
2426
2636
|
/** It is the discount price of the line item. */
|
|
@@ -2495,6 +2705,8 @@ export declare type OrderLineVariant = {
|
|
|
2495
2705
|
bundleProducts?: Maybe<Array<OrderLineVariantBundleProductModel>>;
|
|
2496
2706
|
/** A list of category objects, each containing information about a category in the variant. */
|
|
2497
2707
|
categories?: Maybe<Array<OrderLineVariantCategory>>;
|
|
2708
|
+
/** It is the id of the product file. */
|
|
2709
|
+
fileId?: Maybe<Scalars['String']>;
|
|
2498
2710
|
/** It is the hasCode of the variant. */
|
|
2499
2711
|
hsCode?: Maybe<Scalars['String']>;
|
|
2500
2712
|
/** It is the id of the variant. */
|
|
@@ -2633,7 +2845,7 @@ export declare type OrderLineVariantVariantValues = {
|
|
|
2633
2845
|
export declare type OrderPackage = {
|
|
2634
2846
|
__typename?: 'OrderPackage';
|
|
2635
2847
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2636
|
-
deleted
|
|
2848
|
+
deleted: Scalars['Boolean'];
|
|
2637
2849
|
/** If the package was sent via the cargo application and received an error, this field is filled with an error message. */
|
|
2638
2850
|
errorMessage?: Maybe<Scalars['String']>;
|
|
2639
2851
|
id: Scalars['ID'];
|
|
@@ -2781,7 +2993,7 @@ export declare type OrderRefundInput = {
|
|
|
2781
2993
|
export declare type OrderRefundLineInput = {
|
|
2782
2994
|
orderLineItemId: Scalars['String'];
|
|
2783
2995
|
quantity: Scalars['Float'];
|
|
2784
|
-
restockItems?:
|
|
2996
|
+
restockItems?: Scalars['Boolean'];
|
|
2785
2997
|
};
|
|
2786
2998
|
export declare type OrderSalesChannel = {
|
|
2787
2999
|
__typename?: 'OrderSalesChannel';
|
|
@@ -2948,7 +3160,7 @@ export declare type OrderStorefrontTheme = {
|
|
|
2948
3160
|
export declare type OrderTag = {
|
|
2949
3161
|
__typename?: 'OrderTag';
|
|
2950
3162
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2951
|
-
deleted
|
|
3163
|
+
deleted: Scalars['Boolean'];
|
|
2952
3164
|
id: Scalars['ID'];
|
|
2953
3165
|
merchantId: Scalars['String'];
|
|
2954
3166
|
name: Scalars['String'];
|
|
@@ -2956,7 +3168,7 @@ export declare type OrderTag = {
|
|
|
2956
3168
|
};
|
|
2957
3169
|
export declare type OrderTagInput = {
|
|
2958
3170
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2959
|
-
deleted?:
|
|
3171
|
+
deleted?: Scalars['Boolean'];
|
|
2960
3172
|
id?: InputMaybe<Scalars['ID']>;
|
|
2961
3173
|
name: Scalars['String'];
|
|
2962
3174
|
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
@@ -3014,7 +3226,7 @@ export declare type PriceList = {
|
|
|
3014
3226
|
currency: Scalars['String'];
|
|
3015
3227
|
currencyCode?: Maybe<Scalars['String']>;
|
|
3016
3228
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
3017
|
-
deleted
|
|
3229
|
+
deleted: Scalars['Boolean'];
|
|
3018
3230
|
id: Scalars['ID'];
|
|
3019
3231
|
/** It is the name of the price list of the product. */
|
|
3020
3232
|
name: Scalars['String'];
|
|
@@ -3035,7 +3247,7 @@ export declare type Product = {
|
|
|
3035
3247
|
/** List category identifiers of the product. */
|
|
3036
3248
|
categoryIds?: Maybe<Array<Scalars['String']>>;
|
|
3037
3249
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3038
|
-
deleted
|
|
3250
|
+
deleted: Scalars['Boolean'];
|
|
3039
3251
|
/** Description of the product. */
|
|
3040
3252
|
description?: Maybe<Scalars['String']>;
|
|
3041
3253
|
googleTaxonomyId?: Maybe<Scalars['String']>;
|
|
@@ -3078,7 +3290,7 @@ export declare type Product = {
|
|
|
3078
3290
|
export declare type ProductAttribute = {
|
|
3079
3291
|
__typename?: 'ProductAttribute';
|
|
3080
3292
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3081
|
-
deleted
|
|
3293
|
+
deleted: Scalars['Boolean'];
|
|
3082
3294
|
/** Description of the attribute */
|
|
3083
3295
|
description?: Maybe<Scalars['String']>;
|
|
3084
3296
|
id: Scalars['ID'];
|
|
@@ -3096,7 +3308,7 @@ export declare type ProductAttribute = {
|
|
|
3096
3308
|
};
|
|
3097
3309
|
export declare type ProductAttributeInput = {
|
|
3098
3310
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3099
|
-
deleted?:
|
|
3311
|
+
deleted?: Scalars['Boolean'];
|
|
3100
3312
|
description?: InputMaybe<Scalars['String']>;
|
|
3101
3313
|
id?: InputMaybe<Scalars['ID']>;
|
|
3102
3314
|
name: Scalars['String'];
|
|
@@ -3109,7 +3321,7 @@ export declare type ProductAttributeInput = {
|
|
|
3109
3321
|
export declare type ProductAttributeOption = {
|
|
3110
3322
|
__typename?: 'ProductAttributeOption';
|
|
3111
3323
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3112
|
-
deleted
|
|
3324
|
+
deleted: Scalars['Boolean'];
|
|
3113
3325
|
id: Scalars['ID'];
|
|
3114
3326
|
/** Name of the product attribute option */
|
|
3115
3327
|
name: Scalars['String'];
|
|
@@ -3117,7 +3329,7 @@ export declare type ProductAttributeOption = {
|
|
|
3117
3329
|
};
|
|
3118
3330
|
export declare type ProductAttributeOptionInput = {
|
|
3119
3331
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3120
|
-
deleted?:
|
|
3332
|
+
deleted?: Scalars['Boolean'];
|
|
3121
3333
|
id?: InputMaybe<Scalars['ID']>;
|
|
3122
3334
|
name: Scalars['String'];
|
|
3123
3335
|
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
@@ -3217,7 +3429,7 @@ export declare type ProductBaseUnitModelInput = {
|
|
|
3217
3429
|
export declare type ProductBrand = {
|
|
3218
3430
|
__typename?: 'ProductBrand';
|
|
3219
3431
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3220
|
-
deleted
|
|
3432
|
+
deleted: Scalars['Boolean'];
|
|
3221
3433
|
/** The description of the product's brand. */
|
|
3222
3434
|
description?: Maybe<Scalars['String']>;
|
|
3223
3435
|
id: Scalars['ID'];
|
|
@@ -3236,7 +3448,7 @@ export declare type ProductBrand = {
|
|
|
3236
3448
|
};
|
|
3237
3449
|
export declare type ProductBrandInput = {
|
|
3238
3450
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3239
|
-
deleted?:
|
|
3451
|
+
deleted?: Scalars['Boolean'];
|
|
3240
3452
|
/** The description of the product's brand. */
|
|
3241
3453
|
description?: InputMaybe<Scalars['String']>;
|
|
3242
3454
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -3272,6 +3484,7 @@ export declare type ProductBrandTranslationInput = {
|
|
|
3272
3484
|
};
|
|
3273
3485
|
export declare type ProductImage = {
|
|
3274
3486
|
__typename?: 'ProductImage';
|
|
3487
|
+
fileName?: Maybe<Scalars['String']>;
|
|
3275
3488
|
/** Id of the product image. */
|
|
3276
3489
|
imageId?: Maybe<Scalars['String']>;
|
|
3277
3490
|
/** Whether the image is main image for the product or not. */
|
|
@@ -3282,6 +3495,7 @@ export declare type ProductImage = {
|
|
|
3282
3495
|
order: Scalars['Float'];
|
|
3283
3496
|
};
|
|
3284
3497
|
export declare type ProductImageInput = {
|
|
3498
|
+
fileName?: InputMaybe<Scalars['String']>;
|
|
3285
3499
|
imageId: Scalars['String'];
|
|
3286
3500
|
isMain: Scalars['Boolean'];
|
|
3287
3501
|
isVideo?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -3298,7 +3512,7 @@ export declare type ProductInput = {
|
|
|
3298
3512
|
brandId?: InputMaybe<Scalars['String']>;
|
|
3299
3513
|
categoryIds?: InputMaybe<Array<Scalars['String']>>;
|
|
3300
3514
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3301
|
-
deleted?:
|
|
3515
|
+
deleted?: Scalars['Boolean'];
|
|
3302
3516
|
description?: InputMaybe<Scalars['String']>;
|
|
3303
3517
|
googleTaxonomyId?: InputMaybe<Scalars['String']>;
|
|
3304
3518
|
groupVariantsByVariantTypeId?: InputMaybe<Scalars['String']>;
|
|
@@ -3324,7 +3538,7 @@ export declare type ProductOption = {
|
|
|
3324
3538
|
__typename?: 'ProductOption';
|
|
3325
3539
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3326
3540
|
dateSettings?: Maybe<ProductOptionDateSettings>;
|
|
3327
|
-
deleted
|
|
3541
|
+
deleted: Scalars['Boolean'];
|
|
3328
3542
|
fileSettings?: Maybe<ProductOptionFileSettings>;
|
|
3329
3543
|
id: Scalars['ID'];
|
|
3330
3544
|
isOptional?: Maybe<Scalars['Boolean']>;
|
|
@@ -3369,7 +3583,7 @@ export declare type ProductOptionSelectValue = {
|
|
|
3369
3583
|
__typename?: 'ProductOptionSelectValue';
|
|
3370
3584
|
colorCode?: Maybe<Scalars['String']>;
|
|
3371
3585
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3372
|
-
deleted
|
|
3586
|
+
deleted: Scalars['Boolean'];
|
|
3373
3587
|
id: Scalars['ID'];
|
|
3374
3588
|
order: Scalars['Float'];
|
|
3375
3589
|
otherPrices?: Maybe<Array<ProductOptionSelectValueOtherPrice>>;
|
|
@@ -3392,7 +3606,7 @@ export declare type ProductOptionSelectValueTranslations = {
|
|
|
3392
3606
|
export declare type ProductOptionSet = {
|
|
3393
3607
|
__typename?: 'ProductOptionSet';
|
|
3394
3608
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3395
|
-
deleted
|
|
3609
|
+
deleted: Scalars['Boolean'];
|
|
3396
3610
|
id: Scalars['ID'];
|
|
3397
3611
|
name: Scalars['String'];
|
|
3398
3612
|
options: Array<ProductOption>;
|
|
@@ -3502,7 +3716,7 @@ export declare type ProductSearchResponse = {
|
|
|
3502
3716
|
export declare type ProductStockLocation = {
|
|
3503
3717
|
__typename?: 'ProductStockLocation';
|
|
3504
3718
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3505
|
-
deleted
|
|
3719
|
+
deleted: Scalars['Boolean'];
|
|
3506
3720
|
id: Scalars['ID'];
|
|
3507
3721
|
productId: Scalars['String'];
|
|
3508
3722
|
stockCount: Scalars['Float'];
|
|
@@ -3512,7 +3726,7 @@ export declare type ProductStockLocation = {
|
|
|
3512
3726
|
};
|
|
3513
3727
|
export declare type ProductStockLocationInput = {
|
|
3514
3728
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3515
|
-
deleted?:
|
|
3729
|
+
deleted?: Scalars['Boolean'];
|
|
3516
3730
|
id?: InputMaybe<Scalars['ID']>;
|
|
3517
3731
|
/** It is the product id to which the variant associated. */
|
|
3518
3732
|
productId: Scalars['String'];
|
|
@@ -3556,7 +3770,7 @@ export declare type ProductStockLocationPaginationResponse = {
|
|
|
3556
3770
|
export declare type ProductTag = {
|
|
3557
3771
|
__typename?: 'ProductTag';
|
|
3558
3772
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3559
|
-
deleted
|
|
3773
|
+
deleted: Scalars['Boolean'];
|
|
3560
3774
|
id: Scalars['ID'];
|
|
3561
3775
|
/** The name of the product's tag. */
|
|
3562
3776
|
name: Scalars['String'];
|
|
@@ -3566,7 +3780,7 @@ export declare type ProductTag = {
|
|
|
3566
3780
|
};
|
|
3567
3781
|
export declare type ProductTagInput = {
|
|
3568
3782
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3569
|
-
deleted?:
|
|
3783
|
+
deleted?: Scalars['Boolean'];
|
|
3570
3784
|
id?: InputMaybe<Scalars['ID']>;
|
|
3571
3785
|
/** The name of the product's tag. */
|
|
3572
3786
|
name: Scalars['String'];
|
|
@@ -3615,7 +3829,7 @@ export declare enum ProductTypeEnum {
|
|
|
3615
3829
|
export declare type ProductUnit = {
|
|
3616
3830
|
__typename?: 'ProductUnit';
|
|
3617
3831
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3618
|
-
deleted
|
|
3832
|
+
deleted: Scalars['Boolean'];
|
|
3619
3833
|
id: Scalars['ID'];
|
|
3620
3834
|
/** The name of the product's unit. */
|
|
3621
3835
|
name: Scalars['String'];
|
|
@@ -3625,7 +3839,7 @@ export declare type ProductUnit = {
|
|
|
3625
3839
|
};
|
|
3626
3840
|
export declare type ProductUnitInput = {
|
|
3627
3841
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3628
|
-
deleted?:
|
|
3842
|
+
deleted?: Scalars['Boolean'];
|
|
3629
3843
|
id?: InputMaybe<Scalars['ID']>;
|
|
3630
3844
|
/** The name of the product's unit. */
|
|
3631
3845
|
name: Scalars['String'];
|
|
@@ -3687,7 +3901,7 @@ export declare type PublicTransaction = {
|
|
|
3687
3901
|
currencyCode: Scalars['String'];
|
|
3688
3902
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
3689
3903
|
customerId?: Maybe<Scalars['String']>;
|
|
3690
|
-
deleted
|
|
3904
|
+
deleted: Scalars['Boolean'];
|
|
3691
3905
|
error?: Maybe<TransactionError>;
|
|
3692
3906
|
id: Scalars['ID'];
|
|
3693
3907
|
orderId?: Maybe<Scalars['String']>;
|
|
@@ -3718,6 +3932,8 @@ export declare type Query = {
|
|
|
3718
3932
|
/** Using this api, you can view your sales channel. */
|
|
3719
3933
|
getSalesChannel?: Maybe<SalesChannel>;
|
|
3720
3934
|
getVideoUploadUrl: GetVideoUploadURLResponse;
|
|
3935
|
+
/** Use this query to get abandoned checkouts. */
|
|
3936
|
+
listAbandonedCheckouts: CartPaginationResponse;
|
|
3721
3937
|
listBranch: Array<Branch>;
|
|
3722
3938
|
listCampaign: CampaignPaginationResponse;
|
|
3723
3939
|
/**
|
|
@@ -3786,6 +4002,14 @@ export declare type QuerygetImportJobDataArgs = {
|
|
|
3786
4002
|
export declare type QuerygetVideoUploadUrlArgs = {
|
|
3787
4003
|
videoId: Scalars['String'];
|
|
3788
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
|
+
};
|
|
3789
4013
|
export declare type QuerylistBranchArgs = {
|
|
3790
4014
|
id?: InputMaybe<StringFilterInput>;
|
|
3791
4015
|
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -4016,7 +4240,7 @@ export declare enum SFAnalyticsTrafficSourceEnum {
|
|
|
4016
4240
|
export declare type SalesChannel = {
|
|
4017
4241
|
__typename?: 'SalesChannel';
|
|
4018
4242
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4019
|
-
deleted
|
|
4243
|
+
deleted: Scalars['Boolean'];
|
|
4020
4244
|
id: Scalars['ID'];
|
|
4021
4245
|
/** The sales channel name field. */
|
|
4022
4246
|
name: Scalars['String'];
|
|
@@ -4226,6 +4450,7 @@ export declare type SearchProductCustomerReviewStar = {
|
|
|
4226
4450
|
};
|
|
4227
4451
|
export declare type SearchProductImage = {
|
|
4228
4452
|
__typename?: 'SearchProductImage';
|
|
4453
|
+
fileName?: Maybe<Scalars['String']>;
|
|
4229
4454
|
id: Scalars['String'];
|
|
4230
4455
|
isMain?: Maybe<Scalars['Boolean']>;
|
|
4231
4456
|
isVideo?: Maybe<Scalars['Boolean']>;
|
|
@@ -4308,25 +4533,10 @@ export declare type SearchVariationValueRelation = {
|
|
|
4308
4533
|
variantTypeId: Scalars['String'];
|
|
4309
4534
|
variantValueId: Scalars['String'];
|
|
4310
4535
|
};
|
|
4311
|
-
export declare type ShippingZoneRegion = {
|
|
4312
|
-
__typename?: 'ShippingZoneRegion';
|
|
4313
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4314
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
4315
|
-
id: Scalars['ID'];
|
|
4316
|
-
name: Scalars['String'];
|
|
4317
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
4318
|
-
};
|
|
4319
|
-
export declare type ShippingZoneRegionInput = {
|
|
4320
|
-
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4321
|
-
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
4322
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
4323
|
-
name: Scalars['String'];
|
|
4324
|
-
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4325
|
-
};
|
|
4326
4536
|
export declare type SimpleCategory = {
|
|
4327
4537
|
__typename?: 'SimpleCategory';
|
|
4328
4538
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4329
|
-
deleted
|
|
4539
|
+
deleted: Scalars['Boolean'];
|
|
4330
4540
|
id: Scalars['ID'];
|
|
4331
4541
|
/** It is the name of the category in which the product is located. */
|
|
4332
4542
|
name: Scalars['String'];
|
|
@@ -4337,7 +4547,7 @@ export declare type SimpleCategory = {
|
|
|
4337
4547
|
export declare type SimpleProductBrand = {
|
|
4338
4548
|
__typename?: 'SimpleProductBrand';
|
|
4339
4549
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4340
|
-
deleted
|
|
4550
|
+
deleted: Scalars['Boolean'];
|
|
4341
4551
|
id: Scalars['ID'];
|
|
4342
4552
|
/** The name of the product's brand. */
|
|
4343
4553
|
name: Scalars['String'];
|
|
@@ -4346,7 +4556,7 @@ export declare type SimpleProductBrand = {
|
|
|
4346
4556
|
export declare type SimpleProductTag = {
|
|
4347
4557
|
__typename?: 'SimpleProductTag';
|
|
4348
4558
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4349
|
-
deleted
|
|
4559
|
+
deleted: Scalars['Boolean'];
|
|
4350
4560
|
id: Scalars['ID'];
|
|
4351
4561
|
/** The name of the product's tag. */
|
|
4352
4562
|
name: Scalars['String'];
|
|
@@ -4369,7 +4579,7 @@ export declare type State = {
|
|
|
4369
4579
|
/** ID indicating which country the state belongs to. */
|
|
4370
4580
|
countryId: Scalars['String'];
|
|
4371
4581
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4372
|
-
deleted
|
|
4582
|
+
deleted: Scalars['Boolean'];
|
|
4373
4583
|
id: Scalars['ID'];
|
|
4374
4584
|
/** Shows spellings of state name in different languages. */
|
|
4375
4585
|
locationTranslations?: Maybe<LocationTranslations>;
|
|
@@ -4386,7 +4596,7 @@ export declare type StockLocation = {
|
|
|
4386
4596
|
/** It is the address information of the stock location. */
|
|
4387
4597
|
address?: Maybe<StockLocationAddress>;
|
|
4388
4598
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4389
|
-
deleted
|
|
4599
|
+
deleted: Scalars['Boolean'];
|
|
4390
4600
|
/** It is the delivery time of the stock location. */
|
|
4391
4601
|
deliveryTime?: Maybe<StockLocationDeliveryTimeEnum>;
|
|
4392
4602
|
/** It is the description of the stock location. */
|
|
@@ -4470,7 +4680,7 @@ export declare enum StockLocationTypeEnum {
|
|
|
4470
4680
|
export declare type Storefront = {
|
|
4471
4681
|
__typename?: 'Storefront';
|
|
4472
4682
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4473
|
-
deleted
|
|
4683
|
+
deleted: Scalars['Boolean'];
|
|
4474
4684
|
id: Scalars['ID'];
|
|
4475
4685
|
/** The storefront's name. */
|
|
4476
4686
|
name: Scalars['String'];
|
|
@@ -4483,7 +4693,7 @@ export declare type StorefrontJSScript = {
|
|
|
4483
4693
|
/** The type of javascript script content. */
|
|
4484
4694
|
contentType?: Maybe<StorefrontJSScriptContentTypeEnum>;
|
|
4485
4695
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4486
|
-
deleted
|
|
4696
|
+
deleted: Scalars['Boolean'];
|
|
4487
4697
|
/** The type of javascript script content. */
|
|
4488
4698
|
fileName?: Maybe<Scalars['String']>;
|
|
4489
4699
|
id: Scalars['ID'];
|
|
@@ -4555,7 +4765,7 @@ export declare type Terminal = {
|
|
|
4555
4765
|
__typename?: 'Terminal';
|
|
4556
4766
|
branchId: Scalars['String'];
|
|
4557
4767
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4558
|
-
deleted
|
|
4768
|
+
deleted: Scalars['Boolean'];
|
|
4559
4769
|
id: Scalars['ID'];
|
|
4560
4770
|
name: Scalars['String'];
|
|
4561
4771
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
@@ -4571,7 +4781,7 @@ export declare type TimelineInput = {
|
|
|
4571
4781
|
export declare type Town = {
|
|
4572
4782
|
__typename?: 'Town';
|
|
4573
4783
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4574
|
-
deleted
|
|
4784
|
+
deleted: Scalars['Boolean'];
|
|
4575
4785
|
/** ID indicating which district the town belongs to. */
|
|
4576
4786
|
districtId: Scalars['String'];
|
|
4577
4787
|
id: Scalars['ID'];
|
|
@@ -4641,7 +4851,7 @@ export declare type TransactionPaymentMethodDetail = {
|
|
|
4641
4851
|
installment?: Maybe<TransactionInstallmentPrice>;
|
|
4642
4852
|
lastFourDigits: Scalars['String'];
|
|
4643
4853
|
paymentMethodName?: Maybe<Scalars['String']>;
|
|
4644
|
-
threeDSecure
|
|
4854
|
+
threeDSecure: Scalars['Boolean'];
|
|
4645
4855
|
};
|
|
4646
4856
|
export declare enum TransactionStatusEnum {
|
|
4647
4857
|
AUTHORIZED = "AUTHORIZED",
|
|
@@ -4669,7 +4879,7 @@ export declare type UpdateOrderInput = {
|
|
|
4669
4879
|
editReason: Scalars['String'];
|
|
4670
4880
|
orderId: Scalars['String'];
|
|
4671
4881
|
orderLineItems: Array<OrderLineItemInput>;
|
|
4672
|
-
restockItems?:
|
|
4882
|
+
restockItems?: Scalars['Boolean'];
|
|
4673
4883
|
};
|
|
4674
4884
|
export declare type UpdateOrderPackageStatusInput = {
|
|
4675
4885
|
/**
|
|
@@ -4729,14 +4939,16 @@ export declare type Variant = {
|
|
|
4729
4939
|
/** Show the product bundle settings. */
|
|
4730
4940
|
bundleSettings?: Maybe<BundleSettingsModel>;
|
|
4731
4941
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4732
|
-
deleted
|
|
4942
|
+
deleted: Scalars['Boolean'];
|
|
4943
|
+
/** Id of product file. */
|
|
4944
|
+
fileId?: Maybe<Scalars['String']>;
|
|
4733
4945
|
/** Hs code of the variant. */
|
|
4734
4946
|
hsCode?: Maybe<Scalars['String']>;
|
|
4735
4947
|
id: Scalars['ID'];
|
|
4736
4948
|
/** List of images for variant. */
|
|
4737
4949
|
images?: Maybe<Array<ProductImage>>;
|
|
4738
4950
|
/** Whether the variant is active or not. */
|
|
4739
|
-
isActive
|
|
4951
|
+
isActive: Scalars['Boolean'];
|
|
4740
4952
|
/** List of prices for the variant. */
|
|
4741
4953
|
prices: Array<ProductPrice>;
|
|
4742
4954
|
/** Whether to sell if variant is out of stock or not. */
|
|
@@ -4757,11 +4969,12 @@ export declare type VariantInput = {
|
|
|
4757
4969
|
barcodeList?: InputMaybe<Array<Scalars['String']>>;
|
|
4758
4970
|
bundleSettings?: InputMaybe<BundleSettingsInput>;
|
|
4759
4971
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4760
|
-
deleted?:
|
|
4972
|
+
deleted?: Scalars['Boolean'];
|
|
4973
|
+
fileId?: InputMaybe<Scalars['String']>;
|
|
4761
4974
|
hsCode?: InputMaybe<Scalars['String']>;
|
|
4762
4975
|
id?: InputMaybe<Scalars['ID']>;
|
|
4763
4976
|
images?: InputMaybe<Array<ProductImageInput>>;
|
|
4764
|
-
isActive?:
|
|
4977
|
+
isActive?: Scalars['Boolean'];
|
|
4765
4978
|
prices: Array<ProductPriceInput>;
|
|
4766
4979
|
sellIfOutOfStock?: InputMaybe<Scalars['Boolean']>;
|
|
4767
4980
|
sku?: InputMaybe<Scalars['String']>;
|
|
@@ -4787,7 +5000,7 @@ export declare enum VariantSelectionTypeEnum {
|
|
|
4787
5000
|
export declare type VariantType = {
|
|
4788
5001
|
__typename?: 'VariantType';
|
|
4789
5002
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4790
|
-
deleted
|
|
5003
|
+
deleted: Scalars['Boolean'];
|
|
4791
5004
|
id: Scalars['ID'];
|
|
4792
5005
|
/** Product variant type name information. **For example: Size, Color, Number etc.**.It can be a maximum of 100 characters. */
|
|
4793
5006
|
name: Scalars['String'];
|
|
@@ -4801,7 +5014,7 @@ export declare type VariantType = {
|
|
|
4801
5014
|
};
|
|
4802
5015
|
export declare type VariantTypeInput = {
|
|
4803
5016
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4804
|
-
deleted?:
|
|
5017
|
+
deleted?: Scalars['Boolean'];
|
|
4805
5018
|
id?: InputMaybe<Scalars['ID']>;
|
|
4806
5019
|
/** Product variant type name information. **For example: Size, Color, Number etc.**.It can be a maximum of 100 characters. */
|
|
4807
5020
|
name: Scalars['String'];
|
|
@@ -4846,7 +5059,7 @@ export declare type VariantValue = {
|
|
|
4846
5059
|
/** It is the color code information of the variant values. It can be a maximum of 7 characters. */
|
|
4847
5060
|
colorCode?: Maybe<Scalars['String']>;
|
|
4848
5061
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4849
|
-
deleted
|
|
5062
|
+
deleted: Scalars['Boolean'];
|
|
4850
5063
|
id: Scalars['ID'];
|
|
4851
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. */
|
|
4852
5065
|
name: Scalars['String'];
|
|
@@ -4858,7 +5071,7 @@ export declare type VariantValueInput = {
|
|
|
4858
5071
|
/** It is the color code information of the variant values. It can be a maximum of 7 characters. */
|
|
4859
5072
|
colorCode?: InputMaybe<Scalars['String']>;
|
|
4860
5073
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4861
|
-
deleted?:
|
|
5074
|
+
deleted?: Scalars['Boolean'];
|
|
4862
5075
|
id?: InputMaybe<Scalars['ID']>;
|
|
4863
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. */
|
|
4864
5077
|
name: Scalars['String'];
|
|
@@ -4893,7 +5106,7 @@ export declare type Vendor = {
|
|
|
4893
5106
|
address?: Maybe<Scalars['String']>;
|
|
4894
5107
|
company?: Maybe<Scalars['String']>;
|
|
4895
5108
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4896
|
-
deleted
|
|
5109
|
+
deleted: Scalars['Boolean'];
|
|
4897
5110
|
email?: Maybe<Scalars['String']>;
|
|
4898
5111
|
id: Scalars['ID'];
|
|
4899
5112
|
name: Scalars['String'];
|
|
@@ -4908,7 +5121,7 @@ export declare type VendorInput = {
|
|
|
4908
5121
|
address?: InputMaybe<Scalars['String']>;
|
|
4909
5122
|
company?: InputMaybe<Scalars['String']>;
|
|
4910
5123
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4911
|
-
deleted?:
|
|
5124
|
+
deleted?: Scalars['Boolean'];
|
|
4912
5125
|
email?: InputMaybe<Scalars['String']>;
|
|
4913
5126
|
id?: InputMaybe<Scalars['ID']>;
|
|
4914
5127
|
name: Scalars['String'];
|
|
@@ -4928,7 +5141,7 @@ export declare enum VendorStatusEnum {
|
|
|
4928
5141
|
export declare type Webhook = {
|
|
4929
5142
|
__typename?: 'Webhook';
|
|
4930
5143
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4931
|
-
deleted
|
|
5144
|
+
deleted: Scalars['Boolean'];
|
|
4932
5145
|
/** URL address that webhooks will be pushed. */
|
|
4933
5146
|
endpoint: Scalars['String'];
|
|
4934
5147
|
id: Scalars['ID'];
|