@pinwheel/react-native-pinwheel 2.5.0 → 3.0.0-alpha.1

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.
package/CHANGELOG.md CHANGED
@@ -4,9 +4,14 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  ## 2.5.x Releases
6
6
 
7
- [2.5.0](#250)
7
+ [2.5.0](#250) | [2.5.1](#251)
8
8
 
9
9
  ---
10
+ ### 2.5.1
11
+
12
+ #### Notes
13
+
14
+ - Internal contract changes
10
15
 
11
16
  ### 2.5.0
12
17
 
@@ -1,6 +1,6 @@
1
1
  Pod::Spec.new do |s|
2
2
  s.name = "RNPinwheelSDK"
3
- s.version = "2.5.0"
3
+ s.version = "3.0.0-alpha.1"
4
4
  s.summary = "React Native plugin for Pinwheel's SDK"
5
5
  s.description = <<-DESC
6
6
  An open source React Native plugin for calling Pinwheel's native SDKs to manage payroll data.
@@ -14,5 +14,5 @@ Pod::Spec.new do |s|
14
14
  s.public_header_files = 'ios/**/*.h'
15
15
  s.requires_arc = true
16
16
  s.dependency "React"
17
- s.dependency 'PinwheelSDK', '2.4.4'
17
+ s.dependency 'PinwheelSDK', '2.4.5'
18
18
  end
@@ -41,7 +41,7 @@ rootProject.allprojects {
41
41
  }
42
42
  }
43
43
 
44
- def PW_SDK_VERSION = '2.4.3'
44
+ def PW_SDK_VERSION = '2.4.5'
45
45
 
46
46
  dependencies {
47
47
  def pwVersion = rootProject.hasProperty('pwVersion') ? rootProject.pwVersion : PW_SDK_VERSION
@@ -162,7 +162,7 @@ class PinwheelViewManager(
162
162
 
163
163
 
164
164
  this.token?.let {
165
- val pinwheelFragment = PinwheelFragment.newInstance(it, "react native", "2.5.0")
165
+ val pinwheelFragment = PinwheelFragment.newInstance(it, "react native", "2.5.1")
166
166
  pinwheelFragment.pinwheelEventListener = this
167
167
  val activity = reactContext.currentActivity as FragmentActivity
168
168
  activity.supportFragmentManager
package/constants.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Importing package.json here causes a problem with the folder structure when we npm pack and publish.
3
3
  */
4
- export declare const VERSION = "2.5.0";
4
+ export declare const VERSION = "3.0.0-alpha.1";
5
5
  export declare const LINK_PAGE_URL = "https://cdn.getpinwheel.com/link-v2.3.0.html";
6
6
  export declare const PINWHEEL_DOMAIN = "getpinwheel.com";
package/constants.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Importing package.json here causes a problem with the folder structure when we npm pack and publish.
3
3
  */
4
- export const VERSION = '2.5.0';
4
+ export const VERSION = '3.0.0-alpha.1';
5
5
  export const LINK_PAGE_URL = 'https://cdn.getpinwheel.com/link-v2.3.0.html';
6
6
  export const PINWHEEL_DOMAIN = 'getpinwheel.com';
@@ -18,7 +18,7 @@
18
18
 
19
19
  - (void)initPinwheelWrapperVC {
20
20
  if (self.token != nil && self.pinwheelWrapperVC == nil) {
21
- self.pinwheelWrapperVC = [[PinwheelWrapperVC alloc] initWithToken:self.token delegate:self sdk:@"react native" version: @"2.5.0"];
21
+ self.pinwheelWrapperVC = [[PinwheelWrapperVC alloc] initWithToken:self.token delegate:self sdk:@"react native" version: @"2.5.1"];
22
22
  [self addSubview:self.pinwheelWrapperVC.view];
23
23
  }
24
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pinwheel/react-native-pinwheel",
3
- "version": "2.5.0",
3
+ "version": "3.0.0-alpha.1",
4
4
  "type": "module",
5
5
  "description": "Pinwheel React Native SDK",
6
6
  "main": "index.js",