starti.app 2.0.55 → 2.0.56
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.
|
@@ -81,7 +81,7 @@ export declare class Biometrics extends EventTarget {
|
|
|
81
81
|
*
|
|
82
82
|
* @returns A promise that resolves to the permission status.
|
|
83
83
|
*/
|
|
84
|
-
checkAccess: () => Promise<PermissionStatus>;
|
|
84
|
+
checkAccess: () => Promise<import("../App/typings").PermissionStatus>;
|
|
85
85
|
}
|
|
86
86
|
export type BiometricsAuthenticationType = "None" | "Face" | "Fingerprint";
|
|
87
87
|
export type BiometricsResultReponse<T> = {
|
|
@@ -35,8 +35,8 @@ export declare class Location extends EventTargetWithType<{
|
|
|
35
35
|
createGeofence: (region: GeofenceRegion) => Promise<void>;
|
|
36
36
|
removeGeofence: (region: GeofenceRegion) => Promise<void>;
|
|
37
37
|
getGeofences: () => Promise<GeofenceRegion[]>;
|
|
38
|
-
requestAccess: () => Promise<PermissionStatus>;
|
|
39
|
-
checkAccess: () => Promise<PermissionStatus>;
|
|
38
|
+
requestAccess: () => Promise<import("../App/typings").PermissionStatus>;
|
|
39
|
+
checkAccess: () => Promise<import("../App/typings").PermissionStatus>;
|
|
40
40
|
private onListeningFailed;
|
|
41
41
|
private onLocationChanged;
|
|
42
42
|
private onGeofenceEvent;
|
package/dist/integrations.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { NavigationSpinnerOptions, RegexDto } from "./integrations/App/typings";
|
|
1
|
+
import { NavigationSpinnerOptions, PermissionStatus, RegexDto } from "./integrations/App/typings";
|
|
2
2
|
import { BiometricsAuthenticationType, BiometricsResultReponse, SaveUsernameAndPasswordConfiguration } from "./integrations/Biometrics/BiometricsIntegration";
|
|
3
3
|
import { InApPurchasePurchaseType, InAppPurchaseGetProductResponse, InAppPurchaseProductResponse, InAppPurchaseResponse } from "./integrations/InAppPurchase/InAppPurchaseIntegration";
|
|
4
4
|
import { GeofenceRegion, Location, LocationListeningOptions, LocationOptions } from "./integrations/Location/types";
|
package/package.json
CHANGED