@opusdns/api 1.184.0 → 1.186.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/constants.ts +2 -0
- package/src/openapi.yaml +152 -153
- package/src/schema.d.ts +263 -251
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -683,6 +683,7 @@ export const DOMAIN_ATTRIBUTE_KEY = {
|
|
|
683
683
|
PROMOTION: "promotion",
|
|
684
684
|
PROMOTION_ELIGIBILITY: "promotion_eligibility",
|
|
685
685
|
DOMAIN_CONTACT_ATTRIBUTES: "domain_contact_attributes",
|
|
686
|
+
REGISTRY_RESELLER_ID: "registry_reseller_id",
|
|
686
687
|
} as const satisfies Record<string, DomainAttributeKey>;
|
|
687
688
|
|
|
688
689
|
export const DOMAIN_ATTRIBUTE_KEY_VALUES = [
|
|
@@ -704,6 +705,7 @@ export const DOMAIN_ATTRIBUTE_KEY_VALUES = [
|
|
|
704
705
|
'promotion',
|
|
705
706
|
'promotion_eligibility',
|
|
706
707
|
'domain_contact_attributes',
|
|
708
|
+
'registry_reseller_id',
|
|
707
709
|
] as const satisfies ReadonlyArray<DomainAttributeKey>;
|
|
708
710
|
|
|
709
711
|
export const DOMAIN_AVAILABILITY_STATUS = {
|