@ikas/storefront-api 6.1.0-beta.1 → 6.1.0-beta.100

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.
Files changed (48) hide show
  1. package/build/__api/models/CartV2.d.ts +2 -0
  2. package/build/__api/models/CheckoutSettings.d.ts +1 -0
  3. package/build/__api/models/CreateCartInput.d.ts +15 -0
  4. package/build/__api/models/CreateCartLineItemInput.d.ts +11 -0
  5. package/build/__api/models/CreateCartLineVariantInput.d.ts +11 -0
  6. package/build/__api/models/CustomerReview.d.ts +6 -0
  7. package/build/__api/models/CustomerReviewProductModel.d.ts +15 -0
  8. package/build/__api/models/CustomerReviewReplyInfo.d.ts +10 -0
  9. package/build/__api/models/GetCustomerReviewImageUploadUrlResponse.d.ts +11 -0
  10. package/build/__api/models/HepsipayFrameInitResponse.d.ts +11 -0
  11. package/build/__api/models/OrderGiftCardLine.d.ts +12 -0
  12. package/build/__api/models/SearchInput.d.ts +1 -0
  13. package/build/__api/models/UpdatePaypalOrderAddressInput.d.ts +12 -0
  14. package/build/__api/models/UpdatePaypalOrderCustomerInput.d.ts +12 -0
  15. package/build/__api/models/UpdatePaypalOrderInput.d.ts +16 -0
  16. package/build/__api/mutations/createCart.d.ts +499 -0
  17. package/build/__api/mutations/createCart.js +1 -0
  18. package/build/__api/mutations/createPaypalOrder.d.ts +2 -0
  19. package/build/__api/mutations/createPaypalOrder.js +1 -1
  20. package/build/__api/mutations/getCustomerReviewImageUploadUrl.d.ts +13 -0
  21. package/build/__api/mutations/getPaypalClientId.d.ts +1 -1
  22. package/build/__api/mutations/getPaypalClientId.js +1 -1
  23. package/build/__api/mutations/hepsipayFrameInit.d.ts +13 -0
  24. package/build/__api/mutations/hepsipayFrameInit.js +1 -0
  25. package/build/__api/mutations/removeGiftCardFromCart.d.ts +509 -0
  26. package/build/__api/mutations/removeGiftCardFromCart.js +1 -0
  27. package/build/__api/mutations/updatePaypalOrder.d.ts +8 -0
  28. package/build/__api/mutations/updatePaypalOrder.js +1 -0
  29. package/build/__api/queries/getAvailableStockLocations.d.ts +1 -0
  30. package/build/__api/queries/getAvailableStockLocations.js +1 -1
  31. package/build/__api/queries/getCartById.d.ts +2 -1
  32. package/build/__api/queries/getCartById.js +1 -1
  33. package/build/__api/queries/listCheckoutSettings.d.ts +1 -0
  34. package/build/__api/queries/listCheckoutSettings.js +1 -1
  35. package/build/__api/queries/listCustomerReviewSummary.d.ts +1 -0
  36. package/build/__api/queries/listCustomerReviews.d.ts +12 -0
  37. package/build/__api/queries/listCustomerReviews.js +1 -1
  38. package/build/__api/types/index.d.ts +81 -2
  39. package/build/__api/types/index.js +1 -1
  40. package/build/api/cart/index.d.ts +5 -1
  41. package/build/api/cart/index.js +1 -1
  42. package/build/api/checkout/index.d.ts +5 -1
  43. package/build/api/checkout/index.js +1 -1
  44. package/build/api/storefront/index.d.ts +5 -0
  45. package/build/index.d.ts +2 -2
  46. package/build/index.js +1 -1
  47. package/build/index2.js +1 -1
  48. package/package.json +5 -5
@@ -8,6 +8,7 @@ import { OrderAddressData } from "./OrderAddress";
8
8
  import { CartV2CampaignOfferData } from "./CartV2CampaignOffer";
9
9
  import { OrderCurrencyRateData } from "./OrderCurrencyRate";
10
10
  import { OrderCustomerData } from "./OrderCustomer";
11
+ import { OrderGiftCardLineData } from "./OrderGiftCardLine";
11
12
  import { OrderGiftPackageLineData } from "./OrderGiftPackageLine";
12
13
  import { OrderAdjustmentData } from "./OrderAdjustment";
13
14
  import { OrderLineItemData } from "./OrderLineItem";
@@ -33,6 +34,7 @@ export declare class CartV2Data extends BaseModelData {
33
34
  customer: OrderCustomerData | null;
34
35
  customerId: string | null;
35
36
  dueDate: any | null;
37
+ giftCardLines: OrderGiftCardLineData[] | null;
36
38
  giftPackageLines: OrderGiftPackageLineData[] | null;
37
39
  giftPackageNote: string | null;
38
40
  host: string | null;
@@ -18,6 +18,7 @@ export declare class CheckoutSettingsData extends BaseModelData {
18
18
  postalCodeRequirement: CheckoutRequirementEnum | null;
19
19
  showCheckoutNote: boolean | null;
20
20
  showCompanyInfoInShippingAddress: boolean | null;
21
+ showBillingAddressOnShippingStep: boolean | null;
21
22
  showTermsAndConditionsCheckbox: boolean;
22
23
  storefrontId: string;
23
24
  constructor(data?: Partial<CheckoutSettingsData>);
@@ -0,0 +1,15 @@
1
+ import { DeepReadonly } from "ts-essentials";
2
+ import { CreateCartLineItemInputData } from "./CreateCartLineItemInput";
3
+ export declare class CreateCartInputData {
4
+ couponCode: string | null;
5
+ items: CreateCartLineItemInputData[];
6
+ metadata: any | null;
7
+ priceListId: string | null;
8
+ salesChannelId: string;
9
+ storefrontThemeId: string;
10
+ constructor(data?: Partial<CreateCartInputData>);
11
+ }
12
+ export declare class CreateCartInput extends CreateCartInputData {
13
+ }
14
+ export declare type PartialCreateCartInput = Partial<CreateCartInput>;
15
+ export declare type ReadOnlyCreateCartInput = DeepReadonly<CreateCartInput>;
@@ -0,0 +1,11 @@
1
+ import { DeepReadonly } from "ts-essentials";
2
+ import { CreateCartLineVariantInputData } from "./CreateCartLineVariantInput";
3
+ export declare class CreateCartLineItemInputData {
4
+ quantity: number;
5
+ variant: CreateCartLineVariantInputData;
6
+ constructor(data?: Partial<CreateCartLineItemInputData>);
7
+ }
8
+ export declare class CreateCartLineItemInput extends CreateCartLineItemInputData {
9
+ }
10
+ export declare type PartialCreateCartLineItemInput = Partial<CreateCartLineItemInput>;
11
+ export declare type ReadOnlyCreateCartLineItemInput = DeepReadonly<CreateCartLineItemInput>;
@@ -0,0 +1,11 @@
1
+ import { DeepReadonly } from "ts-essentials";
2
+ import { BundleProductInputData } from "./BundleProductInput";
3
+ export declare class CreateCartLineVariantInputData {
4
+ bundleProducts: BundleProductInputData[] | null;
5
+ id: string;
6
+ constructor(data?: Partial<CreateCartLineVariantInputData>);
7
+ }
8
+ export declare class CreateCartLineVariantInput extends CreateCartLineVariantInputData {
9
+ }
10
+ export declare type PartialCreateCartLineVariantInput = Partial<CreateCartLineVariantInput>;
11
+ export declare type ReadOnlyCreateCartLineVariantInput = DeepReadonly<CreateCartLineVariantInput>;
@@ -1,17 +1,23 @@
1
1
  import { DeepReadonly } from "ts-essentials";
2
2
  import BaseModelData from "./_base";
3
3
  import { CustomerReviewStatusEnum } from "../types";
4
+ import { CustomerReviewProductModelData } from "./CustomerReviewProductModel";
5
+ import { CustomerReviewReplyInfoData } from "./CustomerReviewReplyInfo";
4
6
  export declare class CustomerReviewData extends BaseModelData {
5
7
  comment: string | null;
6
8
  customerId: string | null;
7
9
  email: string | null;
8
10
  firstName: string | null;
9
11
  imageIds: string[] | null;
12
+ isPrivateReply: boolean | null;
10
13
  lastName: string | null;
14
+ locale: string | null;
11
15
  orderId: string | null;
12
16
  orderNumber: string | null;
17
+ product: CustomerReviewProductModelData | null;
13
18
  productId: string;
14
19
  reply: string | null;
20
+ replyInfo: CustomerReviewReplyInfoData | null;
15
21
  salesChannelId: string | null;
16
22
  star: number;
17
23
  status: CustomerReviewStatusEnum | null;
@@ -0,0 +1,15 @@
1
+ import { DeepReadonly } from "ts-essentials";
2
+ import { ProductTypeEnum } from "../types";
3
+ export declare class CustomerReviewProductModelData {
4
+ brandId: string | null;
5
+ categoryIds: string[] | null;
6
+ id: string | null;
7
+ tagIds: string | null;
8
+ type: ProductTypeEnum | null;
9
+ vendorId: string | null;
10
+ constructor(data?: Partial<CustomerReviewProductModelData>);
11
+ }
12
+ export declare class CustomerReviewProductModel extends CustomerReviewProductModelData {
13
+ }
14
+ export declare type PartialCustomerReviewProductModel = Partial<CustomerReviewProductModel>;
15
+ export declare type ReadOnlyCustomerReviewProductModel = DeepReadonly<CustomerReviewProductModel>;
@@ -0,0 +1,10 @@
1
+ import { DeepReadonly } from "ts-essentials";
2
+ export declare class CustomerReviewReplyInfoData {
3
+ createdAt: any | null;
4
+ staffId: string | null;
5
+ constructor(data?: Partial<CustomerReviewReplyInfoData>);
6
+ }
7
+ export declare class CustomerReviewReplyInfo extends CustomerReviewReplyInfoData {
8
+ }
9
+ export declare type PartialCustomerReviewReplyInfo = Partial<CustomerReviewReplyInfo>;
10
+ export declare type ReadOnlyCustomerReviewReplyInfo = DeepReadonly<CustomerReviewReplyInfo>;
@@ -0,0 +1,11 @@
1
+ import { DeepReadonly } from "ts-essentials";
2
+ export declare class GetCustomerReviewImageUploadUrlResponseData {
3
+ fields: any;
4
+ imageId: string;
5
+ uploadUrl: string;
6
+ constructor(data?: Partial<GetCustomerReviewImageUploadUrlResponseData>);
7
+ }
8
+ export declare class GetCustomerReviewImageUploadUrlResponse extends GetCustomerReviewImageUploadUrlResponseData {
9
+ }
10
+ export declare type PartialGetCustomerReviewImageUploadUrlResponse = Partial<GetCustomerReviewImageUploadUrlResponse>;
11
+ export declare type ReadOnlyGetCustomerReviewImageUploadUrlResponse = DeepReadonly<GetCustomerReviewImageUploadUrlResponse>;
@@ -0,0 +1,11 @@
1
+ import { DeepReadonly } from "ts-essentials";
2
+ export declare class HepsipayFrameInitResponseData {
3
+ frameToken: string | null;
4
+ frameUrl: string | null;
5
+ transactionId: string;
6
+ constructor(data?: Partial<HepsipayFrameInitResponseData>);
7
+ }
8
+ export declare class HepsipayFrameInitResponse extends HepsipayFrameInitResponseData {
9
+ }
10
+ export declare type PartialHepsipayFrameInitResponse = Partial<HepsipayFrameInitResponse>;
11
+ export declare type ReadOnlyHepsipayFrameInitResponse = DeepReadonly<HepsipayFrameInitResponse>;
@@ -0,0 +1,12 @@
1
+ import { DeepReadonly } from "ts-essentials";
2
+ export declare class OrderGiftCardLineData {
3
+ amount: number;
4
+ code: string;
5
+ giftCardId: string;
6
+ id: string;
7
+ constructor(data?: Partial<OrderGiftCardLineData>);
8
+ }
9
+ export declare class OrderGiftCardLine extends OrderGiftCardLineData {
10
+ }
11
+ export declare type PartialOrderGiftCardLine = Partial<OrderGiftCardLine>;
12
+ export declare type ReadOnlyOrderGiftCardLine = DeepReadonly<OrderGiftCardLine>;
@@ -6,6 +6,7 @@ import { SearchInputFilterListInputData } from "./SearchInputFilterListInput";
6
6
  import { SearchInputOrderByInputData } from "./SearchInputOrderByInput";
7
7
  export declare class SearchInputData {
8
8
  barcodeList: string[] | null;
9
+ baseCategoryIdList: string[] | null;
9
10
  brandId: string | null;
10
11
  brandIdList: string[] | null;
11
12
  categoryIdList: string[] | null;
@@ -0,0 +1,12 @@
1
+ import { DeepReadonly } from "ts-essentials";
2
+ export declare class UpdatePaypalOrderAddressInputData {
3
+ city: string | null;
4
+ country: string | null;
5
+ postalCode: string | null;
6
+ state: string | null;
7
+ constructor(data?: Partial<UpdatePaypalOrderAddressInputData>);
8
+ }
9
+ export declare class UpdatePaypalOrderAddressInput extends UpdatePaypalOrderAddressInputData {
10
+ }
11
+ export declare type PartialUpdatePaypalOrderAddressInput = Partial<UpdatePaypalOrderAddressInput>;
12
+ export declare type ReadOnlyUpdatePaypalOrderAddressInput = DeepReadonly<UpdatePaypalOrderAddressInput>;
@@ -0,0 +1,12 @@
1
+ import { DeepReadonly } from "ts-essentials";
2
+ export declare class UpdatePaypalOrderCustomerInputData {
3
+ email: string | null;
4
+ firstName: string | null;
5
+ id: string | null;
6
+ lastName: string | null;
7
+ constructor(data?: Partial<UpdatePaypalOrderCustomerInputData>);
8
+ }
9
+ export declare class UpdatePaypalOrderCustomerInput extends UpdatePaypalOrderCustomerInputData {
10
+ }
11
+ export declare type PartialUpdatePaypalOrderCustomerInput = Partial<UpdatePaypalOrderCustomerInput>;
12
+ export declare type ReadOnlyUpdatePaypalOrderCustomerInput = DeepReadonly<UpdatePaypalOrderCustomerInput>;
@@ -0,0 +1,16 @@
1
+ import { DeepReadonly } from "ts-essentials";
2
+ import { UpdatePaypalOrderAddressInputData } from "./UpdatePaypalOrderAddressInput";
3
+ import { UpdatePaypalOrderCustomerInputData } from "./UpdatePaypalOrderCustomerInput";
4
+ export declare class UpdatePaypalOrderInputData {
5
+ address: UpdatePaypalOrderAddressInputData | null;
6
+ cartId: string;
7
+ customer: UpdatePaypalOrderCustomerInputData | null;
8
+ shippingSettingsId: string | null;
9
+ shippingZoneRateId: string | null;
10
+ transactionId: string;
11
+ constructor(data?: Partial<UpdatePaypalOrderInputData>);
12
+ }
13
+ export declare class UpdatePaypalOrderInput extends UpdatePaypalOrderInputData {
14
+ }
15
+ export declare type PartialUpdatePaypalOrderInput = Partial<UpdatePaypalOrderInput>;
16
+ export declare type ReadOnlyUpdatePaypalOrderInput = DeepReadonly<UpdatePaypalOrderInput>;