@@ -59,6 +59,9 @@ class Asktable(SyncAPIClient):
5959 caches : resources .CachesResource
6060 integration : resources .IntegrationResource
6161 business_glossary : resources .BusinessGlossaryResource
62+ preferences : resources .PreferencesResource
63+ trainings : resources .TrainingsResource
64+ scores : resources .ScoresResource
6265 with_raw_response : AsktableWithRawResponse
6366 with_streaming_response : AsktableWithStreamedResponse
6467
@@ -129,6 +132,9 @@ def __init__(
129132 self .caches = resources .CachesResource (self )
130133 self .integration = resources .IntegrationResource (self )
131134 self .business_glossary = resources .BusinessGlossaryResource (self )
135+ self .preferences = resources .PreferencesResource (self )
136+ self .trainings = resources .TrainingsResource (self )
137+ self .scores = resources .ScoresResource (self )
132138 self .with_raw_response = AsktableWithRawResponse (self )
133139 self .with_streaming_response = AsktableWithStreamedResponse (self )
134140
@@ -251,6 +257,9 @@ class AsyncAsktable(AsyncAPIClient):
251257 caches : resources .AsyncCachesResource
252258 integration : resources .AsyncIntegrationResource
253259 business_glossary : resources .AsyncBusinessGlossaryResource
260+ preferences : resources .AsyncPreferencesResource
261+ trainings : resources .AsyncTrainingsResource
262+ scores : resources .AsyncScoresResource
254263 with_raw_response : AsyncAsktableWithRawResponse
255264 with_streaming_response : AsyncAsktableWithStreamedResponse
256265
@@ -321,6 +330,9 @@ def __init__(
321330 self .caches = resources .AsyncCachesResource (self )
322331 self .integration = resources .AsyncIntegrationResource (self )
323332 self .business_glossary = resources .AsyncBusinessGlossaryResource (self )
333+ self .preferences = resources .AsyncPreferencesResource (self )
334+ self .trainings = resources .AsyncTrainingsResource (self )
335+ self .scores = resources .AsyncScoresResource (self )
324336 self .with_raw_response = AsyncAsktableWithRawResponse (self )
325337 self .with_streaming_response = AsyncAsktableWithStreamedResponse (self )
326338
@@ -444,6 +456,9 @@ def __init__(self, client: Asktable) -> None:
444456 self .caches = resources .CachesResourceWithRawResponse (client .caches )
445457 self .integration = resources .IntegrationResourceWithRawResponse (client .integration )
446458 self .business_glossary = resources .BusinessGlossaryResourceWithRawResponse (client .business_glossary )
459+ self .preferences = resources .PreferencesResourceWithRawResponse (client .preferences )
460+ self .trainings = resources .TrainingsResourceWithRawResponse (client .trainings )
461+ self .scores = resources .ScoresResourceWithRawResponse (client .scores )
447462
448463
449464class AsyncAsktableWithRawResponse :
@@ -461,6 +476,9 @@ def __init__(self, client: AsyncAsktable) -> None:
461476 self .caches = resources .AsyncCachesResourceWithRawResponse (client .caches )
462477 self .integration = resources .AsyncIntegrationResourceWithRawResponse (client .integration )
463478 self .business_glossary = resources .AsyncBusinessGlossaryResourceWithRawResponse (client .business_glossary )
479+ self .preferences = resources .AsyncPreferencesResourceWithRawResponse (client .preferences )
480+ self .trainings = resources .AsyncTrainingsResourceWithRawResponse (client .trainings )
481+ self .scores = resources .AsyncScoresResourceWithRawResponse (client .scores )
464482
465483
466484class AsktableWithStreamedResponse :
@@ -478,6 +496,9 @@ def __init__(self, client: Asktable) -> None:
478496 self .caches = resources .CachesResourceWithStreamingResponse (client .caches )
479497 self .integration = resources .IntegrationResourceWithStreamingResponse (client .integration )
480498 self .business_glossary = resources .BusinessGlossaryResourceWithStreamingResponse (client .business_glossary )
499+ self .preferences = resources .PreferencesResourceWithStreamingResponse (client .preferences )
500+ self .trainings = resources .TrainingsResourceWithStreamingResponse (client .trainings )
501+ self .scores = resources .ScoresResourceWithStreamingResponse (client .scores )
481502
482503
483504class AsyncAsktableWithStreamedResponse :
@@ -495,6 +516,9 @@ def __init__(self, client: AsyncAsktable) -> None:
495516 self .caches = resources .AsyncCachesResourceWithStreamingResponse (client .caches )
496517 self .integration = resources .AsyncIntegrationResourceWithStreamingResponse (client .integration )
497518 self .business_glossary = resources .AsyncBusinessGlossaryResourceWithStreamingResponse (client .business_glossary )
519+ self .preferences = resources .AsyncPreferencesResourceWithStreamingResponse (client .preferences )
520+ self .trainings = resources .AsyncTrainingsResourceWithStreamingResponse (client .trainings )
521+ self .scores = resources .AsyncScoresResourceWithStreamingResponse (client .scores )
498522
499523
500524Client = Asktable
0 commit comments