django-esi 8.0.0a1__py3-none-any.whl → 8.0.0a2__py3-none-any.whl
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.
Potentially problematic release.
This version of django-esi might be problematic. Click here for more details.
- {django_esi-8.0.0a1.dist-info → django_esi-8.0.0a2.dist-info}/METADATA +3 -4
- {django_esi-8.0.0a1.dist-info → django_esi-8.0.0a2.dist-info}/RECORD +10 -10
- esi/__init__.py +2 -2
- esi/aiopenapi3/plugins.py +18 -0
- esi/app_settings.py +1 -1
- esi/management/commands/generate_esi_stubs.py +33 -16
- esi/openapi_clients.py +72 -14
- esi/stubs.pyi +441 -567
- {django_esi-8.0.0a1.dist-info → django_esi-8.0.0a2.dist-info}/WHEEL +0 -0
- {django_esi-8.0.0a1.dist-info → django_esi-8.0.0a2.dist-info}/licenses/LICENSE +0 -0
esi/stubs.pyi
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# flake8: noqa=E501
|
|
2
2
|
# Auto Generated do not edit
|
|
3
|
-
from typing import Any
|
|
3
|
+
from typing import Any
|
|
4
4
|
|
|
5
5
|
from esi.openapi_clients import EsiOperation
|
|
6
6
|
from esi.models import Token
|
|
@@ -16,7 +16,7 @@ class GetAlliancesOperation(EsiOperation):
|
|
|
16
16
|
"""List all active player alliances"""
|
|
17
17
|
...
|
|
18
18
|
|
|
19
|
-
def results_localized(self, languages: str |
|
|
19
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
20
20
|
"""List all active player alliances"""
|
|
21
21
|
...
|
|
22
22
|
|
|
@@ -31,7 +31,7 @@ class GetAlliancesAllianceIdOperation(EsiOperation):
|
|
|
31
31
|
"""Public information about an alliance"""
|
|
32
32
|
...
|
|
33
33
|
|
|
34
|
-
def results_localized(self, languages: str |
|
|
34
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
35
35
|
"""Public information about an alliance"""
|
|
36
36
|
...
|
|
37
37
|
|
|
@@ -46,7 +46,7 @@ class GetAlliancesAllianceIdCorporationsOperation(EsiOperation):
|
|
|
46
46
|
"""List all current member corporations of an alliance"""
|
|
47
47
|
...
|
|
48
48
|
|
|
49
|
-
def results_localized(self, languages: str |
|
|
49
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
50
50
|
"""List all current member corporations of an alliance"""
|
|
51
51
|
...
|
|
52
52
|
|
|
@@ -61,7 +61,7 @@ class GetAlliancesAllianceIdIconsOperation(EsiOperation):
|
|
|
61
61
|
"""Get the icon urls for a alliance This route expires daily at 11:05"""
|
|
62
62
|
...
|
|
63
63
|
|
|
64
|
-
def results_localized(self, languages: str |
|
|
64
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
65
65
|
"""Get the icon urls for a alliance This route expires daily at 11:05"""
|
|
66
66
|
...
|
|
67
67
|
|
|
@@ -76,7 +76,7 @@ class GetCharactersCharacterIdAssetsOperation(EsiOperation):
|
|
|
76
76
|
"""Return a list of the characters assets"""
|
|
77
77
|
...
|
|
78
78
|
|
|
79
|
-
def results_localized(self, languages: str |
|
|
79
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
80
80
|
"""Return a list of the characters assets"""
|
|
81
81
|
...
|
|
82
82
|
|
|
@@ -91,67 +91,67 @@ class GetCorporationsCorporationIdAssetsOperation(EsiOperation):
|
|
|
91
91
|
"""Return a list of the corporation assets"""
|
|
92
92
|
...
|
|
93
93
|
|
|
94
|
-
def results_localized(self, languages: str |
|
|
94
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
95
95
|
"""Return a list of the corporation assets"""
|
|
96
96
|
...
|
|
97
97
|
|
|
98
98
|
|
|
99
99
|
class PostCharactersCharacterIdAssetsLocationsOperation(EsiOperation):
|
|
100
100
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
101
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
101
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> Any:
|
|
102
102
|
"""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)"""
|
|
103
103
|
...
|
|
104
104
|
|
|
105
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[
|
|
105
|
+
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
106
106
|
"""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)"""
|
|
107
107
|
...
|
|
108
108
|
|
|
109
|
-
def results_localized(self, languages: str |
|
|
109
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[Any]]:
|
|
110
110
|
"""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)"""
|
|
111
111
|
...
|
|
112
112
|
|
|
113
113
|
|
|
114
114
|
class PostCharactersCharacterIdAssetsNamesOperation(EsiOperation):
|
|
115
115
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
116
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
116
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> Any:
|
|
117
117
|
"""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."""
|
|
118
118
|
...
|
|
119
119
|
|
|
120
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[
|
|
120
|
+
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
121
121
|
"""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."""
|
|
122
122
|
...
|
|
123
123
|
|
|
124
|
-
def results_localized(self, languages: str |
|
|
124
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[Any]]:
|
|
125
125
|
"""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."""
|
|
126
126
|
...
|
|
127
127
|
|
|
128
128
|
|
|
129
129
|
class PostCorporationsCorporationIdAssetsLocationsOperation(EsiOperation):
|
|
130
130
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
131
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
131
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> Any:
|
|
132
132
|
"""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)"""
|
|
133
133
|
...
|
|
134
134
|
|
|
135
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[
|
|
135
|
+
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
136
136
|
"""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)"""
|
|
137
137
|
...
|
|
138
138
|
|
|
139
|
-
def results_localized(self, languages: str |
|
|
139
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[Any]]:
|
|
140
140
|
"""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)"""
|
|
141
141
|
...
|
|
142
142
|
|
|
143
143
|
|
|
144
144
|
class PostCorporationsCorporationIdAssetsNamesOperation(EsiOperation):
|
|
145
145
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
146
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
146
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> Any:
|
|
147
147
|
"""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"""
|
|
148
148
|
...
|
|
149
149
|
|
|
150
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[
|
|
150
|
+
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
151
151
|
"""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"""
|
|
152
152
|
...
|
|
153
153
|
|
|
154
|
-
def results_localized(self, languages: str |
|
|
154
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[Any]]:
|
|
155
155
|
"""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"""
|
|
156
156
|
...
|
|
157
157
|
|
|
@@ -166,7 +166,7 @@ class GetCharactersCharacterIdCalendarOperation(EsiOperation):
|
|
|
166
166
|
"""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"""
|
|
167
167
|
...
|
|
168
168
|
|
|
169
|
-
def results_localized(self, languages: str |
|
|
169
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
170
170
|
"""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"""
|
|
171
171
|
...
|
|
172
172
|
|
|
@@ -181,7 +181,7 @@ class GetCharactersCharacterIdCalendarEventIdOperation(EsiOperation):
|
|
|
181
181
|
"""Get all the information for a specific event"""
|
|
182
182
|
...
|
|
183
183
|
|
|
184
|
-
def results_localized(self, languages: str |
|
|
184
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
185
185
|
"""Get all the information for a specific event"""
|
|
186
186
|
...
|
|
187
187
|
|
|
@@ -196,26 +196,17 @@ class GetCharactersCharacterIdCalendarEventIdAttendeesOperation(EsiOperation):
|
|
|
196
196
|
"""Get all invited attendees for a given event"""
|
|
197
197
|
...
|
|
198
198
|
|
|
199
|
-
def results_localized(self, languages: str |
|
|
199
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
200
200
|
"""Get all invited attendees for a given event"""
|
|
201
201
|
...
|
|
202
202
|
|
|
203
203
|
|
|
204
204
|
class PutCharactersCharacterIdCalendarEventIdOperation(EsiOperation):
|
|
205
|
-
"""EsiOperation, use result()
|
|
206
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
207
|
-
"""Set your response status to an event"""
|
|
208
|
-
...
|
|
209
|
-
|
|
210
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
211
|
-
"""Set your response status to an event"""
|
|
212
|
-
...
|
|
213
|
-
|
|
214
|
-
def results_localized(self, languages: str | list[str] = 'en', **kwargs) -> list[Any]:
|
|
205
|
+
"""EsiOperation, use result()"""
|
|
206
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> None:
|
|
215
207
|
"""Set your response status to an event"""
|
|
216
208
|
...
|
|
217
209
|
|
|
218
|
-
|
|
219
210
|
class GetCharactersCharacterIdOperation(EsiOperation):
|
|
220
211
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
221
212
|
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
@@ -226,7 +217,7 @@ class GetCharactersCharacterIdOperation(EsiOperation):
|
|
|
226
217
|
"""Public information about a character"""
|
|
227
218
|
...
|
|
228
219
|
|
|
229
|
-
def results_localized(self, languages: str |
|
|
220
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
230
221
|
"""Public information about a character"""
|
|
231
222
|
...
|
|
232
223
|
|
|
@@ -241,7 +232,7 @@ class GetCharactersCharacterIdAgentsResearchOperation(EsiOperation):
|
|
|
241
232
|
"""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)"""
|
|
242
233
|
...
|
|
243
234
|
|
|
244
|
-
def results_localized(self, languages: str |
|
|
235
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
245
236
|
"""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)"""
|
|
246
237
|
...
|
|
247
238
|
|
|
@@ -256,7 +247,7 @@ class GetCharactersCharacterIdBlueprintsOperation(EsiOperation):
|
|
|
256
247
|
"""Return a list of blueprints the character owns"""
|
|
257
248
|
...
|
|
258
249
|
|
|
259
|
-
def results_localized(self, languages: str |
|
|
250
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
260
251
|
"""Return a list of blueprints the character owns"""
|
|
261
252
|
...
|
|
262
253
|
|
|
@@ -271,7 +262,7 @@ class GetCharactersCharacterIdCorporationhistoryOperation(EsiOperation):
|
|
|
271
262
|
"""Get a list of all the corporations a character has been a member of"""
|
|
272
263
|
...
|
|
273
264
|
|
|
274
|
-
def results_localized(self, languages: str |
|
|
265
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
275
266
|
"""Get a list of all the corporations a character has been a member of"""
|
|
276
267
|
...
|
|
277
268
|
|
|
@@ -286,7 +277,7 @@ class GetCharactersCharacterIdFatigueOperation(EsiOperation):
|
|
|
286
277
|
"""Return a character's jump activation and fatigue information"""
|
|
287
278
|
...
|
|
288
279
|
|
|
289
|
-
def results_localized(self, languages: str |
|
|
280
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
290
281
|
"""Return a character's jump activation and fatigue information"""
|
|
291
282
|
...
|
|
292
283
|
|
|
@@ -301,7 +292,7 @@ class GetCharactersCharacterIdMedalsOperation(EsiOperation):
|
|
|
301
292
|
"""Return a list of medals the character has"""
|
|
302
293
|
...
|
|
303
294
|
|
|
304
|
-
def results_localized(self, languages: str |
|
|
295
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
305
296
|
"""Return a list of medals the character has"""
|
|
306
297
|
...
|
|
307
298
|
|
|
@@ -316,7 +307,7 @@ class GetCharactersCharacterIdNotificationsOperation(EsiOperation):
|
|
|
316
307
|
"""Return character notifications"""
|
|
317
308
|
...
|
|
318
309
|
|
|
319
|
-
def results_localized(self, languages: str |
|
|
310
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
320
311
|
"""Return character notifications"""
|
|
321
312
|
...
|
|
322
313
|
|
|
@@ -331,7 +322,7 @@ class GetCharactersCharacterIdNotificationsContactsOperation(EsiOperation):
|
|
|
331
322
|
"""Return notifications about having been added to someone's contact list"""
|
|
332
323
|
...
|
|
333
324
|
|
|
334
|
-
def results_localized(self, languages: str |
|
|
325
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
335
326
|
"""Return notifications about having been added to someone's contact list"""
|
|
336
327
|
...
|
|
337
328
|
|
|
@@ -346,7 +337,7 @@ class GetCharactersCharacterIdPortraitOperation(EsiOperation):
|
|
|
346
337
|
"""Get portrait urls for a character This route expires daily at 11:05"""
|
|
347
338
|
...
|
|
348
339
|
|
|
349
|
-
def results_localized(self, languages: str |
|
|
340
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
350
341
|
"""Get portrait urls for a character This route expires daily at 11:05"""
|
|
351
342
|
...
|
|
352
343
|
|
|
@@ -361,7 +352,7 @@ class GetCharactersCharacterIdRolesOperation(EsiOperation):
|
|
|
361
352
|
"""Returns a character's corporation roles"""
|
|
362
353
|
...
|
|
363
354
|
|
|
364
|
-
def results_localized(self, languages: str |
|
|
355
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
365
356
|
"""Returns a character's corporation roles"""
|
|
366
357
|
...
|
|
367
358
|
|
|
@@ -376,7 +367,7 @@ class GetCharactersCharacterIdStandingsOperation(EsiOperation):
|
|
|
376
367
|
"""Return character standings from agents, NPC corporations, and factions"""
|
|
377
368
|
...
|
|
378
369
|
|
|
379
|
-
def results_localized(self, languages: str |
|
|
370
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
380
371
|
"""Return character standings from agents, NPC corporations, and factions"""
|
|
381
372
|
...
|
|
382
373
|
|
|
@@ -391,37 +382,37 @@ class GetCharactersCharacterIdTitlesOperation(EsiOperation):
|
|
|
391
382
|
"""Returns a character's titles"""
|
|
392
383
|
...
|
|
393
384
|
|
|
394
|
-
def results_localized(self, languages: str |
|
|
385
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
395
386
|
"""Returns a character's titles"""
|
|
396
387
|
...
|
|
397
388
|
|
|
398
389
|
|
|
399
390
|
class PostCharactersAffiliationOperation(EsiOperation):
|
|
400
391
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
401
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
392
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> Any:
|
|
402
393
|
"""Bulk lookup of character IDs to corporation, alliance and faction"""
|
|
403
394
|
...
|
|
404
395
|
|
|
405
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[
|
|
396
|
+
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
406
397
|
"""Bulk lookup of character IDs to corporation, alliance and faction"""
|
|
407
398
|
...
|
|
408
399
|
|
|
409
|
-
def results_localized(self, languages: str |
|
|
400
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[Any]]:
|
|
410
401
|
"""Bulk lookup of character IDs to corporation, alliance and faction"""
|
|
411
402
|
...
|
|
412
403
|
|
|
413
404
|
|
|
414
405
|
class PostCharactersCharacterIdCspaOperation(EsiOperation):
|
|
415
406
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
416
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
407
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> float:
|
|
417
408
|
"""Takes a source character ID in the url and a set of target character ID's in the body, returns a CSPA charge cost"""
|
|
418
409
|
...
|
|
419
410
|
|
|
420
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[
|
|
411
|
+
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[float]:
|
|
421
412
|
"""Takes a source character ID in the url and a set of target character ID's in the body, returns a CSPA charge cost"""
|
|
422
413
|
...
|
|
423
414
|
|
|
424
|
-
def results_localized(self, languages: str |
|
|
415
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[float]]:
|
|
425
416
|
"""Takes a source character ID in the url and a set of target character ID's in the body, returns a CSPA charge cost"""
|
|
426
417
|
...
|
|
427
418
|
|
|
@@ -436,7 +427,7 @@ class GetCharactersCharacterIdClonesOperation(EsiOperation):
|
|
|
436
427
|
"""A list of the character's clones"""
|
|
437
428
|
...
|
|
438
429
|
|
|
439
|
-
def results_localized(self, languages: str |
|
|
430
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
440
431
|
"""A list of the character's clones"""
|
|
441
432
|
...
|
|
442
433
|
|
|
@@ -451,26 +442,17 @@ class GetCharactersCharacterIdImplantsOperation(EsiOperation):
|
|
|
451
442
|
"""Return implants on the active clone of a character"""
|
|
452
443
|
...
|
|
453
444
|
|
|
454
|
-
def results_localized(self, languages: str |
|
|
445
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
455
446
|
"""Return implants on the active clone of a character"""
|
|
456
447
|
...
|
|
457
448
|
|
|
458
449
|
|
|
459
450
|
class DeleteCharactersCharacterIdContactsOperation(EsiOperation):
|
|
460
|
-
"""EsiOperation, use result()
|
|
461
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
462
|
-
"""Bulk delete contacts"""
|
|
463
|
-
...
|
|
464
|
-
|
|
465
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
466
|
-
"""Bulk delete contacts"""
|
|
467
|
-
...
|
|
468
|
-
|
|
469
|
-
def results_localized(self, languages: str | list[str] = 'en', **kwargs) -> list[Any]:
|
|
451
|
+
"""EsiOperation, use result()"""
|
|
452
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> None:
|
|
470
453
|
"""Bulk delete contacts"""
|
|
471
454
|
...
|
|
472
455
|
|
|
473
|
-
|
|
474
456
|
class GetAlliancesAllianceIdContactsOperation(EsiOperation):
|
|
475
457
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
476
458
|
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
@@ -481,7 +463,7 @@ class GetAlliancesAllianceIdContactsOperation(EsiOperation):
|
|
|
481
463
|
"""Return contacts of an alliance"""
|
|
482
464
|
...
|
|
483
465
|
|
|
484
|
-
def results_localized(self, languages: str |
|
|
466
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
485
467
|
"""Return contacts of an alliance"""
|
|
486
468
|
...
|
|
487
469
|
|
|
@@ -496,7 +478,7 @@ class GetAlliancesAllianceIdContactsLabelsOperation(EsiOperation):
|
|
|
496
478
|
"""Return custom labels for an alliance's contacts"""
|
|
497
479
|
...
|
|
498
480
|
|
|
499
|
-
def results_localized(self, languages: str |
|
|
481
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
500
482
|
"""Return custom labels for an alliance's contacts"""
|
|
501
483
|
...
|
|
502
484
|
|
|
@@ -511,7 +493,7 @@ class GetCharactersCharacterIdContactsOperation(EsiOperation):
|
|
|
511
493
|
"""Return contacts of a character"""
|
|
512
494
|
...
|
|
513
495
|
|
|
514
|
-
def results_localized(self, languages: str |
|
|
496
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
515
497
|
"""Return contacts of a character"""
|
|
516
498
|
...
|
|
517
499
|
|
|
@@ -526,7 +508,7 @@ class GetCharactersCharacterIdContactsLabelsOperation(EsiOperation):
|
|
|
526
508
|
"""Return custom labels for a character's contacts"""
|
|
527
509
|
...
|
|
528
510
|
|
|
529
|
-
def results_localized(self, languages: str |
|
|
511
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
530
512
|
"""Return custom labels for a character's contacts"""
|
|
531
513
|
...
|
|
532
514
|
|
|
@@ -541,7 +523,7 @@ class GetCorporationsCorporationIdContactsOperation(EsiOperation):
|
|
|
541
523
|
"""Return contacts of a corporation"""
|
|
542
524
|
...
|
|
543
525
|
|
|
544
|
-
def results_localized(self, languages: str |
|
|
526
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
545
527
|
"""Return contacts of a corporation"""
|
|
546
528
|
...
|
|
547
529
|
|
|
@@ -556,41 +538,32 @@ class GetCorporationsCorporationIdContactsLabelsOperation(EsiOperation):
|
|
|
556
538
|
"""Return custom labels for a corporation's contacts"""
|
|
557
539
|
...
|
|
558
540
|
|
|
559
|
-
def results_localized(self, languages: str |
|
|
541
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
560
542
|
"""Return custom labels for a corporation's contacts"""
|
|
561
543
|
...
|
|
562
544
|
|
|
563
545
|
|
|
564
546
|
class PostCharactersCharacterIdContactsOperation(EsiOperation):
|
|
565
547
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
566
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
548
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
567
549
|
"""Bulk add contacts with same settings"""
|
|
568
550
|
...
|
|
569
551
|
|
|
570
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[
|
|
552
|
+
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
571
553
|
"""Bulk add contacts with same settings"""
|
|
572
554
|
...
|
|
573
555
|
|
|
574
|
-
def results_localized(self, languages: str |
|
|
556
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
575
557
|
"""Bulk add contacts with same settings"""
|
|
576
558
|
...
|
|
577
559
|
|
|
578
560
|
|
|
579
561
|
class PutCharactersCharacterIdContactsOperation(EsiOperation):
|
|
580
|
-
"""EsiOperation, use result()
|
|
581
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
562
|
+
"""EsiOperation, use result()"""
|
|
563
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> None:
|
|
582
564
|
"""Bulk edit contacts with same settings"""
|
|
583
565
|
...
|
|
584
566
|
|
|
585
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
586
|
-
"""Bulk edit contacts with same settings"""
|
|
587
|
-
...
|
|
588
|
-
|
|
589
|
-
def results_localized(self, languages: str | list[str] = 'en', **kwargs) -> list[Any]:
|
|
590
|
-
"""Bulk edit contacts with same settings"""
|
|
591
|
-
...
|
|
592
|
-
|
|
593
|
-
|
|
594
567
|
class GetCharactersCharacterIdContractsOperation(EsiOperation):
|
|
595
568
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
596
569
|
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
@@ -601,7 +574,7 @@ class GetCharactersCharacterIdContractsOperation(EsiOperation):
|
|
|
601
574
|
"""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"."""
|
|
602
575
|
...
|
|
603
576
|
|
|
604
|
-
def results_localized(self, languages: str |
|
|
577
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
605
578
|
"""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"."""
|
|
606
579
|
...
|
|
607
580
|
|
|
@@ -616,7 +589,7 @@ class GetCharactersCharacterIdContractsContractIdBidsOperation(EsiOperation):
|
|
|
616
589
|
"""Lists bids on a particular auction contract"""
|
|
617
590
|
...
|
|
618
591
|
|
|
619
|
-
def results_localized(self, languages: str |
|
|
592
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
620
593
|
"""Lists bids on a particular auction contract"""
|
|
621
594
|
...
|
|
622
595
|
|
|
@@ -631,7 +604,7 @@ class GetCharactersCharacterIdContractsContractIdItemsOperation(EsiOperation):
|
|
|
631
604
|
"""Lists items of a particular contract"""
|
|
632
605
|
...
|
|
633
606
|
|
|
634
|
-
def results_localized(self, languages: str |
|
|
607
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
635
608
|
"""Lists items of a particular contract"""
|
|
636
609
|
...
|
|
637
610
|
|
|
@@ -646,7 +619,7 @@ class GetContractsPublicBidsContractIdOperation(EsiOperation):
|
|
|
646
619
|
"""Lists bids on a public auction contract"""
|
|
647
620
|
...
|
|
648
621
|
|
|
649
|
-
def results_localized(self, languages: str |
|
|
622
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
650
623
|
"""Lists bids on a public auction contract"""
|
|
651
624
|
...
|
|
652
625
|
|
|
@@ -661,7 +634,7 @@ class GetContractsPublicItemsContractIdOperation(EsiOperation):
|
|
|
661
634
|
"""Lists items of a public contract"""
|
|
662
635
|
...
|
|
663
636
|
|
|
664
|
-
def results_localized(self, languages: str |
|
|
637
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
665
638
|
"""Lists items of a public contract"""
|
|
666
639
|
...
|
|
667
640
|
|
|
@@ -676,7 +649,7 @@ class GetContractsPublicRegionIdOperation(EsiOperation):
|
|
|
676
649
|
"""Returns a paginated list of all public contracts in the given region"""
|
|
677
650
|
...
|
|
678
651
|
|
|
679
|
-
def results_localized(self, languages: str |
|
|
652
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
680
653
|
"""Returns a paginated list of all public contracts in the given region"""
|
|
681
654
|
...
|
|
682
655
|
|
|
@@ -691,7 +664,7 @@ class GetCorporationsCorporationIdContractsOperation(EsiOperation):
|
|
|
691
664
|
"""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"."""
|
|
692
665
|
...
|
|
693
666
|
|
|
694
|
-
def results_localized(self, languages: str |
|
|
667
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
695
668
|
"""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"."""
|
|
696
669
|
...
|
|
697
670
|
|
|
@@ -706,7 +679,7 @@ class GetCorporationsCorporationIdContractsContractIdBidsOperation(EsiOperation)
|
|
|
706
679
|
"""Lists bids on a particular auction contract"""
|
|
707
680
|
...
|
|
708
681
|
|
|
709
|
-
def results_localized(self, languages: str |
|
|
682
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
710
683
|
"""Lists bids on a particular auction contract"""
|
|
711
684
|
...
|
|
712
685
|
|
|
@@ -721,7 +694,7 @@ class GetCorporationsCorporationIdContractsContractIdItemsOperation(EsiOperation
|
|
|
721
694
|
"""Lists items of a particular contract"""
|
|
722
695
|
...
|
|
723
696
|
|
|
724
|
-
def results_localized(self, languages: str |
|
|
697
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
725
698
|
"""Lists items of a particular contract"""
|
|
726
699
|
...
|
|
727
700
|
|
|
@@ -736,7 +709,7 @@ class GetCorporationsCorporationIdOperation(EsiOperation):
|
|
|
736
709
|
"""Public information about a corporation"""
|
|
737
710
|
...
|
|
738
711
|
|
|
739
|
-
def results_localized(self, languages: str |
|
|
712
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
740
713
|
"""Public information about a corporation"""
|
|
741
714
|
...
|
|
742
715
|
|
|
@@ -751,7 +724,7 @@ class GetCorporationsCorporationIdAlliancehistoryOperation(EsiOperation):
|
|
|
751
724
|
"""Get a list of all the alliances a corporation has been a member of"""
|
|
752
725
|
...
|
|
753
726
|
|
|
754
|
-
def results_localized(self, languages: str |
|
|
727
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
755
728
|
"""Get a list of all the alliances a corporation has been a member of"""
|
|
756
729
|
...
|
|
757
730
|
|
|
@@ -766,7 +739,7 @@ class GetCorporationsCorporationIdBlueprintsOperation(EsiOperation):
|
|
|
766
739
|
"""Returns a list of blueprints the corporation owns"""
|
|
767
740
|
...
|
|
768
741
|
|
|
769
|
-
def results_localized(self, languages: str |
|
|
742
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
770
743
|
"""Returns a list of blueprints the corporation owns"""
|
|
771
744
|
...
|
|
772
745
|
|
|
@@ -781,7 +754,7 @@ class GetCorporationsCorporationIdContainersLogsOperation(EsiOperation):
|
|
|
781
754
|
"""Returns logs recorded in the past seven days from all audit log secure containers (ALSC) owned by a given corporation"""
|
|
782
755
|
...
|
|
783
756
|
|
|
784
|
-
def results_localized(self, languages: str |
|
|
757
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
785
758
|
"""Returns logs recorded in the past seven days from all audit log secure containers (ALSC) owned by a given corporation"""
|
|
786
759
|
...
|
|
787
760
|
|
|
@@ -796,7 +769,7 @@ class GetCorporationsCorporationIdDivisionsOperation(EsiOperation):
|
|
|
796
769
|
"""Return corporation hangar and wallet division names, only show if a division is not using the default name"""
|
|
797
770
|
...
|
|
798
771
|
|
|
799
|
-
def results_localized(self, languages: str |
|
|
772
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
800
773
|
"""Return corporation hangar and wallet division names, only show if a division is not using the default name"""
|
|
801
774
|
...
|
|
802
775
|
|
|
@@ -811,7 +784,7 @@ class GetCorporationsCorporationIdFacilitiesOperation(EsiOperation):
|
|
|
811
784
|
"""Return a corporation's facilities"""
|
|
812
785
|
...
|
|
813
786
|
|
|
814
|
-
def results_localized(self, languages: str |
|
|
787
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
815
788
|
"""Return a corporation's facilities"""
|
|
816
789
|
...
|
|
817
790
|
|
|
@@ -826,7 +799,7 @@ class GetCorporationsCorporationIdIconsOperation(EsiOperation):
|
|
|
826
799
|
"""Get the icon urls for a corporation"""
|
|
827
800
|
...
|
|
828
801
|
|
|
829
|
-
def results_localized(self, languages: str |
|
|
802
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
830
803
|
"""Get the icon urls for a corporation"""
|
|
831
804
|
...
|
|
832
805
|
|
|
@@ -841,7 +814,7 @@ class GetCorporationsCorporationIdMedalsOperation(EsiOperation):
|
|
|
841
814
|
"""Returns a corporation's medals"""
|
|
842
815
|
...
|
|
843
816
|
|
|
844
|
-
def results_localized(self, languages: str |
|
|
817
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
845
818
|
"""Returns a corporation's medals"""
|
|
846
819
|
...
|
|
847
820
|
|
|
@@ -856,7 +829,7 @@ class GetCorporationsCorporationIdMedalsIssuedOperation(EsiOperation):
|
|
|
856
829
|
"""Returns medals issued by a corporation"""
|
|
857
830
|
...
|
|
858
831
|
|
|
859
|
-
def results_localized(self, languages: str |
|
|
832
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
860
833
|
"""Returns medals issued by a corporation"""
|
|
861
834
|
...
|
|
862
835
|
|
|
@@ -871,7 +844,7 @@ class GetCorporationsCorporationIdMembersOperation(EsiOperation):
|
|
|
871
844
|
"""Return the current member list of a corporation, the token's character need to be a member of the corporation."""
|
|
872
845
|
...
|
|
873
846
|
|
|
874
|
-
def results_localized(self, languages: str |
|
|
847
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
875
848
|
"""Return the current member list of a corporation, the token's character need to be a member of the corporation."""
|
|
876
849
|
...
|
|
877
850
|
|
|
@@ -886,7 +859,7 @@ class GetCorporationsCorporationIdMembersLimitOperation(EsiOperation):
|
|
|
886
859
|
"""Return a corporation's member limit, not including CEO himself"""
|
|
887
860
|
...
|
|
888
861
|
|
|
889
|
-
def results_localized(self, languages: str |
|
|
862
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
890
863
|
"""Return a corporation's member limit, not including CEO himself"""
|
|
891
864
|
...
|
|
892
865
|
|
|
@@ -901,7 +874,7 @@ class GetCorporationsCorporationIdMembersTitlesOperation(EsiOperation):
|
|
|
901
874
|
"""Returns a corporation's members' titles"""
|
|
902
875
|
...
|
|
903
876
|
|
|
904
|
-
def results_localized(self, languages: str |
|
|
877
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
905
878
|
"""Returns a corporation's members' titles"""
|
|
906
879
|
...
|
|
907
880
|
|
|
@@ -916,7 +889,7 @@ class GetCorporationsCorporationIdMembertrackingOperation(EsiOperation):
|
|
|
916
889
|
"""Returns additional information about a corporation's members which helps tracking their activities"""
|
|
917
890
|
...
|
|
918
891
|
|
|
919
|
-
def results_localized(self, languages: str |
|
|
892
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
920
893
|
"""Returns additional information about a corporation's members which helps tracking their activities"""
|
|
921
894
|
...
|
|
922
895
|
|
|
@@ -931,7 +904,7 @@ class GetCorporationsCorporationIdRolesOperation(EsiOperation):
|
|
|
931
904
|
"""Return the roles of all members if the character has the personnel manager role or any grantable role."""
|
|
932
905
|
...
|
|
933
906
|
|
|
934
|
-
def results_localized(self, languages: str |
|
|
907
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
935
908
|
"""Return the roles of all members if the character has the personnel manager role or any grantable role."""
|
|
936
909
|
...
|
|
937
910
|
|
|
@@ -946,7 +919,7 @@ class GetCorporationsCorporationIdRolesHistoryOperation(EsiOperation):
|
|
|
946
919
|
"""Return how roles have changed for a coporation's members, up to a month"""
|
|
947
920
|
...
|
|
948
921
|
|
|
949
|
-
def results_localized(self, languages: str |
|
|
922
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
950
923
|
"""Return how roles have changed for a coporation's members, up to a month"""
|
|
951
924
|
...
|
|
952
925
|
|
|
@@ -961,7 +934,7 @@ class GetCorporationsCorporationIdShareholdersOperation(EsiOperation):
|
|
|
961
934
|
"""Return the current shareholders of a corporation."""
|
|
962
935
|
...
|
|
963
936
|
|
|
964
|
-
def results_localized(self, languages: str |
|
|
937
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
965
938
|
"""Return the current shareholders of a corporation."""
|
|
966
939
|
...
|
|
967
940
|
|
|
@@ -976,7 +949,7 @@ class GetCorporationsCorporationIdStandingsOperation(EsiOperation):
|
|
|
976
949
|
"""Return corporation standings from agents, NPC corporations, and factions"""
|
|
977
950
|
...
|
|
978
951
|
|
|
979
|
-
def results_localized(self, languages: str |
|
|
952
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
980
953
|
"""Return corporation standings from agents, NPC corporations, and factions"""
|
|
981
954
|
...
|
|
982
955
|
|
|
@@ -991,7 +964,7 @@ class GetCorporationsCorporationIdStarbasesOperation(EsiOperation):
|
|
|
991
964
|
"""Returns list of corporation starbases (POSes)"""
|
|
992
965
|
...
|
|
993
966
|
|
|
994
|
-
def results_localized(self, languages: str |
|
|
967
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
995
968
|
"""Returns list of corporation starbases (POSes)"""
|
|
996
969
|
...
|
|
997
970
|
|
|
@@ -1006,7 +979,7 @@ class GetCorporationsCorporationIdStarbasesStarbaseIdOperation(EsiOperation):
|
|
|
1006
979
|
"""Returns various settings and fuels of a starbase (POS)"""
|
|
1007
980
|
...
|
|
1008
981
|
|
|
1009
|
-
def results_localized(self, languages: str |
|
|
982
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1010
983
|
"""Returns various settings and fuels of a starbase (POS)"""
|
|
1011
984
|
...
|
|
1012
985
|
|
|
@@ -1021,7 +994,7 @@ class GetCorporationsCorporationIdStructuresOperation(EsiOperation):
|
|
|
1021
994
|
"""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"""
|
|
1022
995
|
...
|
|
1023
996
|
|
|
1024
|
-
def results_localized(self, languages: str |
|
|
997
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1025
998
|
"""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"""
|
|
1026
999
|
...
|
|
1027
1000
|
|
|
@@ -1036,7 +1009,7 @@ class GetCorporationsCorporationIdTitlesOperation(EsiOperation):
|
|
|
1036
1009
|
"""Returns a corporation's titles"""
|
|
1037
1010
|
...
|
|
1038
1011
|
|
|
1039
|
-
def results_localized(self, languages: str |
|
|
1012
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1040
1013
|
"""Returns a corporation's titles"""
|
|
1041
1014
|
...
|
|
1042
1015
|
|
|
@@ -1051,7 +1024,7 @@ class GetCorporationsNpccorpsOperation(EsiOperation):
|
|
|
1051
1024
|
"""Get a list of npc corporations This route expires daily at 11:05"""
|
|
1052
1025
|
...
|
|
1053
1026
|
|
|
1054
|
-
def results_localized(self, languages: str |
|
|
1027
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
1055
1028
|
"""Get a list of npc corporations This route expires daily at 11:05"""
|
|
1056
1029
|
...
|
|
1057
1030
|
|
|
@@ -1066,7 +1039,7 @@ class GetCorporationsProjectsContributionOperation(EsiOperation):
|
|
|
1066
1039
|
"""Show your contribution to a corporation project."""
|
|
1067
1040
|
...
|
|
1068
1041
|
|
|
1069
|
-
def results_localized(self, languages: str |
|
|
1042
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1070
1043
|
"""Show your contribution to a corporation project."""
|
|
1071
1044
|
...
|
|
1072
1045
|
|
|
@@ -1081,7 +1054,7 @@ class GetCorporationsProjectsContributorsOperation(EsiOperation):
|
|
|
1081
1054
|
"""Listing of all contributors to a corporation project."""
|
|
1082
1055
|
...
|
|
1083
1056
|
|
|
1084
|
-
def results_localized(self, languages: str |
|
|
1057
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1085
1058
|
"""Listing of all contributors to a corporation project."""
|
|
1086
1059
|
...
|
|
1087
1060
|
|
|
@@ -1096,7 +1069,7 @@ class GetCorporationsProjectsDetailOperation(EsiOperation):
|
|
|
1096
1069
|
"""Get the details of a corporation project."""
|
|
1097
1070
|
...
|
|
1098
1071
|
|
|
1099
|
-
def results_localized(self, languages: str |
|
|
1072
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1100
1073
|
"""Get the details of a corporation project."""
|
|
1101
1074
|
...
|
|
1102
1075
|
|
|
@@ -1111,7 +1084,7 @@ class GetCorporationsProjectsListingOperation(EsiOperation):
|
|
|
1111
1084
|
"""Listing of all (active) corporation projects."""
|
|
1112
1085
|
...
|
|
1113
1086
|
|
|
1114
|
-
def results_localized(self, languages: str |
|
|
1087
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1115
1088
|
"""Listing of all (active) corporation projects."""
|
|
1116
1089
|
...
|
|
1117
1090
|
|
|
@@ -1126,7 +1099,7 @@ class GetDogmaAttributesOperation(EsiOperation):
|
|
|
1126
1099
|
"""Get a list of dogma attribute ids This route expires daily at 11:05"""
|
|
1127
1100
|
...
|
|
1128
1101
|
|
|
1129
|
-
def results_localized(self, languages: str |
|
|
1102
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
1130
1103
|
"""Get a list of dogma attribute ids This route expires daily at 11:05"""
|
|
1131
1104
|
...
|
|
1132
1105
|
|
|
@@ -1141,7 +1114,7 @@ class GetDogmaAttributesAttributeIdOperation(EsiOperation):
|
|
|
1141
1114
|
"""Get information on a dogma attribute This route expires daily at 11:05"""
|
|
1142
1115
|
...
|
|
1143
1116
|
|
|
1144
|
-
def results_localized(self, languages: str |
|
|
1117
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1145
1118
|
"""Get information on a dogma attribute This route expires daily at 11:05"""
|
|
1146
1119
|
...
|
|
1147
1120
|
|
|
@@ -1156,7 +1129,7 @@ class GetDogmaDynamicItemsTypeIdItemIdOperation(EsiOperation):
|
|
|
1156
1129
|
"""Returns info about a dynamic item resulting from mutation with a mutaplasmid. This route expires daily at 11:05"""
|
|
1157
1130
|
...
|
|
1158
1131
|
|
|
1159
|
-
def results_localized(self, languages: str |
|
|
1132
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1160
1133
|
"""Returns info about a dynamic item resulting from mutation with a mutaplasmid. This route expires daily at 11:05"""
|
|
1161
1134
|
...
|
|
1162
1135
|
|
|
@@ -1171,7 +1144,7 @@ class GetDogmaEffectsOperation(EsiOperation):
|
|
|
1171
1144
|
"""Get a list of dogma effect ids This route expires daily at 11:05"""
|
|
1172
1145
|
...
|
|
1173
1146
|
|
|
1174
|
-
def results_localized(self, languages: str |
|
|
1147
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
1175
1148
|
"""Get a list of dogma effect ids This route expires daily at 11:05"""
|
|
1176
1149
|
...
|
|
1177
1150
|
|
|
@@ -1186,7 +1159,7 @@ class GetDogmaEffectsEffectIdOperation(EsiOperation):
|
|
|
1186
1159
|
"""Get information on a dogma effect This route expires daily at 11:05"""
|
|
1187
1160
|
...
|
|
1188
1161
|
|
|
1189
|
-
def results_localized(self, languages: str |
|
|
1162
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1190
1163
|
"""Get information on a dogma effect This route expires daily at 11:05"""
|
|
1191
1164
|
...
|
|
1192
1165
|
|
|
@@ -1201,7 +1174,7 @@ class GetCharactersCharacterIdFwStatsOperation(EsiOperation):
|
|
|
1201
1174
|
"""Statistical overview of a character involved in faction warfare This route expires daily at 11:05"""
|
|
1202
1175
|
...
|
|
1203
1176
|
|
|
1204
|
-
def results_localized(self, languages: str |
|
|
1177
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1205
1178
|
"""Statistical overview of a character involved in faction warfare This route expires daily at 11:05"""
|
|
1206
1179
|
...
|
|
1207
1180
|
|
|
@@ -1216,7 +1189,7 @@ class GetCorporationsCorporationIdFwStatsOperation(EsiOperation):
|
|
|
1216
1189
|
"""Statistics about a corporation involved in faction warfare This route expires daily at 11:05"""
|
|
1217
1190
|
...
|
|
1218
1191
|
|
|
1219
|
-
def results_localized(self, languages: str |
|
|
1192
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1220
1193
|
"""Statistics about a corporation involved in faction warfare This route expires daily at 11:05"""
|
|
1221
1194
|
...
|
|
1222
1195
|
|
|
@@ -1231,7 +1204,7 @@ class GetFwLeaderboardsOperation(EsiOperation):
|
|
|
1231
1204
|
"""Top 4 leaderboard of factions for kills and victory points separated by total, last week and yesterday This route expires daily at 11:05"""
|
|
1232
1205
|
...
|
|
1233
1206
|
|
|
1234
|
-
def results_localized(self, languages: str |
|
|
1207
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1235
1208
|
"""Top 4 leaderboard of factions for kills and victory points separated by total, last week and yesterday This route expires daily at 11:05"""
|
|
1236
1209
|
...
|
|
1237
1210
|
|
|
@@ -1246,7 +1219,7 @@ class GetFwLeaderboardsCharactersOperation(EsiOperation):
|
|
|
1246
1219
|
"""Top 100 leaderboard of pilots for kills and victory points separated by total, last week and yesterday This route expires daily at 11:05"""
|
|
1247
1220
|
...
|
|
1248
1221
|
|
|
1249
|
-
def results_localized(self, languages: str |
|
|
1222
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1250
1223
|
"""Top 100 leaderboard of pilots for kills and victory points separated by total, last week and yesterday This route expires daily at 11:05"""
|
|
1251
1224
|
...
|
|
1252
1225
|
|
|
@@ -1261,7 +1234,7 @@ class GetFwLeaderboardsCorporationsOperation(EsiOperation):
|
|
|
1261
1234
|
"""Top 10 leaderboard of corporations for kills and victory points separated by total, last week and yesterday This route expires daily at 11:05"""
|
|
1262
1235
|
...
|
|
1263
1236
|
|
|
1264
|
-
def results_localized(self, languages: str |
|
|
1237
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1265
1238
|
"""Top 10 leaderboard of corporations for kills and victory points separated by total, last week and yesterday This route expires daily at 11:05"""
|
|
1266
1239
|
...
|
|
1267
1240
|
|
|
@@ -1276,7 +1249,7 @@ class GetFwStatsOperation(EsiOperation):
|
|
|
1276
1249
|
"""Statistical overviews of factions involved in faction warfare This route expires daily at 11:05"""
|
|
1277
1250
|
...
|
|
1278
1251
|
|
|
1279
|
-
def results_localized(self, languages: str |
|
|
1252
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1280
1253
|
"""Statistical overviews of factions involved in faction warfare This route expires daily at 11:05"""
|
|
1281
1254
|
...
|
|
1282
1255
|
|
|
@@ -1291,7 +1264,7 @@ class GetFwSystemsOperation(EsiOperation):
|
|
|
1291
1264
|
"""An overview of the current ownership of faction warfare solar systems"""
|
|
1292
1265
|
...
|
|
1293
1266
|
|
|
1294
|
-
def results_localized(self, languages: str |
|
|
1267
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1295
1268
|
"""An overview of the current ownership of faction warfare solar systems"""
|
|
1296
1269
|
...
|
|
1297
1270
|
|
|
@@ -1306,26 +1279,17 @@ class GetFwWarsOperation(EsiOperation):
|
|
|
1306
1279
|
"""Data about which NPC factions are at war This route expires daily at 11:05"""
|
|
1307
1280
|
...
|
|
1308
1281
|
|
|
1309
|
-
def results_localized(self, languages: str |
|
|
1282
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1310
1283
|
"""Data about which NPC factions are at war This route expires daily at 11:05"""
|
|
1311
1284
|
...
|
|
1312
1285
|
|
|
1313
1286
|
|
|
1314
1287
|
class DeleteCharactersCharacterIdFittingsFittingIdOperation(EsiOperation):
|
|
1315
|
-
"""EsiOperation, use result()
|
|
1316
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
1288
|
+
"""EsiOperation, use result()"""
|
|
1289
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1317
1290
|
"""Delete a fitting from a character"""
|
|
1318
1291
|
...
|
|
1319
1292
|
|
|
1320
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
1321
|
-
"""Delete a fitting from a character"""
|
|
1322
|
-
...
|
|
1323
|
-
|
|
1324
|
-
def results_localized(self, languages: str | list[str] = 'en', **kwargs) -> list[Any]:
|
|
1325
|
-
"""Delete a fitting from a character"""
|
|
1326
|
-
...
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
1293
|
class GetCharactersCharacterIdFittingsOperation(EsiOperation):
|
|
1330
1294
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1331
1295
|
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
@@ -1336,71 +1300,44 @@ class GetCharactersCharacterIdFittingsOperation(EsiOperation):
|
|
|
1336
1300
|
"""Return fittings of a character"""
|
|
1337
1301
|
...
|
|
1338
1302
|
|
|
1339
|
-
def results_localized(self, languages: str |
|
|
1303
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1340
1304
|
"""Return fittings of a character"""
|
|
1341
1305
|
...
|
|
1342
1306
|
|
|
1343
1307
|
|
|
1344
1308
|
class PostCharactersCharacterIdFittingsOperation(EsiOperation):
|
|
1345
1309
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1346
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> Any:
|
|
1310
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1347
1311
|
"""Save a new fitting for a character"""
|
|
1348
1312
|
...
|
|
1349
1313
|
|
|
1350
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
1314
|
+
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1351
1315
|
"""Save a new fitting for a character"""
|
|
1352
1316
|
...
|
|
1353
1317
|
|
|
1354
|
-
def results_localized(self, languages: str |
|
|
1318
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1355
1319
|
"""Save a new fitting for a character"""
|
|
1356
1320
|
...
|
|
1357
1321
|
|
|
1358
1322
|
|
|
1359
1323
|
class DeleteFleetsFleetIdMembersMemberIdOperation(EsiOperation):
|
|
1360
|
-
"""EsiOperation, use result()
|
|
1361
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
1324
|
+
"""EsiOperation, use result()"""
|
|
1325
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1362
1326
|
"""Kick a fleet member"""
|
|
1363
1327
|
...
|
|
1364
1328
|
|
|
1365
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
1366
|
-
"""Kick a fleet member"""
|
|
1367
|
-
...
|
|
1368
|
-
|
|
1369
|
-
def results_localized(self, languages: str | list[str] = 'en', **kwargs) -> list[Any]:
|
|
1370
|
-
"""Kick a fleet member"""
|
|
1371
|
-
...
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
1329
|
class DeleteFleetsFleetIdSquadsSquadIdOperation(EsiOperation):
|
|
1375
|
-
"""EsiOperation, use result()
|
|
1376
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
1377
|
-
"""Delete a fleet squad, only empty squads can be deleted"""
|
|
1378
|
-
...
|
|
1379
|
-
|
|
1380
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
1381
|
-
"""Delete a fleet squad, only empty squads can be deleted"""
|
|
1382
|
-
...
|
|
1383
|
-
|
|
1384
|
-
def results_localized(self, languages: str | list[str] = 'en', **kwargs) -> list[Any]:
|
|
1330
|
+
"""EsiOperation, use result()"""
|
|
1331
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1385
1332
|
"""Delete a fleet squad, only empty squads can be deleted"""
|
|
1386
1333
|
...
|
|
1387
1334
|
|
|
1388
|
-
|
|
1389
1335
|
class DeleteFleetsFleetIdWingsWingIdOperation(EsiOperation):
|
|
1390
|
-
"""EsiOperation, use result()
|
|
1391
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
1392
|
-
"""Delete a fleet wing, only empty wings can be deleted. The wing may contain squads, but the squads must be empty"""
|
|
1393
|
-
...
|
|
1394
|
-
|
|
1395
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
1336
|
+
"""EsiOperation, use result()"""
|
|
1337
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1396
1338
|
"""Delete a fleet wing, only empty wings can be deleted. The wing may contain squads, but the squads must be empty"""
|
|
1397
1339
|
...
|
|
1398
1340
|
|
|
1399
|
-
def results_localized(self, languages: str | list[str] = 'en', **kwargs) -> list[Any]:
|
|
1400
|
-
"""Delete a fleet wing, only empty wings can be deleted. The wing may contain squads, but the squads must be empty"""
|
|
1401
|
-
...
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
1341
|
class GetCharactersCharacterIdFleetOperation(EsiOperation):
|
|
1405
1342
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1406
1343
|
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
@@ -1411,7 +1348,7 @@ class GetCharactersCharacterIdFleetOperation(EsiOperation):
|
|
|
1411
1348
|
"""Return the fleet ID the character is in, if any."""
|
|
1412
1349
|
...
|
|
1413
1350
|
|
|
1414
|
-
def results_localized(self, languages: str |
|
|
1351
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1415
1352
|
"""Return the fleet ID the character is in, if any."""
|
|
1416
1353
|
...
|
|
1417
1354
|
|
|
@@ -1426,7 +1363,7 @@ class GetFleetsFleetIdOperation(EsiOperation):
|
|
|
1426
1363
|
"""Return details about a fleet"""
|
|
1427
1364
|
...
|
|
1428
1365
|
|
|
1429
|
-
def results_localized(self, languages: str |
|
|
1366
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1430
1367
|
"""Return details about a fleet"""
|
|
1431
1368
|
...
|
|
1432
1369
|
|
|
@@ -1441,7 +1378,7 @@ class GetFleetsFleetIdMembersOperation(EsiOperation):
|
|
|
1441
1378
|
"""Return information about fleet members"""
|
|
1442
1379
|
...
|
|
1443
1380
|
|
|
1444
|
-
def results_localized(self, languages: str |
|
|
1381
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1445
1382
|
"""Return information about fleet members"""
|
|
1446
1383
|
...
|
|
1447
1384
|
|
|
@@ -1456,7 +1393,7 @@ class GetFleetsFleetIdWingsOperation(EsiOperation):
|
|
|
1456
1393
|
"""Return information about wings in a fleet"""
|
|
1457
1394
|
...
|
|
1458
1395
|
|
|
1459
|
-
def results_localized(self, languages: str |
|
|
1396
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1460
1397
|
"""Return information about wings in a fleet"""
|
|
1461
1398
|
...
|
|
1462
1399
|
|
|
@@ -1471,101 +1408,65 @@ class PostFleetsFleetIdMembersOperation(EsiOperation):
|
|
|
1471
1408
|
"""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"""
|
|
1472
1409
|
...
|
|
1473
1410
|
|
|
1474
|
-
def results_localized(self, languages: str |
|
|
1411
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[Any]]:
|
|
1475
1412
|
"""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"""
|
|
1476
1413
|
...
|
|
1477
1414
|
|
|
1478
1415
|
|
|
1479
1416
|
class PostFleetsFleetIdWingsOperation(EsiOperation):
|
|
1480
1417
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1481
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> Any:
|
|
1418
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1482
1419
|
"""Create a new wing in a fleet"""
|
|
1483
1420
|
...
|
|
1484
1421
|
|
|
1485
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
1422
|
+
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1486
1423
|
"""Create a new wing in a fleet"""
|
|
1487
1424
|
...
|
|
1488
1425
|
|
|
1489
|
-
def results_localized(self, languages: str |
|
|
1426
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1490
1427
|
"""Create a new wing in a fleet"""
|
|
1491
1428
|
...
|
|
1492
1429
|
|
|
1493
1430
|
|
|
1494
1431
|
class PostFleetsFleetIdWingsWingIdSquadsOperation(EsiOperation):
|
|
1495
1432
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1496
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> Any:
|
|
1433
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1497
1434
|
"""Create a new squad in a fleet"""
|
|
1498
1435
|
...
|
|
1499
1436
|
|
|
1500
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
1437
|
+
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1501
1438
|
"""Create a new squad in a fleet"""
|
|
1502
1439
|
...
|
|
1503
1440
|
|
|
1504
|
-
def results_localized(self, languages: str |
|
|
1441
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1505
1442
|
"""Create a new squad in a fleet"""
|
|
1506
1443
|
...
|
|
1507
1444
|
|
|
1508
1445
|
|
|
1509
1446
|
class PutFleetsFleetIdOperation(EsiOperation):
|
|
1510
|
-
"""EsiOperation, use result()
|
|
1511
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
1512
|
-
"""Update settings about a fleet"""
|
|
1513
|
-
...
|
|
1514
|
-
|
|
1515
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
1516
|
-
"""Update settings about a fleet"""
|
|
1517
|
-
...
|
|
1518
|
-
|
|
1519
|
-
def results_localized(self, languages: str | list[str] = 'en', **kwargs) -> list[Any]:
|
|
1447
|
+
"""EsiOperation, use result()"""
|
|
1448
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1520
1449
|
"""Update settings about a fleet"""
|
|
1521
1450
|
...
|
|
1522
1451
|
|
|
1523
|
-
|
|
1524
1452
|
class PutFleetsFleetIdMembersMemberIdOperation(EsiOperation):
|
|
1525
|
-
"""EsiOperation, use result()
|
|
1526
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
1453
|
+
"""EsiOperation, use result()"""
|
|
1454
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1527
1455
|
"""Move a fleet member around"""
|
|
1528
1456
|
...
|
|
1529
1457
|
|
|
1530
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
1531
|
-
"""Move a fleet member around"""
|
|
1532
|
-
...
|
|
1533
|
-
|
|
1534
|
-
def results_localized(self, languages: str | list[str] = 'en', **kwargs) -> list[Any]:
|
|
1535
|
-
"""Move a fleet member around"""
|
|
1536
|
-
...
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
1458
|
class PutFleetsFleetIdSquadsSquadIdOperation(EsiOperation):
|
|
1540
|
-
"""EsiOperation, use result()
|
|
1541
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
1542
|
-
"""Rename a fleet squad"""
|
|
1543
|
-
...
|
|
1544
|
-
|
|
1545
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
1546
|
-
"""Rename a fleet squad"""
|
|
1547
|
-
...
|
|
1548
|
-
|
|
1549
|
-
def results_localized(self, languages: str | list[str] = 'en', **kwargs) -> list[Any]:
|
|
1459
|
+
"""EsiOperation, use result()"""
|
|
1460
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1550
1461
|
"""Rename a fleet squad"""
|
|
1551
1462
|
...
|
|
1552
1463
|
|
|
1553
|
-
|
|
1554
1464
|
class PutFleetsFleetIdWingsWingIdOperation(EsiOperation):
|
|
1555
|
-
"""EsiOperation, use result()
|
|
1556
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
1557
|
-
"""Rename a fleet wing"""
|
|
1558
|
-
...
|
|
1559
|
-
|
|
1560
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
1561
|
-
"""Rename a fleet wing"""
|
|
1562
|
-
...
|
|
1563
|
-
|
|
1564
|
-
def results_localized(self, languages: str | list[str] = 'en', **kwargs) -> list[Any]:
|
|
1465
|
+
"""EsiOperation, use result()"""
|
|
1466
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1565
1467
|
"""Rename a fleet wing"""
|
|
1566
1468
|
...
|
|
1567
1469
|
|
|
1568
|
-
|
|
1569
1470
|
class GetIncursionsOperation(EsiOperation):
|
|
1570
1471
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1571
1472
|
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
@@ -1576,7 +1477,7 @@ class GetIncursionsOperation(EsiOperation):
|
|
|
1576
1477
|
"""Return a list of current incursions"""
|
|
1577
1478
|
...
|
|
1578
1479
|
|
|
1579
|
-
def results_localized(self, languages: str |
|
|
1480
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1580
1481
|
"""Return a list of current incursions"""
|
|
1581
1482
|
...
|
|
1582
1483
|
|
|
@@ -1591,7 +1492,7 @@ class GetCharactersCharacterIdIndustryJobsOperation(EsiOperation):
|
|
|
1591
1492
|
"""List industry jobs placed by a character"""
|
|
1592
1493
|
...
|
|
1593
1494
|
|
|
1594
|
-
def results_localized(self, languages: str |
|
|
1495
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1595
1496
|
"""List industry jobs placed by a character"""
|
|
1596
1497
|
...
|
|
1597
1498
|
|
|
@@ -1606,7 +1507,7 @@ class GetCharactersCharacterIdMiningOperation(EsiOperation):
|
|
|
1606
1507
|
"""Paginated record of all mining done by a character for the past 30 days"""
|
|
1607
1508
|
...
|
|
1608
1509
|
|
|
1609
|
-
def results_localized(self, languages: str |
|
|
1510
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1610
1511
|
"""Paginated record of all mining done by a character for the past 30 days"""
|
|
1611
1512
|
...
|
|
1612
1513
|
|
|
@@ -1621,7 +1522,7 @@ class GetCorporationCorporationIdMiningExtractionsOperation(EsiOperation):
|
|
|
1621
1522
|
"""Extraction timers for all moon chunks being extracted by refineries belonging to a corporation."""
|
|
1622
1523
|
...
|
|
1623
1524
|
|
|
1624
|
-
def results_localized(self, languages: str |
|
|
1525
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1625
1526
|
"""Extraction timers for all moon chunks being extracted by refineries belonging to a corporation."""
|
|
1626
1527
|
...
|
|
1627
1528
|
|
|
@@ -1636,7 +1537,7 @@ class GetCorporationCorporationIdMiningObserversOperation(EsiOperation):
|
|
|
1636
1537
|
"""Paginated list of all entities capable of observing and recording mining for a corporation"""
|
|
1637
1538
|
...
|
|
1638
1539
|
|
|
1639
|
-
def results_localized(self, languages: str |
|
|
1540
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1640
1541
|
"""Paginated list of all entities capable of observing and recording mining for a corporation"""
|
|
1641
1542
|
...
|
|
1642
1543
|
|
|
@@ -1651,7 +1552,7 @@ class GetCorporationCorporationIdMiningObserversObserverIdOperation(EsiOperation
|
|
|
1651
1552
|
"""Paginated record of all mining seen by an observer"""
|
|
1652
1553
|
...
|
|
1653
1554
|
|
|
1654
|
-
def results_localized(self, languages: str |
|
|
1555
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1655
1556
|
"""Paginated record of all mining seen by an observer"""
|
|
1656
1557
|
...
|
|
1657
1558
|
|
|
@@ -1666,7 +1567,7 @@ class GetCorporationsCorporationIdIndustryJobsOperation(EsiOperation):
|
|
|
1666
1567
|
"""List industry jobs run by a corporation"""
|
|
1667
1568
|
...
|
|
1668
1569
|
|
|
1669
|
-
def results_localized(self, languages: str |
|
|
1570
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1670
1571
|
"""List industry jobs run by a corporation"""
|
|
1671
1572
|
...
|
|
1672
1573
|
|
|
@@ -1681,7 +1582,7 @@ class GetIndustryFacilitiesOperation(EsiOperation):
|
|
|
1681
1582
|
"""Return a list of industry facilities"""
|
|
1682
1583
|
...
|
|
1683
1584
|
|
|
1684
|
-
def results_localized(self, languages: str |
|
|
1585
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1685
1586
|
"""Return a list of industry facilities"""
|
|
1686
1587
|
...
|
|
1687
1588
|
|
|
@@ -1696,7 +1597,7 @@ class GetIndustrySystemsOperation(EsiOperation):
|
|
|
1696
1597
|
"""Return cost indices for solar systems"""
|
|
1697
1598
|
...
|
|
1698
1599
|
|
|
1699
|
-
def results_localized(self, languages: str |
|
|
1600
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1700
1601
|
"""Return cost indices for solar systems"""
|
|
1701
1602
|
...
|
|
1702
1603
|
|
|
@@ -1711,7 +1612,7 @@ class GetInsurancePricesOperation(EsiOperation):
|
|
|
1711
1612
|
"""Return available insurance levels for all ship types"""
|
|
1712
1613
|
...
|
|
1713
1614
|
|
|
1714
|
-
def results_localized(self, languages: str |
|
|
1615
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1715
1616
|
"""Return available insurance levels for all ship types"""
|
|
1716
1617
|
...
|
|
1717
1618
|
|
|
@@ -1726,7 +1627,7 @@ class GetCharactersCharacterIdKillmailsRecentOperation(EsiOperation):
|
|
|
1726
1627
|
"""Return a list of a character's kills and losses going back 90 days"""
|
|
1727
1628
|
...
|
|
1728
1629
|
|
|
1729
|
-
def results_localized(self, languages: str |
|
|
1630
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1730
1631
|
"""Return a list of a character's kills and losses going back 90 days"""
|
|
1731
1632
|
...
|
|
1732
1633
|
|
|
@@ -1741,7 +1642,7 @@ class GetCorporationsCorporationIdKillmailsRecentOperation(EsiOperation):
|
|
|
1741
1642
|
"""Get a list of a corporation's kills and losses going back 90 days"""
|
|
1742
1643
|
...
|
|
1743
1644
|
|
|
1744
|
-
def results_localized(self, languages: str |
|
|
1645
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1745
1646
|
"""Get a list of a corporation's kills and losses going back 90 days"""
|
|
1746
1647
|
...
|
|
1747
1648
|
|
|
@@ -1756,7 +1657,7 @@ class GetKillmailsKillmailIdKillmailHashOperation(EsiOperation):
|
|
|
1756
1657
|
"""Return a single killmail from its ID and hash"""
|
|
1757
1658
|
...
|
|
1758
1659
|
|
|
1759
|
-
def results_localized(self, languages: str |
|
|
1660
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1760
1661
|
"""Return a single killmail from its ID and hash"""
|
|
1761
1662
|
...
|
|
1762
1663
|
|
|
@@ -1771,7 +1672,7 @@ class GetCharactersCharacterIdLocationOperation(EsiOperation):
|
|
|
1771
1672
|
"""Information about the characters current location. Returns the current solar system id, and also the current station or structure ID if applicable"""
|
|
1772
1673
|
...
|
|
1773
1674
|
|
|
1774
|
-
def results_localized(self, languages: str |
|
|
1675
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1775
1676
|
"""Information about the characters current location. Returns the current solar system id, and also the current station or structure ID if applicable"""
|
|
1776
1677
|
...
|
|
1777
1678
|
|
|
@@ -1786,7 +1687,7 @@ class GetCharactersCharacterIdOnlineOperation(EsiOperation):
|
|
|
1786
1687
|
"""Checks if the character is currently online"""
|
|
1787
1688
|
...
|
|
1788
1689
|
|
|
1789
|
-
def results_localized(self, languages: str |
|
|
1690
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1790
1691
|
"""Checks if the character is currently online"""
|
|
1791
1692
|
...
|
|
1792
1693
|
|
|
@@ -1801,7 +1702,7 @@ class GetCharactersCharacterIdShipOperation(EsiOperation):
|
|
|
1801
1702
|
"""Get the current ship type, name and id"""
|
|
1802
1703
|
...
|
|
1803
1704
|
|
|
1804
|
-
def results_localized(self, languages: str |
|
|
1705
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1805
1706
|
"""Get the current ship type, name and id"""
|
|
1806
1707
|
...
|
|
1807
1708
|
|
|
@@ -1816,7 +1717,7 @@ class GetCharactersCharacterIdLoyaltyPointsOperation(EsiOperation):
|
|
|
1816
1717
|
"""Return a list of loyalty points for all corporations the character has worked for"""
|
|
1817
1718
|
...
|
|
1818
1719
|
|
|
1819
|
-
def results_localized(self, languages: str |
|
|
1720
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1820
1721
|
"""Return a list of loyalty points for all corporations the character has worked for"""
|
|
1821
1722
|
...
|
|
1822
1723
|
|
|
@@ -1831,41 +1732,23 @@ class GetLoyaltyStoresCorporationIdOffersOperation(EsiOperation):
|
|
|
1831
1732
|
"""Return a list of offers from a specific corporation's loyalty store This route expires daily at 11:05"""
|
|
1832
1733
|
...
|
|
1833
1734
|
|
|
1834
|
-
def results_localized(self, languages: str |
|
|
1735
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1835
1736
|
"""Return a list of offers from a specific corporation's loyalty store This route expires daily at 11:05"""
|
|
1836
1737
|
...
|
|
1837
1738
|
|
|
1838
1739
|
|
|
1839
1740
|
class DeleteCharactersCharacterIdMailLabelsLabelIdOperation(EsiOperation):
|
|
1840
|
-
"""EsiOperation, use result()
|
|
1841
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
1741
|
+
"""EsiOperation, use result()"""
|
|
1742
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1842
1743
|
"""Delete a mail label"""
|
|
1843
1744
|
...
|
|
1844
1745
|
|
|
1845
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
1846
|
-
"""Delete a mail label"""
|
|
1847
|
-
...
|
|
1848
|
-
|
|
1849
|
-
def results_localized(self, languages: str | list[str] = 'en', **kwargs) -> list[Any]:
|
|
1850
|
-
"""Delete a mail label"""
|
|
1851
|
-
...
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
1746
|
class DeleteCharactersCharacterIdMailMailIdOperation(EsiOperation):
|
|
1855
|
-
"""EsiOperation, use result()
|
|
1856
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
1857
|
-
"""Delete a mail"""
|
|
1858
|
-
...
|
|
1859
|
-
|
|
1860
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
1747
|
+
"""EsiOperation, use result()"""
|
|
1748
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1861
1749
|
"""Delete a mail"""
|
|
1862
1750
|
...
|
|
1863
1751
|
|
|
1864
|
-
def results_localized(self, languages: str | list[str] = 'en', **kwargs) -> list[Any]:
|
|
1865
|
-
"""Delete a mail"""
|
|
1866
|
-
...
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
1752
|
class GetCharactersCharacterIdMailOperation(EsiOperation):
|
|
1870
1753
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1871
1754
|
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
@@ -1876,7 +1759,7 @@ class GetCharactersCharacterIdMailOperation(EsiOperation):
|
|
|
1876
1759
|
"""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"""
|
|
1877
1760
|
...
|
|
1878
1761
|
|
|
1879
|
-
def results_localized(self, languages: str |
|
|
1762
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1880
1763
|
"""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"""
|
|
1881
1764
|
...
|
|
1882
1765
|
|
|
@@ -1891,7 +1774,7 @@ class GetCharactersCharacterIdMailLabelsOperation(EsiOperation):
|
|
|
1891
1774
|
"""Return a list of the users mail labels, unread counts for each label and a total unread count."""
|
|
1892
1775
|
...
|
|
1893
1776
|
|
|
1894
|
-
def results_localized(self, languages: str |
|
|
1777
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1895
1778
|
"""Return a list of the users mail labels, unread counts for each label and a total unread count."""
|
|
1896
1779
|
...
|
|
1897
1780
|
|
|
@@ -1906,7 +1789,7 @@ class GetCharactersCharacterIdMailListsOperation(EsiOperation):
|
|
|
1906
1789
|
"""Return all mailing lists that the character is subscribed to"""
|
|
1907
1790
|
...
|
|
1908
1791
|
|
|
1909
|
-
def results_localized(self, languages: str |
|
|
1792
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1910
1793
|
"""Return all mailing lists that the character is subscribed to"""
|
|
1911
1794
|
...
|
|
1912
1795
|
|
|
@@ -1921,56 +1804,47 @@ class GetCharactersCharacterIdMailMailIdOperation(EsiOperation):
|
|
|
1921
1804
|
"""Return the contents of an EVE mail"""
|
|
1922
1805
|
...
|
|
1923
1806
|
|
|
1924
|
-
def results_localized(self, languages: str |
|
|
1807
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1925
1808
|
"""Return the contents of an EVE mail"""
|
|
1926
1809
|
...
|
|
1927
1810
|
|
|
1928
1811
|
|
|
1929
1812
|
class PostCharactersCharacterIdMailOperation(EsiOperation):
|
|
1930
1813
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1931
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
1814
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> int:
|
|
1932
1815
|
"""Create and send a new mail"""
|
|
1933
1816
|
...
|
|
1934
1817
|
|
|
1935
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[
|
|
1818
|
+
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
1936
1819
|
"""Create and send a new mail"""
|
|
1937
1820
|
...
|
|
1938
1821
|
|
|
1939
|
-
def results_localized(self, languages: str |
|
|
1822
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
1940
1823
|
"""Create and send a new mail"""
|
|
1941
1824
|
...
|
|
1942
1825
|
|
|
1943
1826
|
|
|
1944
1827
|
class PostCharactersCharacterIdMailLabelsOperation(EsiOperation):
|
|
1945
1828
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1946
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
1829
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> int:
|
|
1947
1830
|
"""Create a mail label"""
|
|
1948
1831
|
...
|
|
1949
1832
|
|
|
1950
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[
|
|
1833
|
+
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
1951
1834
|
"""Create a mail label"""
|
|
1952
1835
|
...
|
|
1953
1836
|
|
|
1954
|
-
def results_localized(self, languages: str |
|
|
1837
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
1955
1838
|
"""Create a mail label"""
|
|
1956
1839
|
...
|
|
1957
1840
|
|
|
1958
1841
|
|
|
1959
1842
|
class PutCharactersCharacterIdMailMailIdOperation(EsiOperation):
|
|
1960
|
-
"""EsiOperation, use result()
|
|
1961
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
1962
|
-
"""Update metadata about a mail"""
|
|
1963
|
-
...
|
|
1964
|
-
|
|
1965
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
1843
|
+
"""EsiOperation, use result()"""
|
|
1844
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1966
1845
|
"""Update metadata about a mail"""
|
|
1967
1846
|
...
|
|
1968
1847
|
|
|
1969
|
-
def results_localized(self, languages: str | list[str] = 'en', **kwargs) -> list[Any]:
|
|
1970
|
-
"""Update metadata about a mail"""
|
|
1971
|
-
...
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
1848
|
class GetCharactersCharacterIdOrdersOperation(EsiOperation):
|
|
1975
1849
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1976
1850
|
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
@@ -1981,7 +1855,7 @@ class GetCharactersCharacterIdOrdersOperation(EsiOperation):
|
|
|
1981
1855
|
"""List open market orders placed by a character"""
|
|
1982
1856
|
...
|
|
1983
1857
|
|
|
1984
|
-
def results_localized(self, languages: str |
|
|
1858
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
1985
1859
|
"""List open market orders placed by a character"""
|
|
1986
1860
|
...
|
|
1987
1861
|
|
|
@@ -1996,7 +1870,7 @@ class GetCharactersCharacterIdOrdersHistoryOperation(EsiOperation):
|
|
|
1996
1870
|
"""List cancelled and expired market orders placed by a character up to 90 days in the past."""
|
|
1997
1871
|
...
|
|
1998
1872
|
|
|
1999
|
-
def results_localized(self, languages: str |
|
|
1873
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2000
1874
|
"""List cancelled and expired market orders placed by a character up to 90 days in the past."""
|
|
2001
1875
|
...
|
|
2002
1876
|
|
|
@@ -2011,7 +1885,7 @@ class GetCorporationsCorporationIdOrdersOperation(EsiOperation):
|
|
|
2011
1885
|
"""List open market orders placed on behalf of a corporation"""
|
|
2012
1886
|
...
|
|
2013
1887
|
|
|
2014
|
-
def results_localized(self, languages: str |
|
|
1888
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2015
1889
|
"""List open market orders placed on behalf of a corporation"""
|
|
2016
1890
|
...
|
|
2017
1891
|
|
|
@@ -2026,7 +1900,7 @@ class GetCorporationsCorporationIdOrdersHistoryOperation(EsiOperation):
|
|
|
2026
1900
|
"""List cancelled and expired market orders placed on behalf of a corporation up to 90 days in the past."""
|
|
2027
1901
|
...
|
|
2028
1902
|
|
|
2029
|
-
def results_localized(self, languages: str |
|
|
1903
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2030
1904
|
"""List cancelled and expired market orders placed on behalf of a corporation up to 90 days in the past."""
|
|
2031
1905
|
...
|
|
2032
1906
|
|
|
@@ -2041,7 +1915,7 @@ class GetMarketsGroupsOperation(EsiOperation):
|
|
|
2041
1915
|
"""Get a list of item groups This route expires daily at 11:05"""
|
|
2042
1916
|
...
|
|
2043
1917
|
|
|
2044
|
-
def results_localized(self, languages: str |
|
|
1918
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
2045
1919
|
"""Get a list of item groups This route expires daily at 11:05"""
|
|
2046
1920
|
...
|
|
2047
1921
|
|
|
@@ -2056,7 +1930,7 @@ class GetMarketsGroupsMarketGroupIdOperation(EsiOperation):
|
|
|
2056
1930
|
"""Get information on an item group This route expires daily at 11:05"""
|
|
2057
1931
|
...
|
|
2058
1932
|
|
|
2059
|
-
def results_localized(self, languages: str |
|
|
1933
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2060
1934
|
"""Get information on an item group This route expires daily at 11:05"""
|
|
2061
1935
|
...
|
|
2062
1936
|
|
|
@@ -2071,7 +1945,7 @@ class GetMarketsPricesOperation(EsiOperation):
|
|
|
2071
1945
|
"""Return a list of prices"""
|
|
2072
1946
|
...
|
|
2073
1947
|
|
|
2074
|
-
def results_localized(self, languages: str |
|
|
1948
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2075
1949
|
"""Return a list of prices"""
|
|
2076
1950
|
...
|
|
2077
1951
|
|
|
@@ -2086,7 +1960,7 @@ class GetMarketsRegionIdHistoryOperation(EsiOperation):
|
|
|
2086
1960
|
"""Return a list of historical market statistics for the specified type in a region This route expires daily at 11:05"""
|
|
2087
1961
|
...
|
|
2088
1962
|
|
|
2089
|
-
def results_localized(self, languages: str |
|
|
1963
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2090
1964
|
"""Return a list of historical market statistics for the specified type in a region This route expires daily at 11:05"""
|
|
2091
1965
|
...
|
|
2092
1966
|
|
|
@@ -2101,7 +1975,7 @@ class GetMarketsRegionIdOrdersOperation(EsiOperation):
|
|
|
2101
1975
|
"""Return a list of orders in a region"""
|
|
2102
1976
|
...
|
|
2103
1977
|
|
|
2104
|
-
def results_localized(self, languages: str |
|
|
1978
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2105
1979
|
"""Return a list of orders in a region"""
|
|
2106
1980
|
...
|
|
2107
1981
|
|
|
@@ -2116,7 +1990,7 @@ class GetMarketsRegionIdTypesOperation(EsiOperation):
|
|
|
2116
1990
|
"""Return a list of type IDs that have active orders in the region, for efficient market indexing."""
|
|
2117
1991
|
...
|
|
2118
1992
|
|
|
2119
|
-
def results_localized(self, languages: str |
|
|
1993
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
2120
1994
|
"""Return a list of type IDs that have active orders in the region, for efficient market indexing."""
|
|
2121
1995
|
...
|
|
2122
1996
|
|
|
@@ -2131,7 +2005,7 @@ class GetMarketsStructuresStructureIdOperation(EsiOperation):
|
|
|
2131
2005
|
"""Return all orders in a structure"""
|
|
2132
2006
|
...
|
|
2133
2007
|
|
|
2134
|
-
def results_localized(self, languages: str |
|
|
2008
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2135
2009
|
"""Return all orders in a structure"""
|
|
2136
2010
|
...
|
|
2137
2011
|
|
|
@@ -2146,7 +2020,7 @@ class GetCharactersCharacterIdPlanetsOperation(EsiOperation):
|
|
|
2146
2020
|
"""Returns a list of all planetary colonies owned by a character."""
|
|
2147
2021
|
...
|
|
2148
2022
|
|
|
2149
|
-
def results_localized(self, languages: str |
|
|
2023
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2150
2024
|
"""Returns a list of all planetary colonies owned by a character."""
|
|
2151
2025
|
...
|
|
2152
2026
|
|
|
@@ -2161,7 +2035,7 @@ class GetCharactersCharacterIdPlanetsPlanetIdOperation(EsiOperation):
|
|
|
2161
2035
|
"""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."""
|
|
2162
2036
|
...
|
|
2163
2037
|
|
|
2164
|
-
def results_localized(self, languages: str |
|
|
2038
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2165
2039
|
"""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."""
|
|
2166
2040
|
...
|
|
2167
2041
|
|
|
@@ -2176,7 +2050,7 @@ class GetCorporationsCorporationIdCustomsOfficesOperation(EsiOperation):
|
|
|
2176
2050
|
"""List customs offices owned by a corporation"""
|
|
2177
2051
|
...
|
|
2178
2052
|
|
|
2179
|
-
def results_localized(self, languages: str |
|
|
2053
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2180
2054
|
"""List customs offices owned by a corporation"""
|
|
2181
2055
|
...
|
|
2182
2056
|
|
|
@@ -2191,7 +2065,7 @@ class GetUniverseSchematicsSchematicIdOperation(EsiOperation):
|
|
|
2191
2065
|
"""Get information on a planetary factory schematic"""
|
|
2192
2066
|
...
|
|
2193
2067
|
|
|
2194
|
-
def results_localized(self, languages: str |
|
|
2068
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2195
2069
|
"""Get information on a planetary factory schematic"""
|
|
2196
2070
|
...
|
|
2197
2071
|
|
|
@@ -2206,7 +2080,7 @@ class GetRouteOriginDestinationOperation(EsiOperation):
|
|
|
2206
2080
|
"""Get the systems between origin and destination"""
|
|
2207
2081
|
...
|
|
2208
2082
|
|
|
2209
|
-
def results_localized(self, languages: str |
|
|
2083
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
2210
2084
|
"""Get the systems between origin and destination"""
|
|
2211
2085
|
...
|
|
2212
2086
|
|
|
@@ -2221,7 +2095,7 @@ class GetCharactersCharacterIdSearchOperation(EsiOperation):
|
|
|
2221
2095
|
"""Search for entities that match a given sub-string."""
|
|
2222
2096
|
...
|
|
2223
2097
|
|
|
2224
|
-
def results_localized(self, languages: str |
|
|
2098
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2225
2099
|
"""Search for entities that match a given sub-string."""
|
|
2226
2100
|
...
|
|
2227
2101
|
|
|
@@ -2236,7 +2110,7 @@ class GetCharactersCharacterIdAttributesOperation(EsiOperation):
|
|
|
2236
2110
|
"""Return attributes of a character"""
|
|
2237
2111
|
...
|
|
2238
2112
|
|
|
2239
|
-
def results_localized(self, languages: str |
|
|
2113
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2240
2114
|
"""Return attributes of a character"""
|
|
2241
2115
|
...
|
|
2242
2116
|
|
|
@@ -2251,7 +2125,7 @@ class GetCharactersCharacterIdSkillqueueOperation(EsiOperation):
|
|
|
2251
2125
|
"""List the configured skill queue for the given character"""
|
|
2252
2126
|
...
|
|
2253
2127
|
|
|
2254
|
-
def results_localized(self, languages: str |
|
|
2128
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2255
2129
|
"""List the configured skill queue for the given character"""
|
|
2256
2130
|
...
|
|
2257
2131
|
|
|
@@ -2266,7 +2140,7 @@ class GetCharactersCharacterIdSkillsOperation(EsiOperation):
|
|
|
2266
2140
|
"""List all trained skills for the given character"""
|
|
2267
2141
|
...
|
|
2268
2142
|
|
|
2269
|
-
def results_localized(self, languages: str |
|
|
2143
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2270
2144
|
"""List all trained skills for the given character"""
|
|
2271
2145
|
...
|
|
2272
2146
|
|
|
@@ -2281,7 +2155,7 @@ class GetSovereigntyCampaignsOperation(EsiOperation):
|
|
|
2281
2155
|
"""Shows sovereignty data for campaigns."""
|
|
2282
2156
|
...
|
|
2283
2157
|
|
|
2284
|
-
def results_localized(self, languages: str |
|
|
2158
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2285
2159
|
"""Shows sovereignty data for campaigns."""
|
|
2286
2160
|
...
|
|
2287
2161
|
|
|
@@ -2296,7 +2170,7 @@ class GetSovereigntyMapOperation(EsiOperation):
|
|
|
2296
2170
|
"""Shows sovereignty information for solar systems"""
|
|
2297
2171
|
...
|
|
2298
2172
|
|
|
2299
|
-
def results_localized(self, languages: str |
|
|
2173
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2300
2174
|
"""Shows sovereignty information for solar systems"""
|
|
2301
2175
|
...
|
|
2302
2176
|
|
|
@@ -2311,7 +2185,7 @@ class GetSovereigntyStructuresOperation(EsiOperation):
|
|
|
2311
2185
|
"""Shows sovereignty data for structures."""
|
|
2312
2186
|
...
|
|
2313
2187
|
|
|
2314
|
-
def results_localized(self, languages: str |
|
|
2188
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2315
2189
|
"""Shows sovereignty data for structures."""
|
|
2316
2190
|
...
|
|
2317
2191
|
|
|
@@ -2326,7 +2200,7 @@ class GetStatusOperation(EsiOperation):
|
|
|
2326
2200
|
"""EVE Server status"""
|
|
2327
2201
|
...
|
|
2328
2202
|
|
|
2329
|
-
def results_localized(self, languages: str |
|
|
2203
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2330
2204
|
"""EVE Server status"""
|
|
2331
2205
|
...
|
|
2332
2206
|
|
|
@@ -2341,7 +2215,7 @@ class GetUniverseAncestriesOperation(EsiOperation):
|
|
|
2341
2215
|
"""Get all character ancestries This route expires daily at 11:05"""
|
|
2342
2216
|
...
|
|
2343
2217
|
|
|
2344
|
-
def results_localized(self, languages: str |
|
|
2218
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2345
2219
|
"""Get all character ancestries This route expires daily at 11:05"""
|
|
2346
2220
|
...
|
|
2347
2221
|
|
|
@@ -2356,7 +2230,7 @@ class GetUniverseAsteroidBeltsAsteroidBeltIdOperation(EsiOperation):
|
|
|
2356
2230
|
"""Get information on an asteroid belt This route expires daily at 11:05"""
|
|
2357
2231
|
...
|
|
2358
2232
|
|
|
2359
|
-
def results_localized(self, languages: str |
|
|
2233
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2360
2234
|
"""Get information on an asteroid belt This route expires daily at 11:05"""
|
|
2361
2235
|
...
|
|
2362
2236
|
|
|
@@ -2371,7 +2245,7 @@ class GetUniverseBloodlinesOperation(EsiOperation):
|
|
|
2371
2245
|
"""Get a list of bloodlines This route expires daily at 11:05"""
|
|
2372
2246
|
...
|
|
2373
2247
|
|
|
2374
|
-
def results_localized(self, languages: str |
|
|
2248
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2375
2249
|
"""Get a list of bloodlines This route expires daily at 11:05"""
|
|
2376
2250
|
...
|
|
2377
2251
|
|
|
@@ -2386,7 +2260,7 @@ class GetUniverseCategoriesOperation(EsiOperation):
|
|
|
2386
2260
|
"""Get a list of item categories This route expires daily at 11:05"""
|
|
2387
2261
|
...
|
|
2388
2262
|
|
|
2389
|
-
def results_localized(self, languages: str |
|
|
2263
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
2390
2264
|
"""Get a list of item categories This route expires daily at 11:05"""
|
|
2391
2265
|
...
|
|
2392
2266
|
|
|
@@ -2401,7 +2275,7 @@ class GetUniverseCategoriesCategoryIdOperation(EsiOperation):
|
|
|
2401
2275
|
"""Get information of an item category This route expires daily at 11:05"""
|
|
2402
2276
|
...
|
|
2403
2277
|
|
|
2404
|
-
def results_localized(self, languages: str |
|
|
2278
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2405
2279
|
"""Get information of an item category This route expires daily at 11:05"""
|
|
2406
2280
|
...
|
|
2407
2281
|
|
|
@@ -2416,7 +2290,7 @@ class GetUniverseConstellationsOperation(EsiOperation):
|
|
|
2416
2290
|
"""Get a list of constellations This route expires daily at 11:05"""
|
|
2417
2291
|
...
|
|
2418
2292
|
|
|
2419
|
-
def results_localized(self, languages: str |
|
|
2293
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
2420
2294
|
"""Get a list of constellations This route expires daily at 11:05"""
|
|
2421
2295
|
...
|
|
2422
2296
|
|
|
@@ -2431,7 +2305,7 @@ class GetUniverseConstellationsConstellationIdOperation(EsiOperation):
|
|
|
2431
2305
|
"""Get information on a constellation This route expires daily at 11:05"""
|
|
2432
2306
|
...
|
|
2433
2307
|
|
|
2434
|
-
def results_localized(self, languages: str |
|
|
2308
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2435
2309
|
"""Get information on a constellation This route expires daily at 11:05"""
|
|
2436
2310
|
...
|
|
2437
2311
|
|
|
@@ -2446,7 +2320,7 @@ class GetUniverseFactionsOperation(EsiOperation):
|
|
|
2446
2320
|
"""Get a list of factions This route expires daily at 11:05"""
|
|
2447
2321
|
...
|
|
2448
2322
|
|
|
2449
|
-
def results_localized(self, languages: str |
|
|
2323
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2450
2324
|
"""Get a list of factions This route expires daily at 11:05"""
|
|
2451
2325
|
...
|
|
2452
2326
|
|
|
@@ -2461,7 +2335,7 @@ class GetUniverseGraphicsOperation(EsiOperation):
|
|
|
2461
2335
|
"""Get a list of graphics This route expires daily at 11:05"""
|
|
2462
2336
|
...
|
|
2463
2337
|
|
|
2464
|
-
def results_localized(self, languages: str |
|
|
2338
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
2465
2339
|
"""Get a list of graphics This route expires daily at 11:05"""
|
|
2466
2340
|
...
|
|
2467
2341
|
|
|
@@ -2476,7 +2350,7 @@ class GetUniverseGraphicsGraphicIdOperation(EsiOperation):
|
|
|
2476
2350
|
"""Get information on a graphic This route expires daily at 11:05"""
|
|
2477
2351
|
...
|
|
2478
2352
|
|
|
2479
|
-
def results_localized(self, languages: str |
|
|
2353
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2480
2354
|
"""Get information on a graphic This route expires daily at 11:05"""
|
|
2481
2355
|
...
|
|
2482
2356
|
|
|
@@ -2491,7 +2365,7 @@ class GetUniverseGroupsOperation(EsiOperation):
|
|
|
2491
2365
|
"""Get a list of item groups This route expires daily at 11:05"""
|
|
2492
2366
|
...
|
|
2493
2367
|
|
|
2494
|
-
def results_localized(self, languages: str |
|
|
2368
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
2495
2369
|
"""Get a list of item groups This route expires daily at 11:05"""
|
|
2496
2370
|
...
|
|
2497
2371
|
|
|
@@ -2506,7 +2380,7 @@ class GetUniverseGroupsGroupIdOperation(EsiOperation):
|
|
|
2506
2380
|
"""Get information on an item group This route expires daily at 11:05"""
|
|
2507
2381
|
...
|
|
2508
2382
|
|
|
2509
|
-
def results_localized(self, languages: str |
|
|
2383
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2510
2384
|
"""Get information on an item group This route expires daily at 11:05"""
|
|
2511
2385
|
...
|
|
2512
2386
|
|
|
@@ -2521,7 +2395,7 @@ class GetUniverseMoonsMoonIdOperation(EsiOperation):
|
|
|
2521
2395
|
"""Get information on a moon This route expires daily at 11:05"""
|
|
2522
2396
|
...
|
|
2523
2397
|
|
|
2524
|
-
def results_localized(self, languages: str |
|
|
2398
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2525
2399
|
"""Get information on a moon This route expires daily at 11:05"""
|
|
2526
2400
|
...
|
|
2527
2401
|
|
|
@@ -2536,7 +2410,7 @@ class GetUniversePlanetsPlanetIdOperation(EsiOperation):
|
|
|
2536
2410
|
"""Get information on a planet This route expires daily at 11:05"""
|
|
2537
2411
|
...
|
|
2538
2412
|
|
|
2539
|
-
def results_localized(self, languages: str |
|
|
2413
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2540
2414
|
"""Get information on a planet This route expires daily at 11:05"""
|
|
2541
2415
|
...
|
|
2542
2416
|
|
|
@@ -2551,7 +2425,7 @@ class GetUniverseRacesOperation(EsiOperation):
|
|
|
2551
2425
|
"""Get a list of character races This route expires daily at 11:05"""
|
|
2552
2426
|
...
|
|
2553
2427
|
|
|
2554
|
-
def results_localized(self, languages: str |
|
|
2428
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2555
2429
|
"""Get a list of character races This route expires daily at 11:05"""
|
|
2556
2430
|
...
|
|
2557
2431
|
|
|
@@ -2566,7 +2440,7 @@ class GetUniverseRegionsOperation(EsiOperation):
|
|
|
2566
2440
|
"""Get a list of regions This route expires daily at 11:05"""
|
|
2567
2441
|
...
|
|
2568
2442
|
|
|
2569
|
-
def results_localized(self, languages: str |
|
|
2443
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
2570
2444
|
"""Get a list of regions This route expires daily at 11:05"""
|
|
2571
2445
|
...
|
|
2572
2446
|
|
|
@@ -2581,7 +2455,7 @@ class GetUniverseRegionsRegionIdOperation(EsiOperation):
|
|
|
2581
2455
|
"""Get information on a region This route expires daily at 11:05"""
|
|
2582
2456
|
...
|
|
2583
2457
|
|
|
2584
|
-
def results_localized(self, languages: str |
|
|
2458
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2585
2459
|
"""Get information on a region This route expires daily at 11:05"""
|
|
2586
2460
|
...
|
|
2587
2461
|
|
|
@@ -2596,7 +2470,7 @@ class GetUniverseStargatesStargateIdOperation(EsiOperation):
|
|
|
2596
2470
|
"""Get information on a stargate This route expires daily at 11:05"""
|
|
2597
2471
|
...
|
|
2598
2472
|
|
|
2599
|
-
def results_localized(self, languages: str |
|
|
2473
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2600
2474
|
"""Get information on a stargate This route expires daily at 11:05"""
|
|
2601
2475
|
...
|
|
2602
2476
|
|
|
@@ -2611,7 +2485,7 @@ class GetUniverseStarsStarIdOperation(EsiOperation):
|
|
|
2611
2485
|
"""Get information on a star This route expires daily at 11:05"""
|
|
2612
2486
|
...
|
|
2613
2487
|
|
|
2614
|
-
def results_localized(self, languages: str |
|
|
2488
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2615
2489
|
"""Get information on a star This route expires daily at 11:05"""
|
|
2616
2490
|
...
|
|
2617
2491
|
|
|
@@ -2626,7 +2500,7 @@ class GetUniverseStationsStationIdOperation(EsiOperation):
|
|
|
2626
2500
|
"""Get information on a station This route expires daily at 11:05"""
|
|
2627
2501
|
...
|
|
2628
2502
|
|
|
2629
|
-
def results_localized(self, languages: str |
|
|
2503
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2630
2504
|
"""Get information on a station This route expires daily at 11:05"""
|
|
2631
2505
|
...
|
|
2632
2506
|
|
|
@@ -2641,7 +2515,7 @@ class GetUniverseStructuresOperation(EsiOperation):
|
|
|
2641
2515
|
"""List all public structures"""
|
|
2642
2516
|
...
|
|
2643
2517
|
|
|
2644
|
-
def results_localized(self, languages: str |
|
|
2518
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
2645
2519
|
"""List all public structures"""
|
|
2646
2520
|
...
|
|
2647
2521
|
|
|
@@ -2656,7 +2530,7 @@ class GetUniverseStructuresStructureIdOperation(EsiOperation):
|
|
|
2656
2530
|
"""Returns information on requested structure if you are on the ACL. Otherwise, returns "Forbidden" for all inputs."""
|
|
2657
2531
|
...
|
|
2658
2532
|
|
|
2659
|
-
def results_localized(self, languages: str |
|
|
2533
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2660
2534
|
"""Returns information on requested structure if you are on the ACL. Otherwise, returns "Forbidden" for all inputs."""
|
|
2661
2535
|
...
|
|
2662
2536
|
|
|
@@ -2671,7 +2545,7 @@ class GetUniverseSystemJumpsOperation(EsiOperation):
|
|
|
2671
2545
|
"""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"""
|
|
2672
2546
|
...
|
|
2673
2547
|
|
|
2674
|
-
def results_localized(self, languages: str |
|
|
2548
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2675
2549
|
"""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"""
|
|
2676
2550
|
...
|
|
2677
2551
|
|
|
@@ -2686,7 +2560,7 @@ class GetUniverseSystemKillsOperation(EsiOperation):
|
|
|
2686
2560
|
"""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"""
|
|
2687
2561
|
...
|
|
2688
2562
|
|
|
2689
|
-
def results_localized(self, languages: str |
|
|
2563
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2690
2564
|
"""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"""
|
|
2691
2565
|
...
|
|
2692
2566
|
|
|
@@ -2701,7 +2575,7 @@ class GetUniverseSystemsOperation(EsiOperation):
|
|
|
2701
2575
|
"""Get a list of solar systems This route expires daily at 11:05"""
|
|
2702
2576
|
...
|
|
2703
2577
|
|
|
2704
|
-
def results_localized(self, languages: str |
|
|
2578
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
2705
2579
|
"""Get a list of solar systems This route expires daily at 11:05"""
|
|
2706
2580
|
...
|
|
2707
2581
|
|
|
@@ -2716,7 +2590,7 @@ class GetUniverseSystemsSystemIdOperation(EsiOperation):
|
|
|
2716
2590
|
"""Get information on a solar system. This route expires daily at 11:05"""
|
|
2717
2591
|
...
|
|
2718
2592
|
|
|
2719
|
-
def results_localized(self, languages: str |
|
|
2593
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2720
2594
|
"""Get information on a solar system. This route expires daily at 11:05"""
|
|
2721
2595
|
...
|
|
2722
2596
|
|
|
@@ -2731,7 +2605,7 @@ class GetUniverseTypesOperation(EsiOperation):
|
|
|
2731
2605
|
"""Get a list of type ids This route expires daily at 11:05"""
|
|
2732
2606
|
...
|
|
2733
2607
|
|
|
2734
|
-
def results_localized(self, languages: str |
|
|
2608
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
2735
2609
|
"""Get a list of type ids This route expires daily at 11:05"""
|
|
2736
2610
|
...
|
|
2737
2611
|
|
|
@@ -2746,37 +2620,37 @@ class GetUniverseTypesTypeIdOperation(EsiOperation):
|
|
|
2746
2620
|
"""Get information on a type This route expires daily at 11:05"""
|
|
2747
2621
|
...
|
|
2748
2622
|
|
|
2749
|
-
def results_localized(self, languages: str |
|
|
2623
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2750
2624
|
"""Get information on a type This route expires daily at 11:05"""
|
|
2751
2625
|
...
|
|
2752
2626
|
|
|
2753
2627
|
|
|
2754
2628
|
class PostUniverseIdsOperation(EsiOperation):
|
|
2755
2629
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2756
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
2630
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> Any:
|
|
2757
2631
|
"""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"""
|
|
2758
2632
|
...
|
|
2759
2633
|
|
|
2760
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[
|
|
2634
|
+
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
2761
2635
|
"""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"""
|
|
2762
2636
|
...
|
|
2763
2637
|
|
|
2764
|
-
def results_localized(self, languages: str |
|
|
2638
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[Any]]:
|
|
2765
2639
|
"""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"""
|
|
2766
2640
|
...
|
|
2767
2641
|
|
|
2768
2642
|
|
|
2769
2643
|
class PostUniverseNamesOperation(EsiOperation):
|
|
2770
2644
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2771
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
2645
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> Any:
|
|
2772
2646
|
"""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"""
|
|
2773
2647
|
...
|
|
2774
2648
|
|
|
2775
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[
|
|
2649
|
+
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
2776
2650
|
"""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"""
|
|
2777
2651
|
...
|
|
2778
2652
|
|
|
2779
|
-
def results_localized(self, languages: str |
|
|
2653
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[Any]]:
|
|
2780
2654
|
"""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"""
|
|
2781
2655
|
...
|
|
2782
2656
|
|
|
@@ -2791,7 +2665,7 @@ class PostUiAutopilotWaypointOperation(EsiOperation):
|
|
|
2791
2665
|
"""Set a solar system as autopilot waypoint"""
|
|
2792
2666
|
...
|
|
2793
2667
|
|
|
2794
|
-
def results_localized(self, languages: str |
|
|
2668
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[Any]]:
|
|
2795
2669
|
"""Set a solar system as autopilot waypoint"""
|
|
2796
2670
|
...
|
|
2797
2671
|
|
|
@@ -2806,7 +2680,7 @@ class PostUiOpenwindowContractOperation(EsiOperation):
|
|
|
2806
2680
|
"""Open the contract window inside the client"""
|
|
2807
2681
|
...
|
|
2808
2682
|
|
|
2809
|
-
def results_localized(self, languages: str |
|
|
2683
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[Any]]:
|
|
2810
2684
|
"""Open the contract window inside the client"""
|
|
2811
2685
|
...
|
|
2812
2686
|
|
|
@@ -2821,7 +2695,7 @@ class PostUiOpenwindowInformationOperation(EsiOperation):
|
|
|
2821
2695
|
"""Open the information window for a character, corporation or alliance inside the client"""
|
|
2822
2696
|
...
|
|
2823
2697
|
|
|
2824
|
-
def results_localized(self, languages: str |
|
|
2698
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[Any]]:
|
|
2825
2699
|
"""Open the information window for a character, corporation or alliance inside the client"""
|
|
2826
2700
|
...
|
|
2827
2701
|
|
|
@@ -2836,7 +2710,7 @@ class PostUiOpenwindowMarketdetailsOperation(EsiOperation):
|
|
|
2836
2710
|
"""Open the market details window for a specific typeID inside the client"""
|
|
2837
2711
|
...
|
|
2838
2712
|
|
|
2839
|
-
def results_localized(self, languages: str |
|
|
2713
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[Any]]:
|
|
2840
2714
|
"""Open the market details window for a specific typeID inside the client"""
|
|
2841
2715
|
...
|
|
2842
2716
|
|
|
@@ -2851,7 +2725,7 @@ class PostUiOpenwindowNewmailOperation(EsiOperation):
|
|
|
2851
2725
|
"""Open the New Mail window, according to settings from the request if applicable"""
|
|
2852
2726
|
...
|
|
2853
2727
|
|
|
2854
|
-
def results_localized(self, languages: str |
|
|
2728
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[Any]]:
|
|
2855
2729
|
"""Open the New Mail window, according to settings from the request if applicable"""
|
|
2856
2730
|
...
|
|
2857
2731
|
|
|
@@ -2866,7 +2740,7 @@ class GetCharactersCharacterIdWalletOperation(EsiOperation):
|
|
|
2866
2740
|
"""Returns a character's wallet balance"""
|
|
2867
2741
|
...
|
|
2868
2742
|
|
|
2869
|
-
def results_localized(self, languages: str |
|
|
2743
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[float]]:
|
|
2870
2744
|
"""Returns a character's wallet balance"""
|
|
2871
2745
|
...
|
|
2872
2746
|
|
|
@@ -2881,7 +2755,7 @@ class GetCharactersCharacterIdWalletJournalOperation(EsiOperation):
|
|
|
2881
2755
|
"""Retrieve the given character's wallet journal going 30 days back"""
|
|
2882
2756
|
...
|
|
2883
2757
|
|
|
2884
|
-
def results_localized(self, languages: str |
|
|
2758
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2885
2759
|
"""Retrieve the given character's wallet journal going 30 days back"""
|
|
2886
2760
|
...
|
|
2887
2761
|
|
|
@@ -2896,7 +2770,7 @@ class GetCharactersCharacterIdWalletTransactionsOperation(EsiOperation):
|
|
|
2896
2770
|
"""Get wallet transactions of a character"""
|
|
2897
2771
|
...
|
|
2898
2772
|
|
|
2899
|
-
def results_localized(self, languages: str |
|
|
2773
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2900
2774
|
"""Get wallet transactions of a character"""
|
|
2901
2775
|
...
|
|
2902
2776
|
|
|
@@ -2911,7 +2785,7 @@ class GetCorporationsCorporationIdWalletsOperation(EsiOperation):
|
|
|
2911
2785
|
"""Get a corporation's wallets"""
|
|
2912
2786
|
...
|
|
2913
2787
|
|
|
2914
|
-
def results_localized(self, languages: str |
|
|
2788
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2915
2789
|
"""Get a corporation's wallets"""
|
|
2916
2790
|
...
|
|
2917
2791
|
|
|
@@ -2926,7 +2800,7 @@ class GetCorporationsCorporationIdWalletsDivisionJournalOperation(EsiOperation):
|
|
|
2926
2800
|
"""Retrieve the given corporation's wallet journal for the given division going 30 days back"""
|
|
2927
2801
|
...
|
|
2928
2802
|
|
|
2929
|
-
def results_localized(self, languages: str |
|
|
2803
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2930
2804
|
"""Retrieve the given corporation's wallet journal for the given division going 30 days back"""
|
|
2931
2805
|
...
|
|
2932
2806
|
|
|
@@ -2941,7 +2815,7 @@ class GetCorporationsCorporationIdWalletsDivisionTransactionsOperation(EsiOperat
|
|
|
2941
2815
|
"""Get wallet transactions of a corporation"""
|
|
2942
2816
|
...
|
|
2943
2817
|
|
|
2944
|
-
def results_localized(self, languages: str |
|
|
2818
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2945
2819
|
"""Get wallet transactions of a corporation"""
|
|
2946
2820
|
...
|
|
2947
2821
|
|
|
@@ -2956,7 +2830,7 @@ class GetWarsOperation(EsiOperation):
|
|
|
2956
2830
|
"""Return a list of wars"""
|
|
2957
2831
|
...
|
|
2958
2832
|
|
|
2959
|
-
def results_localized(self, languages: str |
|
|
2833
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
2960
2834
|
"""Return a list of wars"""
|
|
2961
2835
|
...
|
|
2962
2836
|
|
|
@@ -2971,7 +2845,7 @@ class GetWarsWarIdOperation(EsiOperation):
|
|
|
2971
2845
|
"""Return details about a war"""
|
|
2972
2846
|
...
|
|
2973
2847
|
|
|
2974
|
-
def results_localized(self, languages: str |
|
|
2848
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2975
2849
|
"""Return details about a war"""
|
|
2976
2850
|
...
|
|
2977
2851
|
|
|
@@ -2986,26 +2860,26 @@ class GetWarsWarIdKillmailsOperation(EsiOperation):
|
|
|
2986
2860
|
"""Return a list of kills related to a war"""
|
|
2987
2861
|
...
|
|
2988
2862
|
|
|
2989
|
-
def results_localized(self, languages: str |
|
|
2863
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2990
2864
|
"""Return a list of kills related to a war"""
|
|
2991
2865
|
...
|
|
2992
2866
|
|
|
2993
2867
|
|
|
2994
2868
|
class ESIClientStub:
|
|
2995
2869
|
class _Alliance:
|
|
2996
|
-
def GetAlliances(self, Accept_Language:
|
|
2870
|
+
def GetAlliances(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetAlliancesOperation:
|
|
2997
2871
|
"""List all active player alliances"""
|
|
2998
2872
|
...
|
|
2999
2873
|
|
|
3000
|
-
def GetAlliancesAllianceId(self, alliance_id: int, Accept_Language:
|
|
2874
|
+
def GetAlliancesAllianceId(self, alliance_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetAlliancesAllianceIdOperation:
|
|
3001
2875
|
"""Public information about an alliance"""
|
|
3002
2876
|
...
|
|
3003
2877
|
|
|
3004
|
-
def GetAlliancesAllianceIdCorporations(self, alliance_id: int, Accept_Language:
|
|
2878
|
+
def GetAlliancesAllianceIdCorporations(self, alliance_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetAlliancesAllianceIdCorporationsOperation:
|
|
3005
2879
|
"""List all current member corporations of an alliance"""
|
|
3006
2880
|
...
|
|
3007
2881
|
|
|
3008
|
-
def GetAlliancesAllianceIdIcons(self, alliance_id: int, Accept_Language:
|
|
2882
|
+
def GetAlliancesAllianceIdIcons(self, alliance_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetAlliancesAllianceIdIconsOperation:
|
|
3009
2883
|
"""Get the icon urls for a alliance This route expires daily at 11:05"""
|
|
3010
2884
|
...
|
|
3011
2885
|
|
|
@@ -3013,27 +2887,27 @@ class ESIClientStub:
|
|
|
3013
2887
|
Alliance: _Alliance = _Alliance()
|
|
3014
2888
|
|
|
3015
2889
|
class _Assets:
|
|
3016
|
-
def GetCharactersCharacterIdAssets(self, character_id: int, token: Token, page:
|
|
2890
|
+
def GetCharactersCharacterIdAssets(self, character_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdAssetsOperation:
|
|
3017
2891
|
"""Return a list of the characters assets"""
|
|
3018
2892
|
...
|
|
3019
2893
|
|
|
3020
|
-
def GetCorporationsCorporationIdAssets(self, corporation_id: int, token: Token, page:
|
|
2894
|
+
def GetCorporationsCorporationIdAssets(self, corporation_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdAssetsOperation:
|
|
3021
2895
|
"""Return a list of the corporation assets"""
|
|
3022
2896
|
...
|
|
3023
2897
|
|
|
3024
|
-
def PostCharactersCharacterIdAssetsLocations(self, character_id: int, token: Token, Accept_Language:
|
|
2898
|
+
def PostCharactersCharacterIdAssetsLocations(self, body: list[int], character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PostCharactersCharacterIdAssetsLocationsOperation:
|
|
3025
2899
|
"""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)"""
|
|
3026
2900
|
...
|
|
3027
2901
|
|
|
3028
|
-
def PostCharactersCharacterIdAssetsNames(self, character_id: int, token: Token, Accept_Language:
|
|
2902
|
+
def PostCharactersCharacterIdAssetsNames(self, body: list[int], character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PostCharactersCharacterIdAssetsNamesOperation:
|
|
3029
2903
|
"""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."""
|
|
3030
2904
|
...
|
|
3031
2905
|
|
|
3032
|
-
def PostCorporationsCorporationIdAssetsLocations(self, corporation_id: int, token: Token, Accept_Language:
|
|
2906
|
+
def PostCorporationsCorporationIdAssetsLocations(self, body: list[int], corporation_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PostCorporationsCorporationIdAssetsLocationsOperation:
|
|
3033
2907
|
"""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)"""
|
|
3034
2908
|
...
|
|
3035
2909
|
|
|
3036
|
-
def PostCorporationsCorporationIdAssetsNames(self, corporation_id: int, token: Token, Accept_Language:
|
|
2910
|
+
def PostCorporationsCorporationIdAssetsNames(self, body: list[int], corporation_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PostCorporationsCorporationIdAssetsNamesOperation:
|
|
3037
2911
|
"""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"""
|
|
3038
2912
|
...
|
|
3039
2913
|
|
|
@@ -3041,19 +2915,19 @@ class ESIClientStub:
|
|
|
3041
2915
|
Assets: _Assets = _Assets()
|
|
3042
2916
|
|
|
3043
2917
|
class _Calendar:
|
|
3044
|
-
def GetCharactersCharacterIdCalendar(self, character_id: int, token: Token, from_event:
|
|
2918
|
+
def GetCharactersCharacterIdCalendar(self, character_id: int, token: Token, from_event: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdCalendarOperation:
|
|
3045
2919
|
"""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"""
|
|
3046
2920
|
...
|
|
3047
2921
|
|
|
3048
|
-
def GetCharactersCharacterIdCalendarEventId(self, character_id: int, event_id: int, token: Token, Accept_Language:
|
|
2922
|
+
def GetCharactersCharacterIdCalendarEventId(self, character_id: int, event_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdCalendarEventIdOperation:
|
|
3049
2923
|
"""Get all the information for a specific event"""
|
|
3050
2924
|
...
|
|
3051
2925
|
|
|
3052
|
-
def GetCharactersCharacterIdCalendarEventIdAttendees(self, character_id: int, event_id: int, token: Token, Accept_Language:
|
|
2926
|
+
def GetCharactersCharacterIdCalendarEventIdAttendees(self, character_id: int, event_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdCalendarEventIdAttendeesOperation:
|
|
3053
2927
|
"""Get all invited attendees for a given event"""
|
|
3054
2928
|
...
|
|
3055
2929
|
|
|
3056
|
-
def PutCharactersCharacterIdCalendarEventId(self, character_id: int, event_id: int, token: Token, Accept_Language:
|
|
2930
|
+
def PutCharactersCharacterIdCalendarEventId(self, body: dict[str, Any], character_id: int, event_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PutCharactersCharacterIdCalendarEventIdOperation:
|
|
3057
2931
|
"""Set your response status to an event"""
|
|
3058
2932
|
...
|
|
3059
2933
|
|
|
@@ -3061,59 +2935,59 @@ class ESIClientStub:
|
|
|
3061
2935
|
Calendar: _Calendar = _Calendar()
|
|
3062
2936
|
|
|
3063
2937
|
class _Character:
|
|
3064
|
-
def GetCharactersCharacterId(self, character_id: int, Accept_Language:
|
|
2938
|
+
def GetCharactersCharacterId(self, character_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdOperation:
|
|
3065
2939
|
"""Public information about a character"""
|
|
3066
2940
|
...
|
|
3067
2941
|
|
|
3068
|
-
def GetCharactersCharacterIdAgentsResearch(self, character_id: int, token: Token, Accept_Language:
|
|
2942
|
+
def GetCharactersCharacterIdAgentsResearch(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdAgentsResearchOperation:
|
|
3069
2943
|
"""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)"""
|
|
3070
2944
|
...
|
|
3071
2945
|
|
|
3072
|
-
def GetCharactersCharacterIdBlueprints(self, character_id: int, token: Token, page:
|
|
2946
|
+
def GetCharactersCharacterIdBlueprints(self, character_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdBlueprintsOperation:
|
|
3073
2947
|
"""Return a list of blueprints the character owns"""
|
|
3074
2948
|
...
|
|
3075
2949
|
|
|
3076
|
-
def GetCharactersCharacterIdCorporationhistory(self, character_id: int, Accept_Language:
|
|
2950
|
+
def GetCharactersCharacterIdCorporationhistory(self, character_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdCorporationhistoryOperation:
|
|
3077
2951
|
"""Get a list of all the corporations a character has been a member of"""
|
|
3078
2952
|
...
|
|
3079
2953
|
|
|
3080
|
-
def GetCharactersCharacterIdFatigue(self, character_id: int, token: Token, Accept_Language:
|
|
2954
|
+
def GetCharactersCharacterIdFatigue(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdFatigueOperation:
|
|
3081
2955
|
"""Return a character's jump activation and fatigue information"""
|
|
3082
2956
|
...
|
|
3083
2957
|
|
|
3084
|
-
def GetCharactersCharacterIdMedals(self, character_id: int, token: Token, Accept_Language:
|
|
2958
|
+
def GetCharactersCharacterIdMedals(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdMedalsOperation:
|
|
3085
2959
|
"""Return a list of medals the character has"""
|
|
3086
2960
|
...
|
|
3087
2961
|
|
|
3088
|
-
def GetCharactersCharacterIdNotifications(self, character_id: int, token: Token, Accept_Language:
|
|
2962
|
+
def GetCharactersCharacterIdNotifications(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdNotificationsOperation:
|
|
3089
2963
|
"""Return character notifications"""
|
|
3090
2964
|
...
|
|
3091
2965
|
|
|
3092
|
-
def GetCharactersCharacterIdNotificationsContacts(self, character_id: int, token: Token, Accept_Language:
|
|
2966
|
+
def GetCharactersCharacterIdNotificationsContacts(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdNotificationsContactsOperation:
|
|
3093
2967
|
"""Return notifications about having been added to someone's contact list"""
|
|
3094
2968
|
...
|
|
3095
2969
|
|
|
3096
|
-
def GetCharactersCharacterIdPortrait(self, character_id: int, Accept_Language:
|
|
2970
|
+
def GetCharactersCharacterIdPortrait(self, character_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdPortraitOperation:
|
|
3097
2971
|
"""Get portrait urls for a character This route expires daily at 11:05"""
|
|
3098
2972
|
...
|
|
3099
2973
|
|
|
3100
|
-
def GetCharactersCharacterIdRoles(self, character_id: int, token: Token, Accept_Language:
|
|
2974
|
+
def GetCharactersCharacterIdRoles(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdRolesOperation:
|
|
3101
2975
|
"""Returns a character's corporation roles"""
|
|
3102
2976
|
...
|
|
3103
2977
|
|
|
3104
|
-
def GetCharactersCharacterIdStandings(self, character_id: int, token: Token, Accept_Language:
|
|
2978
|
+
def GetCharactersCharacterIdStandings(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdStandingsOperation:
|
|
3105
2979
|
"""Return character standings from agents, NPC corporations, and factions"""
|
|
3106
2980
|
...
|
|
3107
2981
|
|
|
3108
|
-
def GetCharactersCharacterIdTitles(self, character_id: int, token: Token, Accept_Language:
|
|
2982
|
+
def GetCharactersCharacterIdTitles(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdTitlesOperation:
|
|
3109
2983
|
"""Returns a character's titles"""
|
|
3110
2984
|
...
|
|
3111
2985
|
|
|
3112
|
-
def PostCharactersAffiliation(self,
|
|
2986
|
+
def PostCharactersAffiliation(self, body: list[int], Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PostCharactersAffiliationOperation:
|
|
3113
2987
|
"""Bulk lookup of character IDs to corporation, alliance and faction"""
|
|
3114
2988
|
...
|
|
3115
2989
|
|
|
3116
|
-
def PostCharactersCharacterIdCspa(self, character_id: int, token: Token, Accept_Language:
|
|
2990
|
+
def PostCharactersCharacterIdCspa(self, body: list[int], character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PostCharactersCharacterIdCspaOperation:
|
|
3117
2991
|
"""Takes a source character ID in the url and a set of target character ID's in the body, returns a CSPA charge cost"""
|
|
3118
2992
|
...
|
|
3119
2993
|
|
|
@@ -3121,11 +2995,11 @@ class ESIClientStub:
|
|
|
3121
2995
|
Character: _Character = _Character()
|
|
3122
2996
|
|
|
3123
2997
|
class _Clones:
|
|
3124
|
-
def GetCharactersCharacterIdClones(self, character_id: int, token: Token, Accept_Language:
|
|
2998
|
+
def GetCharactersCharacterIdClones(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdClonesOperation:
|
|
3125
2999
|
"""A list of the character's clones"""
|
|
3126
3000
|
...
|
|
3127
3001
|
|
|
3128
|
-
def GetCharactersCharacterIdImplants(self, character_id: int, token: Token, Accept_Language:
|
|
3002
|
+
def GetCharactersCharacterIdImplants(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdImplantsOperation:
|
|
3129
3003
|
"""Return implants on the active clone of a character"""
|
|
3130
3004
|
...
|
|
3131
3005
|
|
|
@@ -3133,39 +3007,39 @@ class ESIClientStub:
|
|
|
3133
3007
|
Clones: _Clones = _Clones()
|
|
3134
3008
|
|
|
3135
3009
|
class _Contacts:
|
|
3136
|
-
def DeleteCharactersCharacterIdContacts(self, character_id: int, contact_ids: list[Any], token: Token, Accept_Language:
|
|
3010
|
+
def DeleteCharactersCharacterIdContacts(self, character_id: int, contact_ids: list[Any], token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> DeleteCharactersCharacterIdContactsOperation:
|
|
3137
3011
|
"""Bulk delete contacts"""
|
|
3138
3012
|
...
|
|
3139
3013
|
|
|
3140
|
-
def GetAlliancesAllianceIdContacts(self, alliance_id: int, token: Token, page:
|
|
3014
|
+
def GetAlliancesAllianceIdContacts(self, alliance_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetAlliancesAllianceIdContactsOperation:
|
|
3141
3015
|
"""Return contacts of an alliance"""
|
|
3142
3016
|
...
|
|
3143
3017
|
|
|
3144
|
-
def GetAlliancesAllianceIdContactsLabels(self, alliance_id: int, token: Token, Accept_Language:
|
|
3018
|
+
def GetAlliancesAllianceIdContactsLabels(self, alliance_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetAlliancesAllianceIdContactsLabelsOperation:
|
|
3145
3019
|
"""Return custom labels for an alliance's contacts"""
|
|
3146
3020
|
...
|
|
3147
3021
|
|
|
3148
|
-
def GetCharactersCharacterIdContacts(self, character_id: int, token: Token, page:
|
|
3022
|
+
def GetCharactersCharacterIdContacts(self, character_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdContactsOperation:
|
|
3149
3023
|
"""Return contacts of a character"""
|
|
3150
3024
|
...
|
|
3151
3025
|
|
|
3152
|
-
def GetCharactersCharacterIdContactsLabels(self, character_id: int, token: Token, Accept_Language:
|
|
3026
|
+
def GetCharactersCharacterIdContactsLabels(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdContactsLabelsOperation:
|
|
3153
3027
|
"""Return custom labels for a character's contacts"""
|
|
3154
3028
|
...
|
|
3155
3029
|
|
|
3156
|
-
def GetCorporationsCorporationIdContacts(self, corporation_id: int, token: Token, page:
|
|
3030
|
+
def GetCorporationsCorporationIdContacts(self, corporation_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdContactsOperation:
|
|
3157
3031
|
"""Return contacts of a corporation"""
|
|
3158
3032
|
...
|
|
3159
3033
|
|
|
3160
|
-
def GetCorporationsCorporationIdContactsLabels(self, corporation_id: int, token: Token, Accept_Language:
|
|
3034
|
+
def GetCorporationsCorporationIdContactsLabels(self, corporation_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdContactsLabelsOperation:
|
|
3161
3035
|
"""Return custom labels for a corporation's contacts"""
|
|
3162
3036
|
...
|
|
3163
3037
|
|
|
3164
|
-
def PostCharactersCharacterIdContacts(self, character_id: int, standing: float, token: Token, label_ids:
|
|
3038
|
+
def PostCharactersCharacterIdContacts(self, body: list[int], character_id: int, standing: float, token: Token, label_ids: list[Any] | None = ..., watched: bool | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PostCharactersCharacterIdContactsOperation:
|
|
3165
3039
|
"""Bulk add contacts with same settings"""
|
|
3166
3040
|
...
|
|
3167
3041
|
|
|
3168
|
-
def PutCharactersCharacterIdContacts(self, character_id: int, standing: float, token: Token, label_ids:
|
|
3042
|
+
def PutCharactersCharacterIdContacts(self, body: list[int], character_id: int, standing: float, token: Token, label_ids: list[Any] | None = ..., watched: bool | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PutCharactersCharacterIdContactsOperation:
|
|
3169
3043
|
"""Bulk edit contacts with same settings"""
|
|
3170
3044
|
...
|
|
3171
3045
|
|
|
@@ -3173,39 +3047,39 @@ class ESIClientStub:
|
|
|
3173
3047
|
Contacts: _Contacts = _Contacts()
|
|
3174
3048
|
|
|
3175
3049
|
class _Contracts:
|
|
3176
|
-
def GetCharactersCharacterIdContracts(self, character_id: int, token: Token, page:
|
|
3050
|
+
def GetCharactersCharacterIdContracts(self, character_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdContractsOperation:
|
|
3177
3051
|
"""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"."""
|
|
3178
3052
|
...
|
|
3179
3053
|
|
|
3180
|
-
def GetCharactersCharacterIdContractsContractIdBids(self, character_id: int, contract_id: int, token: Token, Accept_Language:
|
|
3054
|
+
def GetCharactersCharacterIdContractsContractIdBids(self, character_id: int, contract_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdContractsContractIdBidsOperation:
|
|
3181
3055
|
"""Lists bids on a particular auction contract"""
|
|
3182
3056
|
...
|
|
3183
3057
|
|
|
3184
|
-
def GetCharactersCharacterIdContractsContractIdItems(self, character_id: int, contract_id: int, token: Token, Accept_Language:
|
|
3058
|
+
def GetCharactersCharacterIdContractsContractIdItems(self, character_id: int, contract_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdContractsContractIdItemsOperation:
|
|
3185
3059
|
"""Lists items of a particular contract"""
|
|
3186
3060
|
...
|
|
3187
3061
|
|
|
3188
|
-
def GetContractsPublicBidsContractId(self, contract_id: int, page:
|
|
3062
|
+
def GetContractsPublicBidsContractId(self, contract_id: int, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetContractsPublicBidsContractIdOperation:
|
|
3189
3063
|
"""Lists bids on a public auction contract"""
|
|
3190
3064
|
...
|
|
3191
3065
|
|
|
3192
|
-
def GetContractsPublicItemsContractId(self, contract_id: int, page:
|
|
3066
|
+
def GetContractsPublicItemsContractId(self, contract_id: int, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetContractsPublicItemsContractIdOperation:
|
|
3193
3067
|
"""Lists items of a public contract"""
|
|
3194
3068
|
...
|
|
3195
3069
|
|
|
3196
|
-
def GetContractsPublicRegionId(self, region_id: int, page:
|
|
3070
|
+
def GetContractsPublicRegionId(self, region_id: int, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetContractsPublicRegionIdOperation:
|
|
3197
3071
|
"""Returns a paginated list of all public contracts in the given region"""
|
|
3198
3072
|
...
|
|
3199
3073
|
|
|
3200
|
-
def GetCorporationsCorporationIdContracts(self, corporation_id: int, token: Token, page:
|
|
3074
|
+
def GetCorporationsCorporationIdContracts(self, corporation_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdContractsOperation:
|
|
3201
3075
|
"""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"."""
|
|
3202
3076
|
...
|
|
3203
3077
|
|
|
3204
|
-
def GetCorporationsCorporationIdContractsContractIdBids(self, contract_id: int, corporation_id: int, token: Token, page:
|
|
3078
|
+
def GetCorporationsCorporationIdContractsContractIdBids(self, contract_id: int, corporation_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdContractsContractIdBidsOperation:
|
|
3205
3079
|
"""Lists bids on a particular auction contract"""
|
|
3206
3080
|
...
|
|
3207
3081
|
|
|
3208
|
-
def GetCorporationsCorporationIdContractsContractIdItems(self, contract_id: int, corporation_id: int, token: Token, Accept_Language:
|
|
3082
|
+
def GetCorporationsCorporationIdContractsContractIdItems(self, contract_id: int, corporation_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdContractsContractIdItemsOperation:
|
|
3209
3083
|
"""Lists items of a particular contract"""
|
|
3210
3084
|
...
|
|
3211
3085
|
|
|
@@ -3213,91 +3087,91 @@ class ESIClientStub:
|
|
|
3213
3087
|
Contracts: _Contracts = _Contracts()
|
|
3214
3088
|
|
|
3215
3089
|
class _Corporation:
|
|
3216
|
-
def GetCorporationsCorporationId(self, corporation_id: int, Accept_Language:
|
|
3090
|
+
def GetCorporationsCorporationId(self, corporation_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdOperation:
|
|
3217
3091
|
"""Public information about a corporation"""
|
|
3218
3092
|
...
|
|
3219
3093
|
|
|
3220
|
-
def GetCorporationsCorporationIdAlliancehistory(self, corporation_id: int, Accept_Language:
|
|
3094
|
+
def GetCorporationsCorporationIdAlliancehistory(self, corporation_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdAlliancehistoryOperation:
|
|
3221
3095
|
"""Get a list of all the alliances a corporation has been a member of"""
|
|
3222
3096
|
...
|
|
3223
3097
|
|
|
3224
|
-
def GetCorporationsCorporationIdBlueprints(self, corporation_id: int, token: Token, page:
|
|
3098
|
+
def GetCorporationsCorporationIdBlueprints(self, corporation_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdBlueprintsOperation:
|
|
3225
3099
|
"""Returns a list of blueprints the corporation owns"""
|
|
3226
3100
|
...
|
|
3227
3101
|
|
|
3228
|
-
def GetCorporationsCorporationIdContainersLogs(self, corporation_id: int, token: Token, page:
|
|
3102
|
+
def GetCorporationsCorporationIdContainersLogs(self, corporation_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdContainersLogsOperation:
|
|
3229
3103
|
"""Returns logs recorded in the past seven days from all audit log secure containers (ALSC) owned by a given corporation"""
|
|
3230
3104
|
...
|
|
3231
3105
|
|
|
3232
|
-
def GetCorporationsCorporationIdDivisions(self, corporation_id: int, token: Token, Accept_Language:
|
|
3106
|
+
def GetCorporationsCorporationIdDivisions(self, corporation_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdDivisionsOperation:
|
|
3233
3107
|
"""Return corporation hangar and wallet division names, only show if a division is not using the default name"""
|
|
3234
3108
|
...
|
|
3235
3109
|
|
|
3236
|
-
def GetCorporationsCorporationIdFacilities(self, corporation_id: int, token: Token, Accept_Language:
|
|
3110
|
+
def GetCorporationsCorporationIdFacilities(self, corporation_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdFacilitiesOperation:
|
|
3237
3111
|
"""Return a corporation's facilities"""
|
|
3238
3112
|
...
|
|
3239
3113
|
|
|
3240
|
-
def GetCorporationsCorporationIdIcons(self, corporation_id: int, Accept_Language:
|
|
3114
|
+
def GetCorporationsCorporationIdIcons(self, corporation_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdIconsOperation:
|
|
3241
3115
|
"""Get the icon urls for a corporation"""
|
|
3242
3116
|
...
|
|
3243
3117
|
|
|
3244
|
-
def GetCorporationsCorporationIdMedals(self, corporation_id: int, token: Token, page:
|
|
3118
|
+
def GetCorporationsCorporationIdMedals(self, corporation_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdMedalsOperation:
|
|
3245
3119
|
"""Returns a corporation's medals"""
|
|
3246
3120
|
...
|
|
3247
3121
|
|
|
3248
|
-
def GetCorporationsCorporationIdMedalsIssued(self, corporation_id: int, token: Token, page:
|
|
3122
|
+
def GetCorporationsCorporationIdMedalsIssued(self, corporation_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdMedalsIssuedOperation:
|
|
3249
3123
|
"""Returns medals issued by a corporation"""
|
|
3250
3124
|
...
|
|
3251
3125
|
|
|
3252
|
-
def GetCorporationsCorporationIdMembers(self, corporation_id: int, token: Token, Accept_Language:
|
|
3126
|
+
def GetCorporationsCorporationIdMembers(self, corporation_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdMembersOperation:
|
|
3253
3127
|
"""Return the current member list of a corporation, the token's character need to be a member of the corporation."""
|
|
3254
3128
|
...
|
|
3255
3129
|
|
|
3256
|
-
def GetCorporationsCorporationIdMembersLimit(self, corporation_id: int, token: Token, Accept_Language:
|
|
3130
|
+
def GetCorporationsCorporationIdMembersLimit(self, corporation_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdMembersLimitOperation:
|
|
3257
3131
|
"""Return a corporation's member limit, not including CEO himself"""
|
|
3258
3132
|
...
|
|
3259
3133
|
|
|
3260
|
-
def GetCorporationsCorporationIdMembersTitles(self, corporation_id: int, token: Token, Accept_Language:
|
|
3134
|
+
def GetCorporationsCorporationIdMembersTitles(self, corporation_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdMembersTitlesOperation:
|
|
3261
3135
|
"""Returns a corporation's members' titles"""
|
|
3262
3136
|
...
|
|
3263
3137
|
|
|
3264
|
-
def GetCorporationsCorporationIdMembertracking(self, corporation_id: int, token: Token, Accept_Language:
|
|
3138
|
+
def GetCorporationsCorporationIdMembertracking(self, corporation_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdMembertrackingOperation:
|
|
3265
3139
|
"""Returns additional information about a corporation's members which helps tracking their activities"""
|
|
3266
3140
|
...
|
|
3267
3141
|
|
|
3268
|
-
def GetCorporationsCorporationIdRoles(self, corporation_id: int, token: Token, Accept_Language:
|
|
3142
|
+
def GetCorporationsCorporationIdRoles(self, corporation_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdRolesOperation:
|
|
3269
3143
|
"""Return the roles of all members if the character has the personnel manager role or any grantable role."""
|
|
3270
3144
|
...
|
|
3271
3145
|
|
|
3272
|
-
def GetCorporationsCorporationIdRolesHistory(self, corporation_id: int, token: Token, page:
|
|
3146
|
+
def GetCorporationsCorporationIdRolesHistory(self, corporation_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdRolesHistoryOperation:
|
|
3273
3147
|
"""Return how roles have changed for a coporation's members, up to a month"""
|
|
3274
3148
|
...
|
|
3275
3149
|
|
|
3276
|
-
def GetCorporationsCorporationIdShareholders(self, corporation_id: int, token: Token, page:
|
|
3150
|
+
def GetCorporationsCorporationIdShareholders(self, corporation_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdShareholdersOperation:
|
|
3277
3151
|
"""Return the current shareholders of a corporation."""
|
|
3278
3152
|
...
|
|
3279
3153
|
|
|
3280
|
-
def GetCorporationsCorporationIdStandings(self, corporation_id: int, token: Token, page:
|
|
3154
|
+
def GetCorporationsCorporationIdStandings(self, corporation_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdStandingsOperation:
|
|
3281
3155
|
"""Return corporation standings from agents, NPC corporations, and factions"""
|
|
3282
3156
|
...
|
|
3283
3157
|
|
|
3284
|
-
def GetCorporationsCorporationIdStarbases(self, corporation_id: int, token: Token, page:
|
|
3158
|
+
def GetCorporationsCorporationIdStarbases(self, corporation_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdStarbasesOperation:
|
|
3285
3159
|
"""Returns list of corporation starbases (POSes)"""
|
|
3286
3160
|
...
|
|
3287
3161
|
|
|
3288
|
-
def GetCorporationsCorporationIdStarbasesStarbaseId(self, corporation_id: int, starbase_id: int, system_id: int, token: Token, Accept_Language:
|
|
3162
|
+
def GetCorporationsCorporationIdStarbasesStarbaseId(self, corporation_id: int, starbase_id: int, system_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdStarbasesStarbaseIdOperation:
|
|
3289
3163
|
"""Returns various settings and fuels of a starbase (POS)"""
|
|
3290
3164
|
...
|
|
3291
3165
|
|
|
3292
|
-
def GetCorporationsCorporationIdStructures(self, corporation_id: int, token: Token, page:
|
|
3166
|
+
def GetCorporationsCorporationIdStructures(self, corporation_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdStructuresOperation:
|
|
3293
3167
|
"""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"""
|
|
3294
3168
|
...
|
|
3295
3169
|
|
|
3296
|
-
def GetCorporationsCorporationIdTitles(self, corporation_id: int, token: Token, Accept_Language:
|
|
3170
|
+
def GetCorporationsCorporationIdTitles(self, corporation_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdTitlesOperation:
|
|
3297
3171
|
"""Returns a corporation's titles"""
|
|
3298
3172
|
...
|
|
3299
3173
|
|
|
3300
|
-
def GetCorporationsNpccorps(self, Accept_Language:
|
|
3174
|
+
def GetCorporationsNpccorps(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsNpccorpsOperation:
|
|
3301
3175
|
"""Get a list of npc corporations This route expires daily at 11:05"""
|
|
3302
3176
|
...
|
|
3303
3177
|
|
|
@@ -3305,19 +3179,19 @@ class ESIClientStub:
|
|
|
3305
3179
|
Corporation: _Corporation = _Corporation()
|
|
3306
3180
|
|
|
3307
3181
|
class _Corporation_Projects:
|
|
3308
|
-
def GetCorporationsProjectsContribution(self, corporation_id: int, project_id: str, character_id: int, token: Token, If_Modified_Since:
|
|
3182
|
+
def GetCorporationsProjectsContribution(self, corporation_id: int, project_id: str, character_id: int, token: Token, If_Modified_Since: str | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsProjectsContributionOperation:
|
|
3309
3183
|
"""Show your contribution to a corporation project."""
|
|
3310
3184
|
...
|
|
3311
3185
|
|
|
3312
|
-
def GetCorporationsProjectsContributors(self, corporation_id: int, project_id: str, token: Token, after:
|
|
3186
|
+
def GetCorporationsProjectsContributors(self, corporation_id: int, project_id: str, token: Token, after: str | None = ..., before: str | None = ..., limit: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsProjectsContributorsOperation:
|
|
3313
3187
|
"""Listing of all contributors to a corporation project."""
|
|
3314
3188
|
...
|
|
3315
3189
|
|
|
3316
|
-
def GetCorporationsProjectsDetail(self, corporation_id: int, project_id: str, token: Token, If_Modified_Since:
|
|
3190
|
+
def GetCorporationsProjectsDetail(self, corporation_id: int, project_id: str, token: Token, If_Modified_Since: str | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsProjectsDetailOperation:
|
|
3317
3191
|
"""Get the details of a corporation project."""
|
|
3318
3192
|
...
|
|
3319
3193
|
|
|
3320
|
-
def GetCorporationsProjectsListing(self, corporation_id: int, token: Token, after:
|
|
3194
|
+
def GetCorporationsProjectsListing(self, corporation_id: int, token: Token, after: str | None = ..., before: str | None = ..., limit: int | None = ..., state: str | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsProjectsListingOperation:
|
|
3321
3195
|
"""Listing of all (active) corporation projects."""
|
|
3322
3196
|
...
|
|
3323
3197
|
|
|
@@ -3325,23 +3199,23 @@ class ESIClientStub:
|
|
|
3325
3199
|
Corporation_Projects: _Corporation_Projects = _Corporation_Projects()
|
|
3326
3200
|
|
|
3327
3201
|
class _Dogma:
|
|
3328
|
-
def GetDogmaAttributes(self, Accept_Language:
|
|
3202
|
+
def GetDogmaAttributes(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetDogmaAttributesOperation:
|
|
3329
3203
|
"""Get a list of dogma attribute ids This route expires daily at 11:05"""
|
|
3330
3204
|
...
|
|
3331
3205
|
|
|
3332
|
-
def GetDogmaAttributesAttributeId(self, attribute_id: int, Accept_Language:
|
|
3206
|
+
def GetDogmaAttributesAttributeId(self, attribute_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetDogmaAttributesAttributeIdOperation:
|
|
3333
3207
|
"""Get information on a dogma attribute This route expires daily at 11:05"""
|
|
3334
3208
|
...
|
|
3335
3209
|
|
|
3336
|
-
def GetDogmaDynamicItemsTypeIdItemId(self, item_id: int, type_id: int, Accept_Language:
|
|
3210
|
+
def GetDogmaDynamicItemsTypeIdItemId(self, item_id: int, type_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetDogmaDynamicItemsTypeIdItemIdOperation:
|
|
3337
3211
|
"""Returns info about a dynamic item resulting from mutation with a mutaplasmid. This route expires daily at 11:05"""
|
|
3338
3212
|
...
|
|
3339
3213
|
|
|
3340
|
-
def GetDogmaEffects(self, Accept_Language:
|
|
3214
|
+
def GetDogmaEffects(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetDogmaEffectsOperation:
|
|
3341
3215
|
"""Get a list of dogma effect ids This route expires daily at 11:05"""
|
|
3342
3216
|
...
|
|
3343
3217
|
|
|
3344
|
-
def GetDogmaEffectsEffectId(self, effect_id: int, Accept_Language:
|
|
3218
|
+
def GetDogmaEffectsEffectId(self, effect_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetDogmaEffectsEffectIdOperation:
|
|
3345
3219
|
"""Get information on a dogma effect This route expires daily at 11:05"""
|
|
3346
3220
|
...
|
|
3347
3221
|
|
|
@@ -3349,35 +3223,35 @@ class ESIClientStub:
|
|
|
3349
3223
|
Dogma: _Dogma = _Dogma()
|
|
3350
3224
|
|
|
3351
3225
|
class _Faction_Warfare:
|
|
3352
|
-
def GetCharactersCharacterIdFwStats(self, character_id: int, token: Token, Accept_Language:
|
|
3226
|
+
def GetCharactersCharacterIdFwStats(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdFwStatsOperation:
|
|
3353
3227
|
"""Statistical overview of a character involved in faction warfare This route expires daily at 11:05"""
|
|
3354
3228
|
...
|
|
3355
3229
|
|
|
3356
|
-
def GetCorporationsCorporationIdFwStats(self, corporation_id: int, token: Token, Accept_Language:
|
|
3230
|
+
def GetCorporationsCorporationIdFwStats(self, corporation_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdFwStatsOperation:
|
|
3357
3231
|
"""Statistics about a corporation involved in faction warfare This route expires daily at 11:05"""
|
|
3358
3232
|
...
|
|
3359
3233
|
|
|
3360
|
-
def GetFwLeaderboards(self, Accept_Language:
|
|
3234
|
+
def GetFwLeaderboards(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetFwLeaderboardsOperation:
|
|
3361
3235
|
"""Top 4 leaderboard of factions for kills and victory points separated by total, last week and yesterday This route expires daily at 11:05"""
|
|
3362
3236
|
...
|
|
3363
3237
|
|
|
3364
|
-
def GetFwLeaderboardsCharacters(self, Accept_Language:
|
|
3238
|
+
def GetFwLeaderboardsCharacters(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetFwLeaderboardsCharactersOperation:
|
|
3365
3239
|
"""Top 100 leaderboard of pilots for kills and victory points separated by total, last week and yesterday This route expires daily at 11:05"""
|
|
3366
3240
|
...
|
|
3367
3241
|
|
|
3368
|
-
def GetFwLeaderboardsCorporations(self, Accept_Language:
|
|
3242
|
+
def GetFwLeaderboardsCorporations(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetFwLeaderboardsCorporationsOperation:
|
|
3369
3243
|
"""Top 10 leaderboard of corporations for kills and victory points separated by total, last week and yesterday This route expires daily at 11:05"""
|
|
3370
3244
|
...
|
|
3371
3245
|
|
|
3372
|
-
def GetFwStats(self, Accept_Language:
|
|
3246
|
+
def GetFwStats(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetFwStatsOperation:
|
|
3373
3247
|
"""Statistical overviews of factions involved in faction warfare This route expires daily at 11:05"""
|
|
3374
3248
|
...
|
|
3375
3249
|
|
|
3376
|
-
def GetFwSystems(self, Accept_Language:
|
|
3250
|
+
def GetFwSystems(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetFwSystemsOperation:
|
|
3377
3251
|
"""An overview of the current ownership of faction warfare solar systems"""
|
|
3378
3252
|
...
|
|
3379
3253
|
|
|
3380
|
-
def GetFwWars(self, Accept_Language:
|
|
3254
|
+
def GetFwWars(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetFwWarsOperation:
|
|
3381
3255
|
"""Data about which NPC factions are at war This route expires daily at 11:05"""
|
|
3382
3256
|
...
|
|
3383
3257
|
|
|
@@ -3385,15 +3259,15 @@ class ESIClientStub:
|
|
|
3385
3259
|
Faction_Warfare: _Faction_Warfare = _Faction_Warfare()
|
|
3386
3260
|
|
|
3387
3261
|
class _Fittings:
|
|
3388
|
-
def DeleteCharactersCharacterIdFittingsFittingId(self, character_id: int, fitting_id: int, token: Token, Accept_Language:
|
|
3262
|
+
def DeleteCharactersCharacterIdFittingsFittingId(self, character_id: int, fitting_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> DeleteCharactersCharacterIdFittingsFittingIdOperation:
|
|
3389
3263
|
"""Delete a fitting from a character"""
|
|
3390
3264
|
...
|
|
3391
3265
|
|
|
3392
|
-
def GetCharactersCharacterIdFittings(self, character_id: int, token: Token, Accept_Language:
|
|
3266
|
+
def GetCharactersCharacterIdFittings(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdFittingsOperation:
|
|
3393
3267
|
"""Return fittings of a character"""
|
|
3394
3268
|
...
|
|
3395
3269
|
|
|
3396
|
-
def PostCharactersCharacterIdFittings(self, character_id: int, token: Token, Accept_Language:
|
|
3270
|
+
def PostCharactersCharacterIdFittings(self, body: dict[str, Any], character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PostCharactersCharacterIdFittingsOperation:
|
|
3397
3271
|
"""Save a new fitting for a character"""
|
|
3398
3272
|
...
|
|
3399
3273
|
|
|
@@ -3401,59 +3275,59 @@ class ESIClientStub:
|
|
|
3401
3275
|
Fittings: _Fittings = _Fittings()
|
|
3402
3276
|
|
|
3403
3277
|
class _Fleets:
|
|
3404
|
-
def DeleteFleetsFleetIdMembersMemberId(self, fleet_id: int, member_id: int, token: Token, Accept_Language:
|
|
3278
|
+
def DeleteFleetsFleetIdMembersMemberId(self, fleet_id: int, member_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> DeleteFleetsFleetIdMembersMemberIdOperation:
|
|
3405
3279
|
"""Kick a fleet member"""
|
|
3406
3280
|
...
|
|
3407
3281
|
|
|
3408
|
-
def DeleteFleetsFleetIdSquadsSquadId(self, fleet_id: int, squad_id: int, token: Token, Accept_Language:
|
|
3282
|
+
def DeleteFleetsFleetIdSquadsSquadId(self, fleet_id: int, squad_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> DeleteFleetsFleetIdSquadsSquadIdOperation:
|
|
3409
3283
|
"""Delete a fleet squad, only empty squads can be deleted"""
|
|
3410
3284
|
...
|
|
3411
3285
|
|
|
3412
|
-
def DeleteFleetsFleetIdWingsWingId(self, fleet_id: int, wing_id: int, token: Token, Accept_Language:
|
|
3286
|
+
def DeleteFleetsFleetIdWingsWingId(self, fleet_id: int, wing_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> DeleteFleetsFleetIdWingsWingIdOperation:
|
|
3413
3287
|
"""Delete a fleet wing, only empty wings can be deleted. The wing may contain squads, but the squads must be empty"""
|
|
3414
3288
|
...
|
|
3415
3289
|
|
|
3416
|
-
def GetCharactersCharacterIdFleet(self, character_id: int, token: Token, Accept_Language:
|
|
3290
|
+
def GetCharactersCharacterIdFleet(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdFleetOperation:
|
|
3417
3291
|
"""Return the fleet ID the character is in, if any."""
|
|
3418
3292
|
...
|
|
3419
3293
|
|
|
3420
|
-
def GetFleetsFleetId(self, fleet_id: int, token: Token, Accept_Language:
|
|
3294
|
+
def GetFleetsFleetId(self, fleet_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetFleetsFleetIdOperation:
|
|
3421
3295
|
"""Return details about a fleet"""
|
|
3422
3296
|
...
|
|
3423
3297
|
|
|
3424
|
-
def GetFleetsFleetIdMembers(self, fleet_id: int, token: Token, Accept_Language:
|
|
3298
|
+
def GetFleetsFleetIdMembers(self, fleet_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetFleetsFleetIdMembersOperation:
|
|
3425
3299
|
"""Return information about fleet members"""
|
|
3426
3300
|
...
|
|
3427
3301
|
|
|
3428
|
-
def GetFleetsFleetIdWings(self, fleet_id: int, token: Token, Accept_Language:
|
|
3302
|
+
def GetFleetsFleetIdWings(self, fleet_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetFleetsFleetIdWingsOperation:
|
|
3429
3303
|
"""Return information about wings in a fleet"""
|
|
3430
3304
|
...
|
|
3431
3305
|
|
|
3432
|
-
def PostFleetsFleetIdMembers(self, fleet_id: int, token: Token, Accept_Language:
|
|
3306
|
+
def PostFleetsFleetIdMembers(self, body: dict[str, Any], fleet_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PostFleetsFleetIdMembersOperation:
|
|
3433
3307
|
"""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"""
|
|
3434
3308
|
...
|
|
3435
3309
|
|
|
3436
|
-
def PostFleetsFleetIdWings(self, fleet_id: int, token: Token, Accept_Language:
|
|
3310
|
+
def PostFleetsFleetIdWings(self, fleet_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PostFleetsFleetIdWingsOperation:
|
|
3437
3311
|
"""Create a new wing in a fleet"""
|
|
3438
3312
|
...
|
|
3439
3313
|
|
|
3440
|
-
def PostFleetsFleetIdWingsWingIdSquads(self, fleet_id: int, wing_id: int, token: Token, Accept_Language:
|
|
3314
|
+
def PostFleetsFleetIdWingsWingIdSquads(self, fleet_id: int, wing_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PostFleetsFleetIdWingsWingIdSquadsOperation:
|
|
3441
3315
|
"""Create a new squad in a fleet"""
|
|
3442
3316
|
...
|
|
3443
3317
|
|
|
3444
|
-
def PutFleetsFleetId(self, fleet_id: int, token: Token, Accept_Language:
|
|
3318
|
+
def PutFleetsFleetId(self, body: dict[str, Any], fleet_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PutFleetsFleetIdOperation:
|
|
3445
3319
|
"""Update settings about a fleet"""
|
|
3446
3320
|
...
|
|
3447
3321
|
|
|
3448
|
-
def PutFleetsFleetIdMembersMemberId(self, fleet_id: int, member_id: int, token: Token, Accept_Language:
|
|
3322
|
+
def PutFleetsFleetIdMembersMemberId(self, body: dict[str, Any], fleet_id: int, member_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PutFleetsFleetIdMembersMemberIdOperation:
|
|
3449
3323
|
"""Move a fleet member around"""
|
|
3450
3324
|
...
|
|
3451
3325
|
|
|
3452
|
-
def PutFleetsFleetIdSquadsSquadId(self, fleet_id: int, squad_id: int, token: Token, Accept_Language:
|
|
3326
|
+
def PutFleetsFleetIdSquadsSquadId(self, body: dict[str, Any], fleet_id: int, squad_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PutFleetsFleetIdSquadsSquadIdOperation:
|
|
3453
3327
|
"""Rename a fleet squad"""
|
|
3454
3328
|
...
|
|
3455
3329
|
|
|
3456
|
-
def PutFleetsFleetIdWingsWingId(self, fleet_id: int, wing_id: int, token: Token, Accept_Language:
|
|
3330
|
+
def PutFleetsFleetIdWingsWingId(self, body: dict[str, Any], fleet_id: int, wing_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PutFleetsFleetIdWingsWingIdOperation:
|
|
3457
3331
|
"""Rename a fleet wing"""
|
|
3458
3332
|
...
|
|
3459
3333
|
|
|
@@ -3461,7 +3335,7 @@ class ESIClientStub:
|
|
|
3461
3335
|
Fleets: _Fleets = _Fleets()
|
|
3462
3336
|
|
|
3463
3337
|
class _Incursions:
|
|
3464
|
-
def GetIncursions(self, Accept_Language:
|
|
3338
|
+
def GetIncursions(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetIncursionsOperation:
|
|
3465
3339
|
"""Return a list of current incursions"""
|
|
3466
3340
|
...
|
|
3467
3341
|
|
|
@@ -3469,35 +3343,35 @@ class ESIClientStub:
|
|
|
3469
3343
|
Incursions: _Incursions = _Incursions()
|
|
3470
3344
|
|
|
3471
3345
|
class _Industry:
|
|
3472
|
-
def GetCharactersCharacterIdIndustryJobs(self, character_id: int, token: Token, include_completed:
|
|
3346
|
+
def GetCharactersCharacterIdIndustryJobs(self, character_id: int, token: Token, include_completed: bool | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdIndustryJobsOperation:
|
|
3473
3347
|
"""List industry jobs placed by a character"""
|
|
3474
3348
|
...
|
|
3475
3349
|
|
|
3476
|
-
def GetCharactersCharacterIdMining(self, character_id: int, token: Token, page:
|
|
3350
|
+
def GetCharactersCharacterIdMining(self, character_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdMiningOperation:
|
|
3477
3351
|
"""Paginated record of all mining done by a character for the past 30 days"""
|
|
3478
3352
|
...
|
|
3479
3353
|
|
|
3480
|
-
def GetCorporationCorporationIdMiningExtractions(self, corporation_id: int, token: Token, page:
|
|
3354
|
+
def GetCorporationCorporationIdMiningExtractions(self, corporation_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationCorporationIdMiningExtractionsOperation:
|
|
3481
3355
|
"""Extraction timers for all moon chunks being extracted by refineries belonging to a corporation."""
|
|
3482
3356
|
...
|
|
3483
3357
|
|
|
3484
|
-
def GetCorporationCorporationIdMiningObservers(self, corporation_id: int, token: Token, page:
|
|
3358
|
+
def GetCorporationCorporationIdMiningObservers(self, corporation_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationCorporationIdMiningObserversOperation:
|
|
3485
3359
|
"""Paginated list of all entities capable of observing and recording mining for a corporation"""
|
|
3486
3360
|
...
|
|
3487
3361
|
|
|
3488
|
-
def GetCorporationCorporationIdMiningObserversObserverId(self, corporation_id: int, observer_id: int, token: Token, page:
|
|
3362
|
+
def GetCorporationCorporationIdMiningObserversObserverId(self, corporation_id: int, observer_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationCorporationIdMiningObserversObserverIdOperation:
|
|
3489
3363
|
"""Paginated record of all mining seen by an observer"""
|
|
3490
3364
|
...
|
|
3491
3365
|
|
|
3492
|
-
def GetCorporationsCorporationIdIndustryJobs(self, corporation_id: int, token: Token, include_completed:
|
|
3366
|
+
def GetCorporationsCorporationIdIndustryJobs(self, corporation_id: int, token: Token, include_completed: bool | None = ..., page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdIndustryJobsOperation:
|
|
3493
3367
|
"""List industry jobs run by a corporation"""
|
|
3494
3368
|
...
|
|
3495
3369
|
|
|
3496
|
-
def GetIndustryFacilities(self, Accept_Language:
|
|
3370
|
+
def GetIndustryFacilities(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetIndustryFacilitiesOperation:
|
|
3497
3371
|
"""Return a list of industry facilities"""
|
|
3498
3372
|
...
|
|
3499
3373
|
|
|
3500
|
-
def GetIndustrySystems(self, Accept_Language:
|
|
3374
|
+
def GetIndustrySystems(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetIndustrySystemsOperation:
|
|
3501
3375
|
"""Return cost indices for solar systems"""
|
|
3502
3376
|
...
|
|
3503
3377
|
|
|
@@ -3505,7 +3379,7 @@ class ESIClientStub:
|
|
|
3505
3379
|
Industry: _Industry = _Industry()
|
|
3506
3380
|
|
|
3507
3381
|
class _Insurance:
|
|
3508
|
-
def GetInsurancePrices(self, Accept_Language:
|
|
3382
|
+
def GetInsurancePrices(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetInsurancePricesOperation:
|
|
3509
3383
|
"""Return available insurance levels for all ship types"""
|
|
3510
3384
|
...
|
|
3511
3385
|
|
|
@@ -3513,15 +3387,15 @@ class ESIClientStub:
|
|
|
3513
3387
|
Insurance: _Insurance = _Insurance()
|
|
3514
3388
|
|
|
3515
3389
|
class _Killmails:
|
|
3516
|
-
def GetCharactersCharacterIdKillmailsRecent(self, character_id: int, token: Token, page:
|
|
3390
|
+
def GetCharactersCharacterIdKillmailsRecent(self, character_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdKillmailsRecentOperation:
|
|
3517
3391
|
"""Return a list of a character's kills and losses going back 90 days"""
|
|
3518
3392
|
...
|
|
3519
3393
|
|
|
3520
|
-
def GetCorporationsCorporationIdKillmailsRecent(self, corporation_id: int, token: Token, page:
|
|
3394
|
+
def GetCorporationsCorporationIdKillmailsRecent(self, corporation_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdKillmailsRecentOperation:
|
|
3521
3395
|
"""Get a list of a corporation's kills and losses going back 90 days"""
|
|
3522
3396
|
...
|
|
3523
3397
|
|
|
3524
|
-
def GetKillmailsKillmailIdKillmailHash(self, killmail_hash: str, killmail_id: int, Accept_Language:
|
|
3398
|
+
def GetKillmailsKillmailIdKillmailHash(self, killmail_hash: str, killmail_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetKillmailsKillmailIdKillmailHashOperation:
|
|
3525
3399
|
"""Return a single killmail from its ID and hash"""
|
|
3526
3400
|
...
|
|
3527
3401
|
|
|
@@ -3529,15 +3403,15 @@ class ESIClientStub:
|
|
|
3529
3403
|
Killmails: _Killmails = _Killmails()
|
|
3530
3404
|
|
|
3531
3405
|
class _Location:
|
|
3532
|
-
def GetCharactersCharacterIdLocation(self, character_id: int, token: Token, Accept_Language:
|
|
3406
|
+
def GetCharactersCharacterIdLocation(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdLocationOperation:
|
|
3533
3407
|
"""Information about the characters current location. Returns the current solar system id, and also the current station or structure ID if applicable"""
|
|
3534
3408
|
...
|
|
3535
3409
|
|
|
3536
|
-
def GetCharactersCharacterIdOnline(self, character_id: int, token: Token, Accept_Language:
|
|
3410
|
+
def GetCharactersCharacterIdOnline(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdOnlineOperation:
|
|
3537
3411
|
"""Checks if the character is currently online"""
|
|
3538
3412
|
...
|
|
3539
3413
|
|
|
3540
|
-
def GetCharactersCharacterIdShip(self, character_id: int, token: Token, Accept_Language:
|
|
3414
|
+
def GetCharactersCharacterIdShip(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdShipOperation:
|
|
3541
3415
|
"""Get the current ship type, name and id"""
|
|
3542
3416
|
...
|
|
3543
3417
|
|
|
@@ -3545,11 +3419,11 @@ class ESIClientStub:
|
|
|
3545
3419
|
Location: _Location = _Location()
|
|
3546
3420
|
|
|
3547
3421
|
class _Loyalty:
|
|
3548
|
-
def GetCharactersCharacterIdLoyaltyPoints(self, character_id: int, token: Token, Accept_Language:
|
|
3422
|
+
def GetCharactersCharacterIdLoyaltyPoints(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdLoyaltyPointsOperation:
|
|
3549
3423
|
"""Return a list of loyalty points for all corporations the character has worked for"""
|
|
3550
3424
|
...
|
|
3551
3425
|
|
|
3552
|
-
def GetLoyaltyStoresCorporationIdOffers(self, corporation_id: int, Accept_Language:
|
|
3426
|
+
def GetLoyaltyStoresCorporationIdOffers(self, corporation_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetLoyaltyStoresCorporationIdOffersOperation:
|
|
3553
3427
|
"""Return a list of offers from a specific corporation's loyalty store This route expires daily at 11:05"""
|
|
3554
3428
|
...
|
|
3555
3429
|
|
|
@@ -3557,39 +3431,39 @@ class ESIClientStub:
|
|
|
3557
3431
|
Loyalty: _Loyalty = _Loyalty()
|
|
3558
3432
|
|
|
3559
3433
|
class _Mail:
|
|
3560
|
-
def DeleteCharactersCharacterIdMailLabelsLabelId(self, character_id: int, label_id: int, token: Token, Accept_Language:
|
|
3434
|
+
def DeleteCharactersCharacterIdMailLabelsLabelId(self, character_id: int, label_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> DeleteCharactersCharacterIdMailLabelsLabelIdOperation:
|
|
3561
3435
|
"""Delete a mail label"""
|
|
3562
3436
|
...
|
|
3563
3437
|
|
|
3564
|
-
def DeleteCharactersCharacterIdMailMailId(self, character_id: int, mail_id: int, token: Token, Accept_Language:
|
|
3438
|
+
def DeleteCharactersCharacterIdMailMailId(self, character_id: int, mail_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> DeleteCharactersCharacterIdMailMailIdOperation:
|
|
3565
3439
|
"""Delete a mail"""
|
|
3566
3440
|
...
|
|
3567
3441
|
|
|
3568
|
-
def GetCharactersCharacterIdMail(self, character_id: int, token: Token, labels:
|
|
3442
|
+
def GetCharactersCharacterIdMail(self, character_id: int, token: Token, labels: list[Any] | None = ..., last_mail_id: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdMailOperation:
|
|
3569
3443
|
"""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"""
|
|
3570
3444
|
...
|
|
3571
3445
|
|
|
3572
|
-
def GetCharactersCharacterIdMailLabels(self, character_id: int, token: Token, Accept_Language:
|
|
3446
|
+
def GetCharactersCharacterIdMailLabels(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdMailLabelsOperation:
|
|
3573
3447
|
"""Return a list of the users mail labels, unread counts for each label and a total unread count."""
|
|
3574
3448
|
...
|
|
3575
3449
|
|
|
3576
|
-
def GetCharactersCharacterIdMailLists(self, character_id: int, token: Token, Accept_Language:
|
|
3450
|
+
def GetCharactersCharacterIdMailLists(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdMailListsOperation:
|
|
3577
3451
|
"""Return all mailing lists that the character is subscribed to"""
|
|
3578
3452
|
...
|
|
3579
3453
|
|
|
3580
|
-
def GetCharactersCharacterIdMailMailId(self, character_id: int, mail_id: int, token: Token, Accept_Language:
|
|
3454
|
+
def GetCharactersCharacterIdMailMailId(self, character_id: int, mail_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdMailMailIdOperation:
|
|
3581
3455
|
"""Return the contents of an EVE mail"""
|
|
3582
3456
|
...
|
|
3583
3457
|
|
|
3584
|
-
def PostCharactersCharacterIdMail(self, character_id: int, token: Token, Accept_Language:
|
|
3458
|
+
def PostCharactersCharacterIdMail(self, body: dict[str, Any], character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PostCharactersCharacterIdMailOperation:
|
|
3585
3459
|
"""Create and send a new mail"""
|
|
3586
3460
|
...
|
|
3587
3461
|
|
|
3588
|
-
def PostCharactersCharacterIdMailLabels(self, character_id: int, token: Token, Accept_Language:
|
|
3462
|
+
def PostCharactersCharacterIdMailLabels(self, body: dict[str, Any], character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PostCharactersCharacterIdMailLabelsOperation:
|
|
3589
3463
|
"""Create a mail label"""
|
|
3590
3464
|
...
|
|
3591
3465
|
|
|
3592
|
-
def PutCharactersCharacterIdMailMailId(self, character_id: int, mail_id: int, token: Token, Accept_Language:
|
|
3466
|
+
def PutCharactersCharacterIdMailMailId(self, body: dict[str, Any], character_id: int, mail_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PutCharactersCharacterIdMailMailIdOperation:
|
|
3593
3467
|
"""Update metadata about a mail"""
|
|
3594
3468
|
...
|
|
3595
3469
|
|
|
@@ -3597,47 +3471,47 @@ class ESIClientStub:
|
|
|
3597
3471
|
Mail: _Mail = _Mail()
|
|
3598
3472
|
|
|
3599
3473
|
class _Market:
|
|
3600
|
-
def GetCharactersCharacterIdOrders(self, character_id: int, token: Token, Accept_Language:
|
|
3474
|
+
def GetCharactersCharacterIdOrders(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdOrdersOperation:
|
|
3601
3475
|
"""List open market orders placed by a character"""
|
|
3602
3476
|
...
|
|
3603
3477
|
|
|
3604
|
-
def GetCharactersCharacterIdOrdersHistory(self, character_id: int, token: Token, page:
|
|
3478
|
+
def GetCharactersCharacterIdOrdersHistory(self, character_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdOrdersHistoryOperation:
|
|
3605
3479
|
"""List cancelled and expired market orders placed by a character up to 90 days in the past."""
|
|
3606
3480
|
...
|
|
3607
3481
|
|
|
3608
|
-
def GetCorporationsCorporationIdOrders(self, corporation_id: int, token: Token, page:
|
|
3482
|
+
def GetCorporationsCorporationIdOrders(self, corporation_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdOrdersOperation:
|
|
3609
3483
|
"""List open market orders placed on behalf of a corporation"""
|
|
3610
3484
|
...
|
|
3611
3485
|
|
|
3612
|
-
def GetCorporationsCorporationIdOrdersHistory(self, corporation_id: int, token: Token, page:
|
|
3486
|
+
def GetCorporationsCorporationIdOrdersHistory(self, corporation_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdOrdersHistoryOperation:
|
|
3613
3487
|
"""List cancelled and expired market orders placed on behalf of a corporation up to 90 days in the past."""
|
|
3614
3488
|
...
|
|
3615
3489
|
|
|
3616
|
-
def GetMarketsGroups(self, Accept_Language:
|
|
3490
|
+
def GetMarketsGroups(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetMarketsGroupsOperation:
|
|
3617
3491
|
"""Get a list of item groups This route expires daily at 11:05"""
|
|
3618
3492
|
...
|
|
3619
3493
|
|
|
3620
|
-
def GetMarketsGroupsMarketGroupId(self, market_group_id: int, Accept_Language:
|
|
3494
|
+
def GetMarketsGroupsMarketGroupId(self, market_group_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetMarketsGroupsMarketGroupIdOperation:
|
|
3621
3495
|
"""Get information on an item group This route expires daily at 11:05"""
|
|
3622
3496
|
...
|
|
3623
3497
|
|
|
3624
|
-
def GetMarketsPrices(self, Accept_Language:
|
|
3498
|
+
def GetMarketsPrices(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetMarketsPricesOperation:
|
|
3625
3499
|
"""Return a list of prices"""
|
|
3626
3500
|
...
|
|
3627
3501
|
|
|
3628
|
-
def GetMarketsRegionIdHistory(self, region_id: int, type_id: int, Accept_Language:
|
|
3502
|
+
def GetMarketsRegionIdHistory(self, region_id: int, type_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetMarketsRegionIdHistoryOperation:
|
|
3629
3503
|
"""Return a list of historical market statistics for the specified type in a region This route expires daily at 11:05"""
|
|
3630
3504
|
...
|
|
3631
3505
|
|
|
3632
|
-
def GetMarketsRegionIdOrders(self, order_type: str, region_id: int, page:
|
|
3506
|
+
def GetMarketsRegionIdOrders(self, order_type: str, region_id: int, page: int | None = ..., type_id: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetMarketsRegionIdOrdersOperation:
|
|
3633
3507
|
"""Return a list of orders in a region"""
|
|
3634
3508
|
...
|
|
3635
3509
|
|
|
3636
|
-
def GetMarketsRegionIdTypes(self, region_id: int, page:
|
|
3510
|
+
def GetMarketsRegionIdTypes(self, region_id: int, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetMarketsRegionIdTypesOperation:
|
|
3637
3511
|
"""Return a list of type IDs that have active orders in the region, for efficient market indexing."""
|
|
3638
3512
|
...
|
|
3639
3513
|
|
|
3640
|
-
def GetMarketsStructuresStructureId(self, structure_id: int, token: Token, page:
|
|
3514
|
+
def GetMarketsStructuresStructureId(self, structure_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetMarketsStructuresStructureIdOperation:
|
|
3641
3515
|
"""Return all orders in a structure"""
|
|
3642
3516
|
...
|
|
3643
3517
|
|
|
@@ -3645,19 +3519,19 @@ class ESIClientStub:
|
|
|
3645
3519
|
Market: _Market = _Market()
|
|
3646
3520
|
|
|
3647
3521
|
class _Planetary_Interaction:
|
|
3648
|
-
def GetCharactersCharacterIdPlanets(self, character_id: int, token: Token, Accept_Language:
|
|
3522
|
+
def GetCharactersCharacterIdPlanets(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdPlanetsOperation:
|
|
3649
3523
|
"""Returns a list of all planetary colonies owned by a character."""
|
|
3650
3524
|
...
|
|
3651
3525
|
|
|
3652
|
-
def GetCharactersCharacterIdPlanetsPlanetId(self, character_id: int, planet_id: int, token: Token, Accept_Language:
|
|
3526
|
+
def GetCharactersCharacterIdPlanetsPlanetId(self, character_id: int, planet_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdPlanetsPlanetIdOperation:
|
|
3653
3527
|
"""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."""
|
|
3654
3528
|
...
|
|
3655
3529
|
|
|
3656
|
-
def GetCorporationsCorporationIdCustomsOffices(self, corporation_id: int, token: Token, page:
|
|
3530
|
+
def GetCorporationsCorporationIdCustomsOffices(self, corporation_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdCustomsOfficesOperation:
|
|
3657
3531
|
"""List customs offices owned by a corporation"""
|
|
3658
3532
|
...
|
|
3659
3533
|
|
|
3660
|
-
def GetUniverseSchematicsSchematicId(self, schematic_id: int, Accept_Language:
|
|
3534
|
+
def GetUniverseSchematicsSchematicId(self, schematic_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseSchematicsSchematicIdOperation:
|
|
3661
3535
|
"""Get information on a planetary factory schematic"""
|
|
3662
3536
|
...
|
|
3663
3537
|
|
|
@@ -3665,7 +3539,7 @@ class ESIClientStub:
|
|
|
3665
3539
|
Planetary_Interaction: _Planetary_Interaction = _Planetary_Interaction()
|
|
3666
3540
|
|
|
3667
3541
|
class _Routes:
|
|
3668
|
-
def GetRouteOriginDestination(self, destination: int, origin: int, avoid:
|
|
3542
|
+
def GetRouteOriginDestination(self, destination: int, origin: int, avoid: list[Any] | None = ..., connections: list[Any] | None = ..., flag: str | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetRouteOriginDestinationOperation:
|
|
3669
3543
|
"""Get the systems between origin and destination"""
|
|
3670
3544
|
...
|
|
3671
3545
|
|
|
@@ -3673,7 +3547,7 @@ class ESIClientStub:
|
|
|
3673
3547
|
Routes: _Routes = _Routes()
|
|
3674
3548
|
|
|
3675
3549
|
class _Search:
|
|
3676
|
-
def GetCharactersCharacterIdSearch(self, categories: list[Any], character_id: int, search: str, token: Token, strict:
|
|
3550
|
+
def GetCharactersCharacterIdSearch(self, categories: list[Any], character_id: int, search: str, token: Token, strict: bool | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdSearchOperation:
|
|
3677
3551
|
"""Search for entities that match a given sub-string."""
|
|
3678
3552
|
...
|
|
3679
3553
|
|
|
@@ -3681,15 +3555,15 @@ class ESIClientStub:
|
|
|
3681
3555
|
Search: _Search = _Search()
|
|
3682
3556
|
|
|
3683
3557
|
class _Skills:
|
|
3684
|
-
def GetCharactersCharacterIdAttributes(self, character_id: int, token: Token, Accept_Language:
|
|
3558
|
+
def GetCharactersCharacterIdAttributes(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdAttributesOperation:
|
|
3685
3559
|
"""Return attributes of a character"""
|
|
3686
3560
|
...
|
|
3687
3561
|
|
|
3688
|
-
def GetCharactersCharacterIdSkillqueue(self, character_id: int, token: Token, Accept_Language:
|
|
3562
|
+
def GetCharactersCharacterIdSkillqueue(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdSkillqueueOperation:
|
|
3689
3563
|
"""List the configured skill queue for the given character"""
|
|
3690
3564
|
...
|
|
3691
3565
|
|
|
3692
|
-
def GetCharactersCharacterIdSkills(self, character_id: int, token: Token, Accept_Language:
|
|
3566
|
+
def GetCharactersCharacterIdSkills(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdSkillsOperation:
|
|
3693
3567
|
"""List all trained skills for the given character"""
|
|
3694
3568
|
...
|
|
3695
3569
|
|
|
@@ -3697,15 +3571,15 @@ class ESIClientStub:
|
|
|
3697
3571
|
Skills: _Skills = _Skills()
|
|
3698
3572
|
|
|
3699
3573
|
class _Sovereignty:
|
|
3700
|
-
def GetSovereigntyCampaigns(self, Accept_Language:
|
|
3574
|
+
def GetSovereigntyCampaigns(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetSovereigntyCampaignsOperation:
|
|
3701
3575
|
"""Shows sovereignty data for campaigns."""
|
|
3702
3576
|
...
|
|
3703
3577
|
|
|
3704
|
-
def GetSovereigntyMap(self, Accept_Language:
|
|
3578
|
+
def GetSovereigntyMap(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetSovereigntyMapOperation:
|
|
3705
3579
|
"""Shows sovereignty information for solar systems"""
|
|
3706
3580
|
...
|
|
3707
3581
|
|
|
3708
|
-
def GetSovereigntyStructures(self, Accept_Language:
|
|
3582
|
+
def GetSovereigntyStructures(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetSovereigntyStructuresOperation:
|
|
3709
3583
|
"""Shows sovereignty data for structures."""
|
|
3710
3584
|
...
|
|
3711
3585
|
|
|
@@ -3713,7 +3587,7 @@ class ESIClientStub:
|
|
|
3713
3587
|
Sovereignty: _Sovereignty = _Sovereignty()
|
|
3714
3588
|
|
|
3715
3589
|
class _Status:
|
|
3716
|
-
def GetStatus(self, Accept_Language:
|
|
3590
|
+
def GetStatus(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetStatusOperation:
|
|
3717
3591
|
"""EVE Server status"""
|
|
3718
3592
|
...
|
|
3719
3593
|
|
|
@@ -3721,123 +3595,123 @@ class ESIClientStub:
|
|
|
3721
3595
|
Status: _Status = _Status()
|
|
3722
3596
|
|
|
3723
3597
|
class _Universe:
|
|
3724
|
-
def GetUniverseAncestries(self, Accept_Language:
|
|
3598
|
+
def GetUniverseAncestries(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseAncestriesOperation:
|
|
3725
3599
|
"""Get all character ancestries This route expires daily at 11:05"""
|
|
3726
3600
|
...
|
|
3727
3601
|
|
|
3728
|
-
def GetUniverseAsteroidBeltsAsteroidBeltId(self, asteroid_belt_id: int, Accept_Language:
|
|
3602
|
+
def GetUniverseAsteroidBeltsAsteroidBeltId(self, asteroid_belt_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseAsteroidBeltsAsteroidBeltIdOperation:
|
|
3729
3603
|
"""Get information on an asteroid belt This route expires daily at 11:05"""
|
|
3730
3604
|
...
|
|
3731
3605
|
|
|
3732
|
-
def GetUniverseBloodlines(self, Accept_Language:
|
|
3606
|
+
def GetUniverseBloodlines(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseBloodlinesOperation:
|
|
3733
3607
|
"""Get a list of bloodlines This route expires daily at 11:05"""
|
|
3734
3608
|
...
|
|
3735
3609
|
|
|
3736
|
-
def GetUniverseCategories(self, Accept_Language:
|
|
3610
|
+
def GetUniverseCategories(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseCategoriesOperation:
|
|
3737
3611
|
"""Get a list of item categories This route expires daily at 11:05"""
|
|
3738
3612
|
...
|
|
3739
3613
|
|
|
3740
|
-
def GetUniverseCategoriesCategoryId(self, category_id: int, Accept_Language:
|
|
3614
|
+
def GetUniverseCategoriesCategoryId(self, category_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseCategoriesCategoryIdOperation:
|
|
3741
3615
|
"""Get information of an item category This route expires daily at 11:05"""
|
|
3742
3616
|
...
|
|
3743
3617
|
|
|
3744
|
-
def GetUniverseConstellations(self, Accept_Language:
|
|
3618
|
+
def GetUniverseConstellations(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseConstellationsOperation:
|
|
3745
3619
|
"""Get a list of constellations This route expires daily at 11:05"""
|
|
3746
3620
|
...
|
|
3747
3621
|
|
|
3748
|
-
def GetUniverseConstellationsConstellationId(self, constellation_id: int, Accept_Language:
|
|
3622
|
+
def GetUniverseConstellationsConstellationId(self, constellation_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseConstellationsConstellationIdOperation:
|
|
3749
3623
|
"""Get information on a constellation This route expires daily at 11:05"""
|
|
3750
3624
|
...
|
|
3751
3625
|
|
|
3752
|
-
def GetUniverseFactions(self, Accept_Language:
|
|
3626
|
+
def GetUniverseFactions(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseFactionsOperation:
|
|
3753
3627
|
"""Get a list of factions This route expires daily at 11:05"""
|
|
3754
3628
|
...
|
|
3755
3629
|
|
|
3756
|
-
def GetUniverseGraphics(self, Accept_Language:
|
|
3630
|
+
def GetUniverseGraphics(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseGraphicsOperation:
|
|
3757
3631
|
"""Get a list of graphics This route expires daily at 11:05"""
|
|
3758
3632
|
...
|
|
3759
3633
|
|
|
3760
|
-
def GetUniverseGraphicsGraphicId(self, graphic_id: int, Accept_Language:
|
|
3634
|
+
def GetUniverseGraphicsGraphicId(self, graphic_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseGraphicsGraphicIdOperation:
|
|
3761
3635
|
"""Get information on a graphic This route expires daily at 11:05"""
|
|
3762
3636
|
...
|
|
3763
3637
|
|
|
3764
|
-
def GetUniverseGroups(self, page:
|
|
3638
|
+
def GetUniverseGroups(self, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseGroupsOperation:
|
|
3765
3639
|
"""Get a list of item groups This route expires daily at 11:05"""
|
|
3766
3640
|
...
|
|
3767
3641
|
|
|
3768
|
-
def GetUniverseGroupsGroupId(self, group_id: int, Accept_Language:
|
|
3642
|
+
def GetUniverseGroupsGroupId(self, group_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseGroupsGroupIdOperation:
|
|
3769
3643
|
"""Get information on an item group This route expires daily at 11:05"""
|
|
3770
3644
|
...
|
|
3771
3645
|
|
|
3772
|
-
def GetUniverseMoonsMoonId(self, moon_id: int, Accept_Language:
|
|
3646
|
+
def GetUniverseMoonsMoonId(self, moon_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseMoonsMoonIdOperation:
|
|
3773
3647
|
"""Get information on a moon This route expires daily at 11:05"""
|
|
3774
3648
|
...
|
|
3775
3649
|
|
|
3776
|
-
def GetUniversePlanetsPlanetId(self, planet_id: int, Accept_Language:
|
|
3650
|
+
def GetUniversePlanetsPlanetId(self, planet_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniversePlanetsPlanetIdOperation:
|
|
3777
3651
|
"""Get information on a planet This route expires daily at 11:05"""
|
|
3778
3652
|
...
|
|
3779
3653
|
|
|
3780
|
-
def GetUniverseRaces(self, Accept_Language:
|
|
3654
|
+
def GetUniverseRaces(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseRacesOperation:
|
|
3781
3655
|
"""Get a list of character races This route expires daily at 11:05"""
|
|
3782
3656
|
...
|
|
3783
3657
|
|
|
3784
|
-
def GetUniverseRegions(self, Accept_Language:
|
|
3658
|
+
def GetUniverseRegions(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseRegionsOperation:
|
|
3785
3659
|
"""Get a list of regions This route expires daily at 11:05"""
|
|
3786
3660
|
...
|
|
3787
3661
|
|
|
3788
|
-
def GetUniverseRegionsRegionId(self, region_id: int, Accept_Language:
|
|
3662
|
+
def GetUniverseRegionsRegionId(self, region_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseRegionsRegionIdOperation:
|
|
3789
3663
|
"""Get information on a region This route expires daily at 11:05"""
|
|
3790
3664
|
...
|
|
3791
3665
|
|
|
3792
|
-
def GetUniverseStargatesStargateId(self, stargate_id: int, Accept_Language:
|
|
3666
|
+
def GetUniverseStargatesStargateId(self, stargate_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseStargatesStargateIdOperation:
|
|
3793
3667
|
"""Get information on a stargate This route expires daily at 11:05"""
|
|
3794
3668
|
...
|
|
3795
3669
|
|
|
3796
|
-
def GetUniverseStarsStarId(self, star_id: int, Accept_Language:
|
|
3670
|
+
def GetUniverseStarsStarId(self, star_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseStarsStarIdOperation:
|
|
3797
3671
|
"""Get information on a star This route expires daily at 11:05"""
|
|
3798
3672
|
...
|
|
3799
3673
|
|
|
3800
|
-
def GetUniverseStationsStationId(self, station_id: int, Accept_Language:
|
|
3674
|
+
def GetUniverseStationsStationId(self, station_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseStationsStationIdOperation:
|
|
3801
3675
|
"""Get information on a station This route expires daily at 11:05"""
|
|
3802
3676
|
...
|
|
3803
3677
|
|
|
3804
|
-
def GetUniverseStructures(self, filter:
|
|
3678
|
+
def GetUniverseStructures(self, filter: str | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseStructuresOperation:
|
|
3805
3679
|
"""List all public structures"""
|
|
3806
3680
|
...
|
|
3807
3681
|
|
|
3808
|
-
def GetUniverseStructuresStructureId(self, structure_id: int, token: Token, Accept_Language:
|
|
3682
|
+
def GetUniverseStructuresStructureId(self, structure_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseStructuresStructureIdOperation:
|
|
3809
3683
|
"""Returns information on requested structure if you are on the ACL. Otherwise, returns "Forbidden" for all inputs."""
|
|
3810
3684
|
...
|
|
3811
3685
|
|
|
3812
|
-
def GetUniverseSystemJumps(self, Accept_Language:
|
|
3686
|
+
def GetUniverseSystemJumps(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseSystemJumpsOperation:
|
|
3813
3687
|
"""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"""
|
|
3814
3688
|
...
|
|
3815
3689
|
|
|
3816
|
-
def GetUniverseSystemKills(self, Accept_Language:
|
|
3690
|
+
def GetUniverseSystemKills(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseSystemKillsOperation:
|
|
3817
3691
|
"""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"""
|
|
3818
3692
|
...
|
|
3819
3693
|
|
|
3820
|
-
def GetUniverseSystems(self, Accept_Language:
|
|
3694
|
+
def GetUniverseSystems(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseSystemsOperation:
|
|
3821
3695
|
"""Get a list of solar systems This route expires daily at 11:05"""
|
|
3822
3696
|
...
|
|
3823
3697
|
|
|
3824
|
-
def GetUniverseSystemsSystemId(self, system_id: int, Accept_Language:
|
|
3698
|
+
def GetUniverseSystemsSystemId(self, system_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseSystemsSystemIdOperation:
|
|
3825
3699
|
"""Get information on a solar system. This route expires daily at 11:05"""
|
|
3826
3700
|
...
|
|
3827
3701
|
|
|
3828
|
-
def GetUniverseTypes(self, page:
|
|
3702
|
+
def GetUniverseTypes(self, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseTypesOperation:
|
|
3829
3703
|
"""Get a list of type ids This route expires daily at 11:05"""
|
|
3830
3704
|
...
|
|
3831
3705
|
|
|
3832
|
-
def GetUniverseTypesTypeId(self, type_id: int, Accept_Language:
|
|
3706
|
+
def GetUniverseTypesTypeId(self, type_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetUniverseTypesTypeIdOperation:
|
|
3833
3707
|
"""Get information on a type This route expires daily at 11:05"""
|
|
3834
3708
|
...
|
|
3835
3709
|
|
|
3836
|
-
def PostUniverseIds(self,
|
|
3710
|
+
def PostUniverseIds(self, body: list[str], Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PostUniverseIdsOperation:
|
|
3837
3711
|
"""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"""
|
|
3838
3712
|
...
|
|
3839
3713
|
|
|
3840
|
-
def PostUniverseNames(self,
|
|
3714
|
+
def PostUniverseNames(self, body: list[int], Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PostUniverseNamesOperation:
|
|
3841
3715
|
"""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"""
|
|
3842
3716
|
...
|
|
3843
3717
|
|
|
@@ -3845,23 +3719,23 @@ class ESIClientStub:
|
|
|
3845
3719
|
Universe: _Universe = _Universe()
|
|
3846
3720
|
|
|
3847
3721
|
class _User_Interface:
|
|
3848
|
-
def PostUiAutopilotWaypoint(self, add_to_beginning: bool, clear_other_waypoints: bool, destination_id: int, token: Token, Accept_Language:
|
|
3722
|
+
def PostUiAutopilotWaypoint(self, add_to_beginning: bool, clear_other_waypoints: bool, destination_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PostUiAutopilotWaypointOperation:
|
|
3849
3723
|
"""Set a solar system as autopilot waypoint"""
|
|
3850
3724
|
...
|
|
3851
3725
|
|
|
3852
|
-
def PostUiOpenwindowContract(self, contract_id: int, token: Token, Accept_Language:
|
|
3726
|
+
def PostUiOpenwindowContract(self, contract_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PostUiOpenwindowContractOperation:
|
|
3853
3727
|
"""Open the contract window inside the client"""
|
|
3854
3728
|
...
|
|
3855
3729
|
|
|
3856
|
-
def PostUiOpenwindowInformation(self, target_id: int, token: Token, Accept_Language:
|
|
3730
|
+
def PostUiOpenwindowInformation(self, target_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PostUiOpenwindowInformationOperation:
|
|
3857
3731
|
"""Open the information window for a character, corporation or alliance inside the client"""
|
|
3858
3732
|
...
|
|
3859
3733
|
|
|
3860
|
-
def PostUiOpenwindowMarketdetails(self, type_id: int, token: Token, Accept_Language:
|
|
3734
|
+
def PostUiOpenwindowMarketdetails(self, type_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PostUiOpenwindowMarketdetailsOperation:
|
|
3861
3735
|
"""Open the market details window for a specific typeID inside the client"""
|
|
3862
3736
|
...
|
|
3863
3737
|
|
|
3864
|
-
def PostUiOpenwindowNewmail(self, token: Token, Accept_Language:
|
|
3738
|
+
def PostUiOpenwindowNewmail(self, body: dict[str, Any], token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> PostUiOpenwindowNewmailOperation:
|
|
3865
3739
|
"""Open the New Mail window, according to settings from the request if applicable"""
|
|
3866
3740
|
...
|
|
3867
3741
|
|
|
@@ -3869,27 +3743,27 @@ class ESIClientStub:
|
|
|
3869
3743
|
User_Interface: _User_Interface = _User_Interface()
|
|
3870
3744
|
|
|
3871
3745
|
class _Wallet:
|
|
3872
|
-
def GetCharactersCharacterIdWallet(self, character_id: int, token: Token, Accept_Language:
|
|
3746
|
+
def GetCharactersCharacterIdWallet(self, character_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdWalletOperation:
|
|
3873
3747
|
"""Returns a character's wallet balance"""
|
|
3874
3748
|
...
|
|
3875
3749
|
|
|
3876
|
-
def GetCharactersCharacterIdWalletJournal(self, character_id: int, token: Token, page:
|
|
3750
|
+
def GetCharactersCharacterIdWalletJournal(self, character_id: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdWalletJournalOperation:
|
|
3877
3751
|
"""Retrieve the given character's wallet journal going 30 days back"""
|
|
3878
3752
|
...
|
|
3879
3753
|
|
|
3880
|
-
def GetCharactersCharacterIdWalletTransactions(self, character_id: int, token: Token, from_id:
|
|
3754
|
+
def GetCharactersCharacterIdWalletTransactions(self, character_id: int, token: Token, from_id: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCharactersCharacterIdWalletTransactionsOperation:
|
|
3881
3755
|
"""Get wallet transactions of a character"""
|
|
3882
3756
|
...
|
|
3883
3757
|
|
|
3884
|
-
def GetCorporationsCorporationIdWallets(self, corporation_id: int, token: Token, Accept_Language:
|
|
3758
|
+
def GetCorporationsCorporationIdWallets(self, corporation_id: int, token: Token, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdWalletsOperation:
|
|
3885
3759
|
"""Get a corporation's wallets"""
|
|
3886
3760
|
...
|
|
3887
3761
|
|
|
3888
|
-
def GetCorporationsCorporationIdWalletsDivisionJournal(self, corporation_id: int, division: int, token: Token, page:
|
|
3762
|
+
def GetCorporationsCorporationIdWalletsDivisionJournal(self, corporation_id: int, division: int, token: Token, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdWalletsDivisionJournalOperation:
|
|
3889
3763
|
"""Retrieve the given corporation's wallet journal for the given division going 30 days back"""
|
|
3890
3764
|
...
|
|
3891
3765
|
|
|
3892
|
-
def GetCorporationsCorporationIdWalletsDivisionTransactions(self, corporation_id: int, division: int, token: Token, from_id:
|
|
3766
|
+
def GetCorporationsCorporationIdWalletsDivisionTransactions(self, corporation_id: int, division: int, token: Token, from_id: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetCorporationsCorporationIdWalletsDivisionTransactionsOperation:
|
|
3893
3767
|
"""Get wallet transactions of a corporation"""
|
|
3894
3768
|
...
|
|
3895
3769
|
|
|
@@ -3897,15 +3771,15 @@ class ESIClientStub:
|
|
|
3897
3771
|
Wallet: _Wallet = _Wallet()
|
|
3898
3772
|
|
|
3899
3773
|
class _Wars:
|
|
3900
|
-
def GetWars(self, max_war_id:
|
|
3774
|
+
def GetWars(self, max_war_id: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetWarsOperation:
|
|
3901
3775
|
"""Return a list of wars"""
|
|
3902
3776
|
...
|
|
3903
3777
|
|
|
3904
|
-
def GetWarsWarId(self, war_id: int, Accept_Language:
|
|
3778
|
+
def GetWarsWarId(self, war_id: int, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetWarsWarIdOperation:
|
|
3905
3779
|
"""Return details about a war"""
|
|
3906
3780
|
...
|
|
3907
3781
|
|
|
3908
|
-
def GetWarsWarIdKillmails(self, war_id: int, page:
|
|
3782
|
+
def GetWarsWarIdKillmails(self, war_id: int, page: int | None = ..., Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetWarsWarIdKillmailsOperation:
|
|
3909
3783
|
"""Return a list of kills related to a war"""
|
|
3910
3784
|
...
|
|
3911
3785
|
|