react-native-gizwits-sdk-v5 1.5.0-beta.5 → 1.5.0-beta.7
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.
|
@@ -24,6 +24,7 @@ RCT_EXTERN_METHOD(unBind:(NSDictionary *)options result:(RCTResponseSenderBlock)
|
|
|
24
24
|
RCT_EXTERN_METHOD(stopProvideWiFiCredentials:(NSDictionary *)options result:(RCTResponseSenderBlock)result)
|
|
25
25
|
RCT_EXTERN_METHOD(provideWiFiCredentials:(NSDictionary *)options result:(RCTResponseSenderBlock)result)
|
|
26
26
|
RCT_EXTERN_METHOD(provideWiFiCredentialsWithAirLink:(NSDictionary *)options result:(RCTResponseSenderBlock)result)
|
|
27
|
+
RCT_EXTERN_METHOD(stopProvideWiFiCredentialsWithAirLink:(NSDictionary *)options result:(RCTResponseSenderBlock)result)
|
|
27
28
|
|
|
28
29
|
RCT_EXTERN_METHOD(startMusicalRhythm:(NSDictionary *)options result:(RCTResponseSenderBlock)result)
|
|
29
30
|
RCT_EXTERN_METHOD(stopMusicalRhythm:(NSDictionary *)options result:(RCTResponseSenderBlock)result)
|
|
@@ -84,7 +84,7 @@ struct ProvideWiFiCredentialsWithAirLinkParams: Decodable {
|
|
|
84
84
|
var ssid: String
|
|
85
85
|
var password: String
|
|
86
86
|
var timeout: Int
|
|
87
|
-
var
|
|
87
|
+
var productKeys: [String]
|
|
88
88
|
}
|
|
89
89
|
struct StopProvideWiFiCredentialsParams: Decodable {
|
|
90
90
|
var type: GizwitsiOSSDK.GizCapability
|
|
@@ -465,11 +465,20 @@ class RNGizDeviceManagerModule: RCTEventEmitter {
|
|
|
465
465
|
}
|
|
466
466
|
Task {
|
|
467
467
|
var data: GizResult<GizBaseProfile?, GizActivatorException?>
|
|
468
|
-
data = await ESPTouchSmartConfig.sharedInstance.provideWiFiCredentialsWithAirLink(ssid: params.ssid, password: params.password, timeout: params.timeout,
|
|
468
|
+
data = await ESPTouchSmartConfig.sharedInstance.provideWiFiCredentialsWithAirLink(ssid: params.ssid, password: params.password, timeout: params.timeout, productKeys: params.productKeys, processHandler: progressHandler)
|
|
469
469
|
GizRNCallbackManager.callbackWithResult(callback: result, result:data)
|
|
470
470
|
}
|
|
471
471
|
}
|
|
472
472
|
}
|
|
473
|
+
|
|
474
|
+
@objc
|
|
475
|
+
public func stopProvideWiFiCredentialsWithAirLink(_ options: NSDictionary, result: @escaping RCTResponseSenderBlock) {
|
|
476
|
+
Task {
|
|
477
|
+
var data: GizResult<Int?, GizActivatorException?>
|
|
478
|
+
data = await ESPTouchSmartConfig.sharedInstance.stopProvideWiFiCredentialsWithAirLink()
|
|
479
|
+
GizRNCallbackManager.callbackWithResult(callback: result, result:data)
|
|
480
|
+
}
|
|
481
|
+
}
|
|
473
482
|
|
|
474
483
|
@objc
|
|
475
484
|
public func stopProvideWiFiCredentials(_ options: NSDictionary, result: @escaping RCTResponseSenderBlock) {
|
package/package.json
CHANGED