Function DeveloperProfilesApiFactory

  • DeveloperProfilesApi - factory interface

    Export

    Parameters

    • Optional configuration: Configuration
    • Optional basePath: string
    • Optional axios: AxiosInstance

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

    • autocompleteDeveloper:function
      • Summary

        Auto-Complete search

        Throws

        Parameters

        • search: string
        • Optional options: AxiosRequestConfig

          Override http request option.

        Returns Promise<AxiosResponse<InlineResponse20011>>

    • searchDeveloperByDevId:function
      • Summary

        Search developer By devId

        Throws

        Parameters

        • devId: string
        • Optional options: AxiosRequestConfig

          Override http request option.

        Returns Promise<AxiosResponse<InlineResponse20010>>

    • searchDeveloperByOwnerAddress:function
      • Summary

        Search Developer By owner Address

        Throws

        Parameters

        • ownerAddress: string
        • Optional options: AxiosRequestConfig

          Override http request option.

        Returns Promise<AxiosResponse<InlineResponse20010>>

    • searchDeveloperProfile:function
      • 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<AxiosResponse<InlineResponse2009>>

Generated using TypeDoc