action gitea_list_packages { label: "Gets all packages of an owner" provider: gitea method: GET path: "/packages/{owner}" encoding: json input: { type: "object" properties: { limit: { type: "integer" } owner: { type: "string" } page: { type: "integer" } q: { type: "string" } type: { type: "string" enum: ["cargo", "chef", "composer", "conan", "conda", "container", "generic", "helm", "maven", "npm", "nuget", "pub", "pypi", "rubygems", "vagrant"] } } required: ["owner"] additionalProperties: false } output: { type: "object" additionalProperties: true } }