@apps-in-toss/web-bridge 2.0.9 → 2.1.0
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/getPermission.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
type PermissionStatus$1 = "notDetermined" | "denied" | "allowed";
|
|
2
2
|
export type PermissionAccess = "read" | "write" | "access";
|
|
3
|
-
type PermissionName$1 = "clipboard" | "contacts" | "photos" | "geolocation" | "camera";
|
|
3
|
+
type PermissionName$1 = "clipboard" | "contacts" | "photos" | "geolocation" | "camera" | "microphone";
|
|
4
4
|
/**
|
|
5
5
|
* @category AppsInTossModules
|
|
6
6
|
* @name getPermission
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
type PermissionStatus$1 = "notDetermined" | "denied" | "allowed";
|
|
2
2
|
export type PermissionAccess = "read" | "write" | "access";
|
|
3
|
-
type PermissionName$1 = "clipboard" | "contacts" | "photos" | "geolocation" | "camera";
|
|
3
|
+
type PermissionName$1 = "clipboard" | "contacts" | "photos" | "geolocation" | "camera" | "microphone";
|
|
4
4
|
export type PermissionDialogFunction = () => Promise<Exclude<PermissionStatus$1, "notDetermined">>;
|
|
5
5
|
/**
|
|
6
6
|
* @category AppsInTossModules
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
type PermissionStatus$1 = "notDetermined" | "denied" | "allowed";
|
|
2
2
|
export type PermissionAccess = "read" | "write" | "access";
|
|
3
|
-
type PermissionName$1 = "clipboard" | "contacts" | "photos" | "geolocation" | "camera";
|
|
3
|
+
type PermissionName$1 = "clipboard" | "contacts" | "photos" | "geolocation" | "camera" | "microphone";
|
|
4
4
|
/**
|
|
5
5
|
* @category PermissionManagement
|
|
6
6
|
* @name requestPermission
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apps-in-toss/web-bridge",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.0
|
|
4
|
+
"version": "2.1.0",
|
|
5
5
|
"description": "Web Bridge for Apps In Toss",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"typecheck": "tsc --noEmit",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"dist"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@apps-in-toss/types": "2.0
|
|
30
|
+
"@apps-in-toss/types": "2.1.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@apps-in-toss/bridge-core": "2.0
|
|
34
|
-
"@apps-in-toss/native-modules": "^2.0
|
|
33
|
+
"@apps-in-toss/bridge-core": "2.1.0",
|
|
34
|
+
"@apps-in-toss/native-modules": "^2.1.0",
|
|
35
35
|
"@swc/core": "^1.12.7",
|
|
36
36
|
"picocolors": "^1.1.1",
|
|
37
37
|
"ts-morph": "^26.0.0",
|