@ikas/storefront 0.0.110 → 0.0.111

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.
@@ -1,4 +1,4 @@
1
- import { PaymentMethodEnum } from "../../../__generated__/global-types";
1
+ import { StringFilterInput, PaymentMethodEnum } from "../../../__generated__/global-types";
2
2
  export interface listPaymentGateway_listPaymentGateway_paymentMethods {
3
3
  __typename: "PaymentGatewayPaymentMethod";
4
4
  name: string;
@@ -16,3 +16,6 @@ export interface listPaymentGateway_listPaymentGateway {
16
16
  export interface listPaymentGateway {
17
17
  listPaymentGateway: listPaymentGateway_listPaymentGateway[];
18
18
  }
19
+ export interface listPaymentGatewayVariables {
20
+ id?: StringFilterInput | null;
21
+ }
@@ -8,7 +8,7 @@ export declare class IkasCheckoutAPI {
8
8
  static getCheckoutById(id: string): Promise<IkasCheckout | undefined>;
9
9
  static saveCheckout(checkout: IkasCheckout): Promise<string | undefined>;
10
10
  static createSaleTransactionWithCheckout(checkoutId: string, paymentGatewayId: string, paymentMethodDetail?: IkasPaymentMethodDetail): Promise<SaleTransactionTypes.createSaleTransactionWithCheckout_createSaleTransactionWithCheckout | undefined>;
11
- static listPaymentGateway(): Promise<IkasPaymentGateway[] | undefined>;
11
+ static listPaymentGateway(idList?: string[]): Promise<IkasPaymentGateway[] | undefined>;
12
12
  static retrieveInstallmentInfo(input: IkasInstallmentInfoInput): Promise<IkasInstallmentInfo | undefined>;
13
13
  static checkStocks(lines: CheckStocksLineInput[], stockLocationIdList: string[]): Promise<CheckStocksTypes.checkStocks_checkStocks | undefined>;
14
14
  static listCheckoutSettings(): Promise<IkasCheckoutSettings[] | undefined>;