trycourier 1.6.0 → 1.8.0

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: 4aa5b8cf9e2e4554e7238b5001707c706bb9e7c8cdceab309fce4ba805601e5a
4
- data.tar.gz: 4396885d4f4f0da37c37896653850c74ba434eba8e01c44ba368bc4452892205
3
+ metadata.gz: f9f889e4d1a6af29bae1292ab1535becd744e29eabdea8d6ad127e925f294eea
4
+ data.tar.gz: d589261d6fc9615f820e9987e9703e0e71a390e4de1454845d0b6cd333b2f07d
5
5
  SHA512:
6
- metadata.gz: ec711df626dea24a00a5038f2da814f040499972cbf841e8d747ff841162ff4ed7207b081aae704aa4f7f1740f15bf6d6fc2867d2315d107577a70d7364fc9aa
7
- data.tar.gz: 24c12be8b4042da8188d54059395fc849d95ddf1e1c4ac03d1a5f5199a5d6e3f87ee62376fd1b5d383704af592e7767934c58214a8d483f0fbbc739023333d9d
6
+ metadata.gz: 67e6a4c7d7a097073d553aee2b60821ce57657b77d3c03925df530ef0a01758b5094cabea7735b5034e6e95032ad51714f5c050712a7bd7b5bc37c69b603dd79
7
+ data.tar.gz: 861b74171164d76b463ff8c7a3131e310d909547670ec8d9b6b3c1fffffa618e8481a2b9341d451d0199fc013aeabf25ae059444538e4038bfa0c49ae105dbae
data/CHANGELOG.md CHANGED
@@ -5,6 +5,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
5
5
 
6
6
  ## [Unreleased][unreleased]
7
7
 
8
+ ## [v1.8.0] - 2023-07-24
9
+
10
+ - Support for Accounts API
11
+
12
+ ## [v1.7.0] - 2023-06-22
13
+
14
+ - Support for cancel message API
15
+
8
16
  ## [v1.6.0] - 2022-07-25
9
17
 
10
18
  - Support for audit events API
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- trycourier (1.6.0)
4
+ trycourier (1.8.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -0,0 +1,43 @@
1
+ module Courier
2
+ class Accounts
3
+ KEY = "/accounts"
4
+
5
+ def initialize(session)
6
+ @session = session
7
+ end
8
+
9
+ def get_account(account_id:)
10
+ path = "#{KEY}/#{account_id}"
11
+ res = @session.send(path, "GET")
12
+ ErrorHandler.check_err(res)
13
+ end
14
+
15
+ def get_accounts(limit: nil, starting_after: nil)
16
+ params = {}
17
+ if limit
18
+ params["limit"] = limit
19
+ end
20
+
21
+ if starting_after
22
+ params["starting_after"] = starting_after
23
+ end
24
+
25
+ res = @session.send(KEY, "GET", params: params)
26
+ ErrorHandler.check_err(res)
27
+ end
28
+
29
+ def put_account(account_id:, account:)
30
+ path = "#{KEY}/#{account_id}"
31
+
32
+ res = @session.send(path, "PUT", body: account, headers: {})
33
+ ErrorHandler.check_err(res)
34
+ end
35
+
36
+ def delete_account(account_id:)
37
+ path = "#{KEY}/#{account_id}"
38
+ res = @session.send(path, "DELETE")
39
+ ErrorHandler.check_err_non_json(res)
40
+ end
41
+
42
+ end
43
+ end
@@ -38,6 +38,12 @@ module Courier
38
38
  ErrorHandler.check_err(res)
39
39
  end
40
40
 
41
+ def cancel(message_id:)
42
+ path = "#{KEY}/#{message_id}/cancel"
43
+ res = @session.send(path, "POST")
44
+ ErrorHandler.check_err(res)
45
+ end
46
+
41
47
  def get_history(message_id:, type: nil)
42
48
  path = "#{KEY}/#{message_id}/history"
43
49
  params = {}
@@ -1,3 +1,3 @@
1
1
  module Courier
2
- VERSION = "1.6.0"
2
+ VERSION = "1.8.0"
3
3
  end
data/lib/trycourier.rb CHANGED
@@ -8,6 +8,7 @@ require "trycourier/automations"
8
8
  require "trycourier/bulk"
9
9
  require "trycourier/audiences"
10
10
  require "trycourier/audit_events"
11
+ require "trycourier/accounts"
11
12
  require "trycourier/version"
12
13
  require "trycourier/exceptions"
13
14
 
@@ -67,6 +68,7 @@ module Courier
67
68
  @bulk = Courier::Bulk.new(@session)
68
69
  @audiences = Courier::Audiences.new(@session)
69
70
  @audit_events = Courier::AuditEvents.new(@session)
71
+ @accounts = Courier::Accounts.new(@session)
70
72
  end
71
73
 
72
74
  def send(body)
@@ -139,5 +141,7 @@ module Courier
139
141
 
140
142
  attr_reader :audit_events
141
143
 
144
+ attr_reader :accounts
145
+
142
146
  end
143
147
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trycourier
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Courier
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-08-03 00:00:00.000000000 Z
11
+ date: 2023-07-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -61,6 +61,7 @@ files:
61
61
  - bin/console
62
62
  - bin/setup
63
63
  - lib/trycourier.rb
64
+ - lib/trycourier/accounts.rb
64
65
  - lib/trycourier/audiences.rb
65
66
  - lib/trycourier/audit_events.rb
66
67
  - lib/trycourier/automations.rb