safetykit 0.48.0 → 0.49.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b04bd18348bb02e6bca2c7565a84f5e9685d8674858519beb5a13ad4293abb08
4
- data.tar.gz: 9465f31eb94d97980c253fd43bcfe992573a13f13197510229f253b14c16e4af
3
+ metadata.gz: ffe5ac9eeb7e3772d15ac6cd4050b50ce60db643f95f7a372568f8d063584730
4
+ data.tar.gz: 6a2fd2adb3656d26d80c6f3dd9dd6d21d21f716d8d47c96a79575c4d3c68ce91
5
5
  SHA512:
6
- metadata.gz: 835fe5931f017c86f2b7a6ad104fa3e9f7cfaf1b15618dd59ad7132afeb3d044f71cd94dc704a50ed842597ed935e504134a2b0edae009898d9991dae2119f0b
7
- data.tar.gz: b5bbd63757fe9f64fa04a5b8a3fd6955a1aa85f043172b96fb7692e06b03e6921bad7917cbfff769bb231510e7de5c7f715ff47552697bbdc9359d87a6073fcd
6
+ metadata.gz: 0f7d6ee8836e86ed525ef0a6f40321dbc75fa6e97b2065ec5e9eec16a32146f241c3774008b8b28965dc4e95d6576e74cbfa4fde0930a051b787fcdfb6347ae6
7
+ data.tar.gz: ccd6fbacb38d4935fb20d07aeb125a75a0601e5244b491e55e094fd11d980f3837aa5acb59bd5263778c27125f56ed0448a9754501a6eaf9c73b1bd8e03ca882
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.49.0 (2026-07-31)
4
+
5
+ Full Changelog: [v0.48.0...v0.49.0](https://github.com/GetSafetyKit/safetykit-ruby/compare/v0.48.0...v0.49.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([cf0ec44](https://github.com/GetSafetyKit/safetykit-ruby/commit/cf0ec4463cb66198fb4d440ecd8bd611089f7179))
10
+
3
11
  ## 0.48.0 (2026-07-30)
4
12
 
5
13
  Full Changelog: [v0.47.0...v0.48.0](https://github.com/GetSafetyKit/safetykit-ruby/compare/v0.47.0...v0.48.0)
data/README.md CHANGED
@@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application
17
17
  <!-- x-release-please-start-version -->
18
18
 
19
19
  ```ruby
20
- gem "safetykit", "~> 0.48.0"
20
+ gem "safetykit", "~> 0.49.0"
21
21
  ```
22
22
 
23
23
  <!-- x-release-please-end -->
@@ -15,7 +15,7 @@ module SafetyKit
15
15
 
16
16
  # @!attribute expires_in
17
17
  # Lifetime of the access token in seconds. Defaults to 3600 (1 hour). Minimum 300
18
- # (5 minutes), maximum 43200 (12 hours).
18
+ # (5 minutes), maximum 86400 (24 hours).
19
19
  #
20
20
  # @return [Integer, nil]
21
21
  optional :expires_in, Integer
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SafetyKit
4
- VERSION = "0.48.0"
4
+ VERSION = "0.49.0"
5
5
  end
@@ -22,7 +22,7 @@ module SafetyKit
22
22
  attr_writer :customer_session_id
23
23
 
24
24
  # Lifetime of the access token in seconds. Defaults to 3600 (1 hour). Minimum 300
25
- # (5 minutes), maximum 43200 (12 hours).
25
+ # (5 minutes), maximum 86400 (24 hours).
26
26
  sig { returns(T.nilable(Integer)) }
27
27
  attr_reader :expires_in
28
28
 
@@ -49,7 +49,7 @@ module SafetyKit
49
49
  # Optional opaque session identifier to associate with the access token.
50
50
  customer_session_id: nil,
51
51
  # Lifetime of the access token in seconds. Defaults to 3600 (1 hour). Minimum 300
52
- # (5 minutes), maximum 43200 (12 hours).
52
+ # (5 minutes), maximum 86400 (24 hours).
53
53
  expires_in: nil,
54
54
  # Optional user identifier to associate with the access token for attribution. Use
55
55
  # the same canonical user ID string that you send in other SafetyKit API calls.
@@ -21,7 +21,7 @@ module SafetyKit
21
21
  # Optional opaque session identifier to associate with the access token.
22
22
  customer_session_id: nil,
23
23
  # Lifetime of the access token in seconds. Defaults to 3600 (1 hour). Minimum 300
24
- # (5 minutes), maximum 43200 (12 hours).
24
+ # (5 minutes), maximum 86400 (24 hours).
25
25
  expires_in: nil,
26
26
  # Optional user identifier to associate with the access token for attribution. Use
27
27
  # the same canonical user ID string that you send in other SafetyKit API calls.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: safetykit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.48.0
4
+ version: 0.49.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Safetykit
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-07-30 00:00:00.000000000 Z
11
+ date: 2026-07-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi