Documentation
    Preparing search index...
    listshowlist: {
        configuration_workflow: (req: Req) => Workflow;
        connectedObjects: (
            __namedParameters: GenObj,
        ) => Promise<{ embeddedViews: View[] }>;
        description: string;
        get_state_fields: (
            table_id: number,
            viewname: string,
            __namedParameters: GenObj,
        ) => Promise<
            (
                | FieldLikeWithInputType
                | FieldLikeWithType
                | { name: string; required: boolean; type: string }
            )[],
        >;
        name: string;
        queries: (
            __namedParameters: GenObj,
        ) => { getRowQuery(uniques: Where): Promise<Row | null> };
        run: (
            table_id: number,
            viewname: string,
            __namedParameters: GenObj,
            state: GenObj,
            extraArgs: GenObj,
            __namedParameters: { getRowQuery: (where: Where) => Promise<Row | null> },
        ) => Promise<any>;
    }

    Type Declaration

    • configuration_workflow: (req: Req) => Workflow
    • connectedObjects: (__namedParameters: GenObj) => Promise<{ embeddedViews: View[] }>
    • description: string
    • get_state_fields: (
          table_id: number,
          viewname: string,
          __namedParameters: GenObj,
      ) => Promise<
          (
              | FieldLikeWithInputType
              | FieldLikeWithType
              | { name: string; required: boolean; type: string }
          )[],
      >
    • name: string
    • queries: (
          __namedParameters: GenObj,
      ) => { getRowQuery(uniques: Where): Promise<Row | null> }
    • run: (
          table_id: number,
          viewname: string,
          __namedParameters: GenObj,
          state: GenObj,
          extraArgs: GenObj,
          __namedParameters: { getRowQuery: (where: Where) => Promise<Row | null> },
      ) => Promise<any>