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 +4 -4
- data/CHANGELOG.md +15 -0
- data/README.md +1 -1
- data/lib/sentdm/models/message_retrieve_activities_response.rb +2 -2
- data/lib/sentdm/models/message_send_response.rb +6 -2
- data/lib/sentdm/version.rb +1 -1
- data/rbi/sentdm/models/message_retrieve_activities_response.rbi +2 -2
- data/rbi/sentdm/models/message_send_response.rbi +4 -2
- 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: 5e87e49907f7b219b5ced6906f5452abdf571c04de03597c7de158f3601849c9
|
|
4
|
+
data.tar.gz: b8cad63e1da5c1f89cb454e3723a9dd8d99e2591e214be74de73ebfe0a4662ee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
@@ -83,7 +83,7 @@ module Sentdm
|
|
|
83
83
|
optional :price, String, nil?: true
|
|
84
84
|
|
|
85
85
|
# @!attribute status
|
|
86
|
-
# Activity status (e.g.,
|
|
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.,
|
|
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
|
|
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
|
|
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
|
#
|
data/lib/sentdm/version.rb
CHANGED
|
@@ -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.,
|
|
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.,
|
|
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
|
|
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
|
|
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.
|
|
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-
|
|
11
|
+
date: 2026-03-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|