Skip to content

Commit

Permalink
chore(spec): more case changes and file renames
Browse files Browse the repository at this point in the history
I did not account for file-system case-sensitivity. Oops.
  • Loading branch information
TheMrMilchmann committed Jan 10, 2024
1 parent 0d2eb10 commit c0d94d4
Show file tree
Hide file tree
Showing 22 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/kotlin/com/gw2tb/apigen/internal/spec/GW2v1.kt
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ internal val GW2v1 = GW2APISpecV1 {
})
}
V1_ITEMS(summary = "Returns the IDs of the available items.") {
schema(record(name = "ItemIDs", description = "Information about the available items.") {
schema(record(name = "ItemIds", description = "Information about the available items.") {
"Items"(array(ITEM_ID), "the IDs of the available items")
})
}
Expand Down Expand Up @@ -483,7 +483,7 @@ internal val GW2v1 = GW2APISpecV1 {
})
}
V1_RECIPES(summary = "Returns the IDs of the available recipes.") {
schema(record(name = "RecipeIDs", description = "Information about the available recipes.") {
schema(record(name = "RecipeIds", description = "Information about the available recipes.") {
"Recipes"(array(RECIPE_ID), "the IDs of the available recipes")
})
}
Expand Down Expand Up @@ -538,7 +538,7 @@ internal val GW2v1 = GW2APISpecV1 {
})
}
V1_SKINS(summary = "Returns the IDs of the available skins.") {
schema(record(name = "SkinIDs", description = "Information about the available skins.") {
schema(record(name = "SkinIds", description = "Information about the available skins.") {
"Skins"(array(SKIN_ID), "the IDs of the available skins")
})
}
Expand Down

0 comments on commit c0d94d4

Please sign in to comment.