Function StoreRegistryApiAxiosParamCreator

  • StoreRegistryApi - axios parameter creator

    Export

    Parameters

    Returns {
        autocompleteStores: ((search: string, options??: AxiosRequestConfig) => Promise<RequestArgs>);
        searchStores: ((page?: number, limit?: number, search?: string, categories?: string[], isListed?: boolean, isMinted?: boolean, language?: string, allowedInCountries?: string[], blockedInCountries?: string[], isForMatureAudience?: boolean, minAge?: number, listedOnOrAfter?: string, listedOnOrBefore?: string, options??: AxiosRequestConfig) => Promise<RequestArgs>);
        searchStoresByOwnerAddress: ((ownerAddress: string, options??: AxiosRequestConfig) => Promise<RequestArgs>);
        searchStoresByStoreId: ((storeId: string, options??: AxiosRequestConfig) => Promise<RequestArgs>);
    }

    • autocompleteStores: ((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>

    • searchStores: ((page?: number, limit?: number, search?: string, categories?: string[], isListed?: boolean, isMinted?: boolean, language?: string, allowedInCountries?: string[], blockedInCountries?: string[], isForMatureAudience?: boolean, minAge?: number, listedOnOrAfter?: string, listedOnOrBefore?: string, options??: AxiosRequestConfig) => Promise<RequestArgs>)
        • (page?: number, limit?: number, search?: string, categories?: string[], isListed?: boolean, isMinted?: boolean, language?: string, allowedInCountries?: string[], blockedInCountries?: string[], isForMatureAudience?: boolean, minAge?: number, listedOnOrAfter?: string, listedOnOrBefore?: string, 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 Store

          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 categories: string[]

            The categories in which dApps belong. Multiple categories are joined using OR operator.

          • Optional isListed: boolean

            DApp is listed or not

          • Optional isMinted: boolean

            DApp is listed or not

          • Optional language: string

            DApp's language

          • Optional allowedInCountries: string[]

            dApp allowed countries

          • Optional blockedInCountries: string[]

            dApp blocked countries

          • Optional isForMatureAudience: boolean

            Mentions if the app is for all ages or only mature audience

          • Optional minAge: number

            Minimum age

          • Optional listedOnOrAfter: string

            The date dApp was listed on or after. Date should be in ISO format.

          • Optional listedOnOrBefore: string

            The date dApp was listed on or before. Date should be in ISO format.

          • Optional options: AxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

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

          Search store By owner Address

          Throws

          Parameters

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

            Override http request option.

          Returns Promise<RequestArgs>

    • searchStoresByStoreId: ((storeId: string, options??: AxiosRequestConfig) => Promise<RequestArgs>)
        • (storeId: string, options??: AxiosRequestConfig): Promise<RequestArgs>
        • Summary

          Search store By store Id

          Throws

          Parameters

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

            Override http request option.

          Returns Promise<RequestArgs>

Generated using TypeDoc