django-esi 8.0.0a1__py3-none-any.whl → 8.0.0a3__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.0a3.dist-info}/METADATA +3 -4
- {django_esi-8.0.0a1.dist-info → django_esi-8.0.0a3.dist-info}/RECORD +14 -13
- esi/__init__.py +2 -2
- esi/aiopenapi3/plugins.py +39 -0
- esi/app_settings.py +1 -1
- esi/exceptions.py +29 -0
- esi/locale/en/LC_MESSAGES/django.po +3 -3
- esi/locale/ru/LC_MESSAGES/django.po +8 -7
- esi/management/commands/generate_esi_stubs.py +33 -16
- esi/openapi_clients.py +154 -36
- esi/stubs.pyi +483 -567
- esi/tests/test_openapi.py +14 -0
- {django_esi-8.0.0a1.dist-info → django_esi-8.0.0a3.dist-info}/WHEEL +0 -0
- {django_esi-8.0.0a1.dist-info → django_esi-8.0.0a3.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) ->
|
|
1317
|
-
"""Delete a fitting from a character"""
|
|
1318
|
-
...
|
|
1319
|
-
|
|
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]:
|
|
1288
|
+
"""EsiOperation, use result()"""
|
|
1289
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1325
1290
|
"""Delete a fitting from a character"""
|
|
1326
1291
|
...
|
|
1327
1292
|
|
|
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) ->
|
|
1362
|
-
"""Kick a fleet member"""
|
|
1363
|
-
...
|
|
1364
|
-
|
|
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]:
|
|
1324
|
+
"""EsiOperation, use result()"""
|
|
1325
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1370
1326
|
"""Kick a fleet member"""
|
|
1371
1327
|
...
|
|
1372
1328
|
|
|
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) ->
|
|
1330
|
+
"""EsiOperation, use result()"""
|
|
1331
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1377
1332
|
"""Delete a fleet squad, only empty squads can be deleted"""
|
|
1378
1333
|
...
|
|
1379
1334
|
|
|
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]:
|
|
1385
|
-
"""Delete a fleet squad, only empty squads can be deleted"""
|
|
1386
|
-
...
|
|
1387
|
-
|
|
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) ->
|
|
1527
|
-
"""Move a fleet member around"""
|
|
1528
|
-
...
|
|
1529
|
-
|
|
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]:
|
|
1453
|
+
"""EsiOperation, use result()"""
|
|
1454
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1535
1455
|
"""Move a fleet member around"""
|
|
1536
1456
|
...
|
|
1537
1457
|
|
|
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]:
|
|
1465
|
+
"""EsiOperation, use result()"""
|
|
1466
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1561
1467
|
"""Rename a fleet wing"""
|
|
1562
1468
|
...
|
|
1563
1469
|
|
|
1564
|
-
def results_localized(self, languages: str | list[str] = 'en', **kwargs) -> list[Any]:
|
|
1565
|
-
"""Rename a fleet wing"""
|
|
1566
|
-
...
|
|
1567
|
-
|
|
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) ->
|
|
1842
|
-
"""Delete a mail label"""
|
|
1843
|
-
...
|
|
1844
|
-
|
|
1845
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
1741
|
+
"""EsiOperation, use result()"""
|
|
1742
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1846
1743
|
"""Delete a mail label"""
|
|
1847
1744
|
...
|
|
1848
1745
|
|
|
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) ->
|
|
1747
|
+
"""EsiOperation, use result()"""
|
|
1748
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1857
1749
|
"""Delete a mail"""
|
|
1858
1750
|
...
|
|
1859
1751
|
|
|
1860
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
1861
|
-
"""Delete a mail"""
|
|
1862
|
-
...
|
|
1863
|
-
|
|
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,11 +2005,41 @@ 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
|
|
|
2138
2012
|
|
|
2013
|
+
class GetMetaChangelogOperation(EsiOperation):
|
|
2014
|
+
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2015
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2016
|
+
"""Get the changelog of this API."""
|
|
2017
|
+
...
|
|
2018
|
+
|
|
2019
|
+
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2020
|
+
"""Get the changelog of this API."""
|
|
2021
|
+
...
|
|
2022
|
+
|
|
2023
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2024
|
+
"""Get the changelog of this API."""
|
|
2025
|
+
...
|
|
2026
|
+
|
|
2027
|
+
|
|
2028
|
+
class GetMetaCompatibilityDatesOperation(EsiOperation):
|
|
2029
|
+
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2030
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2031
|
+
"""Get a list of compatibility dates."""
|
|
2032
|
+
...
|
|
2033
|
+
|
|
2034
|
+
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2035
|
+
"""Get a list of compatibility dates."""
|
|
2036
|
+
...
|
|
2037
|
+
|
|
2038
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2039
|
+
"""Get a list of compatibility dates."""
|
|
2040
|
+
...
|
|
2041
|
+
|
|
2042
|
+
|
|
2139
2043
|
class GetCharactersCharacterIdPlanetsOperation(EsiOperation):
|
|
2140
2044
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2141
2045
|
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
@@ -2146,7 +2050,7 @@ class GetCharactersCharacterIdPlanetsOperation(EsiOperation):
|
|
|
2146
2050
|
"""Returns a list of all planetary colonies owned by a character."""
|
|
2147
2051
|
...
|
|
2148
2052
|
|
|
2149
|
-
def results_localized(self, languages: str |
|
|
2053
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2150
2054
|
"""Returns a list of all planetary colonies owned by a character."""
|
|
2151
2055
|
...
|
|
2152
2056
|
|
|
@@ -2161,7 +2065,7 @@ class GetCharactersCharacterIdPlanetsPlanetIdOperation(EsiOperation):
|
|
|
2161
2065
|
"""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
2066
|
...
|
|
2163
2067
|
|
|
2164
|
-
def results_localized(self, languages: str |
|
|
2068
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2165
2069
|
"""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
2070
|
...
|
|
2167
2071
|
|
|
@@ -2176,7 +2080,7 @@ class GetCorporationsCorporationIdCustomsOfficesOperation(EsiOperation):
|
|
|
2176
2080
|
"""List customs offices owned by a corporation"""
|
|
2177
2081
|
...
|
|
2178
2082
|
|
|
2179
|
-
def results_localized(self, languages: str |
|
|
2083
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2180
2084
|
"""List customs offices owned by a corporation"""
|
|
2181
2085
|
...
|
|
2182
2086
|
|
|
@@ -2191,7 +2095,7 @@ class GetUniverseSchematicsSchematicIdOperation(EsiOperation):
|
|
|
2191
2095
|
"""Get information on a planetary factory schematic"""
|
|
2192
2096
|
...
|
|
2193
2097
|
|
|
2194
|
-
def results_localized(self, languages: str |
|
|
2098
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2195
2099
|
"""Get information on a planetary factory schematic"""
|
|
2196
2100
|
...
|
|
2197
2101
|
|
|
@@ -2206,7 +2110,7 @@ class GetRouteOriginDestinationOperation(EsiOperation):
|
|
|
2206
2110
|
"""Get the systems between origin and destination"""
|
|
2207
2111
|
...
|
|
2208
2112
|
|
|
2209
|
-
def results_localized(self, languages: str |
|
|
2113
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
2210
2114
|
"""Get the systems between origin and destination"""
|
|
2211
2115
|
...
|
|
2212
2116
|
|
|
@@ -2221,7 +2125,7 @@ class GetCharactersCharacterIdSearchOperation(EsiOperation):
|
|
|
2221
2125
|
"""Search for entities that match a given sub-string."""
|
|
2222
2126
|
...
|
|
2223
2127
|
|
|
2224
|
-
def results_localized(self, languages: str |
|
|
2128
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2225
2129
|
"""Search for entities that match a given sub-string."""
|
|
2226
2130
|
...
|
|
2227
2131
|
|
|
@@ -2236,7 +2140,7 @@ class GetCharactersCharacterIdAttributesOperation(EsiOperation):
|
|
|
2236
2140
|
"""Return attributes of a character"""
|
|
2237
2141
|
...
|
|
2238
2142
|
|
|
2239
|
-
def results_localized(self, languages: str |
|
|
2143
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2240
2144
|
"""Return attributes of a character"""
|
|
2241
2145
|
...
|
|
2242
2146
|
|
|
@@ -2251,7 +2155,7 @@ class GetCharactersCharacterIdSkillqueueOperation(EsiOperation):
|
|
|
2251
2155
|
"""List the configured skill queue for the given character"""
|
|
2252
2156
|
...
|
|
2253
2157
|
|
|
2254
|
-
def results_localized(self, languages: str |
|
|
2158
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2255
2159
|
"""List the configured skill queue for the given character"""
|
|
2256
2160
|
...
|
|
2257
2161
|
|
|
@@ -2266,7 +2170,7 @@ class GetCharactersCharacterIdSkillsOperation(EsiOperation):
|
|
|
2266
2170
|
"""List all trained skills for the given character"""
|
|
2267
2171
|
...
|
|
2268
2172
|
|
|
2269
|
-
def results_localized(self, languages: str |
|
|
2173
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2270
2174
|
"""List all trained skills for the given character"""
|
|
2271
2175
|
...
|
|
2272
2176
|
|
|
@@ -2281,7 +2185,7 @@ class GetSovereigntyCampaignsOperation(EsiOperation):
|
|
|
2281
2185
|
"""Shows sovereignty data for campaigns."""
|
|
2282
2186
|
...
|
|
2283
2187
|
|
|
2284
|
-
def results_localized(self, languages: str |
|
|
2188
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2285
2189
|
"""Shows sovereignty data for campaigns."""
|
|
2286
2190
|
...
|
|
2287
2191
|
|
|
@@ -2296,7 +2200,7 @@ class GetSovereigntyMapOperation(EsiOperation):
|
|
|
2296
2200
|
"""Shows sovereignty information for solar systems"""
|
|
2297
2201
|
...
|
|
2298
2202
|
|
|
2299
|
-
def results_localized(self, languages: str |
|
|
2203
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2300
2204
|
"""Shows sovereignty information for solar systems"""
|
|
2301
2205
|
...
|
|
2302
2206
|
|
|
@@ -2311,7 +2215,7 @@ class GetSovereigntyStructuresOperation(EsiOperation):
|
|
|
2311
2215
|
"""Shows sovereignty data for structures."""
|
|
2312
2216
|
...
|
|
2313
2217
|
|
|
2314
|
-
def results_localized(self, languages: str |
|
|
2218
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2315
2219
|
"""Shows sovereignty data for structures."""
|
|
2316
2220
|
...
|
|
2317
2221
|
|
|
@@ -2326,7 +2230,7 @@ class GetStatusOperation(EsiOperation):
|
|
|
2326
2230
|
"""EVE Server status"""
|
|
2327
2231
|
...
|
|
2328
2232
|
|
|
2329
|
-
def results_localized(self, languages: str |
|
|
2233
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2330
2234
|
"""EVE Server status"""
|
|
2331
2235
|
...
|
|
2332
2236
|
|
|
@@ -2341,7 +2245,7 @@ class GetUniverseAncestriesOperation(EsiOperation):
|
|
|
2341
2245
|
"""Get all character ancestries This route expires daily at 11:05"""
|
|
2342
2246
|
...
|
|
2343
2247
|
|
|
2344
|
-
def results_localized(self, languages: str |
|
|
2248
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2345
2249
|
"""Get all character ancestries This route expires daily at 11:05"""
|
|
2346
2250
|
...
|
|
2347
2251
|
|
|
@@ -2356,7 +2260,7 @@ class GetUniverseAsteroidBeltsAsteroidBeltIdOperation(EsiOperation):
|
|
|
2356
2260
|
"""Get information on an asteroid belt This route expires daily at 11:05"""
|
|
2357
2261
|
...
|
|
2358
2262
|
|
|
2359
|
-
def results_localized(self, languages: str |
|
|
2263
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2360
2264
|
"""Get information on an asteroid belt This route expires daily at 11:05"""
|
|
2361
2265
|
...
|
|
2362
2266
|
|
|
@@ -2371,7 +2275,7 @@ class GetUniverseBloodlinesOperation(EsiOperation):
|
|
|
2371
2275
|
"""Get a list of bloodlines This route expires daily at 11:05"""
|
|
2372
2276
|
...
|
|
2373
2277
|
|
|
2374
|
-
def results_localized(self, languages: str |
|
|
2278
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2375
2279
|
"""Get a list of bloodlines This route expires daily at 11:05"""
|
|
2376
2280
|
...
|
|
2377
2281
|
|
|
@@ -2386,7 +2290,7 @@ class GetUniverseCategoriesOperation(EsiOperation):
|
|
|
2386
2290
|
"""Get a list of item categories This route expires daily at 11:05"""
|
|
2387
2291
|
...
|
|
2388
2292
|
|
|
2389
|
-
def results_localized(self, languages: str |
|
|
2293
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
2390
2294
|
"""Get a list of item categories This route expires daily at 11:05"""
|
|
2391
2295
|
...
|
|
2392
2296
|
|
|
@@ -2401,7 +2305,7 @@ class GetUniverseCategoriesCategoryIdOperation(EsiOperation):
|
|
|
2401
2305
|
"""Get information of an item category This route expires daily at 11:05"""
|
|
2402
2306
|
...
|
|
2403
2307
|
|
|
2404
|
-
def results_localized(self, languages: str |
|
|
2308
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2405
2309
|
"""Get information of an item category This route expires daily at 11:05"""
|
|
2406
2310
|
...
|
|
2407
2311
|
|
|
@@ -2416,7 +2320,7 @@ class GetUniverseConstellationsOperation(EsiOperation):
|
|
|
2416
2320
|
"""Get a list of constellations This route expires daily at 11:05"""
|
|
2417
2321
|
...
|
|
2418
2322
|
|
|
2419
|
-
def results_localized(self, languages: str |
|
|
2323
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
2420
2324
|
"""Get a list of constellations This route expires daily at 11:05"""
|
|
2421
2325
|
...
|
|
2422
2326
|
|
|
@@ -2431,7 +2335,7 @@ class GetUniverseConstellationsConstellationIdOperation(EsiOperation):
|
|
|
2431
2335
|
"""Get information on a constellation This route expires daily at 11:05"""
|
|
2432
2336
|
...
|
|
2433
2337
|
|
|
2434
|
-
def results_localized(self, languages: str |
|
|
2338
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2435
2339
|
"""Get information on a constellation This route expires daily at 11:05"""
|
|
2436
2340
|
...
|
|
2437
2341
|
|
|
@@ -2446,7 +2350,7 @@ class GetUniverseFactionsOperation(EsiOperation):
|
|
|
2446
2350
|
"""Get a list of factions This route expires daily at 11:05"""
|
|
2447
2351
|
...
|
|
2448
2352
|
|
|
2449
|
-
def results_localized(self, languages: str |
|
|
2353
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2450
2354
|
"""Get a list of factions This route expires daily at 11:05"""
|
|
2451
2355
|
...
|
|
2452
2356
|
|
|
@@ -2461,7 +2365,7 @@ class GetUniverseGraphicsOperation(EsiOperation):
|
|
|
2461
2365
|
"""Get a list of graphics This route expires daily at 11:05"""
|
|
2462
2366
|
...
|
|
2463
2367
|
|
|
2464
|
-
def results_localized(self, languages: str |
|
|
2368
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
2465
2369
|
"""Get a list of graphics This route expires daily at 11:05"""
|
|
2466
2370
|
...
|
|
2467
2371
|
|
|
@@ -2476,7 +2380,7 @@ class GetUniverseGraphicsGraphicIdOperation(EsiOperation):
|
|
|
2476
2380
|
"""Get information on a graphic This route expires daily at 11:05"""
|
|
2477
2381
|
...
|
|
2478
2382
|
|
|
2479
|
-
def results_localized(self, languages: str |
|
|
2383
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2480
2384
|
"""Get information on a graphic This route expires daily at 11:05"""
|
|
2481
2385
|
...
|
|
2482
2386
|
|
|
@@ -2491,7 +2395,7 @@ class GetUniverseGroupsOperation(EsiOperation):
|
|
|
2491
2395
|
"""Get a list of item groups This route expires daily at 11:05"""
|
|
2492
2396
|
...
|
|
2493
2397
|
|
|
2494
|
-
def results_localized(self, languages: str |
|
|
2398
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
2495
2399
|
"""Get a list of item groups This route expires daily at 11:05"""
|
|
2496
2400
|
...
|
|
2497
2401
|
|
|
@@ -2506,7 +2410,7 @@ class GetUniverseGroupsGroupIdOperation(EsiOperation):
|
|
|
2506
2410
|
"""Get information on an item group This route expires daily at 11:05"""
|
|
2507
2411
|
...
|
|
2508
2412
|
|
|
2509
|
-
def results_localized(self, languages: str |
|
|
2413
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2510
2414
|
"""Get information on an item group This route expires daily at 11:05"""
|
|
2511
2415
|
...
|
|
2512
2416
|
|
|
@@ -2521,7 +2425,7 @@ class GetUniverseMoonsMoonIdOperation(EsiOperation):
|
|
|
2521
2425
|
"""Get information on a moon This route expires daily at 11:05"""
|
|
2522
2426
|
...
|
|
2523
2427
|
|
|
2524
|
-
def results_localized(self, languages: str |
|
|
2428
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2525
2429
|
"""Get information on a moon This route expires daily at 11:05"""
|
|
2526
2430
|
...
|
|
2527
2431
|
|
|
@@ -2536,7 +2440,7 @@ class GetUniversePlanetsPlanetIdOperation(EsiOperation):
|
|
|
2536
2440
|
"""Get information on a planet This route expires daily at 11:05"""
|
|
2537
2441
|
...
|
|
2538
2442
|
|
|
2539
|
-
def results_localized(self, languages: str |
|
|
2443
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2540
2444
|
"""Get information on a planet This route expires daily at 11:05"""
|
|
2541
2445
|
...
|
|
2542
2446
|
|
|
@@ -2551,7 +2455,7 @@ class GetUniverseRacesOperation(EsiOperation):
|
|
|
2551
2455
|
"""Get a list of character races This route expires daily at 11:05"""
|
|
2552
2456
|
...
|
|
2553
2457
|
|
|
2554
|
-
def results_localized(self, languages: str |
|
|
2458
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2555
2459
|
"""Get a list of character races This route expires daily at 11:05"""
|
|
2556
2460
|
...
|
|
2557
2461
|
|
|
@@ -2566,7 +2470,7 @@ class GetUniverseRegionsOperation(EsiOperation):
|
|
|
2566
2470
|
"""Get a list of regions This route expires daily at 11:05"""
|
|
2567
2471
|
...
|
|
2568
2472
|
|
|
2569
|
-
def results_localized(self, languages: str |
|
|
2473
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
2570
2474
|
"""Get a list of regions This route expires daily at 11:05"""
|
|
2571
2475
|
...
|
|
2572
2476
|
|
|
@@ -2581,7 +2485,7 @@ class GetUniverseRegionsRegionIdOperation(EsiOperation):
|
|
|
2581
2485
|
"""Get information on a region This route expires daily at 11:05"""
|
|
2582
2486
|
...
|
|
2583
2487
|
|
|
2584
|
-
def results_localized(self, languages: str |
|
|
2488
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2585
2489
|
"""Get information on a region This route expires daily at 11:05"""
|
|
2586
2490
|
...
|
|
2587
2491
|
|
|
@@ -2596,7 +2500,7 @@ class GetUniverseStargatesStargateIdOperation(EsiOperation):
|
|
|
2596
2500
|
"""Get information on a stargate This route expires daily at 11:05"""
|
|
2597
2501
|
...
|
|
2598
2502
|
|
|
2599
|
-
def results_localized(self, languages: str |
|
|
2503
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2600
2504
|
"""Get information on a stargate This route expires daily at 11:05"""
|
|
2601
2505
|
...
|
|
2602
2506
|
|
|
@@ -2611,7 +2515,7 @@ class GetUniverseStarsStarIdOperation(EsiOperation):
|
|
|
2611
2515
|
"""Get information on a star This route expires daily at 11:05"""
|
|
2612
2516
|
...
|
|
2613
2517
|
|
|
2614
|
-
def results_localized(self, languages: str |
|
|
2518
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2615
2519
|
"""Get information on a star This route expires daily at 11:05"""
|
|
2616
2520
|
...
|
|
2617
2521
|
|
|
@@ -2626,7 +2530,7 @@ class GetUniverseStationsStationIdOperation(EsiOperation):
|
|
|
2626
2530
|
"""Get information on a station This route expires daily at 11:05"""
|
|
2627
2531
|
...
|
|
2628
2532
|
|
|
2629
|
-
def results_localized(self, languages: str |
|
|
2533
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2630
2534
|
"""Get information on a station This route expires daily at 11:05"""
|
|
2631
2535
|
...
|
|
2632
2536
|
|
|
@@ -2641,7 +2545,7 @@ class GetUniverseStructuresOperation(EsiOperation):
|
|
|
2641
2545
|
"""List all public structures"""
|
|
2642
2546
|
...
|
|
2643
2547
|
|
|
2644
|
-
def results_localized(self, languages: str |
|
|
2548
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
2645
2549
|
"""List all public structures"""
|
|
2646
2550
|
...
|
|
2647
2551
|
|
|
@@ -2656,7 +2560,7 @@ class GetUniverseStructuresStructureIdOperation(EsiOperation):
|
|
|
2656
2560
|
"""Returns information on requested structure if you are on the ACL. Otherwise, returns "Forbidden" for all inputs."""
|
|
2657
2561
|
...
|
|
2658
2562
|
|
|
2659
|
-
def results_localized(self, languages: str |
|
|
2563
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2660
2564
|
"""Returns information on requested structure if you are on the ACL. Otherwise, returns "Forbidden" for all inputs."""
|
|
2661
2565
|
...
|
|
2662
2566
|
|
|
@@ -2671,7 +2575,7 @@ class GetUniverseSystemJumpsOperation(EsiOperation):
|
|
|
2671
2575
|
"""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
2576
|
...
|
|
2673
2577
|
|
|
2674
|
-
def results_localized(self, languages: str |
|
|
2578
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2675
2579
|
"""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
2580
|
...
|
|
2677
2581
|
|
|
@@ -2686,7 +2590,7 @@ class GetUniverseSystemKillsOperation(EsiOperation):
|
|
|
2686
2590
|
"""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
2591
|
...
|
|
2688
2592
|
|
|
2689
|
-
def results_localized(self, languages: str |
|
|
2593
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2690
2594
|
"""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
2595
|
...
|
|
2692
2596
|
|
|
@@ -2701,7 +2605,7 @@ class GetUniverseSystemsOperation(EsiOperation):
|
|
|
2701
2605
|
"""Get a list of solar systems This route expires daily at 11:05"""
|
|
2702
2606
|
...
|
|
2703
2607
|
|
|
2704
|
-
def results_localized(self, languages: str |
|
|
2608
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
2705
2609
|
"""Get a list of solar systems This route expires daily at 11:05"""
|
|
2706
2610
|
...
|
|
2707
2611
|
|
|
@@ -2716,7 +2620,7 @@ class GetUniverseSystemsSystemIdOperation(EsiOperation):
|
|
|
2716
2620
|
"""Get information on a solar system. This route expires daily at 11:05"""
|
|
2717
2621
|
...
|
|
2718
2622
|
|
|
2719
|
-
def results_localized(self, languages: str |
|
|
2623
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2720
2624
|
"""Get information on a solar system. This route expires daily at 11:05"""
|
|
2721
2625
|
...
|
|
2722
2626
|
|
|
@@ -2731,7 +2635,7 @@ class GetUniverseTypesOperation(EsiOperation):
|
|
|
2731
2635
|
"""Get a list of type ids This route expires daily at 11:05"""
|
|
2732
2636
|
...
|
|
2733
2637
|
|
|
2734
|
-
def results_localized(self, languages: str |
|
|
2638
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
2735
2639
|
"""Get a list of type ids This route expires daily at 11:05"""
|
|
2736
2640
|
...
|
|
2737
2641
|
|
|
@@ -2746,37 +2650,37 @@ class GetUniverseTypesTypeIdOperation(EsiOperation):
|
|
|
2746
2650
|
"""Get information on a type This route expires daily at 11:05"""
|
|
2747
2651
|
...
|
|
2748
2652
|
|
|
2749
|
-
def results_localized(self, languages: str |
|
|
2653
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2750
2654
|
"""Get information on a type This route expires daily at 11:05"""
|
|
2751
2655
|
...
|
|
2752
2656
|
|
|
2753
2657
|
|
|
2754
2658
|
class PostUniverseIdsOperation(EsiOperation):
|
|
2755
2659
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2756
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
2660
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> Any:
|
|
2757
2661
|
"""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
2662
|
...
|
|
2759
2663
|
|
|
2760
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[
|
|
2664
|
+
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
2761
2665
|
"""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
2666
|
...
|
|
2763
2667
|
|
|
2764
|
-
def results_localized(self, languages: str |
|
|
2668
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[Any]]:
|
|
2765
2669
|
"""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
2670
|
...
|
|
2767
2671
|
|
|
2768
2672
|
|
|
2769
2673
|
class PostUniverseNamesOperation(EsiOperation):
|
|
2770
2674
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2771
|
-
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) ->
|
|
2675
|
+
def result(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> Any:
|
|
2772
2676
|
"""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
2677
|
...
|
|
2774
2678
|
|
|
2775
|
-
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[
|
|
2679
|
+
def results(self, etag: str | None = None, return_response: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
2776
2680
|
"""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
2681
|
...
|
|
2778
2682
|
|
|
2779
|
-
def results_localized(self, languages: str |
|
|
2683
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[Any]]:
|
|
2780
2684
|
"""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
2685
|
...
|
|
2782
2686
|
|
|
@@ -2791,7 +2695,7 @@ class PostUiAutopilotWaypointOperation(EsiOperation):
|
|
|
2791
2695
|
"""Set a solar system as autopilot waypoint"""
|
|
2792
2696
|
...
|
|
2793
2697
|
|
|
2794
|
-
def results_localized(self, languages: str |
|
|
2698
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[Any]]:
|
|
2795
2699
|
"""Set a solar system as autopilot waypoint"""
|
|
2796
2700
|
...
|
|
2797
2701
|
|
|
@@ -2806,7 +2710,7 @@ class PostUiOpenwindowContractOperation(EsiOperation):
|
|
|
2806
2710
|
"""Open the contract window inside the client"""
|
|
2807
2711
|
...
|
|
2808
2712
|
|
|
2809
|
-
def results_localized(self, languages: str |
|
|
2713
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[Any]]:
|
|
2810
2714
|
"""Open the contract window inside the client"""
|
|
2811
2715
|
...
|
|
2812
2716
|
|
|
@@ -2821,7 +2725,7 @@ class PostUiOpenwindowInformationOperation(EsiOperation):
|
|
|
2821
2725
|
"""Open the information window for a character, corporation or alliance inside the client"""
|
|
2822
2726
|
...
|
|
2823
2727
|
|
|
2824
|
-
def results_localized(self, languages: str |
|
|
2728
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[Any]]:
|
|
2825
2729
|
"""Open the information window for a character, corporation or alliance inside the client"""
|
|
2826
2730
|
...
|
|
2827
2731
|
|
|
@@ -2836,7 +2740,7 @@ class PostUiOpenwindowMarketdetailsOperation(EsiOperation):
|
|
|
2836
2740
|
"""Open the market details window for a specific typeID inside the client"""
|
|
2837
2741
|
...
|
|
2838
2742
|
|
|
2839
|
-
def results_localized(self, languages: str |
|
|
2743
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[Any]]:
|
|
2840
2744
|
"""Open the market details window for a specific typeID inside the client"""
|
|
2841
2745
|
...
|
|
2842
2746
|
|
|
@@ -2851,7 +2755,7 @@ class PostUiOpenwindowNewmailOperation(EsiOperation):
|
|
|
2851
2755
|
"""Open the New Mail window, according to settings from the request if applicable"""
|
|
2852
2756
|
...
|
|
2853
2757
|
|
|
2854
|
-
def results_localized(self, languages: str |
|
|
2758
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[Any]]:
|
|
2855
2759
|
"""Open the New Mail window, according to settings from the request if applicable"""
|
|
2856
2760
|
...
|
|
2857
2761
|
|
|
@@ -2866,7 +2770,7 @@ class GetCharactersCharacterIdWalletOperation(EsiOperation):
|
|
|
2866
2770
|
"""Returns a character's wallet balance"""
|
|
2867
2771
|
...
|
|
2868
2772
|
|
|
2869
|
-
def results_localized(self, languages: str |
|
|
2773
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[float]]:
|
|
2870
2774
|
"""Returns a character's wallet balance"""
|
|
2871
2775
|
...
|
|
2872
2776
|
|
|
@@ -2881,7 +2785,7 @@ class GetCharactersCharacterIdWalletJournalOperation(EsiOperation):
|
|
|
2881
2785
|
"""Retrieve the given character's wallet journal going 30 days back"""
|
|
2882
2786
|
...
|
|
2883
2787
|
|
|
2884
|
-
def results_localized(self, languages: str |
|
|
2788
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2885
2789
|
"""Retrieve the given character's wallet journal going 30 days back"""
|
|
2886
2790
|
...
|
|
2887
2791
|
|
|
@@ -2896,7 +2800,7 @@ class GetCharactersCharacterIdWalletTransactionsOperation(EsiOperation):
|
|
|
2896
2800
|
"""Get wallet transactions of a character"""
|
|
2897
2801
|
...
|
|
2898
2802
|
|
|
2899
|
-
def results_localized(self, languages: str |
|
|
2803
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2900
2804
|
"""Get wallet transactions of a character"""
|
|
2901
2805
|
...
|
|
2902
2806
|
|
|
@@ -2911,7 +2815,7 @@ class GetCorporationsCorporationIdWalletsOperation(EsiOperation):
|
|
|
2911
2815
|
"""Get a corporation's wallets"""
|
|
2912
2816
|
...
|
|
2913
2817
|
|
|
2914
|
-
def results_localized(self, languages: str |
|
|
2818
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2915
2819
|
"""Get a corporation's wallets"""
|
|
2916
2820
|
...
|
|
2917
2821
|
|
|
@@ -2926,7 +2830,7 @@ class GetCorporationsCorporationIdWalletsDivisionJournalOperation(EsiOperation):
|
|
|
2926
2830
|
"""Retrieve the given corporation's wallet journal for the given division going 30 days back"""
|
|
2927
2831
|
...
|
|
2928
2832
|
|
|
2929
|
-
def results_localized(self, languages: str |
|
|
2833
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2930
2834
|
"""Retrieve the given corporation's wallet journal for the given division going 30 days back"""
|
|
2931
2835
|
...
|
|
2932
2836
|
|
|
@@ -2941,7 +2845,7 @@ class GetCorporationsCorporationIdWalletsDivisionTransactionsOperation(EsiOperat
|
|
|
2941
2845
|
"""Get wallet transactions of a corporation"""
|
|
2942
2846
|
...
|
|
2943
2847
|
|
|
2944
|
-
def results_localized(self, languages: str |
|
|
2848
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2945
2849
|
"""Get wallet transactions of a corporation"""
|
|
2946
2850
|
...
|
|
2947
2851
|
|
|
@@ -2956,7 +2860,7 @@ class GetWarsOperation(EsiOperation):
|
|
|
2956
2860
|
"""Return a list of wars"""
|
|
2957
2861
|
...
|
|
2958
2862
|
|
|
2959
|
-
def results_localized(self, languages: str |
|
|
2863
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[int]]:
|
|
2960
2864
|
"""Return a list of wars"""
|
|
2961
2865
|
...
|
|
2962
2866
|
|
|
@@ -2971,7 +2875,7 @@ class GetWarsWarIdOperation(EsiOperation):
|
|
|
2971
2875
|
"""Return details about a war"""
|
|
2972
2876
|
...
|
|
2973
2877
|
|
|
2974
|
-
def results_localized(self, languages: str |
|
|
2878
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2975
2879
|
"""Return details about a war"""
|
|
2976
2880
|
...
|
|
2977
2881
|
|
|
@@ -2986,26 +2890,26 @@ class GetWarsWarIdKillmailsOperation(EsiOperation):
|
|
|
2986
2890
|
"""Return a list of kills related to a war"""
|
|
2987
2891
|
...
|
|
2988
2892
|
|
|
2989
|
-
def results_localized(self, languages: str |
|
|
2893
|
+
def results_localized(self, languages: list[str] | str | None = None, **extra) -> dict[str, list[dict[str, Any]]]:
|
|
2990
2894
|
"""Return a list of kills related to a war"""
|
|
2991
2895
|
...
|
|
2992
2896
|
|
|
2993
2897
|
|
|
2994
2898
|
class ESIClientStub:
|
|
2995
2899
|
class _Alliance:
|
|
2996
|
-
def GetAlliances(self, Accept_Language:
|
|
2900
|
+
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
2901
|
"""List all active player alliances"""
|
|
2998
2902
|
...
|
|
2999
2903
|
|
|
3000
|
-
def GetAlliancesAllianceId(self, alliance_id: int, Accept_Language:
|
|
2904
|
+
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
2905
|
"""Public information about an alliance"""
|
|
3002
2906
|
...
|
|
3003
2907
|
|
|
3004
|
-
def GetAlliancesAllianceIdCorporations(self, alliance_id: int, Accept_Language:
|
|
2908
|
+
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
2909
|
"""List all current member corporations of an alliance"""
|
|
3006
2910
|
...
|
|
3007
2911
|
|
|
3008
|
-
def GetAlliancesAllianceIdIcons(self, alliance_id: int, Accept_Language:
|
|
2912
|
+
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
2913
|
"""Get the icon urls for a alliance This route expires daily at 11:05"""
|
|
3010
2914
|
...
|
|
3011
2915
|
|
|
@@ -3013,27 +2917,27 @@ class ESIClientStub:
|
|
|
3013
2917
|
Alliance: _Alliance = _Alliance()
|
|
3014
2918
|
|
|
3015
2919
|
class _Assets:
|
|
3016
|
-
def GetCharactersCharacterIdAssets(self, character_id: int, token: Token, page:
|
|
2920
|
+
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
2921
|
"""Return a list of the characters assets"""
|
|
3018
2922
|
...
|
|
3019
2923
|
|
|
3020
|
-
def GetCorporationsCorporationIdAssets(self, corporation_id: int, token: Token, page:
|
|
2924
|
+
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
2925
|
"""Return a list of the corporation assets"""
|
|
3022
2926
|
...
|
|
3023
2927
|
|
|
3024
|
-
def PostCharactersCharacterIdAssetsLocations(self, character_id: int, token: Token, Accept_Language:
|
|
2928
|
+
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
2929
|
"""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
2930
|
...
|
|
3027
2931
|
|
|
3028
|
-
def PostCharactersCharacterIdAssetsNames(self, character_id: int, token: Token, Accept_Language:
|
|
2932
|
+
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
2933
|
"""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
2934
|
...
|
|
3031
2935
|
|
|
3032
|
-
def PostCorporationsCorporationIdAssetsLocations(self, corporation_id: int, token: Token, Accept_Language:
|
|
2936
|
+
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
2937
|
"""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
2938
|
...
|
|
3035
2939
|
|
|
3036
|
-
def PostCorporationsCorporationIdAssetsNames(self, corporation_id: int, token: Token, Accept_Language:
|
|
2940
|
+
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
2941
|
"""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
2942
|
...
|
|
3039
2943
|
|
|
@@ -3041,19 +2945,19 @@ class ESIClientStub:
|
|
|
3041
2945
|
Assets: _Assets = _Assets()
|
|
3042
2946
|
|
|
3043
2947
|
class _Calendar:
|
|
3044
|
-
def GetCharactersCharacterIdCalendar(self, character_id: int, token: Token, from_event:
|
|
2948
|
+
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
2949
|
"""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
2950
|
...
|
|
3047
2951
|
|
|
3048
|
-
def GetCharactersCharacterIdCalendarEventId(self, character_id: int, event_id: int, token: Token, Accept_Language:
|
|
2952
|
+
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
2953
|
"""Get all the information for a specific event"""
|
|
3050
2954
|
...
|
|
3051
2955
|
|
|
3052
|
-
def GetCharactersCharacterIdCalendarEventIdAttendees(self, character_id: int, event_id: int, token: Token, Accept_Language:
|
|
2956
|
+
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
2957
|
"""Get all invited attendees for a given event"""
|
|
3054
2958
|
...
|
|
3055
2959
|
|
|
3056
|
-
def PutCharactersCharacterIdCalendarEventId(self, character_id: int, event_id: int, token: Token, Accept_Language:
|
|
2960
|
+
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
2961
|
"""Set your response status to an event"""
|
|
3058
2962
|
...
|
|
3059
2963
|
|
|
@@ -3061,59 +2965,59 @@ class ESIClientStub:
|
|
|
3061
2965
|
Calendar: _Calendar = _Calendar()
|
|
3062
2966
|
|
|
3063
2967
|
class _Character:
|
|
3064
|
-
def GetCharactersCharacterId(self, character_id: int, Accept_Language:
|
|
2968
|
+
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
2969
|
"""Public information about a character"""
|
|
3066
2970
|
...
|
|
3067
2971
|
|
|
3068
|
-
def GetCharactersCharacterIdAgentsResearch(self, character_id: int, token: Token, Accept_Language:
|
|
2972
|
+
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
2973
|
"""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
2974
|
...
|
|
3071
2975
|
|
|
3072
|
-
def GetCharactersCharacterIdBlueprints(self, character_id: int, token: Token, page:
|
|
2976
|
+
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
2977
|
"""Return a list of blueprints the character owns"""
|
|
3074
2978
|
...
|
|
3075
2979
|
|
|
3076
|
-
def GetCharactersCharacterIdCorporationhistory(self, character_id: int, Accept_Language:
|
|
2980
|
+
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
2981
|
"""Get a list of all the corporations a character has been a member of"""
|
|
3078
2982
|
...
|
|
3079
2983
|
|
|
3080
|
-
def GetCharactersCharacterIdFatigue(self, character_id: int, token: Token, Accept_Language:
|
|
2984
|
+
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
2985
|
"""Return a character's jump activation and fatigue information"""
|
|
3082
2986
|
...
|
|
3083
2987
|
|
|
3084
|
-
def GetCharactersCharacterIdMedals(self, character_id: int, token: Token, Accept_Language:
|
|
2988
|
+
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
2989
|
"""Return a list of medals the character has"""
|
|
3086
2990
|
...
|
|
3087
2991
|
|
|
3088
|
-
def GetCharactersCharacterIdNotifications(self, character_id: int, token: Token, Accept_Language:
|
|
2992
|
+
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
2993
|
"""Return character notifications"""
|
|
3090
2994
|
...
|
|
3091
2995
|
|
|
3092
|
-
def GetCharactersCharacterIdNotificationsContacts(self, character_id: int, token: Token, Accept_Language:
|
|
2996
|
+
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
2997
|
"""Return notifications about having been added to someone's contact list"""
|
|
3094
2998
|
...
|
|
3095
2999
|
|
|
3096
|
-
def GetCharactersCharacterIdPortrait(self, character_id: int, Accept_Language:
|
|
3000
|
+
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
3001
|
"""Get portrait urls for a character This route expires daily at 11:05"""
|
|
3098
3002
|
...
|
|
3099
3003
|
|
|
3100
|
-
def GetCharactersCharacterIdRoles(self, character_id: int, token: Token, Accept_Language:
|
|
3004
|
+
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
3005
|
"""Returns a character's corporation roles"""
|
|
3102
3006
|
...
|
|
3103
3007
|
|
|
3104
|
-
def GetCharactersCharacterIdStandings(self, character_id: int, token: Token, Accept_Language:
|
|
3008
|
+
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
3009
|
"""Return character standings from agents, NPC corporations, and factions"""
|
|
3106
3010
|
...
|
|
3107
3011
|
|
|
3108
|
-
def GetCharactersCharacterIdTitles(self, character_id: int, token: Token, Accept_Language:
|
|
3012
|
+
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
3013
|
"""Returns a character's titles"""
|
|
3110
3014
|
...
|
|
3111
3015
|
|
|
3112
|
-
def PostCharactersAffiliation(self,
|
|
3016
|
+
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
3017
|
"""Bulk lookup of character IDs to corporation, alliance and faction"""
|
|
3114
3018
|
...
|
|
3115
3019
|
|
|
3116
|
-
def PostCharactersCharacterIdCspa(self, character_id: int, token: Token, Accept_Language:
|
|
3020
|
+
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
3021
|
"""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
3022
|
...
|
|
3119
3023
|
|
|
@@ -3121,11 +3025,11 @@ class ESIClientStub:
|
|
|
3121
3025
|
Character: _Character = _Character()
|
|
3122
3026
|
|
|
3123
3027
|
class _Clones:
|
|
3124
|
-
def GetCharactersCharacterIdClones(self, character_id: int, token: Token, Accept_Language:
|
|
3028
|
+
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
3029
|
"""A list of the character's clones"""
|
|
3126
3030
|
...
|
|
3127
3031
|
|
|
3128
|
-
def GetCharactersCharacterIdImplants(self, character_id: int, token: Token, Accept_Language:
|
|
3032
|
+
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
3033
|
"""Return implants on the active clone of a character"""
|
|
3130
3034
|
...
|
|
3131
3035
|
|
|
@@ -3133,39 +3037,39 @@ class ESIClientStub:
|
|
|
3133
3037
|
Clones: _Clones = _Clones()
|
|
3134
3038
|
|
|
3135
3039
|
class _Contacts:
|
|
3136
|
-
def DeleteCharactersCharacterIdContacts(self, character_id: int, contact_ids: list[Any], token: Token, Accept_Language:
|
|
3040
|
+
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
3041
|
"""Bulk delete contacts"""
|
|
3138
3042
|
...
|
|
3139
3043
|
|
|
3140
|
-
def GetAlliancesAllianceIdContacts(self, alliance_id: int, token: Token, page:
|
|
3044
|
+
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
3045
|
"""Return contacts of an alliance"""
|
|
3142
3046
|
...
|
|
3143
3047
|
|
|
3144
|
-
def GetAlliancesAllianceIdContactsLabels(self, alliance_id: int, token: Token, Accept_Language:
|
|
3048
|
+
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
3049
|
"""Return custom labels for an alliance's contacts"""
|
|
3146
3050
|
...
|
|
3147
3051
|
|
|
3148
|
-
def GetCharactersCharacterIdContacts(self, character_id: int, token: Token, page:
|
|
3052
|
+
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
3053
|
"""Return contacts of a character"""
|
|
3150
3054
|
...
|
|
3151
3055
|
|
|
3152
|
-
def GetCharactersCharacterIdContactsLabels(self, character_id: int, token: Token, Accept_Language:
|
|
3056
|
+
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
3057
|
"""Return custom labels for a character's contacts"""
|
|
3154
3058
|
...
|
|
3155
3059
|
|
|
3156
|
-
def GetCorporationsCorporationIdContacts(self, corporation_id: int, token: Token, page:
|
|
3060
|
+
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
3061
|
"""Return contacts of a corporation"""
|
|
3158
3062
|
...
|
|
3159
3063
|
|
|
3160
|
-
def GetCorporationsCorporationIdContactsLabels(self, corporation_id: int, token: Token, Accept_Language:
|
|
3064
|
+
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
3065
|
"""Return custom labels for a corporation's contacts"""
|
|
3162
3066
|
...
|
|
3163
3067
|
|
|
3164
|
-
def PostCharactersCharacterIdContacts(self, character_id: int, standing: float, token: Token, label_ids:
|
|
3068
|
+
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
3069
|
"""Bulk add contacts with same settings"""
|
|
3166
3070
|
...
|
|
3167
3071
|
|
|
3168
|
-
def PutCharactersCharacterIdContacts(self, character_id: int, standing: float, token: Token, label_ids:
|
|
3072
|
+
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
3073
|
"""Bulk edit contacts with same settings"""
|
|
3170
3074
|
...
|
|
3171
3075
|
|
|
@@ -3173,39 +3077,39 @@ class ESIClientStub:
|
|
|
3173
3077
|
Contacts: _Contacts = _Contacts()
|
|
3174
3078
|
|
|
3175
3079
|
class _Contracts:
|
|
3176
|
-
def GetCharactersCharacterIdContracts(self, character_id: int, token: Token, page:
|
|
3080
|
+
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
3081
|
"""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
3082
|
...
|
|
3179
3083
|
|
|
3180
|
-
def GetCharactersCharacterIdContractsContractIdBids(self, character_id: int, contract_id: int, token: Token, Accept_Language:
|
|
3084
|
+
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
3085
|
"""Lists bids on a particular auction contract"""
|
|
3182
3086
|
...
|
|
3183
3087
|
|
|
3184
|
-
def GetCharactersCharacterIdContractsContractIdItems(self, character_id: int, contract_id: int, token: Token, Accept_Language:
|
|
3088
|
+
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
3089
|
"""Lists items of a particular contract"""
|
|
3186
3090
|
...
|
|
3187
3091
|
|
|
3188
|
-
def GetContractsPublicBidsContractId(self, contract_id: int, page:
|
|
3092
|
+
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
3093
|
"""Lists bids on a public auction contract"""
|
|
3190
3094
|
...
|
|
3191
3095
|
|
|
3192
|
-
def GetContractsPublicItemsContractId(self, contract_id: int, page:
|
|
3096
|
+
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
3097
|
"""Lists items of a public contract"""
|
|
3194
3098
|
...
|
|
3195
3099
|
|
|
3196
|
-
def GetContractsPublicRegionId(self, region_id: int, page:
|
|
3100
|
+
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
3101
|
"""Returns a paginated list of all public contracts in the given region"""
|
|
3198
3102
|
...
|
|
3199
3103
|
|
|
3200
|
-
def GetCorporationsCorporationIdContracts(self, corporation_id: int, token: Token, page:
|
|
3104
|
+
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
3105
|
"""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
3106
|
...
|
|
3203
3107
|
|
|
3204
|
-
def GetCorporationsCorporationIdContractsContractIdBids(self, contract_id: int, corporation_id: int, token: Token, page:
|
|
3108
|
+
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
3109
|
"""Lists bids on a particular auction contract"""
|
|
3206
3110
|
...
|
|
3207
3111
|
|
|
3208
|
-
def GetCorporationsCorporationIdContractsContractIdItems(self, contract_id: int, corporation_id: int, token: Token, Accept_Language:
|
|
3112
|
+
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
3113
|
"""Lists items of a particular contract"""
|
|
3210
3114
|
...
|
|
3211
3115
|
|
|
@@ -3213,91 +3117,91 @@ class ESIClientStub:
|
|
|
3213
3117
|
Contracts: _Contracts = _Contracts()
|
|
3214
3118
|
|
|
3215
3119
|
class _Corporation:
|
|
3216
|
-
def GetCorporationsCorporationId(self, corporation_id: int, Accept_Language:
|
|
3120
|
+
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
3121
|
"""Public information about a corporation"""
|
|
3218
3122
|
...
|
|
3219
3123
|
|
|
3220
|
-
def GetCorporationsCorporationIdAlliancehistory(self, corporation_id: int, Accept_Language:
|
|
3124
|
+
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
3125
|
"""Get a list of all the alliances a corporation has been a member of"""
|
|
3222
3126
|
...
|
|
3223
3127
|
|
|
3224
|
-
def GetCorporationsCorporationIdBlueprints(self, corporation_id: int, token: Token, page:
|
|
3128
|
+
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
3129
|
"""Returns a list of blueprints the corporation owns"""
|
|
3226
3130
|
...
|
|
3227
3131
|
|
|
3228
|
-
def GetCorporationsCorporationIdContainersLogs(self, corporation_id: int, token: Token, page:
|
|
3132
|
+
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
3133
|
"""Returns logs recorded in the past seven days from all audit log secure containers (ALSC) owned by a given corporation"""
|
|
3230
3134
|
...
|
|
3231
3135
|
|
|
3232
|
-
def GetCorporationsCorporationIdDivisions(self, corporation_id: int, token: Token, Accept_Language:
|
|
3136
|
+
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
3137
|
"""Return corporation hangar and wallet division names, only show if a division is not using the default name"""
|
|
3234
3138
|
...
|
|
3235
3139
|
|
|
3236
|
-
def GetCorporationsCorporationIdFacilities(self, corporation_id: int, token: Token, Accept_Language:
|
|
3140
|
+
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
3141
|
"""Return a corporation's facilities"""
|
|
3238
3142
|
...
|
|
3239
3143
|
|
|
3240
|
-
def GetCorporationsCorporationIdIcons(self, corporation_id: int, Accept_Language:
|
|
3144
|
+
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
3145
|
"""Get the icon urls for a corporation"""
|
|
3242
3146
|
...
|
|
3243
3147
|
|
|
3244
|
-
def GetCorporationsCorporationIdMedals(self, corporation_id: int, token: Token, page:
|
|
3148
|
+
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
3149
|
"""Returns a corporation's medals"""
|
|
3246
3150
|
...
|
|
3247
3151
|
|
|
3248
|
-
def GetCorporationsCorporationIdMedalsIssued(self, corporation_id: int, token: Token, page:
|
|
3152
|
+
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
3153
|
"""Returns medals issued by a corporation"""
|
|
3250
3154
|
...
|
|
3251
3155
|
|
|
3252
|
-
def GetCorporationsCorporationIdMembers(self, corporation_id: int, token: Token, Accept_Language:
|
|
3156
|
+
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
3157
|
"""Return the current member list of a corporation, the token's character need to be a member of the corporation."""
|
|
3254
3158
|
...
|
|
3255
3159
|
|
|
3256
|
-
def GetCorporationsCorporationIdMembersLimit(self, corporation_id: int, token: Token, Accept_Language:
|
|
3160
|
+
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
3161
|
"""Return a corporation's member limit, not including CEO himself"""
|
|
3258
3162
|
...
|
|
3259
3163
|
|
|
3260
|
-
def GetCorporationsCorporationIdMembersTitles(self, corporation_id: int, token: Token, Accept_Language:
|
|
3164
|
+
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
3165
|
"""Returns a corporation's members' titles"""
|
|
3262
3166
|
...
|
|
3263
3167
|
|
|
3264
|
-
def GetCorporationsCorporationIdMembertracking(self, corporation_id: int, token: Token, Accept_Language:
|
|
3168
|
+
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
3169
|
"""Returns additional information about a corporation's members which helps tracking their activities"""
|
|
3266
3170
|
...
|
|
3267
3171
|
|
|
3268
|
-
def GetCorporationsCorporationIdRoles(self, corporation_id: int, token: Token, Accept_Language:
|
|
3172
|
+
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
3173
|
"""Return the roles of all members if the character has the personnel manager role or any grantable role."""
|
|
3270
3174
|
...
|
|
3271
3175
|
|
|
3272
|
-
def GetCorporationsCorporationIdRolesHistory(self, corporation_id: int, token: Token, page:
|
|
3176
|
+
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
3177
|
"""Return how roles have changed for a coporation's members, up to a month"""
|
|
3274
3178
|
...
|
|
3275
3179
|
|
|
3276
|
-
def GetCorporationsCorporationIdShareholders(self, corporation_id: int, token: Token, page:
|
|
3180
|
+
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
3181
|
"""Return the current shareholders of a corporation."""
|
|
3278
3182
|
...
|
|
3279
3183
|
|
|
3280
|
-
def GetCorporationsCorporationIdStandings(self, corporation_id: int, token: Token, page:
|
|
3184
|
+
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
3185
|
"""Return corporation standings from agents, NPC corporations, and factions"""
|
|
3282
3186
|
...
|
|
3283
3187
|
|
|
3284
|
-
def GetCorporationsCorporationIdStarbases(self, corporation_id: int, token: Token, page:
|
|
3188
|
+
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
3189
|
"""Returns list of corporation starbases (POSes)"""
|
|
3286
3190
|
...
|
|
3287
3191
|
|
|
3288
|
-
def GetCorporationsCorporationIdStarbasesStarbaseId(self, corporation_id: int, starbase_id: int, system_id: int, token: Token, Accept_Language:
|
|
3192
|
+
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
3193
|
"""Returns various settings and fuels of a starbase (POS)"""
|
|
3290
3194
|
...
|
|
3291
3195
|
|
|
3292
|
-
def GetCorporationsCorporationIdStructures(self, corporation_id: int, token: Token, page:
|
|
3196
|
+
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
3197
|
"""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
3198
|
...
|
|
3295
3199
|
|
|
3296
|
-
def GetCorporationsCorporationIdTitles(self, corporation_id: int, token: Token, Accept_Language:
|
|
3200
|
+
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
3201
|
"""Returns a corporation's titles"""
|
|
3298
3202
|
...
|
|
3299
3203
|
|
|
3300
|
-
def GetCorporationsNpccorps(self, Accept_Language:
|
|
3204
|
+
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
3205
|
"""Get a list of npc corporations This route expires daily at 11:05"""
|
|
3302
3206
|
...
|
|
3303
3207
|
|
|
@@ -3305,19 +3209,19 @@ class ESIClientStub:
|
|
|
3305
3209
|
Corporation: _Corporation = _Corporation()
|
|
3306
3210
|
|
|
3307
3211
|
class _Corporation_Projects:
|
|
3308
|
-
def GetCorporationsProjectsContribution(self, corporation_id: int, project_id: str, character_id: int, token: Token, If_Modified_Since:
|
|
3212
|
+
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
3213
|
"""Show your contribution to a corporation project."""
|
|
3310
3214
|
...
|
|
3311
3215
|
|
|
3312
|
-
def GetCorporationsProjectsContributors(self, corporation_id: int, project_id: str, token: Token, after:
|
|
3216
|
+
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
3217
|
"""Listing of all contributors to a corporation project."""
|
|
3314
3218
|
...
|
|
3315
3219
|
|
|
3316
|
-
def GetCorporationsProjectsDetail(self, corporation_id: int, project_id: str, token: Token, If_Modified_Since:
|
|
3220
|
+
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
3221
|
"""Get the details of a corporation project."""
|
|
3318
3222
|
...
|
|
3319
3223
|
|
|
3320
|
-
def GetCorporationsProjectsListing(self, corporation_id: int, token: Token, after:
|
|
3224
|
+
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
3225
|
"""Listing of all (active) corporation projects."""
|
|
3322
3226
|
...
|
|
3323
3227
|
|
|
@@ -3325,23 +3229,23 @@ class ESIClientStub:
|
|
|
3325
3229
|
Corporation_Projects: _Corporation_Projects = _Corporation_Projects()
|
|
3326
3230
|
|
|
3327
3231
|
class _Dogma:
|
|
3328
|
-
def GetDogmaAttributes(self, Accept_Language:
|
|
3232
|
+
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
3233
|
"""Get a list of dogma attribute ids This route expires daily at 11:05"""
|
|
3330
3234
|
...
|
|
3331
3235
|
|
|
3332
|
-
def GetDogmaAttributesAttributeId(self, attribute_id: int, Accept_Language:
|
|
3236
|
+
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
3237
|
"""Get information on a dogma attribute This route expires daily at 11:05"""
|
|
3334
3238
|
...
|
|
3335
3239
|
|
|
3336
|
-
def GetDogmaDynamicItemsTypeIdItemId(self, item_id: int, type_id: int, Accept_Language:
|
|
3240
|
+
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
3241
|
"""Returns info about a dynamic item resulting from mutation with a mutaplasmid. This route expires daily at 11:05"""
|
|
3338
3242
|
...
|
|
3339
3243
|
|
|
3340
|
-
def GetDogmaEffects(self, Accept_Language:
|
|
3244
|
+
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
3245
|
"""Get a list of dogma effect ids This route expires daily at 11:05"""
|
|
3342
3246
|
...
|
|
3343
3247
|
|
|
3344
|
-
def GetDogmaEffectsEffectId(self, effect_id: int, Accept_Language:
|
|
3248
|
+
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
3249
|
"""Get information on a dogma effect This route expires daily at 11:05"""
|
|
3346
3250
|
...
|
|
3347
3251
|
|
|
@@ -3349,35 +3253,35 @@ class ESIClientStub:
|
|
|
3349
3253
|
Dogma: _Dogma = _Dogma()
|
|
3350
3254
|
|
|
3351
3255
|
class _Faction_Warfare:
|
|
3352
|
-
def GetCharactersCharacterIdFwStats(self, character_id: int, token: Token, Accept_Language:
|
|
3256
|
+
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
3257
|
"""Statistical overview of a character involved in faction warfare This route expires daily at 11:05"""
|
|
3354
3258
|
...
|
|
3355
3259
|
|
|
3356
|
-
def GetCorporationsCorporationIdFwStats(self, corporation_id: int, token: Token, Accept_Language:
|
|
3260
|
+
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
3261
|
"""Statistics about a corporation involved in faction warfare This route expires daily at 11:05"""
|
|
3358
3262
|
...
|
|
3359
3263
|
|
|
3360
|
-
def GetFwLeaderboards(self, Accept_Language:
|
|
3264
|
+
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
3265
|
"""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
3266
|
...
|
|
3363
3267
|
|
|
3364
|
-
def GetFwLeaderboardsCharacters(self, Accept_Language:
|
|
3268
|
+
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
3269
|
"""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
3270
|
...
|
|
3367
3271
|
|
|
3368
|
-
def GetFwLeaderboardsCorporations(self, Accept_Language:
|
|
3272
|
+
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
3273
|
"""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
3274
|
...
|
|
3371
3275
|
|
|
3372
|
-
def GetFwStats(self, Accept_Language:
|
|
3276
|
+
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
3277
|
"""Statistical overviews of factions involved in faction warfare This route expires daily at 11:05"""
|
|
3374
3278
|
...
|
|
3375
3279
|
|
|
3376
|
-
def GetFwSystems(self, Accept_Language:
|
|
3280
|
+
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
3281
|
"""An overview of the current ownership of faction warfare solar systems"""
|
|
3378
3282
|
...
|
|
3379
3283
|
|
|
3380
|
-
def GetFwWars(self, Accept_Language:
|
|
3284
|
+
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
3285
|
"""Data about which NPC factions are at war This route expires daily at 11:05"""
|
|
3382
3286
|
...
|
|
3383
3287
|
|
|
@@ -3385,15 +3289,15 @@ class ESIClientStub:
|
|
|
3385
3289
|
Faction_Warfare: _Faction_Warfare = _Faction_Warfare()
|
|
3386
3290
|
|
|
3387
3291
|
class _Fittings:
|
|
3388
|
-
def DeleteCharactersCharacterIdFittingsFittingId(self, character_id: int, fitting_id: int, token: Token, Accept_Language:
|
|
3292
|
+
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
3293
|
"""Delete a fitting from a character"""
|
|
3390
3294
|
...
|
|
3391
3295
|
|
|
3392
|
-
def GetCharactersCharacterIdFittings(self, character_id: int, token: Token, Accept_Language:
|
|
3296
|
+
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
3297
|
"""Return fittings of a character"""
|
|
3394
3298
|
...
|
|
3395
3299
|
|
|
3396
|
-
def PostCharactersCharacterIdFittings(self, character_id: int, token: Token, Accept_Language:
|
|
3300
|
+
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
3301
|
"""Save a new fitting for a character"""
|
|
3398
3302
|
...
|
|
3399
3303
|
|
|
@@ -3401,59 +3305,59 @@ class ESIClientStub:
|
|
|
3401
3305
|
Fittings: _Fittings = _Fittings()
|
|
3402
3306
|
|
|
3403
3307
|
class _Fleets:
|
|
3404
|
-
def DeleteFleetsFleetIdMembersMemberId(self, fleet_id: int, member_id: int, token: Token, Accept_Language:
|
|
3308
|
+
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
3309
|
"""Kick a fleet member"""
|
|
3406
3310
|
...
|
|
3407
3311
|
|
|
3408
|
-
def DeleteFleetsFleetIdSquadsSquadId(self, fleet_id: int, squad_id: int, token: Token, Accept_Language:
|
|
3312
|
+
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
3313
|
"""Delete a fleet squad, only empty squads can be deleted"""
|
|
3410
3314
|
...
|
|
3411
3315
|
|
|
3412
|
-
def DeleteFleetsFleetIdWingsWingId(self, fleet_id: int, wing_id: int, token: Token, Accept_Language:
|
|
3316
|
+
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
3317
|
"""Delete a fleet wing, only empty wings can be deleted. The wing may contain squads, but the squads must be empty"""
|
|
3414
3318
|
...
|
|
3415
3319
|
|
|
3416
|
-
def GetCharactersCharacterIdFleet(self, character_id: int, token: Token, Accept_Language:
|
|
3320
|
+
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
3321
|
"""Return the fleet ID the character is in, if any."""
|
|
3418
3322
|
...
|
|
3419
3323
|
|
|
3420
|
-
def GetFleetsFleetId(self, fleet_id: int, token: Token, Accept_Language:
|
|
3324
|
+
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
3325
|
"""Return details about a fleet"""
|
|
3422
3326
|
...
|
|
3423
3327
|
|
|
3424
|
-
def GetFleetsFleetIdMembers(self, fleet_id: int, token: Token, Accept_Language:
|
|
3328
|
+
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
3329
|
"""Return information about fleet members"""
|
|
3426
3330
|
...
|
|
3427
3331
|
|
|
3428
|
-
def GetFleetsFleetIdWings(self, fleet_id: int, token: Token, Accept_Language:
|
|
3332
|
+
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
3333
|
"""Return information about wings in a fleet"""
|
|
3430
3334
|
...
|
|
3431
3335
|
|
|
3432
|
-
def PostFleetsFleetIdMembers(self, fleet_id: int, token: Token, Accept_Language:
|
|
3336
|
+
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
3337
|
"""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
3338
|
...
|
|
3435
3339
|
|
|
3436
|
-
def PostFleetsFleetIdWings(self, fleet_id: int, token: Token, Accept_Language:
|
|
3340
|
+
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
3341
|
"""Create a new wing in a fleet"""
|
|
3438
3342
|
...
|
|
3439
3343
|
|
|
3440
|
-
def PostFleetsFleetIdWingsWingIdSquads(self, fleet_id: int, wing_id: int, token: Token, Accept_Language:
|
|
3344
|
+
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
3345
|
"""Create a new squad in a fleet"""
|
|
3442
3346
|
...
|
|
3443
3347
|
|
|
3444
|
-
def PutFleetsFleetId(self, fleet_id: int, token: Token, Accept_Language:
|
|
3348
|
+
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
3349
|
"""Update settings about a fleet"""
|
|
3446
3350
|
...
|
|
3447
3351
|
|
|
3448
|
-
def PutFleetsFleetIdMembersMemberId(self, fleet_id: int, member_id: int, token: Token, Accept_Language:
|
|
3352
|
+
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
3353
|
"""Move a fleet member around"""
|
|
3450
3354
|
...
|
|
3451
3355
|
|
|
3452
|
-
def PutFleetsFleetIdSquadsSquadId(self, fleet_id: int, squad_id: int, token: Token, Accept_Language:
|
|
3356
|
+
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
3357
|
"""Rename a fleet squad"""
|
|
3454
3358
|
...
|
|
3455
3359
|
|
|
3456
|
-
def PutFleetsFleetIdWingsWingId(self, fleet_id: int, wing_id: int, token: Token, Accept_Language:
|
|
3360
|
+
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
3361
|
"""Rename a fleet wing"""
|
|
3458
3362
|
...
|
|
3459
3363
|
|
|
@@ -3461,7 +3365,7 @@ class ESIClientStub:
|
|
|
3461
3365
|
Fleets: _Fleets = _Fleets()
|
|
3462
3366
|
|
|
3463
3367
|
class _Incursions:
|
|
3464
|
-
def GetIncursions(self, Accept_Language:
|
|
3368
|
+
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
3369
|
"""Return a list of current incursions"""
|
|
3466
3370
|
...
|
|
3467
3371
|
|
|
@@ -3469,35 +3373,35 @@ class ESIClientStub:
|
|
|
3469
3373
|
Incursions: _Incursions = _Incursions()
|
|
3470
3374
|
|
|
3471
3375
|
class _Industry:
|
|
3472
|
-
def GetCharactersCharacterIdIndustryJobs(self, character_id: int, token: Token, include_completed:
|
|
3376
|
+
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
3377
|
"""List industry jobs placed by a character"""
|
|
3474
3378
|
...
|
|
3475
3379
|
|
|
3476
|
-
def GetCharactersCharacterIdMining(self, character_id: int, token: Token, page:
|
|
3380
|
+
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
3381
|
"""Paginated record of all mining done by a character for the past 30 days"""
|
|
3478
3382
|
...
|
|
3479
3383
|
|
|
3480
|
-
def GetCorporationCorporationIdMiningExtractions(self, corporation_id: int, token: Token, page:
|
|
3384
|
+
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
3385
|
"""Extraction timers for all moon chunks being extracted by refineries belonging to a corporation."""
|
|
3482
3386
|
...
|
|
3483
3387
|
|
|
3484
|
-
def GetCorporationCorporationIdMiningObservers(self, corporation_id: int, token: Token, page:
|
|
3388
|
+
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
3389
|
"""Paginated list of all entities capable of observing and recording mining for a corporation"""
|
|
3486
3390
|
...
|
|
3487
3391
|
|
|
3488
|
-
def GetCorporationCorporationIdMiningObserversObserverId(self, corporation_id: int, observer_id: int, token: Token, page:
|
|
3392
|
+
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
3393
|
"""Paginated record of all mining seen by an observer"""
|
|
3490
3394
|
...
|
|
3491
3395
|
|
|
3492
|
-
def GetCorporationsCorporationIdIndustryJobs(self, corporation_id: int, token: Token, include_completed:
|
|
3396
|
+
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
3397
|
"""List industry jobs run by a corporation"""
|
|
3494
3398
|
...
|
|
3495
3399
|
|
|
3496
|
-
def GetIndustryFacilities(self, Accept_Language:
|
|
3400
|
+
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
3401
|
"""Return a list of industry facilities"""
|
|
3498
3402
|
...
|
|
3499
3403
|
|
|
3500
|
-
def GetIndustrySystems(self, Accept_Language:
|
|
3404
|
+
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
3405
|
"""Return cost indices for solar systems"""
|
|
3502
3406
|
...
|
|
3503
3407
|
|
|
@@ -3505,7 +3409,7 @@ class ESIClientStub:
|
|
|
3505
3409
|
Industry: _Industry = _Industry()
|
|
3506
3410
|
|
|
3507
3411
|
class _Insurance:
|
|
3508
|
-
def GetInsurancePrices(self, Accept_Language:
|
|
3412
|
+
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
3413
|
"""Return available insurance levels for all ship types"""
|
|
3510
3414
|
...
|
|
3511
3415
|
|
|
@@ -3513,15 +3417,15 @@ class ESIClientStub:
|
|
|
3513
3417
|
Insurance: _Insurance = _Insurance()
|
|
3514
3418
|
|
|
3515
3419
|
class _Killmails:
|
|
3516
|
-
def GetCharactersCharacterIdKillmailsRecent(self, character_id: int, token: Token, page:
|
|
3420
|
+
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
3421
|
"""Return a list of a character's kills and losses going back 90 days"""
|
|
3518
3422
|
...
|
|
3519
3423
|
|
|
3520
|
-
def GetCorporationsCorporationIdKillmailsRecent(self, corporation_id: int, token: Token, page:
|
|
3424
|
+
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
3425
|
"""Get a list of a corporation's kills and losses going back 90 days"""
|
|
3522
3426
|
...
|
|
3523
3427
|
|
|
3524
|
-
def GetKillmailsKillmailIdKillmailHash(self, killmail_hash: str, killmail_id: int, Accept_Language:
|
|
3428
|
+
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
3429
|
"""Return a single killmail from its ID and hash"""
|
|
3526
3430
|
...
|
|
3527
3431
|
|
|
@@ -3529,15 +3433,15 @@ class ESIClientStub:
|
|
|
3529
3433
|
Killmails: _Killmails = _Killmails()
|
|
3530
3434
|
|
|
3531
3435
|
class _Location:
|
|
3532
|
-
def GetCharactersCharacterIdLocation(self, character_id: int, token: Token, Accept_Language:
|
|
3436
|
+
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
3437
|
"""Information about the characters current location. Returns the current solar system id, and also the current station or structure ID if applicable"""
|
|
3534
3438
|
...
|
|
3535
3439
|
|
|
3536
|
-
def GetCharactersCharacterIdOnline(self, character_id: int, token: Token, Accept_Language:
|
|
3440
|
+
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
3441
|
"""Checks if the character is currently online"""
|
|
3538
3442
|
...
|
|
3539
3443
|
|
|
3540
|
-
def GetCharactersCharacterIdShip(self, character_id: int, token: Token, Accept_Language:
|
|
3444
|
+
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
3445
|
"""Get the current ship type, name and id"""
|
|
3542
3446
|
...
|
|
3543
3447
|
|
|
@@ -3545,11 +3449,11 @@ class ESIClientStub:
|
|
|
3545
3449
|
Location: _Location = _Location()
|
|
3546
3450
|
|
|
3547
3451
|
class _Loyalty:
|
|
3548
|
-
def GetCharactersCharacterIdLoyaltyPoints(self, character_id: int, token: Token, Accept_Language:
|
|
3452
|
+
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
3453
|
"""Return a list of loyalty points for all corporations the character has worked for"""
|
|
3550
3454
|
...
|
|
3551
3455
|
|
|
3552
|
-
def GetLoyaltyStoresCorporationIdOffers(self, corporation_id: int, Accept_Language:
|
|
3456
|
+
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
3457
|
"""Return a list of offers from a specific corporation's loyalty store This route expires daily at 11:05"""
|
|
3554
3458
|
...
|
|
3555
3459
|
|
|
@@ -3557,39 +3461,39 @@ class ESIClientStub:
|
|
|
3557
3461
|
Loyalty: _Loyalty = _Loyalty()
|
|
3558
3462
|
|
|
3559
3463
|
class _Mail:
|
|
3560
|
-
def DeleteCharactersCharacterIdMailLabelsLabelId(self, character_id: int, label_id: int, token: Token, Accept_Language:
|
|
3464
|
+
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
3465
|
"""Delete a mail label"""
|
|
3562
3466
|
...
|
|
3563
3467
|
|
|
3564
|
-
def DeleteCharactersCharacterIdMailMailId(self, character_id: int, mail_id: int, token: Token, Accept_Language:
|
|
3468
|
+
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
3469
|
"""Delete a mail"""
|
|
3566
3470
|
...
|
|
3567
3471
|
|
|
3568
|
-
def GetCharactersCharacterIdMail(self, character_id: int, token: Token, labels:
|
|
3472
|
+
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
3473
|
"""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
3474
|
...
|
|
3571
3475
|
|
|
3572
|
-
def GetCharactersCharacterIdMailLabels(self, character_id: int, token: Token, Accept_Language:
|
|
3476
|
+
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
3477
|
"""Return a list of the users mail labels, unread counts for each label and a total unread count."""
|
|
3574
3478
|
...
|
|
3575
3479
|
|
|
3576
|
-
def GetCharactersCharacterIdMailLists(self, character_id: int, token: Token, Accept_Language:
|
|
3480
|
+
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
3481
|
"""Return all mailing lists that the character is subscribed to"""
|
|
3578
3482
|
...
|
|
3579
3483
|
|
|
3580
|
-
def GetCharactersCharacterIdMailMailId(self, character_id: int, mail_id: int, token: Token, Accept_Language:
|
|
3484
|
+
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
3485
|
"""Return the contents of an EVE mail"""
|
|
3582
3486
|
...
|
|
3583
3487
|
|
|
3584
|
-
def PostCharactersCharacterIdMail(self, character_id: int, token: Token, Accept_Language:
|
|
3488
|
+
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
3489
|
"""Create and send a new mail"""
|
|
3586
3490
|
...
|
|
3587
3491
|
|
|
3588
|
-
def PostCharactersCharacterIdMailLabels(self, character_id: int, token: Token, Accept_Language:
|
|
3492
|
+
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
3493
|
"""Create a mail label"""
|
|
3590
3494
|
...
|
|
3591
3495
|
|
|
3592
|
-
def PutCharactersCharacterIdMailMailId(self, character_id: int, mail_id: int, token: Token, Accept_Language:
|
|
3496
|
+
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
3497
|
"""Update metadata about a mail"""
|
|
3594
3498
|
...
|
|
3595
3499
|
|
|
@@ -3597,67 +3501,79 @@ class ESIClientStub:
|
|
|
3597
3501
|
Mail: _Mail = _Mail()
|
|
3598
3502
|
|
|
3599
3503
|
class _Market:
|
|
3600
|
-
def GetCharactersCharacterIdOrders(self, character_id: int, token: Token, Accept_Language:
|
|
3504
|
+
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
3505
|
"""List open market orders placed by a character"""
|
|
3602
3506
|
...
|
|
3603
3507
|
|
|
3604
|
-
def GetCharactersCharacterIdOrdersHistory(self, character_id: int, token: Token, page:
|
|
3508
|
+
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
3509
|
"""List cancelled and expired market orders placed by a character up to 90 days in the past."""
|
|
3606
3510
|
...
|
|
3607
3511
|
|
|
3608
|
-
def GetCorporationsCorporationIdOrders(self, corporation_id: int, token: Token, page:
|
|
3512
|
+
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
3513
|
"""List open market orders placed on behalf of a corporation"""
|
|
3610
3514
|
...
|
|
3611
3515
|
|
|
3612
|
-
def GetCorporationsCorporationIdOrdersHistory(self, corporation_id: int, token: Token, page:
|
|
3516
|
+
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
3517
|
"""List cancelled and expired market orders placed on behalf of a corporation up to 90 days in the past."""
|
|
3614
3518
|
...
|
|
3615
3519
|
|
|
3616
|
-
def GetMarketsGroups(self, Accept_Language:
|
|
3520
|
+
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
3521
|
"""Get a list of item groups This route expires daily at 11:05"""
|
|
3618
3522
|
...
|
|
3619
3523
|
|
|
3620
|
-
def GetMarketsGroupsMarketGroupId(self, market_group_id: int, Accept_Language:
|
|
3524
|
+
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
3525
|
"""Get information on an item group This route expires daily at 11:05"""
|
|
3622
3526
|
...
|
|
3623
3527
|
|
|
3624
|
-
def GetMarketsPrices(self, Accept_Language:
|
|
3528
|
+
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
3529
|
"""Return a list of prices"""
|
|
3626
3530
|
...
|
|
3627
3531
|
|
|
3628
|
-
def GetMarketsRegionIdHistory(self, region_id: int, type_id: int, Accept_Language:
|
|
3532
|
+
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
3533
|
"""Return a list of historical market statistics for the specified type in a region This route expires daily at 11:05"""
|
|
3630
3534
|
...
|
|
3631
3535
|
|
|
3632
|
-
def GetMarketsRegionIdOrders(self, order_type: str, region_id: int, page:
|
|
3536
|
+
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
3537
|
"""Return a list of orders in a region"""
|
|
3634
3538
|
...
|
|
3635
3539
|
|
|
3636
|
-
def GetMarketsRegionIdTypes(self, region_id: int, page:
|
|
3540
|
+
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
3541
|
"""Return a list of type IDs that have active orders in the region, for efficient market indexing."""
|
|
3638
3542
|
...
|
|
3639
3543
|
|
|
3640
|
-
def GetMarketsStructuresStructureId(self, structure_id: int, token: Token, page:
|
|
3544
|
+
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
3545
|
"""Return all orders in a structure"""
|
|
3642
3546
|
...
|
|
3643
3547
|
|
|
3644
3548
|
|
|
3645
3549
|
Market: _Market = _Market()
|
|
3646
3550
|
|
|
3551
|
+
class _Meta:
|
|
3552
|
+
def GetMetaChangelog(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetMetaChangelogOperation:
|
|
3553
|
+
"""Get the changelog of this API."""
|
|
3554
|
+
...
|
|
3555
|
+
|
|
3556
|
+
def GetMetaCompatibilityDates(self, Accept_Language: str | None = ..., If_None_Match: str | None = ..., X_Compatibility_Date: str | None = ..., X_Tenant: str | None = ..., **kwargs: Any) -> GetMetaCompatibilityDatesOperation:
|
|
3557
|
+
"""Get a list of compatibility dates."""
|
|
3558
|
+
...
|
|
3559
|
+
|
|
3560
|
+
|
|
3561
|
+
Meta: _Meta = _Meta()
|
|
3562
|
+
|
|
3647
3563
|
class _Planetary_Interaction:
|
|
3648
|
-
def GetCharactersCharacterIdPlanets(self, character_id: int, token: Token, Accept_Language:
|
|
3564
|
+
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
3565
|
"""Returns a list of all planetary colonies owned by a character."""
|
|
3650
3566
|
...
|
|
3651
3567
|
|
|
3652
|
-
def GetCharactersCharacterIdPlanetsPlanetId(self, character_id: int, planet_id: int, token: Token, Accept_Language:
|
|
3568
|
+
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
3569
|
"""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
3570
|
...
|
|
3655
3571
|
|
|
3656
|
-
def GetCorporationsCorporationIdCustomsOffices(self, corporation_id: int, token: Token, page:
|
|
3572
|
+
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
3573
|
"""List customs offices owned by a corporation"""
|
|
3658
3574
|
...
|
|
3659
3575
|
|
|
3660
|
-
def GetUniverseSchematicsSchematicId(self, schematic_id: int, Accept_Language:
|
|
3576
|
+
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
3577
|
"""Get information on a planetary factory schematic"""
|
|
3662
3578
|
...
|
|
3663
3579
|
|
|
@@ -3665,7 +3581,7 @@ class ESIClientStub:
|
|
|
3665
3581
|
Planetary_Interaction: _Planetary_Interaction = _Planetary_Interaction()
|
|
3666
3582
|
|
|
3667
3583
|
class _Routes:
|
|
3668
|
-
def GetRouteOriginDestination(self, destination: int, origin: int, avoid:
|
|
3584
|
+
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
3585
|
"""Get the systems between origin and destination"""
|
|
3670
3586
|
...
|
|
3671
3587
|
|
|
@@ -3673,7 +3589,7 @@ class ESIClientStub:
|
|
|
3673
3589
|
Routes: _Routes = _Routes()
|
|
3674
3590
|
|
|
3675
3591
|
class _Search:
|
|
3676
|
-
def GetCharactersCharacterIdSearch(self, categories: list[Any], character_id: int, search: str, token: Token, strict:
|
|
3592
|
+
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
3593
|
"""Search for entities that match a given sub-string."""
|
|
3678
3594
|
...
|
|
3679
3595
|
|
|
@@ -3681,15 +3597,15 @@ class ESIClientStub:
|
|
|
3681
3597
|
Search: _Search = _Search()
|
|
3682
3598
|
|
|
3683
3599
|
class _Skills:
|
|
3684
|
-
def GetCharactersCharacterIdAttributes(self, character_id: int, token: Token, Accept_Language:
|
|
3600
|
+
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
3601
|
"""Return attributes of a character"""
|
|
3686
3602
|
...
|
|
3687
3603
|
|
|
3688
|
-
def GetCharactersCharacterIdSkillqueue(self, character_id: int, token: Token, Accept_Language:
|
|
3604
|
+
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
3605
|
"""List the configured skill queue for the given character"""
|
|
3690
3606
|
...
|
|
3691
3607
|
|
|
3692
|
-
def GetCharactersCharacterIdSkills(self, character_id: int, token: Token, Accept_Language:
|
|
3608
|
+
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
3609
|
"""List all trained skills for the given character"""
|
|
3694
3610
|
...
|
|
3695
3611
|
|
|
@@ -3697,15 +3613,15 @@ class ESIClientStub:
|
|
|
3697
3613
|
Skills: _Skills = _Skills()
|
|
3698
3614
|
|
|
3699
3615
|
class _Sovereignty:
|
|
3700
|
-
def GetSovereigntyCampaigns(self, Accept_Language:
|
|
3616
|
+
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
3617
|
"""Shows sovereignty data for campaigns."""
|
|
3702
3618
|
...
|
|
3703
3619
|
|
|
3704
|
-
def GetSovereigntyMap(self, Accept_Language:
|
|
3620
|
+
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
3621
|
"""Shows sovereignty information for solar systems"""
|
|
3706
3622
|
...
|
|
3707
3623
|
|
|
3708
|
-
def GetSovereigntyStructures(self, Accept_Language:
|
|
3624
|
+
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
3625
|
"""Shows sovereignty data for structures."""
|
|
3710
3626
|
...
|
|
3711
3627
|
|
|
@@ -3713,7 +3629,7 @@ class ESIClientStub:
|
|
|
3713
3629
|
Sovereignty: _Sovereignty = _Sovereignty()
|
|
3714
3630
|
|
|
3715
3631
|
class _Status:
|
|
3716
|
-
def GetStatus(self, Accept_Language:
|
|
3632
|
+
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
3633
|
"""EVE Server status"""
|
|
3718
3634
|
...
|
|
3719
3635
|
|
|
@@ -3721,123 +3637,123 @@ class ESIClientStub:
|
|
|
3721
3637
|
Status: _Status = _Status()
|
|
3722
3638
|
|
|
3723
3639
|
class _Universe:
|
|
3724
|
-
def GetUniverseAncestries(self, Accept_Language:
|
|
3640
|
+
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
3641
|
"""Get all character ancestries This route expires daily at 11:05"""
|
|
3726
3642
|
...
|
|
3727
3643
|
|
|
3728
|
-
def GetUniverseAsteroidBeltsAsteroidBeltId(self, asteroid_belt_id: int, Accept_Language:
|
|
3644
|
+
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
3645
|
"""Get information on an asteroid belt This route expires daily at 11:05"""
|
|
3730
3646
|
...
|
|
3731
3647
|
|
|
3732
|
-
def GetUniverseBloodlines(self, Accept_Language:
|
|
3648
|
+
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
3649
|
"""Get a list of bloodlines This route expires daily at 11:05"""
|
|
3734
3650
|
...
|
|
3735
3651
|
|
|
3736
|
-
def GetUniverseCategories(self, Accept_Language:
|
|
3652
|
+
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
3653
|
"""Get a list of item categories This route expires daily at 11:05"""
|
|
3738
3654
|
...
|
|
3739
3655
|
|
|
3740
|
-
def GetUniverseCategoriesCategoryId(self, category_id: int, Accept_Language:
|
|
3656
|
+
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
3657
|
"""Get information of an item category This route expires daily at 11:05"""
|
|
3742
3658
|
...
|
|
3743
3659
|
|
|
3744
|
-
def GetUniverseConstellations(self, Accept_Language:
|
|
3660
|
+
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
3661
|
"""Get a list of constellations This route expires daily at 11:05"""
|
|
3746
3662
|
...
|
|
3747
3663
|
|
|
3748
|
-
def GetUniverseConstellationsConstellationId(self, constellation_id: int, Accept_Language:
|
|
3664
|
+
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
3665
|
"""Get information on a constellation This route expires daily at 11:05"""
|
|
3750
3666
|
...
|
|
3751
3667
|
|
|
3752
|
-
def GetUniverseFactions(self, Accept_Language:
|
|
3668
|
+
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
3669
|
"""Get a list of factions This route expires daily at 11:05"""
|
|
3754
3670
|
...
|
|
3755
3671
|
|
|
3756
|
-
def GetUniverseGraphics(self, Accept_Language:
|
|
3672
|
+
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
3673
|
"""Get a list of graphics This route expires daily at 11:05"""
|
|
3758
3674
|
...
|
|
3759
3675
|
|
|
3760
|
-
def GetUniverseGraphicsGraphicId(self, graphic_id: int, Accept_Language:
|
|
3676
|
+
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
3677
|
"""Get information on a graphic This route expires daily at 11:05"""
|
|
3762
3678
|
...
|
|
3763
3679
|
|
|
3764
|
-
def GetUniverseGroups(self, page:
|
|
3680
|
+
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
3681
|
"""Get a list of item groups This route expires daily at 11:05"""
|
|
3766
3682
|
...
|
|
3767
3683
|
|
|
3768
|
-
def GetUniverseGroupsGroupId(self, group_id: int, Accept_Language:
|
|
3684
|
+
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
3685
|
"""Get information on an item group This route expires daily at 11:05"""
|
|
3770
3686
|
...
|
|
3771
3687
|
|
|
3772
|
-
def GetUniverseMoonsMoonId(self, moon_id: int, Accept_Language:
|
|
3688
|
+
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
3689
|
"""Get information on a moon This route expires daily at 11:05"""
|
|
3774
3690
|
...
|
|
3775
3691
|
|
|
3776
|
-
def GetUniversePlanetsPlanetId(self, planet_id: int, Accept_Language:
|
|
3692
|
+
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
3693
|
"""Get information on a planet This route expires daily at 11:05"""
|
|
3778
3694
|
...
|
|
3779
3695
|
|
|
3780
|
-
def GetUniverseRaces(self, Accept_Language:
|
|
3696
|
+
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
3697
|
"""Get a list of character races This route expires daily at 11:05"""
|
|
3782
3698
|
...
|
|
3783
3699
|
|
|
3784
|
-
def GetUniverseRegions(self, Accept_Language:
|
|
3700
|
+
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
3701
|
"""Get a list of regions This route expires daily at 11:05"""
|
|
3786
3702
|
...
|
|
3787
3703
|
|
|
3788
|
-
def GetUniverseRegionsRegionId(self, region_id: int, Accept_Language:
|
|
3704
|
+
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
3705
|
"""Get information on a region This route expires daily at 11:05"""
|
|
3790
3706
|
...
|
|
3791
3707
|
|
|
3792
|
-
def GetUniverseStargatesStargateId(self, stargate_id: int, Accept_Language:
|
|
3708
|
+
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
3709
|
"""Get information on a stargate This route expires daily at 11:05"""
|
|
3794
3710
|
...
|
|
3795
3711
|
|
|
3796
|
-
def GetUniverseStarsStarId(self, star_id: int, Accept_Language:
|
|
3712
|
+
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
3713
|
"""Get information on a star This route expires daily at 11:05"""
|
|
3798
3714
|
...
|
|
3799
3715
|
|
|
3800
|
-
def GetUniverseStationsStationId(self, station_id: int, Accept_Language:
|
|
3716
|
+
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
3717
|
"""Get information on a station This route expires daily at 11:05"""
|
|
3802
3718
|
...
|
|
3803
3719
|
|
|
3804
|
-
def GetUniverseStructures(self, filter:
|
|
3720
|
+
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
3721
|
"""List all public structures"""
|
|
3806
3722
|
...
|
|
3807
3723
|
|
|
3808
|
-
def GetUniverseStructuresStructureId(self, structure_id: int, token: Token, Accept_Language:
|
|
3724
|
+
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
3725
|
"""Returns information on requested structure if you are on the ACL. Otherwise, returns "Forbidden" for all inputs."""
|
|
3810
3726
|
...
|
|
3811
3727
|
|
|
3812
|
-
def GetUniverseSystemJumps(self, Accept_Language:
|
|
3728
|
+
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
3729
|
"""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
3730
|
...
|
|
3815
3731
|
|
|
3816
|
-
def GetUniverseSystemKills(self, Accept_Language:
|
|
3732
|
+
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
3733
|
"""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
3734
|
...
|
|
3819
3735
|
|
|
3820
|
-
def GetUniverseSystems(self, Accept_Language:
|
|
3736
|
+
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
3737
|
"""Get a list of solar systems This route expires daily at 11:05"""
|
|
3822
3738
|
...
|
|
3823
3739
|
|
|
3824
|
-
def GetUniverseSystemsSystemId(self, system_id: int, Accept_Language:
|
|
3740
|
+
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
3741
|
"""Get information on a solar system. This route expires daily at 11:05"""
|
|
3826
3742
|
...
|
|
3827
3743
|
|
|
3828
|
-
def GetUniverseTypes(self, page:
|
|
3744
|
+
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
3745
|
"""Get a list of type ids This route expires daily at 11:05"""
|
|
3830
3746
|
...
|
|
3831
3747
|
|
|
3832
|
-
def GetUniverseTypesTypeId(self, type_id: int, Accept_Language:
|
|
3748
|
+
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
3749
|
"""Get information on a type This route expires daily at 11:05"""
|
|
3834
3750
|
...
|
|
3835
3751
|
|
|
3836
|
-
def PostUniverseIds(self,
|
|
3752
|
+
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
3753
|
"""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
3754
|
...
|
|
3839
3755
|
|
|
3840
|
-
def PostUniverseNames(self,
|
|
3756
|
+
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
3757
|
"""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
3758
|
...
|
|
3843
3759
|
|
|
@@ -3845,23 +3761,23 @@ class ESIClientStub:
|
|
|
3845
3761
|
Universe: _Universe = _Universe()
|
|
3846
3762
|
|
|
3847
3763
|
class _User_Interface:
|
|
3848
|
-
def PostUiAutopilotWaypoint(self, add_to_beginning: bool, clear_other_waypoints: bool, destination_id: int, token: Token, Accept_Language:
|
|
3764
|
+
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
3765
|
"""Set a solar system as autopilot waypoint"""
|
|
3850
3766
|
...
|
|
3851
3767
|
|
|
3852
|
-
def PostUiOpenwindowContract(self, contract_id: int, token: Token, Accept_Language:
|
|
3768
|
+
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
3769
|
"""Open the contract window inside the client"""
|
|
3854
3770
|
...
|
|
3855
3771
|
|
|
3856
|
-
def PostUiOpenwindowInformation(self, target_id: int, token: Token, Accept_Language:
|
|
3772
|
+
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
3773
|
"""Open the information window for a character, corporation or alliance inside the client"""
|
|
3858
3774
|
...
|
|
3859
3775
|
|
|
3860
|
-
def PostUiOpenwindowMarketdetails(self, type_id: int, token: Token, Accept_Language:
|
|
3776
|
+
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
3777
|
"""Open the market details window for a specific typeID inside the client"""
|
|
3862
3778
|
...
|
|
3863
3779
|
|
|
3864
|
-
def PostUiOpenwindowNewmail(self, token: Token, Accept_Language:
|
|
3780
|
+
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
3781
|
"""Open the New Mail window, according to settings from the request if applicable"""
|
|
3866
3782
|
...
|
|
3867
3783
|
|
|
@@ -3869,27 +3785,27 @@ class ESIClientStub:
|
|
|
3869
3785
|
User_Interface: _User_Interface = _User_Interface()
|
|
3870
3786
|
|
|
3871
3787
|
class _Wallet:
|
|
3872
|
-
def GetCharactersCharacterIdWallet(self, character_id: int, token: Token, Accept_Language:
|
|
3788
|
+
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
3789
|
"""Returns a character's wallet balance"""
|
|
3874
3790
|
...
|
|
3875
3791
|
|
|
3876
|
-
def GetCharactersCharacterIdWalletJournal(self, character_id: int, token: Token, page:
|
|
3792
|
+
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
3793
|
"""Retrieve the given character's wallet journal going 30 days back"""
|
|
3878
3794
|
...
|
|
3879
3795
|
|
|
3880
|
-
def GetCharactersCharacterIdWalletTransactions(self, character_id: int, token: Token, from_id:
|
|
3796
|
+
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
3797
|
"""Get wallet transactions of a character"""
|
|
3882
3798
|
...
|
|
3883
3799
|
|
|
3884
|
-
def GetCorporationsCorporationIdWallets(self, corporation_id: int, token: Token, Accept_Language:
|
|
3800
|
+
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
3801
|
"""Get a corporation's wallets"""
|
|
3886
3802
|
...
|
|
3887
3803
|
|
|
3888
|
-
def GetCorporationsCorporationIdWalletsDivisionJournal(self, corporation_id: int, division: int, token: Token, page:
|
|
3804
|
+
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
3805
|
"""Retrieve the given corporation's wallet journal for the given division going 30 days back"""
|
|
3890
3806
|
...
|
|
3891
3807
|
|
|
3892
|
-
def GetCorporationsCorporationIdWalletsDivisionTransactions(self, corporation_id: int, division: int, token: Token, from_id:
|
|
3808
|
+
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
3809
|
"""Get wallet transactions of a corporation"""
|
|
3894
3810
|
...
|
|
3895
3811
|
|
|
@@ -3897,15 +3813,15 @@ class ESIClientStub:
|
|
|
3897
3813
|
Wallet: _Wallet = _Wallet()
|
|
3898
3814
|
|
|
3899
3815
|
class _Wars:
|
|
3900
|
-
def GetWars(self, max_war_id:
|
|
3816
|
+
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
3817
|
"""Return a list of wars"""
|
|
3902
3818
|
...
|
|
3903
3819
|
|
|
3904
|
-
def GetWarsWarId(self, war_id: int, Accept_Language:
|
|
3820
|
+
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
3821
|
"""Return details about a war"""
|
|
3906
3822
|
...
|
|
3907
3823
|
|
|
3908
|
-
def GetWarsWarIdKillmails(self, war_id: int, page:
|
|
3824
|
+
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
3825
|
"""Return a list of kills related to a war"""
|
|
3910
3826
|
...
|
|
3911
3827
|
|