@opusdns/api 0.189.0 → 0.190.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 +1 -1
- package/src/openapi.yaml +5 -1
- package/src/schema.d.ts +2 -2
package/package.json
CHANGED
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-
|
|
7002
|
+
version: 2026-02-16-130939
|
|
6999
7003
|
x-logo:
|
|
7000
7004
|
altText: OpusDNS API Reference
|
|
7001
7005
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
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
|