From 163412a2537357be7f889727f6ff0125db8e7752 Mon Sep 17 00:00:00 2001 From: Quaternions <krakow20@gmail.com> Date: Tue, 8 Apr 2025 00:01:07 -0700 Subject: [PATCH] openapi: extend api StatusID maximum to match changes --- openapi.yaml | 4 ++-- pkg/api/oas_parameters_gen.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/openapi.yaml b/openapi.yaml index b4646d3..77b4e39 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -209,7 +209,7 @@ paths: type: integer format: int32 minimum: 0 - maximum: 8 + maximum: 9 responses: "200": description: Successful response @@ -549,7 +549,7 @@ paths: type: integer format: int32 minimum: 0 - maximum: 9 + maximum: 10 responses: "200": description: Successful response diff --git a/pkg/api/oas_parameters_gen.go b/pkg/api/oas_parameters_gen.go index ed558bd..157e1e3 100644 --- a/pkg/api/oas_parameters_gen.go +++ b/pkg/api/oas_parameters_gen.go @@ -2877,7 +2877,7 @@ func decodeListMapfixesParams(args [0]string, argsEscaped bool, r *http.Request) MinSet: true, Min: 0, MaxSet: true, - Max: 8, + Max: 9, MinExclusive: false, MaxExclusive: false, MultipleOfSet: false, @@ -4909,7 +4909,7 @@ func decodeListSubmissionsParams(args [0]string, argsEscaped bool, r *http.Reque MinSet: true, Min: 0, MaxSet: true, - Max: 9, + Max: 10, MinExclusive: false, MaxExclusive: false, MultipleOfSet: false,