mastercard_mcaidanalytics 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/mastercard/api/mcaidanalytics/cards.rb +39 -35
- data/lib/mastercard/api/mcaidanalytics/devices.rb +39 -35
- data/lib/mastercard/api/mcaidanalytics/merchants.rb +39 -35
- data/lib/mastercard/api/mcaidanalytics/products.rb +39 -35
- data/lib/mastercard/api/mcaidanalytics/programs.rb +39 -35
- data/lib/mastercard/api/mcaidanalytics/resourceconfig.rb +51 -46
- data/lib/mastercard/api/mcaidanalytics/transactions.rb +35 -31
- data/lib/mastercard_mcaidanalytics.rb +6 -4
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eb0f601fde7a6191fe096cf4886814c67c70cde3
|
4
|
+
data.tar.gz: 609528ce0aa2897ca855444f7f9d55da012dfd59
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7d8a01cfbbb941e0dc349b5919098ea743e4f951fd4fbe586da0e2e9c8e006247b5161289fae8b0bce7f7b678eca956bf9d2bafd6580e6bd8aadebb9bbfe3bcf
|
7
|
+
data.tar.gz: 248cf6cd91b4aa891c0fe3e3b5d435ee282e714d9091b1489cbdf6922caa96b142702e6947eb9dd58ef702ae52216db51ef52c618890dbfb326b135eaeea82b1
|
@@ -27,55 +27,59 @@
|
|
27
27
|
|
28
28
|
|
29
29
|
require "mastercard/core/model"
|
30
|
+
require "mastercard/core/baseobject"
|
30
31
|
|
31
32
|
module MasterCard
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
33
|
+
module API
|
34
|
+
module McaidAnalytics
|
35
|
+
class Cards < MasterCard::Core::Model::BaseObject
|
36
|
+
include MasterCard::Core::Model
|
37
|
+
#
|
37
38
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
39
|
+
@__store = {
|
40
|
+
'ce4c3396-6b73-4cbc-86db-8cf44acd164a' => OperationConfig.new("/labs/proxy/mcaid-api/internal/v1/cards", "list", [], ["programId","status"]),
|
41
|
+
|
42
|
+
}
|
42
43
|
|
43
|
-
|
44
|
+
protected
|
44
45
|
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
46
|
+
def self.getOperationConfig(uuid)
|
47
|
+
if @__store.key?(uuid)
|
48
|
+
return @__store[uuid]
|
49
|
+
end
|
50
|
+
raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
|
51
|
+
end
|
51
52
|
|
52
|
-
|
53
|
-
|
54
|
-
|
53
|
+
def self.getOperationMetadata()
|
54
|
+
return OperationMetadata.new(ResourceConfig.instance.getVersion(), ResourceConfig.instance.getHost(), ResourceConfig.instance.getContext())
|
55
|
+
end
|
55
56
|
|
56
|
-
|
57
|
+
public
|
57
58
|
|
58
59
|
|
59
60
|
|
60
|
-
def self.listByCriteria(criteria = nil)
|
61
|
-
#
|
62
|
-
#List objects of type Cards
|
63
|
-
#
|
64
|
-
#@param Dict criteria
|
65
|
-
#@return Array of Cards object matching the criteria.
|
66
61
|
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
62
|
+
def self.listByCriteria(criteria = nil)
|
63
|
+
#
|
64
|
+
#List objects of type Cards
|
65
|
+
#
|
66
|
+
#@param [Dict] criteria
|
67
|
+
#@return Array [Cards] object matching the criteria.
|
68
|
+
#@raise [APIException] an exception from the response status
|
73
69
|
|
70
|
+
if criteria.nil?
|
71
|
+
return self.execute("ce4c3396-6b73-4cbc-86db-8cf44acd164a",Cards.new)
|
72
|
+
else
|
73
|
+
return self.execute("ce4c3396-6b73-4cbc-86db-8cf44acd164a",Cards.new(criteria))
|
74
|
+
end
|
75
|
+
end
|
74
76
|
|
75
77
|
|
76
|
-
|
77
|
-
|
78
|
-
|
78
|
+
|
79
|
+
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
79
83
|
end
|
80
84
|
|
81
85
|
|
@@ -27,55 +27,59 @@
|
|
27
27
|
|
28
28
|
|
29
29
|
require "mastercard/core/model"
|
30
|
+
require "mastercard/core/baseobject"
|
30
31
|
|
31
32
|
module MasterCard
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
33
|
+
module API
|
34
|
+
module McaidAnalytics
|
35
|
+
class Devices < MasterCard::Core::Model::BaseObject
|
36
|
+
include MasterCard::Core::Model
|
37
|
+
#
|
37
38
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
39
|
+
@__store = {
|
40
|
+
'cb3a12d2-9228-45b6-a230-b85020fa4121' => OperationConfig.new("/labs/proxy/mcaid-api/internal/v1/devices", "list", [], ["type"]),
|
41
|
+
|
42
|
+
}
|
42
43
|
|
43
|
-
|
44
|
+
protected
|
44
45
|
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
46
|
+
def self.getOperationConfig(uuid)
|
47
|
+
if @__store.key?(uuid)
|
48
|
+
return @__store[uuid]
|
49
|
+
end
|
50
|
+
raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
|
51
|
+
end
|
51
52
|
|
52
|
-
|
53
|
-
|
54
|
-
|
53
|
+
def self.getOperationMetadata()
|
54
|
+
return OperationMetadata.new(ResourceConfig.instance.getVersion(), ResourceConfig.instance.getHost(), ResourceConfig.instance.getContext())
|
55
|
+
end
|
55
56
|
|
56
|
-
|
57
|
+
public
|
57
58
|
|
58
59
|
|
59
60
|
|
60
|
-
def self.listByCriteria(criteria = nil)
|
61
|
-
#
|
62
|
-
#List objects of type Devices
|
63
|
-
#
|
64
|
-
#@param Dict criteria
|
65
|
-
#@return Array of Devices object matching the criteria.
|
66
61
|
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
62
|
+
def self.listByCriteria(criteria = nil)
|
63
|
+
#
|
64
|
+
#List objects of type Devices
|
65
|
+
#
|
66
|
+
#@param [Dict] criteria
|
67
|
+
#@return Array [Devices] object matching the criteria.
|
68
|
+
#@raise [APIException] an exception from the response status
|
73
69
|
|
70
|
+
if criteria.nil?
|
71
|
+
return self.execute("cb3a12d2-9228-45b6-a230-b85020fa4121",Devices.new)
|
72
|
+
else
|
73
|
+
return self.execute("cb3a12d2-9228-45b6-a230-b85020fa4121",Devices.new(criteria))
|
74
|
+
end
|
75
|
+
end
|
74
76
|
|
75
77
|
|
76
|
-
|
77
|
-
|
78
|
-
|
78
|
+
|
79
|
+
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
79
83
|
end
|
80
84
|
|
81
85
|
|
@@ -27,55 +27,59 @@
|
|
27
27
|
|
28
28
|
|
29
29
|
require "mastercard/core/model"
|
30
|
+
require "mastercard/core/baseobject"
|
30
31
|
|
31
32
|
module MasterCard
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
33
|
+
module API
|
34
|
+
module McaidAnalytics
|
35
|
+
class Merchants < MasterCard::Core::Model::BaseObject
|
36
|
+
include MasterCard::Core::Model
|
37
|
+
#
|
37
38
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
39
|
+
@__store = {
|
40
|
+
'b48b3820-506b-498a-a4e5-5f4e09df2a05' => OperationConfig.new("/labs/proxy/mcaid-api/internal/v1/merchants", "list", [], ["name"]),
|
41
|
+
|
42
|
+
}
|
42
43
|
|
43
|
-
|
44
|
+
protected
|
44
45
|
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
46
|
+
def self.getOperationConfig(uuid)
|
47
|
+
if @__store.key?(uuid)
|
48
|
+
return @__store[uuid]
|
49
|
+
end
|
50
|
+
raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
|
51
|
+
end
|
51
52
|
|
52
|
-
|
53
|
-
|
54
|
-
|
53
|
+
def self.getOperationMetadata()
|
54
|
+
return OperationMetadata.new(ResourceConfig.instance.getVersion(), ResourceConfig.instance.getHost(), ResourceConfig.instance.getContext())
|
55
|
+
end
|
55
56
|
|
56
|
-
|
57
|
+
public
|
57
58
|
|
58
59
|
|
59
60
|
|
60
|
-
def self.listByCriteria(criteria = nil)
|
61
|
-
#
|
62
|
-
#List objects of type Merchants
|
63
|
-
#
|
64
|
-
#@param Dict criteria
|
65
|
-
#@return Array of Merchants object matching the criteria.
|
66
61
|
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
62
|
+
def self.listByCriteria(criteria = nil)
|
63
|
+
#
|
64
|
+
#List objects of type Merchants
|
65
|
+
#
|
66
|
+
#@param [Dict] criteria
|
67
|
+
#@return Array [Merchants] object matching the criteria.
|
68
|
+
#@raise [APIException] an exception from the response status
|
73
69
|
|
70
|
+
if criteria.nil?
|
71
|
+
return self.execute("b48b3820-506b-498a-a4e5-5f4e09df2a05",Merchants.new)
|
72
|
+
else
|
73
|
+
return self.execute("b48b3820-506b-498a-a4e5-5f4e09df2a05",Merchants.new(criteria))
|
74
|
+
end
|
75
|
+
end
|
74
76
|
|
75
77
|
|
76
|
-
|
77
|
-
|
78
|
-
|
78
|
+
|
79
|
+
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
79
83
|
end
|
80
84
|
|
81
85
|
|
@@ -27,55 +27,59 @@
|
|
27
27
|
|
28
28
|
|
29
29
|
require "mastercard/core/model"
|
30
|
+
require "mastercard/core/baseobject"
|
30
31
|
|
31
32
|
module MasterCard
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
33
|
+
module API
|
34
|
+
module McaidAnalytics
|
35
|
+
class Products < MasterCard::Core::Model::BaseObject
|
36
|
+
include MasterCard::Core::Model
|
37
|
+
#
|
37
38
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
39
|
+
@__store = {
|
40
|
+
'efc02beb-fefa-4b1c-9f9d-698a974b7181' => OperationConfig.new("/labs/proxy/mcaid-api/internal/v1/products", "list", [], ["name"]),
|
41
|
+
|
42
|
+
}
|
42
43
|
|
43
|
-
|
44
|
+
protected
|
44
45
|
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
46
|
+
def self.getOperationConfig(uuid)
|
47
|
+
if @__store.key?(uuid)
|
48
|
+
return @__store[uuid]
|
49
|
+
end
|
50
|
+
raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
|
51
|
+
end
|
51
52
|
|
52
|
-
|
53
|
-
|
54
|
-
|
53
|
+
def self.getOperationMetadata()
|
54
|
+
return OperationMetadata.new(ResourceConfig.instance.getVersion(), ResourceConfig.instance.getHost(), ResourceConfig.instance.getContext())
|
55
|
+
end
|
55
56
|
|
56
|
-
|
57
|
+
public
|
57
58
|
|
58
59
|
|
59
60
|
|
60
|
-
def self.listByCriteria(criteria = nil)
|
61
|
-
#
|
62
|
-
#List objects of type Products
|
63
|
-
#
|
64
|
-
#@param Dict criteria
|
65
|
-
#@return Array of Products object matching the criteria.
|
66
61
|
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
62
|
+
def self.listByCriteria(criteria = nil)
|
63
|
+
#
|
64
|
+
#List objects of type Products
|
65
|
+
#
|
66
|
+
#@param [Dict] criteria
|
67
|
+
#@return Array [Products] object matching the criteria.
|
68
|
+
#@raise [APIException] an exception from the response status
|
73
69
|
|
70
|
+
if criteria.nil?
|
71
|
+
return self.execute("efc02beb-fefa-4b1c-9f9d-698a974b7181",Products.new)
|
72
|
+
else
|
73
|
+
return self.execute("efc02beb-fefa-4b1c-9f9d-698a974b7181",Products.new(criteria))
|
74
|
+
end
|
75
|
+
end
|
74
76
|
|
75
77
|
|
76
|
-
|
77
|
-
|
78
|
-
|
78
|
+
|
79
|
+
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
79
83
|
end
|
80
84
|
|
81
85
|
|
@@ -27,55 +27,59 @@
|
|
27
27
|
|
28
28
|
|
29
29
|
require "mastercard/core/model"
|
30
|
+
require "mastercard/core/baseobject"
|
30
31
|
|
31
32
|
module MasterCard
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
33
|
+
module API
|
34
|
+
module McaidAnalytics
|
35
|
+
class Programs < MasterCard::Core::Model::BaseObject
|
36
|
+
include MasterCard::Core::Model
|
37
|
+
#
|
37
38
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
39
|
+
@__store = {
|
40
|
+
'60e3afb8-4e7f-4723-bf6f-5311a7f7a157' => OperationConfig.new("/labs/proxy/mcaid-api/internal/v1/programs", "list", [], ["name"]),
|
41
|
+
|
42
|
+
}
|
42
43
|
|
43
|
-
|
44
|
+
protected
|
44
45
|
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
46
|
+
def self.getOperationConfig(uuid)
|
47
|
+
if @__store.key?(uuid)
|
48
|
+
return @__store[uuid]
|
49
|
+
end
|
50
|
+
raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
|
51
|
+
end
|
51
52
|
|
52
|
-
|
53
|
-
|
54
|
-
|
53
|
+
def self.getOperationMetadata()
|
54
|
+
return OperationMetadata.new(ResourceConfig.instance.getVersion(), ResourceConfig.instance.getHost(), ResourceConfig.instance.getContext())
|
55
|
+
end
|
55
56
|
|
56
|
-
|
57
|
+
public
|
57
58
|
|
58
59
|
|
59
60
|
|
60
|
-
def self.listByCriteria(criteria = nil)
|
61
|
-
#
|
62
|
-
#List objects of type Programs
|
63
|
-
#
|
64
|
-
#@param Dict criteria
|
65
|
-
#@return Array of Programs object matching the criteria.
|
66
61
|
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
62
|
+
def self.listByCriteria(criteria = nil)
|
63
|
+
#
|
64
|
+
#List objects of type Programs
|
65
|
+
#
|
66
|
+
#@param [Dict] criteria
|
67
|
+
#@return Array [Programs] object matching the criteria.
|
68
|
+
#@raise [APIException] an exception from the response status
|
73
69
|
|
70
|
+
if criteria.nil?
|
71
|
+
return self.execute("60e3afb8-4e7f-4723-bf6f-5311a7f7a157",Programs.new)
|
72
|
+
else
|
73
|
+
return self.execute("60e3afb8-4e7f-4723-bf6f-5311a7f7a157",Programs.new(criteria))
|
74
|
+
end
|
75
|
+
end
|
74
76
|
|
75
77
|
|
76
|
-
|
77
|
-
|
78
|
-
|
78
|
+
|
79
|
+
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
79
83
|
end
|
80
84
|
|
81
85
|
|
@@ -29,65 +29,70 @@ require "mastercard/core/constants"
|
|
29
29
|
require "mastercard/core/config"
|
30
30
|
|
31
31
|
module MasterCard
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
32
|
+
module API
|
33
|
+
module McaidAnalytics
|
34
|
+
class ResourceConfig
|
35
|
+
include MasterCard::Core
|
36
36
|
|
37
|
-
|
37
|
+
@@instance = nil
|
38
38
|
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
39
|
+
def initialize
|
40
|
+
@name = "mcaid-analytics"
|
41
|
+
@override = nil
|
42
|
+
@host = nil
|
43
|
+
@context = nil
|
44
|
+
@version = "1.0.2"
|
45
45
|
|
46
|
-
|
47
|
-
|
48
|
-
|
46
|
+
Config.registerResourceConfig(self)
|
47
|
+
currentEnvironment = Config.getEnvironment()
|
48
|
+
self.setEnvironment(currentEnvironment)
|
49
49
|
|
50
|
-
|
50
|
+
end
|
51
51
|
|
52
52
|
|
53
|
-
|
54
|
-
|
55
|
-
|
53
|
+
def self.instance
|
54
|
+
return @@instance
|
55
|
+
end
|
56
56
|
|
57
57
|
|
58
|
-
|
59
|
-
|
60
|
-
|
58
|
+
def getName
|
59
|
+
return @name
|
60
|
+
end
|
61
61
|
|
62
62
|
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
63
|
+
def getHost
|
64
|
+
unless @override.nil? || @override == 0
|
65
|
+
return @override
|
66
|
+
else
|
67
|
+
return @host
|
68
|
+
end
|
69
|
+
end
|
70
70
|
|
71
|
-
|
72
|
-
|
73
|
-
|
71
|
+
def getContext
|
72
|
+
return @context
|
73
|
+
end
|
74
74
|
|
75
|
-
|
76
|
-
|
77
|
-
|
75
|
+
def getVersion
|
76
|
+
return @version
|
77
|
+
end
|
78
78
|
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
79
|
+
def setEnvironment(environmet)
|
80
|
+
if Environment::MAPPING.key?(environmet)
|
81
|
+
tuple = Environment::MAPPING[environmet]
|
82
|
+
@host = tuple[0]
|
83
|
+
@context = tuple[1]
|
84
|
+
end
|
85
|
+
end
|
86
86
|
|
87
|
-
|
87
|
+
def setCustomEnvironment(host,context)
|
88
|
+
@host = host
|
89
|
+
@context = context
|
90
|
+
end
|
88
91
|
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
92
|
+
@@instance = ResourceConfig.new
|
93
|
+
|
94
|
+
private_class_method :new
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
93
98
|
end
|
@@ -27,52 +27,56 @@
|
|
27
27
|
|
28
28
|
|
29
29
|
require "mastercard/core/model"
|
30
|
+
require "mastercard/core/baseobject"
|
30
31
|
|
31
32
|
module MasterCard
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
33
|
+
module API
|
34
|
+
module McaidAnalytics
|
35
|
+
class Transactions < MasterCard::Core::Model::BaseObject
|
36
|
+
include MasterCard::Core::Model
|
37
|
+
#
|
37
38
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
39
|
+
@__store = {
|
40
|
+
'185480c7-a974-4ef0-b78d-bdc8b806c09c' => OperationConfig.new("/labs/proxy/mcaid-api/internal/v1/transactions", "query", [], ["pageOffset","pageLength","programId","startDate","endDate","type","status"]),
|
41
|
+
|
42
|
+
}
|
42
43
|
|
43
|
-
|
44
|
+
protected
|
44
45
|
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
46
|
+
def self.getOperationConfig(uuid)
|
47
|
+
if @__store.key?(uuid)
|
48
|
+
return @__store[uuid]
|
49
|
+
end
|
50
|
+
raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
|
51
|
+
end
|
51
52
|
|
52
|
-
|
53
|
-
|
54
|
-
|
53
|
+
def self.getOperationMetadata()
|
54
|
+
return OperationMetadata.new(ResourceConfig.instance.getVersion(), ResourceConfig.instance.getHost(), ResourceConfig.instance.getContext())
|
55
|
+
end
|
55
56
|
|
56
|
-
|
57
|
+
public
|
57
58
|
|
58
59
|
|
59
60
|
|
60
61
|
|
61
62
|
|
62
63
|
|
63
|
-
def self.query(criteria)
|
64
|
-
#
|
65
|
-
#Query objects of type Transactions by id and optional criteria
|
66
|
-
#@param type criteria
|
67
|
-
#@return Transactions object representing the response.
|
68
|
-
#
|
69
64
|
|
70
|
-
|
71
|
-
|
65
|
+
def self.query(criteria)
|
66
|
+
#
|
67
|
+
#Query objects of type Transactions by id and optional criteria
|
68
|
+
#@param [Dict] criteria
|
69
|
+
#@return [Transactions] object representing the response.
|
70
|
+
#@raise [APIException] an exception from the response status
|
71
|
+
#
|
72
72
|
|
73
|
-
|
74
|
-
|
75
|
-
|
73
|
+
return self.execute("185480c7-a974-4ef0-b78d-bdc8b806c09c",Transactions.new(criteria))
|
74
|
+
end
|
75
|
+
|
76
|
+
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
76
80
|
end
|
77
81
|
|
78
82
|
|
@@ -1,8 +1,10 @@
|
|
1
1
|
require 'mastercard_api_core'
|
2
|
-
|
3
|
-
require 'mastercard/api/mcaidanalytics/transactions'
|
4
|
-
require 'mastercard/api/mcaidanalytics/programs'
|
5
|
-
require 'mastercard/api/mcaidanalytics/devices'
|
2
|
+
|
6
3
|
require 'mastercard/api/mcaidanalytics/resourceconfig'
|
4
|
+
|
7
5
|
require 'mastercard/api/mcaidanalytics/cards'
|
6
|
+
require 'mastercard/api/mcaidanalytics/devices'
|
7
|
+
require 'mastercard/api/mcaidanalytics/merchants'
|
8
8
|
require 'mastercard/api/mcaidanalytics/products'
|
9
|
+
require 'mastercard/api/mcaidanalytics/programs'
|
10
|
+
require 'mastercard/api/mcaidanalytics/transactions'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mastercard_mcaidanalytics
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- MasterCard Worldwide
|
@@ -16,20 +16,20 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.
|
19
|
+
version: 1.4.0
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 1.
|
22
|
+
version: 1.4.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
27
|
- - "~>"
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 1.
|
29
|
+
version: 1.4.0
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 1.
|
32
|
+
version: 1.4.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: ci_reporter_minitest
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|