Class Apps

Hierarchy

  • Apps

Implements

Constructors

Methods

  • Export multiple qvf to Buffer

    Parameters

    • arg: {
          filter: string;
          skipData?: boolean;
      }
      • filter: string
      • Optional skipData?: boolean

    Returns Promise<{
        exportToken: string;
        file: IncomingMessage;
        id: string;
        name: string;
    }[]>

  • Get single app instance

    Parameters

    • arg: {
          id: string;
      }
      • id: string

    Returns Promise<App>

  • Get array of apps instance based on the supplied filter

    Parameters

    • arg: {
          filter: string;
          orderBy?: string;
      }
      • filter: string
      • Optional orderBy?: string

    Returns Promise<App[]>

  • Upload multiple apps in a single method

    Parameters

    • arg: {
          apps: [{
              excludeDataConnections?: boolean;
              file: Buffer;
              keepData?: boolean;
              name: string;
          }];
          sequence?: Boolean;
      }
      • apps: [{
            excludeDataConnections?: boolean;
            file: Buffer;
            keepData?: boolean;
            name: string;
        }]
      • Optional sequence?: Boolean

    Returns Promise<App[]>