action jellyfin_get_packages { label: "Gets available packages." provider: jellyfin method: GET path: "/Packages" encoding: json output: { type: "array" items: { type: "object" description: "Class PackageInfo." properties: { category: { type: "string" description: "Gets or sets the category." } description: { type: "string" description: "Gets or sets a long description of the plugin containing features or helpful explanations." } guid: { type: "string" description: "Gets or sets the guid of the assembly associated with this plugin. \nThis is used to identify the proper item for automatic updates." } imageUrl: { type: "string" description: "Gets or sets the image url for the package." } name: { type: "string" description: "Gets or sets the name." } overview: { type: "string" description: "Gets or sets a short overview of what the plugin does." } owner: { type: "string" description: "Gets or sets the owner." } versions: { type: "array" description: "Gets or sets the versions." items: { type: "object" description: "Defines the MediaBrowser.Model.Updates.VersionInfo class." properties: { VersionNumber: { type: "object" properties: { Build: { type: "integer" format: "int32" } Major: { type: "integer" format: "int32" } MajorRevision: { type: "integer" format: "int32" } Minor: { type: "integer" format: "int32" } MinorRevision: { type: "integer" format: "int32" } Revision: { type: "integer" format: "int32" } } additionalProperties: false } changelog: { type: "string" description: "Gets or sets the changelog for this version." } checksum: { type: "string" description: "Gets or sets a checksum for the binary." } repositoryName: { type: "string" description: "Gets or sets the repository name." } repositoryUrl: { type: "string" description: "Gets or sets the repository url." } sourceUrl: { type: "string" description: "Gets or sets the source URL." } targetAbi: { type: "string" description: "Gets or sets the ABI that this version was built against." } timestamp: { type: "string" description: "Gets or sets a timestamp of when the binary was built." } version: { type: "string" description: "Gets or sets the version." } } additionalProperties: false } } } additionalProperties: false } } }