@opusdns/api 0.288.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 +1 -1
- package/src/helpers/keys.ts +25 -0
- package/src/openapi.yaml +5 -1
- package/src/schema.d.ts +1 -0
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -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
|
|
@@ -10768,7 +10772,7 @@ info:
|
|
|
10768
10772
|
\n\n"
|
|
10769
10773
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
10770
10774
|
title: OpusDNS API
|
|
10771
|
-
version: 2026-05-
|
|
10775
|
+
version: 2026-05-07-222637
|
|
10772
10776
|
x-logo:
|
|
10773
10777
|
altText: OpusDNS API Reference
|
|
10774
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
|