|
16 | 16 |
|
17 | 17 | from .services.agents import AgentsClient
|
18 | 18 | from .services.agents import AgentsAsyncClient
|
| 19 | +from .services.changelogs import ChangelogsClient |
| 20 | +from .services.changelogs import ChangelogsAsyncClient |
19 | 21 | from .services.deployments import DeploymentsClient
|
20 | 22 | from .services.deployments import DeploymentsAsyncClient
|
21 | 23 | from .services.entity_types import EntityTypesClient
|
|
69 | 71 | from .types.audio_config import OutputAudioEncoding
|
70 | 72 | from .types.audio_config import SpeechModelVariant
|
71 | 73 | from .types.audio_config import SsmlVoiceGender
|
| 74 | +from .types.changelog import Changelog |
| 75 | +from .types.changelog import GetChangelogRequest |
| 76 | +from .types.changelog import ListChangelogsRequest |
| 77 | +from .types.changelog import ListChangelogsResponse |
72 | 78 | from .types.deployment import Deployment
|
73 | 79 | from .types.deployment import GetDeploymentRequest
|
74 | 80 | from .types.deployment import ListDeploymentsRequest
|
|
246 | 252 |
|
247 | 253 | __all__ = (
|
248 | 254 | "AgentsAsyncClient",
|
| 255 | + "ChangelogsAsyncClient", |
249 | 256 | "DeploymentsAsyncClient",
|
250 | 257 | "EntityTypesAsyncClient",
|
251 | 258 | "EnvironmentsAsyncClient",
|
|
272 | 279 | "BatchRunTestCasesResponse",
|
273 | 280 | "CalculateCoverageRequest",
|
274 | 281 | "CalculateCoverageResponse",
|
| 282 | + "Changelog", |
| 283 | + "ChangelogsClient", |
275 | 284 | "ContinuousTestResult",
|
276 | 285 | "ConversationTurn",
|
277 | 286 | "CreateAgentRequest",
|
|
332 | 341 | "Fulfillment",
|
333 | 342 | "GetAgentRequest",
|
334 | 343 | "GetAgentValidationResultRequest",
|
| 344 | + "GetChangelogRequest", |
335 | 345 | "GetDeploymentRequest",
|
336 | 346 | "GetEntityTypeRequest",
|
337 | 347 | "GetEnvironmentRequest",
|
|
360 | 370 | "IntentsClient",
|
361 | 371 | "ListAgentsRequest",
|
362 | 372 | "ListAgentsResponse",
|
| 373 | + "ListChangelogsRequest", |
| 374 | + "ListChangelogsResponse", |
363 | 375 | "ListContinuousTestResultsRequest",
|
364 | 376 | "ListContinuousTestResultsResponse",
|
365 | 377 | "ListDeploymentsRequest",
|
|
0 commit comments