@adyen/adyen-web 5.66.0 → 5.66.1

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,13 +1,13 @@
1
1
  export interface HttpOptions {
2
2
  accept?: string;
3
3
  contentType?: string;
4
- errorMessage?: string;
5
4
  headers?: any;
6
5
  loadingContext?: string;
7
6
  method?: string;
8
7
  path: string;
9
- errorLevel?: ErrorLevel;
10
8
  timeout?: number;
9
+ errorLevel?: ErrorLevel;
10
+ errorMessage?: string;
11
11
  }
12
12
  type ErrorLevel = 'silent' | 'info' | 'warn' | 'error' | 'fatal';
13
13
  export declare function http<T>(options: HttpOptions, data?: any): Promise<T>;
@@ -1,6 +1,4 @@
1
1
  import Session from '../../CheckoutSession';
2
2
  import { CheckoutSessionSetupResponse } from '../../../types';
3
- /**
4
- */
5
3
  declare function setupSession(session: Session, options: any): Promise<CheckoutSessionSetupResponse>;
6
4
  export default setupSession;
package/package.json CHANGED
@@ -25,7 +25,7 @@
25
25
  "./dist/es/adyen.css": "./dist/es/adyen.css",
26
26
  "./package.json": "./package.json"
27
27
  },
28
- "version": "5.66.0",
28
+ "version": "5.66.1",
29
29
  "license": "MIT",
30
30
  "homepage": "https://docs.adyen.com/checkout",
31
31
  "repository": "github:Adyen/adyen-web",