import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; export declare class AppsV1 extends ClientSDK { /** * GetAppsV1Deprecated * * @remarks * Returns an unsorted list of your organization’s [applications](https://hathora.dev/docs/concepts/hathora-entities#application). An application is uniquely identified by an `appId`. * * @deprecated method: This will be removed in a future release, please migrate away from it as soon as possible. */ getAppsV1Deprecated(options?: RequestOptions): Promise>; /** * CreateAppV1Deprecated * * @remarks * Create a new [application](https://hathora.dev/docs/concepts/hathora-entities#application). * * @deprecated method: This will be removed in a future release, please migrate away from it as soon as possible. */ createAppV1Deprecated(request: components.CreateAppConfig, options?: RequestOptions): Promise; /** * UpdateAppV1Deprecated * * @remarks * Update data for an existing [application](https://hathora.dev/docs/concepts/hathora-entities#application) using `appId`. * * @deprecated method: This will be removed in a future release, please migrate away from it as soon as possible. */ updateAppV1Deprecated(createAppConfig: components.CreateAppConfig, appId?: string | undefined, options?: RequestOptions): Promise; /** * GetAppInfoV1Deprecated * * @remarks * Get details for an [application](https://hathora.dev/docs/concepts/hathora-entities#application) using `appId`. * * @deprecated method: This will be removed in a future release, please migrate away from it as soon as possible. */ getAppInfoV1Deprecated(appId?: string | undefined, options?: RequestOptions): Promise; /** * DeleteAppV1Deprecated * * @remarks * Delete an [application](https://hathora.dev/docs/concepts/hathora-entities#application) using `appId`. Your organization will lose access to this application. * * @deprecated method: This will be removed in a future release, please migrate away from it as soon as possible. */ deleteAppV1Deprecated(appId?: string | undefined, options?: RequestOptions): Promise; } //# sourceMappingURL=appsv1.d.ts.map