// This file is generated, manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. /** * Properties for the `del` method. */ export type DelProps = { /** * The path of the API endpoint to target, anything after the /1 needs to be specified. */ path: string; /** * Query parameters to be applied to the current query. */ parameters?: Record; }; /** * Properties for the `get` method. */ export type GetProps = { /** * The path of the API endpoint to target, anything after the /1 needs to be specified. */ path: string; /** * Query parameters to be applied to the current query. */ parameters?: Record; }; /** * Properties for the `post` method. */ export type PostProps = { /** * The path of the API endpoint to target, anything after the /1 needs to be specified. */ path: string; /** * Query parameters to be applied to the current query. */ parameters?: Record; /** * The parameters to send with the custom request. */ body?: Record; }; /** * Properties for the `put` method. */ export type PutProps = { /** * The path of the API endpoint to target, anything after the /1 needs to be specified. */ path: string; /** * Query parameters to be applied to the current query. */ parameters?: Record; /** * The parameters to send with the custom request. */ body?: Record; };