def new_version_details()

in api/payloads.py [0:0]


def new_version_details(uuid):
    body = {
        "upload": uuid,
        "license": "ISC",
        "release_notes": {
            "de": "New Version DE notes added in API at addon creation time",
            "en-US": "New Version EN-US notes added in API at addon creation time",
            "fr": "New Version FR notes added in API at addon creation time",
        },
        "compatibility": {
            "android": {"min": "121.0a1", "max": "*"},
            "firefox": {"min": "70.0a1", "max": "*"},
        },
    }
    return body