trycourier 3.4.0.pre.alpha5 → 3.4.0.pre.alpha6

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: f14ee1336a781820bc7322a988b66af49dc962deb69ca3d632678a9d87418dae
4
- data.tar.gz: 48cf6121b3dfdea6d0333a4d3c099dcdff65a44e487312ff4c662e8132e7da96
3
+ metadata.gz: 8eadbb8e9f666e7914fb8c7ebd4593aa298024aa10bed408e1007301801987e1
4
+ data.tar.gz: 2f0605578542696913f1b237bf742b7cd6a6c7cf9d8c8ff4c3b121a105bb5937
5
5
  SHA512:
6
- metadata.gz: 76668745729ceabd8103834ff1c0a4f314554bb7011cfed1602474b3d7209b742b6f68f62a25a24e8b49cdb1c72391a83ff4502c52df1ed34eb7c4173a05ffe5
7
- data.tar.gz: eea8f1d219fd7253402ae012e2e5364d4e80b93e35eba7f124426ce03f95afdc2c776ad342c3af80ccf5b4005c36f2300780ceeca4358f926c82befcc3f9a215
6
+ metadata.gz: 5e58b501557cbb4fb81bf30e83ce3756efe4c5aa80d828a76d40426e437d3fe97323780f632bf6f1e8c968dc30c08001671d1ad6f66e2a685a230f805b73bb7a
7
+ data.tar.gz: 60533c437f26fda04fcf518a2a3c00de129e027c340c210cf1573195d7fc4038042b3cd8d14d7962dbaedc3fa1b8f7e3ccf362c9df6f08cfb59953476741d5d3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.4.0-alpha6 (2025-10-17)
4
+
5
+ Full Changelog: [v3.4.0-alpha5...v3.4.0-alpha6](https://github.com/trycourier/courier-ruby/compare/v3.4.0-alpha5...v3.4.0-alpha6)
6
+
7
+ ### Bug Fixes
8
+
9
+ * Dep Warning ([3439cba](https://github.com/trycourier/courier-ruby/commit/3439cbae785d9e2198cc6af4a19e4e54e9e74c0c))
10
+
3
11
  ## 3.4.0-alpha5 (2025-10-17)
4
12
 
5
13
  Full Changelog: [v3.4.0-alpha4...v3.4.0-alpha5](https://github.com/trycourier/courier-ruby/compare/v3.4.0-alpha4...v3.4.0-alpha5)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "trycourier", "~> 3.4.0.pre.alpha5"
18
+ gem "trycourier", "~> 3.4.0.pre.alpha6"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -4,7 +4,7 @@ module Trycourier
4
4
  module Models
5
5
  class Recipient < Trycourier::Internal::Type::BaseModel
6
6
  # @!attribute account_id
7
- # Use `tenant_id` instead.
7
+ # Deprecated - Use `tenant_id` instead.
8
8
  #
9
9
  # @return [String, nil]
10
10
  optional :account_id, String, nil?: true
@@ -60,7 +60,7 @@ module Trycourier
60
60
  # Some parameter documentations has been truncated, see
61
61
  # {Trycourier::Models::Recipient} for more details.
62
62
  #
63
- # @param account_id [String, nil] Use `tenant_id` instead.
63
+ # @param account_id [String, nil] Deprecated - Use `tenant_id` instead.
64
64
  #
65
65
  # @param context [Trycourier::Models::MessageContext, nil] Context such as tenant_id to send the notification with.
66
66
  #
@@ -4,7 +4,7 @@ module Trycourier
4
4
  module Models
5
5
  class UserRecipient < Trycourier::Internal::Type::BaseModel
6
6
  # @!attribute account_id
7
- # Use `tenant_id` instead.
7
+ # Deprecated - Use `tenant_id` instead.
8
8
  #
9
9
  # @return [String, nil]
10
10
  optional :account_id, String, nil?: true
@@ -60,7 +60,7 @@ module Trycourier
60
60
  # Some parameter documentations has been truncated, see
61
61
  # {Trycourier::Models::UserRecipient} for more details.
62
62
  #
63
- # @param account_id [String, nil] Use `tenant_id` instead.
63
+ # @param account_id [String, nil] Deprecated - Use `tenant_id` instead.
64
64
  #
65
65
  # @param context [Trycourier::Models::MessageContext, nil] Context such as tenant_id to send the notification with.
66
66
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Trycourier
4
- VERSION = "3.4.0.pre.alpha5"
4
+ VERSION = "3.4.0.pre.alpha6"
5
5
  end
@@ -8,7 +8,7 @@ module Trycourier
8
8
  T.any(Trycourier::Recipient, Trycourier::Internal::AnyHash)
9
9
  end
10
10
 
11
- # Use `tenant_id` instead.
11
+ # Deprecated - Use `tenant_id` instead.
12
12
  sig { returns(T.nilable(String)) }
13
13
  attr_accessor :account_id
14
14
 
@@ -69,7 +69,7 @@ module Trycourier
69
69
  ).returns(T.attached_class)
70
70
  end
71
71
  def self.new(
72
- # Use `tenant_id` instead.
72
+ # Deprecated - Use `tenant_id` instead.
73
73
  account_id: nil,
74
74
  # Context such as tenant_id to send the notification with.
75
75
  context: nil,
@@ -8,7 +8,7 @@ module Trycourier
8
8
  T.any(Trycourier::UserRecipient, Trycourier::Internal::AnyHash)
9
9
  end
10
10
 
11
- # Use `tenant_id` instead.
11
+ # Deprecated - Use `tenant_id` instead.
12
12
  sig { returns(T.nilable(String)) }
13
13
  attr_accessor :account_id
14
14
 
@@ -70,7 +70,7 @@ module Trycourier
70
70
  ).returns(T.attached_class)
71
71
  end
72
72
  def self.new(
73
- # Use `tenant_id` instead.
73
+ # Deprecated - Use `tenant_id` instead.
74
74
  account_id: nil,
75
75
  # Context such as tenant_id to send the notification with.
76
76
  context: nil,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trycourier
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.4.0.pre.alpha5
4
+ version: 3.4.0.pre.alpha6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Courier