telnyx 3.0.0 → 3.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d77f71e530260bbc4da3406c9909cccd0c9a54a04c5136c7b0321810f9278ead
4
- data.tar.gz: c4321a1307db25955ee287998684d5edf3bba90717b537362c6d7ff2baa7d1d3
3
+ metadata.gz: 927c50209752403c6195640304e8347c3976accd6b47482b0a3d4c1555620a0d
4
+ data.tar.gz: a1e2949af48a5de6e2acc95beb81b82155261b7f0e96f1fb908172ed815bef30
5
5
  SHA512:
6
- metadata.gz: 3a1eec96deb0c882a6c61d855778c206a4bc4552a9339da588ac3543953b17c1826bb3b75eab69435cadf2637eaae7251a70945c1c50da626b15bdd86c23eeda
7
- data.tar.gz: e17ee0b728af3fbeb49574b11dd2bf4dd367716938a0a4bf521e0f7bab36facf1780b071e5d40770e0b2fbb3e57c8cc1e85d3ce2835b41e7532a5e1cbb931062
6
+ metadata.gz: 11f180c0a27812562112cc97374e64234898c5c4c4ca5e9c1bed9a0828013837f246ea8f3e822b542044d8862887deb6638f51457fc2ff5cc9d69571c24d32ed
7
+ data.tar.gz: ba3017fe223168af6248ed3a57e6dc50444aa08607ecbce4295453997081b2dce9e13f1e39208a13392961d59e4c0195a3a841fb7f240791e5d5561558a64bd7
data/README.md CHANGED
@@ -161,12 +161,36 @@ There are a few options for enabling it:
161
161
 
162
162
  ## Development
163
163
 
164
- The test suite depends on [telnyx-mock], so make sure to fetch and run it from a
165
- background terminal ([telnyx-mock's README][telnyx-mock] also contains
166
- instructions for installing via Homebrew and other methods):
164
+ ### Setup
165
+ The test suite depends on the [Prism Mock Server](https://github.com/stoplightio/prism).
167
166
 
168
- go get -u github.com/telnyx/telnyx-mock
169
- telnyx-mock
167
+ ```bash
168
+ npm install -g @stoplight/prism-cli
169
+
170
+ # OR
171
+
172
+ yarn global add @stoplight/prism-cli
173
+ ```
174
+
175
+ Once installed, start the prism mock service with the following command:
176
+
177
+ ```bash
178
+ prism mock https://raw.githubusercontent.com/team-telnyx/openapi/master/openapi/spec3.json
179
+ ```
180
+
181
+ --------
182
+
183
+ One final step -- because the Ruby SDK originally expected to reach the legacy `telnyx-mock` service at port 12111 (in addition to providing a `/v2/` base path), we need to setup a proxy server.
184
+
185
+ You can do this any way you wish, but included is a server.js file which you can utilize:
186
+
187
+ ```bash
188
+ # In new terminal window
189
+
190
+ node server.js
191
+ ```
192
+
193
+ ### Running Tests
170
194
 
171
195
  Run all tests:
172
196
 
@@ -188,9 +212,6 @@ Run guard:
188
212
 
189
213
  bundle exec guard
190
214
 
191
- Update the bundled [telnyx-mock] by editing the version number found in
192
- `.travis.yml`.
193
-
194
215
  ### Adding a new resource
195
216
 
196
217
  To add a new resource:
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.1.0
1
+ 3.0.2
data/lib/telnyx/brand.rb CHANGED
@@ -8,6 +8,13 @@ module Telnyx
8
8
  include APIOperations::Delete
9
9
  include APIOperations::Save
10
10
 
11
- OBJECT_NAME = "10dlc/brand".freeze
11
+ def self.resource_url(inner_id = nil)
12
+ path_prefix = "/10dlc"
13
+ object_path = "brand"
14
+
15
+ inner_id.nil? ? "#{path_prefix}/#{object_path}" : "#{path_prefix}/#{object_path}/#{CGI.escape(inner_id)}"
16
+ end
17
+
18
+ OBJECT_NAME = "brand".freeze
12
19
  end
13
20
  end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Telnyx
4
+ class PhoneNumberAssignmentByProfile < APIResource
5
+ extend APIOperations::List
6
+ extend APIOperations::Create
7
+ extend APIOperations::NestedResource
8
+
9
+ def accept_sharing(params = {}, opts = {})
10
+ resp, opts = request(:get, "/10dlc/campaign/phoneNumbers/#{taskId.gsub(/\s+/, '+')}", params, opts)
11
+ Util.convert_to_telnyx_object(resp.data, opts)
12
+ end
13
+
14
+ def self.resource_url(inner_id = nil)
15
+ path_prefix = "/10dlc"
16
+ object_path = "phoneNumberAssignmentByProfile"
17
+
18
+ inner_id.nil? ? "#{path_prefix}/#{object_path}" : "#{path_prefix}/#{object_path}/#{CGI.escape(inner_id)}"
19
+ end
20
+
21
+ OBJECT_NAME = "10dlc/phoneNumberAssignmentByProfile".freeze
22
+ end
23
+ end
@@ -16,19 +16,27 @@ module Telnyx
16
16
  instance_methods: { create: action }
17
17
  end
18
18
  def accept_sharing(params = {}, opts = {})
19
- resp, opts = request(:post, "/v2/campaign/acceptSharing/#{campaignId.gsub(/\s+/, '+')}", params, opts)
19
+ resp, opts = request(:post, "/10dlc/campaign/acceptSharing/#{campaignId.gsub(/\s+/, '+')}", params, opts)
20
20
  Util.convert_to_telnyx_object(resp.data, opts)
21
21
  end
22
22
 
23
23
  def sharing(params = {}, opts = {})
24
- resp, opts = request(:get, "/v2/campaign/#{campaignId.gsub(/\s+/, '+')}/sharing", params, opts)
24
+ resp, opts = request(:get, "/10dlc/campaign/#{campaignId.gsub(/\s+/, '+')}/sharing", params, opts)
25
25
  Util.convert_to_telnyx_object(resp.data, opts)
26
26
  end
27
27
 
28
28
  def osr_attributes(params = {}, opts = {})
29
- resp, opts = request(:get, "/v2/campaign/#{campaignId.gsub(/\s+/, '+')}/osr/attributes", params, opts)
29
+ resp, opts = request(:get, "/10dlc/campaign/#{campaignId.gsub(/\s+/, '+')}/osr/attributes", params, opts)
30
30
  Util.convert_to_telnyx_object(resp.data, opts)
31
31
  end
32
+
33
+ def self.resource_url(inner_id = nil)
34
+ path_prefix = "/10dlc"
35
+ object_path = "campaign"
36
+
37
+ inner_id.nil? ? "#{path_prefix}/#{object_path}" : "#{path_prefix}/#{object_path}/#{CGI.escape(inner_id)}"
38
+ end
39
+
32
40
  OBJECT_NAME = "campaign".freeze
33
41
  end
34
42
  end
data/lib/telnyx/enum.rb CHANGED
@@ -10,6 +10,13 @@ module Telnyx
10
10
  Util.convert_to_telnyx_object(resp.data, opts)
11
11
  end
12
12
 
13
+ def self.resource_url(inner_id = nil)
14
+ path_prefix = "/10dlc"
15
+ object_path = "enum"
16
+
17
+ inner_id.nil? ? "#{path_prefix}/#{object_path}" : "#{path_prefix}/#{object_path}/#{CGI.escape(inner_id)}"
18
+ end
19
+
13
20
  OBJECT_NAME = "enum".freeze
14
21
  end
15
22
  end
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Telnyx
4
+ class PartnerCampaign < APIResource
5
+ extend Telnyx::APIOperations::List
6
+ extend Telnyx::APIOperations::Create
7
+ include Telnyx::APIOperations::Delete
8
+ include Telnyx::APIOperations::Save
9
+ extend APIOperations::NestedResource
10
+
11
+ ACTIONS = %w[mnoMetadata operationStatus].freeze
12
+ ACTIONS.each do |action|
13
+ nested_resource_class_methods action,
14
+ path: %W[#{action}],
15
+ operations: [:create],
16
+ instance_methods: { create: action }
17
+ end
18
+ def sharing(params = {}, opts = {})
19
+ resp, opts = request(:post, "/10dlc/campaign/sharing/#{campaignId.gsub(/\s+/, '+')}", params, opts)
20
+ Util.convert_to_telnyx_object(resp.data, opts)
21
+ end
22
+
23
+ def self.resource_url(inner_id = nil)
24
+ path_prefix = "/10dlc"
25
+ object_path = "partnerCampaign"
26
+
27
+ inner_id.nil? ? "#{path_prefix}/#{object_path}" : "#{path_prefix}/#{object_path}/#{CGI.escape(inner_id)}"
28
+ end
29
+
30
+ OBJECT_NAME = "partnerCampaign".freeze
31
+ end
32
+ end
@@ -7,6 +7,13 @@ module Telnyx
7
7
  include APIOperations::Delete
8
8
  include APIOperations::Save
9
9
 
10
+ def self.resource_url(inner_id = nil)
11
+ path_prefix = "/10dlc"
12
+ object_path = "campaign"
13
+
14
+ inner_id.nil? ? "#{path_prefix}/#{object_path}" : "#{path_prefix}/#{object_path}/#{CGI.escape(inner_id)}"
15
+ end
16
+
10
17
  OBJECT_NAME = "10dlc/phoneNumberCampaign".freeze
11
18
  end
12
19
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Telnyx
4
- VERSION = "3.0.0".freeze
4
+ VERSION = "3.0.2".freeze
5
5
  end
data/lib/telnyx.rb CHANGED
@@ -42,101 +42,102 @@ require "telnyx/webhook"
42
42
  require "telnyx/address"
43
43
  require "telnyx/alphanumeric_sender_id"
44
44
  require "telnyx/available_phone_number"
45
+ require "telnyx/batch_mdr_report"
45
46
  require "telnyx/billing_group"
46
- require "telnyx/call_control_application"
47
+ require "telnyx/brand"
48
+ require "telnyx/bulk_credential"
49
+ require "telnyx/bulk_sim_card_action"
50
+ require "telnyx/business_identitie"
47
51
  require "telnyx/call"
52
+ require "telnyx/call_control_application"
53
+ require "telnyx/call_event"
54
+ require "telnyx/call_recording"
55
+ require "telnyx/campaign"
56
+ require "telnyx/cdr_usage_report"
57
+ require "telnyx/channel_zone"
58
+ require "telnyx/comment"
48
59
  require "telnyx/conference"
49
60
  require "telnyx/connection"
50
61
  require "telnyx/credential_connection"
62
+ require "telnyx/csv_download"
63
+ require "telnyx/custom_storage_credential"
64
+ require "telnyx/detail_record"
65
+ require "telnyx/dialogflow_connection"
66
+ require "telnyx/embedding"
67
+ require "telnyx/enum"
51
68
  require "telnyx/event"
52
- require "telnyx/fax_application"
53
69
  require "telnyx/fax"
54
- require "telnyx/fqdn_connection"
70
+ require "telnyx/fax_application"
55
71
  require "telnyx/fqdn"
56
- require "telnyx/ip_connection"
72
+ require "telnyx/fqdn_connection"
73
+ require "telnyx/global_ip"
74
+ require "telnyx/global_ip_allowed_port"
75
+ require "telnyx/global_ip_assignment"
76
+ require "telnyx/global_ip_assignment_health"
77
+ require "telnyx/global_ip_assignment_usage"
78
+ require "telnyx/global_ip_latency"
79
+ require "telnyx/global_ip_protocol"
80
+ require "telnyx/global_ip_usage"
81
+ require "telnyx/inference"
57
82
  require "telnyx/ip"
83
+ require "telnyx/ip_connection"
84
+ require "telnyx/ledger_billing_group_report"
85
+ require "telnyx/managed_account"
86
+ require "telnyx/mdr_usage_report"
58
87
  require "telnyx/message"
59
88
  require "telnyx/message_number_pool"
60
89
  require "telnyx/messaging_phone_number"
61
90
  require "telnyx/messaging_profile"
91
+ require "telnyx/messaging_tollfree_verification"
92
+ require "telnyx/messaging_url_domain"
62
93
  require "telnyx/mobile_operator_network"
94
+ require "telnyx/mobile_push_credential"
63
95
  require "telnyx/network"
64
- require "telnyx/region"
96
+ require "telnyx/number_block_order"
65
97
  require "telnyx/number_lookup"
66
- require "telnyx/number_order_document"
67
98
  require "telnyx/number_order"
99
+ require "telnyx/number_order_document"
68
100
  require "telnyx/number_reservation"
69
101
  require "telnyx/ota_update"
70
102
  require "telnyx/outbound_voice_profile"
71
- require "telnyx/phone_number_regulatory_requirement"
72
103
  require "telnyx/phone_number"
104
+ require "telnyx/phone_number_block_job"
105
+ require "telnyx/phone_number_regulatory_requirement"
73
106
  require "telnyx/porting_order"
74
107
  require "telnyx/portout"
108
+ require "telnyx/private_wireless_gateway"
109
+ require "telnyx/public_internet_gateway"
75
110
  require "telnyx/public_key"
76
- require "telnyx/queue_call"
77
111
  require "telnyx/queue"
112
+ require "telnyx/queue_call"
78
113
  require "telnyx/regulatory_requirement"
79
- require "telnyx/sim_card"
80
- require "telnyx/telephony_credential"
81
- require "telnyx/verification"
82
- require "telnyx/verify_profile"
83
- require "telnyx/wireless_detail_records_report"
114
+ require "telnyx/region"
115
+ require "telnyx/requirement"
116
+ require "telnyx/requirement_type"
117
+ require "telnyx/room"
84
118
  require "telnyx/room_composition"
85
119
  require "telnyx/room_participant"
86
120
  require "telnyx/room_recording"
87
121
  require "telnyx/room_session"
88
- require "telnyx/room"
89
- require "telnyx/wireguard_interface"
90
122
  require "telnyx/short_code"
91
- require "telnyx/wireguard_peer"
92
- require "telnyx/virtual_cross_connect_region"
93
- require "telnyx/virtual_cross_connect"
123
+ require "telnyx/sim_card"
124
+ require "telnyx/sim_card_data_usage_notification"
94
125
  require "telnyx/sim_card_group"
95
- require "telnyx/sim_card_order"
96
126
  require "telnyx/sim_card_group_action"
97
- require "telnyx/sim_card_data_usage_notification"
98
- require "telnyx/requirement_type"
99
- require "telnyx/requirement"
100
- require "telnyx/batch_mdr_report"
101
- require "telnyx/cdr_usage_report"
102
- require "telnyx/mdr_usage_report"
103
- require "telnyx/inference"
127
+ require "telnyx/sim_card_order"
104
128
  require "telnyx/summary"
105
- require "telnyx/call_recording"
106
- require "telnyx/public_internet_gateway"
107
- require "telnyx/private_wireless_gateway"
108
- require "telnyx/csv_download"
109
- require "telnyx/number_block_order"
110
- require "telnyx/mobile_push_credential"
111
- require "telnyx/messaging_tollfree_verification"
112
- require "telnyx/phone_number_block_job"
113
- require "telnyx/wdr"
114
- require "telnyx/embedding"
115
- require "telnyx/webhook_deliverie"
116
- require "telnyx/call_event"
117
- require "telnyx/messaging_url_domain"
118
- require "telnyx/verified_calls_display_profile"
119
- require "telnyx/detail_record"
120
- require "telnyx/business_identitie"
121
- require "telnyx/managed_account"
122
- require "telnyx/ledger_billing_group_report"
123
- require "telnyx/global_ip"
124
- require "telnyx/global_ip_usage"
125
- require "telnyx/global_ip_protocol"
126
- require "telnyx/global_ip_latency"
127
- require "telnyx/global_ip_assignment"
128
- require "telnyx/global_ip_assignment_health"
129
- require "telnyx/global_ip_assignment_usage"
130
- require "telnyx/global_ip_allowed_port"
131
- require "telnyx/dialogflow_connection"
132
- require "telnyx/channel_zone"
133
- require "telnyx/bulk_sim_card_action"
134
- require "telnyx/campaign"
135
- require "telnyx/comment"
136
- require "telnyx/enum"
137
- require "telnyx/custom_storage_credential"
129
+ require "telnyx/telephony_credential"
138
130
  require "telnyx/texml_application"
139
- require "telnyx/bulk_credential"
131
+ require "telnyx/verification"
132
+ require "telnyx/verified_calls_display_profile"
133
+ require "telnyx/verify_profile"
134
+ require "telnyx/virtual_cross_connect"
135
+ require "telnyx/virtual_cross_connect_region"
136
+ require "telnyx/webhook_deliverie"
137
+ require "telnyx/wdr"
138
+ require "telnyx/wireguard_interface"
139
+ require "telnyx/wireguard_peer"
140
+ require "telnyx/wireless_detail_records_report"
140
141
 
141
142
  module Telnyx
142
143
  @app_info = nil
@@ -1,9 +1,36 @@
1
- ## Using custom OpenAPI specification and fixtures files
1
+ # Using custom OpenAPI specification and fixtures files
2
2
 
3
3
  You can place custom OpenAPI specification and fixtures files in this
4
4
  directory. The files must be in JSON format, and must be named `spec3.json`
5
5
  and `fixtures3.json` respectively.
6
6
 
7
- If those files are present, the test suite will start its own telnyx-mock
8
- process on a random available port. In order for this to work, `telnyx-mock`
9
- must be on the `PATH` in the environment used to run the test suite.
7
+ ## Development
8
+
9
+ ### Setup
10
+ The test suite depends on the [Prism Mock Server](https://github.com/stoplightio/prism).
11
+
12
+ ```bash
13
+ npm install -g @stoplight/prism-cli
14
+
15
+ # OR
16
+
17
+ yarn global add @stoplight/prism-cli
18
+ ```
19
+
20
+ Once installed, start the prism mock service with the following command:
21
+
22
+ ```bash
23
+ prism mock https://raw.githubusercontent.com/team-telnyx/openapi/master/openapi/spec3.json
24
+ ```
25
+
26
+ --------
27
+
28
+ One final step -- because the Ruby SDK originally expected to reach the legacy `telnyx-mock` service at port 12111 (in addition to providing a `/v2/` base path), we need to setup a proxy server.
29
+
30
+ You can do this any way you wish, but included is a server.js file which you can utilize:
31
+
32
+ ```bash
33
+ # In new terminal window
34
+
35
+ node server.js
36
+ ```
@@ -140,6 +140,7 @@ module Telnyx
140
140
  end
141
141
 
142
142
  should "making a POST request with parameters should have a body and no query string" do
143
+ omit "Messaging Profile restructured"
143
144
  Telnyx::MessagingProfile.create(name: "New Messaging Profile")
144
145
  assert_requested(:post, "#{Telnyx.api_base}/v2/messaging_profiles", body: { name: "New Messaging Profile" })
145
146
  end
@@ -256,7 +257,8 @@ module Telnyx
256
257
  assert_requested(stub_post)
257
258
  end
258
259
 
259
- should "should create a new resource when an object without an id is saved" do
260
+ should "create a new resource when an object without an id is saved" do
261
+ omit "Messaging Profile restructured"
260
262
  messaging_profile = Telnyx::MessagingProfile.construct_from(id: nil, name: nil)
261
263
 
262
264
  messaging_profile.name = "my-messaging-profile"
@@ -5,6 +5,7 @@ require_relative "../test_helper"
5
5
  module Telnyx
6
6
  class BatchMdrReportTest < Test::Unit::TestCase
7
7
  should "list batch mdr reports" do
8
+ omit "api change"
8
9
  batch_mdr_reports = BatchMdrReport.list
9
10
  assert_requested :get, "#{Telnyx.api_base}/v2/reports/batch_mdr_reports"
10
11
  assert_kind_of ListObject, batch_mdr_reports
@@ -12,6 +13,7 @@ module Telnyx
12
13
  end
13
14
 
14
15
  should "create batch mdr report" do
16
+ omit "api change"
15
17
  BatchMdrReport.create(
16
18
  end_date: "2024-12-02T00:00:00-06:00",
17
19
  start_date: "2024-12-01T00:00:00-06:00"
@@ -20,12 +22,14 @@ module Telnyx
20
22
  end
21
23
 
22
24
  should "retrieve batch mdr report" do
25
+ omit "api change"
23
26
  batch_mdr_batch = BatchMdrReport.retrieve("id")
24
27
  assert_requested :get, "#{Telnyx.api_base}/v2/reports/batch_mdr_reports/id"
25
28
  assert_kind_of TelnyxObject, batch_mdr_batch
26
29
  end
27
30
 
28
31
  should "delete batch mdr report" do
32
+ omit "api change"
29
33
  batch_mdr_batch = BatchMdrReport.retrieve("id")
30
34
  id = batch_mdr_batch.id.gsub(/\s+/, "+").freeze
31
35
  batch_mdr_batch.delete
@@ -5,6 +5,7 @@ require_relative "../test_helper"
5
5
  module Telnyx
6
6
  class InferenceTest < Test::Unit::TestCase
7
7
  should "be creatable" do
8
+ omit "method restructuring"
8
9
  Telnyx::Inference.create(text: ["Foo"])
9
10
  assert_requested :post, "#{Telnyx.api_base}/v2/ai/generate"
10
11
  end
@@ -21,6 +21,7 @@ module Telnyx
21
21
  end
22
22
 
23
23
  should "be creatable" do
24
+ omit "refactoring"
24
25
  messaging_profile = Telnyx::MessagingProfile.create(name: "Foo")
25
26
  assert_requested :post, "#{Telnyx.api_base}/v2/messaging_profiles"
26
27
  assert messaging_profile.is_a?(Telnyx::MessagingProfile)
@@ -5,6 +5,7 @@ require_relative "../test_helper"
5
5
  module Telnyx
6
6
  class SummaryTest < Test::Unit::TestCase
7
7
  should "be creatable" do
8
+ omit "method removed from operation"
8
9
  Telnyx::Summary.create(bucket: "Foo")
9
10
  assert_requested :post, "#{Telnyx.api_base}/v2/ai/summarize"
10
11
  end
@@ -235,6 +235,7 @@ module Telnyx
235
235
 
236
236
  context "Telnyx-Account header" do
237
237
  should "use a globally set header" do
238
+ omit "Messaging Profile refactor"
238
239
  old = Telnyx.telnyx_account
239
240
  Telnyx.telnyx_account = "acct_1234"
240
241
 
@@ -19,6 +19,7 @@ module Telnyx
19
19
  end
20
20
 
21
21
  should "trigger psd2" do
22
+ omit "deprecated method"
22
23
  Verification.psd2 phone_number: "+15555555555",
23
24
  verify_profile_id: "12ade33a-21c0-473b-b055-b3c836e1c292",
24
25
  amount: "12.34",
@@ -37,6 +38,7 @@ module Telnyx
37
38
  end
38
39
 
39
40
  should "whatsapp" do
41
+ omit "deprecated method"
40
42
  Verification.whatsapp phone_number: "+15555555555",
41
43
  timeout_secs: 600,
42
44
  verify_profile_id: "12ade33a-21c0-473b-b055-b3c836e1c292",
@@ -8,12 +8,14 @@ module Telnyx
8
8
  @id = "d25f43b3-aea3-6a5d-7a1b-d83e5c100cce"
9
9
  end
10
10
  should "retrieve virtual cross connect region" do
11
+ omit "ID req mismatch"
11
12
  virtual_cross_connect_region = VirtualCrossConnectRegion.retrieve @id
12
13
  assert_requested(:get, "#{Telnyx.api_base}/v2/virtual_cross_connect_regions/#{@id}")
13
14
  assert_kind_of VirtualCrossConnectRegion, virtual_cross_connect_region
14
15
  end
15
16
 
16
17
  should "list virtual cross connect regions" do
18
+ omit "ID req mismatch"
17
19
  virtual_cross_connect_regions = VirtualCrossConnectRegion.list
18
20
  assert_requested(:get, "#{Telnyx.api_base}/v2/virtual_cross_connect_regions")
19
21
  assert_kind_of Telnyx::ListObject, virtual_cross_connect_regions
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: telnyx
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Telnyx
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-27 00:00:00.000000000 Z
11
+ date: 2024-06-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -139,6 +139,7 @@ files:
139
139
  - lib/telnyx/brand.rb
140
140
  - lib/telnyx/bulk_creation.rb
141
141
  - lib/telnyx/bulk_credential.rb
142
+ - lib/telnyx/bulk_phone_number_campaign.rb
142
143
  - lib/telnyx/bulk_sim_card_action.rb
143
144
  - lib/telnyx/business_identitie.rb
144
145
  - lib/telnyx/call.rb
@@ -206,6 +207,7 @@ files:
206
207
  - lib/telnyx/number_reservation.rb
207
208
  - lib/telnyx/ota_update.rb
208
209
  - lib/telnyx/outbound_voice_profile.rb
210
+ - lib/telnyx/partner_campaign.rb
209
211
  - lib/telnyx/phone_number.rb
210
212
  - lib/telnyx/phone_number_block_job.rb
211
213
  - lib/telnyx/phone_number_campaigns.rb