technitium 0.4.0

Typed async Rust client for the Technitium DNS Server API
Documentation
# Zone Convert

## Endpoint
`/api/zones/convert`

## Method
GET

## Description
Converts a zone from one type to another.

## Authentication
Token required.

## Parameters

| Name | Type | Required | Conditional | Description |
|------|------|----------|-------------|-------------|
| `token` | string | Yes | - | Session token from `login` or `createToken`. |
| `node` | string | No | - | Node domain name for clustering. When unspecified, the current node is used. Only usable when Clustering is initialized. |
| `zone` | string | Yes | - | Domain name of the zone to be converted. |
| `type` | string | Yes | - | The zone type to convert the current zone to. |

## Response Fields

No additional response fields beyond `status: "ok"`.

## Conditional Logic Notes
- Requires Delete permission on both Zones and the specific Zone (destructive operation that changes zone type).

## Edge Cases
- The documentation does not specify which type conversions are valid. Not all conversions may be supported.
- This is a destructive operation requiring Delete-level permissions.