@atomsolution/invoice-sdk-api 1.26.0 → 1.26.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.
package/dist/auth.d.ts CHANGED
@@ -1,17 +1,17 @@
1
1
  import { Provider } from './configuration';
2
+ export declare function loadSettingsFromCDN(): Promise<any | undefined>;
2
3
  export declare const STORAGE_KEY = "api_providers_cipher";
3
4
  export interface IProvider {
4
5
  name: string;
5
6
  route: Provider | string;
6
7
  logo: string;
7
- invoiceLookupUrls: Record<string, string>;
8
8
  }
9
9
  export declare const PROVIDERS: IProvider[];
10
10
  /**
11
11
  * Returns a list of available providers
12
12
  * @returns {IProvider[]}
13
13
  */
14
- export declare function getListProviders(): IProvider[];
14
+ export declare function getListProviders(bank: string, mode: string): Promise<IProvider[]>;
15
15
  /**
16
16
  * Save one provider info (encrypted)
17
17
  */