@opusdns/api 1.14.0 → 1.15.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/helpers/responses.d.ts +1 -2
- package/src/openapi.yaml +9 -19
- package/src/schema.d.ts +0 -23
package/package.json
CHANGED
|
@@ -211,10 +211,9 @@ export type DELETE_TagsByTagId_Response_401 = Problem;
|
|
|
211
211
|
export type DELETE_TagsByTagId_Response_404 = Problem;
|
|
212
212
|
export type DELETE_TagsByTagId_Response_422 = HTTPValidationError;
|
|
213
213
|
|
|
214
|
-
export type DELETE_UsersByUserId_Response = DELETE_UsersByUserId_Response_403 |
|
|
214
|
+
export type DELETE_UsersByUserId_Response = DELETE_UsersByUserId_Response_403 | DELETE_UsersByUserId_Response_422;
|
|
215
215
|
|
|
216
216
|
export type DELETE_UsersByUserId_Response_403 = Problem;
|
|
217
|
-
export type DELETE_UsersByUserId_Response_409 = Problem;
|
|
218
217
|
export type DELETE_UsersByUserId_Response_422 = HTTPValidationError;
|
|
219
218
|
|
|
220
219
|
export type GET_AiConciergeContextsByContextId_Response = GET_AiConciergeContextsByContextId_Response_200 | GET_AiConciergeContextsByContextId_Response_401 | GET_AiConciergeContextsByContextId_Response_404 | GET_AiConciergeContextsByContextId_Response_422 | GET_AiConciergeContextsByContextId_Response_502;
|
package/src/openapi.yaml
CHANGED
|
@@ -12142,7 +12142,7 @@ info:
|
|
|
12142
12142
|
\n\n"
|
|
12143
12143
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
12144
12144
|
title: OpusDNS API
|
|
12145
|
-
version: 2026-06-
|
|
12145
|
+
version: 2026-06-15-085110
|
|
12146
12146
|
x-logo:
|
|
12147
12147
|
altText: OpusDNS API Reference
|
|
12148
12148
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -26425,27 +26425,17 @@ paths:
|
|
|
26425
26425
|
'403':
|
|
26426
26426
|
content:
|
|
26427
26427
|
application/problem+json:
|
|
26428
|
-
|
|
26429
|
-
|
|
26430
|
-
|
|
26431
|
-
|
|
26432
|
-
|
|
26433
|
-
|
|
26428
|
+
examples:
|
|
26429
|
+
User Management Error:
|
|
26430
|
+
value:
|
|
26431
|
+
code: ERROR_CANNOT_DELETE_OWNER
|
|
26432
|
+
detail: Additional error context.
|
|
26433
|
+
status: 403
|
|
26434
|
+
title: User Management Error
|
|
26435
|
+
type: cannot-delete-owner
|
|
26434
26436
|
schema:
|
|
26435
26437
|
$ref: '#/components/schemas/Problem'
|
|
26436
26438
|
description: Forbidden
|
|
26437
|
-
'409':
|
|
26438
|
-
content:
|
|
26439
|
-
application/problem+json:
|
|
26440
|
-
example:
|
|
26441
|
-
code: ERROR_USER_IS_LAST_ADMIN
|
|
26442
|
-
detail: User is the last admin for the organization
|
|
26443
|
-
status: 409
|
|
26444
|
-
title: User Management Error
|
|
26445
|
-
type: user-is-last-admin
|
|
26446
|
-
schema:
|
|
26447
|
-
$ref: '#/components/schemas/Problem'
|
|
26448
|
-
description: Conflict
|
|
26449
26439
|
'422':
|
|
26450
26440
|
content:
|
|
26451
26441
|
application/problem+json:
|
package/src/schema.d.ts
CHANGED
|
@@ -21322,29 +21322,6 @@ export interface operations {
|
|
|
21322
21322
|
[name: string]: unknown;
|
|
21323
21323
|
};
|
|
21324
21324
|
content: {
|
|
21325
|
-
/** @example {
|
|
21326
|
-
* "code": "ERROR_USER_CANNOT_DELETE_SELF",
|
|
21327
|
-
* "detail": "Additional error context.",
|
|
21328
|
-
* "status": 403,
|
|
21329
|
-
* "title": "User Management Error",
|
|
21330
|
-
* "type": "user-cannot-delete-self"
|
|
21331
|
-
* } */
|
|
21332
|
-
"application/problem+json": components["schemas"]["Problem"];
|
|
21333
|
-
};
|
|
21334
|
-
};
|
|
21335
|
-
/** @description Conflict */
|
|
21336
|
-
409: {
|
|
21337
|
-
headers: {
|
|
21338
|
-
[name: string]: unknown;
|
|
21339
|
-
};
|
|
21340
|
-
content: {
|
|
21341
|
-
/** @example {
|
|
21342
|
-
* "code": "ERROR_USER_IS_LAST_ADMIN",
|
|
21343
|
-
* "detail": "User is the last admin for the organization",
|
|
21344
|
-
* "status": 409,
|
|
21345
|
-
* "title": "User Management Error",
|
|
21346
|
-
* "type": "user-is-last-admin"
|
|
21347
|
-
* } */
|
|
21348
21325
|
"application/problem+json": components["schemas"]["Problem"];
|
|
21349
21326
|
};
|
|
21350
21327
|
};
|