action openapi_generator_generate_client { label: "Generates a client library" description: "Accepts a `GeneratorInput` options map for spec location and generation options" provider: openapi_generator method: POST path: "/api/gen/clients/{language}" encoding: json input: { type: "object" properties: { authorizationValue: { type: "object" properties: { keyName: { type: "string" } type: { type: "string" } urlMatcher: { type: "object" } value: { type: "string" } } } language: { type: "string" } openAPIUrl: { type: "string" } options: { type: "object" } spec: { type: "object" } } required: ["language"] additionalProperties: false } output: { type: "object" additionalProperties: true } }