update samples

This commit is contained in:
William Cheng
2022-02-18 00:53:42 +08:00
parent 1b8dae18b8
commit d00a5c304f
2 changed files with 4 additions and 0 deletions

View File

@@ -36,18 +36,21 @@ export interface ObjectWithDeprecatedFields {
*
* @type {number}
* @memberof ObjectWithDeprecatedFields
* @deprecated
*/
id?: number;
/**
*
* @type {DeprecatedObject}
* @memberof ObjectWithDeprecatedFields
* @deprecated
*/
deprecatedRef?: DeprecatedObject;
/**
*
* @type {Array<string>}
* @memberof ObjectWithDeprecatedFields
* @deprecated
*/
bars?: Array<string>;
}

View File

@@ -119,6 +119,7 @@ export interface PetApiInterface {
* @summary Finds Pets by tags
* @param {Array<string>} tags Tags to filter by
* @param {*} [options] Override http request option.
* @deprecated
* @throws {RequiredError}
* @memberof PetApiInterface
*/