/* eslint-disable */ /* tslint:disable */ /* * --------------------------------------------------------------- * ## THIS FILE WAS GENERATED VIA SWAGGER-TYPESCRIPT-API ## * ## ## * ## AUTHOR: acacode ## * ## SOURCE: https://github.com/acacode/swagger-typescript-api ## * --------------------------------------------------------------- */ import { AxiosResponse } from 'axios' import { ApiAddInput, ApiSyncInput, ApiUpdateInput, PageInputApiGetPageDto, ResultOutputApiGetOutput, ResultOutputInt64, ResultOutputListApiListOutput, ResultOutputPageOutputApiEntity, } from './data-contracts' import { ContentType, HttpClient, RequestParams } from './http-client' export class Api extends HttpClient { /** * No description * * @tags api * @name Get * @summary 查询接口 * @request GET:/api/admin/api/get * @secure */ get = ( query?: { /** @format int64 */ id?: number }, params: RequestParams = {} ) => this.request({ path: `/api/admin/api/get`, method: 'GET', query: query, secure: true, format: 'json', ...params, }) /** * No description * * @tags api * @name GetList * @summary 查询列表 * @request GET:/api/admin/api/get-list * @secure */ getList = ( query?: { key?: string }, params: RequestParams = {} ) => this.request({ path: `/api/admin/api/get-list`, method: 'GET', query: query, secure: true, format: 'json', ...params, }) /** * No description * * @tags api * @name GetPage * @summary 查询分页 * @request POST:/api/admin/api/get-page * @secure */ getPage = (data: PageInputApiGetPageDto, params: RequestParams = {}) => this.request({ path: `/api/admin/api/get-page`, method: 'POST', body: data, secure: true, type: ContentType.Json, format: 'json', ...params, }) /** * No description * * @tags api * @name Add * @summary 添加 * @request POST:/api/admin/api/add * @secure */ add = (data: ApiAddInput, params: RequestParams = {}) => this.request({ path: `/api/admin/api/add`, method: 'POST', body: data, secure: true, type: ContentType.Json, format: 'json', ...params, }) /** * No description * * @tags api * @name Update * @summary 修改 * @request PUT:/api/admin/api/update * @secure */ update = (data: ApiUpdateInput, params: RequestParams = {}) => this.request({ path: `/api/admin/api/update`, method: 'PUT', body: data, secure: true, type: ContentType.Json, ...params, }) /** * No description * * @tags api * @name Delete * @summary 彻底删除 * @request DELETE:/api/admin/api/delete * @secure */ delete = ( query?: { /** @format int64 */ id?: number }, params: RequestParams = {} ) => this.request({ path: `/api/admin/api/delete`, method: 'DELETE', query: query, secure: true, ...params, }) /** * No description * * @tags api * @name SoftDelete * @summary 删除 * @request DELETE:/api/admin/api/soft-delete * @secure */ softDelete = ( query?: { /** @format int64 */ id?: number }, params: RequestParams = {} ) => this.request({ path: `/api/admin/api/soft-delete`, method: 'DELETE', query: query, secure: true, ...params, }) /** * No description * * @tags api * @name BatchSoftDelete * @summary 批量删除 * @request PUT:/api/admin/api/batch-soft-delete * @secure */ batchSoftDelete = (data: number[], params: RequestParams = {}) => this.request({ path: `/api/admin/api/batch-soft-delete`, method: 'PUT', body: data, secure: true, type: ContentType.Json, ...params, }) /** * No description * * @tags api * @name Sync * @summary 同步 * @request POST:/api/admin/api/sync * @secure */ sync = (data: ApiSyncInput, params: RequestParams = {}) => this.request({ path: `/api/admin/api/sync`, method: 'POST', body: data, secure: true, type: ContentType.Json, ...params, }) }