danicc097
danicc097
PS: sorry about the useless review code snippets, can't seem to edit the selection after submitting...
I think this should cover everything: readOnly and writeOnly properties request, response and examples validation
@fenollp does this look good to you, before I fix merge conflicts?
Just hit this one right away as well with Postgres 13 custom enums + pgx v4. The switch statement does the trick and doesn't get in the way I guess...
I append `jsonschema.InterceptSchema` to `openapi3.Reflector`'s `DefaultOptions` with ```go // jsonschema.InterceptSchema(func(params jsonschema.InterceptSchemaParams) (stop bool, err error) t := params.Schema.ReflectType if t.Kind() == reflect.Ptr { t = t.Elem() } if t ==...
for vite (using 3.2.5 in my case), update your config to: ```js ... build: { ... commonjsOptions: { transformMixedEsModules: true, }, } ``` and that should do it
Your example is validated correctly by: ```go package openapi3_test import ( "testing" "github.com/stretchr/testify/require" "github.com/getkin/kin-openapi/openapi3" ) func TestIssue1012(t *testing.T) { spec := ` openapi: 3.0.1 info: description: Test API title: Test...
Ok, looking at `connect` I see it overrides `self.signal_name`, so thats the issue. MultiSignalBlocker waits for all signals so I don't know if it'd be simpler to allow it to...
> > > Ok, looking at connect I see it overrides self.signal_name, so thats the issue. > > I see thanks. > > > MultiSignalBlocker waits for all signals >...
I'm looking for this as well. I guess the simplest solution would be extending the existing "Export as M3U / PLS Playlist File" plugin with an opt-in checkbox to autoconvert...