@ikas/api-client 1.0.20-alpha.3 → 1.0.20-alpha.5
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 +306 -91
- package/dist/api/admin/generated/index.js +22 -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'];
|
|
@@ -447,6 +450,7 @@ export declare type Campaign = {
|
|
|
447
450
|
onlyUseCustomer?: Maybe<Scalars['Boolean']>;
|
|
448
451
|
salesChannelIds?: Maybe<Array<Scalars['String']>>;
|
|
449
452
|
title: Scalars['String'];
|
|
453
|
+
translations?: Maybe<Array<CampaignTranslation>>;
|
|
450
454
|
type: CampaignTypeEnum;
|
|
451
455
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
452
456
|
usageCount: Scalars['Int'];
|
|
@@ -497,7 +501,7 @@ export declare type CampaignInput = {
|
|
|
497
501
|
createdFor?: InputMaybe<CampaignCreatedForEnum>;
|
|
498
502
|
currencyCodes?: InputMaybe<Array<Scalars['String']>>;
|
|
499
503
|
dateRange?: InputMaybe<CampaignDateRangeFieldInput>;
|
|
500
|
-
deleted?:
|
|
504
|
+
deleted?: Scalars['Boolean'];
|
|
501
505
|
fixedDiscount?: InputMaybe<FixedDiscountInput>;
|
|
502
506
|
hasCoupon: Scalars['Boolean'];
|
|
503
507
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -525,10 +529,11 @@ export declare type CampaignOffer = {
|
|
|
525
529
|
availableSalesChannelIds: Array<Scalars['String']>;
|
|
526
530
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
527
531
|
currencyCodes?: Maybe<Array<Scalars['String']>>;
|
|
528
|
-
deleted
|
|
532
|
+
deleted: Scalars['Boolean'];
|
|
529
533
|
endDate?: Maybe<Scalars['Timestamp']>;
|
|
530
534
|
followUpActionType: CampaignOfferFollowUpActionTypeEnum;
|
|
531
535
|
id: Scalars['ID'];
|
|
536
|
+
maximumRequiredCartAmount?: Maybe<Scalars['Float']>;
|
|
532
537
|
minimumRequiredCartAmount?: Maybe<Scalars['Float']>;
|
|
533
538
|
name: Scalars['String'];
|
|
534
539
|
offers: Array<CampaignOfferProduct>;
|
|
@@ -623,6 +628,13 @@ export declare type CampaignPaginationResponse = {
|
|
|
623
628
|
*/
|
|
624
629
|
page: Scalars['Int'];
|
|
625
630
|
};
|
|
631
|
+
export declare type CampaignTranslation = {
|
|
632
|
+
__typename?: 'CampaignTranslation';
|
|
633
|
+
/** It is the name information of the translation. */
|
|
634
|
+
locale: Scalars['String'];
|
|
635
|
+
/** It is the title information of the translation. */
|
|
636
|
+
title?: Maybe<Scalars['String']>;
|
|
637
|
+
};
|
|
626
638
|
export declare enum CampaignTypeEnum {
|
|
627
639
|
BUY_X_THEN_GET_Y = "BUY_X_THEN_GET_Y",
|
|
628
640
|
FIXED_AMOUNT = "FIXED_AMOUNT",
|
|
@@ -630,9 +642,14 @@ export declare enum CampaignTypeEnum {
|
|
|
630
642
|
RATIO = "RATIO"
|
|
631
643
|
}
|
|
632
644
|
export declare type CancelFulfillmentInput = {
|
|
645
|
+
lines?: InputMaybe<Array<CancelFulfillmentOrderLineInput>>;
|
|
633
646
|
orderId: Scalars['String'];
|
|
634
647
|
orderPackageId: Scalars['String'];
|
|
635
648
|
};
|
|
649
|
+
export declare type CancelFulfillmentOrderLineInput = {
|
|
650
|
+
orderLineItemId: Scalars['String'];
|
|
651
|
+
quantity: Scalars['Float'];
|
|
652
|
+
};
|
|
636
653
|
export declare type CancelOrderLineInput = {
|
|
637
654
|
orderId: Scalars['String'];
|
|
638
655
|
orderLineItems: Array<CancelOrderLineItemInput>;
|
|
@@ -640,7 +657,44 @@ export declare type CancelOrderLineInput = {
|
|
|
640
657
|
export declare type CancelOrderLineItemInput = {
|
|
641
658
|
orderLineItemId: Scalars['String'];
|
|
642
659
|
quantity: Scalars['Float'];
|
|
643
|
-
restockItems?:
|
|
660
|
+
restockItems?: Scalars['Boolean'];
|
|
661
|
+
};
|
|
662
|
+
export declare type Cart = {
|
|
663
|
+
__typename?: 'Cart';
|
|
664
|
+
campaignOffers?: Maybe<Array<CartCampaignOffer>>;
|
|
665
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
666
|
+
createdBy?: Maybe<CartCreatedByEnum>;
|
|
667
|
+
currencyCode?: Maybe<Scalars['String']>;
|
|
668
|
+
currencySymbol?: Maybe<Scalars['String']>;
|
|
669
|
+
customerId?: Maybe<Scalars['String']>;
|
|
670
|
+
deleted: Scalars['Boolean'];
|
|
671
|
+
dueDate: Scalars['Timestamp'];
|
|
672
|
+
id: Scalars['ID'];
|
|
673
|
+
itemCount: Scalars['Float'];
|
|
674
|
+
items: Array<OrderLineItem>;
|
|
675
|
+
lastActivityDate: Scalars['Timestamp'];
|
|
676
|
+
merchantId: Scalars['String'];
|
|
677
|
+
priceListId?: Maybe<Scalars['String']>;
|
|
678
|
+
salesChannelId: Scalars['String'];
|
|
679
|
+
status: CartStatusEnum;
|
|
680
|
+
storefrontId?: Maybe<Scalars['String']>;
|
|
681
|
+
storefrontRouting?: Maybe<CartStorefrontRouting>;
|
|
682
|
+
storefrontRoutingId?: Maybe<Scalars['String']>;
|
|
683
|
+
storefrontThemeId?: Maybe<Scalars['String']>;
|
|
684
|
+
taxLines?: Maybe<Array<OrderTaxLine>>;
|
|
685
|
+
totalPrice: Scalars['Float'];
|
|
686
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
687
|
+
};
|
|
688
|
+
export declare type CartCampaignOffer = {
|
|
689
|
+
__typename?: 'CartCampaignOffer';
|
|
690
|
+
appliedOrderLineId?: Maybe<Scalars['String']>;
|
|
691
|
+
campaignOfferId: Scalars['String'];
|
|
692
|
+
campaignOfferProductId?: Maybe<Scalars['String']>;
|
|
693
|
+
offerEndDate?: Maybe<Scalars['Timestamp']>;
|
|
694
|
+
offerStartDate: Scalars['Timestamp'];
|
|
695
|
+
status: CartCampaignOfferStatus;
|
|
696
|
+
targetPageTypes: Array<CampaignOfferTargetPageTypeEnum>;
|
|
697
|
+
triggerSourceOrderLineId: Scalars['String'];
|
|
644
698
|
};
|
|
645
699
|
export declare enum CartCampaignOfferStatus {
|
|
646
700
|
ACCEPTED = "ACCEPTED",
|
|
@@ -652,6 +706,56 @@ export declare enum CartCreatedByEnum {
|
|
|
652
706
|
ADMIN = "ADMIN",
|
|
653
707
|
CUSTOMER = "CUSTOMER"
|
|
654
708
|
}
|
|
709
|
+
export declare type CartPaginationResponse = {
|
|
710
|
+
__typename?: 'CartPaginationResponse';
|
|
711
|
+
/**
|
|
712
|
+
* Returns the first three records of each page in the records returned as a response.
|
|
713
|
+
* For example, **let's say page = 3, limit = 30, count = 3.**
|
|
714
|
+
* The records that will return as a response are the records **between 60-62.**
|
|
715
|
+
*/
|
|
716
|
+
count: Scalars['Int'];
|
|
717
|
+
data: Array<Checkout>;
|
|
718
|
+
/** In the records returned as Response, it shows whether there are any more records or not. For example, let's say our page field is three and our limit field is thirty. Records between 60 and 90 will be returned. If hasNext is `true` despite these records, **it means there are more records.** If hasNext is `false`, it means there are a total of **90 records.** */
|
|
719
|
+
hasNext: Scalars['Boolean'];
|
|
720
|
+
/**
|
|
721
|
+
* The maximum number of data you want to see on a page in the records returned as a response.
|
|
722
|
+
* For example, if the limit is **20**, the data will be displayed ** as 20 each. **
|
|
723
|
+
* :::note
|
|
724
|
+
* min 1, max 200 values can be given. If no value is entered, default 50 is accepted.
|
|
725
|
+
* :::
|
|
726
|
+
*/
|
|
727
|
+
limit: Scalars['Int'];
|
|
728
|
+
/**
|
|
729
|
+
* The number of the page you want to see in the records that return as response.
|
|
730
|
+
* For example: We entered the page field as **3**.And let our limit field be **30**.
|
|
731
|
+
* The records that will return as a response are the records **between 60-90.**
|
|
732
|
+
* :::note
|
|
733
|
+
* If no value is entered, default 1 is accepted.
|
|
734
|
+
* :::
|
|
735
|
+
*/
|
|
736
|
+
page: Scalars['Int'];
|
|
737
|
+
};
|
|
738
|
+
export declare enum CartStatusEnum {
|
|
739
|
+
ACTIVE = "ACTIVE",
|
|
740
|
+
FREEZE = "FREEZE",
|
|
741
|
+
PASSIVE = "PASSIVE"
|
|
742
|
+
}
|
|
743
|
+
export declare type CartStorefrontRouting = {
|
|
744
|
+
__typename?: 'CartStorefrontRouting';
|
|
745
|
+
domain?: Maybe<Scalars['String']>;
|
|
746
|
+
dynamicCurrencySettings?: Maybe<CartStorefrontRoutingDynamicCurrencySettings>;
|
|
747
|
+
id: Scalars['String'];
|
|
748
|
+
locale?: Maybe<Scalars['String']>;
|
|
749
|
+
path?: Maybe<Scalars['String']>;
|
|
750
|
+
priceListId?: Maybe<Scalars['String']>;
|
|
751
|
+
};
|
|
752
|
+
export declare type CartStorefrontRoutingDynamicCurrencySettings = {
|
|
753
|
+
__typename?: 'CartStorefrontRoutingDynamicCurrencySettings';
|
|
754
|
+
/** One of '.x0' | '.x9' | '.00' | '.90' | '.99' | '0.00' */
|
|
755
|
+
roundingFormat?: Maybe<Scalars['String']>;
|
|
756
|
+
targetCurrencyCode: Scalars['String'];
|
|
757
|
+
targetCurrencySymbol?: Maybe<Scalars['String']>;
|
|
758
|
+
};
|
|
655
759
|
export declare type CartV2CampaignOffer = {
|
|
656
760
|
__typename?: 'CartV2CampaignOffer';
|
|
657
761
|
appliedOrderLineId?: Maybe<Scalars['String']>;
|
|
@@ -678,7 +782,7 @@ export declare type Category = {
|
|
|
678
782
|
categoryPathItems?: Maybe<Array<CategoryPathItem>>;
|
|
679
783
|
conditions?: Maybe<Array<CategoryCondition>>;
|
|
680
784
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
681
|
-
deleted
|
|
785
|
+
deleted: Scalars['Boolean'];
|
|
682
786
|
/** It is the description of the category of the product. */
|
|
683
787
|
description?: Maybe<Scalars['String']>;
|
|
684
788
|
id: Scalars['ID'];
|
|
@@ -734,7 +838,7 @@ export declare type CategoryFilterInput = {
|
|
|
734
838
|
export declare type CategoryInput = {
|
|
735
839
|
conditions?: InputMaybe<Array<CategoryConditionInput>>;
|
|
736
840
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
737
|
-
deleted?:
|
|
841
|
+
deleted?: Scalars['Boolean'];
|
|
738
842
|
/** It is the description of the category of the product. */
|
|
739
843
|
description?: InputMaybe<Scalars['String']>;
|
|
740
844
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -761,7 +865,7 @@ export declare type CategoryPathFilterInput = {
|
|
|
761
865
|
export declare type CategoryPathItem = {
|
|
762
866
|
__typename?: 'CategoryPathItem';
|
|
763
867
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
764
|
-
deleted
|
|
868
|
+
deleted: Scalars['Boolean'];
|
|
765
869
|
/** It is the description of the category of the product. */
|
|
766
870
|
description?: Maybe<Scalars['String']>;
|
|
767
871
|
id: Scalars['ID'];
|
|
@@ -804,6 +908,52 @@ export declare type CategoryTranslationInput = {
|
|
|
804
908
|
/** It is the information in which language the translation is saved. */
|
|
805
909
|
name?: InputMaybe<Scalars['String']>;
|
|
806
910
|
};
|
|
911
|
+
export declare type Checkout = {
|
|
912
|
+
__typename?: 'Checkout';
|
|
913
|
+
abandonedCheckoutFlows?: Maybe<Array<AbandonedCartFlow>>;
|
|
914
|
+
adjustments?: Maybe<Array<OrderAdjustment>>;
|
|
915
|
+
availableShippingMethods?: Maybe<Array<AvailableShippingMethod>>;
|
|
916
|
+
billingAddress?: Maybe<OrderAddress>;
|
|
917
|
+
cart?: Maybe<Cart>;
|
|
918
|
+
cartId: Scalars['String'];
|
|
919
|
+
couponCode?: Maybe<Scalars['String']>;
|
|
920
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
921
|
+
customer?: Maybe<CheckoutCustomer>;
|
|
922
|
+
deleted: Scalars['Boolean'];
|
|
923
|
+
giftPackageLines?: Maybe<Array<OrderGiftPackageLine>>;
|
|
924
|
+
giftPackageNote?: Maybe<Scalars['String']>;
|
|
925
|
+
id: Scalars['ID'];
|
|
926
|
+
isGiftPackage?: Maybe<Scalars['Boolean']>;
|
|
927
|
+
merchantId: Scalars['String'];
|
|
928
|
+
note?: Maybe<Scalars['String']>;
|
|
929
|
+
orderId?: Maybe<Scalars['String']>;
|
|
930
|
+
orderNumber?: Maybe<Scalars['String']>;
|
|
931
|
+
orderedAt?: Maybe<Scalars['Timestamp']>;
|
|
932
|
+
recoverEmailStatus?: Maybe<CheckoutRecoveryEmailStatusEnum>;
|
|
933
|
+
recoveryStatus?: Maybe<CheckoutRecoveryStatusEnum>;
|
|
934
|
+
shippingAddress?: Maybe<OrderAddress>;
|
|
935
|
+
shippingLines?: Maybe<Array<OrderShippingLine>>;
|
|
936
|
+
shippingMethod: OrderShippingMethodEnum;
|
|
937
|
+
shippingSettingsId?: Maybe<Scalars['String']>;
|
|
938
|
+
shippingZoneRateId?: Maybe<Scalars['String']>;
|
|
939
|
+
status: CheckoutStatusEnum;
|
|
940
|
+
stockLocationId?: Maybe<Scalars['String']>;
|
|
941
|
+
totalFinalPrice: Scalars['Float'];
|
|
942
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
943
|
+
};
|
|
944
|
+
export declare type CheckoutCustomer = {
|
|
945
|
+
__typename?: 'CheckoutCustomer';
|
|
946
|
+
accountStatus?: Maybe<CustomerAccountStatusEnum>;
|
|
947
|
+
customerGroupIds?: Maybe<Array<Scalars['String']>>;
|
|
948
|
+
email?: Maybe<Scalars['String']>;
|
|
949
|
+
firstName?: Maybe<Scalars['String']>;
|
|
950
|
+
id?: Maybe<Scalars['String']>;
|
|
951
|
+
identityNumber?: Maybe<Scalars['String']>;
|
|
952
|
+
lastName?: Maybe<Scalars['String']>;
|
|
953
|
+
notificationsAccepted?: Maybe<Scalars['Boolean']>;
|
|
954
|
+
phone?: Maybe<Scalars['String']>;
|
|
955
|
+
subscriptionStatus?: Maybe<CustomerEmailSubscriptionStatusesEnum>;
|
|
956
|
+
};
|
|
807
957
|
export declare enum CheckoutRecoveryEmailStatusEnum {
|
|
808
958
|
NOT_SENT = "NOT_SENT",
|
|
809
959
|
SENT = "SENT"
|
|
@@ -812,6 +962,12 @@ export declare enum CheckoutRecoveryStatusEnum {
|
|
|
812
962
|
NOT_RECOVERED = "NOT_RECOVERED",
|
|
813
963
|
RECOVERED = "RECOVERED"
|
|
814
964
|
}
|
|
965
|
+
export declare enum CheckoutStatusEnum {
|
|
966
|
+
COMPLETED = "COMPLETED",
|
|
967
|
+
FREEZE = "FREEZE",
|
|
968
|
+
KILLED = "KILLED",
|
|
969
|
+
OPEN = "OPEN"
|
|
970
|
+
}
|
|
815
971
|
export declare type City = {
|
|
816
972
|
__typename?: 'City';
|
|
817
973
|
/** The two-letter city code corresponding to the city. */
|
|
@@ -819,7 +975,7 @@ export declare type City = {
|
|
|
819
975
|
/** ID indicating which country the city belongs to. */
|
|
820
976
|
countryId: Scalars['String'];
|
|
821
977
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
822
|
-
deleted
|
|
978
|
+
deleted: Scalars['Boolean'];
|
|
823
979
|
id: Scalars['ID'];
|
|
824
980
|
/** Indicates the latitude of the city. */
|
|
825
981
|
latitude?: Maybe<Scalars['String']>;
|
|
@@ -842,7 +998,7 @@ export declare type Country = {
|
|
|
842
998
|
currency?: Maybe<Scalars['String']>;
|
|
843
999
|
currencyCode?: Maybe<Scalars['String']>;
|
|
844
1000
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
845
|
-
deleted
|
|
1001
|
+
deleted: Scalars['Boolean'];
|
|
846
1002
|
/** Indicates the flag emoji of the county. */
|
|
847
1003
|
emoji?: Maybe<Scalars['String']>;
|
|
848
1004
|
/** Indicates the flag emoji code of the county. */
|
|
@@ -872,7 +1028,7 @@ export declare type Coupon = {
|
|
|
872
1028
|
canCombineWithOtherCampaigns: Scalars['Boolean'];
|
|
873
1029
|
code: Scalars['String'];
|
|
874
1030
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
875
|
-
deleted
|
|
1031
|
+
deleted: Scalars['Boolean'];
|
|
876
1032
|
id: Scalars['ID'];
|
|
877
1033
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
878
1034
|
usageCount: Scalars['Int'];
|
|
@@ -922,7 +1078,7 @@ export declare type CreateOrderInput = {
|
|
|
922
1078
|
currencyCode?: InputMaybe<Scalars['String']>;
|
|
923
1079
|
/** It is the customer information in the order. */
|
|
924
1080
|
customer?: InputMaybe<OrderCustomerInput>;
|
|
925
|
-
deleted?:
|
|
1081
|
+
deleted?: Scalars['Boolean'];
|
|
926
1082
|
/** Host name of order source. */
|
|
927
1083
|
host?: InputMaybe<Scalars['String']>;
|
|
928
1084
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -955,6 +1111,8 @@ export declare type CreateOrderInput = {
|
|
|
955
1111
|
shippingLines?: InputMaybe<Array<OrderShippingLineInput>>;
|
|
956
1112
|
/** It is the shipping method enum of the order */
|
|
957
1113
|
shippingMethod?: InputMaybe<OrderShippingMethodEnum>;
|
|
1114
|
+
/** It is the source id of the order. If the order came from the marketplace, it shows the order number in the marketplace. */
|
|
1115
|
+
sourceId?: InputMaybe<Scalars['String']>;
|
|
958
1116
|
/** It is the terminal session id of the order. If the order is placed via ikasPos, this field can be sent as filled. */
|
|
959
1117
|
terminalId?: InputMaybe<Scalars['String']>;
|
|
960
1118
|
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
@@ -983,7 +1141,7 @@ export declare type Customer = {
|
|
|
983
1141
|
customerGroupIds?: Maybe<Array<Scalars['String']>>;
|
|
984
1142
|
/** It is the sequence value of the customer. The sequence value starts from 1. */
|
|
985
1143
|
customerSequence?: Maybe<Scalars['Float']>;
|
|
986
|
-
deleted
|
|
1144
|
+
deleted: Scalars['Boolean'];
|
|
987
1145
|
/** The unique email address of the customer. Attempting to assign the same email address to multiple customers returns an error. */
|
|
988
1146
|
email?: Maybe<Scalars['String']>;
|
|
989
1147
|
/** The date the **email** was verified. */
|
|
@@ -993,6 +1151,7 @@ export declare type Customer = {
|
|
|
993
1151
|
/** Customer's full name. Firstname plus lastname if firstname and lastname exist. Otherwise, it is saved as firstname only. */
|
|
994
1152
|
fullName?: Maybe<Scalars['String']>;
|
|
995
1153
|
id: Scalars['ID'];
|
|
1154
|
+
ip?: Maybe<Scalars['String']>;
|
|
996
1155
|
/** Email verification status. **isEmailVerified** returns `true` if the email is verified. */
|
|
997
1156
|
isEmailVerified?: Maybe<Scalars['Boolean']>;
|
|
998
1157
|
/** Phone verification status. **isPhoneVerified** returns `true` if the email is verified. */
|
|
@@ -1018,6 +1177,7 @@ export declare type Customer = {
|
|
|
1018
1177
|
/** Tags that the store owner attaches to the customer. */
|
|
1019
1178
|
tagIds?: Maybe<Array<Scalars['String']>>;
|
|
1020
1179
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1180
|
+
userAgent?: Maybe<Scalars['String']>;
|
|
1021
1181
|
};
|
|
1022
1182
|
/** Customer Account Statuses */
|
|
1023
1183
|
export declare enum CustomerAccountStatusEnum {
|
|
@@ -1040,7 +1200,7 @@ export declare type CustomerAddress = {
|
|
|
1040
1200
|
/** The customer's country. */
|
|
1041
1201
|
country: CustomerAddressCountry;
|
|
1042
1202
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1043
|
-
deleted
|
|
1203
|
+
deleted: Scalars['Boolean'];
|
|
1044
1204
|
/** The customer's district in city. */
|
|
1045
1205
|
district?: Maybe<CustomerAddressDistrict>;
|
|
1046
1206
|
/** The customer's first name. */
|
|
@@ -1056,6 +1216,7 @@ export declare type CustomerAddress = {
|
|
|
1056
1216
|
phone?: Maybe<Scalars['String']>;
|
|
1057
1217
|
/** The customer's postal code, also known as zip, postcode, etc. */
|
|
1058
1218
|
postalCode?: Maybe<Scalars['String']>;
|
|
1219
|
+
region?: Maybe<CustomerAddressRegion>;
|
|
1059
1220
|
state?: Maybe<CustomerAddressState>;
|
|
1060
1221
|
/** Tax number that the customer will use for orders */
|
|
1061
1222
|
taxNumber?: Maybe<Scalars['String']>;
|
|
@@ -1092,6 +1253,14 @@ export declare type CustomerAddressDistrict = {
|
|
|
1092
1253
|
/** The customer's normalized district name. */
|
|
1093
1254
|
name?: Maybe<Scalars['String']>;
|
|
1094
1255
|
};
|
|
1256
|
+
export declare type CustomerAddressRegion = {
|
|
1257
|
+
__typename?: 'CustomerAddressRegion';
|
|
1258
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1259
|
+
deleted?: Maybe<Scalars['Boolean']>;
|
|
1260
|
+
id: Scalars['String'];
|
|
1261
|
+
name: Scalars['String'];
|
|
1262
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1263
|
+
};
|
|
1095
1264
|
export declare type CustomerAddressState = {
|
|
1096
1265
|
__typename?: 'CustomerAddressState';
|
|
1097
1266
|
code?: Maybe<Scalars['String']>;
|
|
@@ -1101,7 +1270,7 @@ export declare type CustomerAddressState = {
|
|
|
1101
1270
|
export declare type CustomerAttribute = {
|
|
1102
1271
|
__typename?: 'CustomerAttribute';
|
|
1103
1272
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1104
|
-
deleted
|
|
1273
|
+
deleted: Scalars['Boolean'];
|
|
1105
1274
|
description?: Maybe<Scalars['String']>;
|
|
1106
1275
|
id: Scalars['ID'];
|
|
1107
1276
|
name: Scalars['String'];
|
|
@@ -1115,7 +1284,7 @@ export declare type CustomerAttribute = {
|
|
|
1115
1284
|
export declare type CustomerAttributeOption = {
|
|
1116
1285
|
__typename?: 'CustomerAttributeOption';
|
|
1117
1286
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1118
|
-
deleted
|
|
1287
|
+
deleted: Scalars['Boolean'];
|
|
1119
1288
|
id: Scalars['ID'];
|
|
1120
1289
|
name: Scalars['String'];
|
|
1121
1290
|
order?: Maybe<Scalars['Float']>;
|
|
@@ -1234,7 +1403,7 @@ export declare type District = {
|
|
|
1234
1403
|
/** ID indicating which country the district belongs to. */
|
|
1235
1404
|
countryId: Scalars['String'];
|
|
1236
1405
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1237
|
-
deleted
|
|
1406
|
+
deleted: Scalars['Boolean'];
|
|
1238
1407
|
id: Scalars['ID'];
|
|
1239
1408
|
/** Indicates the latitude of the city. */
|
|
1240
1409
|
latitude?: Maybe<Scalars['String']>;
|
|
@@ -1309,7 +1478,7 @@ export declare type GetYInput = {
|
|
|
1309
1478
|
export declare type GlobalTaxSettings = {
|
|
1310
1479
|
__typename?: 'GlobalTaxSettings';
|
|
1311
1480
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1312
|
-
deleted
|
|
1481
|
+
deleted: Scalars['Boolean'];
|
|
1313
1482
|
id: Scalars['ID'];
|
|
1314
1483
|
isTaxExcludedOnPrices: Scalars['Boolean'];
|
|
1315
1484
|
isTaxExcludedOnShippingPrices: Scalars['Boolean'];
|
|
@@ -1320,7 +1489,7 @@ export declare type HTMLMetaData = {
|
|
|
1320
1489
|
/** Canonical URL list of entity. */
|
|
1321
1490
|
canonicals?: Maybe<Array<Scalars['String']>>;
|
|
1322
1491
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1323
|
-
deleted
|
|
1492
|
+
deleted: Scalars['Boolean'];
|
|
1324
1493
|
/** The description of the metadata. */
|
|
1325
1494
|
description?: Maybe<Scalars['String']>;
|
|
1326
1495
|
/** Defines if the entity is not indexable by search engines */
|
|
@@ -1341,7 +1510,7 @@ export declare type HTMLMetaData = {
|
|
|
1341
1510
|
export declare type HTMLMetaDataInput = {
|
|
1342
1511
|
canonicals?: InputMaybe<Array<Scalars['String']>>;
|
|
1343
1512
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1344
|
-
deleted?:
|
|
1513
|
+
deleted?: Scalars['Boolean'];
|
|
1345
1514
|
description?: InputMaybe<Scalars['String']>;
|
|
1346
1515
|
disableIndex?: InputMaybe<Scalars['Boolean']>;
|
|
1347
1516
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -1424,12 +1593,27 @@ export declare enum InvoiceTypeEnum {
|
|
|
1424
1593
|
export declare type Language = {
|
|
1425
1594
|
__typename?: 'Language';
|
|
1426
1595
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1427
|
-
deleted
|
|
1596
|
+
deleted: Scalars['Boolean'];
|
|
1428
1597
|
id: Scalars['ID'];
|
|
1429
1598
|
locale: Scalars['String'];
|
|
1430
1599
|
name: Scalars['String'];
|
|
1431
1600
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1432
1601
|
};
|
|
1602
|
+
export declare type ListAbandonedCartInput = {
|
|
1603
|
+
recoverEmailStatus?: InputMaybe<CheckoutRecoveryEmailStatusEnum>;
|
|
1604
|
+
recoveryStatus?: InputMaybe<CheckoutRecoveryStatusEnum>;
|
|
1605
|
+
};
|
|
1606
|
+
export declare type LocalDeliverySettingsDayEstimatedDeliveryTime = {
|
|
1607
|
+
__typename?: 'LocalDeliverySettingsDayEstimatedDeliveryTime';
|
|
1608
|
+
type: LocalDeliverySettingsDeliveryTimeType;
|
|
1609
|
+
value: Scalars['Float'];
|
|
1610
|
+
};
|
|
1611
|
+
/** LocalDeliverySettingsDeliveryTimeType */
|
|
1612
|
+
export declare enum LocalDeliverySettingsDeliveryTimeType {
|
|
1613
|
+
DAY = "DAY",
|
|
1614
|
+
HOUR = "HOUR",
|
|
1615
|
+
MINUTE = "MINUTE"
|
|
1616
|
+
}
|
|
1433
1617
|
export declare type LocationTranslations = {
|
|
1434
1618
|
__typename?: 'LocationTranslations';
|
|
1435
1619
|
de?: Maybe<Scalars['String']>;
|
|
@@ -1526,7 +1710,7 @@ export declare type MerchantAppPayment = {
|
|
|
1526
1710
|
/** The id of the app that generated the app payment. Actually, the id of the app for which merchant app payment was created. */
|
|
1527
1711
|
authorizedAppId?: Maybe<Scalars['String']>;
|
|
1528
1712
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1529
|
-
deleted
|
|
1713
|
+
deleted: Scalars['Boolean'];
|
|
1530
1714
|
id: Scalars['ID'];
|
|
1531
1715
|
/** The url where the Merchant will be redirected to the payment screen. On this page, the payment process is performed by obtaining the card information. */
|
|
1532
1716
|
merchantPaymentUrl: Scalars['String'];
|
|
@@ -1606,7 +1790,7 @@ export declare type MerchantAppSubscription = {
|
|
|
1606
1790
|
currency?: Maybe<SubscriptionPriceCurrencyEnum>;
|
|
1607
1791
|
currencyCode?: Maybe<Scalars['String']>;
|
|
1608
1792
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
1609
|
-
deleted
|
|
1793
|
+
deleted: Scalars['Boolean'];
|
|
1610
1794
|
id: Scalars['ID'];
|
|
1611
1795
|
/** It is the date of receipt of the last payment for the license subscription. */
|
|
1612
1796
|
lastPaymentDate?: Maybe<Scalars['Timestamp']>;
|
|
@@ -1635,7 +1819,7 @@ export declare type MerchantLicence = {
|
|
|
1635
1819
|
/** If the license is attached to an app, its properties are kept in this domain. */
|
|
1636
1820
|
appSubscriptions?: Maybe<Array<MerchantAppSubscription>>;
|
|
1637
1821
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1638
|
-
deleted
|
|
1822
|
+
deleted: Scalars['Boolean'];
|
|
1639
1823
|
developmentStore?: Maybe<Scalars['Boolean']>;
|
|
1640
1824
|
/** It is the information of the start date of the license. */
|
|
1641
1825
|
fromDate?: Maybe<Scalars['Timestamp']>;
|
|
@@ -1985,7 +2169,7 @@ export declare type Order = {
|
|
|
1985
2169
|
customerId?: Maybe<Scalars['String']>;
|
|
1986
2170
|
/** It shows the number of orders given by the relevant customer. */
|
|
1987
2171
|
customerOrderCount?: Maybe<Scalars['Float']>;
|
|
1988
|
-
deleted
|
|
2172
|
+
deleted: Scalars['Boolean'];
|
|
1989
2173
|
dueDate?: Maybe<Scalars['Timestamp']>;
|
|
1990
2174
|
/** A list of gift package line objects, each containing information about a gift package pricing in the order. */
|
|
1991
2175
|
giftPackageLines?: Maybe<Array<OrderGiftPackageLine>>;
|
|
@@ -1999,6 +2183,7 @@ export declare type Order = {
|
|
|
1999
2183
|
/** Indicates whether there is a gift package in the order. **isGiftPackage** returns `true` if the order has gift package */
|
|
2000
2184
|
isGiftPackage?: Maybe<Scalars['Boolean']>;
|
|
2001
2185
|
itemCount?: Maybe<Scalars['Float']>;
|
|
2186
|
+
lastActivityDate?: Maybe<Scalars['Timestamp']>;
|
|
2002
2187
|
merchantId: Scalars['String'];
|
|
2003
2188
|
/** An optional note, can attach to the order. */
|
|
2004
2189
|
note?: Maybe<Scalars['String']>;
|
|
@@ -2041,6 +2226,7 @@ export declare type Order = {
|
|
|
2041
2226
|
shippingMethod: OrderShippingMethodEnum;
|
|
2042
2227
|
shippingSettingsId?: Maybe<Scalars['String']>;
|
|
2043
2228
|
shippingZoneRateId?: Maybe<Scalars['String']>;
|
|
2229
|
+
sourceId?: Maybe<Scalars['String']>;
|
|
2044
2230
|
/** It is the `staff` information of the orders created via ikasPOS. */
|
|
2045
2231
|
staff?: Maybe<OrderStaff>;
|
|
2046
2232
|
/** It is the status enum of the order */
|
|
@@ -2098,7 +2284,7 @@ export declare type OrderAddress = {
|
|
|
2098
2284
|
/** The postal code of the address. */
|
|
2099
2285
|
postalCode?: Maybe<Scalars['String']>;
|
|
2100
2286
|
/** The region information of the address. */
|
|
2101
|
-
region?: Maybe<
|
|
2287
|
+
region?: Maybe<OrderAddressRegion>;
|
|
2102
2288
|
/** The state information of the address. */
|
|
2103
2289
|
state?: Maybe<OrderAddressState>;
|
|
2104
2290
|
/** The tax number of the person associated with the address. */
|
|
@@ -2182,7 +2368,7 @@ export declare type OrderAddressInput = {
|
|
|
2182
2368
|
/** The postal code of the address. */
|
|
2183
2369
|
postalCode?: InputMaybe<Scalars['String']>;
|
|
2184
2370
|
/** The name of the region of the address. */
|
|
2185
|
-
region?: InputMaybe<
|
|
2371
|
+
region?: InputMaybe<OrderAddressRegionInput>;
|
|
2186
2372
|
/** The name of the state of the address. */
|
|
2187
2373
|
state?: InputMaybe<OrderAddressStateInput>;
|
|
2188
2374
|
/** The tax number of the person associated with the address. */
|
|
@@ -2190,6 +2376,20 @@ export declare type OrderAddressInput = {
|
|
|
2190
2376
|
/** The tax office of the person associated with the address. */
|
|
2191
2377
|
taxOffice?: InputMaybe<Scalars['String']>;
|
|
2192
2378
|
};
|
|
2379
|
+
export declare type OrderAddressRegion = {
|
|
2380
|
+
__typename?: 'OrderAddressRegion';
|
|
2381
|
+
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2382
|
+
deleted?: Maybe<Scalars['Boolean']>;
|
|
2383
|
+
/** It is the id of the region of the address. */
|
|
2384
|
+
id: Scalars['String'];
|
|
2385
|
+
/** It is the name of the region of the address. */
|
|
2386
|
+
name: Scalars['String'];
|
|
2387
|
+
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
2388
|
+
};
|
|
2389
|
+
export declare type OrderAddressRegionInput = {
|
|
2390
|
+
id: Scalars['String'];
|
|
2391
|
+
name: Scalars['String'];
|
|
2392
|
+
};
|
|
2193
2393
|
export declare type OrderAddressState = {
|
|
2194
2394
|
__typename?: 'OrderAddressState';
|
|
2195
2395
|
/** It is the code of the state of the address. */
|
|
@@ -2313,6 +2513,8 @@ export declare type OrderCustomer = {
|
|
|
2313
2513
|
notificationsAccepted?: Maybe<Scalars['Boolean']>;
|
|
2314
2514
|
/** It is the phone number of the customer who created the order. */
|
|
2315
2515
|
phone?: Maybe<Scalars['String']>;
|
|
2516
|
+
/** It is the preferred language of the customer who created the order. */
|
|
2517
|
+
preferredLanguage?: Maybe<Scalars['String']>;
|
|
2316
2518
|
};
|
|
2317
2519
|
export declare type OrderCustomerInput = {
|
|
2318
2520
|
/** It is the email of the customer who created the order. */
|
|
@@ -2349,6 +2551,8 @@ export declare type OrderLineBundleVariant = {
|
|
|
2349
2551
|
brand?: Maybe<OrderLineVariantBrand>;
|
|
2350
2552
|
/** A list of category objects, each containing information about a category in the variant. */
|
|
2351
2553
|
categories?: Maybe<Array<OrderLineVariantCategory>>;
|
|
2554
|
+
/** It is the id of the product file. */
|
|
2555
|
+
fileId?: Maybe<Scalars['String']>;
|
|
2352
2556
|
/** It is the hasCode of the variant. */
|
|
2353
2557
|
hsCode?: Maybe<Scalars['String']>;
|
|
2354
2558
|
/** It is the id of the variant. */
|
|
@@ -2405,7 +2609,7 @@ export declare type OrderLineItem = {
|
|
|
2405
2609
|
/** It is the currency code of the order line item. */
|
|
2406
2610
|
currencyCode?: Maybe<Scalars['String']>;
|
|
2407
2611
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
2408
|
-
deleted
|
|
2612
|
+
deleted: Scalars['Boolean'];
|
|
2409
2613
|
/** Information about the discount. Shows the details of the discount applied to the order line item. */
|
|
2410
2614
|
discount?: Maybe<OrderLineDiscount>;
|
|
2411
2615
|
/** It is the discount price of the order line item. */
|
|
@@ -2423,6 +2627,7 @@ export declare type OrderLineItem = {
|
|
|
2423
2627
|
price: Scalars['Float'];
|
|
2424
2628
|
/** It is the quantity of variant in the order line item. */
|
|
2425
2629
|
quantity: Scalars['Float'];
|
|
2630
|
+
sourceId?: Maybe<Scalars['String']>;
|
|
2426
2631
|
/** It is the status enum of the order line item */
|
|
2427
2632
|
status: OrderLineItemStatusEnum;
|
|
2428
2633
|
/** It is the date when the last status of the order line item was updated. */
|
|
@@ -2439,7 +2644,7 @@ export declare type OrderLineItem = {
|
|
|
2439
2644
|
};
|
|
2440
2645
|
export declare type OrderLineItemInput = {
|
|
2441
2646
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2442
|
-
deleted?:
|
|
2647
|
+
deleted?: Scalars['Boolean'];
|
|
2443
2648
|
/** It is the discount information that will be applied to the line item. */
|
|
2444
2649
|
discount?: InputMaybe<OrderLineDiscountInput>;
|
|
2445
2650
|
/** It is the discount price of the line item. */
|
|
@@ -2451,6 +2656,8 @@ export declare type OrderLineItemInput = {
|
|
|
2451
2656
|
price: Scalars['Float'];
|
|
2452
2657
|
/** It is the quantity of the line item. */
|
|
2453
2658
|
quantity: Scalars['Float'];
|
|
2659
|
+
/** It is the source id of the line item. If the order came from the marketplace, it shows the line id in the marketplace. */
|
|
2660
|
+
sourceId?: InputMaybe<Scalars['String']>;
|
|
2454
2661
|
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2455
2662
|
/** It is the variant information in the order line item. */
|
|
2456
2663
|
variant: OrderLineVariantInput;
|
|
@@ -2514,6 +2721,8 @@ export declare type OrderLineVariant = {
|
|
|
2514
2721
|
bundleProducts?: Maybe<Array<OrderLineVariantBundleProductModel>>;
|
|
2515
2722
|
/** A list of category objects, each containing information about a category in the variant. */
|
|
2516
2723
|
categories?: Maybe<Array<OrderLineVariantCategory>>;
|
|
2724
|
+
/** It is the id of the product file. */
|
|
2725
|
+
fileId?: Maybe<Scalars['String']>;
|
|
2517
2726
|
/** It is the hasCode of the variant. */
|
|
2518
2727
|
hsCode?: Maybe<Scalars['String']>;
|
|
2519
2728
|
/** It is the id of the variant. */
|
|
@@ -2652,7 +2861,7 @@ export declare type OrderLineVariantVariantValues = {
|
|
|
2652
2861
|
export declare type OrderPackage = {
|
|
2653
2862
|
__typename?: 'OrderPackage';
|
|
2654
2863
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2655
|
-
deleted
|
|
2864
|
+
deleted: Scalars['Boolean'];
|
|
2656
2865
|
/** If the package was sent via the cargo application and received an error, this field is filled with an error message. */
|
|
2657
2866
|
errorMessage?: Maybe<Scalars['String']>;
|
|
2658
2867
|
id: Scalars['ID'];
|
|
@@ -2664,6 +2873,7 @@ export declare type OrderPackage = {
|
|
|
2664
2873
|
orderPackageFulfillStatus: OrderPackageFulfillStatusEnum;
|
|
2665
2874
|
/** It is the number of order package. Order package number is created with the order number - order package sequence format. */
|
|
2666
2875
|
orderPackageNumber: Scalars['String'];
|
|
2876
|
+
sourceId?: Maybe<Scalars['String']>;
|
|
2667
2877
|
stockLocationId: Scalars['String'];
|
|
2668
2878
|
/** It is the stock location id information where the package will be shipped. */
|
|
2669
2879
|
trackingInfo?: Maybe<TrackingInfo>;
|
|
@@ -2800,7 +3010,7 @@ export declare type OrderRefundInput = {
|
|
|
2800
3010
|
export declare type OrderRefundLineInput = {
|
|
2801
3011
|
orderLineItemId: Scalars['String'];
|
|
2802
3012
|
quantity: Scalars['Float'];
|
|
2803
|
-
restockItems?:
|
|
3013
|
+
restockItems?: Scalars['Boolean'];
|
|
2804
3014
|
};
|
|
2805
3015
|
export declare type OrderSalesChannel = {
|
|
2806
3016
|
__typename?: 'OrderSalesChannel';
|
|
@@ -2967,7 +3177,7 @@ export declare type OrderStorefrontTheme = {
|
|
|
2967
3177
|
export declare type OrderTag = {
|
|
2968
3178
|
__typename?: 'OrderTag';
|
|
2969
3179
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2970
|
-
deleted
|
|
3180
|
+
deleted: Scalars['Boolean'];
|
|
2971
3181
|
id: Scalars['ID'];
|
|
2972
3182
|
merchantId: Scalars['String'];
|
|
2973
3183
|
name: Scalars['String'];
|
|
@@ -2975,7 +3185,7 @@ export declare type OrderTag = {
|
|
|
2975
3185
|
};
|
|
2976
3186
|
export declare type OrderTagInput = {
|
|
2977
3187
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2978
|
-
deleted?:
|
|
3188
|
+
deleted?: Scalars['Boolean'];
|
|
2979
3189
|
id?: InputMaybe<Scalars['ID']>;
|
|
2980
3190
|
name: Scalars['String'];
|
|
2981
3191
|
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
@@ -3033,7 +3243,7 @@ export declare type PriceList = {
|
|
|
3033
3243
|
currency: Scalars['String'];
|
|
3034
3244
|
currencyCode?: Maybe<Scalars['String']>;
|
|
3035
3245
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
3036
|
-
deleted
|
|
3246
|
+
deleted: Scalars['Boolean'];
|
|
3037
3247
|
id: Scalars['ID'];
|
|
3038
3248
|
/** It is the name of the price list of the product. */
|
|
3039
3249
|
name: Scalars['String'];
|
|
@@ -3054,7 +3264,7 @@ export declare type Product = {
|
|
|
3054
3264
|
/** List category identifiers of the product. */
|
|
3055
3265
|
categoryIds?: Maybe<Array<Scalars['String']>>;
|
|
3056
3266
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3057
|
-
deleted
|
|
3267
|
+
deleted: Scalars['Boolean'];
|
|
3058
3268
|
/** Description of the product. */
|
|
3059
3269
|
description?: Maybe<Scalars['String']>;
|
|
3060
3270
|
googleTaxonomyId?: Maybe<Scalars['String']>;
|
|
@@ -3097,7 +3307,7 @@ export declare type Product = {
|
|
|
3097
3307
|
export declare type ProductAttribute = {
|
|
3098
3308
|
__typename?: 'ProductAttribute';
|
|
3099
3309
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3100
|
-
deleted
|
|
3310
|
+
deleted: Scalars['Boolean'];
|
|
3101
3311
|
/** Description of the attribute */
|
|
3102
3312
|
description?: Maybe<Scalars['String']>;
|
|
3103
3313
|
id: Scalars['ID'];
|
|
@@ -3115,7 +3325,7 @@ export declare type ProductAttribute = {
|
|
|
3115
3325
|
};
|
|
3116
3326
|
export declare type ProductAttributeInput = {
|
|
3117
3327
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3118
|
-
deleted?:
|
|
3328
|
+
deleted?: Scalars['Boolean'];
|
|
3119
3329
|
description?: InputMaybe<Scalars['String']>;
|
|
3120
3330
|
id?: InputMaybe<Scalars['ID']>;
|
|
3121
3331
|
name: Scalars['String'];
|
|
@@ -3128,7 +3338,7 @@ export declare type ProductAttributeInput = {
|
|
|
3128
3338
|
export declare type ProductAttributeOption = {
|
|
3129
3339
|
__typename?: 'ProductAttributeOption';
|
|
3130
3340
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3131
|
-
deleted
|
|
3341
|
+
deleted: Scalars['Boolean'];
|
|
3132
3342
|
id: Scalars['ID'];
|
|
3133
3343
|
/** Name of the product attribute option */
|
|
3134
3344
|
name: Scalars['String'];
|
|
@@ -3136,7 +3346,7 @@ export declare type ProductAttributeOption = {
|
|
|
3136
3346
|
};
|
|
3137
3347
|
export declare type ProductAttributeOptionInput = {
|
|
3138
3348
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3139
|
-
deleted?:
|
|
3349
|
+
deleted?: Scalars['Boolean'];
|
|
3140
3350
|
id?: InputMaybe<Scalars['ID']>;
|
|
3141
3351
|
name: Scalars['String'];
|
|
3142
3352
|
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
@@ -3236,7 +3446,7 @@ export declare type ProductBaseUnitModelInput = {
|
|
|
3236
3446
|
export declare type ProductBrand = {
|
|
3237
3447
|
__typename?: 'ProductBrand';
|
|
3238
3448
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3239
|
-
deleted
|
|
3449
|
+
deleted: Scalars['Boolean'];
|
|
3240
3450
|
/** The description of the product's brand. */
|
|
3241
3451
|
description?: Maybe<Scalars['String']>;
|
|
3242
3452
|
id: Scalars['ID'];
|
|
@@ -3255,7 +3465,7 @@ export declare type ProductBrand = {
|
|
|
3255
3465
|
};
|
|
3256
3466
|
export declare type ProductBrandInput = {
|
|
3257
3467
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3258
|
-
deleted?:
|
|
3468
|
+
deleted?: Scalars['Boolean'];
|
|
3259
3469
|
/** The description of the product's brand. */
|
|
3260
3470
|
description?: InputMaybe<Scalars['String']>;
|
|
3261
3471
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -3291,6 +3501,7 @@ export declare type ProductBrandTranslationInput = {
|
|
|
3291
3501
|
};
|
|
3292
3502
|
export declare type ProductImage = {
|
|
3293
3503
|
__typename?: 'ProductImage';
|
|
3504
|
+
fileName?: Maybe<Scalars['String']>;
|
|
3294
3505
|
/** Id of the product image. */
|
|
3295
3506
|
imageId?: Maybe<Scalars['String']>;
|
|
3296
3507
|
/** Whether the image is main image for the product or not. */
|
|
@@ -3301,6 +3512,7 @@ export declare type ProductImage = {
|
|
|
3301
3512
|
order: Scalars['Float'];
|
|
3302
3513
|
};
|
|
3303
3514
|
export declare type ProductImageInput = {
|
|
3515
|
+
fileName?: InputMaybe<Scalars['String']>;
|
|
3304
3516
|
imageId: Scalars['String'];
|
|
3305
3517
|
isMain: Scalars['Boolean'];
|
|
3306
3518
|
isVideo?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -3317,7 +3529,7 @@ export declare type ProductInput = {
|
|
|
3317
3529
|
brandId?: InputMaybe<Scalars['String']>;
|
|
3318
3530
|
categoryIds?: InputMaybe<Array<Scalars['String']>>;
|
|
3319
3531
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3320
|
-
deleted?:
|
|
3532
|
+
deleted?: Scalars['Boolean'];
|
|
3321
3533
|
description?: InputMaybe<Scalars['String']>;
|
|
3322
3534
|
googleTaxonomyId?: InputMaybe<Scalars['String']>;
|
|
3323
3535
|
groupVariantsByVariantTypeId?: InputMaybe<Scalars['String']>;
|
|
@@ -3343,7 +3555,7 @@ export declare type ProductOption = {
|
|
|
3343
3555
|
__typename?: 'ProductOption';
|
|
3344
3556
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3345
3557
|
dateSettings?: Maybe<ProductOptionDateSettings>;
|
|
3346
|
-
deleted
|
|
3558
|
+
deleted: Scalars['Boolean'];
|
|
3347
3559
|
fileSettings?: Maybe<ProductOptionFileSettings>;
|
|
3348
3560
|
id: Scalars['ID'];
|
|
3349
3561
|
isOptional?: Maybe<Scalars['Boolean']>;
|
|
@@ -3388,7 +3600,7 @@ export declare type ProductOptionSelectValue = {
|
|
|
3388
3600
|
__typename?: 'ProductOptionSelectValue';
|
|
3389
3601
|
colorCode?: Maybe<Scalars['String']>;
|
|
3390
3602
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3391
|
-
deleted
|
|
3603
|
+
deleted: Scalars['Boolean'];
|
|
3392
3604
|
id: Scalars['ID'];
|
|
3393
3605
|
order: Scalars['Float'];
|
|
3394
3606
|
otherPrices?: Maybe<Array<ProductOptionSelectValueOtherPrice>>;
|
|
@@ -3411,7 +3623,7 @@ export declare type ProductOptionSelectValueTranslations = {
|
|
|
3411
3623
|
export declare type ProductOptionSet = {
|
|
3412
3624
|
__typename?: 'ProductOptionSet';
|
|
3413
3625
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3414
|
-
deleted
|
|
3626
|
+
deleted: Scalars['Boolean'];
|
|
3415
3627
|
id: Scalars['ID'];
|
|
3416
3628
|
name: Scalars['String'];
|
|
3417
3629
|
options: Array<ProductOption>;
|
|
@@ -3521,7 +3733,7 @@ export declare type ProductSearchResponse = {
|
|
|
3521
3733
|
export declare type ProductStockLocation = {
|
|
3522
3734
|
__typename?: 'ProductStockLocation';
|
|
3523
3735
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3524
|
-
deleted
|
|
3736
|
+
deleted: Scalars['Boolean'];
|
|
3525
3737
|
id: Scalars['ID'];
|
|
3526
3738
|
productId: Scalars['String'];
|
|
3527
3739
|
stockCount: Scalars['Float'];
|
|
@@ -3531,7 +3743,7 @@ export declare type ProductStockLocation = {
|
|
|
3531
3743
|
};
|
|
3532
3744
|
export declare type ProductStockLocationInput = {
|
|
3533
3745
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3534
|
-
deleted?:
|
|
3746
|
+
deleted?: Scalars['Boolean'];
|
|
3535
3747
|
id?: InputMaybe<Scalars['ID']>;
|
|
3536
3748
|
/** It is the product id to which the variant associated. */
|
|
3537
3749
|
productId: Scalars['String'];
|
|
@@ -3575,7 +3787,7 @@ export declare type ProductStockLocationPaginationResponse = {
|
|
|
3575
3787
|
export declare type ProductTag = {
|
|
3576
3788
|
__typename?: 'ProductTag';
|
|
3577
3789
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3578
|
-
deleted
|
|
3790
|
+
deleted: Scalars['Boolean'];
|
|
3579
3791
|
id: Scalars['ID'];
|
|
3580
3792
|
/** The name of the product's tag. */
|
|
3581
3793
|
name: Scalars['String'];
|
|
@@ -3585,7 +3797,7 @@ export declare type ProductTag = {
|
|
|
3585
3797
|
};
|
|
3586
3798
|
export declare type ProductTagInput = {
|
|
3587
3799
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3588
|
-
deleted?:
|
|
3800
|
+
deleted?: Scalars['Boolean'];
|
|
3589
3801
|
id?: InputMaybe<Scalars['ID']>;
|
|
3590
3802
|
/** The name of the product's tag. */
|
|
3591
3803
|
name: Scalars['String'];
|
|
@@ -3634,7 +3846,7 @@ export declare enum ProductTypeEnum {
|
|
|
3634
3846
|
export declare type ProductUnit = {
|
|
3635
3847
|
__typename?: 'ProductUnit';
|
|
3636
3848
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
3637
|
-
deleted
|
|
3849
|
+
deleted: Scalars['Boolean'];
|
|
3638
3850
|
id: Scalars['ID'];
|
|
3639
3851
|
/** The name of the product's unit. */
|
|
3640
3852
|
name: Scalars['String'];
|
|
@@ -3644,7 +3856,7 @@ export declare type ProductUnit = {
|
|
|
3644
3856
|
};
|
|
3645
3857
|
export declare type ProductUnitInput = {
|
|
3646
3858
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
3647
|
-
deleted?:
|
|
3859
|
+
deleted?: Scalars['Boolean'];
|
|
3648
3860
|
id?: InputMaybe<Scalars['ID']>;
|
|
3649
3861
|
/** The name of the product's unit. */
|
|
3650
3862
|
name: Scalars['String'];
|
|
@@ -3706,7 +3918,7 @@ export declare type PublicTransaction = {
|
|
|
3706
3918
|
currencyCode: Scalars['String'];
|
|
3707
3919
|
currencySymbol?: Maybe<Scalars['String']>;
|
|
3708
3920
|
customerId?: Maybe<Scalars['String']>;
|
|
3709
|
-
deleted
|
|
3921
|
+
deleted: Scalars['Boolean'];
|
|
3710
3922
|
error?: Maybe<TransactionError>;
|
|
3711
3923
|
id: Scalars['ID'];
|
|
3712
3924
|
orderId?: Maybe<Scalars['String']>;
|
|
@@ -3737,6 +3949,8 @@ export declare type Query = {
|
|
|
3737
3949
|
/** Using this api, you can view your sales channel. */
|
|
3738
3950
|
getSalesChannel?: Maybe<SalesChannel>;
|
|
3739
3951
|
getVideoUploadUrl: GetVideoUploadURLResponse;
|
|
3952
|
+
/** Use this query to get abandoned checkouts. */
|
|
3953
|
+
listAbandonedCheckouts: CartPaginationResponse;
|
|
3740
3954
|
listBranch: Array<Branch>;
|
|
3741
3955
|
listCampaign: CampaignPaginationResponse;
|
|
3742
3956
|
/**
|
|
@@ -3805,6 +4019,14 @@ export declare type QuerygetImportJobDataArgs = {
|
|
|
3805
4019
|
export declare type QuerygetVideoUploadUrlArgs = {
|
|
3806
4020
|
videoId: Scalars['String'];
|
|
3807
4021
|
};
|
|
4022
|
+
export declare type QuerylistAbandonedCheckoutsArgs = {
|
|
4023
|
+
id?: InputMaybe<StringFilterInput>;
|
|
4024
|
+
input: ListAbandonedCartInput;
|
|
4025
|
+
mailSendDate?: InputMaybe<DateFilterInput>;
|
|
4026
|
+
pagination?: InputMaybe<PaginationInput>;
|
|
4027
|
+
sort?: InputMaybe<Scalars['String']>;
|
|
4028
|
+
updatedAt?: InputMaybe<DateFilterInput>;
|
|
4029
|
+
};
|
|
3808
4030
|
export declare type QuerylistBranchArgs = {
|
|
3809
4031
|
id?: InputMaybe<StringFilterInput>;
|
|
3810
4032
|
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -4035,7 +4257,7 @@ export declare enum SFAnalyticsTrafficSourceEnum {
|
|
|
4035
4257
|
export declare type SalesChannel = {
|
|
4036
4258
|
__typename?: 'SalesChannel';
|
|
4037
4259
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4038
|
-
deleted
|
|
4260
|
+
deleted: Scalars['Boolean'];
|
|
4039
4261
|
id: Scalars['ID'];
|
|
4040
4262
|
/** The sales channel name field. */
|
|
4041
4263
|
name: Scalars['String'];
|
|
@@ -4245,6 +4467,7 @@ export declare type SearchProductCustomerReviewStar = {
|
|
|
4245
4467
|
};
|
|
4246
4468
|
export declare type SearchProductImage = {
|
|
4247
4469
|
__typename?: 'SearchProductImage';
|
|
4470
|
+
fileName?: Maybe<Scalars['String']>;
|
|
4248
4471
|
id: Scalars['String'];
|
|
4249
4472
|
isMain?: Maybe<Scalars['Boolean']>;
|
|
4250
4473
|
isVideo?: Maybe<Scalars['Boolean']>;
|
|
@@ -4327,25 +4550,10 @@ export declare type SearchVariationValueRelation = {
|
|
|
4327
4550
|
variantTypeId: Scalars['String'];
|
|
4328
4551
|
variantValueId: Scalars['String'];
|
|
4329
4552
|
};
|
|
4330
|
-
export declare type ShippingZoneRegion = {
|
|
4331
|
-
__typename?: 'ShippingZoneRegion';
|
|
4332
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4333
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
4334
|
-
id: Scalars['ID'];
|
|
4335
|
-
name: Scalars['String'];
|
|
4336
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
4337
|
-
};
|
|
4338
|
-
export declare type ShippingZoneRegionInput = {
|
|
4339
|
-
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4340
|
-
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
4341
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
4342
|
-
name: Scalars['String'];
|
|
4343
|
-
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4344
|
-
};
|
|
4345
4553
|
export declare type SimpleCategory = {
|
|
4346
4554
|
__typename?: 'SimpleCategory';
|
|
4347
4555
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4348
|
-
deleted
|
|
4556
|
+
deleted: Scalars['Boolean'];
|
|
4349
4557
|
id: Scalars['ID'];
|
|
4350
4558
|
/** It is the name of the category in which the product is located. */
|
|
4351
4559
|
name: Scalars['String'];
|
|
@@ -4356,7 +4564,7 @@ export declare type SimpleCategory = {
|
|
|
4356
4564
|
export declare type SimpleProductBrand = {
|
|
4357
4565
|
__typename?: 'SimpleProductBrand';
|
|
4358
4566
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4359
|
-
deleted
|
|
4567
|
+
deleted: Scalars['Boolean'];
|
|
4360
4568
|
id: Scalars['ID'];
|
|
4361
4569
|
/** The name of the product's brand. */
|
|
4362
4570
|
name: Scalars['String'];
|
|
@@ -4365,7 +4573,7 @@ export declare type SimpleProductBrand = {
|
|
|
4365
4573
|
export declare type SimpleProductTag = {
|
|
4366
4574
|
__typename?: 'SimpleProductTag';
|
|
4367
4575
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4368
|
-
deleted
|
|
4576
|
+
deleted: Scalars['Boolean'];
|
|
4369
4577
|
id: Scalars['ID'];
|
|
4370
4578
|
/** The name of the product's tag. */
|
|
4371
4579
|
name: Scalars['String'];
|
|
@@ -4388,7 +4596,7 @@ export declare type State = {
|
|
|
4388
4596
|
/** ID indicating which country the state belongs to. */
|
|
4389
4597
|
countryId: Scalars['String'];
|
|
4390
4598
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4391
|
-
deleted
|
|
4599
|
+
deleted: Scalars['Boolean'];
|
|
4392
4600
|
id: Scalars['ID'];
|
|
4393
4601
|
/** Shows spellings of state name in different languages. */
|
|
4394
4602
|
locationTranslations?: Maybe<LocationTranslations>;
|
|
@@ -4405,7 +4613,7 @@ export declare type StockLocation = {
|
|
|
4405
4613
|
/** It is the address information of the stock location. */
|
|
4406
4614
|
address?: Maybe<StockLocationAddress>;
|
|
4407
4615
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4408
|
-
deleted
|
|
4616
|
+
deleted: Scalars['Boolean'];
|
|
4409
4617
|
/** It is the delivery time of the stock location. */
|
|
4410
4618
|
deliveryTime?: Maybe<StockLocationDeliveryTimeEnum>;
|
|
4411
4619
|
/** It is the description of the stock location. */
|
|
@@ -4489,7 +4697,7 @@ export declare enum StockLocationTypeEnum {
|
|
|
4489
4697
|
export declare type Storefront = {
|
|
4490
4698
|
__typename?: 'Storefront';
|
|
4491
4699
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4492
|
-
deleted
|
|
4700
|
+
deleted: Scalars['Boolean'];
|
|
4493
4701
|
id: Scalars['ID'];
|
|
4494
4702
|
/** The storefront's name. */
|
|
4495
4703
|
name: Scalars['String'];
|
|
@@ -4502,7 +4710,7 @@ export declare type StorefrontJSScript = {
|
|
|
4502
4710
|
/** The type of javascript script content. */
|
|
4503
4711
|
contentType?: Maybe<StorefrontJSScriptContentTypeEnum>;
|
|
4504
4712
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4505
|
-
deleted
|
|
4713
|
+
deleted: Scalars['Boolean'];
|
|
4506
4714
|
/** The type of javascript script content. */
|
|
4507
4715
|
fileName?: Maybe<Scalars['String']>;
|
|
4508
4716
|
id: Scalars['ID'];
|
|
@@ -4574,7 +4782,7 @@ export declare type Terminal = {
|
|
|
4574
4782
|
__typename?: 'Terminal';
|
|
4575
4783
|
branchId: Scalars['String'];
|
|
4576
4784
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4577
|
-
deleted
|
|
4785
|
+
deleted: Scalars['Boolean'];
|
|
4578
4786
|
id: Scalars['ID'];
|
|
4579
4787
|
name: Scalars['String'];
|
|
4580
4788
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
@@ -4590,7 +4798,7 @@ export declare type TimelineInput = {
|
|
|
4590
4798
|
export declare type Town = {
|
|
4591
4799
|
__typename?: 'Town';
|
|
4592
4800
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4593
|
-
deleted
|
|
4801
|
+
deleted: Scalars['Boolean'];
|
|
4594
4802
|
/** ID indicating which district the town belongs to. */
|
|
4595
4803
|
districtId: Scalars['String'];
|
|
4596
4804
|
id: Scalars['ID'];
|
|
@@ -4660,7 +4868,7 @@ export declare type TransactionPaymentMethodDetail = {
|
|
|
4660
4868
|
installment?: Maybe<TransactionInstallmentPrice>;
|
|
4661
4869
|
lastFourDigits: Scalars['String'];
|
|
4662
4870
|
paymentMethodName?: Maybe<Scalars['String']>;
|
|
4663
|
-
threeDSecure
|
|
4871
|
+
threeDSecure: Scalars['Boolean'];
|
|
4664
4872
|
};
|
|
4665
4873
|
export declare enum TransactionStatusEnum {
|
|
4666
4874
|
AUTHORIZED = "AUTHORIZED",
|
|
@@ -4688,7 +4896,7 @@ export declare type UpdateOrderInput = {
|
|
|
4688
4896
|
editReason: Scalars['String'];
|
|
4689
4897
|
orderId: Scalars['String'];
|
|
4690
4898
|
orderLineItems: Array<OrderLineItemInput>;
|
|
4691
|
-
restockItems?:
|
|
4899
|
+
restockItems?: Scalars['Boolean'];
|
|
4692
4900
|
};
|
|
4693
4901
|
export declare type UpdateOrderPackageStatusInput = {
|
|
4694
4902
|
/**
|
|
@@ -4698,6 +4906,8 @@ export declare type UpdateOrderPackageStatusInput = {
|
|
|
4698
4906
|
orderId: Scalars['String'];
|
|
4699
4907
|
/** A list of package objects, each containing input about an package in the order. */
|
|
4700
4908
|
packages: Array<UpdateOrderPackageStatusPackagesInput>;
|
|
4909
|
+
/** It is the source id of the order. */
|
|
4910
|
+
sourceId?: InputMaybe<Scalars['String']>;
|
|
4701
4911
|
};
|
|
4702
4912
|
export declare type UpdateOrderPackageStatusPackagesInput = {
|
|
4703
4913
|
/** If the package fulfill status is an `ERROR` , this field can be sent as full. */
|
|
@@ -4707,6 +4917,8 @@ export declare type UpdateOrderPackageStatusPackagesInput = {
|
|
|
4707
4917
|
* * Is the entered id must be exist in ikas.
|
|
4708
4918
|
*/
|
|
4709
4919
|
packageId: Scalars['String'];
|
|
4920
|
+
/** It is the source id of the package. */
|
|
4921
|
+
sourceId?: InputMaybe<Scalars['String']>;
|
|
4710
4922
|
/** It is the status enum of the will be updated package */
|
|
4711
4923
|
status: OrderPackageFulfillStatusEnum;
|
|
4712
4924
|
/** It is the tracking information of the package */
|
|
@@ -4748,14 +4960,16 @@ export declare type Variant = {
|
|
|
4748
4960
|
/** Show the product bundle settings. */
|
|
4749
4961
|
bundleSettings?: Maybe<BundleSettingsModel>;
|
|
4750
4962
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4751
|
-
deleted
|
|
4963
|
+
deleted: Scalars['Boolean'];
|
|
4964
|
+
/** Id of product file. */
|
|
4965
|
+
fileId?: Maybe<Scalars['String']>;
|
|
4752
4966
|
/** Hs code of the variant. */
|
|
4753
4967
|
hsCode?: Maybe<Scalars['String']>;
|
|
4754
4968
|
id: Scalars['ID'];
|
|
4755
4969
|
/** List of images for variant. */
|
|
4756
4970
|
images?: Maybe<Array<ProductImage>>;
|
|
4757
4971
|
/** Whether the variant is active or not. */
|
|
4758
|
-
isActive
|
|
4972
|
+
isActive: Scalars['Boolean'];
|
|
4759
4973
|
/** List of prices for the variant. */
|
|
4760
4974
|
prices: Array<ProductPrice>;
|
|
4761
4975
|
/** Whether to sell if variant is out of stock or not. */
|
|
@@ -4776,11 +4990,12 @@ export declare type VariantInput = {
|
|
|
4776
4990
|
barcodeList?: InputMaybe<Array<Scalars['String']>>;
|
|
4777
4991
|
bundleSettings?: InputMaybe<BundleSettingsInput>;
|
|
4778
4992
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4779
|
-
deleted?:
|
|
4993
|
+
deleted?: Scalars['Boolean'];
|
|
4994
|
+
fileId?: InputMaybe<Scalars['String']>;
|
|
4780
4995
|
hsCode?: InputMaybe<Scalars['String']>;
|
|
4781
4996
|
id?: InputMaybe<Scalars['ID']>;
|
|
4782
4997
|
images?: InputMaybe<Array<ProductImageInput>>;
|
|
4783
|
-
isActive?:
|
|
4998
|
+
isActive?: Scalars['Boolean'];
|
|
4784
4999
|
prices: Array<ProductPriceInput>;
|
|
4785
5000
|
sellIfOutOfStock?: InputMaybe<Scalars['Boolean']>;
|
|
4786
5001
|
sku?: InputMaybe<Scalars['String']>;
|
|
@@ -4806,7 +5021,7 @@ export declare enum VariantSelectionTypeEnum {
|
|
|
4806
5021
|
export declare type VariantType = {
|
|
4807
5022
|
__typename?: 'VariantType';
|
|
4808
5023
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4809
|
-
deleted
|
|
5024
|
+
deleted: Scalars['Boolean'];
|
|
4810
5025
|
id: Scalars['ID'];
|
|
4811
5026
|
/** Product variant type name information. **For example: Size, Color, Number etc.**.It can be a maximum of 100 characters. */
|
|
4812
5027
|
name: Scalars['String'];
|
|
@@ -4820,7 +5035,7 @@ export declare type VariantType = {
|
|
|
4820
5035
|
};
|
|
4821
5036
|
export declare type VariantTypeInput = {
|
|
4822
5037
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4823
|
-
deleted?:
|
|
5038
|
+
deleted?: Scalars['Boolean'];
|
|
4824
5039
|
id?: InputMaybe<Scalars['ID']>;
|
|
4825
5040
|
/** Product variant type name information. **For example: Size, Color, Number etc.**.It can be a maximum of 100 characters. */
|
|
4826
5041
|
name: Scalars['String'];
|
|
@@ -4865,7 +5080,7 @@ export declare type VariantValue = {
|
|
|
4865
5080
|
/** It is the color code information of the variant values. It can be a maximum of 7 characters. */
|
|
4866
5081
|
colorCode?: Maybe<Scalars['String']>;
|
|
4867
5082
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4868
|
-
deleted
|
|
5083
|
+
deleted: Scalars['Boolean'];
|
|
4869
5084
|
id: Scalars['ID'];
|
|
4870
5085
|
/** It is the name information of the values used in the Variant type. Value information of Variant type is unique according to name.It can be a maximum of 100 characters. */
|
|
4871
5086
|
name: Scalars['String'];
|
|
@@ -4877,7 +5092,7 @@ export declare type VariantValueInput = {
|
|
|
4877
5092
|
/** It is the color code information of the variant values. It can be a maximum of 7 characters. */
|
|
4878
5093
|
colorCode?: InputMaybe<Scalars['String']>;
|
|
4879
5094
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4880
|
-
deleted?:
|
|
5095
|
+
deleted?: Scalars['Boolean'];
|
|
4881
5096
|
id?: InputMaybe<Scalars['ID']>;
|
|
4882
5097
|
/** It is the name information of the values used in the Variant type. Value information of Variant type is unique according to name.It can be a maximum of 100 characters. */
|
|
4883
5098
|
name: Scalars['String'];
|
|
@@ -4912,7 +5127,7 @@ export declare type Vendor = {
|
|
|
4912
5127
|
address?: Maybe<Scalars['String']>;
|
|
4913
5128
|
company?: Maybe<Scalars['String']>;
|
|
4914
5129
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4915
|
-
deleted
|
|
5130
|
+
deleted: Scalars['Boolean'];
|
|
4916
5131
|
email?: Maybe<Scalars['String']>;
|
|
4917
5132
|
id: Scalars['ID'];
|
|
4918
5133
|
name: Scalars['String'];
|
|
@@ -4927,7 +5142,7 @@ export declare type VendorInput = {
|
|
|
4927
5142
|
address?: InputMaybe<Scalars['String']>;
|
|
4928
5143
|
company?: InputMaybe<Scalars['String']>;
|
|
4929
5144
|
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
4930
|
-
deleted?:
|
|
5145
|
+
deleted?: Scalars['Boolean'];
|
|
4931
5146
|
email?: InputMaybe<Scalars['String']>;
|
|
4932
5147
|
id?: InputMaybe<Scalars['ID']>;
|
|
4933
5148
|
name: Scalars['String'];
|
|
@@ -4947,7 +5162,7 @@ export declare enum VendorStatusEnum {
|
|
|
4947
5162
|
export declare type Webhook = {
|
|
4948
5163
|
__typename?: 'Webhook';
|
|
4949
5164
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
4950
|
-
deleted
|
|
5165
|
+
deleted: Scalars['Boolean'];
|
|
4951
5166
|
/** URL address that webhooks will be pushed. */
|
|
4952
5167
|
endpoint: Scalars['String'];
|
|
4953
5168
|
id: Scalars['ID'];
|