@falconeta/capacitor-wifi-connect
Advanced tools
Comparing version 5.1.1 to 5.1.2
@@ -54,5 +54,5 @@ { | ||
"name": "getAppSSID", | ||
"signature": "() => Promise<{ value: string; }>", | ||
"signature": "() => Promise<{ value: string; status: ConnectState; }>", | ||
"parameters": [], | ||
"returns": "Promise<{ value: string; }>", | ||
"returns": "Promise<{ value: string; status: ConnectState; }>", | ||
"tags": [ | ||
@@ -65,3 +65,5 @@ { | ||
"docs": "returns the current SSID connected by Application", | ||
"complexTypes": [], | ||
"complexTypes": [ | ||
"ConnectState" | ||
], | ||
"slug": "getappssid" | ||
@@ -71,5 +73,5 @@ }, | ||
"name": "getDeviceSSID", | ||
"signature": "() => Promise<{ value: string; }>", | ||
"signature": "() => Promise<{ value: string; status: ConnectState; }>", | ||
"parameters": [], | ||
"returns": "Promise<{ value: string; }>", | ||
"returns": "Promise<{ value: string; status: ConnectState; }>", | ||
"tags": [ | ||
@@ -82,3 +84,5 @@ { | ||
"docs": "iOS >= 14, Android >=9: \n\nreturns the current SSID connected by device", | ||
"complexTypes": [], | ||
"complexTypes": [ | ||
"ConnectState" | ||
], | ||
"slug": "getdevicessid" | ||
@@ -85,0 +89,0 @@ }, |
@@ -22,2 +22,3 @@ import { PermissionState } from '@capacitor/core'; | ||
value: string; | ||
status: ConnectState; | ||
}>; | ||
@@ -32,2 +33,3 @@ /** | ||
value: string; | ||
status: ConnectState; | ||
}>; | ||
@@ -34,0 +36,0 @@ connect(options: { |
import { WebPlugin, PermissionState } from '@capacitor/core'; | ||
import type { CapacitorWifiConnectPlugin } from './definitions'; | ||
import type { CapacitorWifiConnectPlugin, ConnectState } from './definitions'; | ||
export declare class CapacitorWifiConnectPluginWeb extends WebPlugin implements CapacitorWifiConnectPlugin { | ||
@@ -15,5 +15,7 @@ checkPermission(): Promise<{ | ||
value: string; | ||
status: ConnectState; | ||
}>; | ||
getDeviceSSID(): Promise<{ | ||
value: string; | ||
status: ConnectState; | ||
}>; | ||
@@ -20,0 +22,0 @@ getSSIDs(): Promise<{ |
{ | ||
"name": "@falconeta/capacitor-wifi-connect", | ||
"version": "5.1.1", | ||
"version": "5.1.2", | ||
"description": "plugin used for connect the device trhought Wifi also with prefix", | ||
@@ -5,0 +5,0 @@ "main": "dist/plugin.cjs.js", |
@@ -92,3 +92,3 @@ # @falconeta/capacitor-wifi-connect | ||
```typescript | ||
getAppSSID() => Promise<{ value: string; }> | ||
getAppSSID() => Promise<{ value: string; status: ConnectState; }> | ||
``` | ||
@@ -98,3 +98,3 @@ | ||
**Returns:** <code>Promise<{ value: string; }></code> | ||
**Returns:** <code>Promise<{ value: string; status: <a href="#connectstate">ConnectState</a>; }></code> | ||
@@ -109,3 +109,3 @@ **Since:** 5.1.0 | ||
```typescript | ||
getDeviceSSID() => Promise<{ value: string; }> | ||
getDeviceSSID() => Promise<{ value: string; status: ConnectState; }> | ||
``` | ||
@@ -117,3 +117,3 @@ | ||
**Returns:** <code>Promise<{ value: string; }></code> | ||
**Returns:** <code>Promise<{ value: string; status: <a href="#connectstate">ConnectState</a>; }></code> | ||
@@ -120,0 +120,0 @@ **Since:** 5.1.0 |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
84724
527