From 076c312950feed468e321056a9d7714aaec9292d Mon Sep 17 00:00:00 2001 From: Lucas Kacher Date: Mon, 5 Aug 2024 16:13:41 -0700 Subject: [PATCH 1/2] feat: update spec descriptions --- client/client.gen.go | 2 +- spec/openapi-3.0.json | 4 ++-- spec/openapi.json | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/client/client.gen.go b/client/client.gen.go index 81f0b4b..0a0d1ec 100644 --- a/client/client.gen.go +++ b/client/client.gen.go @@ -1746,7 +1746,7 @@ type UnequipSchemaSlot string // GetAllCharactersCharactersGetParams defines parameters for GetAllCharactersCharactersGet. type GetAllCharactersCharactersGetParams struct { - // Sort Default sort by total XP. + // Sort Default sort by combat total XP. Sort *GetAllCharactersCharactersGetParamsSort `form:"sort,omitempty" json:"sort,omitempty"` // Page Page number diff --git a/spec/openapi-3.0.json b/spec/openapi-3.0.json index e2a07f3..2e8ba0c 100644 --- a/spec/openapi-3.0.json +++ b/spec/openapi-3.0.json @@ -1446,9 +1446,9 @@ ], "type": "string", "title": "Sort", - "description": "Default sort by total XP." + "description": "Default sort by combat total XP." }, - "description": "Default sort by total XP." + "description": "Default sort by combat total XP." }, { "name": "page", diff --git a/spec/openapi.json b/spec/openapi.json index 19cb33b..0bcc632 100644 --- a/spec/openapi.json +++ b/spec/openapi.json @@ -1446,9 +1446,9 @@ ], "type": "string", "title": "Sort", - "description": "Default sort by total XP." + "description": "Default sort by combat total XP." }, - "description": "Default sort by total XP." + "description": "Default sort by combat total XP." }, { "name": "page", From 0b8e69da803ae82d30d8e8fb59ed1fd9520a05bb Mon Sep 17 00:00:00 2001 From: Lucas Kacher Date: Mon, 5 Aug 2024 16:16:06 -0700 Subject: [PATCH 2/2] documentation: update how to regen --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 453904c..467a50c 100644 --- a/README.md +++ b/README.md @@ -16,3 +16,5 @@ not automating this. * [openapi-down-convert](https://github.com/apiture/openapi-down-convert) * sed (FreeBSD) * jq -- cross platform + +Run `make all` and it will be done.