@opusdns/api 0.217.0 → 0.218.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.217.0",
6
+ "version": "0.218.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -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 GET_Availability_Response_502} - 502 response type
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 | GET_Availability_Response_502;
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
- * 502 response for GET Availability endpoint
462
+ * 500 response for GET Availability endpoint
463
463
  *
464
464
  * @remarks
465
- * This type defines the response structure for the 502 status code
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 GET_Availability_Response_502 = Problem
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 GET_AvailabilityStream_Response_502} - 502 response type
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 | GET_AvailabilityStream_Response_502;
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
- * 502 response for GET AvailabilityStream endpoint
548
+ * 500 response for GET AvailabilityStream endpoint
549
549
  *
550
550
  * @remarks
551
- * This type defines the response structure for the 502 status code
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 GET_AvailabilityStream_Response_502 = Problem
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
@@ -7310,7 +7310,7 @@ info:
7310
7310
  '
7311
7311
  summary: OpusDNS - your gateway to a seamless domain management experience.
7312
7312
  title: OpusDNS API
7313
- version: 2026-03-09-184015
7313
+ version: 2026-03-10-081619
7314
7314
  x-logo:
7315
7315
  altText: OpusDNS API Reference
7316
7316
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -8019,18 +8019,18 @@ paths:
8019
8019
  schema:
8020
8020
  $ref: '#/components/schemas/HTTPValidationError'
8021
8021
  description: Validation Error
8022
- '502':
8022
+ '500':
8023
8023
  content:
8024
8024
  application/problem+json:
8025
8025
  example:
8026
8026
  code: ERROR_AVAILABILITY_PROVIDER
8027
8027
  detail: Additional error context.
8028
- status: 502
8028
+ status: 500
8029
8029
  title: Availability Error
8030
- type: availability-provider
8030
+ type: availability-internal
8031
8031
  schema:
8032
8032
  $ref: '#/components/schemas/Problem'
8033
- description: Bad Gateway
8033
+ description: Internal Server Error
8034
8034
  security:
8035
8035
  - OAuth2PasswordBearer: []
8036
8036
  - APIKeyHeader: []
@@ -8101,18 +8101,18 @@ paths:
8101
8101
  schema:
8102
8102
  $ref: '#/components/schemas/HTTPValidationError'
8103
8103
  description: Validation Error
8104
- '502':
8104
+ '500':
8105
8105
  content:
8106
8106
  application/problem+json:
8107
8107
  example:
8108
8108
  code: ERROR_AVAILABILITY_PROVIDER
8109
8109
  detail: Additional error context.
8110
- status: 502
8110
+ status: 500
8111
8111
  title: Availability Error
8112
- type: availability-provider
8112
+ type: availability-internal
8113
8113
  schema:
8114
8114
  $ref: '#/components/schemas/Problem'
8115
- description: Bad Gateway
8115
+ description: Internal Server Error
8116
8116
  security:
8117
8117
  - OAuth2PasswordBearer: []
8118
8118
  - APIKeyHeader: []
package/src/schema.d.ts CHANGED
@@ -7076,8 +7076,8 @@ export interface operations {
7076
7076
  "application/problem+json": components["schemas"]["HTTPValidationError"];
7077
7077
  };
7078
7078
  };
7079
- /** @description Bad Gateway */
7080
- 502: {
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": 502,
7088
+ * "status": 500,
7089
7089
  * "title": "Availability Error",
7090
- * "type": "availability-provider"
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 Bad Gateway */
7146
- 502: {
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": 502,
7154
+ * "status": 500,
7155
7155
  * "title": "Availability Error",
7156
- * "type": "availability-provider"
7156
+ * "type": "availability-internal"
7157
7157
  * } */
7158
7158
  "application/problem+json": components["schemas"]["Problem"];
7159
7159
  };