starti.app 2.0.53 → 2.0.55
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.
|
@@ -76,6 +76,12 @@ export declare class Biometrics extends EventTarget {
|
|
|
76
76
|
* @returns A promise that resolves when the username and password are successfully saved.
|
|
77
77
|
*/
|
|
78
78
|
endSaveUsernameAndPassword(): Promise<void>;
|
|
79
|
+
/**
|
|
80
|
+
* Checks the current access status for biometrics.
|
|
81
|
+
*
|
|
82
|
+
* @returns A promise that resolves to the permission status.
|
|
83
|
+
*/
|
|
84
|
+
checkAccess: () => Promise<PermissionStatus>;
|
|
79
85
|
}
|
|
80
86
|
export type BiometricsAuthenticationType = "None" | "Face" | "Fingerprint";
|
|
81
87
|
export type BiometricsResultReponse<T> = {
|
package/dist/integrations.d.ts
CHANGED
|
@@ -73,6 +73,7 @@ type BiometricIntegration = {
|
|
|
73
73
|
removeSecuredContent(key: string): void;
|
|
74
74
|
startSaveUsernameAndPassword(request: SaveUsernameAndPasswordConfiguration): void;
|
|
75
75
|
endSaveUsernameAndPassword(): void;
|
|
76
|
+
checkAccess(): PermissionStatus;
|
|
76
77
|
};
|
|
77
78
|
type CalendarIntegration = {
|
|
78
79
|
isAccessGranted(): void;
|
package/package.json
CHANGED