securiti-consent-sdk 1.136.0-1rc → 1.136.0-2rc

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.
@@ -9,21 +9,21 @@ import NitroModules
9
9
 
10
10
 
11
11
  /**
12
- * Wraps a Swift `(_ value: Bool) -> Void` as a class.
12
+ * Wraps a Swift `(_ isReady: Bool) -> Void` as a class.
13
13
  * This class can be used from C++, e.g. to wrap the Swift closure as a `std::function`.
14
14
  */
15
15
  public final class Func_void_bool {
16
16
  public typealias bridge = margelo.nitro.securiticonsentsdk.bridge.swift
17
17
 
18
- private let closure: (_ value: Bool) -> Void
18
+ private let closure: (_ isReady: Bool) -> Void
19
19
 
20
- public init(_ closure: @escaping (_ value: Bool) -> Void) {
20
+ public init(_ closure: @escaping (_ isReady: Bool) -> Void) {
21
21
  self.closure = closure
22
22
  }
23
23
 
24
24
  @inline(__always)
25
- public func call(value: Bool) -> Void {
26
- self.closure(value)
25
+ public func call(isReady: Bool) -> Void {
26
+ self.closure(isReady)
27
27
  }
28
28
 
29
29
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "securiti-consent-sdk",
3
- "version": "1.136.0-1rc",
3
+ "version": "1.136.0-2rc",
4
4
  "description": "A React Native Library for managing user consent preferences and compliance with privacy regulations. Integrates with Securiti's Consent Management Platform.",
5
5
  "main": "lib/index",
6
6
  "module": "lib/index",