Skip to content

Commit bf33afa

Browse files
committed
deploy: 4c0fd1d
1 parent 1f09aa0 commit bf33afa

File tree

5 files changed

+164
-109
lines changed

5 files changed

+164
-109
lines changed

EasyPost/Services/Tracker.html

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@ <h3>Instance Methods</h3>
9797

9898
<li ><a href="#method-i-create">create</a></li>
9999

100+
<li ><a href="#method-i-delete">delete</a></li>
101+
100102
<li ><a href="#method-i-get_next_page">get_next_page</a></li>
101103

102104
<li ><a href="#method-i-retrieve">retrieve</a></li>
@@ -261,6 +263,53 @@ <h3>Public Instance Methods</h3>
261263

262264

263265

266+
</div>
267+
268+
269+
<div id="method-i-delete" class="method-detail anchor-link ">
270+
<div class="method-header">
271+
272+
<div class="method-heading">
273+
<a href="#method-i-delete" title="Link to this method">
274+
<span class="method-name">delete</span>
275+
<span class="method-args">(id)</span>
276+
</a>
277+
</div>
278+
279+
</div>
280+
281+
282+
<div class="method-controls">
283+
<details class="method-source-toggle">
284+
<summary>Source</summary>
285+
</details>
286+
</div>
287+
288+
289+
290+
<div class="method-description">
291+
292+
<div class="method-source-code" id="delete-source">
293+
<pre><span class="ruby-comment"># File lib/easypost/services/tracker.rb, line 51</span>
294+
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">delete</span>(<span class="ruby-identifier">id</span>)
295+
<span class="ruby-ivar">@client</span>.<span class="ruby-identifier">make_request</span>(<span class="ruby-value">:delete</span>, <span class="ruby-node">&quot;trackers/#{id}&quot;</span>)
296+
297+
<span class="ruby-comment"># Return true if succeeds, an error will be thrown if it fails</span>
298+
<span class="ruby-keyword">true</span>
299+
<span class="ruby-keyword">end</span></pre>
300+
</div>
301+
302+
303+
304+
<p>Delete a <a href="Tracker.html"><code>Tracker</code></a>.</p>
305+
306+
307+
</div>
308+
309+
310+
311+
312+
264313
</div>
265314

266315

created.rid

Lines changed: 108 additions & 108 deletions
Original file line numberDiff line numberDiff line change
@@ -1,108 +1,108 @@
1-
Tue, 03 Feb 2026 18:28:27 +0000
2-
lib/easypost/client.rb Tue, 03 Feb 2026 18:28:11 +0000
3-
lib/easypost/connection.rb Tue, 03 Feb 2026 18:28:11 +0000
4-
lib/easypost/constants.rb Tue, 03 Feb 2026 18:28:11 +0000
5-
lib/easypost/errors/api/api_error.rb Tue, 03 Feb 2026 18:28:11 +0000
6-
lib/easypost/errors/api/bad_request_error.rb Tue, 03 Feb 2026 18:28:11 +0000
7-
lib/easypost/errors/api/connection_error.rb Tue, 03 Feb 2026 18:28:11 +0000
8-
lib/easypost/errors/api/external_api_error.rb Tue, 03 Feb 2026 18:28:11 +0000
9-
lib/easypost/errors/api/forbidden_error.rb Tue, 03 Feb 2026 18:28:11 +0000
10-
lib/easypost/errors/api/gateway_timeout_error.rb Tue, 03 Feb 2026 18:28:11 +0000
11-
lib/easypost/errors/api/internal_server_error.rb Tue, 03 Feb 2026 18:28:11 +0000
12-
lib/easypost/errors/api/invalid_request_error.rb Tue, 03 Feb 2026 18:28:11 +0000
13-
lib/easypost/errors/api/method_not_allowed_error.rb Tue, 03 Feb 2026 18:28:11 +0000
14-
lib/easypost/errors/api/not_found_error.rb Tue, 03 Feb 2026 18:28:11 +0000
15-
lib/easypost/errors/api/payment_error.rb Tue, 03 Feb 2026 18:28:11 +0000
16-
lib/easypost/errors/api/proxy_error.rb Tue, 03 Feb 2026 18:28:11 +0000
17-
lib/easypost/errors/api/rate_limit_error.rb Tue, 03 Feb 2026 18:28:11 +0000
18-
lib/easypost/errors/api/redirect_error.rb Tue, 03 Feb 2026 18:28:11 +0000
19-
lib/easypost/errors/api/retry_error.rb Tue, 03 Feb 2026 18:28:11 +0000
20-
lib/easypost/errors/api/service_unavailable_error.rb Tue, 03 Feb 2026 18:28:11 +0000
21-
lib/easypost/errors/api/ssl_error.rb Tue, 03 Feb 2026 18:28:11 +0000
22-
lib/easypost/errors/api/timeout_error.rb Tue, 03 Feb 2026 18:28:11 +0000
23-
lib/easypost/errors/api/unauthorized_error.rb Tue, 03 Feb 2026 18:28:11 +0000
24-
lib/easypost/errors/api/unknown_api_error.rb Tue, 03 Feb 2026 18:28:11 +0000
25-
lib/easypost/errors/easy_post_error.rb Tue, 03 Feb 2026 18:28:11 +0000
26-
lib/easypost/errors/end_of_pagination_error.rb Tue, 03 Feb 2026 18:28:11 +0000
27-
lib/easypost/errors/filtering_error.rb Tue, 03 Feb 2026 18:28:11 +0000
28-
lib/easypost/errors/invalid_object_error.rb Tue, 03 Feb 2026 18:28:11 +0000
29-
lib/easypost/errors/invalid_parameter_error.rb Tue, 03 Feb 2026 18:28:11 +0000
30-
lib/easypost/errors/missing_parameter_error.rb Tue, 03 Feb 2026 18:28:11 +0000
31-
lib/easypost/errors/signature_verification_error.rb Tue, 03 Feb 2026 18:28:11 +0000
32-
lib/easypost/errors.rb Tue, 03 Feb 2026 18:28:11 +0000
33-
lib/easypost/hooks/request_context.rb Tue, 03 Feb 2026 18:28:11 +0000
34-
lib/easypost/hooks/response_context.rb Tue, 03 Feb 2026 18:28:11 +0000
35-
lib/easypost/hooks.rb Tue, 03 Feb 2026 18:28:11 +0000
36-
lib/easypost/http_client.rb Tue, 03 Feb 2026 18:28:11 +0000
37-
lib/easypost/internal_utilities.rb Tue, 03 Feb 2026 18:28:11 +0000
38-
lib/easypost/models/address.rb Tue, 03 Feb 2026 18:28:11 +0000
39-
lib/easypost/models/api_key.rb Tue, 03 Feb 2026 18:28:11 +0000
40-
lib/easypost/models/base.rb Tue, 03 Feb 2026 18:28:11 +0000
41-
lib/easypost/models/batch.rb Tue, 03 Feb 2026 18:28:11 +0000
42-
lib/easypost/models/brand.rb Tue, 03 Feb 2026 18:28:11 +0000
43-
lib/easypost/models/carrier_account.rb Tue, 03 Feb 2026 18:28:11 +0000
44-
lib/easypost/models/carrier_type.rb Tue, 03 Feb 2026 18:28:11 +0000
45-
lib/easypost/models/claim.rb Tue, 03 Feb 2026 18:28:11 +0000
46-
lib/easypost/models/customs_info.rb Tue, 03 Feb 2026 18:28:11 +0000
47-
lib/easypost/models/customs_item.rb Tue, 03 Feb 2026 18:28:11 +0000
48-
lib/easypost/models/end_shipper.rb Tue, 03 Feb 2026 18:28:11 +0000
49-
lib/easypost/models/event.rb Tue, 03 Feb 2026 18:28:11 +0000
50-
lib/easypost/models/insurance.rb Tue, 03 Feb 2026 18:28:11 +0000
51-
lib/easypost/models/order.rb Tue, 03 Feb 2026 18:28:11 +0000
52-
lib/easypost/models/parcel.rb Tue, 03 Feb 2026 18:28:11 +0000
53-
lib/easypost/models/payload.rb Tue, 03 Feb 2026 18:28:11 +0000
54-
lib/easypost/models/payment_method.rb Tue, 03 Feb 2026 18:28:11 +0000
55-
lib/easypost/models/pickup.rb Tue, 03 Feb 2026 18:28:11 +0000
56-
lib/easypost/models/pickup_rate.rb Tue, 03 Feb 2026 18:28:11 +0000
57-
lib/easypost/models/postage_label.rb Tue, 03 Feb 2026 18:28:11 +0000
58-
lib/easypost/models/rate.rb Tue, 03 Feb 2026 18:28:11 +0000
59-
lib/easypost/models/referral.rb Tue, 03 Feb 2026 18:28:11 +0000
60-
lib/easypost/models/refund.rb Tue, 03 Feb 2026 18:28:11 +0000
61-
lib/easypost/models/report.rb Tue, 03 Feb 2026 18:28:11 +0000
62-
lib/easypost/models/scan_form.rb Tue, 03 Feb 2026 18:28:11 +0000
63-
lib/easypost/models/shipment.rb Tue, 03 Feb 2026 18:28:11 +0000
64-
lib/easypost/models/tax_identifier.rb Tue, 03 Feb 2026 18:28:11 +0000
65-
lib/easypost/models/tracker.rb Tue, 03 Feb 2026 18:28:11 +0000
66-
lib/easypost/models/user.rb Tue, 03 Feb 2026 18:28:11 +0000
67-
lib/easypost/models/webhook.rb Tue, 03 Feb 2026 18:28:11 +0000
68-
lib/easypost/models.rb Tue, 03 Feb 2026 18:28:11 +0000
69-
lib/easypost/services/address.rb Tue, 03 Feb 2026 18:28:11 +0000
70-
lib/easypost/services/api_key.rb Tue, 03 Feb 2026 18:28:11 +0000
71-
lib/easypost/services/base.rb Tue, 03 Feb 2026 18:28:11 +0000
72-
lib/easypost/services/batch.rb Tue, 03 Feb 2026 18:28:11 +0000
73-
lib/easypost/services/beta_rate.rb Tue, 03 Feb 2026 18:28:11 +0000
74-
lib/easypost/services/beta_referral_customer.rb Tue, 03 Feb 2026 18:28:11 +0000
75-
lib/easypost/services/billing.rb Tue, 03 Feb 2026 18:28:11 +0000
76-
lib/easypost/services/carrier_account.rb Tue, 03 Feb 2026 18:28:11 +0000
77-
lib/easypost/services/carrier_metadata.rb Tue, 03 Feb 2026 18:28:11 +0000
78-
lib/easypost/services/carrier_type.rb Tue, 03 Feb 2026 18:28:11 +0000
79-
lib/easypost/services/claim.rb Tue, 03 Feb 2026 18:28:11 +0000
80-
lib/easypost/services/customer_portal.rb Tue, 03 Feb 2026 18:28:11 +0000
81-
lib/easypost/services/customs_info.rb Tue, 03 Feb 2026 18:28:11 +0000
82-
lib/easypost/services/customs_item.rb Tue, 03 Feb 2026 18:28:11 +0000
83-
lib/easypost/services/embeddable.rb Tue, 03 Feb 2026 18:28:11 +0000
84-
lib/easypost/services/end_shipper.rb Tue, 03 Feb 2026 18:28:11 +0000
85-
lib/easypost/services/event.rb Tue, 03 Feb 2026 18:28:11 +0000
86-
lib/easypost/services/insurance.rb Tue, 03 Feb 2026 18:28:11 +0000
87-
lib/easypost/services/luma.rb Tue, 03 Feb 2026 18:28:11 +0000
88-
lib/easypost/services/order.rb Tue, 03 Feb 2026 18:28:11 +0000
89-
lib/easypost/services/parcel.rb Tue, 03 Feb 2026 18:28:11 +0000
90-
lib/easypost/services/pickup.rb Tue, 03 Feb 2026 18:28:11 +0000
91-
lib/easypost/services/rate.rb Tue, 03 Feb 2026 18:28:11 +0000
92-
lib/easypost/services/referral_customer.rb Tue, 03 Feb 2026 18:28:11 +0000
93-
lib/easypost/services/refund.rb Tue, 03 Feb 2026 18:28:11 +0000
94-
lib/easypost/services/report.rb Tue, 03 Feb 2026 18:28:11 +0000
95-
lib/easypost/services/scan_form.rb Tue, 03 Feb 2026 18:28:11 +0000
96-
lib/easypost/services/shipment.rb Tue, 03 Feb 2026 18:28:11 +0000
97-
lib/easypost/services/smart_rate.rb Tue, 03 Feb 2026 18:28:11 +0000
98-
lib/easypost/services/tracker.rb Tue, 03 Feb 2026 18:28:11 +0000
99-
lib/easypost/services/user.rb Tue, 03 Feb 2026 18:28:11 +0000
100-
lib/easypost/services/webhook.rb Tue, 03 Feb 2026 18:28:11 +0000
101-
lib/easypost/services.rb Tue, 03 Feb 2026 18:28:11 +0000
102-
lib/easypost/util.rb Tue, 03 Feb 2026 18:28:11 +0000
103-
lib/easypost/utilities/constants.rb Tue, 03 Feb 2026 18:28:11 +0000
104-
lib/easypost/utilities/json.rb Tue, 03 Feb 2026 18:28:11 +0000
105-
lib/easypost/utilities/static_mapper.rb Tue, 03 Feb 2026 18:28:11 +0000
106-
lib/easypost/utilities/system.rb Tue, 03 Feb 2026 18:28:11 +0000
107-
lib/easypost/version.rb Tue, 03 Feb 2026 18:28:11 +0000
108-
lib/easypost.rb Tue, 03 Feb 2026 18:28:11 +0000
1+
Tue, 03 Feb 2026 19:55:56 +0000
2+
lib/easypost/client.rb Tue, 03 Feb 2026 19:55:45 +0000
3+
lib/easypost/connection.rb Tue, 03 Feb 2026 19:55:45 +0000
4+
lib/easypost/constants.rb Tue, 03 Feb 2026 19:55:45 +0000
5+
lib/easypost/errors/api/api_error.rb Tue, 03 Feb 2026 19:55:45 +0000
6+
lib/easypost/errors/api/bad_request_error.rb Tue, 03 Feb 2026 19:55:45 +0000
7+
lib/easypost/errors/api/connection_error.rb Tue, 03 Feb 2026 19:55:45 +0000
8+
lib/easypost/errors/api/external_api_error.rb Tue, 03 Feb 2026 19:55:45 +0000
9+
lib/easypost/errors/api/forbidden_error.rb Tue, 03 Feb 2026 19:55:45 +0000
10+
lib/easypost/errors/api/gateway_timeout_error.rb Tue, 03 Feb 2026 19:55:45 +0000
11+
lib/easypost/errors/api/internal_server_error.rb Tue, 03 Feb 2026 19:55:45 +0000
12+
lib/easypost/errors/api/invalid_request_error.rb Tue, 03 Feb 2026 19:55:45 +0000
13+
lib/easypost/errors/api/method_not_allowed_error.rb Tue, 03 Feb 2026 19:55:45 +0000
14+
lib/easypost/errors/api/not_found_error.rb Tue, 03 Feb 2026 19:55:45 +0000
15+
lib/easypost/errors/api/payment_error.rb Tue, 03 Feb 2026 19:55:45 +0000
16+
lib/easypost/errors/api/proxy_error.rb Tue, 03 Feb 2026 19:55:45 +0000
17+
lib/easypost/errors/api/rate_limit_error.rb Tue, 03 Feb 2026 19:55:45 +0000
18+
lib/easypost/errors/api/redirect_error.rb Tue, 03 Feb 2026 19:55:45 +0000
19+
lib/easypost/errors/api/retry_error.rb Tue, 03 Feb 2026 19:55:45 +0000
20+
lib/easypost/errors/api/service_unavailable_error.rb Tue, 03 Feb 2026 19:55:45 +0000
21+
lib/easypost/errors/api/ssl_error.rb Tue, 03 Feb 2026 19:55:45 +0000
22+
lib/easypost/errors/api/timeout_error.rb Tue, 03 Feb 2026 19:55:45 +0000
23+
lib/easypost/errors/api/unauthorized_error.rb Tue, 03 Feb 2026 19:55:45 +0000
24+
lib/easypost/errors/api/unknown_api_error.rb Tue, 03 Feb 2026 19:55:45 +0000
25+
lib/easypost/errors/easy_post_error.rb Tue, 03 Feb 2026 19:55:45 +0000
26+
lib/easypost/errors/end_of_pagination_error.rb Tue, 03 Feb 2026 19:55:45 +0000
27+
lib/easypost/errors/filtering_error.rb Tue, 03 Feb 2026 19:55:45 +0000
28+
lib/easypost/errors/invalid_object_error.rb Tue, 03 Feb 2026 19:55:45 +0000
29+
lib/easypost/errors/invalid_parameter_error.rb Tue, 03 Feb 2026 19:55:45 +0000
30+
lib/easypost/errors/missing_parameter_error.rb Tue, 03 Feb 2026 19:55:45 +0000
31+
lib/easypost/errors/signature_verification_error.rb Tue, 03 Feb 2026 19:55:45 +0000
32+
lib/easypost/errors.rb Tue, 03 Feb 2026 19:55:45 +0000
33+
lib/easypost/hooks/request_context.rb Tue, 03 Feb 2026 19:55:45 +0000
34+
lib/easypost/hooks/response_context.rb Tue, 03 Feb 2026 19:55:45 +0000
35+
lib/easypost/hooks.rb Tue, 03 Feb 2026 19:55:45 +0000
36+
lib/easypost/http_client.rb Tue, 03 Feb 2026 19:55:45 +0000
37+
lib/easypost/internal_utilities.rb Tue, 03 Feb 2026 19:55:45 +0000
38+
lib/easypost/models/address.rb Tue, 03 Feb 2026 19:55:45 +0000
39+
lib/easypost/models/api_key.rb Tue, 03 Feb 2026 19:55:45 +0000
40+
lib/easypost/models/base.rb Tue, 03 Feb 2026 19:55:45 +0000
41+
lib/easypost/models/batch.rb Tue, 03 Feb 2026 19:55:45 +0000
42+
lib/easypost/models/brand.rb Tue, 03 Feb 2026 19:55:45 +0000
43+
lib/easypost/models/carrier_account.rb Tue, 03 Feb 2026 19:55:45 +0000
44+
lib/easypost/models/carrier_type.rb Tue, 03 Feb 2026 19:55:45 +0000
45+
lib/easypost/models/claim.rb Tue, 03 Feb 2026 19:55:45 +0000
46+
lib/easypost/models/customs_info.rb Tue, 03 Feb 2026 19:55:45 +0000
47+
lib/easypost/models/customs_item.rb Tue, 03 Feb 2026 19:55:45 +0000
48+
lib/easypost/models/end_shipper.rb Tue, 03 Feb 2026 19:55:45 +0000
49+
lib/easypost/models/event.rb Tue, 03 Feb 2026 19:55:45 +0000
50+
lib/easypost/models/insurance.rb Tue, 03 Feb 2026 19:55:45 +0000
51+
lib/easypost/models/order.rb Tue, 03 Feb 2026 19:55:45 +0000
52+
lib/easypost/models/parcel.rb Tue, 03 Feb 2026 19:55:45 +0000
53+
lib/easypost/models/payload.rb Tue, 03 Feb 2026 19:55:45 +0000
54+
lib/easypost/models/payment_method.rb Tue, 03 Feb 2026 19:55:45 +0000
55+
lib/easypost/models/pickup.rb Tue, 03 Feb 2026 19:55:45 +0000
56+
lib/easypost/models/pickup_rate.rb Tue, 03 Feb 2026 19:55:45 +0000
57+
lib/easypost/models/postage_label.rb Tue, 03 Feb 2026 19:55:45 +0000
58+
lib/easypost/models/rate.rb Tue, 03 Feb 2026 19:55:45 +0000
59+
lib/easypost/models/referral.rb Tue, 03 Feb 2026 19:55:45 +0000
60+
lib/easypost/models/refund.rb Tue, 03 Feb 2026 19:55:45 +0000
61+
lib/easypost/models/report.rb Tue, 03 Feb 2026 19:55:45 +0000
62+
lib/easypost/models/scan_form.rb Tue, 03 Feb 2026 19:55:45 +0000
63+
lib/easypost/models/shipment.rb Tue, 03 Feb 2026 19:55:45 +0000
64+
lib/easypost/models/tax_identifier.rb Tue, 03 Feb 2026 19:55:45 +0000
65+
lib/easypost/models/tracker.rb Tue, 03 Feb 2026 19:55:45 +0000
66+
lib/easypost/models/user.rb Tue, 03 Feb 2026 19:55:45 +0000
67+
lib/easypost/models/webhook.rb Tue, 03 Feb 2026 19:55:45 +0000
68+
lib/easypost/models.rb Tue, 03 Feb 2026 19:55:45 +0000
69+
lib/easypost/services/address.rb Tue, 03 Feb 2026 19:55:45 +0000
70+
lib/easypost/services/api_key.rb Tue, 03 Feb 2026 19:55:45 +0000
71+
lib/easypost/services/base.rb Tue, 03 Feb 2026 19:55:45 +0000
72+
lib/easypost/services/batch.rb Tue, 03 Feb 2026 19:55:45 +0000
73+
lib/easypost/services/beta_rate.rb Tue, 03 Feb 2026 19:55:45 +0000
74+
lib/easypost/services/beta_referral_customer.rb Tue, 03 Feb 2026 19:55:45 +0000
75+
lib/easypost/services/billing.rb Tue, 03 Feb 2026 19:55:45 +0000
76+
lib/easypost/services/carrier_account.rb Tue, 03 Feb 2026 19:55:45 +0000
77+
lib/easypost/services/carrier_metadata.rb Tue, 03 Feb 2026 19:55:45 +0000
78+
lib/easypost/services/carrier_type.rb Tue, 03 Feb 2026 19:55:45 +0000
79+
lib/easypost/services/claim.rb Tue, 03 Feb 2026 19:55:45 +0000
80+
lib/easypost/services/customer_portal.rb Tue, 03 Feb 2026 19:55:45 +0000
81+
lib/easypost/services/customs_info.rb Tue, 03 Feb 2026 19:55:45 +0000
82+
lib/easypost/services/customs_item.rb Tue, 03 Feb 2026 19:55:45 +0000
83+
lib/easypost/services/embeddable.rb Tue, 03 Feb 2026 19:55:45 +0000
84+
lib/easypost/services/end_shipper.rb Tue, 03 Feb 2026 19:55:45 +0000
85+
lib/easypost/services/event.rb Tue, 03 Feb 2026 19:55:45 +0000
86+
lib/easypost/services/insurance.rb Tue, 03 Feb 2026 19:55:45 +0000
87+
lib/easypost/services/luma.rb Tue, 03 Feb 2026 19:55:45 +0000
88+
lib/easypost/services/order.rb Tue, 03 Feb 2026 19:55:45 +0000
89+
lib/easypost/services/parcel.rb Tue, 03 Feb 2026 19:55:45 +0000
90+
lib/easypost/services/pickup.rb Tue, 03 Feb 2026 19:55:45 +0000
91+
lib/easypost/services/rate.rb Tue, 03 Feb 2026 19:55:45 +0000
92+
lib/easypost/services/referral_customer.rb Tue, 03 Feb 2026 19:55:45 +0000
93+
lib/easypost/services/refund.rb Tue, 03 Feb 2026 19:55:45 +0000
94+
lib/easypost/services/report.rb Tue, 03 Feb 2026 19:55:45 +0000
95+
lib/easypost/services/scan_form.rb Tue, 03 Feb 2026 19:55:45 +0000
96+
lib/easypost/services/shipment.rb Tue, 03 Feb 2026 19:55:45 +0000
97+
lib/easypost/services/smart_rate.rb Tue, 03 Feb 2026 19:55:45 +0000
98+
lib/easypost/services/tracker.rb Tue, 03 Feb 2026 19:55:45 +0000
99+
lib/easypost/services/user.rb Tue, 03 Feb 2026 19:55:45 +0000
100+
lib/easypost/services/webhook.rb Tue, 03 Feb 2026 19:55:45 +0000
101+
lib/easypost/services.rb Tue, 03 Feb 2026 19:55:45 +0000
102+
lib/easypost/util.rb Tue, 03 Feb 2026 19:55:45 +0000
103+
lib/easypost/utilities/constants.rb Tue, 03 Feb 2026 19:55:45 +0000
104+
lib/easypost/utilities/json.rb Tue, 03 Feb 2026 19:55:45 +0000
105+
lib/easypost/utilities/static_mapper.rb Tue, 03 Feb 2026 19:55:45 +0000
106+
lib/easypost/utilities/system.rb Tue, 03 Feb 2026 19:55:45 +0000
107+
lib/easypost/version.rb Tue, 03 Feb 2026 19:55:45 +0000
108+
lib/easypost.rb Tue, 03 Feb 2026 19:55:45 +0000

js/search_index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/search_index.js.gz

15 Bytes
Binary file not shown.

table_of_contents.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1221,6 +1221,12 @@ <h2 id="methods">Methods</h2>
12211221
<span class="container">EasyPost::Services::CarrierAccount</span>
12221222
</li>
12231223

1224+
<li class="method">
1225+
<a href="EasyPost/Services/Tracker.html#method-i-delete">#delete</a>
1226+
&mdash;
1227+
<span class="container">EasyPost::Services::Tracker</span>
1228+
</li>
1229+
12241230
<li class="method">
12251231
<a href="EasyPost/Services/User.html#method-i-delete">#delete</a>
12261232
&mdash;

0 commit comments

Comments
 (0)