knockapi 1.3.0 → 1.4.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/knockapi/resources/users.rb +3 -1
- data/lib/knockapi/version.rb +1 -1
- data/rbi/knockapi/resources/users.rbi +3 -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: 312dc7ab8b0d9d30d468bff248ea0264923e2a8110c367e4749f91d92bb76340
|
4
|
+
data.tar.gz: 547f9ca3b9100ea38edd309c267c3dd271dc5385c34d321d317dc1293da242c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 159cb78df2015135e471b8a05d7f6cd98c43ef5d6ffa3b917cc427f86b42b3f500614b1c0a2658e01be81078235e9db70d675ff06fab876642e1eb082463f5d9
|
7
|
+
data.tar.gz: 239d8fc677b778f0c7463c6f990ebda591ed4ff36f3bc747f5006efa29d8f894381cfdddc1236fedaf35bfd87fc2c767c588e670f220d76e4e0cdfac80c5b956
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.4.0 (2025-05-29)
|
4
|
+
|
5
|
+
Full Changelog: [v1.3.0...v1.4.0](https://github.com/knocklabs/knock-ruby/compare/v1.3.0...v1.4.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([f1d1f0f](https://github.com/knocklabs/knock-ruby/commit/f1d1f0f262a0cecec5f416873be4d3ee6418ec94))
|
10
|
+
|
3
11
|
## 1.3.0 (2025-05-28)
|
4
12
|
|
5
13
|
Full Changelog: [v1.2.0...v1.3.0](https://github.com/knocklabs/knock-ruby/compare/v1.2.0...v1.3.0)
|
data/README.md
CHANGED
@@ -344,7 +344,9 @@ module Knockapi
|
|
344
344
|
)
|
345
345
|
end
|
346
346
|
|
347
|
-
# Updates or creates channel data for a specific user and channel ID.
|
347
|
+
# Updates or creates channel data for a specific user and channel ID. If no user
|
348
|
+
# exists in the current environment for the given `user_id`, Knock will create the
|
349
|
+
# user entry as part of this request.
|
348
350
|
#
|
349
351
|
# @overload set_channel_data(user_id, channel_id, data:, request_options: {})
|
350
352
|
#
|
data/lib/knockapi/version.rb
CHANGED
@@ -325,7 +325,9 @@ module Knockapi
|
|
325
325
|
)
|
326
326
|
end
|
327
327
|
|
328
|
-
# Updates or creates channel data for a specific user and channel ID.
|
328
|
+
# Updates or creates channel data for a specific user and channel ID. If no user
|
329
|
+
# exists in the current environment for the given `user_id`, Knock will create the
|
330
|
+
# user entry as part of this request.
|
329
331
|
sig do
|
330
332
|
params(
|
331
333
|
user_id: String,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: knockapi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Knock
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-06-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|