eligible 3.0.0.beta19 → 3.0.0.beta20

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: 137406adb75553021c583abcabdad5d75eb8108aee90003f3fb8e7cd5f58f683
4
- data.tar.gz: 4593dfca466f2045e4b9d1c79f04f77db7852243a4ee4480b51d44e637332a4a
3
+ metadata.gz: bd6809d35bb19d0e9e4ed2540a37afbeb2a52dd01edcd3f28f27ada9577d30c6
4
+ data.tar.gz: 8dee37527a5152fd97853ea16edcbf64676d785bbf66ad9c63548cc21e98fffb
5
5
  SHA512:
6
- metadata.gz: 4dffc18fe9e6c62d516e3d3785c7f0a2c4ec2f686e7de2f7928ab25d1ebd35f6776ab5473d9694a8106f8261d93dc61b1fd6f79bbae9d88eb13ff79126543c5a
7
- data.tar.gz: ac9dbbec2efedcd42fca46e41677aa8d81b5b5034d2e6417e9484723bbc17beb41ca95f5663ca5853f73cd819e8084d2f85604f9b525d07cfa14b03fe183e2b9
6
+ metadata.gz: d20d05b944f2dd2ba6a72e8bbc697cd192511deb09753c15ab2546275a8647ffe78549b360d46094f9c43e45d85b6e7db3175e5e0a141bfb5ea9b1f45ce391b8
7
+ data.tar.gz: 9fe91b93db9a15d087ca526288e081e917f3ef87461c7f0f6aa3b650e0bdcb8dced577fcc7c5974e336bc1f0d6e91735441dd56e20ef5e84b51c10747995d309
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.0.0.beta20 - 2020-08-17
4
+
5
+ - Added support for report API endpoint Eligible::V1_0::Reports::Collections
6
+ - Added support for report API endpoint Eligible::V1_0::Reports::DenialCounts
7
+ - Added support for report API endpoint Eligible::V1_0::Reports::DenialReports
8
+ - Added support for report API endpoint Eligible::V1_0::Reports::DistributionRatios
9
+ - Added support for report API endpoint Eligible::V1_0::Reports::FinancialMeasures
10
+
3
11
  ## 3.0.0.beta19 - 2020-07-28
4
12
  - Added refunds and balance_captures REST API endpoints
5
13
 
@@ -80,7 +80,12 @@ require 'eligible/v1_0/value_list'
80
80
  require 'eligible/v1_0/value_list_item'
81
81
  require 'eligible/v1_0/verification'
82
82
  require 'eligible/v1_0/reports/accuracy_stats'
83
+ require 'eligible/v1_0/reports/collections'
84
+ require 'eligible/v1_0/reports/denial_counts'
85
+ require 'eligible/v1_0/reports/denial_reports'
86
+ require 'eligible/v1_0/reports/distribution_ratios'
83
87
  require 'eligible/v1_0/reports/estimate_friction'
88
+ require 'eligible/v1_0/reports/financial_measures'
84
89
  require 'eligible/v1_0/reports/in_scope_distribution'
85
90
 
86
91
  # Errors
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ module Reports
6
+ class Collections < RestAPIBase
7
+ ENDPOINT_NAME = 'reports/collections'.freeze
8
+
9
+ def self.create(_params, _opts = {})
10
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
11
+ end
12
+
13
+ def self.update(_params, _opts = {})
14
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
15
+ end
16
+
17
+ def self.delete(_params, _opts = {})
18
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ module Reports
6
+ class DenialCounts < RestAPIBase
7
+ ENDPOINT_NAME = 'reports/denial_counts'.freeze
8
+
9
+ def self.create(_params, _opts = {})
10
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
11
+ end
12
+
13
+ def self.update(_params, _opts = {})
14
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
15
+ end
16
+
17
+ def self.delete(_params, _opts = {})
18
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ module Reports
6
+ class DenialReports < RestAPIBase
7
+ ENDPOINT_NAME = 'reports/denial_reports'.freeze
8
+
9
+ def self.create(_params, _opts = {})
10
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
11
+ end
12
+
13
+ def self.update(_params, _opts = {})
14
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
15
+ end
16
+
17
+ def self.delete(_params, _opts = {})
18
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ module Reports
6
+ class DistributionRatios < RestAPIBase
7
+ ENDPOINT_NAME = 'reports/distribution_ratios'.freeze
8
+
9
+ def self.create(_params, _opts = {})
10
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
11
+ end
12
+
13
+ def self.update(_params, _opts = {})
14
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
15
+ end
16
+
17
+ def self.delete(_params, _opts = {})
18
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Eligible
4
+ module V1_0
5
+ module Reports
6
+ class FinancialMeasures < RestAPIBase
7
+ ENDPOINT_NAME = 'reports/financial_measures'.freeze
8
+
9
+ def self.create(_params, _opts = {})
10
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
11
+ end
12
+
13
+ def self.update(_params, _opts = {})
14
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
15
+ end
16
+
17
+ def self.delete(_params, _opts = {})
18
+ fail NotImplementedError, "Not an allowed operation for this endpoint"
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
@@ -1,3 +1,3 @@
1
1
  module Eligible
2
- VERSION = '3.0.0.beta19'.freeze
2
+ VERSION = '3.0.0.beta20'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eligible
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0.beta19
4
+ version: 3.0.0.beta20
5
5
  platform: ruby
6
6
  authors:
7
7
  - Katelyn Gleaon
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2020-07-27 00:00:00.000000000 Z
13
+ date: 2020-08-17 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rest-client
@@ -185,7 +185,12 @@ files:
185
185
  - lib/eligible/v1_0/refund.rb
186
186
  - lib/eligible/v1_0/remark.rb
187
187
  - lib/eligible/v1_0/reports/accuracy_stats.rb
188
+ - lib/eligible/v1_0/reports/collections.rb
189
+ - lib/eligible/v1_0/reports/denial_counts.rb
190
+ - lib/eligible/v1_0/reports/denial_reports.rb
191
+ - lib/eligible/v1_0/reports/distribution_ratios.rb
188
192
  - lib/eligible/v1_0/reports/estimate_friction.rb
193
+ - lib/eligible/v1_0/reports/financial_measures.rb
189
194
  - lib/eligible/v1_0/reports/in_scope_distribution.rb
190
195
  - lib/eligible/v1_0/rest_api_base.rb
191
196
  - lib/eligible/v1_0/rule.rb