@opusdns/api 1.169.0 → 1.170.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": "^1.5.0"
4
4
  },
5
5
  "name": "@opusdns/api",
6
- "version": "1.169.0",
6
+ "version": "1.170.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -394,7 +394,7 @@ export type GET_ContactsByContactIdVerifications_Response = GET_ContactsByContac
394
394
  export type GET_ContactsByContactIdVerifications_Response_200 = ContactAttestRes;
395
395
  export type GET_ContactsByContactIdVerifications_Response_401 = Problem;
396
396
  export type GET_ContactsByContactIdVerifications_Response_404 = Problem;
397
- export type GET_ContactsByContactIdVerifications_Response_422 = HTTPValidationError;
397
+ export type GET_ContactsByContactIdVerifications_Response_422 = Problem;
398
398
  export type GET_ContactsByContactIdVerifications_Response_502 = Problem;
399
399
 
400
400
  export type GET_ContactsVerification_Response = GET_ContactsVerification_Response_200 | GET_ContactsVerification_Response_401 | GET_ContactsVerification_Response_404 | GET_ContactsVerification_Response_422;
@@ -1125,7 +1125,7 @@ export type POST_ContactsByContactIdVerificationsAttest_Response_200 = ContactAt
1125
1125
  export type POST_ContactsByContactIdVerificationsAttest_Response_400 = Problem;
1126
1126
  export type POST_ContactsByContactIdVerificationsAttest_Response_401 = Problem;
1127
1127
  export type POST_ContactsByContactIdVerificationsAttest_Response_404 = Problem;
1128
- export type POST_ContactsByContactIdVerificationsAttest_Response_422 = HTTPValidationError;
1128
+ export type POST_ContactsByContactIdVerificationsAttest_Response_422 = Problem;
1129
1129
  export type POST_ContactsByContactIdVerificationsAttest_Response_502 = Problem;
1130
1130
 
1131
1131
  export type POST_Dns_Response = POST_Dns_Response_400 | POST_Dns_Response_422;
package/src/openapi.yaml CHANGED
@@ -16641,7 +16641,7 @@ info:
16641
16641
  \n\n"
16642
16642
  summary: OpusDNS - your gateway to a seamless domain management experience.
16643
16643
  title: OpusDNS API
16644
- version: 2026-09-10-161526
16644
+ version: 2026-09-11-074214
16645
16645
  x-logo:
16646
16646
  altText: OpusDNS API Reference
16647
16647
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -20083,9 +20083,15 @@ paths:
20083
20083
  '422':
20084
20084
  content:
20085
20085
  application/problem+json:
20086
+ example:
20087
+ code: ERROR_CONTACT_VERIFICATION_VALIDATION
20088
+ detail: Additional error context.
20089
+ status: 422
20090
+ title: Contact Verification Validation Failed
20091
+ type: contact-verification-validation
20086
20092
  schema:
20087
- $ref: '#/components/schemas/HTTPValidationError'
20088
- description: Validation Error
20093
+ $ref: '#/components/schemas/Problem'
20094
+ description: Unprocessable Content
20089
20095
  '502':
20090
20096
  content:
20091
20097
  application/problem+json:
@@ -20180,9 +20186,24 @@ paths:
20180
20186
  '422':
20181
20187
  content:
20182
20188
  application/problem+json:
20189
+ examples:
20190
+ Contact Verification Attestation Validation Failed:
20191
+ value:
20192
+ code: ERROR_CONTACT_VERIFICATION_ATTESTATION_VALIDATION
20193
+ detail: Additional error context.
20194
+ status: 422
20195
+ title: Contact Verification Attestation Validation Failed
20196
+ type: contact-verification-attestation-validation
20197
+ Contact Verification Validation Failed:
20198
+ value:
20199
+ code: ERROR_CONTACT_VERIFICATION_VALIDATION
20200
+ detail: Additional error context.
20201
+ status: 422
20202
+ title: Contact Verification Validation Failed
20203
+ type: contact-verification-validation
20183
20204
  schema:
20184
- $ref: '#/components/schemas/HTTPValidationError'
20185
- description: Validation Error
20205
+ $ref: '#/components/schemas/Problem'
20206
+ description: Unprocessable Content
20186
20207
  '502':
20187
20208
  content:
20188
20209
  application/problem+json:
package/src/schema.d.ts CHANGED
@@ -17217,13 +17217,20 @@ export interface operations {
17217
17217
  "application/problem+json": components["schemas"]["Problem"];
17218
17218
  };
17219
17219
  };
17220
- /** @description Validation Error */
17220
+ /** @description Unprocessable Content */
17221
17221
  422: {
17222
17222
  headers: {
17223
17223
  [name: string]: unknown;
17224
17224
  };
17225
17225
  content: {
17226
- "application/problem+json": components["schemas"]["HTTPValidationError"];
17226
+ /** @example {
17227
+ * "code": "ERROR_CONTACT_VERIFICATION_VALIDATION",
17228
+ * "detail": "Additional error context.",
17229
+ * "status": 422,
17230
+ * "title": "Contact Verification Validation Failed",
17231
+ * "type": "contact-verification-validation"
17232
+ * } */
17233
+ "application/problem+json": components["schemas"]["Problem"];
17227
17234
  };
17228
17235
  };
17229
17236
  /** @description Bad Gateway */
@@ -17324,13 +17331,13 @@ export interface operations {
17324
17331
  "application/problem+json": components["schemas"]["Problem"];
17325
17332
  };
17326
17333
  };
17327
- /** @description Validation Error */
17334
+ /** @description Unprocessable Content */
17328
17335
  422: {
17329
17336
  headers: {
17330
17337
  [name: string]: unknown;
17331
17338
  };
17332
17339
  content: {
17333
- "application/problem+json": components["schemas"]["HTTPValidationError"];
17340
+ "application/problem+json": components["schemas"]["Problem"];
17334
17341
  };
17335
17342
  };
17336
17343
  /** @description Bad Gateway */