Documentation
    Preparing search index...
    feed: {
        configuration_workflow: (req: Req) => Workflow;
        connectedObjects: (configuration: GenObj) => Promise<any>;
        description: string;
        get_state_fields: (
            table_id: number,
            viewname: string,
            opts: GenObj,
        ) => Promise<Field[]>;
        name: string;
        queries: (
            __namedParameters: GenObj,
        ) => {
            countRowsQuery(state: GenObj): Promise<number>;
            runManyQuery(
                state: GenObj,
                qextra: GenObj,
                selectOpts0: GenObj,
            ): Promise<string[] | { html: string; row: any }[]>;
        };
        run: (
            table_id: number,
            viewname: string,
            opts: GenObj,
            state: GenObj,
            extraArgs: GenObj,
            __namedParameters: {
                countRowsQuery: (state: GenObj) => Promise<number>;
                runManyQuery: (
                    state: GenObj,
                    qextra: GenObj,
                    selectOpts: GenObj,
                ) => Promise<GenObj[]>;
            },
        ) => Promise<any>;
        getStringsForI18n(opts: GenObj): any[];
    }

    Type Declaration

    • configuration_workflow: (req: Req) => Workflow
    • connectedObjects: (configuration: GenObj) => Promise<any>
    • description: string
    • get_state_fields: (table_id: number, viewname: string, opts: GenObj) => Promise<Field[]>
    • name: string
    • queries: (
          __namedParameters: GenObj,
      ) => {
          countRowsQuery(state: GenObj): Promise<number>;
          runManyQuery(
              state: GenObj,
              qextra: GenObj,
              selectOpts0: GenObj,
          ): Promise<string[] | { html: string; row: any }[]>;
      }
    • run: (
          table_id: number,
          viewname: string,
          opts: GenObj,
          state: GenObj,
          extraArgs: GenObj,
          __namedParameters: {
              countRowsQuery: (state: GenObj) => Promise<number>;
              runManyQuery: (
                  state: GenObj,
                  qextra: GenObj,
                  selectOpts: GenObj,
              ) => Promise<GenObj[]>;
          },
      ) => Promise<any>
    • getStringsForI18n: function