eligible 3.0.0.beta16 → 3.0.0.beta17
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ce58ab4bcb4de406ced460aa9c930023787d8afdfa9d603da5b51eea5940f848
|
4
|
+
data.tar.gz: 4446f6ebf258825dd4c6310bf0ba673560dd860e5eba813fe71cafa69e3e55e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: febd04dd34ce99c1dacf234160403be82215308e50b5acf487d0fa79154a7c9ccc7930fdbcbe3de3627f0048789ba9452d0d7d339d86eaa9361fabbffd5c3568
|
7
|
+
data.tar.gz: 3d85a68891c0f50a9972fdd4848c137eecb19d56b97a630e0472de569598e0a2c4e57eec62741d4ecde2c87112e9f797ffea503b2563094245d4d0c61a9ba08a
|
data/CHANGELOG.md
CHANGED
data/lib/eligible.rb
CHANGED
@@ -77,6 +77,9 @@ require 'eligible/v1_0/treatment'
|
|
77
77
|
require 'eligible/v1_0/value_list'
|
78
78
|
require 'eligible/v1_0/value_list_item'
|
79
79
|
require 'eligible/v1_0/verification'
|
80
|
+
require 'eligible/v1_0/reports/accuracy_stats'
|
81
|
+
require 'eligible/v1_0/reports/estimate_friction'
|
82
|
+
require 'eligible/v1_0/reports/in_scope_distribution'
|
80
83
|
|
81
84
|
# Errors
|
82
85
|
require 'eligible/errors/eligible_error'
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Eligible
|
4
|
+
module V1_0
|
5
|
+
module Reports
|
6
|
+
class AccuracyStats < RestAPIBase
|
7
|
+
ENDPOINT_NAME = 'reports/accuracy_stats'.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 EstimateFriction < RestAPIBase
|
7
|
+
ENDPOINT_NAME = 'reports/estimate_frictions'.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 InScopeDistribution < RestAPIBase
|
7
|
+
ENDPOINT_NAME = 'reports/in_scope_distributions'.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
|
data/lib/eligible/version.rb
CHANGED
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.
|
4
|
+
version: 3.0.0.beta17
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Katelyn Gleaon
|
@@ -182,6 +182,9 @@ files:
|
|
182
182
|
- lib/eligible/v1_0/product.rb
|
183
183
|
- lib/eligible/v1_0/provider.rb
|
184
184
|
- lib/eligible/v1_0/remark.rb
|
185
|
+
- lib/eligible/v1_0/reports/accuracy_stats.rb
|
186
|
+
- lib/eligible/v1_0/reports/estimate_friction.rb
|
187
|
+
- lib/eligible/v1_0/reports/in_scope_distribution.rb
|
185
188
|
- lib/eligible/v1_0/rest_api_base.rb
|
186
189
|
- lib/eligible/v1_0/rule.rb
|
187
190
|
- lib/eligible/v1_0/session.rb
|