react-native-rook-sdk 2.1.1 → 2.1.2

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.
@@ -19,7 +19,7 @@ struct EncodableDataSourceAuthorizer: Encodable {
19
19
  private enum CodingKeys: String, CodingKey {
20
20
  case dataSource
21
21
  case authorized
22
- case authorizationURL
22
+ case authorizationUrl
23
23
  }
24
24
 
25
25
  func encode(to encoder: Encoder) throws {
@@ -27,6 +27,6 @@ struct EncodableDataSourceAuthorizer: Encodable {
27
27
 
28
28
  try container.encode(authorizer.dataSource, forKey: .dataSource)
29
29
  try container.encode(authorizer.authorized, forKey: .authorized)
30
- try container.encode(authorizer.authorizationURL, forKey: .authorizationURL)
30
+ try container.encode(authorizer.authorizationURL, forKey: .authorizationUrl)
31
31
  }
32
32
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-rook-sdk",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "description": "Rook sdk for apple health and health connect",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",