safetykit 0.61.0 → 0.62.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/resources/content.rb +4 -3
- data/lib/safety_kit/version.rb +1 -1
- data/rbi/safety_kit/resources/content.rbi +4 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8f5ba2319763d7b6d9c2efb54f5c4f2fbb38e8f1ad5a3e13e9263489462a655b
|
|
4
|
+
data.tar.gz: ea534ef3d9af074b20402b4116c9b5603928d859d5e0397db00327c73bb68b0e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d0003cb3fc891f5e4bab459017dee09977aa213a0a203003b95959c6a8e450c996702eeed8fc477406f58850562f87668ce012fb039cc5dd2558b349d63e106a
|
|
7
|
+
data.tar.gz: 6a5af12159936f30f5dd14c894581d27d96b990be0793bb9fb539775cd00459fd4403a737eebd8db196cc383d28a61502587ce8351e7a5fcabcb803463cd2cdd
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.62.0 (2026-08-13)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.61.0...v0.62.0](https://github.com/GetSafetyKit/safetykit-ruby/compare/v0.61.0...v0.62.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([0bc7153](https://github.com/GetSafetyKit/safetykit-ruby/commit/0bc7153e8b96ffaf70c7ebe95f185bff4347befb))
|
|
10
|
+
|
|
3
11
|
## 0.61.0 (2026-08-13)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.60.0...v0.61.0](https://github.com/GetSafetyKit/safetykit-ruby/compare/v0.60.0...v0.61.0)
|
data/README.md
CHANGED
|
@@ -13,9 +13,10 @@ module SafetyKit
|
|
|
13
13
|
# version 2026-08-11; see the API versioning guide for superseded versions.
|
|
14
14
|
#
|
|
15
15
|
# Errors: 400 for an invalid body or images, with the failing field in the
|
|
16
|
-
# message. 401 for a missing or invalid API key. 413 for requests over 6MB.
|
|
17
|
-
# when
|
|
18
|
-
#
|
|
16
|
+
# message. 401 for a missing or invalid API key. 413 for requests over 6MB. 429
|
|
17
|
+
# when too many requests are in flight for your account, with a Retry-After
|
|
18
|
+
# header. 503 when classification is temporarily unavailable. In both cases the
|
|
19
|
+
# request was not processed and is safe to retry.
|
|
19
20
|
#
|
|
20
21
|
# @overload create(content:, user_id:, content_id: nil, metadata: nil, safety_kit_version: nil, request_options: {})
|
|
21
22
|
#
|
data/lib/safety_kit/version.rb
CHANGED
|
@@ -10,9 +10,10 @@ module SafetyKit
|
|
|
10
10
|
# version 2026-08-11; see the API versioning guide for superseded versions.
|
|
11
11
|
#
|
|
12
12
|
# Errors: 400 for an invalid body or images, with the failing field in the
|
|
13
|
-
# message. 401 for a missing or invalid API key. 413 for requests over 6MB.
|
|
14
|
-
# when
|
|
15
|
-
#
|
|
13
|
+
# message. 401 for a missing or invalid API key. 413 for requests over 6MB. 429
|
|
14
|
+
# when too many requests are in flight for your account, with a Retry-After
|
|
15
|
+
# header. 503 when classification is temporarily unavailable. In both cases the
|
|
16
|
+
# request was not processed and is safe to retry.
|
|
16
17
|
sig do
|
|
17
18
|
params(
|
|
18
19
|
content:
|