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