@opusdns/api 0.178.0 → 0.179.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 +3 -3
- package/src/schema.d.ts +2 -2
package/package.json
CHANGED
package/src/openapi.yaml
CHANGED
|
@@ -6960,7 +6960,7 @@ info:
|
|
|
6960
6960
|
'
|
|
6961
6961
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
6962
6962
|
title: OpusDNS API
|
|
6963
|
-
version: 2026-01-29-
|
|
6963
|
+
version: 2026-01-29-081753
|
|
6964
6964
|
x-logo:
|
|
6965
6965
|
altText: OpusDNS API Reference
|
|
6966
6966
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -7231,7 +7231,7 @@ paths:
|
|
|
7231
7231
|
required: false
|
|
7232
7232
|
schema:
|
|
7233
7233
|
anyOf:
|
|
7234
|
-
-
|
|
7234
|
+
- $ref: '#/components/schemas/ExecutingEntity'
|
|
7235
7235
|
- type: 'null'
|
|
7236
7236
|
title: Performed By Type
|
|
7237
7237
|
- in: query
|
|
@@ -7365,7 +7365,7 @@ paths:
|
|
|
7365
7365
|
required: false
|
|
7366
7366
|
schema:
|
|
7367
7367
|
anyOf:
|
|
7368
|
-
-
|
|
7368
|
+
- $ref: '#/components/schemas/ExecutingEntity'
|
|
7369
7369
|
- type: 'null'
|
|
7370
7370
|
title: Performed By Type
|
|
7371
7371
|
- in: query
|
package/src/schema.d.ts
CHANGED
|
@@ -6528,7 +6528,7 @@ export interface operations {
|
|
|
6528
6528
|
object_type?: string | null;
|
|
6529
6529
|
action?: components["schemas"]["ObjectEventType"] | null;
|
|
6530
6530
|
server_request_id?: string | null;
|
|
6531
|
-
performed_by_type?:
|
|
6531
|
+
performed_by_type?: components["schemas"]["ExecutingEntity"] | null;
|
|
6532
6532
|
performed_by_id?: string | null;
|
|
6533
6533
|
created_before?: Date | null;
|
|
6534
6534
|
created_after?: Date | null;
|
|
@@ -6571,7 +6571,7 @@ export interface operations {
|
|
|
6571
6571
|
object_type?: string | null;
|
|
6572
6572
|
action?: components["schemas"]["ObjectEventType"] | null;
|
|
6573
6573
|
server_request_id?: string | null;
|
|
6574
|
-
performed_by_type?:
|
|
6574
|
+
performed_by_type?: components["schemas"]["ExecutingEntity"] | null;
|
|
6575
6575
|
performed_by_id?: string | null;
|
|
6576
6576
|
created_before?: Date | null;
|
|
6577
6577
|
created_after?: Date | null;
|