import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; export declare class AppsV2 extends ClientSDK { /** * GetApps * * @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`. */ getApps(orgId?: string | undefined, options?: RequestOptions): Promise; /** * CreateApp * * @remarks * Create a new [application](https://hathora.dev/docs/concepts/hathora-entities#application). */ createApp(createAppConfig: components.CreateAppConfig, orgId?: string | undefined, options?: RequestOptions): Promise; /** * UpdateApp * * @remarks * Set application config (will override all fields) for an existing [application](https://hathora.dev/docs/concepts/hathora-entities#application) using `appId`. */ updateApp(appConfigWithServiceConfig: components.AppConfigWithServiceConfig, appId?: string | undefined, options?: RequestOptions): Promise; /** * PatchApp * * @remarks * Patch data for an existing [application](https://hathora.dev/docs/concepts/hathora-entities#application) using `appId`. */ patchApp(partialAppConfigWithServiceConfig: components.PartialAppConfigWithServiceConfig, appId?: string | undefined, options?: RequestOptions): Promise; /** * GetApp * * @remarks * Get details for an [application](https://hathora.dev/docs/concepts/hathora-entities#application) using `appId`. */ getApp(appId?: string | undefined, options?: RequestOptions): Promise; /** * DeleteApp * * @remarks * Delete an [application](https://hathora.dev/docs/concepts/hathora-entities#application) using `appId`. Your organization will lose access to this application. */ deleteApp(appId?: string | undefined, options?: RequestOptions): Promise; } //# sourceMappingURL=appsv2.d.ts.map