@@ -35,6 +35,7 @@ def domain_availability_lookup(
3535 sug : typing .Optional [bool ] = None ,
3636 count : typing .Optional [int ] = None ,
3737 format : typing .Optional [str ] = None ,
38+ source : typing .Optional [str ] = None ,
3839 request_options : typing .Optional [RequestOptions ] = None ,
3940 ) -> DomainAvailabilityResponse :
4041 """
@@ -52,6 +53,8 @@ def domain_availability_lookup(
5253
5354 format : typing.Optional[str]
5455
56+ source : typing.Optional[str]
57+
5558 request_options : typing.Optional[RequestOptions]
5659 Request-specific configuration.
5760
@@ -64,10 +67,16 @@ def domain_availability_lookup(
6467 from whoisfreaks import WhoisfreaksApi
6568 from whoisfreaks.environment import WhoisfreaksApiEnvironment
6669 client = WhoisfreaksApi(environment=WhoisfreaksApiEnvironment.PRODUCTION, )
67- client.domain_availability.domain_availability_lookup(api_key='YOUR_API_KEY', domain='whoisfreaks.com', sug=True, count=10, )
70+ client.domain_availability.domain_availability_lookup(api_key='YOUR_API_KEY', domain='whoisfreaks.com', sug=True, count=10, source='dns', )
6871 """
6972 _response = self ._raw_client .domain_availability_lookup (
70- api_key = api_key , domain = domain , sug = sug , count = count , format = format , request_options = request_options
73+ api_key = api_key ,
74+ domain = domain ,
75+ sug = sug ,
76+ count = count ,
77+ format = format ,
78+ source = source ,
79+ request_options = request_options ,
7180 )
7281 return _response .data
7382
@@ -174,6 +183,7 @@ async def domain_availability_lookup(
174183 sug : typing .Optional [bool ] = None ,
175184 count : typing .Optional [int ] = None ,
176185 format : typing .Optional [str ] = None ,
186+ source : typing .Optional [str ] = None ,
177187 request_options : typing .Optional [RequestOptions ] = None ,
178188 ) -> DomainAvailabilityResponse :
179189 """
@@ -191,6 +201,8 @@ async def domain_availability_lookup(
191201
192202 format : typing.Optional[str]
193203
204+ source : typing.Optional[str]
205+
194206 request_options : typing.Optional[RequestOptions]
195207 Request-specific configuration.
196208
@@ -205,11 +217,17 @@ async def domain_availability_lookup(
205217 import asyncio
206218 client = AsyncWhoisfreaksApi(environment=WhoisfreaksApiEnvironment.PRODUCTION, )
207219 async def main() -> None:
208- await client.domain_availability.domain_availability_lookup(api_key='YOUR_API_KEY', domain='whoisfreaks.com', sug=True, count=10, )
220+ await client.domain_availability.domain_availability_lookup(api_key='YOUR_API_KEY', domain='whoisfreaks.com', sug=True, count=10, source='dns', )
209221 asyncio.run(main())
210222 """
211223 _response = await self ._raw_client .domain_availability_lookup (
212- api_key = api_key , domain = domain , sug = sug , count = count , format = format , request_options = request_options
224+ api_key = api_key ,
225+ domain = domain ,
226+ sug = sug ,
227+ count = count ,
228+ format = format ,
229+ source = source ,
230+ request_options = request_options ,
213231 )
214232 return _response .data
215233
0 commit comments