/** * Schema data for Meta Marketing API * Used by the `schema` command for field discovery */ export interface FieldInfo { name: string; type: 'string' | 'number' | 'currency' | 'percentage' | 'decimal' | 'array' | 'object'; description: string; } export interface BreakdownInfo { name: string; category: 'demographics' | 'geography' | 'placement' | 'time' | 'product'; description: string; } export interface ActionTypeInfo { name: string; category: 'conversion' | 'engagement' | 'app' | 'messaging'; description: string; } export declare function getFieldsForLevel(level: string): FieldInfo[]; export declare function getVideoFields(): FieldInfo[]; export declare const BREAKDOWNS: BreakdownInfo[]; export declare const ACTION_TYPES: ActionTypeInfo[]; export declare const CAMPAIGN_OBJECTIVES: { name: string; description: string; }[]; //# sourceMappingURL=schema-data.d.ts.map