@ikas/storefront 0.0.160-alpha.7 → 0.0.160-alpha.9

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.
@@ -82,5 +82,5 @@ export interface listBlogVariables {
82
82
  pagination?: PaginationInput | null;
83
83
  storefrontId?: StringFilterInput | null;
84
84
  tagId?: StringFilterInput | null;
85
- title?: StringFilterInput | null;
85
+ search?: string | null;
86
86
  }
@@ -26,6 +26,6 @@ export interface listProductBrand {
26
26
  export interface listProductBrandVariables {
27
27
  id?: StringFilterInput | null;
28
28
  pagination?: PaginationInput | null;
29
- name?: StringFilterInput | null;
29
+ search?: string | null;
30
30
  sort?: string | null;
31
31
  }
@@ -31,6 +31,6 @@ export interface listCategory {
31
31
  export interface listCategoryVariables {
32
32
  id?: StringFilterInput | null;
33
33
  pagination?: PaginationInput | null;
34
- name?: StringFilterInput | null;
34
+ search?: string | null;
35
35
  sort?: string | null;
36
36
  }
@@ -19,5 +19,5 @@ export interface listCategoryPaths {
19
19
  export interface listCategoryPathsVariables {
20
20
  id?: StringFilterInput | null;
21
21
  pagination?: PaginationInput | null;
22
- name?: StringFilterInput | null;
22
+ search?: string | null;
23
23
  }
@@ -181,6 +181,7 @@ export interface getCustomerOrders_getCustomerOrders {
181
181
  __typename: "Order";
182
182
  billingAddress: getCustomerOrders_getCustomerOrders_billingAddress | null;
183
183
  cancelledAt: any | null;
184
+ orderedAt: any | null;
184
185
  cancelReason: CancelledReasonEnum | null;
185
186
  createdAt: any | null;
186
187
  currencyCode: string;
@@ -190,7 +191,6 @@ export interface getCustomerOrders_getCustomerOrders {
190
191
  id: string;
191
192
  merchantId: string;
192
193
  note: string | null;
193
- orderedAt: any | null;
194
194
  orderAdjustments: getCustomerOrders_getCustomerOrders_orderAdjustments[] | null;
195
195
  orderLineItems: getCustomerOrders_getCustomerOrders_orderLineItems[];
196
196
  orderNumber: string | null;
@@ -0,0 +1,13 @@
1
+ import { StringFilterInput } from "../../../__generated__/global-types";
2
+ export interface listOrderRefundSettings_listOrderRefundSettings {
3
+ __typename: "OrderRefundSettings";
4
+ isActiveRefundSection: boolean;
5
+ orderRefundDayLimit: number | null;
6
+ refundDesc: string;
7
+ }
8
+ export interface listOrderRefundSettings {
9
+ listOrderRefundSettings: listOrderRefundSettings_listOrderRefundSettings[];
10
+ }
11
+ export interface listOrderRefundSettingsVariables {
12
+ storefrontId: StringFilterInput;
13
+ }
@@ -1,4 +1,4 @@
1
- import { IkasCustomer, IkasOrder } from "../../models/index";
1
+ import { IkasCustomer, IkasOrder, IkasOrderRefundSettings } from "../../models/index";
2
2
  import { IkasRefund } from "../../models/data/order/refund/index";
3
3
  import * as RefreshTokenTypes from "./__generated__/customerRefreshToken";
4
4
  import * as GetLastViewedProductsTypes from "./__generated__/getLastViewedProducts";
@@ -31,6 +31,7 @@ export declare class IkasCustomerAPI {
31
31
  static createCustomerEmailSubscription(email: string): Promise<boolean>;
32
32
  static getLastViewedProducts(customerId: string): Promise<GetLastViewedProductsTypes.getLastViewedProducts_getLastViewedProducts_products[]>;
33
33
  static saveLastViewedProducts(input: LastViewedProductInput): Promise<boolean>;
34
+ static getOrderRefundSettings(): Promise<IkasOrderRefundSettings | undefined>;
34
35
  }
35
36
  declare type LastViewedProduct = {
36
37
  productId: string;