@opusdns/api 1.34.0 → 1.36.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/README.md +0 -3
- package/package.json +1 -1
- package/src/helpers/constants.ts +0 -13
- package/src/helpers/keys.ts +325 -27
- package/src/helpers/requests.d.ts +0 -3
- package/src/helpers/responses.d.ts +2 -5
- package/src/helpers/schemas.d.ts +24 -3
- package/src/openapi.yaml +716 -48
- package/src/schema.d.ts +380 -26
package/src/openapi.yaml
CHANGED
|
@@ -1912,7 +1912,7 @@ components:
|
|
|
1912
1912
|
title: Update Supported Roles
|
|
1913
1913
|
title: ContactsBase
|
|
1914
1914
|
type: object
|
|
1915
|
-
|
|
1915
|
+
ContactsContext:
|
|
1916
1916
|
properties:
|
|
1917
1917
|
context_id:
|
|
1918
1918
|
examples:
|
|
@@ -1935,7 +1935,10 @@ components:
|
|
|
1935
1935
|
title: Created At
|
|
1936
1936
|
type: string
|
|
1937
1937
|
kind:
|
|
1938
|
-
|
|
1938
|
+
const: contacts
|
|
1939
|
+
default: contacts
|
|
1940
|
+
title: Kind
|
|
1941
|
+
type: string
|
|
1939
1942
|
organization_id:
|
|
1940
1943
|
examples:
|
|
1941
1944
|
- organization_01h45ytscbebyvny4gc8cr8ma2
|
|
@@ -1945,9 +1948,7 @@ components:
|
|
|
1945
1948
|
type: string
|
|
1946
1949
|
x-typeid-prefix: organization
|
|
1947
1950
|
payload:
|
|
1948
|
-
|
|
1949
|
-
title: Payload
|
|
1950
|
-
type: object
|
|
1951
|
+
$ref: '#/components/schemas/ContextPayload_RegistrarContact_'
|
|
1951
1952
|
user_id:
|
|
1952
1953
|
title: User Id
|
|
1953
1954
|
type: string
|
|
@@ -1956,24 +1957,22 @@ components:
|
|
|
1956
1957
|
- conversation_id
|
|
1957
1958
|
- organization_id
|
|
1958
1959
|
- user_id
|
|
1959
|
-
- kind
|
|
1960
1960
|
- created_at
|
|
1961
|
-
|
|
1961
|
+
- payload
|
|
1962
|
+
title: ContactsContext
|
|
1962
1963
|
type: object
|
|
1963
|
-
|
|
1964
|
+
ContactsContextCreate:
|
|
1964
1965
|
properties:
|
|
1965
1966
|
kind:
|
|
1966
|
-
|
|
1967
|
+
const: contacts
|
|
1968
|
+
default: contacts
|
|
1969
|
+
title: Kind
|
|
1970
|
+
type: string
|
|
1967
1971
|
payload:
|
|
1968
|
-
|
|
1969
|
-
description: Non-empty structured payload. Shape depends on `kind`.
|
|
1970
|
-
minProperties: 1
|
|
1971
|
-
title: Payload
|
|
1972
|
-
type: object
|
|
1972
|
+
$ref: '#/components/schemas/ContextPayload_RegistrarContact_'
|
|
1973
1973
|
required:
|
|
1974
|
-
- kind
|
|
1975
1974
|
- payload
|
|
1976
|
-
title:
|
|
1975
|
+
title: ContactsContextCreate
|
|
1977
1976
|
type: object
|
|
1978
1977
|
ContextListResponse:
|
|
1979
1978
|
properties:
|
|
@@ -1981,7 +1980,22 @@ components:
|
|
|
1981
1980
|
$ref: '#/components/schemas/PaginationMetadata'
|
|
1982
1981
|
results:
|
|
1983
1982
|
items:
|
|
1984
|
-
|
|
1983
|
+
discriminator:
|
|
1984
|
+
mapping:
|
|
1985
|
+
contacts: '#/components/schemas/ContactsContext'
|
|
1986
|
+
domain_forwards: '#/components/schemas/DomainForwardsContext'
|
|
1987
|
+
domain_recommendations: '#/components/schemas/DomainRecommendationsContext'
|
|
1988
|
+
domains: '#/components/schemas/DomainsContext'
|
|
1989
|
+
email_forwards: '#/components/schemas/EmailForwardsContext'
|
|
1990
|
+
zones: '#/components/schemas/ZonesContext'
|
|
1991
|
+
propertyName: kind
|
|
1992
|
+
oneOf:
|
|
1993
|
+
- $ref: '#/components/schemas/ZonesContext'
|
|
1994
|
+
- $ref: '#/components/schemas/ContactsContext'
|
|
1995
|
+
- $ref: '#/components/schemas/DomainsContext'
|
|
1996
|
+
- $ref: '#/components/schemas/DomainForwardsContext'
|
|
1997
|
+
- $ref: '#/components/schemas/EmailForwardsContext'
|
|
1998
|
+
- $ref: '#/components/schemas/DomainRecommendationsContext'
|
|
1985
1999
|
title: Results
|
|
1986
2000
|
type: array
|
|
1987
2001
|
required:
|
|
@@ -1989,6 +2003,134 @@ components:
|
|
|
1989
2003
|
- pagination
|
|
1990
2004
|
title: ContextListResponse
|
|
1991
2005
|
type: object
|
|
2006
|
+
ContextMeta:
|
|
2007
|
+
properties:
|
|
2008
|
+
processing_time_ms:
|
|
2009
|
+
anyOf:
|
|
2010
|
+
- type: integer
|
|
2011
|
+
- type: 'null'
|
|
2012
|
+
title: Processing Time Ms
|
|
2013
|
+
total:
|
|
2014
|
+
anyOf:
|
|
2015
|
+
- type: integer
|
|
2016
|
+
- type: 'null'
|
|
2017
|
+
title: Total
|
|
2018
|
+
title: ContextMeta
|
|
2019
|
+
type: object
|
|
2020
|
+
ContextPayload_DomainForward_:
|
|
2021
|
+
properties:
|
|
2022
|
+
meta:
|
|
2023
|
+
anyOf:
|
|
2024
|
+
- $ref: '#/components/schemas/ContextMeta'
|
|
2025
|
+
- type: 'null'
|
|
2026
|
+
pagination:
|
|
2027
|
+
anyOf:
|
|
2028
|
+
- $ref: '#/components/schemas/PaginationMetadata'
|
|
2029
|
+
- type: 'null'
|
|
2030
|
+
results:
|
|
2031
|
+
items:
|
|
2032
|
+
$ref: '#/components/schemas/DomainForward'
|
|
2033
|
+
title: Results
|
|
2034
|
+
type: array
|
|
2035
|
+
required:
|
|
2036
|
+
- results
|
|
2037
|
+
title: ContextPayload[DomainForward]
|
|
2038
|
+
type: object
|
|
2039
|
+
ContextPayload_DomainSearchSuggestionWithPrice_:
|
|
2040
|
+
properties:
|
|
2041
|
+
meta:
|
|
2042
|
+
anyOf:
|
|
2043
|
+
- $ref: '#/components/schemas/ContextMeta'
|
|
2044
|
+
- type: 'null'
|
|
2045
|
+
pagination:
|
|
2046
|
+
anyOf:
|
|
2047
|
+
- $ref: '#/components/schemas/PaginationMetadata'
|
|
2048
|
+
- type: 'null'
|
|
2049
|
+
results:
|
|
2050
|
+
items:
|
|
2051
|
+
$ref: '#/components/schemas/DomainSearchSuggestionWithPrice'
|
|
2052
|
+
title: Results
|
|
2053
|
+
type: array
|
|
2054
|
+
required:
|
|
2055
|
+
- results
|
|
2056
|
+
title: ContextPayload[DomainSearchSuggestionWithPrice]
|
|
2057
|
+
type: object
|
|
2058
|
+
ContextPayload_EmailForwardResponse_:
|
|
2059
|
+
properties:
|
|
2060
|
+
meta:
|
|
2061
|
+
anyOf:
|
|
2062
|
+
- $ref: '#/components/schemas/ContextMeta'
|
|
2063
|
+
- type: 'null'
|
|
2064
|
+
pagination:
|
|
2065
|
+
anyOf:
|
|
2066
|
+
- $ref: '#/components/schemas/PaginationMetadata'
|
|
2067
|
+
- type: 'null'
|
|
2068
|
+
results:
|
|
2069
|
+
items:
|
|
2070
|
+
$ref: '#/components/schemas/EmailForwardResponse'
|
|
2071
|
+
title: Results
|
|
2072
|
+
type: array
|
|
2073
|
+
required:
|
|
2074
|
+
- results
|
|
2075
|
+
title: ContextPayload[EmailForwardResponse]
|
|
2076
|
+
type: object
|
|
2077
|
+
ContextPayload_RegistrarContact_:
|
|
2078
|
+
properties:
|
|
2079
|
+
meta:
|
|
2080
|
+
anyOf:
|
|
2081
|
+
- $ref: '#/components/schemas/ContextMeta'
|
|
2082
|
+
- type: 'null'
|
|
2083
|
+
pagination:
|
|
2084
|
+
anyOf:
|
|
2085
|
+
- $ref: '#/components/schemas/PaginationMetadata'
|
|
2086
|
+
- type: 'null'
|
|
2087
|
+
results:
|
|
2088
|
+
items:
|
|
2089
|
+
$ref: '#/components/schemas/RegistrarContact'
|
|
2090
|
+
title: Results
|
|
2091
|
+
type: array
|
|
2092
|
+
required:
|
|
2093
|
+
- results
|
|
2094
|
+
title: ContextPayload[RegistrarContact]
|
|
2095
|
+
type: object
|
|
2096
|
+
ContextPayload_RegistrarDomain_:
|
|
2097
|
+
properties:
|
|
2098
|
+
meta:
|
|
2099
|
+
anyOf:
|
|
2100
|
+
- $ref: '#/components/schemas/ContextMeta'
|
|
2101
|
+
- type: 'null'
|
|
2102
|
+
pagination:
|
|
2103
|
+
anyOf:
|
|
2104
|
+
- $ref: '#/components/schemas/PaginationMetadata'
|
|
2105
|
+
- type: 'null'
|
|
2106
|
+
results:
|
|
2107
|
+
items:
|
|
2108
|
+
$ref: '#/components/schemas/RegistrarDomain'
|
|
2109
|
+
title: Results
|
|
2110
|
+
type: array
|
|
2111
|
+
required:
|
|
2112
|
+
- results
|
|
2113
|
+
title: ContextPayload[RegistrarDomain]
|
|
2114
|
+
type: object
|
|
2115
|
+
ContextPayload_RegistrarZone_:
|
|
2116
|
+
properties:
|
|
2117
|
+
meta:
|
|
2118
|
+
anyOf:
|
|
2119
|
+
- $ref: '#/components/schemas/ContextMeta'
|
|
2120
|
+
- type: 'null'
|
|
2121
|
+
pagination:
|
|
2122
|
+
anyOf:
|
|
2123
|
+
- $ref: '#/components/schemas/PaginationMetadata'
|
|
2124
|
+
- type: 'null'
|
|
2125
|
+
results:
|
|
2126
|
+
items:
|
|
2127
|
+
$ref: '#/components/schemas/RegistrarZone'
|
|
2128
|
+
title: Results
|
|
2129
|
+
type: array
|
|
2130
|
+
required:
|
|
2131
|
+
- results
|
|
2132
|
+
title: ContextPayload[RegistrarZone]
|
|
2133
|
+
type: object
|
|
1992
2134
|
Conversation:
|
|
1993
2135
|
properties:
|
|
1994
2136
|
conversation_id:
|
|
@@ -4037,7 +4179,6 @@ components:
|
|
|
4037
4179
|
- enabled
|
|
4038
4180
|
- updated_on
|
|
4039
4181
|
- created_on
|
|
4040
|
-
- parking_id
|
|
4041
4182
|
title: DomainForward
|
|
4042
4183
|
type: object
|
|
4043
4184
|
DomainForwardBrowserStatsResponse:
|
|
@@ -4648,6 +4789,68 @@ components:
|
|
|
4648
4789
|
- updated_on
|
|
4649
4790
|
title: DomainForwardZoneSortField
|
|
4650
4791
|
type: string
|
|
4792
|
+
DomainForwardsContext:
|
|
4793
|
+
properties:
|
|
4794
|
+
context_id:
|
|
4795
|
+
examples:
|
|
4796
|
+
- ctx_01h45ytscbebyvny4gc8cr8ma2
|
|
4797
|
+
format: typeid
|
|
4798
|
+
pattern: ^ctx_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
4799
|
+
title: Context Id
|
|
4800
|
+
type: string
|
|
4801
|
+
x-typeid-prefix: ctx
|
|
4802
|
+
conversation_id:
|
|
4803
|
+
examples:
|
|
4804
|
+
- conv_01h45ytscbebyvny4gc8cr8ma2
|
|
4805
|
+
format: typeid
|
|
4806
|
+
pattern: ^conv_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
4807
|
+
title: Conversation Id
|
|
4808
|
+
type: string
|
|
4809
|
+
x-typeid-prefix: conv
|
|
4810
|
+
created_at:
|
|
4811
|
+
format: date-time
|
|
4812
|
+
title: Created At
|
|
4813
|
+
type: string
|
|
4814
|
+
kind:
|
|
4815
|
+
const: domain_forwards
|
|
4816
|
+
default: domain_forwards
|
|
4817
|
+
title: Kind
|
|
4818
|
+
type: string
|
|
4819
|
+
organization_id:
|
|
4820
|
+
examples:
|
|
4821
|
+
- organization_01h45ytscbebyvny4gc8cr8ma2
|
|
4822
|
+
format: typeid
|
|
4823
|
+
pattern: ^organization_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
4824
|
+
title: Organization Id
|
|
4825
|
+
type: string
|
|
4826
|
+
x-typeid-prefix: organization
|
|
4827
|
+
payload:
|
|
4828
|
+
$ref: '#/components/schemas/ContextPayload_DomainForward_'
|
|
4829
|
+
user_id:
|
|
4830
|
+
title: User Id
|
|
4831
|
+
type: string
|
|
4832
|
+
required:
|
|
4833
|
+
- context_id
|
|
4834
|
+
- conversation_id
|
|
4835
|
+
- organization_id
|
|
4836
|
+
- user_id
|
|
4837
|
+
- created_at
|
|
4838
|
+
- payload
|
|
4839
|
+
title: DomainForwardsContext
|
|
4840
|
+
type: object
|
|
4841
|
+
DomainForwardsContextCreate:
|
|
4842
|
+
properties:
|
|
4843
|
+
kind:
|
|
4844
|
+
const: domain_forwards
|
|
4845
|
+
default: domain_forwards
|
|
4846
|
+
title: Kind
|
|
4847
|
+
type: string
|
|
4848
|
+
payload:
|
|
4849
|
+
$ref: '#/components/schemas/ContextPayload_DomainForward_'
|
|
4850
|
+
required:
|
|
4851
|
+
- payload
|
|
4852
|
+
title: DomainForwardsContextCreate
|
|
4853
|
+
type: object
|
|
4651
4854
|
DomainHostResponse:
|
|
4652
4855
|
properties:
|
|
4653
4856
|
host_id:
|
|
@@ -4831,6 +5034,68 @@ components:
|
|
|
4831
5034
|
- unit
|
|
4832
5035
|
title: DomainPeriod
|
|
4833
5036
|
type: object
|
|
5037
|
+
DomainRecommendationsContext:
|
|
5038
|
+
properties:
|
|
5039
|
+
context_id:
|
|
5040
|
+
examples:
|
|
5041
|
+
- ctx_01h45ytscbebyvny4gc8cr8ma2
|
|
5042
|
+
format: typeid
|
|
5043
|
+
pattern: ^ctx_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
5044
|
+
title: Context Id
|
|
5045
|
+
type: string
|
|
5046
|
+
x-typeid-prefix: ctx
|
|
5047
|
+
conversation_id:
|
|
5048
|
+
examples:
|
|
5049
|
+
- conv_01h45ytscbebyvny4gc8cr8ma2
|
|
5050
|
+
format: typeid
|
|
5051
|
+
pattern: ^conv_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
5052
|
+
title: Conversation Id
|
|
5053
|
+
type: string
|
|
5054
|
+
x-typeid-prefix: conv
|
|
5055
|
+
created_at:
|
|
5056
|
+
format: date-time
|
|
5057
|
+
title: Created At
|
|
5058
|
+
type: string
|
|
5059
|
+
kind:
|
|
5060
|
+
const: domain_recommendations
|
|
5061
|
+
default: domain_recommendations
|
|
5062
|
+
title: Kind
|
|
5063
|
+
type: string
|
|
5064
|
+
organization_id:
|
|
5065
|
+
examples:
|
|
5066
|
+
- organization_01h45ytscbebyvny4gc8cr8ma2
|
|
5067
|
+
format: typeid
|
|
5068
|
+
pattern: ^organization_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
5069
|
+
title: Organization Id
|
|
5070
|
+
type: string
|
|
5071
|
+
x-typeid-prefix: organization
|
|
5072
|
+
payload:
|
|
5073
|
+
$ref: '#/components/schemas/ContextPayload_DomainSearchSuggestionWithPrice_'
|
|
5074
|
+
user_id:
|
|
5075
|
+
title: User Id
|
|
5076
|
+
type: string
|
|
5077
|
+
required:
|
|
5078
|
+
- context_id
|
|
5079
|
+
- conversation_id
|
|
5080
|
+
- organization_id
|
|
5081
|
+
- user_id
|
|
5082
|
+
- created_at
|
|
5083
|
+
- payload
|
|
5084
|
+
title: DomainRecommendationsContext
|
|
5085
|
+
type: object
|
|
5086
|
+
DomainRecommendationsContextCreate:
|
|
5087
|
+
properties:
|
|
5088
|
+
kind:
|
|
5089
|
+
const: domain_recommendations
|
|
5090
|
+
default: domain_recommendations
|
|
5091
|
+
title: Kind
|
|
5092
|
+
type: string
|
|
5093
|
+
payload:
|
|
5094
|
+
$ref: '#/components/schemas/ContextPayload_DomainSearchSuggestionWithPrice_'
|
|
5095
|
+
required:
|
|
5096
|
+
- payload
|
|
5097
|
+
title: DomainRecommendationsContextCreate
|
|
5098
|
+
type: object
|
|
4834
5099
|
DomainRenewRequest:
|
|
4835
5100
|
properties:
|
|
4836
5101
|
current_expiry_date:
|
|
@@ -6031,6 +6296,68 @@ components:
|
|
|
6031
6296
|
- success
|
|
6032
6297
|
title: DomainWithdrawResponse
|
|
6033
6298
|
type: object
|
|
6299
|
+
DomainsContext:
|
|
6300
|
+
properties:
|
|
6301
|
+
context_id:
|
|
6302
|
+
examples:
|
|
6303
|
+
- ctx_01h45ytscbebyvny4gc8cr8ma2
|
|
6304
|
+
format: typeid
|
|
6305
|
+
pattern: ^ctx_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
6306
|
+
title: Context Id
|
|
6307
|
+
type: string
|
|
6308
|
+
x-typeid-prefix: ctx
|
|
6309
|
+
conversation_id:
|
|
6310
|
+
examples:
|
|
6311
|
+
- conv_01h45ytscbebyvny4gc8cr8ma2
|
|
6312
|
+
format: typeid
|
|
6313
|
+
pattern: ^conv_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
6314
|
+
title: Conversation Id
|
|
6315
|
+
type: string
|
|
6316
|
+
x-typeid-prefix: conv
|
|
6317
|
+
created_at:
|
|
6318
|
+
format: date-time
|
|
6319
|
+
title: Created At
|
|
6320
|
+
type: string
|
|
6321
|
+
kind:
|
|
6322
|
+
const: domains
|
|
6323
|
+
default: domains
|
|
6324
|
+
title: Kind
|
|
6325
|
+
type: string
|
|
6326
|
+
organization_id:
|
|
6327
|
+
examples:
|
|
6328
|
+
- organization_01h45ytscbebyvny4gc8cr8ma2
|
|
6329
|
+
format: typeid
|
|
6330
|
+
pattern: ^organization_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
6331
|
+
title: Organization Id
|
|
6332
|
+
type: string
|
|
6333
|
+
x-typeid-prefix: organization
|
|
6334
|
+
payload:
|
|
6335
|
+
$ref: '#/components/schemas/ContextPayload_RegistrarDomain_'
|
|
6336
|
+
user_id:
|
|
6337
|
+
title: User Id
|
|
6338
|
+
type: string
|
|
6339
|
+
required:
|
|
6340
|
+
- context_id
|
|
6341
|
+
- conversation_id
|
|
6342
|
+
- organization_id
|
|
6343
|
+
- user_id
|
|
6344
|
+
- created_at
|
|
6345
|
+
- payload
|
|
6346
|
+
title: DomainsContext
|
|
6347
|
+
type: object
|
|
6348
|
+
DomainsContextCreate:
|
|
6349
|
+
properties:
|
|
6350
|
+
kind:
|
|
6351
|
+
const: domains
|
|
6352
|
+
default: domains
|
|
6353
|
+
title: Kind
|
|
6354
|
+
type: string
|
|
6355
|
+
payload:
|
|
6356
|
+
$ref: '#/components/schemas/ContextPayload_RegistrarDomain_'
|
|
6357
|
+
required:
|
|
6358
|
+
- payload
|
|
6359
|
+
title: DomainsContextCreate
|
|
6360
|
+
type: object
|
|
6034
6361
|
DomainsExpiringSoon:
|
|
6035
6362
|
properties:
|
|
6036
6363
|
next_30_days:
|
|
@@ -6864,28 +7191,90 @@ components:
|
|
|
6864
7191
|
type: array
|
|
6865
7192
|
zone_id:
|
|
6866
7193
|
examples:
|
|
6867
|
-
- zone_01h45ytscbebyvny4gc8cr8ma2
|
|
7194
|
+
- zone_01h45ytscbebyvny4gc8cr8ma2
|
|
7195
|
+
format: typeid
|
|
7196
|
+
pattern: ^zone_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
7197
|
+
title: Zone Id
|
|
7198
|
+
type: string
|
|
7199
|
+
x-typeid-prefix: zone
|
|
7200
|
+
zone_name:
|
|
7201
|
+
title: Zone Name
|
|
7202
|
+
type: string
|
|
7203
|
+
required:
|
|
7204
|
+
- zone_id
|
|
7205
|
+
- zone_name
|
|
7206
|
+
- email_forwards
|
|
7207
|
+
title: EmailForwardZone
|
|
7208
|
+
type: object
|
|
7209
|
+
EmailForwardZoneSortField:
|
|
7210
|
+
enum:
|
|
7211
|
+
- name
|
|
7212
|
+
- created_on
|
|
7213
|
+
- updated_on
|
|
7214
|
+
title: EmailForwardZoneSortField
|
|
7215
|
+
type: string
|
|
7216
|
+
EmailForwardsContext:
|
|
7217
|
+
properties:
|
|
7218
|
+
context_id:
|
|
7219
|
+
examples:
|
|
7220
|
+
- ctx_01h45ytscbebyvny4gc8cr8ma2
|
|
7221
|
+
format: typeid
|
|
7222
|
+
pattern: ^ctx_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
7223
|
+
title: Context Id
|
|
7224
|
+
type: string
|
|
7225
|
+
x-typeid-prefix: ctx
|
|
7226
|
+
conversation_id:
|
|
7227
|
+
examples:
|
|
7228
|
+
- conv_01h45ytscbebyvny4gc8cr8ma2
|
|
7229
|
+
format: typeid
|
|
7230
|
+
pattern: ^conv_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
7231
|
+
title: Conversation Id
|
|
7232
|
+
type: string
|
|
7233
|
+
x-typeid-prefix: conv
|
|
7234
|
+
created_at:
|
|
7235
|
+
format: date-time
|
|
7236
|
+
title: Created At
|
|
7237
|
+
type: string
|
|
7238
|
+
kind:
|
|
7239
|
+
const: email_forwards
|
|
7240
|
+
default: email_forwards
|
|
7241
|
+
title: Kind
|
|
7242
|
+
type: string
|
|
7243
|
+
organization_id:
|
|
7244
|
+
examples:
|
|
7245
|
+
- organization_01h45ytscbebyvny4gc8cr8ma2
|
|
6868
7246
|
format: typeid
|
|
6869
|
-
pattern: ^
|
|
6870
|
-
title:
|
|
7247
|
+
pattern: ^organization_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
7248
|
+
title: Organization Id
|
|
6871
7249
|
type: string
|
|
6872
|
-
x-typeid-prefix:
|
|
6873
|
-
|
|
6874
|
-
|
|
7250
|
+
x-typeid-prefix: organization
|
|
7251
|
+
payload:
|
|
7252
|
+
$ref: '#/components/schemas/ContextPayload_EmailForwardResponse_'
|
|
7253
|
+
user_id:
|
|
7254
|
+
title: User Id
|
|
6875
7255
|
type: string
|
|
6876
7256
|
required:
|
|
6877
|
-
-
|
|
6878
|
-
-
|
|
6879
|
-
-
|
|
6880
|
-
|
|
7257
|
+
- context_id
|
|
7258
|
+
- conversation_id
|
|
7259
|
+
- organization_id
|
|
7260
|
+
- user_id
|
|
7261
|
+
- created_at
|
|
7262
|
+
- payload
|
|
7263
|
+
title: EmailForwardsContext
|
|
7264
|
+
type: object
|
|
7265
|
+
EmailForwardsContextCreate:
|
|
7266
|
+
properties:
|
|
7267
|
+
kind:
|
|
7268
|
+
const: email_forwards
|
|
7269
|
+
default: email_forwards
|
|
7270
|
+
title: Kind
|
|
7271
|
+
type: string
|
|
7272
|
+
payload:
|
|
7273
|
+
$ref: '#/components/schemas/ContextPayload_EmailForwardResponse_'
|
|
7274
|
+
required:
|
|
7275
|
+
- payload
|
|
7276
|
+
title: EmailForwardsContextCreate
|
|
6881
7277
|
type: object
|
|
6882
|
-
EmailForwardZoneSortField:
|
|
6883
|
-
enum:
|
|
6884
|
-
- name
|
|
6885
|
-
- created_on
|
|
6886
|
-
- updated_on
|
|
6887
|
-
title: EmailForwardZoneSortField
|
|
6888
|
-
type: string
|
|
6889
7278
|
EmailVerificationStatus:
|
|
6890
7279
|
enum:
|
|
6891
7280
|
- verified
|
|
@@ -8466,13 +8855,6 @@ components:
|
|
|
8466
8855
|
- created_at
|
|
8467
8856
|
title: Message
|
|
8468
8857
|
type: object
|
|
8469
|
-
MessageContextKind:
|
|
8470
|
-
enum:
|
|
8471
|
-
- zones
|
|
8472
|
-
- contacts
|
|
8473
|
-
- domains
|
|
8474
|
-
title: MessageContextKind
|
|
8475
|
-
type: string
|
|
8476
8858
|
MessageCreateRequest:
|
|
8477
8859
|
properties:
|
|
8478
8860
|
content:
|
|
@@ -10915,6 +11297,175 @@ components:
|
|
|
10915
11297
|
- trade
|
|
10916
11298
|
title: RegistrantChangeType
|
|
10917
11299
|
type: string
|
|
11300
|
+
RegistrarContact:
|
|
11301
|
+
properties:
|
|
11302
|
+
city:
|
|
11303
|
+
anyOf:
|
|
11304
|
+
- type: string
|
|
11305
|
+
- type: 'null'
|
|
11306
|
+
title: City
|
|
11307
|
+
country:
|
|
11308
|
+
anyOf:
|
|
11309
|
+
- type: string
|
|
11310
|
+
- type: 'null'
|
|
11311
|
+
title: Country
|
|
11312
|
+
email:
|
|
11313
|
+
anyOf:
|
|
11314
|
+
- type: string
|
|
11315
|
+
- type: 'null'
|
|
11316
|
+
title: Email
|
|
11317
|
+
fax:
|
|
11318
|
+
anyOf:
|
|
11319
|
+
- type: string
|
|
11320
|
+
- type: 'null'
|
|
11321
|
+
title: Fax
|
|
11322
|
+
first_name:
|
|
11323
|
+
anyOf:
|
|
11324
|
+
- type: string
|
|
11325
|
+
- type: 'null'
|
|
11326
|
+
title: First Name
|
|
11327
|
+
id:
|
|
11328
|
+
anyOf:
|
|
11329
|
+
- type: string
|
|
11330
|
+
- type: 'null'
|
|
11331
|
+
description: Contact ID (required for OpusDNS-native contacts, may be null
|
|
11332
|
+
for registrar-sourced)
|
|
11333
|
+
title: Id
|
|
11334
|
+
last_name:
|
|
11335
|
+
anyOf:
|
|
11336
|
+
- type: string
|
|
11337
|
+
- type: 'null'
|
|
11338
|
+
title: Last Name
|
|
11339
|
+
org:
|
|
11340
|
+
anyOf:
|
|
11341
|
+
- type: string
|
|
11342
|
+
- type: 'null'
|
|
11343
|
+
title: Org
|
|
11344
|
+
phone:
|
|
11345
|
+
anyOf:
|
|
11346
|
+
- type: string
|
|
11347
|
+
- type: 'null'
|
|
11348
|
+
title: Phone
|
|
11349
|
+
postal_code:
|
|
11350
|
+
anyOf:
|
|
11351
|
+
- type: string
|
|
11352
|
+
- type: 'null'
|
|
11353
|
+
title: Postal Code
|
|
11354
|
+
state:
|
|
11355
|
+
anyOf:
|
|
11356
|
+
- type: string
|
|
11357
|
+
- type: 'null'
|
|
11358
|
+
title: State
|
|
11359
|
+
street:
|
|
11360
|
+
anyOf:
|
|
11361
|
+
- type: string
|
|
11362
|
+
- type: 'null'
|
|
11363
|
+
title: Street
|
|
11364
|
+
title:
|
|
11365
|
+
anyOf:
|
|
11366
|
+
- type: string
|
|
11367
|
+
- type: 'null'
|
|
11368
|
+
title: Title
|
|
11369
|
+
title: RegistrarContact
|
|
11370
|
+
type: object
|
|
11371
|
+
RegistrarDomain:
|
|
11372
|
+
properties:
|
|
11373
|
+
contacts:
|
|
11374
|
+
additionalProperties:
|
|
11375
|
+
$ref: '#/components/schemas/RegistrarContact'
|
|
11376
|
+
default: {}
|
|
11377
|
+
title: Contacts
|
|
11378
|
+
type: object
|
|
11379
|
+
contacts_dedup:
|
|
11380
|
+
default: []
|
|
11381
|
+
items:
|
|
11382
|
+
$ref: '#/components/schemas/RegistrarContact'
|
|
11383
|
+
title: Contacts Dedup
|
|
11384
|
+
type: array
|
|
11385
|
+
expiry_date:
|
|
11386
|
+
anyOf:
|
|
11387
|
+
- type: string
|
|
11388
|
+
- type: 'null'
|
|
11389
|
+
title: Expiry Date
|
|
11390
|
+
name:
|
|
11391
|
+
title: Name
|
|
11392
|
+
type: string
|
|
11393
|
+
nameservers:
|
|
11394
|
+
default: []
|
|
11395
|
+
items:
|
|
11396
|
+
type: string
|
|
11397
|
+
title: Nameservers
|
|
11398
|
+
type: array
|
|
11399
|
+
registrar:
|
|
11400
|
+
title: Registrar
|
|
11401
|
+
type: string
|
|
11402
|
+
statuses:
|
|
11403
|
+
default: []
|
|
11404
|
+
items:
|
|
11405
|
+
type: string
|
|
11406
|
+
title: Statuses
|
|
11407
|
+
type: array
|
|
11408
|
+
zone:
|
|
11409
|
+
anyOf:
|
|
11410
|
+
- $ref: '#/components/schemas/RegistrarZone'
|
|
11411
|
+
- type: 'null'
|
|
11412
|
+
required:
|
|
11413
|
+
- name
|
|
11414
|
+
- registrar
|
|
11415
|
+
title: RegistrarDomain
|
|
11416
|
+
type: object
|
|
11417
|
+
RegistrarRRSet:
|
|
11418
|
+
properties:
|
|
11419
|
+
name:
|
|
11420
|
+
title: Name
|
|
11421
|
+
type: string
|
|
11422
|
+
priority:
|
|
11423
|
+
anyOf:
|
|
11424
|
+
- type: integer
|
|
11425
|
+
- type: 'null'
|
|
11426
|
+
title: Priority
|
|
11427
|
+
record:
|
|
11428
|
+
default: []
|
|
11429
|
+
items:
|
|
11430
|
+
$ref: '#/components/schemas/RegistrarRecord'
|
|
11431
|
+
title: Record
|
|
11432
|
+
type: array
|
|
11433
|
+
ttl:
|
|
11434
|
+
title: Ttl
|
|
11435
|
+
type: integer
|
|
11436
|
+
type:
|
|
11437
|
+
title: Type
|
|
11438
|
+
type: string
|
|
11439
|
+
required:
|
|
11440
|
+
- name
|
|
11441
|
+
- ttl
|
|
11442
|
+
- type
|
|
11443
|
+
title: RegistrarRRSet
|
|
11444
|
+
type: object
|
|
11445
|
+
RegistrarRecord:
|
|
11446
|
+
properties:
|
|
11447
|
+
rdata:
|
|
11448
|
+
title: Rdata
|
|
11449
|
+
type: string
|
|
11450
|
+
required:
|
|
11451
|
+
- rdata
|
|
11452
|
+
title: RegistrarRecord
|
|
11453
|
+
type: object
|
|
11454
|
+
RegistrarZone:
|
|
11455
|
+
properties:
|
|
11456
|
+
name:
|
|
11457
|
+
title: Name
|
|
11458
|
+
type: string
|
|
11459
|
+
rrsets:
|
|
11460
|
+
default: []
|
|
11461
|
+
items:
|
|
11462
|
+
$ref: '#/components/schemas/RegistrarRRSet'
|
|
11463
|
+
title: Rrsets
|
|
11464
|
+
type: array
|
|
11465
|
+
required:
|
|
11466
|
+
- name
|
|
11467
|
+
title: RegistrarZone
|
|
11468
|
+
type: object
|
|
10918
11469
|
RegistryHandleAttributeType:
|
|
10919
11470
|
description: Registry handle attribute types for type-safe attribute key access.
|
|
10920
11471
|
enum:
|
|
@@ -13193,6 +13744,68 @@ components:
|
|
|
13193
13744
|
title: Vanity Nameserver Set Id
|
|
13194
13745
|
title: ZoneVanitySetUpdate
|
|
13195
13746
|
type: object
|
|
13747
|
+
ZonesContext:
|
|
13748
|
+
properties:
|
|
13749
|
+
context_id:
|
|
13750
|
+
examples:
|
|
13751
|
+
- ctx_01h45ytscbebyvny4gc8cr8ma2
|
|
13752
|
+
format: typeid
|
|
13753
|
+
pattern: ^ctx_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
13754
|
+
title: Context Id
|
|
13755
|
+
type: string
|
|
13756
|
+
x-typeid-prefix: ctx
|
|
13757
|
+
conversation_id:
|
|
13758
|
+
examples:
|
|
13759
|
+
- conv_01h45ytscbebyvny4gc8cr8ma2
|
|
13760
|
+
format: typeid
|
|
13761
|
+
pattern: ^conv_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
13762
|
+
title: Conversation Id
|
|
13763
|
+
type: string
|
|
13764
|
+
x-typeid-prefix: conv
|
|
13765
|
+
created_at:
|
|
13766
|
+
format: date-time
|
|
13767
|
+
title: Created At
|
|
13768
|
+
type: string
|
|
13769
|
+
kind:
|
|
13770
|
+
const: zones
|
|
13771
|
+
default: zones
|
|
13772
|
+
title: Kind
|
|
13773
|
+
type: string
|
|
13774
|
+
organization_id:
|
|
13775
|
+
examples:
|
|
13776
|
+
- organization_01h45ytscbebyvny4gc8cr8ma2
|
|
13777
|
+
format: typeid
|
|
13778
|
+
pattern: ^organization_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
13779
|
+
title: Organization Id
|
|
13780
|
+
type: string
|
|
13781
|
+
x-typeid-prefix: organization
|
|
13782
|
+
payload:
|
|
13783
|
+
$ref: '#/components/schemas/ContextPayload_RegistrarZone_'
|
|
13784
|
+
user_id:
|
|
13785
|
+
title: User Id
|
|
13786
|
+
type: string
|
|
13787
|
+
required:
|
|
13788
|
+
- context_id
|
|
13789
|
+
- conversation_id
|
|
13790
|
+
- organization_id
|
|
13791
|
+
- user_id
|
|
13792
|
+
- created_at
|
|
13793
|
+
- payload
|
|
13794
|
+
title: ZonesContext
|
|
13795
|
+
type: object
|
|
13796
|
+
ZonesContextCreate:
|
|
13797
|
+
properties:
|
|
13798
|
+
kind:
|
|
13799
|
+
const: zones
|
|
13800
|
+
default: zones
|
|
13801
|
+
title: Kind
|
|
13802
|
+
type: string
|
|
13803
|
+
payload:
|
|
13804
|
+
$ref: '#/components/schemas/ContextPayload_RegistrarZone_'
|
|
13805
|
+
required:
|
|
13806
|
+
- payload
|
|
13807
|
+
title: ZonesContextCreate
|
|
13808
|
+
type: object
|
|
13196
13809
|
api__domain__tld_specific__be__models__RequestAuthcodeResponse:
|
|
13197
13810
|
properties:
|
|
13198
13811
|
detail:
|
|
@@ -13383,7 +13996,7 @@ info:
|
|
|
13383
13996
|
\n\n"
|
|
13384
13997
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
13385
13998
|
title: OpusDNS API
|
|
13386
|
-
version: 2026-06-
|
|
13999
|
+
version: 2026-06-25-140028
|
|
13387
14000
|
x-logo:
|
|
13388
14001
|
altText: OpusDNS API Reference
|
|
13389
14002
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -13409,7 +14022,23 @@ paths:
|
|
|
13409
14022
|
content:
|
|
13410
14023
|
application/json:
|
|
13411
14024
|
schema:
|
|
13412
|
-
|
|
14025
|
+
discriminator:
|
|
14026
|
+
mapping:
|
|
14027
|
+
contacts: '#/components/schemas/ContactsContext'
|
|
14028
|
+
domain_forwards: '#/components/schemas/DomainForwardsContext'
|
|
14029
|
+
domain_recommendations: '#/components/schemas/DomainRecommendationsContext'
|
|
14030
|
+
domains: '#/components/schemas/DomainsContext'
|
|
14031
|
+
email_forwards: '#/components/schemas/EmailForwardsContext'
|
|
14032
|
+
zones: '#/components/schemas/ZonesContext'
|
|
14033
|
+
propertyName: kind
|
|
14034
|
+
oneOf:
|
|
14035
|
+
- $ref: '#/components/schemas/ZonesContext'
|
|
14036
|
+
- $ref: '#/components/schemas/ContactsContext'
|
|
14037
|
+
- $ref: '#/components/schemas/DomainsContext'
|
|
14038
|
+
- $ref: '#/components/schemas/DomainForwardsContext'
|
|
14039
|
+
- $ref: '#/components/schemas/EmailForwardsContext'
|
|
14040
|
+
- $ref: '#/components/schemas/DomainRecommendationsContext'
|
|
14041
|
+
title: Response Get Context V1 Ai Concierge Contexts Context Id Get
|
|
13413
14042
|
description: Successful Response
|
|
13414
14043
|
'401':
|
|
13415
14044
|
content:
|
|
@@ -13960,14 +14589,47 @@ paths:
|
|
|
13960
14589
|
content:
|
|
13961
14590
|
application/json:
|
|
13962
14591
|
schema:
|
|
13963
|
-
|
|
14592
|
+
discriminator:
|
|
14593
|
+
mapping:
|
|
14594
|
+
contacts: '#/components/schemas/ContactsContextCreate'
|
|
14595
|
+
domain_forwards: '#/components/schemas/DomainForwardsContextCreate'
|
|
14596
|
+
domain_recommendations: '#/components/schemas/DomainRecommendationsContextCreate'
|
|
14597
|
+
domains: '#/components/schemas/DomainsContextCreate'
|
|
14598
|
+
email_forwards: '#/components/schemas/EmailForwardsContextCreate'
|
|
14599
|
+
zones: '#/components/schemas/ZonesContextCreate'
|
|
14600
|
+
propertyName: kind
|
|
14601
|
+
oneOf:
|
|
14602
|
+
- $ref: '#/components/schemas/ZonesContextCreate'
|
|
14603
|
+
- $ref: '#/components/schemas/ContactsContextCreate'
|
|
14604
|
+
- $ref: '#/components/schemas/DomainsContextCreate'
|
|
14605
|
+
- $ref: '#/components/schemas/DomainForwardsContextCreate'
|
|
14606
|
+
- $ref: '#/components/schemas/EmailForwardsContextCreate'
|
|
14607
|
+
- $ref: '#/components/schemas/DomainRecommendationsContextCreate'
|
|
14608
|
+
title: Request Body
|
|
13964
14609
|
required: true
|
|
13965
14610
|
responses:
|
|
13966
14611
|
'201':
|
|
13967
14612
|
content:
|
|
13968
14613
|
application/json:
|
|
13969
14614
|
schema:
|
|
13970
|
-
|
|
14615
|
+
discriminator:
|
|
14616
|
+
mapping:
|
|
14617
|
+
contacts: '#/components/schemas/ContactsContext'
|
|
14618
|
+
domain_forwards: '#/components/schemas/DomainForwardsContext'
|
|
14619
|
+
domain_recommendations: '#/components/schemas/DomainRecommendationsContext'
|
|
14620
|
+
domains: '#/components/schemas/DomainsContext'
|
|
14621
|
+
email_forwards: '#/components/schemas/EmailForwardsContext'
|
|
14622
|
+
zones: '#/components/schemas/ZonesContext'
|
|
14623
|
+
propertyName: kind
|
|
14624
|
+
oneOf:
|
|
14625
|
+
- $ref: '#/components/schemas/ZonesContext'
|
|
14626
|
+
- $ref: '#/components/schemas/ContactsContext'
|
|
14627
|
+
- $ref: '#/components/schemas/DomainsContext'
|
|
14628
|
+
- $ref: '#/components/schemas/DomainForwardsContext'
|
|
14629
|
+
- $ref: '#/components/schemas/EmailForwardsContext'
|
|
14630
|
+
- $ref: '#/components/schemas/DomainRecommendationsContext'
|
|
14631
|
+
title: Response Create Context V1 Ai Concierge Conversations Conversation
|
|
14632
|
+
Id Contexts Post
|
|
13971
14633
|
description: Successful Response
|
|
13972
14634
|
'401':
|
|
13973
14635
|
content:
|
|
@@ -20808,13 +21470,19 @@ paths:
|
|
|
20808
21470
|
- type: string
|
|
20809
21471
|
- type: 'null'
|
|
20810
21472
|
title: Search
|
|
20811
|
-
-
|
|
21473
|
+
- description: Filter by top-level domain (e.g., 'com', 'org'). Can be specified
|
|
21474
|
+
multiple times (union of all provided values).
|
|
21475
|
+
in: query
|
|
20812
21476
|
name: tld
|
|
20813
21477
|
required: false
|
|
20814
21478
|
schema:
|
|
20815
21479
|
anyOf:
|
|
20816
|
-
-
|
|
21480
|
+
- items:
|
|
21481
|
+
type: string
|
|
21482
|
+
type: array
|
|
20817
21483
|
- type: 'null'
|
|
21484
|
+
description: Filter by top-level domain (e.g., 'com', 'org'). Can be specified
|
|
21485
|
+
multiple times (union of all provided values).
|
|
20818
21486
|
title: Tld
|
|
20819
21487
|
- in: query
|
|
20820
21488
|
name: sld
|