@functionland/react-native-fula 1.54.16 → 1.54.17

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.
Files changed (2) hide show
  1. package/ios/Fula.swift +1 -1
  2. package/package.json +1 -1
package/ios/Fula.swift CHANGED
@@ -1523,7 +1523,7 @@ class FulaModule: NSObject {
1523
1523
  func findBestAndTargetInLogs(containerName: String, tailCount: String, resolve: @escaping RCTPromiseResolveBlock, reject: @escaping RCTPromiseRejectBlock) {
1524
1524
  do {
1525
1525
  // Since fetchContainerLogs expects a String for tailCount, pass it directly
1526
- let result = try self.fula!.findBestAndTargetInLogs(containerName, tailCount: tailCount)
1526
+ let result = try self.fula!.findBestAndTarget(inLogs: containerName, tailCount: tailCount)
1527
1527
  guard let resultString = result.toUTF8String() else {
1528
1528
  // Handle the case where result.toUTF8String() returns nil
1529
1529
  let error = NSError(domain: "FULAErrorDomain",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@functionland/react-native-fula",
3
- "version": "1.54.16",
3
+ "version": "1.54.17",
4
4
  "description": "This package is a bridge to use the Fula libp2p protocols in the react-native which is using wnfs",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",