@opusdns/api 0.287.0 → 0.289.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.287.0",
6
+ "version": "0.289.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -4070,6 +4070,8 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE = {
4070
4070
  US_NEXUS_CATEGORY: "US_NEXUS_CATEGORY",
4071
4071
  US_NEXUS_COUNTRY_CODE: "US_NEXUS_COUNTRY_CODE",
4072
4072
  US_APP_PURPOSE: "US_APP_PURPOSE",
4073
+ NIC_IT_ENTITY_TYPE: "NIC_IT_ENTITY_TYPE",
4074
+ NIC_IT_REG_CODE: "NIC_IT_REG_CODE",
4073
4075
  } as const satisfies Record<string, RegistryHandleAttributeType>;
4074
4076
 
4075
4077
  /**
@@ -4128,7 +4130,9 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE_VALUES = [
4128
4130
  'SIDN_LEGAL_REG_NO',
4129
4131
  'US_NEXUS_CATEGORY',
4130
4132
  'US_NEXUS_COUNTRY_CODE',
4131
- 'US_APP_PURPOSE'
4133
+ 'US_APP_PURPOSE',
4134
+ 'NIC_IT_ENTITY_TYPE',
4135
+ 'NIC_IT_REG_CODE'
4132
4136
  ] as const satisfies [string, ...string[]] | RegistryHandleAttributeType[];
4133
4137
 
4134
4138
  /**
@@ -17732,6 +17732,30 @@ export const KEY_DOMAIN_SEARCH_SUGGESTION_WITH_PRICE_PREMIUM: keyof DomainSearch
17732
17732
  * @see {@link KEYS_DOMAIN_SEARCH_SUGGESTION_WITH_PRICE} - Array of all keys for this type
17733
17733
  */
17734
17734
  export const KEY_DOMAIN_SEARCH_SUGGESTION_WITH_PRICE_PRICE: keyof DomainSearchSuggestionWithPrice = 'price';
17735
+ /**
17736
+ * renewal_price property
17737
+ *
17738
+ *
17739
+ *
17740
+ *
17741
+ * @remarks
17742
+ * This key constant provides type-safe access to the `renewal_price` property of DomainSearchSuggestionWithPrice objects.
17743
+ * Use this constant when you need to access properties dynamically or ensure type safety.
17744
+ *
17745
+ * @example
17746
+ * ```typescript
17747
+ * // Direct property access
17748
+ * const value = domainsearchsuggestionwithprice[KEY_DOMAIN_SEARCH_SUGGESTION_WITH_PRICE_RENEWAL_PRICE];
17749
+ *
17750
+ * // Dynamic property access
17751
+ * const propertyName = KEY_DOMAIN_SEARCH_SUGGESTION_WITH_PRICE_RENEWAL_PRICE;
17752
+ * const value = domainsearchsuggestionwithprice[propertyName];
17753
+ * ```
17754
+ *
17755
+ * @see {@link DomainSearchSuggestionWithPrice} - The TypeScript type definition
17756
+ * @see {@link KEYS_DOMAIN_SEARCH_SUGGESTION_WITH_PRICE} - Array of all keys for this type
17757
+ */
17758
+ export const KEY_DOMAIN_SEARCH_SUGGESTION_WITH_PRICE_RENEWAL_PRICE: keyof DomainSearchSuggestionWithPrice = 'renewal_price';
17735
17759
 
17736
17760
  /**
17737
17761
  * Array of all DomainSearchSuggestionWithPrice property keys
@@ -17758,6 +17782,7 @@ export const KEYS_DOMAIN_SEARCH_SUGGESTION_WITH_PRICE = [
17758
17782
  KEY_DOMAIN_SEARCH_SUGGESTION_WITH_PRICE_DOMAIN,
17759
17783
  KEY_DOMAIN_SEARCH_SUGGESTION_WITH_PRICE_PREMIUM,
17760
17784
  KEY_DOMAIN_SEARCH_SUGGESTION_WITH_PRICE_PRICE,
17785
+ KEY_DOMAIN_SEARCH_SUGGESTION_WITH_PRICE_RENEWAL_PRICE,
17761
17786
  ] as const satisfies (keyof DomainSearchSuggestionWithPrice)[];
17762
17787
 
17763
17788
  /**
package/src/openapi.yaml CHANGED
@@ -4161,6 +4161,10 @@ components:
4161
4161
  type: boolean
4162
4162
  price:
4163
4163
  $ref: '#/components/schemas/DomainSearchSuggestionPriceData'
4164
+ renewal_price:
4165
+ anyOf:
4166
+ - $ref: '#/components/schemas/DomainSearchSuggestionPriceData'
4167
+ - type: 'null'
4164
4168
  required:
4165
4169
  - domain
4166
4170
  - available
@@ -9096,6 +9100,8 @@ components:
9096
9100
  - US_NEXUS_CATEGORY
9097
9101
  - US_NEXUS_COUNTRY_CODE
9098
9102
  - US_APP_PURPOSE
9103
+ - NIC_IT_ENTITY_TYPE
9104
+ - NIC_IT_REG_CODE
9099
9105
  title: RegistryHandleAttributeType
9100
9106
  type: string
9101
9107
  RegistryLockBase:
@@ -10766,7 +10772,7 @@ info:
10766
10772
  \n\n"
10767
10773
  summary: OpusDNS - your gateway to a seamless domain management experience.
10768
10774
  title: OpusDNS API
10769
- version: 2026-05-06-134927
10775
+ version: 2026-05-07-222637
10770
10776
  x-logo:
10771
10777
  altText: OpusDNS API Reference
10772
10778
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
package/src/schema.d.ts CHANGED
@@ -5183,6 +5183,7 @@ export interface components {
5183
5183
  /** Premium */
5184
5184
  premium: boolean;
5185
5185
  price: components["schemas"]["DomainSearchSuggestionPriceData"];
5186
+ renewal_price?: components["schemas"]["DomainSearchSuggestionPriceData"] | null;
5186
5187
  };
5187
5188
  /**
5188
5189
  * DomainSortField
@@ -8426,7 +8427,7 @@ export interface components {
8426
8427
  * @description Registry handle attribute types for type-safe attribute key access.
8427
8428
  * @enum {string}
8428
8429
  */
8429
- RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE" | "dnsbe:type" | "eurid:type" | "AFNIC_CONTACT_TYPE" | "AFNIC_PP_FIRST_NAME" | "AFNIC_PM_LEGAL_STATUS" | "AFNIC_PM_SIREN" | "AFNIC_PM_VAT" | "AFNIC_PM_TRADEMARK" | "AFNIC_PM_ASSOC_WALDEC" | "AFNIC_PM_ASSOC_PUBL_DATE" | "AFNIC_PM_ASSOC_PUBL_ANNOUNCE" | "AFNIC_PM_ASSOC_PUBL_PAGE" | "AFNIC_PM_ASSOC_DECL" | "AFNIC_PM_DUNS" | "AFNIC_PM_LOCAL" | "AFNIC_ID_STATUS" | "AFNIC_REACHABLE_MEDIA" | "AFNIC_REACHABLE_STATUS" | "AFNIC_RESTRICTED_PUBLICATION" | "ROTLD_CONTACT_TYPE" | "ROTLD_CNP_FISCAL_CODE" | "ROTLD_ID_NUMBER" | "ROTLD_REGISTRATION_NUMBER" | "ROTLD_DOMAIN_NAME" | "NOMINET_CONTACT_TYPE" | "NOMINET_CO_NO" | "NOMINET_TRAD_NAME" | "CIRA_CPR" | "SIDN_LEGAL_FORM" | "SIDN_LEGAL_REG_NO" | "US_NEXUS_CATEGORY" | "US_NEXUS_COUNTRY_CODE" | "US_APP_PURPOSE";
8430
+ RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE" | "dnsbe:type" | "eurid:type" | "AFNIC_CONTACT_TYPE" | "AFNIC_PP_FIRST_NAME" | "AFNIC_PM_LEGAL_STATUS" | "AFNIC_PM_SIREN" | "AFNIC_PM_VAT" | "AFNIC_PM_TRADEMARK" | "AFNIC_PM_ASSOC_WALDEC" | "AFNIC_PM_ASSOC_PUBL_DATE" | "AFNIC_PM_ASSOC_PUBL_ANNOUNCE" | "AFNIC_PM_ASSOC_PUBL_PAGE" | "AFNIC_PM_ASSOC_DECL" | "AFNIC_PM_DUNS" | "AFNIC_PM_LOCAL" | "AFNIC_ID_STATUS" | "AFNIC_REACHABLE_MEDIA" | "AFNIC_REACHABLE_STATUS" | "AFNIC_RESTRICTED_PUBLICATION" | "ROTLD_CONTACT_TYPE" | "ROTLD_CNP_FISCAL_CODE" | "ROTLD_ID_NUMBER" | "ROTLD_REGISTRATION_NUMBER" | "ROTLD_DOMAIN_NAME" | "NOMINET_CONTACT_TYPE" | "NOMINET_CO_NO" | "NOMINET_TRAD_NAME" | "CIRA_CPR" | "SIDN_LEGAL_FORM" | "SIDN_LEGAL_REG_NO" | "US_NEXUS_CATEGORY" | "US_NEXUS_COUNTRY_CODE" | "US_APP_PURPOSE" | "NIC_IT_ENTITY_TYPE" | "NIC_IT_REG_CODE";
8430
8431
  /** RegistryLockBase */
8431
8432
  RegistryLockBase: {
8432
8433
  /**