starti.app 2.0.60 → 2.0.62
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.
|
@@ -6,6 +6,7 @@ export declare class BiometricService {
|
|
|
6
6
|
password: string;
|
|
7
7
|
} | null;
|
|
8
8
|
static removeConfiguration(configurationKey: string): void;
|
|
9
|
+
private static getConfirmMessage;
|
|
9
10
|
static promptForBiometrics(populatedConfiguration: PopulatedSaveUsernameAndPasswordConfiguration): Promise<boolean>;
|
|
10
11
|
static getPopulatedConfiguration(configurationKey: string): PopulatedSaveUsernameAndPasswordConfiguration;
|
|
11
12
|
static tryLoginAsync(configurationKey: string): Promise<boolean>;
|
|
@@ -102,6 +102,7 @@ export type SaveUsernameAndPasswordConfiguration = {
|
|
|
102
102
|
submitButtonSelector: string;
|
|
103
103
|
title: string;
|
|
104
104
|
reason: string;
|
|
105
|
+
language?: "da" | "en";
|
|
105
106
|
};
|
|
106
107
|
export type PopulatedSaveUsernameAndPasswordConfiguration = SaveUsernameAndPasswordConfiguration & {
|
|
107
108
|
usernameInputField: HTMLInputElement;
|
package/package.json
CHANGED