blizzard_api 0.5.6 → 0.6.3
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 +4 -4
- data/.github/workflows/ruby.yml +1 -1
- data/.rubocop.yml +1 -1
- data/CHANGELOG.md +18 -0
- data/Gemfile.lock +6 -2
- data/blizzard_api.gemspec +2 -1
- data/lib/blizzard_api/configuration.rb +10 -34
- data/lib/blizzard_api/diablo/community/act.rb +2 -2
- data/lib/blizzard_api/diablo/community/artisan.rb +2 -2
- data/lib/blizzard_api/diablo/community/character.rb +2 -2
- data/lib/blizzard_api/diablo/community/follower.rb +1 -1
- data/lib/blizzard_api/diablo/community/item.rb +1 -1
- data/lib/blizzard_api/diablo/community/item_type.rb +2 -2
- data/lib/blizzard_api/diablo/community/profile.rb +4 -4
- data/lib/blizzard_api/diablo/game_data/generic_data_endpoint.rb +3 -3
- data/lib/blizzard_api/hearthstone/game_data/back.rb +1 -1
- data/lib/blizzard_api/hearthstone/game_data/card.rb +2 -2
- data/lib/blizzard_api/hearthstone/game_data/generic_data_endpoint.rb +2 -2
- data/lib/blizzard_api/request.rb +24 -7
- data/lib/blizzard_api/starcraft.rb +1 -1
- data/lib/blizzard_api/starcraft/community/account.rb +1 -1
- data/lib/blizzard_api/starcraft/community/ladder.rb +2 -2
- data/lib/blizzard_api/starcraft/community/legacy.rb +3 -4
- data/lib/blizzard_api/starcraft/community/profile.rb +5 -5
- data/lib/blizzard_api/starcraft/game_data/league.rb +1 -1
- data/lib/blizzard_api/version.rb +1 -1
- data/lib/blizzard_api/wow/game_data/achievement.rb +3 -3
- data/lib/blizzard_api/wow/game_data/auction.rb +20 -2
- data/lib/blizzard_api/wow/game_data/azerite_essence.rb +1 -1
- data/lib/blizzard_api/wow/game_data/covenant.rb +5 -5
- data/lib/blizzard_api/wow/game_data/creature.rb +13 -7
- data/lib/blizzard_api/wow/game_data/generic_data_endpoint.rb +20 -8
- data/lib/blizzard_api/wow/game_data/guild_crest.rb +4 -2
- data/lib/blizzard_api/wow/game_data/item.rb +10 -6
- data/lib/blizzard_api/wow/game_data/journal.rb +8 -8
- data/lib/blizzard_api/wow/game_data/modified_crafting.rb +4 -4
- data/lib/blizzard_api/wow/game_data/mythic_keystone.rb +6 -6
- data/lib/blizzard_api/wow/game_data/mythic_keystone_affix.rb +1 -1
- data/lib/blizzard_api/wow/game_data/mythic_keystone_leaderboard.rb +2 -2
- data/lib/blizzard_api/wow/game_data/mythic_raid_leaderboard.rb +1 -1
- data/lib/blizzard_api/wow/game_data/pet.rb +4 -4
- data/lib/blizzard_api/wow/game_data/playable_class.rb +10 -8
- data/lib/blizzard_api/wow/game_data/playable_specialization.rb +8 -8
- data/lib/blizzard_api/wow/game_data/profession.rb +4 -4
- data/lib/blizzard_api/wow/game_data/pvp_season.rb +5 -3
- data/lib/blizzard_api/wow/game_data/pvp_tier.rb +1 -1
- data/lib/blizzard_api/wow/game_data/quest.rb +6 -6
- data/lib/blizzard_api/wow/game_data/reputation.rb +4 -4
- data/lib/blizzard_api/wow/game_data/spell.rb +1 -1
- data/lib/blizzard_api/wow/game_data/talent.rb +2 -2
- data/lib/blizzard_api/wow/game_data/tech_talent.rb +3 -3
- data/lib/blizzard_api/wow/game_data/wow_token.rb +1 -1
- data/lib/blizzard_api/wow/profile/character_profile.rb +27 -27
- data/lib/blizzard_api/wow/profile/guild.rb +5 -5
- data/lib/blizzard_api/wow/profile/profile.rb +6 -6
- data/lib/blizzard_api/wow/search/search_composer.rb +2 -2
- data/lib/blizzard_api/wow/search/search_request.rb +1 -1
- metadata +18 -4
@@ -30,7 +30,7 @@ module BlizzardApi
|
|
30
30
|
# This method overrides the inherited default behavior to prevent high server load and fetch time
|
31
31
|
#
|
32
32
|
# @!macro response
|
33
|
-
def get(_id
|
33
|
+
def get(_id)
|
34
34
|
raise BlizzardApi::ApiException, 'This endpoint does not have a get method'
|
35
35
|
end
|
36
36
|
|
@@ -41,7 +41,7 @@ module BlizzardApi
|
|
41
41
|
#
|
42
42
|
# @!macro response
|
43
43
|
def expansions(**options)
|
44
|
-
api_request "#{endpoint_uri('expansion')}/index", default_options.merge(options)
|
44
|
+
api_request "#{endpoint_uri('expansion')}/index", **default_options.merge(options)
|
45
45
|
end
|
46
46
|
|
47
47
|
##
|
@@ -52,7 +52,7 @@ module BlizzardApi
|
|
52
52
|
#
|
53
53
|
# @!macro response
|
54
54
|
def expansion(id, **options)
|
55
|
-
api_request "#{endpoint_uri('expansion')}/#{id}", default_options.merge(options)
|
55
|
+
api_request "#{endpoint_uri('expansion')}/#{id}", **default_options.merge(options)
|
56
56
|
end
|
57
57
|
|
58
58
|
##
|
@@ -62,7 +62,7 @@ module BlizzardApi
|
|
62
62
|
#
|
63
63
|
# @!macro response
|
64
64
|
def instances(**options)
|
65
|
-
api_request "#{endpoint_uri('instance')}/index", default_options.merge(options)
|
65
|
+
api_request "#{endpoint_uri('instance')}/index", **default_options.merge(options)
|
66
66
|
end
|
67
67
|
|
68
68
|
##
|
@@ -73,7 +73,7 @@ module BlizzardApi
|
|
73
73
|
#
|
74
74
|
# @!macro response
|
75
75
|
def instance(id, **options)
|
76
|
-
api_request "#{endpoint_uri('instance')}/#{id}", default_options.merge(options)
|
76
|
+
api_request "#{endpoint_uri('instance')}/#{id}", **default_options.merge(options)
|
77
77
|
end
|
78
78
|
|
79
79
|
##
|
@@ -83,7 +83,7 @@ module BlizzardApi
|
|
83
83
|
#
|
84
84
|
# @!macro response
|
85
85
|
def encounters(**options)
|
86
|
-
api_request "#{endpoint_uri('encounter')}/index", default_options.merge(options)
|
86
|
+
api_request "#{endpoint_uri('encounter')}/index", **default_options.merge(options)
|
87
87
|
end
|
88
88
|
|
89
89
|
##
|
@@ -94,7 +94,7 @@ module BlizzardApi
|
|
94
94
|
#
|
95
95
|
# @!macro response
|
96
96
|
def encounter(id, **options)
|
97
|
-
api_request "#{endpoint_uri('encounter')}/#{id}", default_options.merge(options)
|
97
|
+
api_request "#{endpoint_uri('encounter')}/#{id}", **default_options.merge(options)
|
98
98
|
end
|
99
99
|
|
100
100
|
##
|
@@ -109,7 +109,7 @@ module BlizzardApi
|
|
109
109
|
search_options = SearchComposer.new(page, page_size)
|
110
110
|
yield search_options if block_given?
|
111
111
|
|
112
|
-
api_request "#{endpoint_uri('encounter', :search)}?#{search_options.to_search_query}", default_options.merge(options)
|
112
|
+
api_request "#{endpoint_uri('encounter', :search)}?#{search_options.to_search_query}", **default_options.merge(options)
|
113
113
|
end
|
114
114
|
|
115
115
|
protected
|
@@ -19,7 +19,7 @@ module BlizzardApi
|
|
19
19
|
#
|
20
20
|
# @!macro request_options
|
21
21
|
def categories(**options)
|
22
|
-
api_request "#{base_url(:game_data)}/modified-crafting/category/index", default_options.merge(options)
|
22
|
+
api_request "#{base_url(:game_data)}/modified-crafting/category/index", **default_options.merge(options)
|
23
23
|
end
|
24
24
|
|
25
25
|
##
|
@@ -31,7 +31,7 @@ module BlizzardApi
|
|
31
31
|
#
|
32
32
|
# @!macro response
|
33
33
|
def category(id, **options)
|
34
|
-
api_request "#{base_url(:game_data)}/modified-crafting/category/#{id}", default_options.merge(options)
|
34
|
+
api_request "#{base_url(:game_data)}/modified-crafting/category/#{id}", **default_options.merge(options)
|
35
35
|
end
|
36
36
|
|
37
37
|
##
|
@@ -39,7 +39,7 @@ module BlizzardApi
|
|
39
39
|
#
|
40
40
|
# @!macro request_options
|
41
41
|
def slot_types(**options)
|
42
|
-
api_request "#{base_url(:game_data)}/modified-crafting/reagent-slot-type/index", default_options.merge(options)
|
42
|
+
api_request "#{base_url(:game_data)}/modified-crafting/reagent-slot-type/index", **default_options.merge(options)
|
43
43
|
end
|
44
44
|
|
45
45
|
##
|
@@ -51,7 +51,7 @@ module BlizzardApi
|
|
51
51
|
#
|
52
52
|
# @!macro response
|
53
53
|
def slot_type(id, **options)
|
54
|
-
api_request "#{base_url(:game_data)}/modified-crafting/reagent-slot-type/#{id}", default_options.merge(options)
|
54
|
+
api_request "#{base_url(:game_data)}/modified-crafting/reagent-slot-type/#{id}", **default_options.merge(options)
|
55
55
|
end
|
56
56
|
|
57
57
|
protected
|
@@ -25,7 +25,7 @@ module BlizzardApi
|
|
25
25
|
#
|
26
26
|
# @!macro response
|
27
27
|
def dungeons(**options)
|
28
|
-
api_request "#{endpoint_uri}/dungeon/index", default_options.merge(options)
|
28
|
+
api_request "#{endpoint_uri}/dungeon/index", **default_options.merge(options)
|
29
29
|
end
|
30
30
|
|
31
31
|
##
|
@@ -37,7 +37,7 @@ module BlizzardApi
|
|
37
37
|
#
|
38
38
|
# @!macro response
|
39
39
|
def dungeon(id, **options)
|
40
|
-
api_request "#{endpoint_uri}/dungeon/#{id}", default_options.merge(options)
|
40
|
+
api_request "#{endpoint_uri}/dungeon/#{id}", **default_options.merge(options)
|
41
41
|
end
|
42
42
|
|
43
43
|
##
|
@@ -47,7 +47,7 @@ module BlizzardApi
|
|
47
47
|
#
|
48
48
|
# @!macro response
|
49
49
|
def periods(**options)
|
50
|
-
api_request "#{endpoint_uri}/period/index", default_options.merge(options)
|
50
|
+
api_request "#{endpoint_uri}/period/index", **default_options.merge(options)
|
51
51
|
end
|
52
52
|
|
53
53
|
##
|
@@ -59,7 +59,7 @@ module BlizzardApi
|
|
59
59
|
#
|
60
60
|
# @!macro response
|
61
61
|
def period(id, **options)
|
62
|
-
api_request "#{endpoint_uri}/period/#{id}", default_options.merge(options)
|
62
|
+
api_request "#{endpoint_uri}/period/#{id}", **default_options.merge(options)
|
63
63
|
end
|
64
64
|
|
65
65
|
##
|
@@ -69,7 +69,7 @@ module BlizzardApi
|
|
69
69
|
#
|
70
70
|
# @!macro response
|
71
71
|
def seasons(**options)
|
72
|
-
api_request "#{endpoint_uri}/season/index", default_options.merge(options)
|
72
|
+
api_request "#{endpoint_uri}/season/index", **default_options.merge(options)
|
73
73
|
end
|
74
74
|
|
75
75
|
##
|
@@ -81,7 +81,7 @@ module BlizzardApi
|
|
81
81
|
#
|
82
82
|
# @!macro response
|
83
83
|
def season(id, **options)
|
84
|
-
api_request "#{endpoint_uri}/season/#{id}", default_options.merge(options)
|
84
|
+
api_request "#{endpoint_uri}/season/#{id}", **default_options.merge(options)
|
85
85
|
end
|
86
86
|
|
87
87
|
protected
|
@@ -19,7 +19,7 @@ module BlizzardApi
|
|
19
19
|
#
|
20
20
|
# @!macro response
|
21
21
|
def media(id, **options)
|
22
|
-
api_request "#{base_url(:media)}/keystone-affix/#{id}", default_options.merge(options)
|
22
|
+
api_request "#{base_url(:media)}/keystone-affix/#{id}", **default_options.merge(options)
|
23
23
|
end
|
24
24
|
|
25
25
|
protected
|
@@ -19,7 +19,7 @@ module BlizzardApi
|
|
19
19
|
#
|
20
20
|
# @!macro response
|
21
21
|
def index(connected_realm_id, **options)
|
22
|
-
api_request "#{endpoint_uri(connected_realm_id)}/index", default_options(options)
|
22
|
+
api_request "#{endpoint_uri(connected_realm_id)}/index", **default_options(options)
|
23
23
|
end
|
24
24
|
|
25
25
|
##
|
@@ -31,7 +31,7 @@ module BlizzardApi
|
|
31
31
|
#
|
32
32
|
# @!macro response
|
33
33
|
def get(connected_realm_id, dungeon_id, period, **options)
|
34
|
-
api_request "#{endpoint_uri(connected_realm_id)}/#{dungeon_id}/period/#{period}", default_options(options)
|
34
|
+
api_request "#{endpoint_uri(connected_realm_id)}/#{dungeon_id}/period/#{period}", **default_options(options)
|
35
35
|
end
|
36
36
|
|
37
37
|
private
|
@@ -21,7 +21,7 @@ module BlizzardApi
|
|
21
21
|
# @!macro response
|
22
22
|
def get(raid, faction, **options)
|
23
23
|
opts = options.merge(namespace: :dynamic, ttl: CACHE_DAY)
|
24
|
-
api_request "#{base_url(:game_data)}/leaderboard/hall-of-fame/#{raid}/#{faction}", opts
|
24
|
+
api_request "#{base_url(:game_data)}/leaderboard/hall-of-fame/#{raid}/#{faction}", **opts
|
25
25
|
end
|
26
26
|
end
|
27
27
|
end
|
@@ -19,7 +19,7 @@ module BlizzardApi
|
|
19
19
|
#
|
20
20
|
# @!macro response
|
21
21
|
def media(id, **options)
|
22
|
-
api_request "#{base_url(:media)}/pet/#{id}", default_options.merge(options)
|
22
|
+
api_request "#{base_url(:media)}/pet/#{id}", **default_options.merge(options)
|
23
23
|
end
|
24
24
|
|
25
25
|
##
|
@@ -29,7 +29,7 @@ module BlizzardApi
|
|
29
29
|
#
|
30
30
|
# @!macro response
|
31
31
|
def abilities(**options)
|
32
|
-
api_request "#{endpoint_uri('ability')}/index", default_options.merge(options)
|
32
|
+
api_request "#{endpoint_uri('ability')}/index", **default_options.merge(options)
|
33
33
|
end
|
34
34
|
|
35
35
|
##
|
@@ -41,7 +41,7 @@ module BlizzardApi
|
|
41
41
|
#
|
42
42
|
# @!macro response
|
43
43
|
def ability(id, **options)
|
44
|
-
api_request "#{endpoint_uri('ability')}/#{id}", default_options.merge(options)
|
44
|
+
api_request "#{endpoint_uri('ability')}/#{id}", **default_options.merge(options)
|
45
45
|
end
|
46
46
|
|
47
47
|
##
|
@@ -53,7 +53,7 @@ module BlizzardApi
|
|
53
53
|
#
|
54
54
|
# @!macro response
|
55
55
|
def ability_media(id, **options)
|
56
|
-
api_request "#{base_url(:media)}/pet-ability/#{id}", default_options.merge(options)
|
56
|
+
api_request "#{base_url(:media)}/pet-ability/#{id}", **default_options.merge(options)
|
57
57
|
end
|
58
58
|
|
59
59
|
protected
|
@@ -18,19 +18,20 @@ module BlizzardApi
|
|
18
18
|
#
|
19
19
|
# @!macro response
|
20
20
|
def talent_slots(id, **options)
|
21
|
-
api_request "#{endpoint_uri}/#{id}/pvp-talent-slots", default_options.merge(options)
|
21
|
+
api_request "#{endpoint_uri}/#{id}/pvp-talent-slots", **default_options.merge(options)
|
22
22
|
end
|
23
23
|
|
24
24
|
##
|
25
25
|
# @!macro complete
|
26
26
|
#
|
27
27
|
# @option options [Boolean] :classic If set to true, this method will call the classic version
|
28
|
+
# @option options [Boolean] :classic1x If set to true, this method will call the classic era version
|
28
29
|
def complete(**options)
|
29
|
-
index_data = index
|
30
|
+
index_data = index(**options)
|
30
31
|
[].tap do |classes|
|
31
32
|
index_data[:classes].each do |pclass|
|
32
33
|
class_id = %r{playable-class/([0-9]+)}.match(pclass[:key].to_s)[1]
|
33
|
-
class_data = get class_id, options
|
34
|
+
class_data = get class_id, **options
|
34
35
|
classes.push class_data
|
35
36
|
end
|
36
37
|
end
|
@@ -43,11 +44,12 @@ module BlizzardApi
|
|
43
44
|
#
|
44
45
|
# @!macro request_options
|
45
46
|
# @option options [Boolean] :classic If set to true, this method will call the classic version
|
47
|
+
# @option options [Boolean] :classic1x If set to true, this method will call the classic era version
|
46
48
|
#
|
47
49
|
# @!macro response
|
48
50
|
def get(id, **options)
|
49
|
-
data = api_request "#{endpoint_uri}/#{id}", default_options.merge(options)
|
50
|
-
data[:icon] = get_class_icon data[:media], options
|
51
|
+
data = api_request "#{endpoint_uri}/#{id}", **default_options.merge(options)
|
52
|
+
data[:icon] = get_class_icon data[:media], **options
|
51
53
|
data
|
52
54
|
end
|
53
55
|
|
@@ -60,7 +62,7 @@ module BlizzardApi
|
|
60
62
|
#
|
61
63
|
# @!macro response
|
62
64
|
def media(id, **options)
|
63
|
-
api_request "#{base_url(:media)}/playable-class/#{id}", default_options.merge(options)
|
65
|
+
api_request "#{base_url(:media)}/playable-class/#{id}", **default_options.merge(options)
|
64
66
|
end
|
65
67
|
|
66
68
|
protected
|
@@ -72,10 +74,10 @@ module BlizzardApi
|
|
72
74
|
@ttl = CACHE_TRIMESTER
|
73
75
|
end
|
74
76
|
|
75
|
-
def get_class_icon(media_url, options)
|
77
|
+
def get_class_icon(media_url, **options)
|
76
78
|
return if options.include? :classic
|
77
79
|
|
78
|
-
media_data = request media_url[:key][:href], options
|
80
|
+
media_data = request media_url[:key][:href], **options
|
79
81
|
%r{56/([a-z_]+).jpg}.match(media_data[:assets][0][:value].to_s)[1]
|
80
82
|
end
|
81
83
|
end
|
@@ -13,11 +13,11 @@ module BlizzardApi
|
|
13
13
|
##
|
14
14
|
# @!macro complete
|
15
15
|
def complete(**options)
|
16
|
-
index_data = index
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
16
|
+
index_data = index(**options)
|
17
|
+
{}.tap do |response_data|
|
18
|
+
response_data[:character_specializations] = character_data(index_data, options)
|
19
|
+
response_data[:pet_specializations] = pet_data(index_data, options)
|
20
|
+
end
|
21
21
|
end
|
22
22
|
|
23
23
|
##
|
@@ -29,7 +29,7 @@ module BlizzardApi
|
|
29
29
|
#
|
30
30
|
# @!macro response
|
31
31
|
def media(id, **options)
|
32
|
-
api_request "#{base_url(:media)}/playable-specialization/#{id}", default_options.merge(options)
|
32
|
+
api_request "#{base_url(:media)}/playable-specialization/#{id}", **default_options.merge(options)
|
33
33
|
end
|
34
34
|
|
35
35
|
protected
|
@@ -47,7 +47,7 @@ module BlizzardApi
|
|
47
47
|
[].tap do |specs|
|
48
48
|
index_data[:character_specializations].each do |spec|
|
49
49
|
spec_id = %r{playable-specialization/([0-9]+)}.match(spec[:key].to_s)[1]
|
50
|
-
spec_data = get spec_id, options
|
50
|
+
spec_data = get spec_id, **options
|
51
51
|
spec_data[:icon] = resolve_icon(spec_data[:media][:key][:href])
|
52
52
|
cleanup spec_data
|
53
53
|
specs.push spec_data
|
@@ -59,7 +59,7 @@ module BlizzardApi
|
|
59
59
|
[].tap do |specs|
|
60
60
|
index_data[:pet_specializations].each do |spec|
|
61
61
|
spec_id = %r{playable-specialization/([0-9]+)}.match(spec[:key].to_s)[1]
|
62
|
-
spec_data = get spec_id, options
|
62
|
+
spec_data = get spec_id, **options
|
63
63
|
spec_data[:icon] = resolve_icon(spec_data[:media][:key][:href])
|
64
64
|
cleanup spec_data
|
65
65
|
specs.push spec_data
|
@@ -19,7 +19,7 @@ module BlizzardApi
|
|
19
19
|
#
|
20
20
|
# @!macro response
|
21
21
|
def media(id, **options)
|
22
|
-
api_request "#{base_url(:media)}/profession/#{id}", default_options.merge(options)
|
22
|
+
api_request "#{base_url(:media)}/profession/#{id}", **default_options.merge(options)
|
23
23
|
end
|
24
24
|
|
25
25
|
##
|
@@ -32,7 +32,7 @@ module BlizzardApi
|
|
32
32
|
#
|
33
33
|
# @!macro response
|
34
34
|
def skill_tier(id, tier_id, **options)
|
35
|
-
api_request "#{base_url(:game_data)}/profession/#{id}/skill-tier/#{tier_id}", default_options.merge(options)
|
35
|
+
api_request "#{base_url(:game_data)}/profession/#{id}/skill-tier/#{tier_id}", **default_options.merge(options)
|
36
36
|
end
|
37
37
|
|
38
38
|
##
|
@@ -44,7 +44,7 @@ module BlizzardApi
|
|
44
44
|
#
|
45
45
|
# @!macro response
|
46
46
|
def recipe(id, **options)
|
47
|
-
api_request "#{base_url(:game_data)}/recipe/#{id}", default_options.merge(options)
|
47
|
+
api_request "#{base_url(:game_data)}/recipe/#{id}", **default_options.merge(options)
|
48
48
|
end
|
49
49
|
|
50
50
|
##
|
@@ -56,7 +56,7 @@ module BlizzardApi
|
|
56
56
|
#
|
57
57
|
# @!macro response
|
58
58
|
def recipe_media(id, **options)
|
59
|
-
api_request "#{base_url(:media)}/recipe/#{id}", default_options.merge(options)
|
59
|
+
api_request "#{base_url(:media)}/recipe/#{id}", **default_options.merge(options)
|
60
60
|
end
|
61
61
|
|
62
62
|
protected
|
@@ -14,20 +14,22 @@ module BlizzardApi
|
|
14
14
|
# Returns a index of pvp leaderboard for a season
|
15
15
|
#
|
16
16
|
# @!macro request_options
|
17
|
+
# @option options [Boolean] :classic1x If set to true, this method will call the classic era version
|
17
18
|
#
|
18
19
|
# @!macro response
|
19
20
|
def leaderboards(season_id, **options)
|
20
|
-
api_request "#{endpoint_uri}/#{season_id}/pvp-leaderboard/index", default_options.merge(options)
|
21
|
+
api_request "#{endpoint_uri}/#{season_id}/pvp-leaderboard/index", **default_options.merge(options)
|
21
22
|
end
|
22
23
|
|
23
24
|
##
|
24
25
|
# Returns the leaderboard for a given season and bracket
|
25
26
|
#
|
26
27
|
# @!macro request_options
|
28
|
+
# @option options [Boolean] :classic1x If set to true, this method will call the classic era version
|
27
29
|
#
|
28
30
|
# @!macro response
|
29
31
|
def leaderboard(season_id, brackets, **options)
|
30
|
-
api_request "#{endpoint_uri}/#{season_id}/pvp-leaderboard/#{brackets}", default_options.merge(options)
|
32
|
+
api_request "#{endpoint_uri}/#{season_id}/pvp-leaderboard/#{brackets}", **default_options.merge(options)
|
31
33
|
end
|
32
34
|
|
33
35
|
##
|
@@ -37,7 +39,7 @@ module BlizzardApi
|
|
37
39
|
#
|
38
40
|
# @!macro response
|
39
41
|
def rewards(season_id, **options)
|
40
|
-
api_request "#{endpoint_uri}/#{season_id}/pvp-reward/index", default_options.merge(options)
|
42
|
+
api_request "#{endpoint_uri}/#{season_id}/pvp-reward/index", **default_options.merge(options)
|
41
43
|
end
|
42
44
|
|
43
45
|
protected
|
@@ -17,7 +17,7 @@ module BlizzardApi
|
|
17
17
|
#
|
18
18
|
# @!macro response
|
19
19
|
def tier_media(id, **options)
|
20
|
-
api_request "#{base_url(:media)}/#{@endpoint}/#{id}", default_options.merge(options)
|
20
|
+
api_request "#{base_url(:media)}/#{@endpoint}/#{id}", **default_options.merge(options)
|
21
21
|
end
|
22
22
|
|
23
23
|
protected
|
@@ -17,7 +17,7 @@ module BlizzardApi
|
|
17
17
|
#
|
18
18
|
# @!macro response
|
19
19
|
def categories(**options)
|
20
|
-
api_request "#{endpoint_uri}/category/index", default_options.merge(options)
|
20
|
+
api_request "#{endpoint_uri}/category/index", **default_options.merge(options)
|
21
21
|
end
|
22
22
|
|
23
23
|
##
|
@@ -28,7 +28,7 @@ module BlizzardApi
|
|
28
28
|
#
|
29
29
|
# @!macro response
|
30
30
|
def category(id, **options)
|
31
|
-
api_request "#{endpoint_uri}/category/#{id}", default_options.merge(options)
|
31
|
+
api_request "#{endpoint_uri}/category/#{id}", **default_options.merge(options)
|
32
32
|
end
|
33
33
|
|
34
34
|
##
|
@@ -38,7 +38,7 @@ module BlizzardApi
|
|
38
38
|
#
|
39
39
|
# @!macro response
|
40
40
|
def areas(**options)
|
41
|
-
api_request "#{endpoint_uri}/area/index", default_options.merge(options)
|
41
|
+
api_request "#{endpoint_uri}/area/index", **default_options.merge(options)
|
42
42
|
end
|
43
43
|
|
44
44
|
##
|
@@ -49,7 +49,7 @@ module BlizzardApi
|
|
49
49
|
#
|
50
50
|
# @!macro response
|
51
51
|
def area(id, **options)
|
52
|
-
api_request "#{endpoint_uri}/area/#{id}", default_options.merge(options)
|
52
|
+
api_request "#{endpoint_uri}/area/#{id}", **default_options.merge(options)
|
53
53
|
end
|
54
54
|
|
55
55
|
##
|
@@ -59,7 +59,7 @@ module BlizzardApi
|
|
59
59
|
#
|
60
60
|
# @!macro response
|
61
61
|
def types(**options)
|
62
|
-
api_request "#{endpoint_uri}/type/index", default_options.merge(options)
|
62
|
+
api_request "#{endpoint_uri}/type/index", **default_options.merge(options)
|
63
63
|
end
|
64
64
|
|
65
65
|
##
|
@@ -70,7 +70,7 @@ module BlizzardApi
|
|
70
70
|
#
|
71
71
|
# @!macro response
|
72
72
|
def type(id, **options)
|
73
|
-
api_request "#{endpoint_uri}/type/#{id}", default_options.merge(options)
|
73
|
+
api_request "#{endpoint_uri}/type/#{id}", **default_options.merge(options)
|
74
74
|
end
|
75
75
|
|
76
76
|
protected
|