Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ esi.postCharacterMail({
| [`getSovereigntyCampaigns`](https://developers.eveonline.com/api-explorer#/operations/GetSovereigntyCampaigns) | Shows sovereignty data for campaigns. |
| [`getSovereigntyMap`](https://developers.eveonline.com/api-explorer#/operations/GetSovereigntyMap) | Shows sovereignty information for solar systems |
| [`getSovereigntyStructures`](https://developers.eveonline.com/api-explorer#/operations/GetSovereigntyStructures) | Shows sovereignty data for structures. |
| [`getStatus`](https://developers.eveonline.com/api-explorer#/operations/GetStatus) | EVE Server status |
| [`getStatus`](https://developers.eveonline.com/api-explorer#/operations/GetStatus) | Current status of the EVE Online cluster |
| [`postUiAutopilotWaypoint`](https://developers.eveonline.com/api-explorer#/operations/PostUiAutopilotWaypoint) | Set a solar system as autopilot waypoint |
| [`postUiOpenwindowContract`](https://developers.eveonline.com/api-explorer#/operations/PostUiOpenwindowContract) | Open the contract window inside the client |
| [`postUiOpenwindowInformation`](https://developers.eveonline.com/api-explorer#/operations/PostUiOpenwindowInformation) | Open the information window for a character, corporation or alliance inside the client |
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Automated: Update ESI OpenAPI schema",
"packageName": "@localisprimary/esi",
"email": "1719791+Nfinished@users.noreply.github.com",
"dependentChangeType": "patch"
}
4 changes: 2 additions & 2 deletions src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import * as Types from './types'

const COMPATIBILITY_DATE = '2026-06-02'
const COMPATIBILITY_DATE = '2026-08-11'

export class EsiClient {
private readonly baseUrl: string = 'https://esi.evetech.net'
Expand Down Expand Up @@ -2406,7 +2406,7 @@ in the past need to be applied on top of this list to get an accurate view of th
}

/**
* EVE Server status
* Current status of the EVE Online cluster

* @see https://developers.eveonline.com/api-explorer#/operations/GetStatus
*/
Expand Down
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5722,7 +5722,7 @@ export interface GetStatusResponse {
players: number
server_version: string
start_time: string
vip?: boolean
vip: boolean
}

export interface GetStatusResponseHeaders {
Expand Down
Loading