@opusdns/api 0.217.0 → 0.219.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/constants.ts +4 -0
- package/src/helpers/responses.d.ts +10 -10
- package/src/openapi.yaml +11 -9
- package/src/schema.d.ts +9 -9
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -2019,6 +2019,8 @@ export const EVENT_TYPE = {
|
|
|
2019
2019
|
DELETION: "DELETION",
|
|
2020
2020
|
INBOUND_TRANSFER: "INBOUND_TRANSFER",
|
|
2021
2021
|
OUTBOUND_TRANSFER: "OUTBOUND_TRANSFER",
|
|
2022
|
+
TRANSIT: "TRANSIT",
|
|
2023
|
+
WITHDRAW: "WITHDRAW",
|
|
2022
2024
|
VERIFICATION: "VERIFICATION",
|
|
2023
2025
|
} as const satisfies Record<string, EventType>;
|
|
2024
2026
|
|
|
@@ -2050,6 +2052,8 @@ export const EVENT_TYPE_VALUES = [
|
|
|
2050
2052
|
'DELETION',
|
|
2051
2053
|
'INBOUND_TRANSFER',
|
|
2052
2054
|
'OUTBOUND_TRANSFER',
|
|
2055
|
+
'TRANSIT',
|
|
2056
|
+
'WITHDRAW',
|
|
2053
2057
|
'VERIFICATION'
|
|
2054
2058
|
] as const satisfies [string, ...string[]] | EventType[];
|
|
2055
2059
|
|
|
@@ -392,11 +392,11 @@ Specify one or more domains to check for availability.
|
|
|
392
392
|
* @see {@link GET_Availability_Response_200} - 200 response type
|
|
393
393
|
* @see {@link GET_Availability_Response_401} - 401 response type
|
|
394
394
|
* @see {@link GET_Availability_Response_422} - 422 response type
|
|
395
|
-
* @see {@link
|
|
395
|
+
* @see {@link GET_Availability_Response_500} - 500 response type
|
|
396
396
|
*
|
|
397
397
|
|
|
398
398
|
*/
|
|
399
|
-
export type GET_Availability_Response = GET_Availability_Response_200 | GET_Availability_Response_401 | GET_Availability_Response_422 |
|
|
399
|
+
export type GET_Availability_Response = GET_Availability_Response_200 | GET_Availability_Response_401 | GET_Availability_Response_422 | GET_Availability_Response_500;
|
|
400
400
|
|
|
401
401
|
/**
|
|
402
402
|
* 200 response for GET Availability endpoint
|
|
@@ -459,10 +459,10 @@ Specify one or more domains to check for availability.
|
|
|
459
459
|
export type GET_Availability_Response_422 = HTTPValidationError
|
|
460
460
|
|
|
461
461
|
/**
|
|
462
|
-
*
|
|
462
|
+
* 500 response for GET Availability endpoint
|
|
463
463
|
*
|
|
464
464
|
* @remarks
|
|
465
|
-
* This type defines the response structure for the
|
|
465
|
+
* This type defines the response structure for the 500 status code
|
|
466
466
|
* of the GET Availability endpoint.
|
|
467
467
|
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
468
468
|
*
|
|
@@ -476,7 +476,7 @@ Specify one or more domains to check for availability.
|
|
|
476
476
|
* @see {@link GET_Availability_Response} - The main response type definition
|
|
477
477
|
* @see {@link Problem} - The actual schema type definition
|
|
478
478
|
*/
|
|
479
|
-
export type
|
|
479
|
+
export type GET_Availability_Response_500 = Problem
|
|
480
480
|
|
|
481
481
|
/**
|
|
482
482
|
* Response types for GET AvailabilityStream endpoint
|
|
@@ -498,11 +498,11 @@ Specify one or more domains to check for availability.
|
|
|
498
498
|
*
|
|
499
499
|
* @see {@link GET_AvailabilityStream_Response_401} - 401 response type
|
|
500
500
|
* @see {@link GET_AvailabilityStream_Response_422} - 422 response type
|
|
501
|
-
* @see {@link
|
|
501
|
+
* @see {@link GET_AvailabilityStream_Response_500} - 500 response type
|
|
502
502
|
*
|
|
503
503
|
|
|
504
504
|
*/
|
|
505
|
-
export type GET_AvailabilityStream_Response = GET_AvailabilityStream_Response_401 | GET_AvailabilityStream_Response_422 |
|
|
505
|
+
export type GET_AvailabilityStream_Response = GET_AvailabilityStream_Response_401 | GET_AvailabilityStream_Response_422 | GET_AvailabilityStream_Response_500;
|
|
506
506
|
|
|
507
507
|
/**
|
|
508
508
|
* 401 response for GET AvailabilityStream endpoint
|
|
@@ -545,10 +545,10 @@ Specify one or more domains to check for availability.
|
|
|
545
545
|
export type GET_AvailabilityStream_Response_422 = HTTPValidationError
|
|
546
546
|
|
|
547
547
|
/**
|
|
548
|
-
*
|
|
548
|
+
* 500 response for GET AvailabilityStream endpoint
|
|
549
549
|
*
|
|
550
550
|
* @remarks
|
|
551
|
-
* This type defines the response structure for the
|
|
551
|
+
* This type defines the response structure for the 500 status code
|
|
552
552
|
* of the GET AvailabilityStream endpoint.
|
|
553
553
|
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
554
554
|
*
|
|
@@ -562,7 +562,7 @@ Specify one or more domains to check for availability.
|
|
|
562
562
|
* @see {@link GET_AvailabilityStream_Response} - The main response type definition
|
|
563
563
|
* @see {@link Problem} - The actual schema type definition
|
|
564
564
|
*/
|
|
565
|
-
export type
|
|
565
|
+
export type GET_AvailabilityStream_Response_500 = Problem
|
|
566
566
|
|
|
567
567
|
/**
|
|
568
568
|
* Response types for GET Contacts endpoint
|
package/src/openapi.yaml
CHANGED
|
@@ -3582,6 +3582,8 @@ components:
|
|
|
3582
3582
|
- DELETION
|
|
3583
3583
|
- INBOUND_TRANSFER
|
|
3584
3584
|
- OUTBOUND_TRANSFER
|
|
3585
|
+
- TRANSIT
|
|
3586
|
+
- WITHDRAW
|
|
3585
3587
|
- VERIFICATION
|
|
3586
3588
|
title: EventType
|
|
3587
3589
|
type: string
|
|
@@ -7310,7 +7312,7 @@ info:
|
|
|
7310
7312
|
'
|
|
7311
7313
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
7312
7314
|
title: OpusDNS API
|
|
7313
|
-
version: 2026-03-
|
|
7315
|
+
version: 2026-03-10-150732
|
|
7314
7316
|
x-logo:
|
|
7315
7317
|
altText: OpusDNS API Reference
|
|
7316
7318
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -8019,18 +8021,18 @@ paths:
|
|
|
8019
8021
|
schema:
|
|
8020
8022
|
$ref: '#/components/schemas/HTTPValidationError'
|
|
8021
8023
|
description: Validation Error
|
|
8022
|
-
'
|
|
8024
|
+
'500':
|
|
8023
8025
|
content:
|
|
8024
8026
|
application/problem+json:
|
|
8025
8027
|
example:
|
|
8026
8028
|
code: ERROR_AVAILABILITY_PROVIDER
|
|
8027
8029
|
detail: Additional error context.
|
|
8028
|
-
status:
|
|
8030
|
+
status: 500
|
|
8029
8031
|
title: Availability Error
|
|
8030
|
-
type: availability-
|
|
8032
|
+
type: availability-internal
|
|
8031
8033
|
schema:
|
|
8032
8034
|
$ref: '#/components/schemas/Problem'
|
|
8033
|
-
description:
|
|
8035
|
+
description: Internal Server Error
|
|
8034
8036
|
security:
|
|
8035
8037
|
- OAuth2PasswordBearer: []
|
|
8036
8038
|
- APIKeyHeader: []
|
|
@@ -8101,18 +8103,18 @@ paths:
|
|
|
8101
8103
|
schema:
|
|
8102
8104
|
$ref: '#/components/schemas/HTTPValidationError'
|
|
8103
8105
|
description: Validation Error
|
|
8104
|
-
'
|
|
8106
|
+
'500':
|
|
8105
8107
|
content:
|
|
8106
8108
|
application/problem+json:
|
|
8107
8109
|
example:
|
|
8108
8110
|
code: ERROR_AVAILABILITY_PROVIDER
|
|
8109
8111
|
detail: Additional error context.
|
|
8110
|
-
status:
|
|
8112
|
+
status: 500
|
|
8111
8113
|
title: Availability Error
|
|
8112
|
-
type: availability-
|
|
8114
|
+
type: availability-internal
|
|
8113
8115
|
schema:
|
|
8114
8116
|
$ref: '#/components/schemas/Problem'
|
|
8115
|
-
description:
|
|
8117
|
+
description: Internal Server Error
|
|
8116
8118
|
security:
|
|
8117
8119
|
- OAuth2PasswordBearer: []
|
|
8118
8120
|
- APIKeyHeader: []
|
package/src/schema.d.ts
CHANGED
|
@@ -4339,7 +4339,7 @@ export interface components {
|
|
|
4339
4339
|
* EventType
|
|
4340
4340
|
* @enum {string}
|
|
4341
4341
|
*/
|
|
4342
|
-
EventType: "REGISTRATION" | "RENEWAL" | "MODIFICATION" | "DELETION" | "INBOUND_TRANSFER" | "OUTBOUND_TRANSFER" | "VERIFICATION";
|
|
4342
|
+
EventType: "REGISTRATION" | "RENEWAL" | "MODIFICATION" | "DELETION" | "INBOUND_TRANSFER" | "OUTBOUND_TRANSFER" | "TRANSIT" | "WITHDRAW" | "VERIFICATION";
|
|
4343
4343
|
/**
|
|
4344
4344
|
* ExecutingEntity
|
|
4345
4345
|
* @enum {string}
|
|
@@ -7076,8 +7076,8 @@ export interface operations {
|
|
|
7076
7076
|
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
7077
7077
|
};
|
|
7078
7078
|
};
|
|
7079
|
-
/** @description
|
|
7080
|
-
|
|
7079
|
+
/** @description Internal Server Error */
|
|
7080
|
+
500: {
|
|
7081
7081
|
headers: {
|
|
7082
7082
|
[name: string]: unknown;
|
|
7083
7083
|
};
|
|
@@ -7085,9 +7085,9 @@ export interface operations {
|
|
|
7085
7085
|
/** @example {
|
|
7086
7086
|
* "code": "ERROR_AVAILABILITY_PROVIDER",
|
|
7087
7087
|
* "detail": "Additional error context.",
|
|
7088
|
-
* "status":
|
|
7088
|
+
* "status": 500,
|
|
7089
7089
|
* "title": "Availability Error",
|
|
7090
|
-
* "type": "availability-
|
|
7090
|
+
* "type": "availability-internal"
|
|
7091
7091
|
* } */
|
|
7092
7092
|
"application/problem+json": components["schemas"]["Problem"];
|
|
7093
7093
|
};
|
|
@@ -7142,8 +7142,8 @@ export interface operations {
|
|
|
7142
7142
|
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
7143
7143
|
};
|
|
7144
7144
|
};
|
|
7145
|
-
/** @description
|
|
7146
|
-
|
|
7145
|
+
/** @description Internal Server Error */
|
|
7146
|
+
500: {
|
|
7147
7147
|
headers: {
|
|
7148
7148
|
[name: string]: unknown;
|
|
7149
7149
|
};
|
|
@@ -7151,9 +7151,9 @@ export interface operations {
|
|
|
7151
7151
|
/** @example {
|
|
7152
7152
|
* "code": "ERROR_AVAILABILITY_PROVIDER",
|
|
7153
7153
|
* "detail": "Additional error context.",
|
|
7154
|
-
* "status":
|
|
7154
|
+
* "status": 500,
|
|
7155
7155
|
* "title": "Availability Error",
|
|
7156
|
-
* "type": "availability-
|
|
7156
|
+
* "type": "availability-internal"
|
|
7157
7157
|
* } */
|
|
7158
7158
|
"application/problem+json": components["schemas"]["Problem"];
|
|
7159
7159
|
};
|