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