Function DeveloperProfilesApiAxiosParamCreator

  • DeveloperProfilesApi - axios parameter creator

    Export

    Parameters

    Returns {
        autocompleteDeveloper: ((search: string, options??: AxiosRequestConfig) => Promise<RequestArgs>);
        searchDeveloperByDevId: ((devId: string, options??: AxiosRequestConfig) => Promise<RequestArgs>);
        searchDeveloperByOwnerAddress: ((ownerAddress: string, options??: AxiosRequestConfig) => Promise<RequestArgs>);
        searchDeveloperProfile: ((page?: number, limit?: number, search?: string, isMinted?: boolean, options??: AxiosRequestConfig) => Promise<RequestArgs>);
    }

    • autocompleteDeveloper: ((search: string, options??: AxiosRequestConfig) => Promise<RequestArgs>)
        • (search: string, options??: AxiosRequestConfig): Promise<RequestArgs>
        • Summary

          Auto-Complete search

          Throws

          Parameters

          • search: string
          • Optional options: AxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

    • searchDeveloperByDevId: ((devId: string, options??: AxiosRequestConfig) => Promise<RequestArgs>)
        • (devId: string, options??: AxiosRequestConfig): Promise<RequestArgs>
        • Summary

          Search developer By devId

          Throws

          Parameters

          • devId: string
          • Optional options: AxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

    • searchDeveloperByOwnerAddress: ((ownerAddress: string, options??: AxiosRequestConfig) => Promise<RequestArgs>)
        • (ownerAddress: string, options??: AxiosRequestConfig): Promise<RequestArgs>
        • Summary

          Search Developer By owner Address

          Throws

          Parameters

          • ownerAddress: string
          • Optional options: AxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

    • searchDeveloperProfile: ((page?: number, limit?: number, search?: string, isMinted?: boolean, options??: AxiosRequestConfig) => Promise<RequestArgs>)
        • (page?: number, limit?: number, search?: string, isMinted?: boolean, options??: AxiosRequestConfig): Promise<RequestArgs>
        • Get all stores or search by a keyword. Optionally, filter on specific attributes of the store. This API call will get all the store or perform a text search.

          Summary

          Search Developer

          Throws

          Parameters

          • Optional page: number

            Current page

          • Optional limit: number

            Page size

          • Optional search: string

            A string to be used for search. The search happens on the `name` and `tags` fields of the dApp. If this is not present, all dApps are returned.

          • Optional isMinted: boolean

            DApp is listed or not

          • Optional options: AxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

Generated using TypeDoc