// @ts-ignore /* eslint-disable */ import request from '@/utils/request'; /** search GET /b2b2c/image/search */ export async function searchUsingGet(body: API.AjaxRequest, options?: { [key: string]: any }) { return request('/b2b2c/image/search', { method: 'GET', headers: { 'Content-Type': 'application/json', }, data: body, ...(options || {}), }); } /** search PUT /b2b2c/image/search */ export async function searchUsingPut(body: API.AjaxRequest, options?: { [key: string]: any }) { return request('/b2b2c/image/search', { method: 'PUT', headers: { 'Content-Type': 'application/json', }, data: body, ...(options || {}), }); } /** search POST /b2b2c/image/search */ export async function searchUsingPost(body: API.AjaxRequest, options?: { [key: string]: any }) { return request('/b2b2c/image/search', { method: 'POST', headers: { 'Content-Type': 'application/json', }, data: body, ...(options || {}), }); } /** search DELETE /b2b2c/image/search */ export async function searchUsingDelete(body: API.AjaxRequest, options?: { [key: string]: any }) { return request('/b2b2c/image/search', { method: 'DELETE', headers: { 'Content-Type': 'application/json', }, data: body, ...(options || {}), }); } /** search PATCH /b2b2c/image/search */ export async function searchUsingPatch(body: API.AjaxRequest, options?: { [key: string]: any }) { return request('/b2b2c/image/search', { method: 'PATCH', headers: { 'Content-Type': 'application/json', }, data: body, ...(options || {}), }); }