Function EnvironmentApiAxiosParamCreator

EnvironmentApi - axios parameter creator

  • Parameters

    Returns {
        getDefaultDirectoryBrowser: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
        getDirectoryContents: ((path: string, includeFiles?: boolean, includeDirectories?: boolean, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
        getDrives: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
        getNetworkShares: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
        getParentPath: ((path: string, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
        validatePath: ((validatePathDto: ValidatePathDto, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
    }

    • getDefaultDirectoryBrowser: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>)

      Get Default directory browser.

        • (options?): Promise<RequestArgs>
        • Parameters

          • Optionaloptions: RawAxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

    • getDirectoryContents: ((path: string, includeFiles?: boolean, includeDirectories?: boolean, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)

      Gets the contents of a given directory in the file system.

        • (path, includeFiles?, includeDirectories?, options?): Promise<RequestArgs>
        • Parameters

          • path: string

            The path.

          • OptionalincludeFiles: boolean

            An optional filter to include or exclude files from the results. true/false.

          • OptionalincludeDirectories: boolean

            An optional filter to include or exclude folders from the results. true/false.

          • Optionaloptions: RawAxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

    • getDrives: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>)

      Gets available drives from the server's file system.

        • (options?): Promise<RequestArgs>
        • Parameters

          • Optionaloptions: RawAxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

    • getNetworkShares: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>)

      Gets network paths.

        • (options?): Promise<RequestArgs>
        • Parameters

          • Optionaloptions: RawAxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

    • getParentPath: ((path: string, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)

      Gets the parent path of a given path.

        • (path, options?): Promise<RequestArgs>
        • Parameters

          • path: string

            The path.

          • Optionaloptions: RawAxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

    • validatePath: ((validatePathDto: ValidatePathDto, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)

      Validates path.

        • (validatePathDto, options?): Promise<RequestArgs>
        • Parameters

          • validatePathDto: ValidatePathDto

            Validate request object.

          • Optionaloptions: RawAxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>