@opusdns/api 0.259.0 → 0.261.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "@opusdns/api-spec-ts-generator": "^0.19.0"
4
4
  },
5
5
  "name": "@opusdns/api",
6
- "version": "0.259.0",
6
+ "version": "0.261.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -4179,6 +4179,7 @@ export const REPORT_TYPE = {
4179
4179
  DNS_ZONE_SUMMARY: "dns_zone_summary",
4180
4180
  DNS_ZONE_RECORDS: "dns_zone_records",
4181
4181
  DOMAIN_FORWARDS: "domain_forwards",
4182
+ EXPIRING_DOMAINS: "expiring_domains",
4182
4183
  BILLING_TRANSACTIONS: "billing_transactions",
4183
4184
  BILLING_TRANSACTIONS_MONTHLY: "billing_transactions_monthly",
4184
4185
  } as const satisfies Record<string, ReportType>;
@@ -4209,6 +4210,7 @@ export const REPORT_TYPE_VALUES = [
4209
4210
  'dns_zone_summary',
4210
4211
  'dns_zone_records',
4211
4212
  'domain_forwards',
4213
+ 'expiring_domains',
4212
4214
  'billing_transactions',
4213
4215
  'billing_transactions_monthly'
4214
4216
  ] as const satisfies [string, ...string[]] | ReportType[];
package/src/openapi.yaml CHANGED
@@ -8561,6 +8561,7 @@ components:
8561
8561
  - dns_zone_summary
8562
8562
  - dns_zone_records
8563
8563
  - domain_forwards
8564
+ - expiring_domains
8564
8565
  - billing_transactions
8565
8566
  - billing_transactions_monthly
8566
8567
  title: ReportType
@@ -10118,7 +10119,7 @@ info:
10118
10119
  \n\n"
10119
10120
  summary: OpusDNS - your gateway to a seamless domain management experience.
10120
10121
  title: OpusDNS API
10121
- version: 2026-04-21-143327
10122
+ version: 2026-04-21-224426
10122
10123
  x-logo:
10123
10124
  altText: OpusDNS API Reference
10124
10125
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -22321,58 +22322,112 @@ tags:
22321
22322
  \ Register multiple domains |\n| `domain_update_bulk` | Update multiple domains\
22322
22323
  \ (statuses, nameservers, contacts, renewal mode) |\n| `domain_transfer_bulk`\
22323
22324
  \ | Transfer multiple domains |\n| `dns_zone_create_bulk` | Create multiple DNS\
22324
- \ zones |\n| `dns_zone_update_bulk` | Update multiple DNS zones |\n| `dns_zone_patch_rrsets_bulk`\
22325
- \ | Patch DNS record sets across zones |\n| `dns_zone_patch_records_bulk` | Patch\
22326
- \ individual DNS records across zones |\n| `contact_create_bulk` | Create multiple\
22327
- \ contacts |\n| `parking_create_bulk` | Create parking pages for multiple domains\
22328
- \ |\n| `parking_enable_bulk` | Enable parking on multiple domains |\n| `parking_disable_bulk`\
22329
- \ | Disable parking on multiple domains |\n| `parking_delete_bulk` | Delete parking\
22330
- \ pages for multiple domains |\n\n### Batch Lifecycle\n\nEach job within a batch\
22331
- \ transitions through states:\n\n1. **blocked** \u2014 Waiting for eligibility\
22332
- \ (scheduled via `not_before`, or awaiting capacity)\n2. **queued** \u2014 Eligible\
22333
- \ and awaiting processing\n3. **paused** \u2014 Paused; must be explicitly resumed\
22334
- \ to continue\n4. **running** \u2014 Currently being executed\n5. **succeeded**\
22335
- \ \u2014 Completed successfully\n6. **failed** \u2014 Execution failed (check\
22336
- \ `error_class` and `error_message`)\n7. **canceled** \u2014 Job was canceled\
22337
- \ before completion\n8. **dead_letter** \u2014 Permanently failed after exhausting\
22338
- \ retries\n\nA batch itself has a `status` field that is either `pending` (jobs\
22339
- \ are still in progress) or `complete` (all jobs have reached a terminal state).\n\
22340
- \n### Usage Pattern\n\n1. **Submit a batch** \u2014 `POST /v1/jobs` with an array\
22341
- \ of commands\n2. **Poll for status** \u2014 `GET /v1/jobs/{batch_id}` to check\
22342
- \ progress counts and `progress_percentage`\n3. **Review results** \u2014 `GET\
22343
- \ /v1/jobs/{batch_id}/jobs` to see individual job outcomes\n\n### Managing Batches\n\
22344
- \n- **Pause** \u2014 `POST /v1/jobs/{batch_id}/pause` pauses all eligible jobs\
22345
- \ in the batch\n- **Resume** \u2014 `POST /v1/jobs/{batch_id}/resume` resumes\
22346
- \ all paused jobs\n- **Cancel** \u2014 `DELETE /v1/jobs/{batch_id}` cancels all\
22347
- \ pending jobs in the batch\n\nIndividual jobs can also be paused, resumed, or\
22348
- \ canceled via the `/v1/job/{job_id}` endpoints.\n\n### Limits\n\n- Maximum **50,000\
22349
- \ commands** per batch\n- Bulk commands support up to **1,000 instances** per\
22350
- \ command\n\n### Scheduling\n\nUse `not_before` to schedule batch execution for\
22351
- \ a future time (UTC timestamp). If not provided, processing begins as soon as\
22352
- \ a worker is available.\n\n### Idempotency\n\nEach command can include an optional\
22353
- \ `idempotency_key` to prevent duplicate execution. If a command with the same\
22354
- \ idempotency key has already been processed, it will be skipped.\n\n### Domain\
22355
- \ Status Updates in Batches\n\nThe `domain_update` and `domain_update_bulk` commands\
22356
- \ support two mutually exclusive approaches for modifying domain statuses. These\
22357
- \ work the same way as the `PATCH /v1/domains/{domain_reference}` endpoint \u2014\
22358
- \ see the [Domain management](#tag/Domain-management) documentation for full details\
22359
- \ on `statuses` vs `status_changes`.\n\n#### Using `status_changes` in bulk templates\n\
22360
- \nThe `domain_update_bulk` command is particularly useful with `status_changes`\
22361
- \ when you need to apply the same relative status change across many domains.\
22362
- \ Set `status_changes` in the **template** and list the target domains as **instances**.\
22363
- \ Each instance identifies a domain by either `name` or `domain_id` (but not both):\n\
22364
- \n```json\n{\n \"command\": \"domain_update_bulk\",\n \"payload\": {\n \"\
22365
- template\": {\n \"status_changes\": {\n \"add\": [\"clientTransferProhibited\"\
22325
+ \ zones |\n| `dns_zone_update_bulk` | Replace rrsets (and zone attributes like\
22326
+ \ DNSSEC) across multiple DNS zones |\n| `dns_zone_patch_rrsets_bulk` | Upsert\
22327
+ \ or remove entire rrsets (by name + type) across multiple zones |\n| `dns_zone_patch_records_bulk`\
22328
+ \ | Upsert or remove individual rdata values across multiple zones |\n| `contact_create_bulk`\
22329
+ \ | Create multiple contacts |\n| `parking_create_bulk` | Create parking pages\
22330
+ \ for multiple domains |\n| `parking_enable_bulk` | Enable parking on multiple\
22331
+ \ domains |\n| `parking_disable_bulk` | Disable parking on multiple domains |\n\
22332
+ | `parking_delete_bulk` | Delete parking pages for multiple domains |\n\n### Batch\
22333
+ \ Lifecycle\n\nEach job within a batch transitions through states:\n\n1. **blocked**\
22334
+ \ \u2014 Waiting for eligibility (scheduled via `not_before`, or awaiting capacity)\n\
22335
+ 2. **queued** \u2014 Eligible and awaiting processing\n3. **paused** \u2014 Paused;\
22336
+ \ must be explicitly resumed to continue\n4. **running** \u2014 Currently being\
22337
+ \ executed\n5. **succeeded** \u2014 Completed successfully\n6. **failed** \u2014\
22338
+ \ Execution failed (check `error_class` and `error_message`)\n7. **canceled**\
22339
+ \ \u2014 Job was canceled before completion\n8. **dead_letter** \u2014 Permanently\
22340
+ \ failed after exhausting retries\n\nA batch itself has a `status` field that\
22341
+ \ is either `pending` (jobs are still in progress) or `complete` (all jobs have\
22342
+ \ reached a terminal state).\n\n### Usage Pattern\n\n1. **Submit a batch** \u2014\
22343
+ \ `POST /v1/jobs` with an array of commands\n2. **Poll for status** \u2014 `GET\
22344
+ \ /v1/jobs/{batch_id}` to check progress counts and `progress_percentage`\n3.\
22345
+ \ **Review results** \u2014 `GET /v1/jobs/{batch_id}/jobs` to see individual job\
22346
+ \ outcomes\n\n### Managing Batches\n\n- **Pause** \u2014 `POST /v1/jobs/{batch_id}/pause`\
22347
+ \ pauses all eligible jobs in the batch\n- **Resume** \u2014 `POST /v1/jobs/{batch_id}/resume`\
22348
+ \ resumes all paused jobs\n- **Cancel** \u2014 `DELETE /v1/jobs/{batch_id}` cancels\
22349
+ \ all pending jobs in the batch\n\nIndividual jobs can also be paused, resumed,\
22350
+ \ or canceled via the `/v1/job/{job_id}` endpoints.\n\n### Limits\n\n- Maximum\
22351
+ \ **50,000 commands** per batch\n- Bulk commands support up to **1,000 instances**\
22352
+ \ per command\n\n### Scheduling\n\nUse `not_before` to schedule batch execution\
22353
+ \ for a future time (UTC timestamp). If not provided, processing begins as soon\
22354
+ \ as a worker is available.\n\n### Idempotency\n\nEach command can include an\
22355
+ \ optional `idempotency_key` to prevent duplicate execution. If a command with\
22356
+ \ the same idempotency key has already been processed, it will be skipped.\n\n\
22357
+ ### Domain Status Updates in Batches\n\nThe `domain_update` and `domain_update_bulk`\
22358
+ \ commands support two mutually exclusive approaches for modifying domain statuses.\
22359
+ \ These work the same way as the `PATCH /v1/domains/{domain_reference}` endpoint\
22360
+ \ \u2014 see the [Domain management](#tag/Domain-management) documentation for\
22361
+ \ full details on `statuses` vs `status_changes`.\n\n#### Using `status_changes`\
22362
+ \ in bulk templates\n\nThe `domain_update_bulk` command is particularly useful\
22363
+ \ with `status_changes` when you need to apply the same relative status change\
22364
+ \ across many domains. Set `status_changes` in the **template** and list the target\
22365
+ \ domains as **instances**. Each instance identifies a domain by either `name`\
22366
+ \ or `domain_id` (but not both):\n\n```json\n{\n \"command\": \"domain_update_bulk\"\
22367
+ ,\n \"payload\": {\n \"template\": {\n \"status_changes\": {\n \
22368
+ \ \"add\": [\"clientTransferProhibited\"]\n }\n },\n \"instances\"\
22369
+ : [\n { \"name\": \"example.com\" },\n { \"name\": \"example.net\" },\n\
22370
+ \ { \"name\": \"example.org\" }\n ]\n }\n}\n```\n\n#### Per-domain overrides\n\
22371
+ \nIf an instance provides its own `statuses` or `status_changes` field, it completely\
22372
+ \ overrides the template's status settings for that domain. This lets you apply\
22373
+ \ a default change to most domains while handling exceptions individually:\n\n\
22374
+ ```json\n{\n \"command\": \"domain_update_bulk\",\n \"payload\": {\n \"template\"\
22375
+ : {\n \"status_changes\": {\n \"add\": [\"clientTransferProhibited\"\
22366
22376
  ]\n }\n },\n \"instances\": [\n { \"name\": \"example.com\" },\n\
22367
- \ { \"name\": \"example.net\" },\n { \"name\": \"example.org\" }\n \
22368
- \ ]\n }\n}\n```\n\n#### Per-domain overrides\n\nIf an instance provides its\
22369
- \ own `statuses` or `status_changes` field, it completely overrides the template's\
22370
- \ status settings for that domain. This lets you apply a default change to most\
22371
- \ domains while handling exceptions individually:\n\n```json\n{\n \"command\"\
22372
- : \"domain_update_bulk\",\n \"payload\": {\n \"template\": {\n \"status_changes\"\
22373
- : {\n \"add\": [\"clientTransferProhibited\"]\n }\n },\n \"\
22374
- instances\": [\n { \"name\": \"example.com\" },\n { \"name\": \"special-case.com\"\
22375
- , \"status_changes\": { \"remove\": [\"clientHold\"] } }\n ]\n }\n}\n```\n"
22377
+ \ { \"name\": \"special-case.com\", \"status_changes\": { \"remove\": [\"\
22378
+ clientHold\"] } }\n ]\n }\n}\n```\n\n### DNS Zone Bulk Commands\n\nThe three\
22379
+ \ `dns_zone_*_bulk` commands operate at different levels of granularity. Picking\
22380
+ \ the right one depends on how much of the zone's existing state you want to preserve.\n\
22381
+ \n| Command | Operates on | Use when |\n|---------|-------------|----------|\n\
22382
+ | `dns_zone_update_bulk` | Whole zone | Resetting rrsets (or zone attributes like\
22383
+ \ DNSSEC) across many zones |\n| `dns_zone_patch_rrsets_bulk` | Whole rrsets by\
22384
+ \ `(name, type)` | Replacing *all* records of a given type at a given name |\n\
22385
+ | `dns_zone_patch_records_bulk` | Individual rdata values | Adding or removing\
22386
+ \ a single record without touching siblings |\n\nThese are the bulk equivalents\
22387
+ \ of the single-zone `PUT` and `PATCH` DNS endpoints \u2014 see the [DNS Management](#tag/DNS-Management)\
22388
+ \ documentation for the underlying semantics. The bulk variants accept up to **100\
22389
+ \ ops per instance** for the two patch commands.\n\n#### `dns_zone_update_bulk`\n\
22390
+ \nBulk equivalent of `PUT /v1/dns/{zone_name}/rrsets` plus zone-level attribute\
22391
+ \ updates. For each zone, whatever rrsets you supply become the zone's rrsets\
22392
+ \ \u2014 anything not listed is removed. System-managed record types (SOA, DNSKEY,\
22393
+ \ DS) cannot be set via this command. This is also the command to flip DNSSEC\
22394
+ \ on or off across many zones.\n\nPayload: `template` (shared `rrsets` and `dnssec_status`)\
22395
+ \ + `instances[]` (per-zone overrides).\n\n```json\n{\n \"command\": \"dns_zone_update_bulk\"\
22396
+ ,\n \"payload\": {\n \"template\": {\n \"rrsets\": [\n {\"name\"\
22397
+ : \"@\", \"type\": \"A\", \"ttl\": 300, \"records\": [{\"rdata\": \"203.0.113.10\"\
22398
+ }]}\n ],\n \"dnssec_status\": \"enabled\"\n },\n \"instances\"\
22399
+ : [\n { \"name\": \"example.com\" },\n {\n \"name\": \"example.net\"\
22400
+ ,\n \"rrsets\": [\n {\"name\": \"@\", \"type\": \"A\", \"ttl\"\
22401
+ : 300, \"records\": [{\"rdata\": \"203.0.113.20\"}]}\n ]\n }\n \
22402
+ \ ]\n }\n}\n```\n\n#### `dns_zone_patch_rrsets_bulk`\n\nBulk equivalent of `PATCH\
22403
+ \ /v1/dns/{zone_name}/rrsets`. Each instance is `{ zone_name, ops[] }`, where\
22404
+ \ each op targets an rrset by `(name, type)`:\n\n- `op: \"upsert\"` \u2014 create\
22405
+ \ or **replace** the rrset with the records you provide. Any prior records for\
22406
+ \ that `(name, type)` are discarded.\n- `op: \"remove\"` \u2014 delete the entire\
22407
+ \ rrset (pass `records: []`).\n\n```json\n{\n \"command\": \"dns_zone_patch_rrsets_bulk\"\
22408
+ ,\n \"payload\": {\n \"instances\": [\n {\n \"zone_name\": \"\
22409
+ example.com\",\n \"ops\": [\n {\n \"op\": \"upsert\"\
22410
+ ,\n \"rrset\": {\n \"name\": \"www\", \"type\": \"A\"\
22411
+ , \"ttl\": 300,\n \"records\": [\n {\"rdata\": \"\
22412
+ 203.0.113.10\"},\n {\"rdata\": \"203.0.113.11\"}\n \
22413
+ \ ]\n }\n },\n {\n \"op\": \"remove\"\
22414
+ ,\n \"rrset\": {\"name\": \"old\", \"type\": \"CNAME\", \"ttl\": 300,\
22415
+ \ \"records\": []}\n }\n ]\n }\n ]\n }\n}\n```\n\n####\
22416
+ \ `dns_zone_patch_records_bulk`\n\nBulk equivalent of `PATCH /v1/dns/{zone_name}/records`.\
22417
+ \ Each instance is `{ zone_name, ops[] }`, where each op targets a single `rdata`\
22418
+ \ value inside an rrset. Note the op payload uses a single `rdata` field, not\
22419
+ \ `records[]`.\n\n- `op: \"upsert\"` \u2014 add or update that one rdata value\
22420
+ \ (creates the rrset if it doesn't exist). Sibling records in the rrset are untouched.\n\
22421
+ - `op: \"remove\"` \u2014 remove just that one rdata value. Other records in the\
22422
+ \ rrset remain.\n\n```json\n{\n \"command\": \"dns_zone_patch_records_bulk\"\
22423
+ ,\n \"payload\": {\n \"instances\": [\n {\n \"zone_name\": \"\
22424
+ example.com\",\n \"ops\": [\n {\n \"op\": \"upsert\"\
22425
+ ,\n \"record\": {\n \"name\": \"@\", \"type\": \"MX\"\
22426
+ , \"ttl\": 300,\n \"rdata\": \"5 new-mail.example.com.\"\n \
22427
+ \ }\n },\n {\n \"op\": \"remove\",\n \
22428
+ \ \"record\": {\n \"name\": \"@\", \"type\": \"MX\", \"ttl\"\
22429
+ : 300,\n \"rdata\": \"10 old-mail.example.com.\"\n }\n\
22430
+ \ }\n ]\n }\n ]\n }\n}\n```\n"
22376
22431
  name: jobs
22377
22432
  x-displayName: Jobs
22378
22433
  - description: 'Endpoints for creating and managing contacts.
@@ -22380,9 +22435,60 @@ tags:
22380
22435
  '
22381
22436
  name: contact
22382
22437
  x-displayName: Contacts
22383
- - description: 'Endpoints for managing DNS records.
22384
-
22385
- '
22438
+ - description: "Endpoints for managing DNS zones and records.\n\n### Zone, RRset,\
22439
+ \ and Record\n\nOpusDNS uses standard DNS terminology, and the distinction matters\
22440
+ \ when choosing which endpoint to call:\n\n- **Zone** \u2014 a DNS zone (e.g.,\
22441
+ \ `example.com`). Contains many rrsets.\n- **RRset (Resource Record Set)** \u2014\
22442
+ \ all records that share the same `(name, type)` tuple within a zone (e.g., the\
22443
+ \ set of all `A` records for `www.example.com`). An rrset is the smallest unit\
22444
+ \ DNS resolvers return in a query response.\n- **Record** \u2014 a single `rdata`\
22445
+ \ value inside an rrset (e.g., `203.0.113.10`). An rrset contains one or more\
22446
+ \ records.\n\nThree different update endpoints let you operate at different levels\
22447
+ \ of granularity:\n\n| Endpoint | Scope | Semantics |\n|----------|-------|-----------|\n\
22448
+ | `PUT /v1/dns/{zone_name}/rrsets` | Whole zone | Replaces all user-managed rrsets\
22449
+ \ in the zone |\n| `PATCH /v1/dns/{zone_name}/rrsets` | RRset-level | Upserts\
22450
+ \ or removes entire rrsets by `(name, type)` |\n| `PATCH /v1/dns/{zone_name}/records`\
22451
+ \ | Record-level | Upserts or removes individual rdata values inside an rrset\
22452
+ \ |\n\n### `PUT /v1/dns/{zone_name}/rrsets` \u2014 Replace all rrsets\n\nSupply\
22453
+ \ the complete set of rrsets the zone should contain. Any existing user-managed\
22454
+ \ rrset **not** in the request is removed. System-managed record types (SOA, DNSKEY,\
22455
+ \ DS) are managed by OpusDNS and cannot be set or removed via this endpoint.\n\
22456
+ \nUse this when you have authoritative, end-state data for a zone and want to\
22457
+ \ reset it to that state.\n\n### `PATCH /v1/dns/{zone_name}/rrsets` \u2014 Upsert\
22458
+ \ or remove whole rrsets\n\nSubmit an `ops[]` array where each op targets an rrset\
22459
+ \ by `(name, type)`:\n\n- `op: \"upsert\"` \u2014 create or **replace** the rrset\
22460
+ \ at `(name, type)` with the records you provide. Any records that previously\
22461
+ \ existed at that `(name, type)` are discarded.\n- `op: \"remove\"` \u2014 delete\
22462
+ \ the entire rrset at `(name, type)` (pass `records: []`).\n\n```json\n{\n \"\
22463
+ ops\": [\n {\n \"op\": \"upsert\",\n \"rrset\": {\n \"name\"\
22464
+ : \"www\",\n \"type\": \"A\",\n \"ttl\": 300,\n \"records\"\
22465
+ : [\n {\"rdata\": \"203.0.113.10\"},\n {\"rdata\": \"203.0.113.11\"\
22466
+ }\n ]\n }\n },\n {\n \"op\": \"remove\",\n \"rrset\"\
22467
+ : {\"name\": \"old\", \"type\": \"CNAME\", \"ttl\": 300, \"records\": []}\n \
22468
+ \ }\n ]\n}\n```\n\nUse this when you want to define the complete set of records\
22469
+ \ for a given `(name, type)` \u2014 e.g., \"`www` should have exactly these two\
22470
+ \ A records\". Any other A records for `www` that currently exist will be removed.\n\
22471
+ \n### `PATCH /v1/dns/{zone_name}/records` \u2014 Upsert or remove individual records\n\
22472
+ \nSubmit an `ops[]` array where each op targets a single `rdata` value inside\
22473
+ \ an rrset. Note the op payload uses a single `rdata` field, not `records[]`.\n\
22474
+ \n- `op: \"upsert\"` \u2014 add or update that one rdata value. The containing\
22475
+ \ rrset is created if it doesn't exist; sibling records in the rrset are left\
22476
+ \ alone.\n- `op: \"remove\"` \u2014 remove just that one rdata value. Other records\
22477
+ \ in the same rrset remain.\n\n```json\n{\n \"ops\": [\n {\n \"op\":\
22478
+ \ \"upsert\",\n \"record\": {\n \"name\": \"@\", \"type\": \"MX\"\
22479
+ , \"ttl\": 300,\n \"rdata\": \"5 new-mail.example.com.\"\n }\n \
22480
+ \ },\n {\n \"op\": \"remove\",\n \"record\": {\n \"name\"\
22481
+ : \"@\", \"type\": \"MX\", \"ttl\": 300,\n \"rdata\": \"10 old-mail.example.com.\"\
22482
+ \n }\n }\n ]\n}\n```\n\nUse this when you need to surgically add or remove\
22483
+ \ an individual record without disturbing sibling records in the same rrset \u2014\
22484
+ \ e.g., \"add one more MX target\", \"rotate one A record IP out of a pool\".\n\
22485
+ \n### Choosing the right endpoint\n\n| Scenario | Endpoint |\n|----------|----------|\n\
22486
+ | Migrating a zone from another provider; want to set it to a known state | `PUT\
22487
+ \ /rrsets` |\n| Replacing *all* records of a given name+type (e.g., the full MX\
22488
+ \ set) | `PATCH /rrsets` with `upsert` |\n| Adding or removing a single record\
22489
+ \ without touching its siblings | `PATCH /records` |\n| Swapping a name from CNAME\
22490
+ \ to A | `PATCH /rrsets` with `remove` + `upsert` |\n\nFor bulk variants that\
22491
+ \ operate across many zones in a single request, see the [Jobs](#tag/Jobs) documentation.\n"
22386
22492
  name: dns
22387
22493
  x-displayName: DNS Management
22388
22494
  - description: "Endpoints for creating and managing domains.\n\n### Domain References\n\
package/src/schema.d.ts CHANGED
@@ -7924,7 +7924,7 @@ export interface components {
7924
7924
  * ReportType
7925
7925
  * @enum {string}
7926
7926
  */
7927
- ReportType: "domain_inventory" | "dns_zone_summary" | "dns_zone_records" | "domain_forwards" | "billing_transactions" | "billing_transactions_monthly";
7927
+ ReportType: "domain_inventory" | "dns_zone_summary" | "dns_zone_records" | "domain_forwards" | "expiring_domains" | "billing_transactions" | "billing_transactions_monthly";
7928
7928
  /** RequestHistory */
7929
7929
  RequestHistory: {
7930
7930
  /**