4747 SyncAPIClient ,
4848 AsyncAPIClient ,
4949)
50+ from .resources .ats import ats
5051from .resources .sys import sys
52+ from .resources .user import user
5153from .resources .chats import chats
52- from .resources .extapis import extapis
5354from .resources .datasources import datasources
5455
5556__all__ = [
@@ -72,7 +73,6 @@ class Asktable(SyncAPIClient):
7273 chats : chats .ChatsResource
7374 datasources : datasources .DatasourcesResource
7475 bots : bots .BotsResource
75- extapis : extapis .ExtapisResource
7676 auth : auth .AuthResource
7777 answers : answers .AnswersResource
7878 sqls : sqls .SqlsResource
@@ -86,6 +86,8 @@ class Asktable(SyncAPIClient):
8686 files : files .FilesResource
8787 dataframes : dataframes .DataframesResource
8888 polish : polish .PolishResource
89+ user : user .UserResource
90+ ats : ats .ATSResource
8991 with_raw_response : AsktableWithRawResponse
9092 with_streaming_response : AsktableWithStreamedResponse
9193
@@ -150,7 +152,6 @@ def __init__(
150152 self .chats = chats .ChatsResource (self )
151153 self .datasources = datasources .DatasourcesResource (self )
152154 self .bots = bots .BotsResource (self )
153- self .extapis = extapis .ExtapisResource (self )
154155 self .auth = auth .AuthResource (self )
155156 self .answers = answers .AnswersResource (self )
156157 self .sqls = sqls .SqlsResource (self )
@@ -164,6 +165,8 @@ def __init__(
164165 self .files = files .FilesResource (self )
165166 self .dataframes = dataframes .DataframesResource (self )
166167 self .polish = polish .PolishResource (self )
168+ self .user = user .UserResource (self )
169+ self .ats = ats .ATSResource (self )
167170 self .with_raw_response = AsktableWithRawResponse (self )
168171 self .with_streaming_response = AsktableWithStreamedResponse (self )
169172
@@ -280,7 +283,6 @@ class AsyncAsktable(AsyncAPIClient):
280283 chats : chats .AsyncChatsResource
281284 datasources : datasources .AsyncDatasourcesResource
282285 bots : bots .AsyncBotsResource
283- extapis : extapis .AsyncExtapisResource
284286 auth : auth .AsyncAuthResource
285287 answers : answers .AsyncAnswersResource
286288 sqls : sqls .AsyncSqlsResource
@@ -294,6 +296,8 @@ class AsyncAsktable(AsyncAPIClient):
294296 files : files .AsyncFilesResource
295297 dataframes : dataframes .AsyncDataframesResource
296298 polish : polish .AsyncPolishResource
299+ user : user .AsyncUserResource
300+ ats : ats .AsyncATSResource
297301 with_raw_response : AsyncAsktableWithRawResponse
298302 with_streaming_response : AsyncAsktableWithStreamedResponse
299303
@@ -358,7 +362,6 @@ def __init__(
358362 self .chats = chats .AsyncChatsResource (self )
359363 self .datasources = datasources .AsyncDatasourcesResource (self )
360364 self .bots = bots .AsyncBotsResource (self )
361- self .extapis = extapis .AsyncExtapisResource (self )
362365 self .auth = auth .AsyncAuthResource (self )
363366 self .answers = answers .AsyncAnswersResource (self )
364367 self .sqls = sqls .AsyncSqlsResource (self )
@@ -372,6 +375,8 @@ def __init__(
372375 self .files = files .AsyncFilesResource (self )
373376 self .dataframes = dataframes .AsyncDataframesResource (self )
374377 self .polish = polish .AsyncPolishResource (self )
378+ self .user = user .AsyncUserResource (self )
379+ self .ats = ats .AsyncATSResource (self )
375380 self .with_raw_response = AsyncAsktableWithRawResponse (self )
376381 self .with_streaming_response = AsyncAsktableWithStreamedResponse (self )
377382
@@ -489,7 +494,6 @@ def __init__(self, client: Asktable) -> None:
489494 self .chats = chats .ChatsResourceWithRawResponse (client .chats )
490495 self .datasources = datasources .DatasourcesResourceWithRawResponse (client .datasources )
491496 self .bots = bots .BotsResourceWithRawResponse (client .bots )
492- self .extapis = extapis .ExtapisResourceWithRawResponse (client .extapis )
493497 self .auth = auth .AuthResourceWithRawResponse (client .auth )
494498 self .answers = answers .AnswersResourceWithRawResponse (client .answers )
495499 self .sqls = sqls .SqlsResourceWithRawResponse (client .sqls )
@@ -503,6 +507,8 @@ def __init__(self, client: Asktable) -> None:
503507 self .files = files .FilesResourceWithRawResponse (client .files )
504508 self .dataframes = dataframes .DataframesResourceWithRawResponse (client .dataframes )
505509 self .polish = polish .PolishResourceWithRawResponse (client .polish )
510+ self .user = user .UserResourceWithRawResponse (client .user )
511+ self .ats = ats .ATSResourceWithRawResponse (client .ats )
506512
507513
508514class AsyncAsktableWithRawResponse :
@@ -514,7 +520,6 @@ def __init__(self, client: AsyncAsktable) -> None:
514520 self .chats = chats .AsyncChatsResourceWithRawResponse (client .chats )
515521 self .datasources = datasources .AsyncDatasourcesResourceWithRawResponse (client .datasources )
516522 self .bots = bots .AsyncBotsResourceWithRawResponse (client .bots )
517- self .extapis = extapis .AsyncExtapisResourceWithRawResponse (client .extapis )
518523 self .auth = auth .AsyncAuthResourceWithRawResponse (client .auth )
519524 self .answers = answers .AsyncAnswersResourceWithRawResponse (client .answers )
520525 self .sqls = sqls .AsyncSqlsResourceWithRawResponse (client .sqls )
@@ -530,6 +535,8 @@ def __init__(self, client: AsyncAsktable) -> None:
530535 self .files = files .AsyncFilesResourceWithRawResponse (client .files )
531536 self .dataframes = dataframes .AsyncDataframesResourceWithRawResponse (client .dataframes )
532537 self .polish = polish .AsyncPolishResourceWithRawResponse (client .polish )
538+ self .user = user .AsyncUserResourceWithRawResponse (client .user )
539+ self .ats = ats .AsyncATSResourceWithRawResponse (client .ats )
533540
534541
535542class AsktableWithStreamedResponse :
@@ -541,7 +548,6 @@ def __init__(self, client: Asktable) -> None:
541548 self .chats = chats .ChatsResourceWithStreamingResponse (client .chats )
542549 self .datasources = datasources .DatasourcesResourceWithStreamingResponse (client .datasources )
543550 self .bots = bots .BotsResourceWithStreamingResponse (client .bots )
544- self .extapis = extapis .ExtapisResourceWithStreamingResponse (client .extapis )
545551 self .auth = auth .AuthResourceWithStreamingResponse (client .auth )
546552 self .answers = answers .AnswersResourceWithStreamingResponse (client .answers )
547553 self .sqls = sqls .SqlsResourceWithStreamingResponse (client .sqls )
@@ -557,6 +563,8 @@ def __init__(self, client: Asktable) -> None:
557563 self .files = files .FilesResourceWithStreamingResponse (client .files )
558564 self .dataframes = dataframes .DataframesResourceWithStreamingResponse (client .dataframes )
559565 self .polish = polish .PolishResourceWithStreamingResponse (client .polish )
566+ self .user = user .UserResourceWithStreamingResponse (client .user )
567+ self .ats = ats .ATSResourceWithStreamingResponse (client .ats )
560568
561569
562570class AsyncAsktableWithStreamedResponse :
@@ -568,7 +576,6 @@ def __init__(self, client: AsyncAsktable) -> None:
568576 self .chats = chats .AsyncChatsResourceWithStreamingResponse (client .chats )
569577 self .datasources = datasources .AsyncDatasourcesResourceWithStreamingResponse (client .datasources )
570578 self .bots = bots .AsyncBotsResourceWithStreamingResponse (client .bots )
571- self .extapis = extapis .AsyncExtapisResourceWithStreamingResponse (client .extapis )
572579 self .auth = auth .AsyncAuthResourceWithStreamingResponse (client .auth )
573580 self .answers = answers .AsyncAnswersResourceWithStreamingResponse (client .answers )
574581 self .sqls = sqls .AsyncSqlsResourceWithStreamingResponse (client .sqls )
@@ -584,6 +591,8 @@ def __init__(self, client: AsyncAsktable) -> None:
584591 self .files = files .AsyncFilesResourceWithStreamingResponse (client .files )
585592 self .dataframes = dataframes .AsyncDataframesResourceWithStreamingResponse (client .dataframes )
586593 self .polish = polish .AsyncPolishResourceWithStreamingResponse (client .polish )
594+ self .user = user .AsyncUserResourceWithStreamingResponse (client .user )
595+ self .ats = ats .AsyncATSResourceWithStreamingResponse (client .ats )
587596
588597
589598Client = Asktable
0 commit comments