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 +4 -4
 - data/CHANGELOG.md +8 -0
 - data/README.md +1 -1
 - data/lib/trycourier/models/recipient.rb +2 -2
 - data/lib/trycourier/models/user_recipient.rb +2 -2
 - data/lib/trycourier/version.rb +1 -1
 - data/rbi/trycourier/models/recipient.rbi +2 -2
 - data/rbi/trycourier/models/user_recipient.rbi +2 -2
 - 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: 8eadbb8e9f666e7914fb8c7ebd4593aa298024aa10bed408e1007301801987e1
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 2f0605578542696913f1b237bf742b7cd6a6c7cf9d8c8ff4c3b121a105bb5937
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 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. 
     | 
| 
      
 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 
     | 
    
         
             
                  #
         
     | 
    
        data/lib/trycourier/version.rb
    CHANGED
    
    
| 
         @@ -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,
         
     |