starti.app 2.0.124 → 2.0.127
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,10 +1,12 @@
|
|
|
1
1
|
import { BiometricsAuthenticationType, PopulatedSaveUsernameAndPasswordConfiguration, SaveUsernameAndPasswordConfiguration, SaveUsernameAndPasswordI18n } from "./BiometricsIntegration";
|
|
2
2
|
export declare class BiometricService {
|
|
3
|
+
private static submitButtonListeners;
|
|
3
4
|
static saveTranslations(request: SaveUsernameAndPasswordI18n & {
|
|
4
5
|
key?: string;
|
|
5
6
|
}): void;
|
|
6
7
|
static getTranslations(configurationKey?: string): SaveUsernameAndPasswordI18n | null;
|
|
7
8
|
static addMiddlewareToSubmitButton(credentialsKey: string, request: SaveUsernameAndPasswordConfiguration): void;
|
|
9
|
+
static removeMiddlewareFromSubmitButton(credentialsKey: string): void;
|
|
8
10
|
static getCredentials(credentialsKey: string): {
|
|
9
11
|
username: string;
|
|
10
12
|
password: string;
|
|
@@ -17,6 +19,8 @@ export declare class BiometricService {
|
|
|
17
19
|
static getPopulatedConfiguration(request: SaveUsernameAndPasswordConfiguration): PopulatedSaveUsernameAndPasswordConfiguration;
|
|
18
20
|
static tryLoginAsync(request: SaveUsernameAndPasswordConfiguration): Promise<boolean>;
|
|
19
21
|
private static setInputValue;
|
|
22
|
+
private static setIsAutoLoginFlag;
|
|
23
|
+
static consumeAutoLoginFlag: () => boolean;
|
|
20
24
|
private static getConfigurationKey;
|
|
21
25
|
private static upsertConfigurationKey;
|
|
22
26
|
static removeConfigurationKeys: () => void;
|
package/package.json
CHANGED