@@ -40,6 +40,7 @@ def test_method_retrieve_with_all_params(self, client: BrandDev) -> None:
4040 domain = "domain" ,
4141 force_language = "albanian" ,
4242 max_speed = True ,
43+ timeout_ms = 1 ,
4344 )
4445 assert_matches_type (BrandRetrieveResponse , brand , path = ["response" ])
4546
@@ -108,6 +109,7 @@ def test_method_ai_query_with_all_params(self, client: BrandDev) -> None:
108109 "privacy_policy" : True ,
109110 "terms_and_conditions" : True ,
110111 },
112+ timeout_ms = 1 ,
111113 )
112114 assert_matches_type (BrandAIQueryResponse , brand , path = ["response" ])
113115
@@ -161,6 +163,15 @@ def test_method_identify_from_transaction(self, client: BrandDev) -> None:
161163 )
162164 assert_matches_type (BrandIdentifyFromTransactionResponse , brand , path = ["response" ])
163165
166+ @pytest .mark .skip ()
167+ @parametrize
168+ def test_method_identify_from_transaction_with_all_params (self , client : BrandDev ) -> None :
169+ brand = client .brand .identify_from_transaction (
170+ transaction_info = "transaction_info" ,
171+ timeout_ms = 1 ,
172+ )
173+ assert_matches_type (BrandIdentifyFromTransactionResponse , brand , path = ["response" ])
174+
164175 @pytest .mark .skip ()
165176 @parametrize
166177 def test_raw_response_identify_from_transaction (self , client : BrandDev ) -> None :
@@ -195,6 +206,15 @@ def test_method_prefetch(self, client: BrandDev) -> None:
195206 )
196207 assert_matches_type (BrandPrefetchResponse , brand , path = ["response" ])
197208
209+ @pytest .mark .skip ()
210+ @parametrize
211+ def test_method_prefetch_with_all_params (self , client : BrandDev ) -> None :
212+ brand = client .brand .prefetch (
213+ domain = "domain" ,
214+ timeout_ms = 1 ,
215+ )
216+ assert_matches_type (BrandPrefetchResponse , brand , path = ["response" ])
217+
198218 @pytest .mark .skip ()
199219 @parametrize
200220 def test_raw_response_prefetch (self , client : BrandDev ) -> None :
@@ -229,6 +249,15 @@ def test_method_retrieve_by_ticker(self, client: BrandDev) -> None:
229249 )
230250 assert_matches_type (BrandRetrieveByTickerResponse , brand , path = ["response" ])
231251
252+ @pytest .mark .skip ()
253+ @parametrize
254+ def test_method_retrieve_by_ticker_with_all_params (self , client : BrandDev ) -> None :
255+ brand = client .brand .retrieve_by_ticker (
256+ ticker = "ticker" ,
257+ timeout_ms = 1 ,
258+ )
259+ assert_matches_type (BrandRetrieveByTickerResponse , brand , path = ["response" ])
260+
232261 @pytest .mark .skip ()
233262 @parametrize
234263 def test_raw_response_retrieve_by_ticker (self , client : BrandDev ) -> None :
@@ -263,6 +292,15 @@ def test_method_retrieve_naics(self, client: BrandDev) -> None:
263292 )
264293 assert_matches_type (BrandRetrieveNaicsResponse , brand , path = ["response" ])
265294
295+ @pytest .mark .skip ()
296+ @parametrize
297+ def test_method_retrieve_naics_with_all_params (self , client : BrandDev ) -> None :
298+ brand = client .brand .retrieve_naics (
299+ input = "input" ,
300+ timeout_ms = 1 ,
301+ )
302+ assert_matches_type (BrandRetrieveNaicsResponse , brand , path = ["response" ])
303+
266304 @pytest .mark .skip ()
267305 @parametrize
268306 def test_raw_response_retrieve_naics (self , client : BrandDev ) -> None :
@@ -297,6 +335,15 @@ def test_method_search(self, client: BrandDev) -> None:
297335 )
298336 assert_matches_type (BrandSearchResponse , brand , path = ["response" ])
299337
338+ @pytest .mark .skip ()
339+ @parametrize
340+ def test_method_search_with_all_params (self , client : BrandDev ) -> None :
341+ brand = client .brand .search (
342+ query = "query" ,
343+ timeout_ms = 1 ,
344+ )
345+ assert_matches_type (BrandSearchResponse , brand , path = ["response" ])
346+
300347 @pytest .mark .skip ()
301348 @parametrize
302349 def test_raw_response_search (self , client : BrandDev ) -> None :
@@ -342,6 +389,7 @@ async def test_method_retrieve_with_all_params(self, async_client: AsyncBrandDev
342389 domain = "domain" ,
343390 force_language = "albanian" ,
344391 max_speed = True ,
392+ timeout_ms = 1 ,
345393 )
346394 assert_matches_type (BrandRetrieveResponse , brand , path = ["response" ])
347395
@@ -410,6 +458,7 @@ async def test_method_ai_query_with_all_params(self, async_client: AsyncBrandDev
410458 "privacy_policy" : True ,
411459 "terms_and_conditions" : True ,
412460 },
461+ timeout_ms = 1 ,
413462 )
414463 assert_matches_type (BrandAIQueryResponse , brand , path = ["response" ])
415464
@@ -463,6 +512,15 @@ async def test_method_identify_from_transaction(self, async_client: AsyncBrandDe
463512 )
464513 assert_matches_type (BrandIdentifyFromTransactionResponse , brand , path = ["response" ])
465514
515+ @pytest .mark .skip ()
516+ @parametrize
517+ async def test_method_identify_from_transaction_with_all_params (self , async_client : AsyncBrandDev ) -> None :
518+ brand = await async_client .brand .identify_from_transaction (
519+ transaction_info = "transaction_info" ,
520+ timeout_ms = 1 ,
521+ )
522+ assert_matches_type (BrandIdentifyFromTransactionResponse , brand , path = ["response" ])
523+
466524 @pytest .mark .skip ()
467525 @parametrize
468526 async def test_raw_response_identify_from_transaction (self , async_client : AsyncBrandDev ) -> None :
@@ -497,6 +555,15 @@ async def test_method_prefetch(self, async_client: AsyncBrandDev) -> None:
497555 )
498556 assert_matches_type (BrandPrefetchResponse , brand , path = ["response" ])
499557
558+ @pytest .mark .skip ()
559+ @parametrize
560+ async def test_method_prefetch_with_all_params (self , async_client : AsyncBrandDev ) -> None :
561+ brand = await async_client .brand .prefetch (
562+ domain = "domain" ,
563+ timeout_ms = 1 ,
564+ )
565+ assert_matches_type (BrandPrefetchResponse , brand , path = ["response" ])
566+
500567 @pytest .mark .skip ()
501568 @parametrize
502569 async def test_raw_response_prefetch (self , async_client : AsyncBrandDev ) -> None :
@@ -531,6 +598,15 @@ async def test_method_retrieve_by_ticker(self, async_client: AsyncBrandDev) -> N
531598 )
532599 assert_matches_type (BrandRetrieveByTickerResponse , brand , path = ["response" ])
533600
601+ @pytest .mark .skip ()
602+ @parametrize
603+ async def test_method_retrieve_by_ticker_with_all_params (self , async_client : AsyncBrandDev ) -> None :
604+ brand = await async_client .brand .retrieve_by_ticker (
605+ ticker = "ticker" ,
606+ timeout_ms = 1 ,
607+ )
608+ assert_matches_type (BrandRetrieveByTickerResponse , brand , path = ["response" ])
609+
534610 @pytest .mark .skip ()
535611 @parametrize
536612 async def test_raw_response_retrieve_by_ticker (self , async_client : AsyncBrandDev ) -> None :
@@ -565,6 +641,15 @@ async def test_method_retrieve_naics(self, async_client: AsyncBrandDev) -> None:
565641 )
566642 assert_matches_type (BrandRetrieveNaicsResponse , brand , path = ["response" ])
567643
644+ @pytest .mark .skip ()
645+ @parametrize
646+ async def test_method_retrieve_naics_with_all_params (self , async_client : AsyncBrandDev ) -> None :
647+ brand = await async_client .brand .retrieve_naics (
648+ input = "input" ,
649+ timeout_ms = 1 ,
650+ )
651+ assert_matches_type (BrandRetrieveNaicsResponse , brand , path = ["response" ])
652+
568653 @pytest .mark .skip ()
569654 @parametrize
570655 async def test_raw_response_retrieve_naics (self , async_client : AsyncBrandDev ) -> None :
@@ -599,6 +684,15 @@ async def test_method_search(self, async_client: AsyncBrandDev) -> None:
599684 )
600685 assert_matches_type (BrandSearchResponse , brand , path = ["response" ])
601686
687+ @pytest .mark .skip ()
688+ @parametrize
689+ async def test_method_search_with_all_params (self , async_client : AsyncBrandDev ) -> None :
690+ brand = await async_client .brand .search (
691+ query = "query" ,
692+ timeout_ms = 1 ,
693+ )
694+ assert_matches_type (BrandSearchResponse , brand , path = ["response" ])
695+
602696 @pytest .mark .skip ()
603697 @parametrize
604698 async def test_raw_response_search (self , async_client : AsyncBrandDev ) -> None :
0 commit comments