## What is the current behavior? <!-- What's happening that seems wrong? --> I can't import the SyncResponse class from any sub package without getting deprecation errors, it's no longer exportable from Deepgram.Models.Listen.v1.REST although that's what the deprecation message hints at importing from ## Steps to reproduce <!-- To make it faster to diagnose the root problem. Tell us how can we reproduce the bug. --> - Use IListenRestClient for dependency injection ``` builder.Services.AddSingleton<IListenRESTClient>(sp => { var configuration = sp.GetRequiredService<IConfiguration>(); var settings = configuration.GetSection("Deepgram").Get<DeepgramSettings>()!; return ClientFactory.CreateListenRESTClient(settings.ApiKey); }); ``` - try to import SyncResponse in any service that injects the client. ## Expected behavior <!-- What would you expect to happen when following the steps above? --> ## Please tell us about your environment <!-- We want to make sure the problem isn't specific to your operating system or programming language. - **Operating System/Version:** (ex. MacOS 14.2, Windows 10, RHEL 6, etc) - **Go Version:** (ex. v1.18) --> ## Other information <!-- Anything else we should know? (e.g. detailed explanation, stack-traces, related issues, suggestions how to fix, links for us to have context, eg. stack overflow, codepen, etc) -->