/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import * as runtime from '../runtime'; import { Export, ExportCreateRequest, ExportModelEnum, ExportsResponse } from '../models'; export interface CreateExportRequest { environmentId: string; exportCreateRequest: ExportCreateRequest; } export interface DownloadExportByIdRequest { environmentId: string; exportId: string; } export interface GetEnvironmentExportsRequest { environmentId: string; model?: ExportModelEnum; } export interface GetExportByIdRequest { environmentId: string; exportId: string; } /** * */ export declare class ExportsApi extends runtime.BaseAPI { /** * Creates a new export request for the specified project environment. * Create a new export request for the project environment */ createExportRaw(requestParameters: CreateExportRequest, initOverrides?: RequestInit): Promise>; /** * Creates a new export request for the specified project environment. * Create a new export request for the project environment */ createExport(requestParameters: CreateExportRequest, initOverrides?: RequestInit): Promise; /** * Downloads the specified export by its ID. * Download an export by ID */ downloadExportByIdRaw(requestParameters: DownloadExportByIdRequest, initOverrides?: RequestInit): Promise>; /** * Downloads the specified export by its ID. * Download an export by ID */ downloadExportById(requestParameters: DownloadExportByIdRequest, initOverrides?: RequestInit): Promise; /** * Returns the exports for the specified environment. * Get the exports for an environment */ getEnvironmentExportsRaw(requestParameters: GetEnvironmentExportsRequest, initOverrides?: RequestInit): Promise>; /** * Returns the exports for the specified environment. * Get the exports for an environment */ getEnvironmentExports(requestParameters: GetEnvironmentExportsRequest, initOverrides?: RequestInit): Promise; /** * Returns the export by its unique identifier. * Get an export using the ID */ getExportByIdRaw(requestParameters: GetExportByIdRequest, initOverrides?: RequestInit): Promise>; /** * Returns the export by its unique identifier. * Get an export using the ID */ getExportById(requestParameters: GetExportByIdRequest, initOverrides?: RequestInit): Promise; }