This is an automated email from the ASF dual-hosted git repository. ocket8888 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/trafficcontrol-trafficops-types.git
commit 30f009c17fff2d2af64ad8dada23f4e4bebcce33 Author: ocket8888 <[email protected]> AuthorDate: Fri Apr 29 10:57:00 2022 -0600 Fix incorrect type name --- package.json | 2 +- src/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 08f9d43..e9af6c7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "trafficops-types", - "version": "3.1.0-beta-5", + "version": "3.1.0-beta-6", "description": "A library for dealing with Apache Traffic Control objects", "main": "dist/index.js", "scripts": { diff --git a/src/index.ts b/src/index.ts index 96129ca..73fe0bb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -88,7 +88,7 @@ export const VERSION: VersionType = { /** * (Nearly) All responses from the Traffic Ops API conform to this interface. */ -export interface APISuccessResponse<T> { +export interface APIResponse<T> { /** Any and all Alerts that may accompany the response. */ alerts?: Array<Alert>; /** The actual response object. */
