rcs 1.0.14 → 1.0.16
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/lib/rcs/company/client.rb +61 -6
- data/lib/rcs/tools/client.rb +207 -0
- data/lib/rcs/tools/types/tools_shorten_url_response.rb +70 -0
- data/lib/rcs/tools/types/tools_upload_url_response.rb +69 -0
- data/lib/rcs/types/company.rb +53 -2
- data/lib/rcs/types/company_category.rb +20 -0
- data/lib/rcs/types/company_details.rb +11 -1
- data/lib/rcs/types/inbound_action_message.rb +117 -0
- data/lib/rcs/types/inbound_location_message.rb +106 -0
- data/lib/rcs/types/inbound_location_message_coordinates.rb +65 -0
- data/lib/rcs/types/inbound_media_message.rb +112 -0
- data/lib/rcs/types/inbound_message.rb +88 -0
- data/lib/rcs/types/inbound_message_message_type.rb +10 -0
- data/lib/rcs/types/inbound_message_metadata.rb +79 -0
- data/lib/rcs/types/inbound_text_message.rb +100 -0
- data/lib/rcs/types/media_payload.rb +65 -0
- data/lib/rcs/types/message_metadata.rb +56 -0
- data/lib/rcs/types/messaging.rb +95 -0
- data/lib/rcs/types/sender_metadata.rb +74 -0
- data/lib/rcs.rb +7 -0
- data/lib/requests.rb +2 -2
- data/lib/types_export.rb +15 -0
- metadata +18 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rcs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.16
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ''
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: async-http-faraday
|
@@ -109,6 +109,9 @@ files:
|
|
109
109
|
- lib/rcs/send/types/send_mms_response.rb
|
110
110
|
- lib/rcs/send/types/send_rcs_response.rb
|
111
111
|
- lib/rcs/send/types/send_sms_response.rb
|
112
|
+
- lib/rcs/tools/client.rb
|
113
|
+
- lib/rcs/tools/types/tools_shorten_url_response.rb
|
114
|
+
- lib/rcs/tools/types/tools_upload_url_response.rb
|
112
115
|
- lib/rcs/types/action.rb
|
113
116
|
- lib/rcs/types/action_lat_long.rb
|
114
117
|
- lib/rcs/types/action_type.rb
|
@@ -121,14 +124,27 @@ files:
|
|
121
124
|
- lib/rcs/types/company_additional_emails_item.rb
|
122
125
|
- lib/rcs/types/company_additional_phone_numbers_item.rb
|
123
126
|
- lib/rcs/types/company_additional_websites_item.rb
|
127
|
+
- lib/rcs/types/company_category.rb
|
124
128
|
- lib/rcs/types/company_contact.rb
|
125
129
|
- lib/rcs/types/company_details.rb
|
126
130
|
- lib/rcs/types/forbidden_error_body.rb
|
131
|
+
- lib/rcs/types/inbound_action_message.rb
|
132
|
+
- lib/rcs/types/inbound_location_message.rb
|
133
|
+
- lib/rcs/types/inbound_location_message_coordinates.rb
|
134
|
+
- lib/rcs/types/inbound_media_message.rb
|
135
|
+
- lib/rcs/types/inbound_message.rb
|
136
|
+
- lib/rcs/types/inbound_message_message_type.rb
|
137
|
+
- lib/rcs/types/inbound_message_metadata.rb
|
138
|
+
- lib/rcs/types/inbound_text_message.rb
|
127
139
|
- lib/rcs/types/internal_server_error_body.rb
|
140
|
+
- lib/rcs/types/media_payload.rb
|
141
|
+
- lib/rcs/types/message_metadata.rb
|
142
|
+
- lib/rcs/types/messaging.rb
|
128
143
|
- lib/rcs/types/optionals.rb
|
129
144
|
- lib/rcs/types/payment_required_error_body.rb
|
130
145
|
- lib/rcs/types/point_of_contact.rb
|
131
146
|
- lib/rcs/types/rcs_functionalities.rb
|
147
|
+
- lib/rcs/types/sender_metadata.rb
|
132
148
|
- lib/rcs/types/unauthorized_error_body.rb
|
133
149
|
- lib/requests.rb
|
134
150
|
- lib/types_export.rb
|