mastercard_retaillocationinsights 1.0.2 → 1.0.3

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
  SHA1:
3
- metadata.gz: c5e8a166ad52b8a15d8cb68ea81695882a54cdf6
4
- data.tar.gz: 3576dd32a1134727031e7fa39eff4dcfad994e17
3
+ metadata.gz: d30c10f87618af844742c7b1bc10ef97815a2b6a
4
+ data.tar.gz: e18feedd44dc203d4c39c856dfae81a93cacdfce
5
5
  SHA512:
6
- metadata.gz: 2cae7e980f00a7083e87e3ffbf5c88d21f5fc947a33bc1588e85ee2466c234b23c938d9af7ea164f4634d75ad2dfd25d1b4e28edbefe91307397a890d0d8592f
7
- data.tar.gz: c01df8d7cf616c32a50da45556f305ca42a23d495a4110b1b13d1ecebf7ce0030b88458889c194d80fc32cfa926a9d0b2e6c37a781386b6e39721e7f386452ab
6
+ metadata.gz: b1809cc3d221ca867273344967b0b2498592936b75018f45724527cbcb2e470a7a4dc58470055b4a32452a3407a2485bbf735f5af05ce972cf3477a843f9ab5a
7
+ data.tar.gz: 455bc0a5d70377c7cb10e8fb5854eca18873578f53e5e825478bf891631858b03f763dcc1fa156bb78e113a0b7ec0da7c0d993de1e14f2bc4cfd71abd23fc706
@@ -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
- module API
33
- module RetailLocationInsights
34
- class MerchantIndustries < MasterCard::Core::Model::BaseObject
35
- include MasterCard::Core::Model
36
- #
33
+ module API
34
+ module RetailLocationInsights
35
+ class MerchantIndustries < MasterCard::Core::Model::BaseObject
36
+ include MasterCard::Core::Model
37
+ #
37
38
 
38
- @__store = {
39
- '0ecde3a6-7ad0-4716-a15e-f6d6c1e4ba82' => OperationConfig.new("/upfront/v1/upfront/merchantindustries", "query", [], []),
40
-
41
- }
39
+ @__store = {
40
+ '3ae1a284-2edf-4992-9a34-5c8fa3b9cd2c' => OperationConfig.new("/upfront/v1/upfront/merchantindustries", "query", [], []),
41
+
42
+ }
42
43
 
43
- protected
44
+ protected
44
45
 
45
- def self.getOperationConfig(uuid)
46
- if @__store.key?(uuid)
47
- return @__store[uuid]
48
- end
49
- raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
50
- end
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
- def self.getOperationMetadata()
53
- return OperationMetadata.new(SDKConfig.getVersion(), SDKConfig.getHost())
54
- end
53
+ def self.getOperationMetadata()
54
+ return OperationMetadata.new(ResourceConfig.instance.getVersion(), ResourceConfig.instance.getHost(), ResourceConfig.instance.getContext())
55
+ end
55
56
 
56
- public
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 MerchantIndustries by id and optional criteria
66
- #@param type criteria
67
- #@return MerchantIndustries object representing the response.
68
- #
69
64
 
70
- return self.execute("0ecde3a6-7ad0-4716-a15e-f6d6c1e4ba82",MerchantIndustries.new(criteria))
71
- end
65
+ def self.query(criteria)
66
+ #
67
+ #Query objects of type MerchantIndustries by id and optional criteria
68
+ #@param [Dict] criteria
69
+ #@return [MerchantIndustries] object representing the response.
70
+ #@raise [APIException] an exception from the response status
71
+ #
72
72
 
73
- end
74
- end
75
- end
73
+ return self.execute("3ae1a284-2edf-4992-9a34-5c8fa3b9cd2c",MerchantIndustries.new(criteria))
74
+ end
75
+
76
+
77
+ end
78
+ end
79
+ end
76
80
  end
77
81
 
78
82
 
@@ -24,27 +24,75 @@
24
24
  # IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25
25
  # SUCH DAMAGE.
26
26
  #
27
+
28
+ require "mastercard/core/constants"
29
+ require "mastercard/core/config"
30
+
27
31
  module MasterCard
28
- module API
29
- module RetailLocationInsights
30
- class SDKConfig
31
-
32
- private
33
- @@host = nil
34
-
35
- public
36
- def self.setHost(host)
37
- @@host = host
38
- end
39
-
40
- def self.getHost()
41
- return @@host
42
- end
43
-
44
- def self.getVersion()
45
- return "1.0.2"
46
- end
47
- end
48
- end
49
- end
32
+ module API
33
+ module RetailLocationInsights
34
+ class ResourceConfig
35
+ include MasterCard::Core
36
+
37
+ @@instance = nil
38
+
39
+ def initialize
40
+ @name = "retail-location-insights"
41
+ @override = nil
42
+ @host = nil
43
+ @context = nil
44
+ @version = "1.0.3"
45
+
46
+ Config.registerResourceConfig(self)
47
+ currentEnvironment = Config.getEnvironment()
48
+ self.setEnvironment(currentEnvironment)
49
+
50
+ end
51
+
52
+
53
+ def self.instance
54
+ return @@instance
55
+ end
56
+
57
+
58
+ def getName
59
+ return @name
60
+ end
61
+
62
+
63
+ def getHost
64
+ unless @override.nil? || @override == 0
65
+ return @override
66
+ else
67
+ return @host
68
+ end
69
+ end
70
+
71
+ def getContext
72
+ return @context
73
+ end
74
+
75
+ def getVersion
76
+ return @version
77
+ end
78
+
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
+
87
+ def setCustomEnvironment(host,context)
88
+ @host = host
89
+ @context = context
90
+ end
91
+
92
+ @@instance = ResourceConfig.new
93
+
94
+ private_class_method :new
95
+ end
96
+ end
97
+ end
50
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
- module API
33
- module RetailLocationInsights
34
- class RetailUnitMerchants < MasterCard::Core::Model::BaseObject
35
- include MasterCard::Core::Model
36
- #
33
+ module API
34
+ module RetailLocationInsights
35
+ class RetailUnitMerchants < MasterCard::Core::Model::BaseObject
36
+ include MasterCard::Core::Model
37
+ #
37
38
 
38
- @__store = {
39
- 'c32d2f76-1d9f-4e80-ab4b-8863238971a6' => OperationConfig.new("/upfront/v1/upfront/retailunitmerchants", "query", [], ["PageOffset","PageLength","RetailUnitType","RetailUnitId","Period","Industry","StreetAddress","City","CountrySubdivision","PostalCode"]),
40
-
41
- }
39
+ @__store = {
40
+ 'bf4563f8-51d5-47a4-9780-e9abb1302749' => OperationConfig.new("/upfront/v1/upfront/retailunitmerchants", "query", [], ["PageOffset","PageLength","RetailUnitType","RetailUnitId","Period","Industry","StreetAddress","City","CountrySubdivision","PostalCode"]),
41
+
42
+ }
42
43
 
43
- protected
44
+ protected
44
45
 
45
- def self.getOperationConfig(uuid)
46
- if @__store.key?(uuid)
47
- return @__store[uuid]
48
- end
49
- raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
50
- end
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
- def self.getOperationMetadata()
53
- return OperationMetadata.new(SDKConfig.getVersion(), SDKConfig.getHost())
54
- end
53
+ def self.getOperationMetadata()
54
+ return OperationMetadata.new(ResourceConfig.instance.getVersion(), ResourceConfig.instance.getHost(), ResourceConfig.instance.getContext())
55
+ end
55
56
 
56
- public
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 RetailUnitMerchants by id and optional criteria
66
- #@param type criteria
67
- #@return RetailUnitMerchants object representing the response.
68
- #
69
64
 
70
- return self.execute("c32d2f76-1d9f-4e80-ab4b-8863238971a6",RetailUnitMerchants.new(criteria))
71
- end
65
+ def self.query(criteria)
66
+ #
67
+ #Query objects of type RetailUnitMerchants by id and optional criteria
68
+ #@param [Dict] criteria
69
+ #@return [RetailUnitMerchants] object representing the response.
70
+ #@raise [APIException] an exception from the response status
71
+ #
72
72
 
73
- end
74
- end
75
- end
73
+ return self.execute("bf4563f8-51d5-47a4-9780-e9abb1302749",RetailUnitMerchants.new(criteria))
74
+ end
75
+
76
+
77
+ end
78
+ end
79
+ end
76
80
  end
77
81
 
78
82
 
@@ -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
- module API
33
- module RetailLocationInsights
34
- class RetailUnits < MasterCard::Core::Model::BaseObject
35
- include MasterCard::Core::Model
36
- #
33
+ module API
34
+ module RetailLocationInsights
35
+ class RetailUnits < MasterCard::Core::Model::BaseObject
36
+ include MasterCard::Core::Model
37
+ #
37
38
 
38
- @__store = {
39
- '432e1119-dd77-46c8-90fc-c50beed70aab' => OperationConfig.new("/upfront/v1/upfront/retailunits", "query", [], ["PageOffset","PageLength","CountryCode","StateId","CountyId","CensusTract","PostalCode","RetailUnitType","RetailUnitId"]),
40
-
41
- }
39
+ @__store = {
40
+ '0e316ca9-f8b1-4b51-95c7-44cedc7f36af' => OperationConfig.new("/upfront/v1/upfront/retailunits", "query", [], ["PageOffset","PageLength","CountryCode","StateId","CountyId","CensusTract","PostalCode","RetailUnitType","RetailUnitId"]),
41
+
42
+ }
42
43
 
43
- protected
44
+ protected
44
45
 
45
- def self.getOperationConfig(uuid)
46
- if @__store.key?(uuid)
47
- return @__store[uuid]
48
- end
49
- raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
50
- end
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
- def self.getOperationMetadata()
53
- return OperationMetadata.new(SDKConfig.getVersion(), SDKConfig.getHost())
54
- end
53
+ def self.getOperationMetadata()
54
+ return OperationMetadata.new(ResourceConfig.instance.getVersion(), ResourceConfig.instance.getHost(), ResourceConfig.instance.getContext())
55
+ end
55
56
 
56
- public
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 RetailUnits by id and optional criteria
66
- #@param type criteria
67
- #@return RetailUnits object representing the response.
68
- #
69
64
 
70
- return self.execute("432e1119-dd77-46c8-90fc-c50beed70aab",RetailUnits.new(criteria))
71
- end
65
+ def self.query(criteria)
66
+ #
67
+ #Query objects of type RetailUnits by id and optional criteria
68
+ #@param [Dict] criteria
69
+ #@return [RetailUnits] object representing the response.
70
+ #@raise [APIException] an exception from the response status
71
+ #
72
72
 
73
- end
74
- end
75
- end
73
+ return self.execute("0e316ca9-f8b1-4b51-95c7-44cedc7f36af",RetailUnits.new(criteria))
74
+ end
75
+
76
+
77
+ end
78
+ end
79
+ end
76
80
  end
77
81
 
78
82
 
@@ -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
- module API
33
- module RetailLocationInsights
34
- class RetailUnitsMetrics < MasterCard::Core::Model::BaseObject
35
- include MasterCard::Core::Model
36
- #
33
+ module API
34
+ module RetailLocationInsights
35
+ class RetailUnitsMetrics < MasterCard::Core::Model::BaseObject
36
+ include MasterCard::Core::Model
37
+ #
37
38
 
38
- @__store = {
39
- '88981537-fa20-48eb-82b7-ec6b9c1ff387' => OperationConfig.new("/upfront/v1/upfront/retailunitmetrics", "query", [], ["PageOffset","PageLength","RetailUnitType","RetailUnitId","CompositeIndustry","Period"]),
40
-
41
- }
39
+ @__store = {
40
+ '7021bd5f-ba78-42b7-bc32-60384bc9c235' => OperationConfig.new("/upfront/v1/upfront/retailunitmetrics", "query", [], ["PageOffset","PageLength","RetailUnitType","RetailUnitId","CompositeIndustry","Period"]),
41
+
42
+ }
42
43
 
43
- protected
44
+ protected
44
45
 
45
- def self.getOperationConfig(uuid)
46
- if @__store.key?(uuid)
47
- return @__store[uuid]
48
- end
49
- raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
50
- end
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
- def self.getOperationMetadata()
53
- return OperationMetadata.new(SDKConfig.getVersion(), SDKConfig.getHost())
54
- end
53
+ def self.getOperationMetadata()
54
+ return OperationMetadata.new(ResourceConfig.instance.getVersion(), ResourceConfig.instance.getHost(), ResourceConfig.instance.getContext())
55
+ end
55
56
 
56
- public
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 RetailUnitsMetrics by id and optional criteria
66
- #@param type criteria
67
- #@return RetailUnitsMetrics object representing the response.
68
- #
69
64
 
70
- return self.execute("88981537-fa20-48eb-82b7-ec6b9c1ff387",RetailUnitsMetrics.new(criteria))
71
- end
65
+ def self.query(criteria)
66
+ #
67
+ #Query objects of type RetailUnitsMetrics by id and optional criteria
68
+ #@param [Dict] criteria
69
+ #@return [RetailUnitsMetrics] object representing the response.
70
+ #@raise [APIException] an exception from the response status
71
+ #
72
72
 
73
- end
74
- end
75
- end
73
+ return self.execute("7021bd5f-ba78-42b7-bc32-60384bc9c235",RetailUnitsMetrics.new(criteria))
74
+ end
75
+
76
+
77
+ end
78
+ end
79
+ end
76
80
  end
77
81
 
78
82
 
@@ -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
- module API
33
- module RetailLocationInsights
34
- class Subscriptions < MasterCard::Core::Model::BaseObject
35
- include MasterCard::Core::Model
36
- #
33
+ module API
34
+ module RetailLocationInsights
35
+ class Subscriptions < MasterCard::Core::Model::BaseObject
36
+ include MasterCard::Core::Model
37
+ #
37
38
 
38
- @__store = {
39
- '1fb14387-1cab-43f1-bf61-6fee55aa7d37' => OperationConfig.new("/upfront/v1/upfront/subscriptions", "query", [], []),
40
-
41
- }
39
+ @__store = {
40
+ '5b3ab3b6-2f2a-4cf2-a686-e4886f05c101' => OperationConfig.new("/upfront/v1/upfront/subscriptions", "query", [], []),
41
+
42
+ }
42
43
 
43
- protected
44
+ protected
44
45
 
45
- def self.getOperationConfig(uuid)
46
- if @__store.key?(uuid)
47
- return @__store[uuid]
48
- end
49
- raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
50
- end
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
- def self.getOperationMetadata()
53
- return OperationMetadata.new(SDKConfig.getVersion(), SDKConfig.getHost())
54
- end
53
+ def self.getOperationMetadata()
54
+ return OperationMetadata.new(ResourceConfig.instance.getVersion(), ResourceConfig.instance.getHost(), ResourceConfig.instance.getContext())
55
+ end
55
56
 
56
- public
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 Subscriptions by id and optional criteria
66
- #@param type criteria
67
- #@return Subscriptions object representing the response.
68
- #
69
64
 
70
- return self.execute("1fb14387-1cab-43f1-bf61-6fee55aa7d37",Subscriptions.new(criteria))
71
- end
65
+ def self.query(criteria)
66
+ #
67
+ #Query objects of type Subscriptions by id and optional criteria
68
+ #@param [Dict] criteria
69
+ #@return [Subscriptions] object representing the response.
70
+ #@raise [APIException] an exception from the response status
71
+ #
72
72
 
73
- end
74
- end
75
- end
73
+ return self.execute("5b3ab3b6-2f2a-4cf2-a686-e4886f05c101",Subscriptions.new(criteria))
74
+ end
75
+
76
+
77
+ end
78
+ end
79
+ end
76
80
  end
77
81
 
78
82
 
@@ -1,7 +1,9 @@
1
1
  require 'mastercard_api_core'
2
- require 'mastercard/api/retaillocationinsights/skdconfig'
2
+
3
+ require 'mastercard/api/retaillocationinsights/resourceconfig'
4
+
5
+ require 'mastercard/api/retaillocationinsights/merchantindustries'
3
6
  require 'mastercard/api/retaillocationinsights/retailunitmerchants'
4
- require 'mastercard/api/retaillocationinsights/retailunitsmetrics'
5
7
  require 'mastercard/api/retaillocationinsights/retailunits'
6
- require 'mastercard/api/retaillocationinsights/merchantindustries'
8
+ require 'mastercard/api/retaillocationinsights/retailunitsmetrics'
7
9
  require 'mastercard/api/retaillocationinsights/subscriptions'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mastercard_retaillocationinsights
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - MasterCard Worldwide
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-29 00:00:00.000000000 Z
11
+ date: 2017-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mastercard_api_core
@@ -16,20 +16,20 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 1.2.0
19
+ version: 1.4.0
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 1.2.0
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.2.0
29
+ version: 1.4.0
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 1.2.0
32
+ version: 1.4.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: ci_reporter_minitest
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -52,10 +52,10 @@ extensions: []
52
52
  extra_rdoc_files: []
53
53
  files:
54
54
  - lib/mastercard/api/retaillocationinsights/merchantindustries.rb
55
+ - lib/mastercard/api/retaillocationinsights/resourceconfig.rb
55
56
  - lib/mastercard/api/retaillocationinsights/retailunitmerchants.rb
56
57
  - lib/mastercard/api/retaillocationinsights/retailunits.rb
57
58
  - lib/mastercard/api/retaillocationinsights/retailunitsmetrics.rb
58
- - lib/mastercard/api/retaillocationinsights/skdconfig.rb
59
59
  - lib/mastercard/api/retaillocationinsights/subscriptions.rb
60
60
  - lib/mastercard_retaillocationinsights.rb
61
61
  homepage: https://developer.mastercard.com