sentdm 0.10.1 → 0.11.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: acf51f78fc12f037bdde6700489c5a12f772f92199e0b7fa3e7fbce45b6f0b11
4
- data.tar.gz: e355f9676d0865e86751c03c28eb0568704edf72a63376cc733b3666abf013cd
3
+ metadata.gz: 5e87e49907f7b219b5ced6906f5452abdf571c04de03597c7de158f3601849c9
4
+ data.tar.gz: b8cad63e1da5c1f89cb454e3723a9dd8d99e2591e214be74de73ebfe0a4662ee
5
5
  SHA512:
6
- metadata.gz: 8d73339d127ea6a273476af8a447951e94240142e08a8008b060d119484761173a26e4339939309c4fe4d39877fe1ed1e57d12a42657170194dc89b8d129d72d
7
- data.tar.gz: 7b42b73765b9e13a980bbd7b75d128c358e680f94356b06037fe8ff3fcc41df4f083514766bcf656c79dcc4ba598eb2ca1ed43daf5d43af5a0a407ea7f03b62c
6
+ metadata.gz: e646a3a8f93e77e78abd4f30dc55b77eca8d453469f8f846033b1b33f9617edd90c425f8a36f5fafdc540776b67e00f597226a09967e3cdd5c4f0695e05202c6
7
+ data.tar.gz: d028bfb287191146298434d6138b4c14798edf4db4169204d8df7c578e6b9aa6fc75e48e9959ae8d2175399a33efbe7859c2ca104119ac714142706b2f8edd0c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.11.0 (2026-03-25)
4
+
5
+ Full Changelog: [v0.10.1...v0.11.0](https://github.com/sentdm/sent-dm-ruby/compare/v0.10.1...v0.11.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([a135bb7](https://github.com/sentdm/sent-dm-ruby/commit/a135bb7e7d7d58b2a021350e40d31caef272e1d8))
10
+ * **api:** api update ([28c1518](https://github.com/sentdm/sent-dm-ruby/commit/28c1518edc74bc69e75c26927e3cc10694080863))
11
+
12
+
13
+ ### Chores
14
+
15
+ * **ci:** skip lint on metadata-only changes ([deb319b](https://github.com/sentdm/sent-dm-ruby/commit/deb319b2a4165820342151a807d6f76577d64dda))
16
+ * **internal:** update gitignore ([6b93a57](https://github.com/sentdm/sent-dm-ruby/commit/6b93a579755f49944db2dd97f1719b6b0bf4fa7f))
17
+
3
18
  ## 0.10.1 (2026-03-17)
4
19
 
5
20
  Full Changelog: [v0.10.0...v0.10.1](https://github.com/sentdm/sent-dm-ruby/compare/v0.10.0...v0.10.1)
data/README.md CHANGED
@@ -26,7 +26,7 @@ To use this gem, install via Bundler by adding the following to your application
26
26
  <!-- x-release-please-start-version -->
27
27
 
28
28
  ```ruby
29
- gem "sentdm", "~> 0.10.1"
29
+ gem "sentdm", "~> 0.11.0"
30
30
  ```
31
31
 
32
32
  <!-- x-release-please-end -->
@@ -83,7 +83,7 @@ module Sentdm
83
83
  optional :price, String, nil?: true
84
84
 
85
85
  # @!attribute status
86
- # Activity status (e.g., ACCEPTED, PROCESSED, SENT, DELIVERED, FAILED)
86
+ # Activity status (e.g., QUEUED, PROCESSED, ROUTED, SENT, DELIVERED, FAILED)
87
87
  #
88
88
  # @return [String, nil]
89
89
  optional :status, String
@@ -107,7 +107,7 @@ module Sentdm
107
107
  #
108
108
  # @param price [String, nil] Channel cost for this activity (e.g., SMS/WhatsApp provider cost), formatted to
109
109
  #
110
- # @param status [String] Activity status (e.g., ACCEPTED, PROCESSED, SENT, DELIVERED, FAILED)
110
+ # @param status [String] Activity status (e.g., QUEUED, PROCESSED, ROUTED, SENT, DELIVERED, FAILED)
111
111
  #
112
112
  # @param timestamp [Time] When this activity occurred
113
113
  end
@@ -49,7 +49,8 @@ module Sentdm
49
49
  -> { Sentdm::Internal::Type::ArrayOf[Sentdm::Models::MessageSendResponse::Data::Recipient] }
50
50
 
51
51
  # @!attribute status
52
- # Overall request status (e.g. "accepted")
52
+ # Overall request status: "QUEUED" when the batch has been accepted and published
53
+ # to Kafka.
53
54
  #
54
55
  # @return [String, nil]
55
56
  optional :status, String
@@ -67,11 +68,14 @@ module Sentdm
67
68
  optional :template_name, String
68
69
 
69
70
  # @!method initialize(recipients: nil, status: nil, template_id: nil, template_name: nil)
71
+ # Some parameter documentations has been truncated, see
72
+ # {Sentdm::Models::MessageSendResponse::Data} for more details.
73
+ #
70
74
  # Response for the multi-recipient send message endpoint
71
75
  #
72
76
  # @param recipients [Array<Sentdm::Models::MessageSendResponse::Data::Recipient>] Per-recipient message results
73
77
  #
74
- # @param status [String] Overall request status (e.g. "accepted")
78
+ # @param status [String] Overall request status: "QUEUED" when the batch has been accepted and published
75
79
  #
76
80
  # @param template_id [String] Template ID that was used
77
81
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Sentdm
4
- VERSION = "0.10.1"
4
+ VERSION = "0.11.0"
5
5
  end
@@ -186,7 +186,7 @@ module Sentdm
186
186
  sig { returns(T.nilable(String)) }
187
187
  attr_accessor :price
188
188
 
189
- # Activity status (e.g., ACCEPTED, PROCESSED, SENT, DELIVERED, FAILED)
189
+ # Activity status (e.g., QUEUED, PROCESSED, ROUTED, SENT, DELIVERED, FAILED)
190
190
  sig { returns(T.nilable(String)) }
191
191
  attr_reader :status
192
192
 
@@ -219,7 +219,7 @@ module Sentdm
219
219
  # Channel cost for this activity (e.g., SMS/WhatsApp provider cost), formatted to
220
220
  # 4 decimal places.
221
221
  price: nil,
222
- # Activity status (e.g., ACCEPTED, PROCESSED, SENT, DELIVERED, FAILED)
222
+ # Activity status (e.g., QUEUED, PROCESSED, ROUTED, SENT, DELIVERED, FAILED)
223
223
  status: nil,
224
224
  # When this activity occurred
225
225
  timestamp: nil
@@ -103,7 +103,8 @@ module Sentdm
103
103
  end
104
104
  attr_writer :recipients
105
105
 
106
- # Overall request status (e.g. "accepted")
106
+ # Overall request status: "QUEUED" when the batch has been accepted and published
107
+ # to Kafka.
107
108
  sig { returns(T.nilable(String)) }
108
109
  attr_reader :status
109
110
 
@@ -139,7 +140,8 @@ module Sentdm
139
140
  def self.new(
140
141
  # Per-recipient message results
141
142
  recipients: nil,
142
- # Overall request status (e.g. "accepted")
143
+ # Overall request status: "QUEUED" when the batch has been accepted and published
144
+ # to Kafka.
143
145
  status: nil,
144
146
  # Template ID that was used
145
147
  template_id: nil,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sentdm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.1
4
+ version: 0.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sent Dm
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-03-17 00:00:00.000000000 Z
11
+ date: 2026-03-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi