@localisprimary/esi 1.0.2 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -6
- package/dist/client.d.ts +197 -195
- package/dist/client.js +10 -0
- package/dist/types.d.ts +1034 -2
- package/package.json +2 -2
package/dist/client.d.ts
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import * as Types from './types';
|
|
2
2
|
export declare class EsiClient {
|
|
3
3
|
private readonly baseUrl;
|
|
4
|
+
private readonly userAgent;
|
|
4
5
|
private readonly token?;
|
|
5
6
|
constructor(options?: {
|
|
6
7
|
token?: string;
|
|
8
|
+
userAgent?: string;
|
|
7
9
|
});
|
|
8
10
|
private request;
|
|
9
11
|
/**
|
|
@@ -11,31 +13,31 @@ export declare class EsiClient {
|
|
|
11
13
|
|
|
12
14
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetAlliances
|
|
13
15
|
*/
|
|
14
|
-
getAlliances(): Promise<Types.EsiResponse<Types.GetAlliancesResponse>>;
|
|
16
|
+
getAlliances(): Promise<Types.EsiResponse<Types.GetAlliancesResponse, Types.GetAlliancesResponseHeaders>>;
|
|
15
17
|
/**
|
|
16
18
|
* Public information about an alliance
|
|
17
19
|
|
|
18
20
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetAlliancesAllianceId
|
|
19
21
|
*/
|
|
20
|
-
getAlliance(params: Types.GetAllianceParams): Promise<Types.EsiResponse<Types.GetAllianceResponse>>;
|
|
22
|
+
getAlliance(params: Types.GetAllianceParams): Promise<Types.EsiResponse<Types.GetAllianceResponse, Types.GetAllianceResponseHeaders>>;
|
|
21
23
|
/**
|
|
22
24
|
* Return contacts of an alliance
|
|
23
25
|
|
|
24
26
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetAlliancesAllianceIdContacts
|
|
25
27
|
*/
|
|
26
|
-
getAllianceContacts(params: Types.GetAllianceContactsParams): Promise<Types.EsiResponse<Types.GetAllianceContactsResponse>>;
|
|
28
|
+
getAllianceContacts(params: Types.GetAllianceContactsParams): Promise<Types.EsiResponse<Types.GetAllianceContactsResponse, Types.GetAllianceContactsResponseHeaders>>;
|
|
27
29
|
/**
|
|
28
30
|
* Return custom labels for an alliance's contacts
|
|
29
31
|
|
|
30
32
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetAlliancesAllianceIdContactsLabels
|
|
31
33
|
*/
|
|
32
|
-
getAllianceContactsLabels(params: Types.GetAllianceContactsLabelsParams): Promise<Types.EsiResponse<Types.GetAllianceContactsLabelsResponse>>;
|
|
34
|
+
getAllianceContactsLabels(params: Types.GetAllianceContactsLabelsParams): Promise<Types.EsiResponse<Types.GetAllianceContactsLabelsResponse, Types.GetAllianceContactsLabelsResponseHeaders>>;
|
|
33
35
|
/**
|
|
34
36
|
* List all current member corporations of an alliance
|
|
35
37
|
|
|
36
38
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetAlliancesAllianceIdCorporations
|
|
37
39
|
*/
|
|
38
|
-
getAllianceCorporations(params: Types.GetAllianceCorporationsParams): Promise<Types.EsiResponse<Types.GetAllianceCorporationsResponse>>;
|
|
40
|
+
getAllianceCorporations(params: Types.GetAllianceCorporationsParams): Promise<Types.EsiResponse<Types.GetAllianceCorporationsResponse, Types.GetAllianceCorporationsResponseHeaders>>;
|
|
39
41
|
/**
|
|
40
42
|
* Get the icon urls for a alliance
|
|
41
43
|
|
|
@@ -43,175 +45,175 @@ export declare class EsiClient {
|
|
|
43
45
|
|
|
44
46
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetAlliancesAllianceIdIcons
|
|
45
47
|
*/
|
|
46
|
-
getAllianceIcons(params: Types.GetAllianceIconsParams): Promise<Types.EsiResponse<Types.GetAllianceIconsResponse>>;
|
|
48
|
+
getAllianceIcons(params: Types.GetAllianceIconsParams): Promise<Types.EsiResponse<Types.GetAllianceIconsResponse, Types.GetAllianceIconsResponseHeaders>>;
|
|
47
49
|
/**
|
|
48
50
|
* Bulk lookup of character IDs to corporation, alliance and faction
|
|
49
51
|
|
|
50
52
|
* @see https://developers.eveonline.com/api-explorer#/operations/PostCharactersAffiliation
|
|
51
53
|
*/
|
|
52
|
-
postCharactersAffiliation(params: Types.PostCharactersAffiliationParams): Promise<Types.EsiResponse<Types.PostCharactersAffiliationResponse>>;
|
|
54
|
+
postCharactersAffiliation(params: Types.PostCharactersAffiliationParams): Promise<Types.EsiResponse<Types.PostCharactersAffiliationResponse, Types.PostCharactersAffiliationResponseHeaders>>;
|
|
53
55
|
/**
|
|
54
56
|
* Public information about a character
|
|
55
57
|
|
|
56
58
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterId
|
|
57
59
|
*/
|
|
58
|
-
getCharacter(params: Types.GetCharacterParams): Promise<Types.EsiResponse<Types.GetCharacterResponse>>;
|
|
60
|
+
getCharacter(params: Types.GetCharacterParams): Promise<Types.EsiResponse<Types.GetCharacterResponse, Types.GetCharacterResponseHeaders>>;
|
|
59
61
|
/**
|
|
60
62
|
* Return a list of agents research information for a character. The formula for finding the current research points with an agent is: currentPoints = remainderPoints + pointsPerDay * days(currentTime - researchStartDate)
|
|
61
63
|
|
|
62
64
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdAgentsResearch
|
|
63
65
|
*/
|
|
64
|
-
getCharacterAgentsResearch(params: Types.GetCharacterAgentsResearchParams): Promise<Types.EsiResponse<Types.GetCharacterAgentsResearchResponse>>;
|
|
66
|
+
getCharacterAgentsResearch(params: Types.GetCharacterAgentsResearchParams): Promise<Types.EsiResponse<Types.GetCharacterAgentsResearchResponse, Types.GetCharacterAgentsResearchResponseHeaders>>;
|
|
65
67
|
/**
|
|
66
68
|
* Return a list of the characters assets
|
|
67
69
|
|
|
68
70
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdAssets
|
|
69
71
|
*/
|
|
70
|
-
getCharacterAssets(params: Types.GetCharacterAssetsParams): Promise<Types.EsiResponse<Types.GetCharacterAssetsResponse>>;
|
|
72
|
+
getCharacterAssets(params: Types.GetCharacterAssetsParams): Promise<Types.EsiResponse<Types.GetCharacterAssetsResponse, Types.GetCharacterAssetsResponseHeaders>>;
|
|
71
73
|
/**
|
|
72
74
|
* Return locations for a set of item ids, which you can get from character assets endpoint. Coordinates for items in hangars or stations are set to (0,0,0)
|
|
73
75
|
|
|
74
76
|
* @see https://developers.eveonline.com/api-explorer#/operations/PostCharactersCharacterIdAssetsLocations
|
|
75
77
|
*/
|
|
76
|
-
postCharacterAssetsLocations(params: Types.PostCharacterAssetsLocationsParams): Promise<Types.EsiResponse<Types.PostCharacterAssetsLocationsResponse>>;
|
|
78
|
+
postCharacterAssetsLocations(params: Types.PostCharacterAssetsLocationsParams): Promise<Types.EsiResponse<Types.PostCharacterAssetsLocationsResponse, Types.PostCharacterAssetsLocationsResponseHeaders>>;
|
|
77
79
|
/**
|
|
78
80
|
* Return names for a set of item ids, which you can get from character assets endpoint. Typically used for items that can customize names, like containers or ships.
|
|
79
81
|
|
|
80
82
|
* @see https://developers.eveonline.com/api-explorer#/operations/PostCharactersCharacterIdAssetsNames
|
|
81
83
|
*/
|
|
82
|
-
postCharacterAssetsNames(params: Types.PostCharacterAssetsNamesParams): Promise<Types.EsiResponse<Types.PostCharacterAssetsNamesResponse>>;
|
|
84
|
+
postCharacterAssetsNames(params: Types.PostCharacterAssetsNamesParams): Promise<Types.EsiResponse<Types.PostCharacterAssetsNamesResponse, Types.PostCharacterAssetsNamesResponseHeaders>>;
|
|
83
85
|
/**
|
|
84
86
|
* Return attributes of a character
|
|
85
87
|
|
|
86
88
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdAttributes
|
|
87
89
|
*/
|
|
88
|
-
getCharacterAttributes(params: Types.GetCharacterAttributesParams): Promise<Types.EsiResponse<Types.GetCharacterAttributesResponse>>;
|
|
90
|
+
getCharacterAttributes(params: Types.GetCharacterAttributesParams): Promise<Types.EsiResponse<Types.GetCharacterAttributesResponse, Types.GetCharacterAttributesResponseHeaders>>;
|
|
89
91
|
/**
|
|
90
92
|
* Return a list of blueprints the character owns
|
|
91
93
|
|
|
92
94
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdBlueprints
|
|
93
95
|
*/
|
|
94
|
-
getCharacterBlueprints(params: Types.GetCharacterBlueprintsParams): Promise<Types.EsiResponse<Types.GetCharacterBlueprintsResponse>>;
|
|
96
|
+
getCharacterBlueprints(params: Types.GetCharacterBlueprintsParams): Promise<Types.EsiResponse<Types.GetCharacterBlueprintsResponse, Types.GetCharacterBlueprintsResponseHeaders>>;
|
|
95
97
|
/**
|
|
96
98
|
* Get 50 event summaries from the calendar. If no from_event ID is given, the resource will return the next 50 chronological event summaries from now. If a from_event ID is specified, it will return the next 50 chronological event summaries from after that event
|
|
97
99
|
|
|
98
100
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdCalendar
|
|
99
101
|
*/
|
|
100
|
-
getCharacterCalendar(params: Types.GetCharacterCalendarParams): Promise<Types.EsiResponse<Types.GetCharacterCalendarResponse>>;
|
|
102
|
+
getCharacterCalendar(params: Types.GetCharacterCalendarParams): Promise<Types.EsiResponse<Types.GetCharacterCalendarResponse, Types.GetCharacterCalendarResponseHeaders>>;
|
|
101
103
|
/**
|
|
102
104
|
* Get all the information for a specific event
|
|
103
105
|
|
|
104
106
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdCalendarEventId
|
|
105
107
|
*/
|
|
106
|
-
getCharacterCalendarEventId(params: Types.GetCharacterCalendarEventIdParams): Promise<Types.EsiResponse<Types.GetCharacterCalendarEventIdResponse>>;
|
|
108
|
+
getCharacterCalendarEventId(params: Types.GetCharacterCalendarEventIdParams): Promise<Types.EsiResponse<Types.GetCharacterCalendarEventIdResponse, Types.GetCharacterCalendarEventIdResponseHeaders>>;
|
|
107
109
|
/**
|
|
108
110
|
* Set your response status to an event
|
|
109
111
|
|
|
110
112
|
* @see https://developers.eveonline.com/api-explorer#/operations/PutCharactersCharacterIdCalendarEventId
|
|
111
113
|
*/
|
|
112
|
-
putCharacterCalendarEventId(params: Types.PutCharacterCalendarEventIdParams): Promise<Types.EsiResponse<Types.
|
|
114
|
+
putCharacterCalendarEventId(params: Types.PutCharacterCalendarEventIdParams): Promise<Types.EsiResponse<unknown, Types.PutCharacterCalendarEventIdResponseHeaders>>;
|
|
113
115
|
/**
|
|
114
116
|
* Get all invited attendees for a given event
|
|
115
117
|
|
|
116
118
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdCalendarEventIdAttendees
|
|
117
119
|
*/
|
|
118
|
-
getCharacterCalendarEventAttendees(params: Types.GetCharacterCalendarEventAttendeesParams): Promise<Types.EsiResponse<Types.GetCharacterCalendarEventAttendeesResponse>>;
|
|
120
|
+
getCharacterCalendarEventAttendees(params: Types.GetCharacterCalendarEventAttendeesParams): Promise<Types.EsiResponse<Types.GetCharacterCalendarEventAttendeesResponse, Types.GetCharacterCalendarEventAttendeesResponseHeaders>>;
|
|
119
121
|
/**
|
|
120
122
|
* A list of the character's clones
|
|
121
123
|
|
|
122
124
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdClones
|
|
123
125
|
*/
|
|
124
|
-
getCharacterClones(params: Types.GetCharacterClonesParams): Promise<Types.EsiResponse<Types.GetCharacterClonesResponse>>;
|
|
126
|
+
getCharacterClones(params: Types.GetCharacterClonesParams): Promise<Types.EsiResponse<Types.GetCharacterClonesResponse, Types.GetCharacterClonesResponseHeaders>>;
|
|
125
127
|
/**
|
|
126
128
|
* Bulk delete contacts
|
|
127
129
|
|
|
128
130
|
* @see https://developers.eveonline.com/api-explorer#/operations/DeleteCharactersCharacterIdContacts
|
|
129
131
|
*/
|
|
130
|
-
deleteCharacterContacts(params: Types.DeleteCharacterContactsParams): Promise<Types.EsiResponse<Types.
|
|
132
|
+
deleteCharacterContacts(params: Types.DeleteCharacterContactsParams): Promise<Types.EsiResponse<unknown, Types.DeleteCharacterContactsResponseHeaders>>;
|
|
131
133
|
/**
|
|
132
134
|
* Return contacts of a character
|
|
133
135
|
|
|
134
136
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdContacts
|
|
135
137
|
*/
|
|
136
|
-
getCharacterContacts(params: Types.GetCharacterContactsParams): Promise<Types.EsiResponse<Types.GetCharacterContactsResponse>>;
|
|
138
|
+
getCharacterContacts(params: Types.GetCharacterContactsParams): Promise<Types.EsiResponse<Types.GetCharacterContactsResponse, Types.GetCharacterContactsResponseHeaders>>;
|
|
137
139
|
/**
|
|
138
140
|
* Bulk add contacts with same settings
|
|
139
141
|
|
|
140
142
|
* @see https://developers.eveonline.com/api-explorer#/operations/PostCharactersCharacterIdContacts
|
|
141
143
|
*/
|
|
142
|
-
postCharacterContacts(params: Types.PostCharacterContactsParams): Promise<Types.EsiResponse<Types.PostCharacterContactsResponse>>;
|
|
144
|
+
postCharacterContacts(params: Types.PostCharacterContactsParams): Promise<Types.EsiResponse<Types.PostCharacterContactsResponse, Types.PostCharacterContactsResponseHeaders>>;
|
|
143
145
|
/**
|
|
144
146
|
* Bulk edit contacts with same settings
|
|
145
147
|
|
|
146
148
|
* @see https://developers.eveonline.com/api-explorer#/operations/PutCharactersCharacterIdContacts
|
|
147
149
|
*/
|
|
148
|
-
putCharacterContacts(params: Types.PutCharacterContactsParams): Promise<Types.EsiResponse<Types.
|
|
150
|
+
putCharacterContacts(params: Types.PutCharacterContactsParams): Promise<Types.EsiResponse<unknown, Types.PutCharacterContactsResponseHeaders>>;
|
|
149
151
|
/**
|
|
150
152
|
* Return custom labels for a character's contacts
|
|
151
153
|
|
|
152
154
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdContactsLabels
|
|
153
155
|
*/
|
|
154
|
-
getCharacterContactsLabels(params: Types.GetCharacterContactsLabelsParams): Promise<Types.EsiResponse<Types.GetCharacterContactsLabelsResponse>>;
|
|
156
|
+
getCharacterContactsLabels(params: Types.GetCharacterContactsLabelsParams): Promise<Types.EsiResponse<Types.GetCharacterContactsLabelsResponse, Types.GetCharacterContactsLabelsResponseHeaders>>;
|
|
155
157
|
/**
|
|
156
158
|
* Returns contracts available to a character, only if the character is issuer, acceptor or assignee. Only returns contracts no older than 30 days, or if the status is "in_progress".
|
|
157
159
|
|
|
158
160
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdContracts
|
|
159
161
|
*/
|
|
160
|
-
getCharacterContracts(params: Types.GetCharacterContractsParams): Promise<Types.EsiResponse<Types.GetCharacterContractsResponse>>;
|
|
162
|
+
getCharacterContracts(params: Types.GetCharacterContractsParams): Promise<Types.EsiResponse<Types.GetCharacterContractsResponse, Types.GetCharacterContractsResponseHeaders>>;
|
|
161
163
|
/**
|
|
162
164
|
* Lists bids on a particular auction contract
|
|
163
165
|
|
|
164
166
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdContractsContractIdBids
|
|
165
167
|
*/
|
|
166
|
-
getCharacterContractBids(params: Types.GetCharacterContractBidsParams): Promise<Types.EsiResponse<Types.GetCharacterContractBidsResponse>>;
|
|
168
|
+
getCharacterContractBids(params: Types.GetCharacterContractBidsParams): Promise<Types.EsiResponse<Types.GetCharacterContractBidsResponse, Types.GetCharacterContractBidsResponseHeaders>>;
|
|
167
169
|
/**
|
|
168
170
|
* Lists items of a particular contract
|
|
169
171
|
|
|
170
172
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdContractsContractIdItems
|
|
171
173
|
*/
|
|
172
|
-
getCharacterContractItems(params: Types.GetCharacterContractItemsParams): Promise<Types.EsiResponse<Types.GetCharacterContractItemsResponse>>;
|
|
174
|
+
getCharacterContractItems(params: Types.GetCharacterContractItemsParams): Promise<Types.EsiResponse<Types.GetCharacterContractItemsResponse, Types.GetCharacterContractItemsResponseHeaders>>;
|
|
173
175
|
/**
|
|
174
176
|
* Get a list of all the corporations a character has been a member of
|
|
175
177
|
|
|
176
178
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdCorporationhistory
|
|
177
179
|
*/
|
|
178
|
-
getCharacterCorporationhistory(params: Types.GetCharacterCorporationhistoryParams): Promise<Types.EsiResponse<Types.GetCharacterCorporationhistoryResponse>>;
|
|
180
|
+
getCharacterCorporationhistory(params: Types.GetCharacterCorporationhistoryParams): Promise<Types.EsiResponse<Types.GetCharacterCorporationhistoryResponse, Types.GetCharacterCorporationhistoryResponseHeaders>>;
|
|
179
181
|
/**
|
|
180
182
|
* Takes a source character ID in the url and a set of target character ID's in the body, returns a CSPA charge cost
|
|
181
183
|
|
|
182
184
|
* @see https://developers.eveonline.com/api-explorer#/operations/PostCharactersCharacterIdCspa
|
|
183
185
|
*/
|
|
184
|
-
postCharacterCspa(params: Types.PostCharacterCspaParams): Promise<Types.EsiResponse<Types.
|
|
186
|
+
postCharacterCspa(params: Types.PostCharacterCspaParams): Promise<Types.EsiResponse<number, Types.PostCharacterCspaResponseHeaders>>;
|
|
185
187
|
/**
|
|
186
188
|
* Return a character's jump activation and fatigue information
|
|
187
189
|
|
|
188
190
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdFatigue
|
|
189
191
|
*/
|
|
190
|
-
getCharacterFatigue(params: Types.GetCharacterFatigueParams): Promise<Types.EsiResponse<Types.GetCharacterFatigueResponse>>;
|
|
192
|
+
getCharacterFatigue(params: Types.GetCharacterFatigueParams): Promise<Types.EsiResponse<Types.GetCharacterFatigueResponse, Types.GetCharacterFatigueResponseHeaders>>;
|
|
191
193
|
/**
|
|
192
194
|
* Return fittings of a character
|
|
193
195
|
|
|
194
196
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdFittings
|
|
195
197
|
*/
|
|
196
|
-
getCharacterFittings(params: Types.GetCharacterFittingsParams): Promise<Types.EsiResponse<Types.GetCharacterFittingsResponse>>;
|
|
198
|
+
getCharacterFittings(params: Types.GetCharacterFittingsParams): Promise<Types.EsiResponse<Types.GetCharacterFittingsResponse, Types.GetCharacterFittingsResponseHeaders>>;
|
|
197
199
|
/**
|
|
198
200
|
* Save a new fitting for a character
|
|
199
201
|
|
|
200
202
|
* @see https://developers.eveonline.com/api-explorer#/operations/PostCharactersCharacterIdFittings
|
|
201
203
|
*/
|
|
202
|
-
postCharacterFittings(params: Types.PostCharacterFittingsParams): Promise<Types.EsiResponse<Types.PostCharacterFittingsResponse>>;
|
|
204
|
+
postCharacterFittings(params: Types.PostCharacterFittingsParams): Promise<Types.EsiResponse<Types.PostCharacterFittingsResponse, Types.PostCharacterFittingsResponseHeaders>>;
|
|
203
205
|
/**
|
|
204
206
|
* Delete a fitting from a character
|
|
205
207
|
|
|
206
208
|
* @see https://developers.eveonline.com/api-explorer#/operations/DeleteCharactersCharacterIdFittingsFittingId
|
|
207
209
|
*/
|
|
208
|
-
deleteCharacterFitting(params: Types.DeleteCharacterFittingParams): Promise<Types.EsiResponse<Types.
|
|
210
|
+
deleteCharacterFitting(params: Types.DeleteCharacterFittingParams): Promise<Types.EsiResponse<unknown, Types.DeleteCharacterFittingResponseHeaders>>;
|
|
209
211
|
/**
|
|
210
212
|
* Return the fleet ID the character is in, if any.
|
|
211
213
|
|
|
212
214
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdFleet
|
|
213
215
|
*/
|
|
214
|
-
getCharacterFleet(params: Types.GetCharacterFleetParams): Promise<Types.EsiResponse<Types.GetCharacterFleetResponse>>;
|
|
216
|
+
getCharacterFleet(params: Types.GetCharacterFleetParams): Promise<Types.EsiResponse<Types.GetCharacterFleetResponse, Types.GetCharacterFleetResponseHeaders>>;
|
|
215
217
|
/**
|
|
216
218
|
* Statistical overview of a character involved in faction warfare
|
|
217
219
|
|
|
@@ -219,145 +221,145 @@ export declare class EsiClient {
|
|
|
219
221
|
|
|
220
222
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdFwStats
|
|
221
223
|
*/
|
|
222
|
-
getCharacterFwStats(params: Types.GetCharacterFwStatsParams): Promise<Types.EsiResponse<Types.GetCharacterFwStatsResponse>>;
|
|
224
|
+
getCharacterFwStats(params: Types.GetCharacterFwStatsParams): Promise<Types.EsiResponse<Types.GetCharacterFwStatsResponse, Types.GetCharacterFwStatsResponseHeaders>>;
|
|
223
225
|
/**
|
|
224
226
|
* Return implants on the active clone of a character
|
|
225
227
|
|
|
226
228
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdImplants
|
|
227
229
|
*/
|
|
228
|
-
getCharacterImplants(params: Types.GetCharacterImplantsParams): Promise<Types.EsiResponse<Types.GetCharacterImplantsResponse>>;
|
|
230
|
+
getCharacterImplants(params: Types.GetCharacterImplantsParams): Promise<Types.EsiResponse<Types.GetCharacterImplantsResponse, Types.GetCharacterImplantsResponseHeaders>>;
|
|
229
231
|
/**
|
|
230
232
|
* List industry jobs placed by a character
|
|
231
233
|
|
|
232
234
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdIndustryJobs
|
|
233
235
|
*/
|
|
234
|
-
getCharacterIndustryJobs(params: Types.GetCharacterIndustryJobsParams): Promise<Types.EsiResponse<Types.GetCharacterIndustryJobsResponse>>;
|
|
236
|
+
getCharacterIndustryJobs(params: Types.GetCharacterIndustryJobsParams): Promise<Types.EsiResponse<Types.GetCharacterIndustryJobsResponse, Types.GetCharacterIndustryJobsResponseHeaders>>;
|
|
235
237
|
/**
|
|
236
238
|
* Return a list of a character's kills and losses going back 90 days
|
|
237
239
|
|
|
238
240
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdKillmailsRecent
|
|
239
241
|
*/
|
|
240
|
-
getCharacterKillmailsRecent(params: Types.GetCharacterKillmailsRecentParams): Promise<Types.EsiResponse<Types.GetCharacterKillmailsRecentResponse>>;
|
|
242
|
+
getCharacterKillmailsRecent(params: Types.GetCharacterKillmailsRecentParams): Promise<Types.EsiResponse<Types.GetCharacterKillmailsRecentResponse, Types.GetCharacterKillmailsRecentResponseHeaders>>;
|
|
241
243
|
/**
|
|
242
244
|
* Information about the characters current location. Returns the current solar system id, and also the current station or structure ID if applicable
|
|
243
245
|
|
|
244
246
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdLocation
|
|
245
247
|
*/
|
|
246
|
-
getCharacterLocation(params: Types.GetCharacterLocationParams): Promise<Types.EsiResponse<Types.GetCharacterLocationResponse>>;
|
|
248
|
+
getCharacterLocation(params: Types.GetCharacterLocationParams): Promise<Types.EsiResponse<Types.GetCharacterLocationResponse, Types.GetCharacterLocationResponseHeaders>>;
|
|
247
249
|
/**
|
|
248
250
|
* Return a list of loyalty points for all corporations the character has worked for
|
|
249
251
|
|
|
250
252
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdLoyaltyPoints
|
|
251
253
|
*/
|
|
252
|
-
getCharacterLoyaltyPoints(params: Types.GetCharacterLoyaltyPointsParams): Promise<Types.EsiResponse<Types.GetCharacterLoyaltyPointsResponse>>;
|
|
254
|
+
getCharacterLoyaltyPoints(params: Types.GetCharacterLoyaltyPointsParams): Promise<Types.EsiResponse<Types.GetCharacterLoyaltyPointsResponse, Types.GetCharacterLoyaltyPointsResponseHeaders>>;
|
|
253
255
|
/**
|
|
254
256
|
* Return the 50 most recent mail headers belonging to the character that match the query criteria. Queries can be filtered by label, and last_mail_id can be used to paginate backwards
|
|
255
257
|
|
|
256
258
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdMail
|
|
257
259
|
*/
|
|
258
|
-
getCharacterMail(params: Types.GetCharacterMailParams): Promise<Types.EsiResponse<Types.GetCharacterMailResponse>>;
|
|
260
|
+
getCharacterMail(params: Types.GetCharacterMailParams): Promise<Types.EsiResponse<Types.GetCharacterMailResponse, Types.GetCharacterMailResponseHeaders>>;
|
|
259
261
|
/**
|
|
260
262
|
* Create and send a new mail
|
|
261
263
|
|
|
262
264
|
* @see https://developers.eveonline.com/api-explorer#/operations/PostCharactersCharacterIdMail
|
|
263
265
|
*/
|
|
264
|
-
postCharacterMail(params: Types.PostCharacterMailParams): Promise<Types.EsiResponse<Types.
|
|
266
|
+
postCharacterMail(params: Types.PostCharacterMailParams): Promise<Types.EsiResponse<number, Types.PostCharacterMailResponseHeaders>>;
|
|
265
267
|
/**
|
|
266
268
|
* Return a list of the users mail labels, unread counts for each label and a total unread count.
|
|
267
269
|
|
|
268
270
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdMailLabels
|
|
269
271
|
*/
|
|
270
|
-
getCharacterMailLabels(params: Types.GetCharacterMailLabelsParams): Promise<Types.EsiResponse<Types.GetCharacterMailLabelsResponse>>;
|
|
272
|
+
getCharacterMailLabels(params: Types.GetCharacterMailLabelsParams): Promise<Types.EsiResponse<Types.GetCharacterMailLabelsResponse, Types.GetCharacterMailLabelsResponseHeaders>>;
|
|
271
273
|
/**
|
|
272
274
|
* Create a mail label
|
|
273
275
|
|
|
274
276
|
* @see https://developers.eveonline.com/api-explorer#/operations/PostCharactersCharacterIdMailLabels
|
|
275
277
|
*/
|
|
276
|
-
postCharacterMailLabels(params: Types.PostCharacterMailLabelsParams): Promise<Types.EsiResponse<Types.
|
|
278
|
+
postCharacterMailLabels(params: Types.PostCharacterMailLabelsParams): Promise<Types.EsiResponse<number, Types.PostCharacterMailLabelsResponseHeaders>>;
|
|
277
279
|
/**
|
|
278
280
|
* Delete a mail label
|
|
279
281
|
|
|
280
282
|
* @see https://developers.eveonline.com/api-explorer#/operations/DeleteCharactersCharacterIdMailLabelsLabelId
|
|
281
283
|
*/
|
|
282
|
-
deleteCharacterMailLabel(params: Types.DeleteCharacterMailLabelParams): Promise<Types.EsiResponse<Types.
|
|
284
|
+
deleteCharacterMailLabel(params: Types.DeleteCharacterMailLabelParams): Promise<Types.EsiResponse<unknown, Types.DeleteCharacterMailLabelResponseHeaders>>;
|
|
283
285
|
/**
|
|
284
286
|
* Return all mailing lists that the character is subscribed to
|
|
285
287
|
|
|
286
288
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdMailLists
|
|
287
289
|
*/
|
|
288
|
-
getCharacterMailLists(params: Types.GetCharacterMailListsParams): Promise<Types.EsiResponse<Types.GetCharacterMailListsResponse>>;
|
|
290
|
+
getCharacterMailLists(params: Types.GetCharacterMailListsParams): Promise<Types.EsiResponse<Types.GetCharacterMailListsResponse, Types.GetCharacterMailListsResponseHeaders>>;
|
|
289
291
|
/**
|
|
290
292
|
* Delete a mail
|
|
291
293
|
|
|
292
294
|
* @see https://developers.eveonline.com/api-explorer#/operations/DeleteCharactersCharacterIdMailMailId
|
|
293
295
|
*/
|
|
294
|
-
deleteCharacterMailMailId(params: Types.DeleteCharacterMailMailIdParams): Promise<Types.EsiResponse<Types.
|
|
296
|
+
deleteCharacterMailMailId(params: Types.DeleteCharacterMailMailIdParams): Promise<Types.EsiResponse<unknown, Types.DeleteCharacterMailMailIdResponseHeaders>>;
|
|
295
297
|
/**
|
|
296
298
|
* Return the contents of an EVE mail
|
|
297
299
|
|
|
298
300
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdMailMailId
|
|
299
301
|
*/
|
|
300
|
-
getCharacterMailMailId(params: Types.GetCharacterMailMailIdParams): Promise<Types.EsiResponse<Types.GetCharacterMailMailIdResponse>>;
|
|
302
|
+
getCharacterMailMailId(params: Types.GetCharacterMailMailIdParams): Promise<Types.EsiResponse<Types.GetCharacterMailMailIdResponse, Types.GetCharacterMailMailIdResponseHeaders>>;
|
|
301
303
|
/**
|
|
302
304
|
* Update metadata about a mail
|
|
303
305
|
|
|
304
306
|
* @see https://developers.eveonline.com/api-explorer#/operations/PutCharactersCharacterIdMailMailId
|
|
305
307
|
*/
|
|
306
|
-
putCharacterMailMailId(params: Types.PutCharacterMailMailIdParams): Promise<Types.EsiResponse<Types.
|
|
308
|
+
putCharacterMailMailId(params: Types.PutCharacterMailMailIdParams): Promise<Types.EsiResponse<unknown, Types.PutCharacterMailMailIdResponseHeaders>>;
|
|
307
309
|
/**
|
|
308
310
|
* Return a list of medals the character has
|
|
309
311
|
|
|
310
312
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdMedals
|
|
311
313
|
*/
|
|
312
|
-
getCharacterMedals(params: Types.GetCharacterMedalsParams): Promise<Types.EsiResponse<Types.GetCharacterMedalsResponse>>;
|
|
314
|
+
getCharacterMedals(params: Types.GetCharacterMedalsParams): Promise<Types.EsiResponse<Types.GetCharacterMedalsResponse, Types.GetCharacterMedalsResponseHeaders>>;
|
|
313
315
|
/**
|
|
314
316
|
* Paginated record of all mining done by a character for the past 30 days
|
|
315
317
|
|
|
316
318
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdMining
|
|
317
319
|
*/
|
|
318
|
-
getCharacterMining(params: Types.GetCharacterMiningParams): Promise<Types.EsiResponse<Types.GetCharacterMiningResponse>>;
|
|
320
|
+
getCharacterMining(params: Types.GetCharacterMiningParams): Promise<Types.EsiResponse<Types.GetCharacterMiningResponse, Types.GetCharacterMiningResponseHeaders>>;
|
|
319
321
|
/**
|
|
320
322
|
* Return character notifications
|
|
321
323
|
|
|
322
324
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdNotifications
|
|
323
325
|
*/
|
|
324
|
-
getCharacterNotifications(params: Types.GetCharacterNotificationsParams): Promise<Types.EsiResponse<Types.GetCharacterNotificationsResponse>>;
|
|
326
|
+
getCharacterNotifications(params: Types.GetCharacterNotificationsParams): Promise<Types.EsiResponse<Types.GetCharacterNotificationsResponse, Types.GetCharacterNotificationsResponseHeaders>>;
|
|
325
327
|
/**
|
|
326
328
|
* Return notifications about having been added to someone's contact list
|
|
327
329
|
|
|
328
330
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdNotificationsContacts
|
|
329
331
|
*/
|
|
330
|
-
getCharacterNotificationsContacts(params: Types.GetCharacterNotificationsContactsParams): Promise<Types.EsiResponse<Types.GetCharacterNotificationsContactsResponse>>;
|
|
332
|
+
getCharacterNotificationsContacts(params: Types.GetCharacterNotificationsContactsParams): Promise<Types.EsiResponse<Types.GetCharacterNotificationsContactsResponse, Types.GetCharacterNotificationsContactsResponseHeaders>>;
|
|
331
333
|
/**
|
|
332
334
|
* Checks if the character is currently online
|
|
333
335
|
|
|
334
336
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdOnline
|
|
335
337
|
*/
|
|
336
|
-
getCharacterOnline(params: Types.GetCharacterOnlineParams): Promise<Types.EsiResponse<Types.GetCharacterOnlineResponse>>;
|
|
338
|
+
getCharacterOnline(params: Types.GetCharacterOnlineParams): Promise<Types.EsiResponse<Types.GetCharacterOnlineResponse, Types.GetCharacterOnlineResponseHeaders>>;
|
|
337
339
|
/**
|
|
338
340
|
* List open market orders placed by a character
|
|
339
341
|
|
|
340
342
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdOrders
|
|
341
343
|
*/
|
|
342
|
-
getCharacterOrders(params: Types.GetCharacterOrdersParams): Promise<Types.EsiResponse<Types.GetCharacterOrdersResponse>>;
|
|
344
|
+
getCharacterOrders(params: Types.GetCharacterOrdersParams): Promise<Types.EsiResponse<Types.GetCharacterOrdersResponse, Types.GetCharacterOrdersResponseHeaders>>;
|
|
343
345
|
/**
|
|
344
346
|
* List cancelled and expired market orders placed by a character up to 90 days in the past.
|
|
345
347
|
|
|
346
348
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdOrdersHistory
|
|
347
349
|
*/
|
|
348
|
-
getCharacterOrdersHistory(params: Types.GetCharacterOrdersHistoryParams): Promise<Types.EsiResponse<Types.GetCharacterOrdersHistoryResponse>>;
|
|
350
|
+
getCharacterOrdersHistory(params: Types.GetCharacterOrdersHistoryParams): Promise<Types.EsiResponse<Types.GetCharacterOrdersHistoryResponse, Types.GetCharacterOrdersHistoryResponseHeaders>>;
|
|
349
351
|
/**
|
|
350
352
|
* Returns a list of all planetary colonies owned by a character.
|
|
351
353
|
|
|
352
354
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdPlanets
|
|
353
355
|
*/
|
|
354
|
-
getCharacterPlanets(params: Types.GetCharacterPlanetsParams): Promise<Types.EsiResponse<Types.GetCharacterPlanetsResponse>>;
|
|
356
|
+
getCharacterPlanets(params: Types.GetCharacterPlanetsParams): Promise<Types.EsiResponse<Types.GetCharacterPlanetsResponse, Types.GetCharacterPlanetsResponseHeaders>>;
|
|
355
357
|
/**
|
|
356
358
|
* Returns full details on the layout of a single planetary colony, including links, pins and routes. Note: Planetary information is only recalculated when the colony is viewed through the client. Information will not update until this criteria is met.
|
|
357
359
|
|
|
358
360
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdPlanetsPlanetId
|
|
359
361
|
*/
|
|
360
|
-
getCharacterPlanet(params: Types.GetCharacterPlanetParams): Promise<Types.EsiResponse<Types.GetCharacterPlanetResponse>>;
|
|
362
|
+
getCharacterPlanet(params: Types.GetCharacterPlanetParams): Promise<Types.EsiResponse<Types.GetCharacterPlanetResponse, Types.GetCharacterPlanetResponseHeaders>>;
|
|
361
363
|
/**
|
|
362
364
|
* Get portrait urls for a character
|
|
363
365
|
|
|
@@ -365,85 +367,85 @@ export declare class EsiClient {
|
|
|
365
367
|
|
|
366
368
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdPortrait
|
|
367
369
|
*/
|
|
368
|
-
getCharacterPortrait(params: Types.GetCharacterPortraitParams): Promise<Types.EsiResponse<Types.GetCharacterPortraitResponse>>;
|
|
370
|
+
getCharacterPortrait(params: Types.GetCharacterPortraitParams): Promise<Types.EsiResponse<Types.GetCharacterPortraitResponse, Types.GetCharacterPortraitResponseHeaders>>;
|
|
369
371
|
/**
|
|
370
372
|
* Returns a character's corporation roles
|
|
371
373
|
|
|
372
374
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdRoles
|
|
373
375
|
*/
|
|
374
|
-
getCharacterRoles(params: Types.GetCharacterRolesParams): Promise<Types.EsiResponse<Types.GetCharacterRolesResponse>>;
|
|
376
|
+
getCharacterRoles(params: Types.GetCharacterRolesParams): Promise<Types.EsiResponse<Types.GetCharacterRolesResponse, Types.GetCharacterRolesResponseHeaders>>;
|
|
375
377
|
/**
|
|
376
378
|
* Search for entities that match a given sub-string.
|
|
377
379
|
|
|
378
380
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdSearch
|
|
379
381
|
*/
|
|
380
|
-
getCharacterSearch(params: Types.GetCharacterSearchParams): Promise<Types.EsiResponse<Types.GetCharacterSearchResponse>>;
|
|
382
|
+
getCharacterSearch(params: Types.GetCharacterSearchParams): Promise<Types.EsiResponse<Types.GetCharacterSearchResponse, Types.GetCharacterSearchResponseHeaders>>;
|
|
381
383
|
/**
|
|
382
384
|
* Get the current ship type, name and id
|
|
383
385
|
|
|
384
386
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdShip
|
|
385
387
|
*/
|
|
386
|
-
getCharacterShip(params: Types.GetCharacterShipParams): Promise<Types.EsiResponse<Types.GetCharacterShipResponse>>;
|
|
388
|
+
getCharacterShip(params: Types.GetCharacterShipParams): Promise<Types.EsiResponse<Types.GetCharacterShipResponse, Types.GetCharacterShipResponseHeaders>>;
|
|
387
389
|
/**
|
|
388
390
|
* List the configured skill queue for the given character
|
|
389
391
|
|
|
390
392
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdSkillqueue
|
|
391
393
|
*/
|
|
392
|
-
getCharacterSkillqueue(params: Types.GetCharacterSkillqueueParams): Promise<Types.EsiResponse<Types.GetCharacterSkillqueueResponse>>;
|
|
394
|
+
getCharacterSkillqueue(params: Types.GetCharacterSkillqueueParams): Promise<Types.EsiResponse<Types.GetCharacterSkillqueueResponse, Types.GetCharacterSkillqueueResponseHeaders>>;
|
|
393
395
|
/**
|
|
394
396
|
* List all trained skills for the given character
|
|
395
397
|
|
|
396
398
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdSkills
|
|
397
399
|
*/
|
|
398
|
-
getCharacterSkills(params: Types.GetCharacterSkillsParams): Promise<Types.EsiResponse<Types.GetCharacterSkillsResponse>>;
|
|
400
|
+
getCharacterSkills(params: Types.GetCharacterSkillsParams): Promise<Types.EsiResponse<Types.GetCharacterSkillsResponse, Types.GetCharacterSkillsResponseHeaders>>;
|
|
399
401
|
/**
|
|
400
402
|
* Return character standings from agents, NPC corporations, and factions
|
|
401
403
|
|
|
402
404
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdStandings
|
|
403
405
|
*/
|
|
404
|
-
getCharacterStandings(params: Types.GetCharacterStandingsParams): Promise<Types.EsiResponse<Types.GetCharacterStandingsResponse>>;
|
|
406
|
+
getCharacterStandings(params: Types.GetCharacterStandingsParams): Promise<Types.EsiResponse<Types.GetCharacterStandingsResponse, Types.GetCharacterStandingsResponseHeaders>>;
|
|
405
407
|
/**
|
|
406
408
|
* Returns a character's titles
|
|
407
409
|
|
|
408
410
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdTitles
|
|
409
411
|
*/
|
|
410
|
-
getCharacterTitles(params: Types.GetCharacterTitlesParams): Promise<Types.EsiResponse<Types.GetCharacterTitlesResponse>>;
|
|
412
|
+
getCharacterTitles(params: Types.GetCharacterTitlesParams): Promise<Types.EsiResponse<Types.GetCharacterTitlesResponse, Types.GetCharacterTitlesResponseHeaders>>;
|
|
411
413
|
/**
|
|
412
414
|
* Returns a character's wallet balance
|
|
413
415
|
|
|
414
416
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdWallet
|
|
415
417
|
*/
|
|
416
|
-
getCharacterWallet(params: Types.GetCharacterWalletParams): Promise<Types.EsiResponse<Types.
|
|
418
|
+
getCharacterWallet(params: Types.GetCharacterWalletParams): Promise<Types.EsiResponse<number, Types.GetCharacterWalletResponseHeaders>>;
|
|
417
419
|
/**
|
|
418
420
|
* Retrieve the given character's wallet journal going 30 days back
|
|
419
421
|
|
|
420
422
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdWalletJournal
|
|
421
423
|
*/
|
|
422
|
-
getCharacterWalletJournal(params: Types.GetCharacterWalletJournalParams): Promise<Types.EsiResponse<Types.GetCharacterWalletJournalResponse>>;
|
|
424
|
+
getCharacterWalletJournal(params: Types.GetCharacterWalletJournalParams): Promise<Types.EsiResponse<Types.GetCharacterWalletJournalResponse, Types.GetCharacterWalletJournalResponseHeaders>>;
|
|
423
425
|
/**
|
|
424
426
|
* Get wallet transactions of a character
|
|
425
427
|
|
|
426
428
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdWalletTransactions
|
|
427
429
|
*/
|
|
428
|
-
getCharacterWalletTransactions(params: Types.GetCharacterWalletTransactionsParams): Promise<Types.EsiResponse<Types.GetCharacterWalletTransactionsResponse>>;
|
|
430
|
+
getCharacterWalletTransactions(params: Types.GetCharacterWalletTransactionsParams): Promise<Types.EsiResponse<Types.GetCharacterWalletTransactionsResponse, Types.GetCharacterWalletTransactionsResponseHeaders>>;
|
|
429
431
|
/**
|
|
430
432
|
* Lists bids on a public auction contract
|
|
431
433
|
|
|
432
434
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetContractsPublicBidsContractId
|
|
433
435
|
*/
|
|
434
|
-
getContractsPublicBids(params: Types.GetContractsPublicBidsParams): Promise<Types.EsiResponse<Types.GetContractsPublicBidsResponse>>;
|
|
436
|
+
getContractsPublicBids(params: Types.GetContractsPublicBidsParams): Promise<Types.EsiResponse<Types.GetContractsPublicBidsResponse, Types.GetContractsPublicBidsResponseHeaders>>;
|
|
435
437
|
/**
|
|
436
438
|
* Lists items of a public contract
|
|
437
439
|
|
|
438
440
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetContractsPublicItemsContractId
|
|
439
441
|
*/
|
|
440
|
-
getContractsPublicItems(params: Types.GetContractsPublicItemsParams): Promise<Types.EsiResponse<Types.GetContractsPublicItemsResponse>>;
|
|
442
|
+
getContractsPublicItems(params: Types.GetContractsPublicItemsParams): Promise<Types.EsiResponse<Types.GetContractsPublicItemsResponse, Types.GetContractsPublicItemsResponseHeaders>>;
|
|
441
443
|
/**
|
|
442
444
|
* Returns a paginated list of all public contracts in the given region
|
|
443
445
|
|
|
444
446
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetContractsPublicRegionId
|
|
445
447
|
*/
|
|
446
|
-
getContractsPublicRegionId(params: Types.GetContractsPublicRegionIdParams): Promise<Types.EsiResponse<Types.GetContractsPublicRegionIdResponse>>;
|
|
448
|
+
getContractsPublicRegionId(params: Types.GetContractsPublicRegionIdParams): Promise<Types.EsiResponse<Types.GetContractsPublicRegionIdResponse, Types.GetContractsPublicRegionIdResponseHeaders>>;
|
|
447
449
|
/**
|
|
448
450
|
* Extraction timers for all moon chunks being extracted by refineries belonging to a corporation.
|
|
449
451
|
|
|
@@ -451,7 +453,7 @@ export declare class EsiClient {
|
|
|
451
453
|
|
|
452
454
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationCorporationIdMiningExtractions
|
|
453
455
|
*/
|
|
454
|
-
getCorporationCorporationMiningExtractions(params: Types.GetCorporationCorporationMiningExtractionsParams): Promise<Types.EsiResponse<Types.GetCorporationCorporationMiningExtractionsResponse>>;
|
|
456
|
+
getCorporationCorporationMiningExtractions(params: Types.GetCorporationCorporationMiningExtractionsParams): Promise<Types.EsiResponse<Types.GetCorporationCorporationMiningExtractionsResponse, Types.GetCorporationCorporationMiningExtractionsResponseHeaders>>;
|
|
455
457
|
/**
|
|
456
458
|
* Paginated list of all entities capable of observing and recording mining for a corporation
|
|
457
459
|
|
|
@@ -459,7 +461,7 @@ export declare class EsiClient {
|
|
|
459
461
|
|
|
460
462
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationCorporationIdMiningObservers
|
|
461
463
|
*/
|
|
462
|
-
getCorporationCorporationMiningObservers(params: Types.GetCorporationCorporationMiningObserversParams): Promise<Types.EsiResponse<Types.GetCorporationCorporationMiningObserversResponse>>;
|
|
464
|
+
getCorporationCorporationMiningObservers(params: Types.GetCorporationCorporationMiningObserversParams): Promise<Types.EsiResponse<Types.GetCorporationCorporationMiningObserversResponse, Types.GetCorporationCorporationMiningObserversResponseHeaders>>;
|
|
463
465
|
/**
|
|
464
466
|
* Paginated record of all mining seen by an observer
|
|
465
467
|
|
|
@@ -467,7 +469,7 @@ export declare class EsiClient {
|
|
|
467
469
|
|
|
468
470
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationCorporationIdMiningObserversObserverId
|
|
469
471
|
*/
|
|
470
|
-
getCorporationCorporationMiningObserver(params: Types.GetCorporationCorporationMiningObserverParams): Promise<Types.EsiResponse<Types.GetCorporationCorporationMiningObserverResponse>>;
|
|
472
|
+
getCorporationCorporationMiningObserver(params: Types.GetCorporationCorporationMiningObserverParams): Promise<Types.EsiResponse<Types.GetCorporationCorporationMiningObserverResponse, Types.GetCorporationCorporationMiningObserverResponseHeaders>>;
|
|
471
473
|
/**
|
|
472
474
|
* Get a list of npc corporations
|
|
473
475
|
|
|
@@ -475,19 +477,19 @@ export declare class EsiClient {
|
|
|
475
477
|
|
|
476
478
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsNpccorps
|
|
477
479
|
*/
|
|
478
|
-
getCorporationsNpccorps(): Promise<Types.EsiResponse<Types.GetCorporationsNpccorpsResponse>>;
|
|
480
|
+
getCorporationsNpccorps(): Promise<Types.EsiResponse<Types.GetCorporationsNpccorpsResponse, Types.GetCorporationsNpccorpsResponseHeaders>>;
|
|
479
481
|
/**
|
|
480
482
|
* Public information about a corporation
|
|
481
483
|
|
|
482
484
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationId
|
|
483
485
|
*/
|
|
484
|
-
getCorporation(params: Types.GetCorporationParams): Promise<Types.EsiResponse<Types.GetCorporationResponse>>;
|
|
486
|
+
getCorporation(params: Types.GetCorporationParams): Promise<Types.EsiResponse<Types.GetCorporationResponse, Types.GetCorporationResponseHeaders>>;
|
|
485
487
|
/**
|
|
486
488
|
* Get a list of all the alliances a corporation has been a member of
|
|
487
489
|
|
|
488
490
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdAlliancehistory
|
|
489
491
|
*/
|
|
490
|
-
getCorporationAlliancehistory(params: Types.GetCorporationAlliancehistoryParams): Promise<Types.EsiResponse<Types.GetCorporationAlliancehistoryResponse>>;
|
|
492
|
+
getCorporationAlliancehistory(params: Types.GetCorporationAlliancehistoryParams): Promise<Types.EsiResponse<Types.GetCorporationAlliancehistoryResponse, Types.GetCorporationAlliancehistoryResponseHeaders>>;
|
|
491
493
|
/**
|
|
492
494
|
* Return a list of the corporation assets
|
|
493
495
|
|
|
@@ -495,7 +497,7 @@ export declare class EsiClient {
|
|
|
495
497
|
|
|
496
498
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdAssets
|
|
497
499
|
*/
|
|
498
|
-
getCorporationAssets(params: Types.GetCorporationAssetsParams): Promise<Types.EsiResponse<Types.GetCorporationAssetsResponse>>;
|
|
500
|
+
getCorporationAssets(params: Types.GetCorporationAssetsParams): Promise<Types.EsiResponse<Types.GetCorporationAssetsResponse, Types.GetCorporationAssetsResponseHeaders>>;
|
|
499
501
|
/**
|
|
500
502
|
* Return locations for a set of item ids, which you can get from corporation assets endpoint. Coordinates for items in hangars or stations are set to (0,0,0)
|
|
501
503
|
|
|
@@ -503,7 +505,7 @@ export declare class EsiClient {
|
|
|
503
505
|
|
|
504
506
|
* @see https://developers.eveonline.com/api-explorer#/operations/PostCorporationsCorporationIdAssetsLocations
|
|
505
507
|
*/
|
|
506
|
-
postCorporationAssetsLocations(params: Types.PostCorporationAssetsLocationsParams): Promise<Types.EsiResponse<Types.PostCorporationAssetsLocationsResponse>>;
|
|
508
|
+
postCorporationAssetsLocations(params: Types.PostCorporationAssetsLocationsParams): Promise<Types.EsiResponse<Types.PostCorporationAssetsLocationsResponse, Types.PostCorporationAssetsLocationsResponseHeaders>>;
|
|
507
509
|
/**
|
|
508
510
|
* Return names for a set of item ids, which you can get from corporation assets endpoint. Only valid for items that can customize names, like containers or ships
|
|
509
511
|
|
|
@@ -511,7 +513,7 @@ export declare class EsiClient {
|
|
|
511
513
|
|
|
512
514
|
* @see https://developers.eveonline.com/api-explorer#/operations/PostCorporationsCorporationIdAssetsNames
|
|
513
515
|
*/
|
|
514
|
-
postCorporationAssetsNames(params: Types.PostCorporationAssetsNamesParams): Promise<Types.EsiResponse<Types.PostCorporationAssetsNamesResponse>>;
|
|
516
|
+
postCorporationAssetsNames(params: Types.PostCorporationAssetsNamesParams): Promise<Types.EsiResponse<Types.PostCorporationAssetsNamesResponse, Types.PostCorporationAssetsNamesResponseHeaders>>;
|
|
515
517
|
/**
|
|
516
518
|
* Returns a list of blueprints the corporation owns
|
|
517
519
|
|
|
@@ -519,19 +521,19 @@ export declare class EsiClient {
|
|
|
519
521
|
|
|
520
522
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdBlueprints
|
|
521
523
|
*/
|
|
522
|
-
getCorporationBlueprints(params: Types.GetCorporationBlueprintsParams): Promise<Types.EsiResponse<Types.GetCorporationBlueprintsResponse>>;
|
|
524
|
+
getCorporationBlueprints(params: Types.GetCorporationBlueprintsParams): Promise<Types.EsiResponse<Types.GetCorporationBlueprintsResponse, Types.GetCorporationBlueprintsResponseHeaders>>;
|
|
523
525
|
/**
|
|
524
526
|
* Return contacts of a corporation
|
|
525
527
|
|
|
526
528
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdContacts
|
|
527
529
|
*/
|
|
528
|
-
getCorporationContacts(params: Types.GetCorporationContactsParams): Promise<Types.EsiResponse<Types.GetCorporationContactsResponse>>;
|
|
530
|
+
getCorporationContacts(params: Types.GetCorporationContactsParams): Promise<Types.EsiResponse<Types.GetCorporationContactsResponse, Types.GetCorporationContactsResponseHeaders>>;
|
|
529
531
|
/**
|
|
530
532
|
* Return custom labels for a corporation's contacts
|
|
531
533
|
|
|
532
534
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdContactsLabels
|
|
533
535
|
*/
|
|
534
|
-
getCorporationContactsLabels(params: Types.GetCorporationContactsLabelsParams): Promise<Types.EsiResponse<Types.GetCorporationContactsLabelsResponse>>;
|
|
536
|
+
getCorporationContactsLabels(params: Types.GetCorporationContactsLabelsParams): Promise<Types.EsiResponse<Types.GetCorporationContactsLabelsResponse, Types.GetCorporationContactsLabelsResponseHeaders>>;
|
|
535
537
|
/**
|
|
536
538
|
* Returns logs recorded in the past seven days from all audit log secure containers (ALSC) owned by a given corporation
|
|
537
539
|
|
|
@@ -539,25 +541,25 @@ export declare class EsiClient {
|
|
|
539
541
|
|
|
540
542
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdContainersLogs
|
|
541
543
|
*/
|
|
542
|
-
getCorporationContainersLogs(params: Types.GetCorporationContainersLogsParams): Promise<Types.EsiResponse<Types.GetCorporationContainersLogsResponse>>;
|
|
544
|
+
getCorporationContainersLogs(params: Types.GetCorporationContainersLogsParams): Promise<Types.EsiResponse<Types.GetCorporationContainersLogsResponse, Types.GetCorporationContainersLogsResponseHeaders>>;
|
|
543
545
|
/**
|
|
544
546
|
* Returns contracts available to a corporation, only if the corporation is issuer, acceptor or assignee. Only returns contracts no older than 30 days, or if the status is "in_progress".
|
|
545
547
|
|
|
546
548
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdContracts
|
|
547
549
|
*/
|
|
548
|
-
getCorporationContracts(params: Types.GetCorporationContractsParams): Promise<Types.EsiResponse<Types.GetCorporationContractsResponse>>;
|
|
550
|
+
getCorporationContracts(params: Types.GetCorporationContractsParams): Promise<Types.EsiResponse<Types.GetCorporationContractsResponse, Types.GetCorporationContractsResponseHeaders>>;
|
|
549
551
|
/**
|
|
550
552
|
* Lists bids on a particular auction contract
|
|
551
553
|
|
|
552
554
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdContractsContractIdBids
|
|
553
555
|
*/
|
|
554
|
-
getCorporationContractBids(params: Types.GetCorporationContractBidsParams): Promise<Types.EsiResponse<Types.GetCorporationContractBidsResponse>>;
|
|
556
|
+
getCorporationContractBids(params: Types.GetCorporationContractBidsParams): Promise<Types.EsiResponse<Types.GetCorporationContractBidsResponse, Types.GetCorporationContractBidsResponseHeaders>>;
|
|
555
557
|
/**
|
|
556
558
|
* Lists items of a particular contract
|
|
557
559
|
|
|
558
560
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdContractsContractIdItems
|
|
559
561
|
*/
|
|
560
|
-
getCorporationContractItems(params: Types.GetCorporationContractItemsParams): Promise<Types.EsiResponse<Types.GetCorporationContractItemsResponse>>;
|
|
562
|
+
getCorporationContractItems(params: Types.GetCorporationContractItemsParams): Promise<Types.EsiResponse<Types.GetCorporationContractItemsResponse, Types.GetCorporationContractItemsResponseHeaders>>;
|
|
561
563
|
/**
|
|
562
564
|
* List customs offices owned by a corporation
|
|
563
565
|
|
|
@@ -565,7 +567,7 @@ export declare class EsiClient {
|
|
|
565
567
|
|
|
566
568
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdCustomsOffices
|
|
567
569
|
*/
|
|
568
|
-
getCorporationCustomsOffices(params: Types.GetCorporationCustomsOfficesParams): Promise<Types.EsiResponse<Types.GetCorporationCustomsOfficesResponse>>;
|
|
570
|
+
getCorporationCustomsOffices(params: Types.GetCorporationCustomsOfficesParams): Promise<Types.EsiResponse<Types.GetCorporationCustomsOfficesResponse, Types.GetCorporationCustomsOfficesResponseHeaders>>;
|
|
569
571
|
/**
|
|
570
572
|
* Return corporation hangar and wallet division names, only show if a division is not using the default name
|
|
571
573
|
|
|
@@ -573,7 +575,7 @@ export declare class EsiClient {
|
|
|
573
575
|
|
|
574
576
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdDivisions
|
|
575
577
|
*/
|
|
576
|
-
getCorporationDivisions(params: Types.GetCorporationDivisionsParams): Promise<Types.EsiResponse<Types.GetCorporationDivisionsResponse>>;
|
|
578
|
+
getCorporationDivisions(params: Types.GetCorporationDivisionsParams): Promise<Types.EsiResponse<Types.GetCorporationDivisionsResponse, Types.GetCorporationDivisionsResponseHeaders>>;
|
|
577
579
|
/**
|
|
578
580
|
* Return a corporation's facilities
|
|
579
581
|
|
|
@@ -581,7 +583,7 @@ export declare class EsiClient {
|
|
|
581
583
|
|
|
582
584
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdFacilities
|
|
583
585
|
*/
|
|
584
|
-
getCorporationFacilities(params: Types.GetCorporationFacilitiesParams): Promise<Types.EsiResponse<Types.GetCorporationFacilitiesResponse>>;
|
|
586
|
+
getCorporationFacilities(params: Types.GetCorporationFacilitiesParams): Promise<Types.EsiResponse<Types.GetCorporationFacilitiesResponse, Types.GetCorporationFacilitiesResponseHeaders>>;
|
|
585
587
|
/**
|
|
586
588
|
* Statistics about a corporation involved in faction warfare
|
|
587
589
|
|
|
@@ -589,13 +591,13 @@ export declare class EsiClient {
|
|
|
589
591
|
|
|
590
592
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdFwStats
|
|
591
593
|
*/
|
|
592
|
-
getCorporationFwStats(params: Types.GetCorporationFwStatsParams): Promise<Types.EsiResponse<Types.GetCorporationFwStatsResponse>>;
|
|
594
|
+
getCorporationFwStats(params: Types.GetCorporationFwStatsParams): Promise<Types.EsiResponse<Types.GetCorporationFwStatsResponse, Types.GetCorporationFwStatsResponseHeaders>>;
|
|
593
595
|
/**
|
|
594
596
|
* Get the icon urls for a corporation
|
|
595
597
|
|
|
596
598
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdIcons
|
|
597
599
|
*/
|
|
598
|
-
getCorporationIcons(params: Types.GetCorporationIconsParams): Promise<Types.EsiResponse<Types.GetCorporationIconsResponse>>;
|
|
600
|
+
getCorporationIcons(params: Types.GetCorporationIconsParams): Promise<Types.EsiResponse<Types.GetCorporationIconsResponse, Types.GetCorporationIconsResponseHeaders>>;
|
|
599
601
|
/**
|
|
600
602
|
* List industry jobs run by a corporation
|
|
601
603
|
|
|
@@ -603,7 +605,7 @@ export declare class EsiClient {
|
|
|
603
605
|
|
|
604
606
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdIndustryJobs
|
|
605
607
|
*/
|
|
606
|
-
getCorporationIndustryJobs(params: Types.GetCorporationIndustryJobsParams): Promise<Types.EsiResponse<Types.GetCorporationIndustryJobsResponse>>;
|
|
608
|
+
getCorporationIndustryJobs(params: Types.GetCorporationIndustryJobsParams): Promise<Types.EsiResponse<Types.GetCorporationIndustryJobsResponse, Types.GetCorporationIndustryJobsResponseHeaders>>;
|
|
607
609
|
/**
|
|
608
610
|
* Get a list of a corporation's kills and losses going back 90 days
|
|
609
611
|
|
|
@@ -611,13 +613,13 @@ export declare class EsiClient {
|
|
|
611
613
|
|
|
612
614
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdKillmailsRecent
|
|
613
615
|
*/
|
|
614
|
-
getCorporationKillmailsRecent(params: Types.GetCorporationKillmailsRecentParams): Promise<Types.EsiResponse<Types.GetCorporationKillmailsRecentResponse>>;
|
|
616
|
+
getCorporationKillmailsRecent(params: Types.GetCorporationKillmailsRecentParams): Promise<Types.EsiResponse<Types.GetCorporationKillmailsRecentResponse, Types.GetCorporationKillmailsRecentResponseHeaders>>;
|
|
615
617
|
/**
|
|
616
618
|
* Returns a corporation's medals
|
|
617
619
|
|
|
618
620
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdMedals
|
|
619
621
|
*/
|
|
620
|
-
getCorporationMedals(params: Types.GetCorporationMedalsParams): Promise<Types.EsiResponse<Types.GetCorporationMedalsResponse>>;
|
|
622
|
+
getCorporationMedals(params: Types.GetCorporationMedalsParams): Promise<Types.EsiResponse<Types.GetCorporationMedalsResponse, Types.GetCorporationMedalsResponseHeaders>>;
|
|
621
623
|
/**
|
|
622
624
|
* Returns medals issued by a corporation
|
|
623
625
|
|
|
@@ -625,13 +627,13 @@ export declare class EsiClient {
|
|
|
625
627
|
|
|
626
628
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdMedalsIssued
|
|
627
629
|
*/
|
|
628
|
-
getCorporationMedalsIssued(params: Types.GetCorporationMedalsIssuedParams): Promise<Types.EsiResponse<Types.GetCorporationMedalsIssuedResponse>>;
|
|
630
|
+
getCorporationMedalsIssued(params: Types.GetCorporationMedalsIssuedParams): Promise<Types.EsiResponse<Types.GetCorporationMedalsIssuedResponse, Types.GetCorporationMedalsIssuedResponseHeaders>>;
|
|
629
631
|
/**
|
|
630
632
|
* Return the current member list of a corporation, the token's character need to be a member of the corporation.
|
|
631
633
|
|
|
632
634
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdMembers
|
|
633
635
|
*/
|
|
634
|
-
getCorporationMembers(params: Types.GetCorporationMembersParams): Promise<Types.EsiResponse<Types.GetCorporationMembersResponse>>;
|
|
636
|
+
getCorporationMembers(params: Types.GetCorporationMembersParams): Promise<Types.EsiResponse<Types.GetCorporationMembersResponse, Types.GetCorporationMembersResponseHeaders>>;
|
|
635
637
|
/**
|
|
636
638
|
* Return a corporation's member limit, not including CEO himself
|
|
637
639
|
|
|
@@ -639,7 +641,7 @@ export declare class EsiClient {
|
|
|
639
641
|
|
|
640
642
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdMembersLimit
|
|
641
643
|
*/
|
|
642
|
-
getCorporationMembersLimit(params: Types.GetCorporationMembersLimitParams): Promise<Types.EsiResponse<Types.
|
|
644
|
+
getCorporationMembersLimit(params: Types.GetCorporationMembersLimitParams): Promise<Types.EsiResponse<number, Types.GetCorporationMembersLimitResponseHeaders>>;
|
|
643
645
|
/**
|
|
644
646
|
* Returns a corporation's members' titles
|
|
645
647
|
|
|
@@ -647,7 +649,7 @@ export declare class EsiClient {
|
|
|
647
649
|
|
|
648
650
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdMembersTitles
|
|
649
651
|
*/
|
|
650
|
-
getCorporationMembersTitles(params: Types.GetCorporationMembersTitlesParams): Promise<Types.EsiResponse<Types.GetCorporationMembersTitlesResponse>>;
|
|
652
|
+
getCorporationMembersTitles(params: Types.GetCorporationMembersTitlesParams): Promise<Types.EsiResponse<Types.GetCorporationMembersTitlesResponse, Types.GetCorporationMembersTitlesResponseHeaders>>;
|
|
651
653
|
/**
|
|
652
654
|
* Returns additional information about a corporation's members which helps tracking their activities
|
|
653
655
|
|
|
@@ -655,7 +657,7 @@ export declare class EsiClient {
|
|
|
655
657
|
|
|
656
658
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdMembertracking
|
|
657
659
|
*/
|
|
658
|
-
getCorporationMembertracking(params: Types.GetCorporationMembertrackingParams): Promise<Types.EsiResponse<Types.GetCorporationMembertrackingResponse>>;
|
|
660
|
+
getCorporationMembertracking(params: Types.GetCorporationMembertrackingParams): Promise<Types.EsiResponse<Types.GetCorporationMembertrackingResponse, Types.GetCorporationMembertrackingResponseHeaders>>;
|
|
659
661
|
/**
|
|
660
662
|
* List open market orders placed on behalf of a corporation
|
|
661
663
|
|
|
@@ -663,7 +665,7 @@ export declare class EsiClient {
|
|
|
663
665
|
|
|
664
666
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdOrders
|
|
665
667
|
*/
|
|
666
|
-
getCorporationOrders(params: Types.GetCorporationOrdersParams): Promise<Types.EsiResponse<Types.GetCorporationOrdersResponse>>;
|
|
668
|
+
getCorporationOrders(params: Types.GetCorporationOrdersParams): Promise<Types.EsiResponse<Types.GetCorporationOrdersResponse, Types.GetCorporationOrdersResponseHeaders>>;
|
|
667
669
|
/**
|
|
668
670
|
* List cancelled and expired market orders placed on behalf of a corporation up to 90 days in the past.
|
|
669
671
|
|
|
@@ -671,13 +673,13 @@ export declare class EsiClient {
|
|
|
671
673
|
|
|
672
674
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdOrdersHistory
|
|
673
675
|
*/
|
|
674
|
-
getCorporationOrdersHistory(params: Types.GetCorporationOrdersHistoryParams): Promise<Types.EsiResponse<Types.GetCorporationOrdersHistoryResponse>>;
|
|
676
|
+
getCorporationOrdersHistory(params: Types.GetCorporationOrdersHistoryParams): Promise<Types.EsiResponse<Types.GetCorporationOrdersHistoryResponse, Types.GetCorporationOrdersHistoryResponseHeaders>>;
|
|
675
677
|
/**
|
|
676
678
|
* Return the roles of all members if the character has the personnel manager role or any grantable role.
|
|
677
679
|
|
|
678
680
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdRoles
|
|
679
681
|
*/
|
|
680
|
-
getCorporationRoles(params: Types.GetCorporationRolesParams): Promise<Types.EsiResponse<Types.GetCorporationRolesResponse>>;
|
|
682
|
+
getCorporationRoles(params: Types.GetCorporationRolesParams): Promise<Types.EsiResponse<Types.GetCorporationRolesResponse, Types.GetCorporationRolesResponseHeaders>>;
|
|
681
683
|
/**
|
|
682
684
|
* Return how roles have changed for a coporation's members, up to a month
|
|
683
685
|
|
|
@@ -685,7 +687,7 @@ export declare class EsiClient {
|
|
|
685
687
|
|
|
686
688
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdRolesHistory
|
|
687
689
|
*/
|
|
688
|
-
getCorporationRolesHistory(params: Types.GetCorporationRolesHistoryParams): Promise<Types.EsiResponse<Types.GetCorporationRolesHistoryResponse>>;
|
|
690
|
+
getCorporationRolesHistory(params: Types.GetCorporationRolesHistoryParams): Promise<Types.EsiResponse<Types.GetCorporationRolesHistoryResponse, Types.GetCorporationRolesHistoryResponseHeaders>>;
|
|
689
691
|
/**
|
|
690
692
|
* Return the current shareholders of a corporation.
|
|
691
693
|
|
|
@@ -693,13 +695,13 @@ export declare class EsiClient {
|
|
|
693
695
|
|
|
694
696
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdShareholders
|
|
695
697
|
*/
|
|
696
|
-
getCorporationShareholders(params: Types.GetCorporationShareholdersParams): Promise<Types.EsiResponse<Types.GetCorporationShareholdersResponse>>;
|
|
698
|
+
getCorporationShareholders(params: Types.GetCorporationShareholdersParams): Promise<Types.EsiResponse<Types.GetCorporationShareholdersResponse, Types.GetCorporationShareholdersResponseHeaders>>;
|
|
697
699
|
/**
|
|
698
700
|
* Return corporation standings from agents, NPC corporations, and factions
|
|
699
701
|
|
|
700
702
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdStandings
|
|
701
703
|
*/
|
|
702
|
-
getCorporationStandings(params: Types.GetCorporationStandingsParams): Promise<Types.EsiResponse<Types.GetCorporationStandingsResponse>>;
|
|
704
|
+
getCorporationStandings(params: Types.GetCorporationStandingsParams): Promise<Types.EsiResponse<Types.GetCorporationStandingsResponse, Types.GetCorporationStandingsResponseHeaders>>;
|
|
703
705
|
/**
|
|
704
706
|
* Returns list of corporation starbases (POSes)
|
|
705
707
|
|
|
@@ -707,7 +709,7 @@ export declare class EsiClient {
|
|
|
707
709
|
|
|
708
710
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdStarbases
|
|
709
711
|
*/
|
|
710
|
-
getCorporationStarbases(params: Types.GetCorporationStarbasesParams): Promise<Types.EsiResponse<Types.GetCorporationStarbasesResponse>>;
|
|
712
|
+
getCorporationStarbases(params: Types.GetCorporationStarbasesParams): Promise<Types.EsiResponse<Types.GetCorporationStarbasesResponse, Types.GetCorporationStarbasesResponseHeaders>>;
|
|
711
713
|
/**
|
|
712
714
|
* Returns various settings and fuels of a starbase (POS)
|
|
713
715
|
|
|
@@ -715,7 +717,7 @@ export declare class EsiClient {
|
|
|
715
717
|
|
|
716
718
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdStarbasesStarbaseId
|
|
717
719
|
*/
|
|
718
|
-
getCorporationStarbase(params: Types.GetCorporationStarbaseParams): Promise<Types.EsiResponse<Types.GetCorporationStarbaseResponse>>;
|
|
720
|
+
getCorporationStarbase(params: Types.GetCorporationStarbaseParams): Promise<Types.EsiResponse<Types.GetCorporationStarbaseResponse, Types.GetCorporationStarbaseResponseHeaders>>;
|
|
719
721
|
/**
|
|
720
722
|
* Get a list of corporation structures. This route's version includes the changes to structures detailed in this blog: https://www.eveonline.com/article/upwell-2.0-structures-changes-coming-on-february-13th
|
|
721
723
|
|
|
@@ -723,7 +725,7 @@ export declare class EsiClient {
|
|
|
723
725
|
|
|
724
726
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdStructures
|
|
725
727
|
*/
|
|
726
|
-
getCorporationStructures(params: Types.GetCorporationStructuresParams): Promise<Types.EsiResponse<Types.GetCorporationStructuresResponse>>;
|
|
728
|
+
getCorporationStructures(params: Types.GetCorporationStructuresParams): Promise<Types.EsiResponse<Types.GetCorporationStructuresResponse, Types.GetCorporationStructuresResponseHeaders>>;
|
|
727
729
|
/**
|
|
728
730
|
* Returns a corporation's titles
|
|
729
731
|
|
|
@@ -731,7 +733,7 @@ export declare class EsiClient {
|
|
|
731
733
|
|
|
732
734
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdTitles
|
|
733
735
|
*/
|
|
734
|
-
getCorporationTitles(params: Types.GetCorporationTitlesParams): Promise<Types.EsiResponse<Types.GetCorporationTitlesResponse>>;
|
|
736
|
+
getCorporationTitles(params: Types.GetCorporationTitlesParams): Promise<Types.EsiResponse<Types.GetCorporationTitlesResponse, Types.GetCorporationTitlesResponseHeaders>>;
|
|
735
737
|
/**
|
|
736
738
|
* Get a corporation's wallets
|
|
737
739
|
|
|
@@ -739,7 +741,7 @@ export declare class EsiClient {
|
|
|
739
741
|
|
|
740
742
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdWallets
|
|
741
743
|
*/
|
|
742
|
-
getCorporationWallets(params: Types.GetCorporationWalletsParams): Promise<Types.EsiResponse<Types.GetCorporationWalletsResponse>>;
|
|
744
|
+
getCorporationWallets(params: Types.GetCorporationWalletsParams): Promise<Types.EsiResponse<Types.GetCorporationWalletsResponse, Types.GetCorporationWalletsResponseHeaders>>;
|
|
743
745
|
/**
|
|
744
746
|
* Retrieve the given corporation's wallet journal for the given division going 30 days back
|
|
745
747
|
|
|
@@ -747,7 +749,7 @@ export declare class EsiClient {
|
|
|
747
749
|
|
|
748
750
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdWalletsDivisionJournal
|
|
749
751
|
*/
|
|
750
|
-
getCorporationWalletsDivisionJournal(params: Types.GetCorporationWalletsDivisionJournalParams): Promise<Types.EsiResponse<Types.GetCorporationWalletsDivisionJournalResponse>>;
|
|
752
|
+
getCorporationWalletsDivisionJournal(params: Types.GetCorporationWalletsDivisionJournalParams): Promise<Types.EsiResponse<Types.GetCorporationWalletsDivisionJournalResponse, Types.GetCorporationWalletsDivisionJournalResponseHeaders>>;
|
|
751
753
|
/**
|
|
752
754
|
* Get wallet transactions of a corporation
|
|
753
755
|
|
|
@@ -755,7 +757,7 @@ export declare class EsiClient {
|
|
|
755
757
|
|
|
756
758
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdWalletsDivisionTransactions
|
|
757
759
|
*/
|
|
758
|
-
getCorporationWalletsDivisionTransactions(params: Types.GetCorporationWalletsDivisionTransactionsParams): Promise<Types.EsiResponse<Types.GetCorporationWalletsDivisionTransactionsResponse>>;
|
|
760
|
+
getCorporationWalletsDivisionTransactions(params: Types.GetCorporationWalletsDivisionTransactionsParams): Promise<Types.EsiResponse<Types.GetCorporationWalletsDivisionTransactionsResponse, Types.GetCorporationWalletsDivisionTransactionsResponseHeaders>>;
|
|
759
761
|
/**
|
|
760
762
|
* Get a list of dogma attribute ids
|
|
761
763
|
|
|
@@ -763,7 +765,7 @@ export declare class EsiClient {
|
|
|
763
765
|
|
|
764
766
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetDogmaAttributes
|
|
765
767
|
*/
|
|
766
|
-
getDogmaAttributes(): Promise<Types.EsiResponse<Types.GetDogmaAttributesResponse>>;
|
|
768
|
+
getDogmaAttributes(): Promise<Types.EsiResponse<Types.GetDogmaAttributesResponse, Types.GetDogmaAttributesResponseHeaders>>;
|
|
767
769
|
/**
|
|
768
770
|
* Get information on a dogma attribute
|
|
769
771
|
|
|
@@ -771,7 +773,7 @@ export declare class EsiClient {
|
|
|
771
773
|
|
|
772
774
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetDogmaAttributesAttributeId
|
|
773
775
|
*/
|
|
774
|
-
getDogmaAttribute(params: Types.GetDogmaAttributeParams): Promise<Types.EsiResponse<Types.GetDogmaAttributeResponse>>;
|
|
776
|
+
getDogmaAttribute(params: Types.GetDogmaAttributeParams): Promise<Types.EsiResponse<Types.GetDogmaAttributeResponse, Types.GetDogmaAttributeResponseHeaders>>;
|
|
775
777
|
/**
|
|
776
778
|
* Returns info about a dynamic item resulting from mutation with a mutaplasmid.
|
|
777
779
|
|
|
@@ -779,7 +781,7 @@ export declare class EsiClient {
|
|
|
779
781
|
|
|
780
782
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetDogmaDynamicItemsTypeIdItemId
|
|
781
783
|
*/
|
|
782
|
-
getDogmaDynamicTypeItemId(params: Types.GetDogmaDynamicTypeItemIdParams): Promise<Types.EsiResponse<Types.GetDogmaDynamicTypeItemIdResponse>>;
|
|
784
|
+
getDogmaDynamicTypeItemId(params: Types.GetDogmaDynamicTypeItemIdParams): Promise<Types.EsiResponse<Types.GetDogmaDynamicTypeItemIdResponse, Types.GetDogmaDynamicTypeItemIdResponseHeaders>>;
|
|
783
785
|
/**
|
|
784
786
|
* Get a list of dogma effect ids
|
|
785
787
|
|
|
@@ -787,7 +789,7 @@ export declare class EsiClient {
|
|
|
787
789
|
|
|
788
790
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetDogmaEffects
|
|
789
791
|
*/
|
|
790
|
-
getDogmaEffects(): Promise<Types.EsiResponse<Types.GetDogmaEffectsResponse>>;
|
|
792
|
+
getDogmaEffects(): Promise<Types.EsiResponse<Types.GetDogmaEffectsResponse, Types.GetDogmaEffectsResponseHeaders>>;
|
|
791
793
|
/**
|
|
792
794
|
* Get information on a dogma effect
|
|
793
795
|
|
|
@@ -795,85 +797,85 @@ export declare class EsiClient {
|
|
|
795
797
|
|
|
796
798
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetDogmaEffectsEffectId
|
|
797
799
|
*/
|
|
798
|
-
getDogmaEffect(params: Types.GetDogmaEffectParams): Promise<Types.EsiResponse<Types.GetDogmaEffectResponse>>;
|
|
800
|
+
getDogmaEffect(params: Types.GetDogmaEffectParams): Promise<Types.EsiResponse<Types.GetDogmaEffectResponse, Types.GetDogmaEffectResponseHeaders>>;
|
|
799
801
|
/**
|
|
800
802
|
* Return details about a fleet
|
|
801
803
|
|
|
802
804
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetFleetsFleetId
|
|
803
805
|
*/
|
|
804
|
-
getFleet(params: Types.GetFleetParams): Promise<Types.EsiResponse<Types.GetFleetResponse>>;
|
|
806
|
+
getFleet(params: Types.GetFleetParams): Promise<Types.EsiResponse<Types.GetFleetResponse, Types.GetFleetResponseHeaders>>;
|
|
805
807
|
/**
|
|
806
808
|
* Update settings about a fleet
|
|
807
809
|
|
|
808
810
|
* @see https://developers.eveonline.com/api-explorer#/operations/PutFleetsFleetId
|
|
809
811
|
*/
|
|
810
|
-
putFleet(params: Types.PutFleetParams): Promise<Types.EsiResponse<Types.
|
|
812
|
+
putFleet(params: Types.PutFleetParams): Promise<Types.EsiResponse<unknown, Types.PutFleetResponseHeaders>>;
|
|
811
813
|
/**
|
|
812
814
|
* Return information about fleet members
|
|
813
815
|
|
|
814
816
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetFleetsFleetIdMembers
|
|
815
817
|
*/
|
|
816
|
-
getFleetMembers(params: Types.GetFleetMembersParams): Promise<Types.EsiResponse<Types.GetFleetMembersResponse>>;
|
|
818
|
+
getFleetMembers(params: Types.GetFleetMembersParams): Promise<Types.EsiResponse<Types.GetFleetMembersResponse, Types.GetFleetMembersResponseHeaders>>;
|
|
817
819
|
/**
|
|
818
820
|
* Invite a character into the fleet. If a character has a CSPA charge set it is not possible to invite them to the fleet using ESI
|
|
819
821
|
|
|
820
822
|
* @see https://developers.eveonline.com/api-explorer#/operations/PostFleetsFleetIdMembers
|
|
821
823
|
*/
|
|
822
|
-
postFleetMembers(params: Types.PostFleetMembersParams): Promise<Types.EsiResponse<Types.
|
|
824
|
+
postFleetMembers(params: Types.PostFleetMembersParams): Promise<Types.EsiResponse<unknown, Types.PostFleetMembersResponseHeaders>>;
|
|
823
825
|
/**
|
|
824
826
|
* Kick a fleet member
|
|
825
827
|
|
|
826
828
|
* @see https://developers.eveonline.com/api-explorer#/operations/DeleteFleetsFleetIdMembersMemberId
|
|
827
829
|
*/
|
|
828
|
-
deleteFleetMember(params: Types.DeleteFleetMemberParams): Promise<Types.EsiResponse<Types.
|
|
830
|
+
deleteFleetMember(params: Types.DeleteFleetMemberParams): Promise<Types.EsiResponse<unknown, Types.DeleteFleetMemberResponseHeaders>>;
|
|
829
831
|
/**
|
|
830
832
|
* Move a fleet member around
|
|
831
833
|
|
|
832
834
|
* @see https://developers.eveonline.com/api-explorer#/operations/PutFleetsFleetIdMembersMemberId
|
|
833
835
|
*/
|
|
834
|
-
putFleetMember(params: Types.PutFleetMemberParams): Promise<Types.EsiResponse<Types.
|
|
836
|
+
putFleetMember(params: Types.PutFleetMemberParams): Promise<Types.EsiResponse<unknown, Types.PutFleetMemberResponseHeaders>>;
|
|
835
837
|
/**
|
|
836
838
|
* Delete a fleet squad, only empty squads can be deleted
|
|
837
839
|
|
|
838
840
|
* @see https://developers.eveonline.com/api-explorer#/operations/DeleteFleetsFleetIdSquadsSquadId
|
|
839
841
|
*/
|
|
840
|
-
deleteFleetSquad(params: Types.DeleteFleetSquadParams): Promise<Types.EsiResponse<Types.
|
|
842
|
+
deleteFleetSquad(params: Types.DeleteFleetSquadParams): Promise<Types.EsiResponse<unknown, Types.DeleteFleetSquadResponseHeaders>>;
|
|
841
843
|
/**
|
|
842
844
|
* Rename a fleet squad
|
|
843
845
|
|
|
844
846
|
* @see https://developers.eveonline.com/api-explorer#/operations/PutFleetsFleetIdSquadsSquadId
|
|
845
847
|
*/
|
|
846
|
-
putFleetSquad(params: Types.PutFleetSquadParams): Promise<Types.EsiResponse<Types.
|
|
848
|
+
putFleetSquad(params: Types.PutFleetSquadParams): Promise<Types.EsiResponse<unknown, Types.PutFleetSquadResponseHeaders>>;
|
|
847
849
|
/**
|
|
848
850
|
* Return information about wings in a fleet
|
|
849
851
|
|
|
850
852
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetFleetsFleetIdWings
|
|
851
853
|
*/
|
|
852
|
-
getFleetWings(params: Types.GetFleetWingsParams): Promise<Types.EsiResponse<Types.GetFleetWingsResponse>>;
|
|
854
|
+
getFleetWings(params: Types.GetFleetWingsParams): Promise<Types.EsiResponse<Types.GetFleetWingsResponse, Types.GetFleetWingsResponseHeaders>>;
|
|
853
855
|
/**
|
|
854
856
|
* Create a new wing in a fleet
|
|
855
857
|
|
|
856
858
|
* @see https://developers.eveonline.com/api-explorer#/operations/PostFleetsFleetIdWings
|
|
857
859
|
*/
|
|
858
|
-
postFleetWings(params: Types.PostFleetWingsParams): Promise<Types.EsiResponse<Types.PostFleetWingsResponse>>;
|
|
860
|
+
postFleetWings(params: Types.PostFleetWingsParams): Promise<Types.EsiResponse<Types.PostFleetWingsResponse, Types.PostFleetWingsResponseHeaders>>;
|
|
859
861
|
/**
|
|
860
862
|
* Delete a fleet wing, only empty wings can be deleted. The wing may contain squads, but the squads must be empty
|
|
861
863
|
|
|
862
864
|
* @see https://developers.eveonline.com/api-explorer#/operations/DeleteFleetsFleetIdWingsWingId
|
|
863
865
|
*/
|
|
864
|
-
deleteFleetWing(params: Types.DeleteFleetWingParams): Promise<Types.EsiResponse<Types.
|
|
866
|
+
deleteFleetWing(params: Types.DeleteFleetWingParams): Promise<Types.EsiResponse<unknown, Types.DeleteFleetWingResponseHeaders>>;
|
|
865
867
|
/**
|
|
866
868
|
* Rename a fleet wing
|
|
867
869
|
|
|
868
870
|
* @see https://developers.eveonline.com/api-explorer#/operations/PutFleetsFleetIdWingsWingId
|
|
869
871
|
*/
|
|
870
|
-
putFleetWing(params: Types.PutFleetWingParams): Promise<Types.EsiResponse<Types.
|
|
872
|
+
putFleetWing(params: Types.PutFleetWingParams): Promise<Types.EsiResponse<unknown, Types.PutFleetWingResponseHeaders>>;
|
|
871
873
|
/**
|
|
872
874
|
* Create a new squad in a fleet
|
|
873
875
|
|
|
874
876
|
* @see https://developers.eveonline.com/api-explorer#/operations/PostFleetsFleetIdWingsWingIdSquads
|
|
875
877
|
*/
|
|
876
|
-
postFleetWingSquads(params: Types.PostFleetWingSquadsParams): Promise<Types.EsiResponse<Types.PostFleetWingSquadsResponse>>;
|
|
878
|
+
postFleetWingSquads(params: Types.PostFleetWingSquadsParams): Promise<Types.EsiResponse<Types.PostFleetWingSquadsResponse, Types.PostFleetWingSquadsResponseHeaders>>;
|
|
877
879
|
/**
|
|
878
880
|
* Top 4 leaderboard of factions for kills and victory points separated by total, last week and yesterday
|
|
879
881
|
|
|
@@ -881,7 +883,7 @@ export declare class EsiClient {
|
|
|
881
883
|
|
|
882
884
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetFwLeaderboards
|
|
883
885
|
*/
|
|
884
|
-
getFwLeaderboards(): Promise<Types.EsiResponse<Types.GetFwLeaderboardsResponse>>;
|
|
886
|
+
getFwLeaderboards(): Promise<Types.EsiResponse<Types.GetFwLeaderboardsResponse, Types.GetFwLeaderboardsResponseHeaders>>;
|
|
885
887
|
/**
|
|
886
888
|
* Top 100 leaderboard of pilots for kills and victory points separated by total, last week and yesterday
|
|
887
889
|
|
|
@@ -889,7 +891,7 @@ export declare class EsiClient {
|
|
|
889
891
|
|
|
890
892
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetFwLeaderboardsCharacters
|
|
891
893
|
*/
|
|
892
|
-
getFwLeaderboardsCharacters(): Promise<Types.EsiResponse<Types.GetFwLeaderboardsCharactersResponse>>;
|
|
894
|
+
getFwLeaderboardsCharacters(): Promise<Types.EsiResponse<Types.GetFwLeaderboardsCharactersResponse, Types.GetFwLeaderboardsCharactersResponseHeaders>>;
|
|
893
895
|
/**
|
|
894
896
|
* Top 10 leaderboard of corporations for kills and victory points separated by total, last week and yesterday
|
|
895
897
|
|
|
@@ -897,7 +899,7 @@ export declare class EsiClient {
|
|
|
897
899
|
|
|
898
900
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetFwLeaderboardsCorporations
|
|
899
901
|
*/
|
|
900
|
-
getFwLeaderboardsCorporations(): Promise<Types.EsiResponse<Types.GetFwLeaderboardsCorporationsResponse>>;
|
|
902
|
+
getFwLeaderboardsCorporations(): Promise<Types.EsiResponse<Types.GetFwLeaderboardsCorporationsResponse, Types.GetFwLeaderboardsCorporationsResponseHeaders>>;
|
|
901
903
|
/**
|
|
902
904
|
* Statistical overviews of factions involved in faction warfare
|
|
903
905
|
|
|
@@ -905,13 +907,13 @@ export declare class EsiClient {
|
|
|
905
907
|
|
|
906
908
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetFwStats
|
|
907
909
|
*/
|
|
908
|
-
getFwStats(): Promise<Types.EsiResponse<Types.GetFwStatsResponse>>;
|
|
910
|
+
getFwStats(): Promise<Types.EsiResponse<Types.GetFwStatsResponse, Types.GetFwStatsResponseHeaders>>;
|
|
909
911
|
/**
|
|
910
912
|
* An overview of the current ownership of faction warfare solar systems
|
|
911
913
|
|
|
912
914
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetFwSystems
|
|
913
915
|
*/
|
|
914
|
-
getFwSystems(): Promise<Types.EsiResponse<Types.GetFwSystemsResponse>>;
|
|
916
|
+
getFwSystems(): Promise<Types.EsiResponse<Types.GetFwSystemsResponse, Types.GetFwSystemsResponseHeaders>>;
|
|
915
917
|
/**
|
|
916
918
|
* Data about which NPC factions are at war
|
|
917
919
|
|
|
@@ -919,37 +921,37 @@ export declare class EsiClient {
|
|
|
919
921
|
|
|
920
922
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetFwWars
|
|
921
923
|
*/
|
|
922
|
-
getFwWars(): Promise<Types.EsiResponse<Types.GetFwWarsResponse>>;
|
|
924
|
+
getFwWars(): Promise<Types.EsiResponse<Types.GetFwWarsResponse, Types.GetFwWarsResponseHeaders>>;
|
|
923
925
|
/**
|
|
924
926
|
* Return a list of current incursions
|
|
925
927
|
|
|
926
928
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetIncursions
|
|
927
929
|
*/
|
|
928
|
-
getIncursions(): Promise<Types.EsiResponse<Types.GetIncursionsResponse>>;
|
|
930
|
+
getIncursions(): Promise<Types.EsiResponse<Types.GetIncursionsResponse, Types.GetIncursionsResponseHeaders>>;
|
|
929
931
|
/**
|
|
930
932
|
* Return a list of industry facilities
|
|
931
933
|
|
|
932
934
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetIndustryFacilities
|
|
933
935
|
*/
|
|
934
|
-
getIndustryFacilities(): Promise<Types.EsiResponse<Types.GetIndustryFacilitiesResponse>>;
|
|
936
|
+
getIndustryFacilities(): Promise<Types.EsiResponse<Types.GetIndustryFacilitiesResponse, Types.GetIndustryFacilitiesResponseHeaders>>;
|
|
935
937
|
/**
|
|
936
938
|
* Return cost indices for solar systems
|
|
937
939
|
|
|
938
940
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetIndustrySystems
|
|
939
941
|
*/
|
|
940
|
-
getIndustrySystems(): Promise<Types.EsiResponse<Types.GetIndustrySystemsResponse>>;
|
|
942
|
+
getIndustrySystems(): Promise<Types.EsiResponse<Types.GetIndustrySystemsResponse, Types.GetIndustrySystemsResponseHeaders>>;
|
|
941
943
|
/**
|
|
942
944
|
* Return available insurance levels for all ship types
|
|
943
945
|
|
|
944
946
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetInsurancePrices
|
|
945
947
|
*/
|
|
946
|
-
getInsurancePrices(): Promise<Types.EsiResponse<Types.GetInsurancePricesResponse>>;
|
|
948
|
+
getInsurancePrices(): Promise<Types.EsiResponse<Types.GetInsurancePricesResponse, Types.GetInsurancePricesResponseHeaders>>;
|
|
947
949
|
/**
|
|
948
950
|
* Return a single killmail from its ID and hash
|
|
949
951
|
|
|
950
952
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetKillmailsKillmailIdKillmailHash
|
|
951
953
|
*/
|
|
952
|
-
getKillmailKillmailHash(params: Types.GetKillmailKillmailHashParams): Promise<Types.EsiResponse<Types.GetKillmailKillmailHashResponse>>;
|
|
954
|
+
getKillmailKillmailHash(params: Types.GetKillmailKillmailHashParams): Promise<Types.EsiResponse<Types.GetKillmailKillmailHashResponse, Types.GetKillmailKillmailHashResponseHeaders>>;
|
|
953
955
|
/**
|
|
954
956
|
* Return a list of offers from a specific corporation's loyalty store
|
|
955
957
|
|
|
@@ -957,7 +959,7 @@ export declare class EsiClient {
|
|
|
957
959
|
|
|
958
960
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetLoyaltyStoresCorporationIdOffers
|
|
959
961
|
*/
|
|
960
|
-
getLoyaltyCorporationOffers(params: Types.GetLoyaltyCorporationOffersParams): Promise<Types.EsiResponse<Types.GetLoyaltyCorporationOffersResponse>>;
|
|
962
|
+
getLoyaltyCorporationOffers(params: Types.GetLoyaltyCorporationOffersParams): Promise<Types.EsiResponse<Types.GetLoyaltyCorporationOffersResponse, Types.GetLoyaltyCorporationOffersResponseHeaders>>;
|
|
961
963
|
/**
|
|
962
964
|
* Get a list of item groups
|
|
963
965
|
|
|
@@ -965,7 +967,7 @@ export declare class EsiClient {
|
|
|
965
967
|
|
|
966
968
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetMarketsGroups
|
|
967
969
|
*/
|
|
968
|
-
getMarketsGroups(): Promise<Types.EsiResponse<Types.GetMarketsGroupsResponse>>;
|
|
970
|
+
getMarketsGroups(): Promise<Types.EsiResponse<Types.GetMarketsGroupsResponse, Types.GetMarketsGroupsResponseHeaders>>;
|
|
969
971
|
/**
|
|
970
972
|
* Get information on an item group
|
|
971
973
|
|
|
@@ -973,19 +975,19 @@ export declare class EsiClient {
|
|
|
973
975
|
|
|
974
976
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetMarketsGroupsMarketGroupId
|
|
975
977
|
*/
|
|
976
|
-
getMarketsGroupsMarketGroupId(params: Types.GetMarketsGroupsMarketGroupIdParams): Promise<Types.EsiResponse<Types.GetMarketsGroupsMarketGroupIdResponse>>;
|
|
978
|
+
getMarketsGroupsMarketGroupId(params: Types.GetMarketsGroupsMarketGroupIdParams): Promise<Types.EsiResponse<Types.GetMarketsGroupsMarketGroupIdResponse, Types.GetMarketsGroupsMarketGroupIdResponseHeaders>>;
|
|
977
979
|
/**
|
|
978
980
|
* Return a list of prices
|
|
979
981
|
|
|
980
982
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetMarketsPrices
|
|
981
983
|
*/
|
|
982
|
-
getMarketsPrices(): Promise<Types.EsiResponse<Types.GetMarketsPricesResponse>>;
|
|
984
|
+
getMarketsPrices(): Promise<Types.EsiResponse<Types.GetMarketsPricesResponse, Types.GetMarketsPricesResponseHeaders>>;
|
|
983
985
|
/**
|
|
984
986
|
* Return all orders in a structure
|
|
985
987
|
|
|
986
988
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetMarketsStructuresStructureId
|
|
987
989
|
*/
|
|
988
|
-
getMarketsStructure(params: Types.GetMarketsStructureParams): Promise<Types.EsiResponse<Types.GetMarketsStructureResponse>>;
|
|
990
|
+
getMarketsStructure(params: Types.GetMarketsStructureParams): Promise<Types.EsiResponse<Types.GetMarketsStructureResponse, Types.GetMarketsStructureResponseHeaders>>;
|
|
989
991
|
/**
|
|
990
992
|
* Return a list of historical market statistics for the specified type in a region
|
|
991
993
|
|
|
@@ -993,79 +995,79 @@ export declare class EsiClient {
|
|
|
993
995
|
|
|
994
996
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetMarketsRegionIdHistory
|
|
995
997
|
*/
|
|
996
|
-
getRegionHistory(params: Types.GetRegionHistoryParams): Promise<Types.EsiResponse<Types.GetRegionHistoryResponse>>;
|
|
998
|
+
getRegionHistory(params: Types.GetRegionHistoryParams): Promise<Types.EsiResponse<Types.GetRegionHistoryResponse, Types.GetRegionHistoryResponseHeaders>>;
|
|
997
999
|
/**
|
|
998
1000
|
* Return a list of orders in a region
|
|
999
1001
|
|
|
1000
1002
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetMarketsRegionIdOrders
|
|
1001
1003
|
*/
|
|
1002
|
-
getRegionOrders(params: Types.GetRegionOrdersParams): Promise<Types.EsiResponse<Types.GetRegionOrdersResponse>>;
|
|
1004
|
+
getRegionOrders(params: Types.GetRegionOrdersParams): Promise<Types.EsiResponse<Types.GetRegionOrdersResponse, Types.GetRegionOrdersResponseHeaders>>;
|
|
1003
1005
|
/**
|
|
1004
1006
|
* Return a list of type IDs that have active orders in the region, for efficient market indexing.
|
|
1005
1007
|
|
|
1006
1008
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetMarketsRegionIdTypes
|
|
1007
1009
|
*/
|
|
1008
|
-
getRegionTypes(params: Types.GetRegionTypesParams): Promise<Types.EsiResponse<Types.GetRegionTypesResponse>>;
|
|
1010
|
+
getRegionTypes(params: Types.GetRegionTypesParams): Promise<Types.EsiResponse<Types.GetRegionTypesResponse, Types.GetRegionTypesResponseHeaders>>;
|
|
1009
1011
|
/**
|
|
1010
1012
|
* Get the systems between origin and destination
|
|
1011
1013
|
|
|
1012
1014
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetRouteOriginDestination
|
|
1013
1015
|
*/
|
|
1014
|
-
getRouteOriginDestination(params: Types.GetRouteOriginDestinationParams): Promise<Types.EsiResponse<Types.GetRouteOriginDestinationResponse>>;
|
|
1016
|
+
getRouteOriginDestination(params: Types.GetRouteOriginDestinationParams): Promise<Types.EsiResponse<Types.GetRouteOriginDestinationResponse, Types.GetRouteOriginDestinationResponseHeaders>>;
|
|
1015
1017
|
/**
|
|
1016
1018
|
* Shows sovereignty data for campaigns.
|
|
1017
1019
|
|
|
1018
1020
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetSovereigntyCampaigns
|
|
1019
1021
|
*/
|
|
1020
|
-
getSovereigntyCampaigns(): Promise<Types.EsiResponse<Types.GetSovereigntyCampaignsResponse>>;
|
|
1022
|
+
getSovereigntyCampaigns(): Promise<Types.EsiResponse<Types.GetSovereigntyCampaignsResponse, Types.GetSovereigntyCampaignsResponseHeaders>>;
|
|
1021
1023
|
/**
|
|
1022
1024
|
* Shows sovereignty information for solar systems
|
|
1023
1025
|
|
|
1024
1026
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetSovereigntyMap
|
|
1025
1027
|
*/
|
|
1026
|
-
getSovereigntyMap(): Promise<Types.EsiResponse<Types.GetSovereigntyMapResponse>>;
|
|
1028
|
+
getSovereigntyMap(): Promise<Types.EsiResponse<Types.GetSovereigntyMapResponse, Types.GetSovereigntyMapResponseHeaders>>;
|
|
1027
1029
|
/**
|
|
1028
1030
|
* Shows sovereignty data for structures.
|
|
1029
1031
|
|
|
1030
1032
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetSovereigntyStructures
|
|
1031
1033
|
*/
|
|
1032
|
-
getSovereigntyStructures(): Promise<Types.EsiResponse<Types.GetSovereigntyStructuresResponse>>;
|
|
1034
|
+
getSovereigntyStructures(): Promise<Types.EsiResponse<Types.GetSovereigntyStructuresResponse, Types.GetSovereigntyStructuresResponseHeaders>>;
|
|
1033
1035
|
/**
|
|
1034
1036
|
* EVE Server status
|
|
1035
1037
|
|
|
1036
1038
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetStatus
|
|
1037
1039
|
*/
|
|
1038
|
-
getStatus(): Promise<Types.EsiResponse<Types.GetStatusResponse>>;
|
|
1040
|
+
getStatus(): Promise<Types.EsiResponse<Types.GetStatusResponse, Types.GetStatusResponseHeaders>>;
|
|
1039
1041
|
/**
|
|
1040
1042
|
* Set a solar system as autopilot waypoint
|
|
1041
1043
|
|
|
1042
1044
|
* @see https://developers.eveonline.com/api-explorer#/operations/PostUiAutopilotWaypoint
|
|
1043
1045
|
*/
|
|
1044
|
-
postUiAutopilotWaypoint(params?: Types.PostUiAutopilotWaypointParams): Promise<Types.EsiResponse<Types.
|
|
1046
|
+
postUiAutopilotWaypoint(params?: Types.PostUiAutopilotWaypointParams): Promise<Types.EsiResponse<unknown, Types.PostUiAutopilotWaypointResponseHeaders>>;
|
|
1045
1047
|
/**
|
|
1046
1048
|
* Open the contract window inside the client
|
|
1047
1049
|
|
|
1048
1050
|
* @see https://developers.eveonline.com/api-explorer#/operations/PostUiOpenwindowContract
|
|
1049
1051
|
*/
|
|
1050
|
-
postUiOpenwindowContract(params?: Types.PostUiOpenwindowContractParams): Promise<Types.EsiResponse<Types.
|
|
1052
|
+
postUiOpenwindowContract(params?: Types.PostUiOpenwindowContractParams): Promise<Types.EsiResponse<unknown, Types.PostUiOpenwindowContractResponseHeaders>>;
|
|
1051
1053
|
/**
|
|
1052
1054
|
* Open the information window for a character, corporation or alliance inside the client
|
|
1053
1055
|
|
|
1054
1056
|
* @see https://developers.eveonline.com/api-explorer#/operations/PostUiOpenwindowInformation
|
|
1055
1057
|
*/
|
|
1056
|
-
postUiOpenwindowInformation(params?: Types.PostUiOpenwindowInformationParams): Promise<Types.EsiResponse<Types.
|
|
1058
|
+
postUiOpenwindowInformation(params?: Types.PostUiOpenwindowInformationParams): Promise<Types.EsiResponse<unknown, Types.PostUiOpenwindowInformationResponseHeaders>>;
|
|
1057
1059
|
/**
|
|
1058
1060
|
* Open the market details window for a specific typeID inside the client
|
|
1059
1061
|
|
|
1060
1062
|
* @see https://developers.eveonline.com/api-explorer#/operations/PostUiOpenwindowMarketdetails
|
|
1061
1063
|
*/
|
|
1062
|
-
postUiOpenwindowMarketdetails(params?: Types.PostUiOpenwindowMarketdetailsParams): Promise<Types.EsiResponse<Types.
|
|
1064
|
+
postUiOpenwindowMarketdetails(params?: Types.PostUiOpenwindowMarketdetailsParams): Promise<Types.EsiResponse<unknown, Types.PostUiOpenwindowMarketdetailsResponseHeaders>>;
|
|
1063
1065
|
/**
|
|
1064
1066
|
* Open the New Mail window, according to settings from the request if applicable
|
|
1065
1067
|
|
|
1066
1068
|
* @see https://developers.eveonline.com/api-explorer#/operations/PostUiOpenwindowNewmail
|
|
1067
1069
|
*/
|
|
1068
|
-
postUiOpenwindowNewmail(params: Types.PostUiOpenwindowNewmailParams): Promise<Types.EsiResponse<Types.
|
|
1070
|
+
postUiOpenwindowNewmail(params: Types.PostUiOpenwindowNewmailParams): Promise<Types.EsiResponse<unknown, Types.PostUiOpenwindowNewmailResponseHeaders>>;
|
|
1069
1071
|
/**
|
|
1070
1072
|
* Get all character ancestries
|
|
1071
1073
|
|
|
@@ -1073,7 +1075,7 @@ export declare class EsiClient {
|
|
|
1073
1075
|
|
|
1074
1076
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseAncestries
|
|
1075
1077
|
*/
|
|
1076
|
-
getUniverseAncestries(): Promise<Types.EsiResponse<Types.GetUniverseAncestriesResponse>>;
|
|
1078
|
+
getUniverseAncestries(): Promise<Types.EsiResponse<Types.GetUniverseAncestriesResponse, Types.GetUniverseAncestriesResponseHeaders>>;
|
|
1077
1079
|
/**
|
|
1078
1080
|
* Get information on an asteroid belt
|
|
1079
1081
|
|
|
@@ -1081,7 +1083,7 @@ export declare class EsiClient {
|
|
|
1081
1083
|
|
|
1082
1084
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseAsteroidBeltsAsteroidBeltId
|
|
1083
1085
|
*/
|
|
1084
|
-
getUniverseAsteroidBeltsAsteroidBeltId(params: Types.GetUniverseAsteroidBeltsAsteroidBeltIdParams): Promise<Types.EsiResponse<Types.GetUniverseAsteroidBeltsAsteroidBeltIdResponse>>;
|
|
1086
|
+
getUniverseAsteroidBeltsAsteroidBeltId(params: Types.GetUniverseAsteroidBeltsAsteroidBeltIdParams): Promise<Types.EsiResponse<Types.GetUniverseAsteroidBeltsAsteroidBeltIdResponse, Types.GetUniverseAsteroidBeltsAsteroidBeltIdResponseHeaders>>;
|
|
1085
1087
|
/**
|
|
1086
1088
|
* Get a list of bloodlines
|
|
1087
1089
|
|
|
@@ -1089,7 +1091,7 @@ export declare class EsiClient {
|
|
|
1089
1091
|
|
|
1090
1092
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseBloodlines
|
|
1091
1093
|
*/
|
|
1092
|
-
getUniverseBloodlines(): Promise<Types.EsiResponse<Types.GetUniverseBloodlinesResponse>>;
|
|
1094
|
+
getUniverseBloodlines(): Promise<Types.EsiResponse<Types.GetUniverseBloodlinesResponse, Types.GetUniverseBloodlinesResponseHeaders>>;
|
|
1093
1095
|
/**
|
|
1094
1096
|
* Get a list of item categories
|
|
1095
1097
|
|
|
@@ -1097,7 +1099,7 @@ export declare class EsiClient {
|
|
|
1097
1099
|
|
|
1098
1100
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseCategories
|
|
1099
1101
|
*/
|
|
1100
|
-
getUniverseCategories(): Promise<Types.EsiResponse<Types.GetUniverseCategoriesResponse>>;
|
|
1102
|
+
getUniverseCategories(): Promise<Types.EsiResponse<Types.GetUniverseCategoriesResponse, Types.GetUniverseCategoriesResponseHeaders>>;
|
|
1101
1103
|
/**
|
|
1102
1104
|
* Get information of an item category
|
|
1103
1105
|
|
|
@@ -1105,7 +1107,7 @@ export declare class EsiClient {
|
|
|
1105
1107
|
|
|
1106
1108
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseCategoriesCategoryId
|
|
1107
1109
|
*/
|
|
1108
|
-
getUniverseCategory(params: Types.GetUniverseCategoryParams): Promise<Types.EsiResponse<Types.GetUniverseCategoryResponse>>;
|
|
1110
|
+
getUniverseCategory(params: Types.GetUniverseCategoryParams): Promise<Types.EsiResponse<Types.GetUniverseCategoryResponse, Types.GetUniverseCategoryResponseHeaders>>;
|
|
1109
1111
|
/**
|
|
1110
1112
|
* Get a list of constellations
|
|
1111
1113
|
|
|
@@ -1113,7 +1115,7 @@ export declare class EsiClient {
|
|
|
1113
1115
|
|
|
1114
1116
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseConstellations
|
|
1115
1117
|
*/
|
|
1116
|
-
getUniverseConstellations(): Promise<Types.EsiResponse<Types.GetUniverseConstellationsResponse>>;
|
|
1118
|
+
getUniverseConstellations(): Promise<Types.EsiResponse<Types.GetUniverseConstellationsResponse, Types.GetUniverseConstellationsResponseHeaders>>;
|
|
1117
1119
|
/**
|
|
1118
1120
|
* Get information on a constellation
|
|
1119
1121
|
|
|
@@ -1121,7 +1123,7 @@ export declare class EsiClient {
|
|
|
1121
1123
|
|
|
1122
1124
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseConstellationsConstellationId
|
|
1123
1125
|
*/
|
|
1124
|
-
getUniverseConstellation(params: Types.GetUniverseConstellationParams): Promise<Types.EsiResponse<Types.GetUniverseConstellationResponse>>;
|
|
1126
|
+
getUniverseConstellation(params: Types.GetUniverseConstellationParams): Promise<Types.EsiResponse<Types.GetUniverseConstellationResponse, Types.GetUniverseConstellationResponseHeaders>>;
|
|
1125
1127
|
/**
|
|
1126
1128
|
* Get a list of factions
|
|
1127
1129
|
|
|
@@ -1129,7 +1131,7 @@ export declare class EsiClient {
|
|
|
1129
1131
|
|
|
1130
1132
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseFactions
|
|
1131
1133
|
*/
|
|
1132
|
-
getUniverseFactions(): Promise<Types.EsiResponse<Types.GetUniverseFactionsResponse>>;
|
|
1134
|
+
getUniverseFactions(): Promise<Types.EsiResponse<Types.GetUniverseFactionsResponse, Types.GetUniverseFactionsResponseHeaders>>;
|
|
1133
1135
|
/**
|
|
1134
1136
|
* Get a list of graphics
|
|
1135
1137
|
|
|
@@ -1137,7 +1139,7 @@ export declare class EsiClient {
|
|
|
1137
1139
|
|
|
1138
1140
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseGraphics
|
|
1139
1141
|
*/
|
|
1140
|
-
getUniverseGraphics(): Promise<Types.EsiResponse<Types.GetUniverseGraphicsResponse>>;
|
|
1142
|
+
getUniverseGraphics(): Promise<Types.EsiResponse<Types.GetUniverseGraphicsResponse, Types.GetUniverseGraphicsResponseHeaders>>;
|
|
1141
1143
|
/**
|
|
1142
1144
|
* Get information on a graphic
|
|
1143
1145
|
|
|
@@ -1145,7 +1147,7 @@ export declare class EsiClient {
|
|
|
1145
1147
|
|
|
1146
1148
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseGraphicsGraphicId
|
|
1147
1149
|
*/
|
|
1148
|
-
getUniverseGraphic(params: Types.GetUniverseGraphicParams): Promise<Types.EsiResponse<Types.GetUniverseGraphicResponse>>;
|
|
1150
|
+
getUniverseGraphic(params: Types.GetUniverseGraphicParams): Promise<Types.EsiResponse<Types.GetUniverseGraphicResponse, Types.GetUniverseGraphicResponseHeaders>>;
|
|
1149
1151
|
/**
|
|
1150
1152
|
* Get a list of item groups
|
|
1151
1153
|
|
|
@@ -1153,7 +1155,7 @@ export declare class EsiClient {
|
|
|
1153
1155
|
|
|
1154
1156
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseGroups
|
|
1155
1157
|
*/
|
|
1156
|
-
getUniverseGroups(params?: Types.GetUniverseGroupsParams): Promise<Types.EsiResponse<Types.GetUniverseGroupsResponse>>;
|
|
1158
|
+
getUniverseGroups(params?: Types.GetUniverseGroupsParams): Promise<Types.EsiResponse<Types.GetUniverseGroupsResponse, Types.GetUniverseGroupsResponseHeaders>>;
|
|
1157
1159
|
/**
|
|
1158
1160
|
* Get information on an item group
|
|
1159
1161
|
|
|
@@ -1161,13 +1163,13 @@ export declare class EsiClient {
|
|
|
1161
1163
|
|
|
1162
1164
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseGroupsGroupId
|
|
1163
1165
|
*/
|
|
1164
|
-
getUniverseGroup(params: Types.GetUniverseGroupParams): Promise<Types.EsiResponse<Types.GetUniverseGroupResponse>>;
|
|
1166
|
+
getUniverseGroup(params: Types.GetUniverseGroupParams): Promise<Types.EsiResponse<Types.GetUniverseGroupResponse, Types.GetUniverseGroupResponseHeaders>>;
|
|
1165
1167
|
/**
|
|
1166
1168
|
* Resolve a set of names to IDs in the following categories: agents, alliances, characters, constellations, corporations factions, inventory_types, regions, stations, and systems. Only exact matches will be returned. All names searched for are cached for 12 hours
|
|
1167
1169
|
|
|
1168
1170
|
* @see https://developers.eveonline.com/api-explorer#/operations/PostUniverseIds
|
|
1169
1171
|
*/
|
|
1170
|
-
postUniverseIds(params: Types.PostUniverseIdsParams): Promise<Types.EsiResponse<Types.PostUniverseIdsResponse>>;
|
|
1172
|
+
postUniverseIds(params: Types.PostUniverseIdsParams): Promise<Types.EsiResponse<Types.PostUniverseIdsResponse, Types.PostUniverseIdsResponseHeaders>>;
|
|
1171
1173
|
/**
|
|
1172
1174
|
* Get information on a moon
|
|
1173
1175
|
|
|
@@ -1175,13 +1177,13 @@ export declare class EsiClient {
|
|
|
1175
1177
|
|
|
1176
1178
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseMoonsMoonId
|
|
1177
1179
|
*/
|
|
1178
|
-
getUniverseMoon(params: Types.GetUniverseMoonParams): Promise<Types.EsiResponse<Types.GetUniverseMoonResponse>>;
|
|
1180
|
+
getUniverseMoon(params: Types.GetUniverseMoonParams): Promise<Types.EsiResponse<Types.GetUniverseMoonResponse, Types.GetUniverseMoonResponseHeaders>>;
|
|
1179
1181
|
/**
|
|
1180
1182
|
* Resolve a set of IDs to names and categories. Supported ID's for resolving are: Characters, Corporations, Alliances, Stations, Solar Systems, Constellations, Regions, Types, Factions
|
|
1181
1183
|
|
|
1182
1184
|
* @see https://developers.eveonline.com/api-explorer#/operations/PostUniverseNames
|
|
1183
1185
|
*/
|
|
1184
|
-
postUniverseNames(params: Types.PostUniverseNamesParams): Promise<Types.EsiResponse<Types.PostUniverseNamesResponse>>;
|
|
1186
|
+
postUniverseNames(params: Types.PostUniverseNamesParams): Promise<Types.EsiResponse<Types.PostUniverseNamesResponse, Types.PostUniverseNamesResponseHeaders>>;
|
|
1185
1187
|
/**
|
|
1186
1188
|
* Get information on a planet
|
|
1187
1189
|
|
|
@@ -1189,7 +1191,7 @@ export declare class EsiClient {
|
|
|
1189
1191
|
|
|
1190
1192
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniversePlanetsPlanetId
|
|
1191
1193
|
*/
|
|
1192
|
-
getUniversePlanet(params: Types.GetUniversePlanetParams): Promise<Types.EsiResponse<Types.GetUniversePlanetResponse>>;
|
|
1194
|
+
getUniversePlanet(params: Types.GetUniversePlanetParams): Promise<Types.EsiResponse<Types.GetUniversePlanetResponse, Types.GetUniversePlanetResponseHeaders>>;
|
|
1193
1195
|
/**
|
|
1194
1196
|
* Get a list of character races
|
|
1195
1197
|
|
|
@@ -1197,7 +1199,7 @@ export declare class EsiClient {
|
|
|
1197
1199
|
|
|
1198
1200
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseRaces
|
|
1199
1201
|
*/
|
|
1200
|
-
getUniverseRaces(): Promise<Types.EsiResponse<Types.GetUniverseRacesResponse>>;
|
|
1202
|
+
getUniverseRaces(): Promise<Types.EsiResponse<Types.GetUniverseRacesResponse, Types.GetUniverseRacesResponseHeaders>>;
|
|
1201
1203
|
/**
|
|
1202
1204
|
* Get a list of regions
|
|
1203
1205
|
|
|
@@ -1205,7 +1207,7 @@ export declare class EsiClient {
|
|
|
1205
1207
|
|
|
1206
1208
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseRegions
|
|
1207
1209
|
*/
|
|
1208
|
-
getUniverseRegions(): Promise<Types.EsiResponse<Types.GetUniverseRegionsResponse>>;
|
|
1210
|
+
getUniverseRegions(): Promise<Types.EsiResponse<Types.GetUniverseRegionsResponse, Types.GetUniverseRegionsResponseHeaders>>;
|
|
1209
1211
|
/**
|
|
1210
1212
|
* Get information on a region
|
|
1211
1213
|
|
|
@@ -1213,13 +1215,13 @@ export declare class EsiClient {
|
|
|
1213
1215
|
|
|
1214
1216
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseRegionsRegionId
|
|
1215
1217
|
*/
|
|
1216
|
-
getUniverseRegion(params: Types.GetUniverseRegionParams): Promise<Types.EsiResponse<Types.GetUniverseRegionResponse>>;
|
|
1218
|
+
getUniverseRegion(params: Types.GetUniverseRegionParams): Promise<Types.EsiResponse<Types.GetUniverseRegionResponse, Types.GetUniverseRegionResponseHeaders>>;
|
|
1217
1219
|
/**
|
|
1218
1220
|
* Get information on a planetary factory schematic
|
|
1219
1221
|
|
|
1220
1222
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseSchematicsSchematicId
|
|
1221
1223
|
*/
|
|
1222
|
-
getUniverseSchematic(params: Types.GetUniverseSchematicParams): Promise<Types.EsiResponse<Types.GetUniverseSchematicResponse>>;
|
|
1224
|
+
getUniverseSchematic(params: Types.GetUniverseSchematicParams): Promise<Types.EsiResponse<Types.GetUniverseSchematicResponse, Types.GetUniverseSchematicResponseHeaders>>;
|
|
1223
1225
|
/**
|
|
1224
1226
|
* Get information on a stargate
|
|
1225
1227
|
|
|
@@ -1227,7 +1229,7 @@ export declare class EsiClient {
|
|
|
1227
1229
|
|
|
1228
1230
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseStargatesStargateId
|
|
1229
1231
|
*/
|
|
1230
|
-
getUniverseStargate(params: Types.GetUniverseStargateParams): Promise<Types.EsiResponse<Types.GetUniverseStargateResponse>>;
|
|
1232
|
+
getUniverseStargate(params: Types.GetUniverseStargateParams): Promise<Types.EsiResponse<Types.GetUniverseStargateResponse, Types.GetUniverseStargateResponseHeaders>>;
|
|
1231
1233
|
/**
|
|
1232
1234
|
* Get information on a star
|
|
1233
1235
|
|
|
@@ -1235,7 +1237,7 @@ export declare class EsiClient {
|
|
|
1235
1237
|
|
|
1236
1238
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseStarsStarId
|
|
1237
1239
|
*/
|
|
1238
|
-
getUniverseStar(params: Types.GetUniverseStarParams): Promise<Types.EsiResponse<Types.GetUniverseStarResponse>>;
|
|
1240
|
+
getUniverseStar(params: Types.GetUniverseStarParams): Promise<Types.EsiResponse<Types.GetUniverseStarResponse, Types.GetUniverseStarResponseHeaders>>;
|
|
1239
1241
|
/**
|
|
1240
1242
|
* Get information on a station
|
|
1241
1243
|
|
|
@@ -1243,31 +1245,31 @@ export declare class EsiClient {
|
|
|
1243
1245
|
|
|
1244
1246
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseStationsStationId
|
|
1245
1247
|
*/
|
|
1246
|
-
getUniverseStation(params: Types.GetUniverseStationParams): Promise<Types.EsiResponse<Types.GetUniverseStationResponse>>;
|
|
1248
|
+
getUniverseStation(params: Types.GetUniverseStationParams): Promise<Types.EsiResponse<Types.GetUniverseStationResponse, Types.GetUniverseStationResponseHeaders>>;
|
|
1247
1249
|
/**
|
|
1248
1250
|
* List all public structures
|
|
1249
1251
|
|
|
1250
1252
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseStructures
|
|
1251
1253
|
*/
|
|
1252
|
-
getUniverseStructures(params?: Types.GetUniverseStructuresParams): Promise<Types.EsiResponse<Types.GetUniverseStructuresResponse>>;
|
|
1254
|
+
getUniverseStructures(params?: Types.GetUniverseStructuresParams): Promise<Types.EsiResponse<Types.GetUniverseStructuresResponse, Types.GetUniverseStructuresResponseHeaders>>;
|
|
1253
1255
|
/**
|
|
1254
1256
|
* Returns information on requested structure if you are on the ACL. Otherwise, returns "Forbidden" for all inputs.
|
|
1255
1257
|
|
|
1256
1258
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseStructuresStructureId
|
|
1257
1259
|
*/
|
|
1258
|
-
getUniverseStructure(params: Types.GetUniverseStructureParams): Promise<Types.EsiResponse<Types.GetUniverseStructureResponse>>;
|
|
1260
|
+
getUniverseStructure(params: Types.GetUniverseStructureParams): Promise<Types.EsiResponse<Types.GetUniverseStructureResponse, Types.GetUniverseStructureResponseHeaders>>;
|
|
1259
1261
|
/**
|
|
1260
1262
|
* Get the number of jumps in solar systems within the last hour ending at the timestamp of the Last-Modified header, excluding wormhole space. Only systems with jumps will be listed
|
|
1261
1263
|
|
|
1262
1264
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseSystemJumps
|
|
1263
1265
|
*/
|
|
1264
|
-
getUniverseSystemJumps(): Promise<Types.EsiResponse<Types.GetUniverseSystemJumpsResponse>>;
|
|
1266
|
+
getUniverseSystemJumps(): Promise<Types.EsiResponse<Types.GetUniverseSystemJumpsResponse, Types.GetUniverseSystemJumpsResponseHeaders>>;
|
|
1265
1267
|
/**
|
|
1266
1268
|
* Get the number of ship, pod and NPC kills per solar system within the last hour ending at the timestamp of the Last-Modified header, excluding wormhole space. Only systems with kills will be listed
|
|
1267
1269
|
|
|
1268
1270
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseSystemKills
|
|
1269
1271
|
*/
|
|
1270
|
-
getUniverseSystemKills(): Promise<Types.EsiResponse<Types.GetUniverseSystemKillsResponse>>;
|
|
1272
|
+
getUniverseSystemKills(): Promise<Types.EsiResponse<Types.GetUniverseSystemKillsResponse, Types.GetUniverseSystemKillsResponseHeaders>>;
|
|
1271
1273
|
/**
|
|
1272
1274
|
* Get a list of solar systems
|
|
1273
1275
|
|
|
@@ -1275,7 +1277,7 @@ export declare class EsiClient {
|
|
|
1275
1277
|
|
|
1276
1278
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseSystems
|
|
1277
1279
|
*/
|
|
1278
|
-
getUniverseSystems(): Promise<Types.EsiResponse<Types.GetUniverseSystemsResponse>>;
|
|
1280
|
+
getUniverseSystems(): Promise<Types.EsiResponse<Types.GetUniverseSystemsResponse, Types.GetUniverseSystemsResponseHeaders>>;
|
|
1279
1281
|
/**
|
|
1280
1282
|
* Get information on a solar system.
|
|
1281
1283
|
|
|
@@ -1283,7 +1285,7 @@ export declare class EsiClient {
|
|
|
1283
1285
|
|
|
1284
1286
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseSystemsSystemId
|
|
1285
1287
|
*/
|
|
1286
|
-
getUniverseSystem(params: Types.GetUniverseSystemParams): Promise<Types.EsiResponse<Types.GetUniverseSystemResponse>>;
|
|
1288
|
+
getUniverseSystem(params: Types.GetUniverseSystemParams): Promise<Types.EsiResponse<Types.GetUniverseSystemResponse, Types.GetUniverseSystemResponseHeaders>>;
|
|
1287
1289
|
/**
|
|
1288
1290
|
* Get a list of type ids
|
|
1289
1291
|
|
|
@@ -1291,7 +1293,7 @@ export declare class EsiClient {
|
|
|
1291
1293
|
|
|
1292
1294
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseTypes
|
|
1293
1295
|
*/
|
|
1294
|
-
getUniverseTypes(params?: Types.GetUniverseTypesParams): Promise<Types.EsiResponse<Types.GetUniverseTypesResponse>>;
|
|
1296
|
+
getUniverseTypes(params?: Types.GetUniverseTypesParams): Promise<Types.EsiResponse<Types.GetUniverseTypesResponse, Types.GetUniverseTypesResponseHeaders>>;
|
|
1295
1297
|
/**
|
|
1296
1298
|
* Get information on a type
|
|
1297
1299
|
|
|
@@ -1299,24 +1301,24 @@ export declare class EsiClient {
|
|
|
1299
1301
|
|
|
1300
1302
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetUniverseTypesTypeId
|
|
1301
1303
|
*/
|
|
1302
|
-
getUniverseType(params: Types.GetUniverseTypeParams): Promise<Types.EsiResponse<Types.GetUniverseTypeResponse>>;
|
|
1304
|
+
getUniverseType(params: Types.GetUniverseTypeParams): Promise<Types.EsiResponse<Types.GetUniverseTypeResponse, Types.GetUniverseTypeResponseHeaders>>;
|
|
1303
1305
|
/**
|
|
1304
1306
|
* Return a list of wars
|
|
1305
1307
|
|
|
1306
1308
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetWars
|
|
1307
1309
|
*/
|
|
1308
|
-
getWars(params?: Types.GetWarsParams): Promise<Types.EsiResponse<Types.GetWarsResponse>>;
|
|
1310
|
+
getWars(params?: Types.GetWarsParams): Promise<Types.EsiResponse<Types.GetWarsResponse, Types.GetWarsResponseHeaders>>;
|
|
1309
1311
|
/**
|
|
1310
1312
|
* Return details about a war
|
|
1311
1313
|
|
|
1312
1314
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetWarsWarId
|
|
1313
1315
|
*/
|
|
1314
|
-
getWar(params: Types.GetWarParams): Promise<Types.EsiResponse<Types.GetWarResponse>>;
|
|
1316
|
+
getWar(params: Types.GetWarParams): Promise<Types.EsiResponse<Types.GetWarResponse, Types.GetWarResponseHeaders>>;
|
|
1315
1317
|
/**
|
|
1316
1318
|
* Return a list of kills related to a war
|
|
1317
1319
|
|
|
1318
1320
|
* @see https://developers.eveonline.com/api-explorer#/operations/GetWarsWarIdKillmails
|
|
1319
1321
|
*/
|
|
1320
|
-
getWarKillmails(params: Types.GetWarKillmailsParams): Promise<Types.EsiResponse<Types.GetWarKillmailsResponse>>;
|
|
1322
|
+
getWarKillmails(params: Types.GetWarKillmailsParams): Promise<Types.EsiResponse<Types.GetWarKillmailsResponse, Types.GetWarKillmailsResponseHeaders>>;
|
|
1321
1323
|
}
|
|
1322
1324
|
export default EsiClient;
|