@opusdns/api 0.189.0 → 0.191.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.189.0",
6
+ "version": "0.191.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
package/src/openapi.yaml CHANGED
@@ -5648,6 +5648,8 @@ components:
5648
5648
  anyOf:
5649
5649
  - additionalProperties: true
5650
5650
  type: object
5651
+ - items: {}
5652
+ type: array
5651
5653
  - type: 'null'
5652
5654
  description: Request body
5653
5655
  title: Request Body
@@ -5665,6 +5667,8 @@ components:
5665
5667
  anyOf:
5666
5668
  - additionalProperties: true
5667
5669
  type: object
5670
+ - items: {}
5671
+ type: array
5668
5672
  - type: 'null'
5669
5673
  description: Response body
5670
5674
  title: Response Body
@@ -6995,7 +6999,7 @@ info:
6995
6999
  '
6996
7000
  summary: OpusDNS - your gateway to a seamless domain management experience.
6997
7001
  title: OpusDNS API
6998
- version: 2026-02-16-094947
7002
+ version: 2026-02-18-101602
6999
7003
  x-logo:
7000
7004
  altText: OpusDNS API Reference
7001
7005
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -8118,33 +8122,7 @@ paths:
8118
8122
  application/problem+json:
8119
8123
  example:
8120
8124
  code: ERROR_CONTACT_IN_USE
8121
- detail: Contact is linked to one or more domains
8122
- domain_ids:
8123
- - A
8124
- - d
8125
- - d
8126
- - i
8127
- - t
8128
- - i
8129
- - o
8130
- - n
8131
- - a
8132
- - l
8133
- - ' '
8134
- - e
8135
- - r
8136
- - r
8137
- - o
8138
- - r
8139
- - ' '
8140
- - c
8141
- - o
8142
- - n
8143
- - t
8144
- - e
8145
- - x
8146
- - t
8147
- - .
8125
+ detail: Additional error context.
8148
8126
  status: 409
8149
8127
  title: Contact Management Error
8150
8128
  type: contact-in-use
package/src/schema.d.ts CHANGED
@@ -5569,7 +5569,7 @@ export interface components {
5569
5569
  */
5570
5570
  request_body?: {
5571
5571
  [key: string]: unknown;
5572
- } | null;
5572
+ } | unknown[] | null;
5573
5573
  /**
5574
5574
  * Request Completed At
5575
5575
  * Format: date-time
@@ -5588,7 +5588,7 @@ export interface components {
5588
5588
  */
5589
5589
  response_body?: {
5590
5590
  [key: string]: unknown;
5591
- } | null;
5591
+ } | unknown[] | null;
5592
5592
  /**
5593
5593
  * Server Request Id
5594
5594
  * @description Unique ID of the request
@@ -7189,34 +7189,7 @@ export interface operations {
7189
7189
  content: {
7190
7190
  /** @example {
7191
7191
  * "code": "ERROR_CONTACT_IN_USE",
7192
- * "detail": "Contact is linked to one or more domains",
7193
- * "domain_ids": [
7194
- * "A",
7195
- * "d",
7196
- * "d",
7197
- * "i",
7198
- * "t",
7199
- * "i",
7200
- * "o",
7201
- * "n",
7202
- * "a",
7203
- * "l",
7204
- * " ",
7205
- * "e",
7206
- * "r",
7207
- * "r",
7208
- * "o",
7209
- * "r",
7210
- * " ",
7211
- * "c",
7212
- * "o",
7213
- * "n",
7214
- * "t",
7215
- * "e",
7216
- * "x",
7217
- * "t",
7218
- * "."
7219
- * ],
7192
+ * "detail": "Additional error context.",
7220
7193
  * "status": 409,
7221
7194
  * "title": "Contact Management Error",
7222
7195
  * "type": "contact-in-use"