/** * SeaVerse Utils SDK Configuration * * Environment-specific URLs and default configurations */ /** * Environment URLs for different deployment environments */ export declare const ENVIRONMENT_URLS: { /** * Production environment URL * @default */ readonly PRODUCTION: "https://resource.seaverse.ai"; /** * Staging/Test environment URL */ readonly STAGING: "https://resource.sg.seaverse.dev"; /** * Local development URL */ readonly LOCAL: "http://localhost:8003"; }; /** * Default base URL (production) */ export declare const DEFAULT_BASE_URL: "https://resource.seaverse.ai"; /** * Default timeout in milliseconds */ export declare const DEFAULT_TIMEOUT = 60000; /** * Default compression configuration */ export declare const DEFAULT_COMPRESSION_CONFIG: { readonly enabled: true; readonly maxWidth: 1080; readonly maxHeight: 1080; readonly quality: 0.8; }; /** * Default maximum file size (100MB) */ export declare const DEFAULT_MAX_FILE_SIZE: number; //# sourceMappingURL=config.d.ts.map