CupThread React Native & Expo SDK - v0.1.0
    Preparing search index...

    Interface FeedbackClientConfig

    Configuration parameters required to instantiate a FeedbackClient.

    import { FeedbackClientConfig } from '@cupthread/react-native';

    const config: FeedbackClientConfig = {
    baseUrl: 'https://api.cupthread.com',
    appKey: 'app_live_abc123',
    defaultPlatform: 'ios',
    };
    interface FeedbackClientConfig {
        appKey: string;
        baseUrl: string;
        defaultPlatform?: FeedbackPlatform;
        timeoutMs?: number;
    }
    Index
    appKey: string

    Unique application key generated in the CupThread Developer Console. Typically starts with the "app_" prefix.

    baseUrl: string

    Root API URL of the CupThread backend instance (e.g., "https://api.cupthread.com"). Trailing slashes are automatically normalized and stripped.

    defaultPlatform?: FeedbackPlatform

    Default platform reported on feedback submissions and requests when not explicitly overridden by the caller.

    Auto-detected at runtime via React Native Platform.OS

    timeoutMs?: number

    Request timeout in milliseconds for API operations and uploads. If elapsed before the request settles, a RequestTimeoutException is thrown.

    15000 (15 seconds)