Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added starting items to /matches endpoint #2254

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
Prev Previous commit
corrected spec.js
  • Loading branch information
27bslash committed Oct 15, 2020
commit e749bb1e3253a597c51cebbf36f3eb0fd594a3b9
10 changes: 5 additions & 5 deletions routes/spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ You can find data that can be used to convert hero and ability IDs and other inf
type: 'integer',
},
key: {
description: 'Integer item ID',
description: 'String item name',
type: 'string',
},
},
Expand Down Expand Up @@ -684,15 +684,15 @@ You can find data that can be used to convert hero and ability IDs and other inf
type: 'object',
properties: {
key: {
description: 'Time in seconds the item was bought',
type: 'integer',
description: 'Item name',
type: 'string',
},
itemslot: {
description: 'Slot the item was in',
description: 'Inventory slot the item was in',
type: 'integer',
},
charges: {
description: 'Integer Amount of charges an item has',
description: 'Amount of charges an item has',
type: 'integer',
},
},
Expand Down