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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/safety_kit/models/access_token_create_access_token_params.rb +1 -1
- data/lib/safety_kit/version.rb +1 -1
- data/rbi/safety_kit/models/access_token_create_access_token_params.rbi +2 -2
- data/rbi/safety_kit/resources/access_tokens.rbi +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ffe5ac9eeb7e3772d15ac6cd4050b50ce60db643f95f7a372568f8d063584730
|
|
4
|
+
data.tar.gz: 6a2fd2adb3656d26d80c6f3dd9dd6d21d21f716d8d47c96a79575c4d3c68ce91
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
@@ -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
|
|
18
|
+
# (5 minutes), maximum 86400 (24 hours).
|
|
19
19
|
#
|
|
20
20
|
# @return [Integer, nil]
|
|
21
21
|
optional :expires_in, Integer
|
data/lib/safety_kit/version.rb
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
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.
|
|
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-
|
|
11
|
+
date: 2026-07-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|