@farmart-tech/brave-client-sdk
    Preparing search index...

    Interface FeatureData

    Complete data structure for a feature flag.

    interface FeatureData {
        __global_data?: boolean;
        condition?: FeatureCondition;
        createdAt?: string;
        description: string;
        enabled: boolean;
        releaseDate?: string;
        rolloutStrategy?: RolloutStrategy;
        updatedAt?: string;
    }

    Hierarchy

    • CommonFirebaseDataConfigs
      • FeatureData
    Index

    Properties

    __global_data?: boolean

    Indicates if this data is a global fallback.

    condition?: FeatureCondition

    Optional condition for targeted rollout.

    createdAt?: string

    ISO 8601 creation timestamp.

    description: string

    Human-readable description of the feature.

    enabled: boolean

    Whether the feature is globally enabled.

    releaseDate?: string

    Optional ISO 8601 date when the feature is released.

    rolloutStrategy?: RolloutStrategy

    Optional rollout strategy (percentage or step).

    updatedAt?: string

    ISO 8601 last update timestamp.