Request: Add DIZ to Packs API call

I would love for the DIZ to be added to the /v1/pack/ API call. This would allow someone to list packs with their DIZ, much as 16colo.rs does on its home page. Something like:

{
            "year": 1995,
            "name": "ice9509a",
            "download": "https:\/\/16colo.rs\/archive\/1995\/ice9509a.zip",
            "gallery": "https:\/\/16colo.rs\/pack\/ice9509a",
            "archive": "ice9509a.zip",
            "diz": "FILE_ID.DIZ",
            "groups": [
                "ice"
            ]
        }

this is in fact already supported but i noticed it’s undocumented. The parameter is the same as for /v1/pack/:name so you can just add fileid=true as a parameter and it it will give you a list of all files that identify as a “DIZ” and the (16c) preferred one (meaning .ANS has priority have .DIZ)

eg: https://api.16colo.rs/v1/pack/?filter=century&fileid=true

"results": [
        {
            "year": 2020,
            "name": "blocktronics-20th-century-blocks",
            "download": "\/archive\/2020\/blocktronics-20th-century-blocks.zip",
            "gallery": "\/pack\/blocktronics-20th-century-blocks",
            "archive": "blocktronics-20th-century-blocks.zip",
            "groups": [
                "blocktronics"
            ],
            "fileid": "FILE_ID.ANS",
            "fileids": [
                "FILE_ID.ANS",
                "FILE_ID.DIZ"
            ]
        }
    ]

i’ll adjust the documentation to include the missing parameters for the /v1/pack/ API call.