@opusdns/api 1.112.0 → 1.113.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.2.0"
4
4
  },
5
5
  "name": "@opusdns/api",
6
- "version": "1.112.0",
6
+ "version": "1.113.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
package/src/openapi.yaml CHANGED
@@ -15313,7 +15313,7 @@ info:
15313
15313
  \n\n"
15314
15314
  summary: OpusDNS - your gateway to a seamless domain management experience.
15315
15315
  title: OpusDNS API
15316
- version: 2026-08-13-160906
15316
+ version: 2026-08-14-000616
15317
15317
  x-logo:
15318
15318
  altText: OpusDNS API Reference
15319
15319
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -17668,9 +17668,31 @@ paths:
17668
17668
  '422':
17669
17669
  content:
17670
17670
  application/problem+json:
17671
+ examples:
17672
+ invalid_postal_code:
17673
+ description: The postal code is not valid for the contact's country.
17674
+ Enforced for a specific set of countries; elsewhere the postal
17675
+ code is stored as submitted. A non-ASCII postal code is rejected
17676
+ for every country.
17677
+ summary: Postal code does not match the country
17678
+ value:
17679
+ errors:
17680
+ - ctx:
17681
+ message: '''93053'' is not a valid postal code for country
17682
+ ''NL'', expected a format like ''1234 AB'''
17683
+ input: '93053'
17684
+ loc:
17685
+ - body
17686
+ - postal_code
17687
+ msg: '''93053'' is not a valid postal code for country ''NL'',
17688
+ expected a format like ''1234 AB'''
17689
+ type: invalid_postal_code
17690
+ status: 422
17691
+ title: Request validation error.
17692
+ type: request-validation-failed
17671
17693
  schema:
17672
17694
  $ref: '#/components/schemas/HTTPValidationError'
17673
- description: Validation Error
17695
+ description: Invalid request parameters
17674
17696
  security:
17675
17697
  - OAuth2PasswordBearer: []
17676
17698
  - APIKeyHeader: []
package/src/schema.d.ts CHANGED
@@ -14982,7 +14982,7 @@ export interface operations {
14982
14982
  "application/json": components["schemas"]["ContactResponse"];
14983
14983
  };
14984
14984
  };
14985
- /** @description Validation Error */
14985
+ /** @description Invalid request parameters */
14986
14986
  422: {
14987
14987
  headers: {
14988
14988
  [name: string]: unknown;