Type Alias ExecuteComponentData

ExecuteComponentData: {
    path: string;
    requestBody: {
        args: unknown;
        component: string;
        force_viewer_allow_user_resources?: string[];
        force_viewer_one_of_fields?: {
            [key: string]: unknown;
        };
        force_viewer_static_fields?: {
            [key: string]: unknown;
        };
        path?: string;
        raw_code?: {
            cache_ttl?: number;
            content: string;
            language: string;
            lock?: string;
            path?: string;
        };
    };
    workspace: string;
}

Type declaration

  • path: string
  • requestBody: {
        args: unknown;
        component: string;
        force_viewer_allow_user_resources?: string[];
        force_viewer_one_of_fields?: {
            [key: string]: unknown;
        };
        force_viewer_static_fields?: {
            [key: string]: unknown;
        };
        path?: string;
        raw_code?: {
            cache_ttl?: number;
            content: string;
            language: string;
            lock?: string;
            path?: string;
        };
    }

    update app

    • args: unknown
    • component: string
    • Optionalforce_viewer_allow_user_resources?: string[]
    • Optionalforce_viewer_one_of_fields?: {
          [key: string]: unknown;
      }
      • [key: string]: unknown
    • Optionalforce_viewer_static_fields?: {
          [key: string]: unknown;
      }
      • [key: string]: unknown
    • Optionalpath?: string
    • Optionalraw_code?: {
          cache_ttl?: number;
          content: string;
          language: string;
          lock?: string;
          path?: string;
      }
      • Optionalcache_ttl?: number
      • content: string
      • language: string
      • Optionallock?: string
      • Optionalpath?: string
  • workspace: string