Skip to content

Commit 7f078d8

Browse files
release: 1.27.0 (#64)
* feat(api): api update * release: 1.27.0 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent fe25134 commit 7f078d8

File tree

9 files changed

+19
-11
lines changed

9 files changed

+19
-11
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.26.0"
2+
".": "1.27.0"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 90
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/knock%2Fknock-0c621c06484c8d9a82e2cc70d2984dce46fa82f86185bce773c0bc265df77139.yml
3-
openapi_spec_hash: 8670b393e28985dc4e93a16597690025
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/knock%2Fknock-138601849c510c1e1c96af745bc2a4c4099a6e69054b454ba69e61082fb60f31.yml
3+
openapi_spec_hash: 4858bf3005cfe4a73eaa5cdc8a4ac939
44
config_hash: 2b42d138d85c524e65fa7e205d36cc4a

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 1.27.0 (2026-01-20)
4+
5+
Full Changelog: [v1.26.0...v1.27.0](https://github.com/knocklabs/knock-ruby/compare/v1.26.0...v1.27.0)
6+
7+
### Features
8+
9+
* **api:** api update ([83cee0f](https://github.com/knocklabs/knock-ruby/commit/83cee0f0e8d3b5e99a3006067bf8f514b76b4d42))
10+
311
## 1.26.0 (2026-01-16)
412

513
Full Changelog: [v1.25.1...v1.26.0](https://github.com/knocklabs/knock-ruby/compare/v1.25.1...v1.26.0)

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ GIT
1111
PATH
1212
remote: .
1313
specs:
14-
knockapi (1.26.0)
14+
knockapi (1.27.0)
1515
cgi
1616
connection_pool
1717

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application
1717
<!-- x-release-please-start-version -->
1818

1919
```ruby
20-
gem "knockapi", "~> 1.26.0"
20+
gem "knockapi", "~> 1.27.0"
2121
```
2222

2323
<!-- x-release-please-end -->

lib/knockapi/models/condition.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ module Operator
4949
CONTAINS_ALL = :contains_all
5050
IS_TIMESTAMP = :is_timestamp
5151
IS_NOT_TIMESTAMP = :is_not_timestamp
52-
IS_TIMESTAMP_ON_OR_AFTER = :is_timestamp_on_or_after
52+
IS_TIMESTAMP_AFTER = :is_timestamp_after
5353
IS_TIMESTAMP_BEFORE = :is_timestamp_before
5454
IS_TIMESTAMP_BETWEEN = :is_timestamp_between
5555
IS_AUDIENCE_MEMBER = :is_audience_member

lib/knockapi/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Knockapi
4-
VERSION = "1.26.0"
4+
VERSION = "1.27.0"
55
end

rbi/knockapi/models/condition.rbi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ module Knockapi
8585
T.let(:is_timestamp, Knockapi::Condition::Operator::TaggedSymbol)
8686
IS_NOT_TIMESTAMP =
8787
T.let(:is_not_timestamp, Knockapi::Condition::Operator::TaggedSymbol)
88-
IS_TIMESTAMP_ON_OR_AFTER =
88+
IS_TIMESTAMP_AFTER =
8989
T.let(
90-
:is_timestamp_on_or_after,
90+
:is_timestamp_after,
9191
Knockapi::Condition::Operator::TaggedSymbol
9292
)
9393
IS_TIMESTAMP_BEFORE =

sig/knockapi/models/condition.rbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ module Knockapi
4040
| :contains_all
4141
| :is_timestamp
4242
| :is_not_timestamp
43-
| :is_timestamp_on_or_after
43+
| :is_timestamp_after
4444
| :is_timestamp_before
4545
| :is_timestamp_between
4646
| :is_audience_member
@@ -62,7 +62,7 @@ module Knockapi
6262
CONTAINS_ALL: :contains_all
6363
IS_TIMESTAMP: :is_timestamp
6464
IS_NOT_TIMESTAMP: :is_not_timestamp
65-
IS_TIMESTAMP_ON_OR_AFTER: :is_timestamp_on_or_after
65+
IS_TIMESTAMP_AFTER: :is_timestamp_after
6666
IS_TIMESTAMP_BEFORE: :is_timestamp_before
6767
IS_TIMESTAMP_BETWEEN: :is_timestamp_between
6868
IS_AUDIENCE_MEMBER: :is_audience_member

0 commit comments

Comments
 (0)