@opusdns/api 1.112.0 → 1.114.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.114.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -629,6 +629,7 @@ export const DOMAIN_ATTRIBUTE_KEY = {
629
629
  NOR_ID_DECLARATION_TOKEN: "nor_id_declaration_token",
630
630
  PUNKTUM_DK_TERMS_ACCEPTANCE: "punktum_dk_terms_acceptance",
631
631
  PUNKTUM_DK_TRACKING_NO: "punktum_dk_tracking_no",
632
+ INTERNET_EE_REGISTRANT_AGREEMENT: "internet_ee_registrant_agreement",
632
633
  PROMOTION: "promotion",
633
634
  PROMOTION_ELIGIBILITY: "promotion_eligibility",
634
635
  } as const satisfies Record<string, DomainAttributeKey>;
@@ -648,6 +649,7 @@ export const DOMAIN_ATTRIBUTE_KEY_VALUES = [
648
649
  'nor_id_declaration_token',
649
650
  'punktum_dk_terms_acceptance',
650
651
  'punktum_dk_tracking_no',
652
+ 'internet_ee_registrant_agreement',
651
653
  'promotion',
652
654
  'promotion_eligibility',
653
655
  ] as const satisfies ReadonlyArray<DomainAttributeKey>;
package/src/openapi.yaml CHANGED
@@ -3642,6 +3642,7 @@ components:
3642
3642
  - nor_id_declaration_token
3643
3643
  - punktum_dk_terms_acceptance
3644
3644
  - punktum_dk_tracking_no
3645
+ - internet_ee_registrant_agreement
3645
3646
  - promotion
3646
3647
  - promotion_eligibility
3647
3648
  title: DomainAttributeKey
@@ -15313,7 +15314,7 @@ info:
15313
15314
  \n\n"
15314
15315
  summary: OpusDNS - your gateway to a seamless domain management experience.
15315
15316
  title: OpusDNS API
15316
- version: 2026-08-13-160906
15317
+ version: 2026-08-14-151943
15317
15318
  x-logo:
15318
15319
  altText: OpusDNS API Reference
15319
15320
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -17668,9 +17669,31 @@ paths:
17668
17669
  '422':
17669
17670
  content:
17670
17671
  application/problem+json:
17672
+ examples:
17673
+ invalid_postal_code:
17674
+ description: The postal code is not valid for the contact's country.
17675
+ Enforced for a specific set of countries; elsewhere the postal
17676
+ code is stored as submitted. A non-ASCII postal code is rejected
17677
+ for every country.
17678
+ summary: Postal code does not match the country
17679
+ value:
17680
+ errors:
17681
+ - ctx:
17682
+ message: '''93053'' is not a valid postal code for country
17683
+ ''NL'', expected a format like ''1234 AB'''
17684
+ input: '93053'
17685
+ loc:
17686
+ - body
17687
+ - postal_code
17688
+ msg: '''93053'' is not a valid postal code for country ''NL'',
17689
+ expected a format like ''1234 AB'''
17690
+ type: invalid_postal_code
17691
+ status: 422
17692
+ title: Request validation error.
17693
+ type: request-validation-failed
17671
17694
  schema:
17672
17695
  $ref: '#/components/schemas/HTTPValidationError'
17673
- description: Validation Error
17696
+ description: Invalid request parameters
17674
17697
  security:
17675
17698
  - OAuth2PasswordBearer: []
17676
17699
  - APIKeyHeader: []
package/src/schema.d.ts CHANGED
@@ -5344,7 +5344,7 @@ export interface components {
5344
5344
  * DomainAttributeKey
5345
5345
  * @enum {string}
5346
5346
  */
5347
- DomainAttributeKey: "auto_renew_period" | "music_registrant_attestation" | "nic_it_compliance_confirmation" | "travel_industry_acknowledgement" | "verification_required" | "de_general_request_contact" | "de_abuse_contact" | "nor_id_applicant_version" | "nor_id_applicant_accept_name" | "nor_id_applicant_accept_date" | "nor_id_declaration" | "nor_id_declaration_token" | "punktum_dk_terms_acceptance" | "punktum_dk_tracking_no" | "promotion" | "promotion_eligibility";
5347
+ DomainAttributeKey: "auto_renew_period" | "music_registrant_attestation" | "nic_it_compliance_confirmation" | "travel_industry_acknowledgement" | "verification_required" | "de_general_request_contact" | "de_abuse_contact" | "nor_id_applicant_version" | "nor_id_applicant_accept_name" | "nor_id_applicant_accept_date" | "nor_id_declaration" | "nor_id_declaration_token" | "punktum_dk_terms_acceptance" | "punktum_dk_tracking_no" | "internet_ee_registrant_agreement" | "promotion" | "promotion_eligibility";
5348
5348
  /** DomainAvailability */
5349
5349
  DomainAvailability: {
5350
5350
  /** Domain */
@@ -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;