securiti-consent-sdk 1.135.0-19rc → 1.135.0-20rc

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.
@@ -28,11 +28,11 @@ namespace margelo::nitro::securiticonsentsdk { struct PurposeConsent; }
28
28
  // Forward declaration of `PermissionConsent` to properly resolve imports.
29
29
  namespace margelo::nitro::securiticonsentsdk { struct PermissionConsent; }
30
30
 
31
- #include <NitroModules/Promise.hpp>
32
31
  #include <string>
32
+ #include <NitroModules/Promise.hpp>
33
33
  #include <NitroModules/JPromise.hpp>
34
- #include <vector>
35
34
  #include "AppPermission.hpp"
35
+ #include <vector>
36
36
  #include "JAppPermission.hpp"
37
37
  #include <optional>
38
38
  #include "Purpose.hpp"
@@ -74,6 +74,11 @@ namespace margelo::nitro::securiticonsentsdk {
74
74
  return method(_javaPart);
75
75
  }
76
76
 
77
+ void JHybridConsentSDKSpec::dispose() noexcept {
78
+ static const auto method = javaClassStatic()->getMethod<void()>("dispose");
79
+ method(_javaPart);
80
+ }
81
+
77
82
  // Properties
78
83
 
79
84
 
@@ -39,6 +39,7 @@ namespace margelo::nitro::securiticonsentsdk {
39
39
 
40
40
  public:
41
41
  size_t getExternalMemorySize() noexcept override;
42
+ void dispose() noexcept override;
42
43
 
43
44
  public:
44
45
  inline const jni::global_ref<JHybridConsentSDKSpec::javaobject>& getJavaPart() const noexcept {
@@ -38,8 +38,8 @@ namespace margelo::nitro::securiticonsentsdk { struct PermissionConsent; }
38
38
  #include <optional>
39
39
  #include <functional>
40
40
  #include <NitroModules/Promise.hpp>
41
- #include <vector>
42
41
  #include "AppPermission.hpp"
42
+ #include <vector>
43
43
  #include "Purpose.hpp"
44
44
  #include "SDK.hpp"
45
45
  #include "BannerConfig.hpp"
@@ -78,10 +78,12 @@ namespace margelo::nitro::securiticonsentsdk {
78
78
  }
79
79
 
80
80
  public:
81
- // Get memory pressure
82
81
  inline size_t getExternalMemorySize() noexcept override {
83
82
  return _swiftPart.getMemorySize();
84
83
  }
84
+ void dispose() noexcept override {
85
+ _swiftPart.dispose();
86
+ }
85
87
 
86
88
  public:
87
89
  // Properties
@@ -34,7 +34,7 @@ public protocol HybridConsentSDKSpec_protocol: HybridObject {
34
34
  }
35
35
 
36
36
  /// See ``HybridConsentSDKSpec``
37
- public class HybridConsentSDKSpec_base {
37
+ open class HybridConsentSDKSpec_base {
38
38
  private weak var cxxWrapper: HybridConsentSDKSpec_cxx? = nil
39
39
  public func getCxxWrapper() -> HybridConsentSDKSpec_cxx {
40
40
  #if DEBUG
@@ -17,7 +17,7 @@ import NitroModules
17
17
  * - Other HybridObjects need to be wrapped/unwrapped from the Swift TCxx wrapper
18
18
  * - Throwing methods need to be wrapped with a Result<T, Error> type, as exceptions cannot be propagated to C++
19
19
  */
20
- public class HybridConsentSDKSpec_cxx {
20
+ open class HybridConsentSDKSpec_cxx {
21
21
  /**
22
22
  * The Swift <> C++ bridge's namespace (`margelo::nitro::securiticonsentsdk::bridge::swift`)
23
23
  * from `NitroSecuritiConsentSdk-Swift-Cxx-Bridge.hpp`.
@@ -96,6 +96,15 @@ public class HybridConsentSDKSpec_cxx {
96
96
  return MemoryHelper.getSizeOf(self.__implementation) + self.__implementation.memorySize
97
97
  }
98
98
 
99
+ /**
100
+ * Call dispose() on the Swift class.
101
+ * This _may_ be called manually from JS.
102
+ */
103
+ @inline(__always)
104
+ public func dispose() {
105
+ self.__implementation.dispose()
106
+ }
107
+
99
108
  // Properties
100
109
 
101
110
 
@@ -20,8 +20,8 @@
20
20
 
21
21
 
22
22
 
23
- #include <optional>
24
23
  #include <string>
24
+ #include <optional>
25
25
 
26
26
  namespace margelo::nitro::securiticonsentsdk {
27
27
 
@@ -30,14 +30,14 @@ namespace margelo::nitro::securiticonsentsdk { struct PostConsentsRequest; }
30
30
 
31
31
  #include "CmpSDKOptions.hpp"
32
32
  #include <functional>
33
- #include <NitroModules/Promise.hpp>
34
33
  #include <string>
35
- #include <vector>
34
+ #include <NitroModules/Promise.hpp>
36
35
  #include "AppPermission.hpp"
36
+ #include <vector>
37
37
  #include "Purpose.hpp"
38
38
  #include "SDK.hpp"
39
- #include <optional>
40
39
  #include "BannerConfig.hpp"
40
+ #include <optional>
41
41
  #include "SettingsPrompt.hpp"
42
42
  #include "PostConsentsRequest.hpp"
43
43
 
@@ -24,8 +24,8 @@ namespace margelo::nitro::securiticonsentsdk { struct PurposeConsent; }
24
24
  namespace margelo::nitro::securiticonsentsdk { struct PermissionConsent; }
25
25
 
26
26
  #include <string>
27
- #include <vector>
28
27
  #include "PurposeConsent.hpp"
28
+ #include <vector>
29
29
  #include "PermissionConsent.hpp"
30
30
  #include <optional>
31
31
 
@@ -23,8 +23,8 @@ namespace margelo::nitro::securiticonsentsdk { struct SDK; }
23
23
 
24
24
  #include <optional>
25
25
  #include <string>
26
- #include <vector>
27
26
  #include "SDK.hpp"
27
+ #include <vector>
28
28
 
29
29
  namespace margelo::nitro::securiticonsentsdk {
30
30
 
@@ -20,8 +20,8 @@
20
20
 
21
21
 
22
22
 
23
- #include <optional>
24
23
  #include <string>
24
+ #include <optional>
25
25
  #include <vector>
26
26
 
27
27
  namespace margelo::nitro::securiticonsentsdk {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "securiti-consent-sdk",
3
- "version": "1.135.0-19rc",
3
+ "version": "1.135.0-20rc",
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",