mirror of
https://github.com/halo-dev/plugin-s3.git
synced 2025-10-18 16:41:29 +00:00

使用 openapi-generator 重构请求库 使用 @halo-dev/api-client 提供的axiosInstance 提升所有 Halo 依赖版本至2.17 ```release-note None ```
42 lines
1.2 KiB
TypeScript
42 lines
1.2 KiB
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* Halo
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* The version of the OpenAPI document: 2.18.0-SNAPSHOT
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
|
|
// May contain unused imports in some cases
|
|
// @ts-ignore
|
|
import type { AddOperation } from './add-operation';
|
|
// May contain unused imports in some cases
|
|
// @ts-ignore
|
|
import type { CopyOperation } from './copy-operation';
|
|
// May contain unused imports in some cases
|
|
// @ts-ignore
|
|
import type { MoveOperation } from './move-operation';
|
|
// May contain unused imports in some cases
|
|
// @ts-ignore
|
|
import type { RemoveOperation } from './remove-operation';
|
|
// May contain unused imports in some cases
|
|
// @ts-ignore
|
|
import type { ReplaceOperation } from './replace-operation';
|
|
// May contain unused imports in some cases
|
|
// @ts-ignore
|
|
import type { TestOperation } from './test-operation';
|
|
|
|
/**
|
|
* @type JsonPatchInner
|
|
* @export
|
|
*/
|
|
export type JsonPatchInner = AddOperation | CopyOperation | MoveOperation | RemoveOperation | ReplaceOperation | TestOperation;
|
|
|
|
|