django-esi 8.0.0a2__py3-none-any.whl → 8.0.0a4__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.0a2.dist-info → django_esi-8.0.0a4.dist-info}/METADATA +1 -1
- {django_esi-8.0.0a2.dist-info → django_esi-8.0.0a4.dist-info}/RECORD +41 -29
- esi/__init__.py +2 -2
- esi/aiopenapi3/plugins.py +34 -2
- esi/exceptions.py +29 -0
- esi/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- esi/locale/cs_CZ/LC_MESSAGES/django.po +53 -0
- esi/locale/de/LC_MESSAGES/django.mo +0 -0
- esi/locale/de/LC_MESSAGES/django.po +10 -9
- esi/locale/en/LC_MESSAGES/django.mo +0 -0
- esi/locale/en/LC_MESSAGES/django.po +5 -5
- esi/locale/es/LC_MESSAGES/django.mo +0 -0
- esi/locale/es/LC_MESSAGES/django.po +12 -10
- esi/locale/fr_FR/LC_MESSAGES/django.mo +0 -0
- esi/locale/fr_FR/LC_MESSAGES/django.po +18 -10
- esi/locale/it_IT/LC_MESSAGES/django.mo +0 -0
- esi/locale/it_IT/LC_MESSAGES/django.po +12 -10
- esi/locale/ja/LC_MESSAGES/django.mo +0 -0
- esi/locale/ja/LC_MESSAGES/django.po +10 -9
- esi/locale/ko_KR/LC_MESSAGES/django.mo +0 -0
- esi/locale/ko_KR/LC_MESSAGES/django.po +10 -9
- esi/locale/nl_NL/LC_MESSAGES/django.mo +0 -0
- esi/locale/nl_NL/LC_MESSAGES/django.po +53 -0
- esi/locale/pl_PL/LC_MESSAGES/django.mo +0 -0
- esi/locale/pl_PL/LC_MESSAGES/django.po +53 -0
- esi/locale/ru/LC_MESSAGES/django.mo +0 -0
- esi/locale/ru/LC_MESSAGES/django.po +18 -14
- esi/locale/sk/LC_MESSAGES/django.mo +0 -0
- esi/locale/sk/LC_MESSAGES/django.po +55 -0
- esi/locale/uk/LC_MESSAGES/django.mo +0 -0
- esi/locale/uk/LC_MESSAGES/django.po +57 -0
- esi/locale/zh_Hans/LC_MESSAGES/django.mo +0 -0
- esi/locale/zh_Hans/LC_MESSAGES/django.po +10 -9
- esi/management/commands/generate_esi_stubs.py +11 -31
- esi/models.py +1 -1
- esi/openapi_clients.py +236 -59
- esi/stubs.pyi +426 -384
- esi/tests/test_openapi.json +264 -0
- esi/tests/test_openapi.py +261 -0
- {django_esi-8.0.0a2.dist-info → django_esi-8.0.0a4.dist-info}/WHEEL +0 -0
- {django_esi-8.0.0a2.dist-info → django_esi-8.0.0a4.dist-info}/licenses/LICENSE +0 -0
esi/stubs.pyi
CHANGED
|
@@ -8,11 +8,11 @@ from esi.models import Token
|
|
|
8
8
|
|
|
9
9
|
class GetAlliancesOperation(EsiOperation):
|
|
10
10
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
11
|
-
def result(self,
|
|
11
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
12
12
|
"""List all active player alliances"""
|
|
13
13
|
...
|
|
14
14
|
|
|
15
|
-
def results(self,
|
|
15
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
16
16
|
"""List all active player alliances"""
|
|
17
17
|
...
|
|
18
18
|
|
|
@@ -23,11 +23,11 @@ class GetAlliancesOperation(EsiOperation):
|
|
|
23
23
|
|
|
24
24
|
class GetAlliancesAllianceIdOperation(EsiOperation):
|
|
25
25
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
26
|
-
def result(self,
|
|
26
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
27
27
|
"""Public information about an alliance"""
|
|
28
28
|
...
|
|
29
29
|
|
|
30
|
-
def results(self,
|
|
30
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
31
31
|
"""Public information about an alliance"""
|
|
32
32
|
...
|
|
33
33
|
|
|
@@ -38,11 +38,11 @@ class GetAlliancesAllianceIdOperation(EsiOperation):
|
|
|
38
38
|
|
|
39
39
|
class GetAlliancesAllianceIdCorporationsOperation(EsiOperation):
|
|
40
40
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
41
|
-
def result(self,
|
|
41
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
42
42
|
"""List all current member corporations of an alliance"""
|
|
43
43
|
...
|
|
44
44
|
|
|
45
|
-
def results(self,
|
|
45
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
46
46
|
"""List all current member corporations of an alliance"""
|
|
47
47
|
...
|
|
48
48
|
|
|
@@ -53,11 +53,11 @@ class GetAlliancesAllianceIdCorporationsOperation(EsiOperation):
|
|
|
53
53
|
|
|
54
54
|
class GetAlliancesAllianceIdIconsOperation(EsiOperation):
|
|
55
55
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
56
|
-
def result(self,
|
|
56
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
57
57
|
"""Get the icon urls for a alliance This route expires daily at 11:05"""
|
|
58
58
|
...
|
|
59
59
|
|
|
60
|
-
def results(self,
|
|
60
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
61
61
|
"""Get the icon urls for a alliance This route expires daily at 11:05"""
|
|
62
62
|
...
|
|
63
63
|
|
|
@@ -68,11 +68,11 @@ class GetAlliancesAllianceIdIconsOperation(EsiOperation):
|
|
|
68
68
|
|
|
69
69
|
class GetCharactersCharacterIdAssetsOperation(EsiOperation):
|
|
70
70
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
71
|
-
def result(self,
|
|
71
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
72
72
|
"""Return a list of the characters assets"""
|
|
73
73
|
...
|
|
74
74
|
|
|
75
|
-
def results(self,
|
|
75
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
76
76
|
"""Return a list of the characters assets"""
|
|
77
77
|
...
|
|
78
78
|
|
|
@@ -83,11 +83,11 @@ class GetCharactersCharacterIdAssetsOperation(EsiOperation):
|
|
|
83
83
|
|
|
84
84
|
class GetCorporationsCorporationIdAssetsOperation(EsiOperation):
|
|
85
85
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
86
|
-
def result(self,
|
|
86
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
87
87
|
"""Return a list of the corporation assets"""
|
|
88
88
|
...
|
|
89
89
|
|
|
90
|
-
def results(self,
|
|
90
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
91
91
|
"""Return a list of the corporation assets"""
|
|
92
92
|
...
|
|
93
93
|
|
|
@@ -98,11 +98,11 @@ class GetCorporationsCorporationIdAssetsOperation(EsiOperation):
|
|
|
98
98
|
|
|
99
99
|
class PostCharactersCharacterIdAssetsLocationsOperation(EsiOperation):
|
|
100
100
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
101
|
-
def result(self,
|
|
101
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: 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,
|
|
105
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: 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
|
|
|
@@ -113,11 +113,11 @@ class PostCharactersCharacterIdAssetsLocationsOperation(EsiOperation):
|
|
|
113
113
|
|
|
114
114
|
class PostCharactersCharacterIdAssetsNamesOperation(EsiOperation):
|
|
115
115
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
116
|
-
def result(self,
|
|
116
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: 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,
|
|
120
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: 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
|
|
|
@@ -128,11 +128,11 @@ class PostCharactersCharacterIdAssetsNamesOperation(EsiOperation):
|
|
|
128
128
|
|
|
129
129
|
class PostCorporationsCorporationIdAssetsLocationsOperation(EsiOperation):
|
|
130
130
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
131
|
-
def result(self,
|
|
131
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: 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,
|
|
135
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: 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
|
|
|
@@ -143,11 +143,11 @@ class PostCorporationsCorporationIdAssetsLocationsOperation(EsiOperation):
|
|
|
143
143
|
|
|
144
144
|
class PostCorporationsCorporationIdAssetsNamesOperation(EsiOperation):
|
|
145
145
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
146
|
-
def result(self,
|
|
146
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: 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,
|
|
150
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: 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
|
|
|
@@ -158,11 +158,11 @@ class PostCorporationsCorporationIdAssetsNamesOperation(EsiOperation):
|
|
|
158
158
|
|
|
159
159
|
class GetCharactersCharacterIdCalendarOperation(EsiOperation):
|
|
160
160
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
161
|
-
def result(self,
|
|
161
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
162
162
|
"""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"""
|
|
163
163
|
...
|
|
164
164
|
|
|
165
|
-
def results(self,
|
|
165
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
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
|
|
|
@@ -173,11 +173,11 @@ class GetCharactersCharacterIdCalendarOperation(EsiOperation):
|
|
|
173
173
|
|
|
174
174
|
class GetCharactersCharacterIdCalendarEventIdOperation(EsiOperation):
|
|
175
175
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
176
|
-
def result(self,
|
|
176
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
177
177
|
"""Get all the information for a specific event"""
|
|
178
178
|
...
|
|
179
179
|
|
|
180
|
-
def results(self,
|
|
180
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
181
181
|
"""Get all the information for a specific event"""
|
|
182
182
|
...
|
|
183
183
|
|
|
@@ -188,11 +188,11 @@ class GetCharactersCharacterIdCalendarEventIdOperation(EsiOperation):
|
|
|
188
188
|
|
|
189
189
|
class GetCharactersCharacterIdCalendarEventIdAttendeesOperation(EsiOperation):
|
|
190
190
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
191
|
-
def result(self,
|
|
191
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
192
192
|
"""Get all invited attendees for a given event"""
|
|
193
193
|
...
|
|
194
194
|
|
|
195
|
-
def results(self,
|
|
195
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
196
196
|
"""Get all invited attendees for a given event"""
|
|
197
197
|
...
|
|
198
198
|
|
|
@@ -203,17 +203,17 @@ class GetCharactersCharacterIdCalendarEventIdAttendeesOperation(EsiOperation):
|
|
|
203
203
|
|
|
204
204
|
class PutCharactersCharacterIdCalendarEventIdOperation(EsiOperation):
|
|
205
205
|
"""EsiOperation, use result()"""
|
|
206
|
-
def result(self,
|
|
206
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> None:
|
|
207
207
|
"""Set your response status to an event"""
|
|
208
208
|
...
|
|
209
209
|
|
|
210
210
|
class GetCharactersCharacterIdOperation(EsiOperation):
|
|
211
211
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
212
|
-
def result(self,
|
|
212
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
213
213
|
"""Public information about a character"""
|
|
214
214
|
...
|
|
215
215
|
|
|
216
|
-
def results(self,
|
|
216
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
217
217
|
"""Public information about a character"""
|
|
218
218
|
...
|
|
219
219
|
|
|
@@ -224,11 +224,11 @@ class GetCharactersCharacterIdOperation(EsiOperation):
|
|
|
224
224
|
|
|
225
225
|
class GetCharactersCharacterIdAgentsResearchOperation(EsiOperation):
|
|
226
226
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
227
|
-
def result(self,
|
|
227
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
228
228
|
"""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)"""
|
|
229
229
|
...
|
|
230
230
|
|
|
231
|
-
def results(self,
|
|
231
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
232
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)"""
|
|
233
233
|
...
|
|
234
234
|
|
|
@@ -239,11 +239,11 @@ class GetCharactersCharacterIdAgentsResearchOperation(EsiOperation):
|
|
|
239
239
|
|
|
240
240
|
class GetCharactersCharacterIdBlueprintsOperation(EsiOperation):
|
|
241
241
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
242
|
-
def result(self,
|
|
242
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
243
243
|
"""Return a list of blueprints the character owns"""
|
|
244
244
|
...
|
|
245
245
|
|
|
246
|
-
def results(self,
|
|
246
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
247
247
|
"""Return a list of blueprints the character owns"""
|
|
248
248
|
...
|
|
249
249
|
|
|
@@ -254,11 +254,11 @@ class GetCharactersCharacterIdBlueprintsOperation(EsiOperation):
|
|
|
254
254
|
|
|
255
255
|
class GetCharactersCharacterIdCorporationhistoryOperation(EsiOperation):
|
|
256
256
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
257
|
-
def result(self,
|
|
257
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
258
258
|
"""Get a list of all the corporations a character has been a member of"""
|
|
259
259
|
...
|
|
260
260
|
|
|
261
|
-
def results(self,
|
|
261
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
262
262
|
"""Get a list of all the corporations a character has been a member of"""
|
|
263
263
|
...
|
|
264
264
|
|
|
@@ -269,11 +269,11 @@ class GetCharactersCharacterIdCorporationhistoryOperation(EsiOperation):
|
|
|
269
269
|
|
|
270
270
|
class GetCharactersCharacterIdFatigueOperation(EsiOperation):
|
|
271
271
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
272
|
-
def result(self,
|
|
272
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
273
273
|
"""Return a character's jump activation and fatigue information"""
|
|
274
274
|
...
|
|
275
275
|
|
|
276
|
-
def results(self,
|
|
276
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
277
277
|
"""Return a character's jump activation and fatigue information"""
|
|
278
278
|
...
|
|
279
279
|
|
|
@@ -284,11 +284,11 @@ class GetCharactersCharacterIdFatigueOperation(EsiOperation):
|
|
|
284
284
|
|
|
285
285
|
class GetCharactersCharacterIdMedalsOperation(EsiOperation):
|
|
286
286
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
287
|
-
def result(self,
|
|
287
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
288
288
|
"""Return a list of medals the character has"""
|
|
289
289
|
...
|
|
290
290
|
|
|
291
|
-
def results(self,
|
|
291
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
292
292
|
"""Return a list of medals the character has"""
|
|
293
293
|
...
|
|
294
294
|
|
|
@@ -299,11 +299,11 @@ class GetCharactersCharacterIdMedalsOperation(EsiOperation):
|
|
|
299
299
|
|
|
300
300
|
class GetCharactersCharacterIdNotificationsOperation(EsiOperation):
|
|
301
301
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
302
|
-
def result(self,
|
|
302
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
303
303
|
"""Return character notifications"""
|
|
304
304
|
...
|
|
305
305
|
|
|
306
|
-
def results(self,
|
|
306
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
307
307
|
"""Return character notifications"""
|
|
308
308
|
...
|
|
309
309
|
|
|
@@ -314,11 +314,11 @@ class GetCharactersCharacterIdNotificationsOperation(EsiOperation):
|
|
|
314
314
|
|
|
315
315
|
class GetCharactersCharacterIdNotificationsContactsOperation(EsiOperation):
|
|
316
316
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
317
|
-
def result(self,
|
|
317
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
318
318
|
"""Return notifications about having been added to someone's contact list"""
|
|
319
319
|
...
|
|
320
320
|
|
|
321
|
-
def results(self,
|
|
321
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
322
322
|
"""Return notifications about having been added to someone's contact list"""
|
|
323
323
|
...
|
|
324
324
|
|
|
@@ -329,11 +329,11 @@ class GetCharactersCharacterIdNotificationsContactsOperation(EsiOperation):
|
|
|
329
329
|
|
|
330
330
|
class GetCharactersCharacterIdPortraitOperation(EsiOperation):
|
|
331
331
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
332
|
-
def result(self,
|
|
332
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
333
333
|
"""Get portrait urls for a character This route expires daily at 11:05"""
|
|
334
334
|
...
|
|
335
335
|
|
|
336
|
-
def results(self,
|
|
336
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
337
337
|
"""Get portrait urls for a character This route expires daily at 11:05"""
|
|
338
338
|
...
|
|
339
339
|
|
|
@@ -344,11 +344,11 @@ class GetCharactersCharacterIdPortraitOperation(EsiOperation):
|
|
|
344
344
|
|
|
345
345
|
class GetCharactersCharacterIdRolesOperation(EsiOperation):
|
|
346
346
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
347
|
-
def result(self,
|
|
347
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
348
348
|
"""Returns a character's corporation roles"""
|
|
349
349
|
...
|
|
350
350
|
|
|
351
|
-
def results(self,
|
|
351
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
352
352
|
"""Returns a character's corporation roles"""
|
|
353
353
|
...
|
|
354
354
|
|
|
@@ -359,11 +359,11 @@ class GetCharactersCharacterIdRolesOperation(EsiOperation):
|
|
|
359
359
|
|
|
360
360
|
class GetCharactersCharacterIdStandingsOperation(EsiOperation):
|
|
361
361
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
362
|
-
def result(self,
|
|
362
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
363
363
|
"""Return character standings from agents, NPC corporations, and factions"""
|
|
364
364
|
...
|
|
365
365
|
|
|
366
|
-
def results(self,
|
|
366
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
367
367
|
"""Return character standings from agents, NPC corporations, and factions"""
|
|
368
368
|
...
|
|
369
369
|
|
|
@@ -374,11 +374,11 @@ class GetCharactersCharacterIdStandingsOperation(EsiOperation):
|
|
|
374
374
|
|
|
375
375
|
class GetCharactersCharacterIdTitlesOperation(EsiOperation):
|
|
376
376
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
377
|
-
def result(self,
|
|
377
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
378
378
|
"""Returns a character's titles"""
|
|
379
379
|
...
|
|
380
380
|
|
|
381
|
-
def results(self,
|
|
381
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
382
382
|
"""Returns a character's titles"""
|
|
383
383
|
...
|
|
384
384
|
|
|
@@ -389,11 +389,11 @@ class GetCharactersCharacterIdTitlesOperation(EsiOperation):
|
|
|
389
389
|
|
|
390
390
|
class PostCharactersAffiliationOperation(EsiOperation):
|
|
391
391
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
392
|
-
def result(self,
|
|
392
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> Any:
|
|
393
393
|
"""Bulk lookup of character IDs to corporation, alliance and faction"""
|
|
394
394
|
...
|
|
395
395
|
|
|
396
|
-
def results(self,
|
|
396
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
397
397
|
"""Bulk lookup of character IDs to corporation, alliance and faction"""
|
|
398
398
|
...
|
|
399
399
|
|
|
@@ -404,11 +404,11 @@ class PostCharactersAffiliationOperation(EsiOperation):
|
|
|
404
404
|
|
|
405
405
|
class PostCharactersCharacterIdCspaOperation(EsiOperation):
|
|
406
406
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
407
|
-
def result(self,
|
|
407
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> float:
|
|
408
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"""
|
|
409
409
|
...
|
|
410
410
|
|
|
411
|
-
def results(self,
|
|
411
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[float]:
|
|
412
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"""
|
|
413
413
|
...
|
|
414
414
|
|
|
@@ -419,11 +419,11 @@ class PostCharactersCharacterIdCspaOperation(EsiOperation):
|
|
|
419
419
|
|
|
420
420
|
class GetCharactersCharacterIdClonesOperation(EsiOperation):
|
|
421
421
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
422
|
-
def result(self,
|
|
422
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
423
423
|
"""A list of the character's clones"""
|
|
424
424
|
...
|
|
425
425
|
|
|
426
|
-
def results(self,
|
|
426
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
427
427
|
"""A list of the character's clones"""
|
|
428
428
|
...
|
|
429
429
|
|
|
@@ -434,11 +434,11 @@ class GetCharactersCharacterIdClonesOperation(EsiOperation):
|
|
|
434
434
|
|
|
435
435
|
class GetCharactersCharacterIdImplantsOperation(EsiOperation):
|
|
436
436
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
437
|
-
def result(self,
|
|
437
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
438
438
|
"""Return implants on the active clone of a character"""
|
|
439
439
|
...
|
|
440
440
|
|
|
441
|
-
def results(self,
|
|
441
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
442
442
|
"""Return implants on the active clone of a character"""
|
|
443
443
|
...
|
|
444
444
|
|
|
@@ -449,17 +449,17 @@ class GetCharactersCharacterIdImplantsOperation(EsiOperation):
|
|
|
449
449
|
|
|
450
450
|
class DeleteCharactersCharacterIdContactsOperation(EsiOperation):
|
|
451
451
|
"""EsiOperation, use result()"""
|
|
452
|
-
def result(self,
|
|
452
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> None:
|
|
453
453
|
"""Bulk delete contacts"""
|
|
454
454
|
...
|
|
455
455
|
|
|
456
456
|
class GetAlliancesAllianceIdContactsOperation(EsiOperation):
|
|
457
457
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
458
|
-
def result(self,
|
|
458
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
459
459
|
"""Return contacts of an alliance"""
|
|
460
460
|
...
|
|
461
461
|
|
|
462
|
-
def results(self,
|
|
462
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
463
463
|
"""Return contacts of an alliance"""
|
|
464
464
|
...
|
|
465
465
|
|
|
@@ -470,11 +470,11 @@ class GetAlliancesAllianceIdContactsOperation(EsiOperation):
|
|
|
470
470
|
|
|
471
471
|
class GetAlliancesAllianceIdContactsLabelsOperation(EsiOperation):
|
|
472
472
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
473
|
-
def result(self,
|
|
473
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
474
474
|
"""Return custom labels for an alliance's contacts"""
|
|
475
475
|
...
|
|
476
476
|
|
|
477
|
-
def results(self,
|
|
477
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
478
478
|
"""Return custom labels for an alliance's contacts"""
|
|
479
479
|
...
|
|
480
480
|
|
|
@@ -485,11 +485,11 @@ class GetAlliancesAllianceIdContactsLabelsOperation(EsiOperation):
|
|
|
485
485
|
|
|
486
486
|
class GetCharactersCharacterIdContactsOperation(EsiOperation):
|
|
487
487
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
488
|
-
def result(self,
|
|
488
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
489
489
|
"""Return contacts of a character"""
|
|
490
490
|
...
|
|
491
491
|
|
|
492
|
-
def results(self,
|
|
492
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
493
493
|
"""Return contacts of a character"""
|
|
494
494
|
...
|
|
495
495
|
|
|
@@ -500,11 +500,11 @@ class GetCharactersCharacterIdContactsOperation(EsiOperation):
|
|
|
500
500
|
|
|
501
501
|
class GetCharactersCharacterIdContactsLabelsOperation(EsiOperation):
|
|
502
502
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
503
|
-
def result(self,
|
|
503
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
504
504
|
"""Return custom labels for a character's contacts"""
|
|
505
505
|
...
|
|
506
506
|
|
|
507
|
-
def results(self,
|
|
507
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
508
508
|
"""Return custom labels for a character's contacts"""
|
|
509
509
|
...
|
|
510
510
|
|
|
@@ -515,11 +515,11 @@ class GetCharactersCharacterIdContactsLabelsOperation(EsiOperation):
|
|
|
515
515
|
|
|
516
516
|
class GetCorporationsCorporationIdContactsOperation(EsiOperation):
|
|
517
517
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
518
|
-
def result(self,
|
|
518
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
519
519
|
"""Return contacts of a corporation"""
|
|
520
520
|
...
|
|
521
521
|
|
|
522
|
-
def results(self,
|
|
522
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
523
523
|
"""Return contacts of a corporation"""
|
|
524
524
|
...
|
|
525
525
|
|
|
@@ -530,11 +530,11 @@ class GetCorporationsCorporationIdContactsOperation(EsiOperation):
|
|
|
530
530
|
|
|
531
531
|
class GetCorporationsCorporationIdContactsLabelsOperation(EsiOperation):
|
|
532
532
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
533
|
-
def result(self,
|
|
533
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
534
534
|
"""Return custom labels for a corporation's contacts"""
|
|
535
535
|
...
|
|
536
536
|
|
|
537
|
-
def results(self,
|
|
537
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
538
538
|
"""Return custom labels for a corporation's contacts"""
|
|
539
539
|
...
|
|
540
540
|
|
|
@@ -545,11 +545,11 @@ class GetCorporationsCorporationIdContactsLabelsOperation(EsiOperation):
|
|
|
545
545
|
|
|
546
546
|
class PostCharactersCharacterIdContactsOperation(EsiOperation):
|
|
547
547
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
548
|
-
def result(self,
|
|
548
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
549
549
|
"""Bulk add contacts with same settings"""
|
|
550
550
|
...
|
|
551
551
|
|
|
552
|
-
def results(self,
|
|
552
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
553
553
|
"""Bulk add contacts with same settings"""
|
|
554
554
|
...
|
|
555
555
|
|
|
@@ -560,17 +560,17 @@ class PostCharactersCharacterIdContactsOperation(EsiOperation):
|
|
|
560
560
|
|
|
561
561
|
class PutCharactersCharacterIdContactsOperation(EsiOperation):
|
|
562
562
|
"""EsiOperation, use result()"""
|
|
563
|
-
def result(self,
|
|
563
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> None:
|
|
564
564
|
"""Bulk edit contacts with same settings"""
|
|
565
565
|
...
|
|
566
566
|
|
|
567
567
|
class GetCharactersCharacterIdContractsOperation(EsiOperation):
|
|
568
568
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
569
|
-
def result(self,
|
|
569
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
570
570
|
"""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"."""
|
|
571
571
|
...
|
|
572
572
|
|
|
573
|
-
def results(self,
|
|
573
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
574
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"."""
|
|
575
575
|
...
|
|
576
576
|
|
|
@@ -581,11 +581,11 @@ class GetCharactersCharacterIdContractsOperation(EsiOperation):
|
|
|
581
581
|
|
|
582
582
|
class GetCharactersCharacterIdContractsContractIdBidsOperation(EsiOperation):
|
|
583
583
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
584
|
-
def result(self,
|
|
584
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
585
585
|
"""Lists bids on a particular auction contract"""
|
|
586
586
|
...
|
|
587
587
|
|
|
588
|
-
def results(self,
|
|
588
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
589
589
|
"""Lists bids on a particular auction contract"""
|
|
590
590
|
...
|
|
591
591
|
|
|
@@ -596,11 +596,11 @@ class GetCharactersCharacterIdContractsContractIdBidsOperation(EsiOperation):
|
|
|
596
596
|
|
|
597
597
|
class GetCharactersCharacterIdContractsContractIdItemsOperation(EsiOperation):
|
|
598
598
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
599
|
-
def result(self,
|
|
599
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
600
600
|
"""Lists items of a particular contract"""
|
|
601
601
|
...
|
|
602
602
|
|
|
603
|
-
def results(self,
|
|
603
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
604
604
|
"""Lists items of a particular contract"""
|
|
605
605
|
...
|
|
606
606
|
|
|
@@ -611,11 +611,11 @@ class GetCharactersCharacterIdContractsContractIdItemsOperation(EsiOperation):
|
|
|
611
611
|
|
|
612
612
|
class GetContractsPublicBidsContractIdOperation(EsiOperation):
|
|
613
613
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
614
|
-
def result(self,
|
|
614
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
615
615
|
"""Lists bids on a public auction contract"""
|
|
616
616
|
...
|
|
617
617
|
|
|
618
|
-
def results(self,
|
|
618
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
619
619
|
"""Lists bids on a public auction contract"""
|
|
620
620
|
...
|
|
621
621
|
|
|
@@ -626,11 +626,11 @@ class GetContractsPublicBidsContractIdOperation(EsiOperation):
|
|
|
626
626
|
|
|
627
627
|
class GetContractsPublicItemsContractIdOperation(EsiOperation):
|
|
628
628
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
629
|
-
def result(self,
|
|
629
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
630
630
|
"""Lists items of a public contract"""
|
|
631
631
|
...
|
|
632
632
|
|
|
633
|
-
def results(self,
|
|
633
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
634
634
|
"""Lists items of a public contract"""
|
|
635
635
|
...
|
|
636
636
|
|
|
@@ -641,11 +641,11 @@ class GetContractsPublicItemsContractIdOperation(EsiOperation):
|
|
|
641
641
|
|
|
642
642
|
class GetContractsPublicRegionIdOperation(EsiOperation):
|
|
643
643
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
644
|
-
def result(self,
|
|
644
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
645
645
|
"""Returns a paginated list of all public contracts in the given region"""
|
|
646
646
|
...
|
|
647
647
|
|
|
648
|
-
def results(self,
|
|
648
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
649
649
|
"""Returns a paginated list of all public contracts in the given region"""
|
|
650
650
|
...
|
|
651
651
|
|
|
@@ -656,11 +656,11 @@ class GetContractsPublicRegionIdOperation(EsiOperation):
|
|
|
656
656
|
|
|
657
657
|
class GetCorporationsCorporationIdContractsOperation(EsiOperation):
|
|
658
658
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
659
|
-
def result(self,
|
|
659
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
660
660
|
"""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"."""
|
|
661
661
|
...
|
|
662
662
|
|
|
663
|
-
def results(self,
|
|
663
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
664
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"."""
|
|
665
665
|
...
|
|
666
666
|
|
|
@@ -671,11 +671,11 @@ class GetCorporationsCorporationIdContractsOperation(EsiOperation):
|
|
|
671
671
|
|
|
672
672
|
class GetCorporationsCorporationIdContractsContractIdBidsOperation(EsiOperation):
|
|
673
673
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
674
|
-
def result(self,
|
|
674
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
675
675
|
"""Lists bids on a particular auction contract"""
|
|
676
676
|
...
|
|
677
677
|
|
|
678
|
-
def results(self,
|
|
678
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
679
679
|
"""Lists bids on a particular auction contract"""
|
|
680
680
|
...
|
|
681
681
|
|
|
@@ -686,11 +686,11 @@ class GetCorporationsCorporationIdContractsContractIdBidsOperation(EsiOperation)
|
|
|
686
686
|
|
|
687
687
|
class GetCorporationsCorporationIdContractsContractIdItemsOperation(EsiOperation):
|
|
688
688
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
689
|
-
def result(self,
|
|
689
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
690
690
|
"""Lists items of a particular contract"""
|
|
691
691
|
...
|
|
692
692
|
|
|
693
|
-
def results(self,
|
|
693
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
694
694
|
"""Lists items of a particular contract"""
|
|
695
695
|
...
|
|
696
696
|
|
|
@@ -701,11 +701,11 @@ class GetCorporationsCorporationIdContractsContractIdItemsOperation(EsiOperation
|
|
|
701
701
|
|
|
702
702
|
class GetCorporationsCorporationIdOperation(EsiOperation):
|
|
703
703
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
704
|
-
def result(self,
|
|
704
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
705
705
|
"""Public information about a corporation"""
|
|
706
706
|
...
|
|
707
707
|
|
|
708
|
-
def results(self,
|
|
708
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
709
709
|
"""Public information about a corporation"""
|
|
710
710
|
...
|
|
711
711
|
|
|
@@ -716,11 +716,11 @@ class GetCorporationsCorporationIdOperation(EsiOperation):
|
|
|
716
716
|
|
|
717
717
|
class GetCorporationsCorporationIdAlliancehistoryOperation(EsiOperation):
|
|
718
718
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
719
|
-
def result(self,
|
|
719
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
720
720
|
"""Get a list of all the alliances a corporation has been a member of"""
|
|
721
721
|
...
|
|
722
722
|
|
|
723
|
-
def results(self,
|
|
723
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
724
724
|
"""Get a list of all the alliances a corporation has been a member of"""
|
|
725
725
|
...
|
|
726
726
|
|
|
@@ -731,11 +731,11 @@ class GetCorporationsCorporationIdAlliancehistoryOperation(EsiOperation):
|
|
|
731
731
|
|
|
732
732
|
class GetCorporationsCorporationIdBlueprintsOperation(EsiOperation):
|
|
733
733
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
734
|
-
def result(self,
|
|
734
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
735
735
|
"""Returns a list of blueprints the corporation owns"""
|
|
736
736
|
...
|
|
737
737
|
|
|
738
|
-
def results(self,
|
|
738
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
739
739
|
"""Returns a list of blueprints the corporation owns"""
|
|
740
740
|
...
|
|
741
741
|
|
|
@@ -746,11 +746,11 @@ class GetCorporationsCorporationIdBlueprintsOperation(EsiOperation):
|
|
|
746
746
|
|
|
747
747
|
class GetCorporationsCorporationIdContainersLogsOperation(EsiOperation):
|
|
748
748
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
749
|
-
def result(self,
|
|
749
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
750
750
|
"""Returns logs recorded in the past seven days from all audit log secure containers (ALSC) owned by a given corporation"""
|
|
751
751
|
...
|
|
752
752
|
|
|
753
|
-
def results(self,
|
|
753
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
754
754
|
"""Returns logs recorded in the past seven days from all audit log secure containers (ALSC) owned by a given corporation"""
|
|
755
755
|
...
|
|
756
756
|
|
|
@@ -761,11 +761,11 @@ class GetCorporationsCorporationIdContainersLogsOperation(EsiOperation):
|
|
|
761
761
|
|
|
762
762
|
class GetCorporationsCorporationIdDivisionsOperation(EsiOperation):
|
|
763
763
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
764
|
-
def result(self,
|
|
764
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
765
765
|
"""Return corporation hangar and wallet division names, only show if a division is not using the default name"""
|
|
766
766
|
...
|
|
767
767
|
|
|
768
|
-
def results(self,
|
|
768
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
769
769
|
"""Return corporation hangar and wallet division names, only show if a division is not using the default name"""
|
|
770
770
|
...
|
|
771
771
|
|
|
@@ -776,11 +776,11 @@ class GetCorporationsCorporationIdDivisionsOperation(EsiOperation):
|
|
|
776
776
|
|
|
777
777
|
class GetCorporationsCorporationIdFacilitiesOperation(EsiOperation):
|
|
778
778
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
779
|
-
def result(self,
|
|
779
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
780
780
|
"""Return a corporation's facilities"""
|
|
781
781
|
...
|
|
782
782
|
|
|
783
|
-
def results(self,
|
|
783
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
784
784
|
"""Return a corporation's facilities"""
|
|
785
785
|
...
|
|
786
786
|
|
|
@@ -791,11 +791,11 @@ class GetCorporationsCorporationIdFacilitiesOperation(EsiOperation):
|
|
|
791
791
|
|
|
792
792
|
class GetCorporationsCorporationIdIconsOperation(EsiOperation):
|
|
793
793
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
794
|
-
def result(self,
|
|
794
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
795
795
|
"""Get the icon urls for a corporation"""
|
|
796
796
|
...
|
|
797
797
|
|
|
798
|
-
def results(self,
|
|
798
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
799
799
|
"""Get the icon urls for a corporation"""
|
|
800
800
|
...
|
|
801
801
|
|
|
@@ -806,11 +806,11 @@ class GetCorporationsCorporationIdIconsOperation(EsiOperation):
|
|
|
806
806
|
|
|
807
807
|
class GetCorporationsCorporationIdMedalsOperation(EsiOperation):
|
|
808
808
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
809
|
-
def result(self,
|
|
809
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
810
810
|
"""Returns a corporation's medals"""
|
|
811
811
|
...
|
|
812
812
|
|
|
813
|
-
def results(self,
|
|
813
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
814
814
|
"""Returns a corporation's medals"""
|
|
815
815
|
...
|
|
816
816
|
|
|
@@ -821,11 +821,11 @@ class GetCorporationsCorporationIdMedalsOperation(EsiOperation):
|
|
|
821
821
|
|
|
822
822
|
class GetCorporationsCorporationIdMedalsIssuedOperation(EsiOperation):
|
|
823
823
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
824
|
-
def result(self,
|
|
824
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
825
825
|
"""Returns medals issued by a corporation"""
|
|
826
826
|
...
|
|
827
827
|
|
|
828
|
-
def results(self,
|
|
828
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
829
829
|
"""Returns medals issued by a corporation"""
|
|
830
830
|
...
|
|
831
831
|
|
|
@@ -836,11 +836,11 @@ class GetCorporationsCorporationIdMedalsIssuedOperation(EsiOperation):
|
|
|
836
836
|
|
|
837
837
|
class GetCorporationsCorporationIdMembersOperation(EsiOperation):
|
|
838
838
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
839
|
-
def result(self,
|
|
839
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
840
840
|
"""Return the current member list of a corporation, the token's character need to be a member of the corporation."""
|
|
841
841
|
...
|
|
842
842
|
|
|
843
|
-
def results(self,
|
|
843
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
844
844
|
"""Return the current member list of a corporation, the token's character need to be a member of the corporation."""
|
|
845
845
|
...
|
|
846
846
|
|
|
@@ -851,11 +851,11 @@ class GetCorporationsCorporationIdMembersOperation(EsiOperation):
|
|
|
851
851
|
|
|
852
852
|
class GetCorporationsCorporationIdMembersLimitOperation(EsiOperation):
|
|
853
853
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
854
|
-
def result(self,
|
|
854
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> int:
|
|
855
855
|
"""Return a corporation's member limit, not including CEO himself"""
|
|
856
856
|
...
|
|
857
857
|
|
|
858
|
-
def results(self,
|
|
858
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
859
859
|
"""Return a corporation's member limit, not including CEO himself"""
|
|
860
860
|
...
|
|
861
861
|
|
|
@@ -866,11 +866,11 @@ class GetCorporationsCorporationIdMembersLimitOperation(EsiOperation):
|
|
|
866
866
|
|
|
867
867
|
class GetCorporationsCorporationIdMembersTitlesOperation(EsiOperation):
|
|
868
868
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
869
|
-
def result(self,
|
|
869
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
870
870
|
"""Returns a corporation's members' titles"""
|
|
871
871
|
...
|
|
872
872
|
|
|
873
|
-
def results(self,
|
|
873
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
874
874
|
"""Returns a corporation's members' titles"""
|
|
875
875
|
...
|
|
876
876
|
|
|
@@ -881,11 +881,11 @@ class GetCorporationsCorporationIdMembersTitlesOperation(EsiOperation):
|
|
|
881
881
|
|
|
882
882
|
class GetCorporationsCorporationIdMembertrackingOperation(EsiOperation):
|
|
883
883
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
884
|
-
def result(self,
|
|
884
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
885
885
|
"""Returns additional information about a corporation's members which helps tracking their activities"""
|
|
886
886
|
...
|
|
887
887
|
|
|
888
|
-
def results(self,
|
|
888
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
889
889
|
"""Returns additional information about a corporation's members which helps tracking their activities"""
|
|
890
890
|
...
|
|
891
891
|
|
|
@@ -896,11 +896,11 @@ class GetCorporationsCorporationIdMembertrackingOperation(EsiOperation):
|
|
|
896
896
|
|
|
897
897
|
class GetCorporationsCorporationIdRolesOperation(EsiOperation):
|
|
898
898
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
899
|
-
def result(self,
|
|
899
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
900
900
|
"""Return the roles of all members if the character has the personnel manager role or any grantable role."""
|
|
901
901
|
...
|
|
902
902
|
|
|
903
|
-
def results(self,
|
|
903
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
904
904
|
"""Return the roles of all members if the character has the personnel manager role or any grantable role."""
|
|
905
905
|
...
|
|
906
906
|
|
|
@@ -911,11 +911,11 @@ class GetCorporationsCorporationIdRolesOperation(EsiOperation):
|
|
|
911
911
|
|
|
912
912
|
class GetCorporationsCorporationIdRolesHistoryOperation(EsiOperation):
|
|
913
913
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
914
|
-
def result(self,
|
|
914
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
915
915
|
"""Return how roles have changed for a coporation's members, up to a month"""
|
|
916
916
|
...
|
|
917
917
|
|
|
918
|
-
def results(self,
|
|
918
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
919
919
|
"""Return how roles have changed for a coporation's members, up to a month"""
|
|
920
920
|
...
|
|
921
921
|
|
|
@@ -926,11 +926,11 @@ class GetCorporationsCorporationIdRolesHistoryOperation(EsiOperation):
|
|
|
926
926
|
|
|
927
927
|
class GetCorporationsCorporationIdShareholdersOperation(EsiOperation):
|
|
928
928
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
929
|
-
def result(self,
|
|
929
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
930
930
|
"""Return the current shareholders of a corporation."""
|
|
931
931
|
...
|
|
932
932
|
|
|
933
|
-
def results(self,
|
|
933
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
934
934
|
"""Return the current shareholders of a corporation."""
|
|
935
935
|
...
|
|
936
936
|
|
|
@@ -941,11 +941,11 @@ class GetCorporationsCorporationIdShareholdersOperation(EsiOperation):
|
|
|
941
941
|
|
|
942
942
|
class GetCorporationsCorporationIdStandingsOperation(EsiOperation):
|
|
943
943
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
944
|
-
def result(self,
|
|
944
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
945
945
|
"""Return corporation standings from agents, NPC corporations, and factions"""
|
|
946
946
|
...
|
|
947
947
|
|
|
948
|
-
def results(self,
|
|
948
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
949
949
|
"""Return corporation standings from agents, NPC corporations, and factions"""
|
|
950
950
|
...
|
|
951
951
|
|
|
@@ -956,11 +956,11 @@ class GetCorporationsCorporationIdStandingsOperation(EsiOperation):
|
|
|
956
956
|
|
|
957
957
|
class GetCorporationsCorporationIdStarbasesOperation(EsiOperation):
|
|
958
958
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
959
|
-
def result(self,
|
|
959
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
960
960
|
"""Returns list of corporation starbases (POSes)"""
|
|
961
961
|
...
|
|
962
962
|
|
|
963
|
-
def results(self,
|
|
963
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
964
964
|
"""Returns list of corporation starbases (POSes)"""
|
|
965
965
|
...
|
|
966
966
|
|
|
@@ -971,11 +971,11 @@ class GetCorporationsCorporationIdStarbasesOperation(EsiOperation):
|
|
|
971
971
|
|
|
972
972
|
class GetCorporationsCorporationIdStarbasesStarbaseIdOperation(EsiOperation):
|
|
973
973
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
974
|
-
def result(self,
|
|
974
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
975
975
|
"""Returns various settings and fuels of a starbase (POS)"""
|
|
976
976
|
...
|
|
977
977
|
|
|
978
|
-
def results(self,
|
|
978
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
979
979
|
"""Returns various settings and fuels of a starbase (POS)"""
|
|
980
980
|
...
|
|
981
981
|
|
|
@@ -986,11 +986,11 @@ class GetCorporationsCorporationIdStarbasesStarbaseIdOperation(EsiOperation):
|
|
|
986
986
|
|
|
987
987
|
class GetCorporationsCorporationIdStructuresOperation(EsiOperation):
|
|
988
988
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
989
|
-
def result(self,
|
|
989
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
990
990
|
"""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"""
|
|
991
991
|
...
|
|
992
992
|
|
|
993
|
-
def results(self,
|
|
993
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
994
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"""
|
|
995
995
|
...
|
|
996
996
|
|
|
@@ -1001,11 +1001,11 @@ class GetCorporationsCorporationIdStructuresOperation(EsiOperation):
|
|
|
1001
1001
|
|
|
1002
1002
|
class GetCorporationsCorporationIdTitlesOperation(EsiOperation):
|
|
1003
1003
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1004
|
-
def result(self,
|
|
1004
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1005
1005
|
"""Returns a corporation's titles"""
|
|
1006
1006
|
...
|
|
1007
1007
|
|
|
1008
|
-
def results(self,
|
|
1008
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1009
1009
|
"""Returns a corporation's titles"""
|
|
1010
1010
|
...
|
|
1011
1011
|
|
|
@@ -1016,11 +1016,11 @@ class GetCorporationsCorporationIdTitlesOperation(EsiOperation):
|
|
|
1016
1016
|
|
|
1017
1017
|
class GetCorporationsNpccorpsOperation(EsiOperation):
|
|
1018
1018
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1019
|
-
def result(self,
|
|
1019
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
1020
1020
|
"""Get a list of npc corporations This route expires daily at 11:05"""
|
|
1021
1021
|
...
|
|
1022
1022
|
|
|
1023
|
-
def results(self,
|
|
1023
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
1024
1024
|
"""Get a list of npc corporations This route expires daily at 11:05"""
|
|
1025
1025
|
...
|
|
1026
1026
|
|
|
@@ -1031,11 +1031,11 @@ class GetCorporationsNpccorpsOperation(EsiOperation):
|
|
|
1031
1031
|
|
|
1032
1032
|
class GetCorporationsProjectsContributionOperation(EsiOperation):
|
|
1033
1033
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1034
|
-
def result(self,
|
|
1034
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1035
1035
|
"""Show your contribution to a corporation project."""
|
|
1036
1036
|
...
|
|
1037
1037
|
|
|
1038
|
-
def results(self,
|
|
1038
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1039
1039
|
"""Show your contribution to a corporation project."""
|
|
1040
1040
|
...
|
|
1041
1041
|
|
|
@@ -1046,11 +1046,11 @@ class GetCorporationsProjectsContributionOperation(EsiOperation):
|
|
|
1046
1046
|
|
|
1047
1047
|
class GetCorporationsProjectsContributorsOperation(EsiOperation):
|
|
1048
1048
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1049
|
-
def result(self,
|
|
1049
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1050
1050
|
"""Listing of all contributors to a corporation project."""
|
|
1051
1051
|
...
|
|
1052
1052
|
|
|
1053
|
-
def results(self,
|
|
1053
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1054
1054
|
"""Listing of all contributors to a corporation project."""
|
|
1055
1055
|
...
|
|
1056
1056
|
|
|
@@ -1061,11 +1061,11 @@ class GetCorporationsProjectsContributorsOperation(EsiOperation):
|
|
|
1061
1061
|
|
|
1062
1062
|
class GetCorporationsProjectsDetailOperation(EsiOperation):
|
|
1063
1063
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1064
|
-
def result(self,
|
|
1064
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1065
1065
|
"""Get the details of a corporation project."""
|
|
1066
1066
|
...
|
|
1067
1067
|
|
|
1068
|
-
def results(self,
|
|
1068
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1069
1069
|
"""Get the details of a corporation project."""
|
|
1070
1070
|
...
|
|
1071
1071
|
|
|
@@ -1076,11 +1076,11 @@ class GetCorporationsProjectsDetailOperation(EsiOperation):
|
|
|
1076
1076
|
|
|
1077
1077
|
class GetCorporationsProjectsListingOperation(EsiOperation):
|
|
1078
1078
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1079
|
-
def result(self,
|
|
1079
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1080
1080
|
"""Listing of all (active) corporation projects."""
|
|
1081
1081
|
...
|
|
1082
1082
|
|
|
1083
|
-
def results(self,
|
|
1083
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1084
1084
|
"""Listing of all (active) corporation projects."""
|
|
1085
1085
|
...
|
|
1086
1086
|
|
|
@@ -1091,11 +1091,11 @@ class GetCorporationsProjectsListingOperation(EsiOperation):
|
|
|
1091
1091
|
|
|
1092
1092
|
class GetDogmaAttributesOperation(EsiOperation):
|
|
1093
1093
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1094
|
-
def result(self,
|
|
1094
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
1095
1095
|
"""Get a list of dogma attribute ids This route expires daily at 11:05"""
|
|
1096
1096
|
...
|
|
1097
1097
|
|
|
1098
|
-
def results(self,
|
|
1098
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
1099
1099
|
"""Get a list of dogma attribute ids This route expires daily at 11:05"""
|
|
1100
1100
|
...
|
|
1101
1101
|
|
|
@@ -1106,11 +1106,11 @@ class GetDogmaAttributesOperation(EsiOperation):
|
|
|
1106
1106
|
|
|
1107
1107
|
class GetDogmaAttributesAttributeIdOperation(EsiOperation):
|
|
1108
1108
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1109
|
-
def result(self,
|
|
1109
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1110
1110
|
"""Get information on a dogma attribute This route expires daily at 11:05"""
|
|
1111
1111
|
...
|
|
1112
1112
|
|
|
1113
|
-
def results(self,
|
|
1113
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1114
1114
|
"""Get information on a dogma attribute This route expires daily at 11:05"""
|
|
1115
1115
|
...
|
|
1116
1116
|
|
|
@@ -1121,11 +1121,11 @@ class GetDogmaAttributesAttributeIdOperation(EsiOperation):
|
|
|
1121
1121
|
|
|
1122
1122
|
class GetDogmaDynamicItemsTypeIdItemIdOperation(EsiOperation):
|
|
1123
1123
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1124
|
-
def result(self,
|
|
1124
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1125
1125
|
"""Returns info about a dynamic item resulting from mutation with a mutaplasmid. This route expires daily at 11:05"""
|
|
1126
1126
|
...
|
|
1127
1127
|
|
|
1128
|
-
def results(self,
|
|
1128
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1129
1129
|
"""Returns info about a dynamic item resulting from mutation with a mutaplasmid. This route expires daily at 11:05"""
|
|
1130
1130
|
...
|
|
1131
1131
|
|
|
@@ -1136,11 +1136,11 @@ class GetDogmaDynamicItemsTypeIdItemIdOperation(EsiOperation):
|
|
|
1136
1136
|
|
|
1137
1137
|
class GetDogmaEffectsOperation(EsiOperation):
|
|
1138
1138
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1139
|
-
def result(self,
|
|
1139
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
1140
1140
|
"""Get a list of dogma effect ids This route expires daily at 11:05"""
|
|
1141
1141
|
...
|
|
1142
1142
|
|
|
1143
|
-
def results(self,
|
|
1143
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
1144
1144
|
"""Get a list of dogma effect ids This route expires daily at 11:05"""
|
|
1145
1145
|
...
|
|
1146
1146
|
|
|
@@ -1151,11 +1151,11 @@ class GetDogmaEffectsOperation(EsiOperation):
|
|
|
1151
1151
|
|
|
1152
1152
|
class GetDogmaEffectsEffectIdOperation(EsiOperation):
|
|
1153
1153
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1154
|
-
def result(self,
|
|
1154
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1155
1155
|
"""Get information on a dogma effect This route expires daily at 11:05"""
|
|
1156
1156
|
...
|
|
1157
1157
|
|
|
1158
|
-
def results(self,
|
|
1158
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1159
1159
|
"""Get information on a dogma effect This route expires daily at 11:05"""
|
|
1160
1160
|
...
|
|
1161
1161
|
|
|
@@ -1166,11 +1166,11 @@ class GetDogmaEffectsEffectIdOperation(EsiOperation):
|
|
|
1166
1166
|
|
|
1167
1167
|
class GetCharactersCharacterIdFwStatsOperation(EsiOperation):
|
|
1168
1168
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1169
|
-
def result(self,
|
|
1169
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1170
1170
|
"""Statistical overview of a character involved in faction warfare This route expires daily at 11:05"""
|
|
1171
1171
|
...
|
|
1172
1172
|
|
|
1173
|
-
def results(self,
|
|
1173
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1174
1174
|
"""Statistical overview of a character involved in faction warfare This route expires daily at 11:05"""
|
|
1175
1175
|
...
|
|
1176
1176
|
|
|
@@ -1181,11 +1181,11 @@ class GetCharactersCharacterIdFwStatsOperation(EsiOperation):
|
|
|
1181
1181
|
|
|
1182
1182
|
class GetCorporationsCorporationIdFwStatsOperation(EsiOperation):
|
|
1183
1183
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1184
|
-
def result(self,
|
|
1184
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1185
1185
|
"""Statistics about a corporation involved in faction warfare This route expires daily at 11:05"""
|
|
1186
1186
|
...
|
|
1187
1187
|
|
|
1188
|
-
def results(self,
|
|
1188
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1189
1189
|
"""Statistics about a corporation involved in faction warfare This route expires daily at 11:05"""
|
|
1190
1190
|
...
|
|
1191
1191
|
|
|
@@ -1196,11 +1196,11 @@ class GetCorporationsCorporationIdFwStatsOperation(EsiOperation):
|
|
|
1196
1196
|
|
|
1197
1197
|
class GetFwLeaderboardsOperation(EsiOperation):
|
|
1198
1198
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1199
|
-
def result(self,
|
|
1199
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1200
1200
|
"""Top 4 leaderboard of factions for kills and victory points separated by total, last week and yesterday This route expires daily at 11:05"""
|
|
1201
1201
|
...
|
|
1202
1202
|
|
|
1203
|
-
def results(self,
|
|
1203
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1204
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"""
|
|
1205
1205
|
...
|
|
1206
1206
|
|
|
@@ -1211,11 +1211,11 @@ class GetFwLeaderboardsOperation(EsiOperation):
|
|
|
1211
1211
|
|
|
1212
1212
|
class GetFwLeaderboardsCharactersOperation(EsiOperation):
|
|
1213
1213
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1214
|
-
def result(self,
|
|
1214
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1215
1215
|
"""Top 100 leaderboard of pilots for kills and victory points separated by total, last week and yesterday This route expires daily at 11:05"""
|
|
1216
1216
|
...
|
|
1217
1217
|
|
|
1218
|
-
def results(self,
|
|
1218
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1219
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"""
|
|
1220
1220
|
...
|
|
1221
1221
|
|
|
@@ -1226,11 +1226,11 @@ class GetFwLeaderboardsCharactersOperation(EsiOperation):
|
|
|
1226
1226
|
|
|
1227
1227
|
class GetFwLeaderboardsCorporationsOperation(EsiOperation):
|
|
1228
1228
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1229
|
-
def result(self,
|
|
1229
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1230
1230
|
"""Top 10 leaderboard of corporations for kills and victory points separated by total, last week and yesterday This route expires daily at 11:05"""
|
|
1231
1231
|
...
|
|
1232
1232
|
|
|
1233
|
-
def results(self,
|
|
1233
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1234
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"""
|
|
1235
1235
|
...
|
|
1236
1236
|
|
|
@@ -1241,11 +1241,11 @@ class GetFwLeaderboardsCorporationsOperation(EsiOperation):
|
|
|
1241
1241
|
|
|
1242
1242
|
class GetFwStatsOperation(EsiOperation):
|
|
1243
1243
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1244
|
-
def result(self,
|
|
1244
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1245
1245
|
"""Statistical overviews of factions involved in faction warfare This route expires daily at 11:05"""
|
|
1246
1246
|
...
|
|
1247
1247
|
|
|
1248
|
-
def results(self,
|
|
1248
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1249
1249
|
"""Statistical overviews of factions involved in faction warfare This route expires daily at 11:05"""
|
|
1250
1250
|
...
|
|
1251
1251
|
|
|
@@ -1256,11 +1256,11 @@ class GetFwStatsOperation(EsiOperation):
|
|
|
1256
1256
|
|
|
1257
1257
|
class GetFwSystemsOperation(EsiOperation):
|
|
1258
1258
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1259
|
-
def result(self,
|
|
1259
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1260
1260
|
"""An overview of the current ownership of faction warfare solar systems"""
|
|
1261
1261
|
...
|
|
1262
1262
|
|
|
1263
|
-
def results(self,
|
|
1263
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1264
1264
|
"""An overview of the current ownership of faction warfare solar systems"""
|
|
1265
1265
|
...
|
|
1266
1266
|
|
|
@@ -1271,11 +1271,11 @@ class GetFwSystemsOperation(EsiOperation):
|
|
|
1271
1271
|
|
|
1272
1272
|
class GetFwWarsOperation(EsiOperation):
|
|
1273
1273
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1274
|
-
def result(self,
|
|
1274
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1275
1275
|
"""Data about which NPC factions are at war This route expires daily at 11:05"""
|
|
1276
1276
|
...
|
|
1277
1277
|
|
|
1278
|
-
def results(self,
|
|
1278
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1279
1279
|
"""Data about which NPC factions are at war This route expires daily at 11:05"""
|
|
1280
1280
|
...
|
|
1281
1281
|
|
|
@@ -1286,17 +1286,17 @@ class GetFwWarsOperation(EsiOperation):
|
|
|
1286
1286
|
|
|
1287
1287
|
class DeleteCharactersCharacterIdFittingsFittingIdOperation(EsiOperation):
|
|
1288
1288
|
"""EsiOperation, use result()"""
|
|
1289
|
-
def result(self,
|
|
1289
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1290
1290
|
"""Delete a fitting from a character"""
|
|
1291
1291
|
...
|
|
1292
1292
|
|
|
1293
1293
|
class GetCharactersCharacterIdFittingsOperation(EsiOperation):
|
|
1294
1294
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1295
|
-
def result(self,
|
|
1295
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1296
1296
|
"""Return fittings of a character"""
|
|
1297
1297
|
...
|
|
1298
1298
|
|
|
1299
|
-
def results(self,
|
|
1299
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1300
1300
|
"""Return fittings of a character"""
|
|
1301
1301
|
...
|
|
1302
1302
|
|
|
@@ -1307,11 +1307,11 @@ class GetCharactersCharacterIdFittingsOperation(EsiOperation):
|
|
|
1307
1307
|
|
|
1308
1308
|
class PostCharactersCharacterIdFittingsOperation(EsiOperation):
|
|
1309
1309
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1310
|
-
def result(self,
|
|
1310
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1311
1311
|
"""Save a new fitting for a character"""
|
|
1312
1312
|
...
|
|
1313
1313
|
|
|
1314
|
-
def results(self,
|
|
1314
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1315
1315
|
"""Save a new fitting for a character"""
|
|
1316
1316
|
...
|
|
1317
1317
|
|
|
@@ -1322,29 +1322,29 @@ class PostCharactersCharacterIdFittingsOperation(EsiOperation):
|
|
|
1322
1322
|
|
|
1323
1323
|
class DeleteFleetsFleetIdMembersMemberIdOperation(EsiOperation):
|
|
1324
1324
|
"""EsiOperation, use result()"""
|
|
1325
|
-
def result(self,
|
|
1325
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1326
1326
|
"""Kick a fleet member"""
|
|
1327
1327
|
...
|
|
1328
1328
|
|
|
1329
1329
|
class DeleteFleetsFleetIdSquadsSquadIdOperation(EsiOperation):
|
|
1330
1330
|
"""EsiOperation, use result()"""
|
|
1331
|
-
def result(self,
|
|
1331
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1332
1332
|
"""Delete a fleet squad, only empty squads can be deleted"""
|
|
1333
1333
|
...
|
|
1334
1334
|
|
|
1335
1335
|
class DeleteFleetsFleetIdWingsWingIdOperation(EsiOperation):
|
|
1336
1336
|
"""EsiOperation, use result()"""
|
|
1337
|
-
def result(self,
|
|
1337
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1338
1338
|
"""Delete a fleet wing, only empty wings can be deleted. The wing may contain squads, but the squads must be empty"""
|
|
1339
1339
|
...
|
|
1340
1340
|
|
|
1341
1341
|
class GetCharactersCharacterIdFleetOperation(EsiOperation):
|
|
1342
1342
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1343
|
-
def result(self,
|
|
1343
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1344
1344
|
"""Return the fleet ID the character is in, if any."""
|
|
1345
1345
|
...
|
|
1346
1346
|
|
|
1347
|
-
def results(self,
|
|
1347
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1348
1348
|
"""Return the fleet ID the character is in, if any."""
|
|
1349
1349
|
...
|
|
1350
1350
|
|
|
@@ -1355,11 +1355,11 @@ class GetCharactersCharacterIdFleetOperation(EsiOperation):
|
|
|
1355
1355
|
|
|
1356
1356
|
class GetFleetsFleetIdOperation(EsiOperation):
|
|
1357
1357
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1358
|
-
def result(self,
|
|
1358
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1359
1359
|
"""Return details about a fleet"""
|
|
1360
1360
|
...
|
|
1361
1361
|
|
|
1362
|
-
def results(self,
|
|
1362
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1363
1363
|
"""Return details about a fleet"""
|
|
1364
1364
|
...
|
|
1365
1365
|
|
|
@@ -1370,11 +1370,11 @@ class GetFleetsFleetIdOperation(EsiOperation):
|
|
|
1370
1370
|
|
|
1371
1371
|
class GetFleetsFleetIdMembersOperation(EsiOperation):
|
|
1372
1372
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1373
|
-
def result(self,
|
|
1373
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1374
1374
|
"""Return information about fleet members"""
|
|
1375
1375
|
...
|
|
1376
1376
|
|
|
1377
|
-
def results(self,
|
|
1377
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1378
1378
|
"""Return information about fleet members"""
|
|
1379
1379
|
...
|
|
1380
1380
|
|
|
@@ -1385,11 +1385,11 @@ class GetFleetsFleetIdMembersOperation(EsiOperation):
|
|
|
1385
1385
|
|
|
1386
1386
|
class GetFleetsFleetIdWingsOperation(EsiOperation):
|
|
1387
1387
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1388
|
-
def result(self,
|
|
1388
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1389
1389
|
"""Return information about wings in a fleet"""
|
|
1390
1390
|
...
|
|
1391
1391
|
|
|
1392
|
-
def results(self,
|
|
1392
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1393
1393
|
"""Return information about wings in a fleet"""
|
|
1394
1394
|
...
|
|
1395
1395
|
|
|
@@ -1400,11 +1400,11 @@ class GetFleetsFleetIdWingsOperation(EsiOperation):
|
|
|
1400
1400
|
|
|
1401
1401
|
class PostFleetsFleetIdMembersOperation(EsiOperation):
|
|
1402
1402
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1403
|
-
def result(self,
|
|
1403
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> Any:
|
|
1404
1404
|
"""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"""
|
|
1405
1405
|
...
|
|
1406
1406
|
|
|
1407
|
-
def results(self,
|
|
1407
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
1408
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"""
|
|
1409
1409
|
...
|
|
1410
1410
|
|
|
@@ -1415,11 +1415,11 @@ class PostFleetsFleetIdMembersOperation(EsiOperation):
|
|
|
1415
1415
|
|
|
1416
1416
|
class PostFleetsFleetIdWingsOperation(EsiOperation):
|
|
1417
1417
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1418
|
-
def result(self,
|
|
1418
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1419
1419
|
"""Create a new wing in a fleet"""
|
|
1420
1420
|
...
|
|
1421
1421
|
|
|
1422
|
-
def results(self,
|
|
1422
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1423
1423
|
"""Create a new wing in a fleet"""
|
|
1424
1424
|
...
|
|
1425
1425
|
|
|
@@ -1430,11 +1430,11 @@ class PostFleetsFleetIdWingsOperation(EsiOperation):
|
|
|
1430
1430
|
|
|
1431
1431
|
class PostFleetsFleetIdWingsWingIdSquadsOperation(EsiOperation):
|
|
1432
1432
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1433
|
-
def result(self,
|
|
1433
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1434
1434
|
"""Create a new squad in a fleet"""
|
|
1435
1435
|
...
|
|
1436
1436
|
|
|
1437
|
-
def results(self,
|
|
1437
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1438
1438
|
"""Create a new squad in a fleet"""
|
|
1439
1439
|
...
|
|
1440
1440
|
|
|
@@ -1445,35 +1445,35 @@ class PostFleetsFleetIdWingsWingIdSquadsOperation(EsiOperation):
|
|
|
1445
1445
|
|
|
1446
1446
|
class PutFleetsFleetIdOperation(EsiOperation):
|
|
1447
1447
|
"""EsiOperation, use result()"""
|
|
1448
|
-
def result(self,
|
|
1448
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1449
1449
|
"""Update settings about a fleet"""
|
|
1450
1450
|
...
|
|
1451
1451
|
|
|
1452
1452
|
class PutFleetsFleetIdMembersMemberIdOperation(EsiOperation):
|
|
1453
1453
|
"""EsiOperation, use result()"""
|
|
1454
|
-
def result(self,
|
|
1454
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1455
1455
|
"""Move a fleet member around"""
|
|
1456
1456
|
...
|
|
1457
1457
|
|
|
1458
1458
|
class PutFleetsFleetIdSquadsSquadIdOperation(EsiOperation):
|
|
1459
1459
|
"""EsiOperation, use result()"""
|
|
1460
|
-
def result(self,
|
|
1460
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1461
1461
|
"""Rename a fleet squad"""
|
|
1462
1462
|
...
|
|
1463
1463
|
|
|
1464
1464
|
class PutFleetsFleetIdWingsWingIdOperation(EsiOperation):
|
|
1465
1465
|
"""EsiOperation, use result()"""
|
|
1466
|
-
def result(self,
|
|
1466
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1467
1467
|
"""Rename a fleet wing"""
|
|
1468
1468
|
...
|
|
1469
1469
|
|
|
1470
1470
|
class GetIncursionsOperation(EsiOperation):
|
|
1471
1471
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1472
|
-
def result(self,
|
|
1472
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1473
1473
|
"""Return a list of current incursions"""
|
|
1474
1474
|
...
|
|
1475
1475
|
|
|
1476
|
-
def results(self,
|
|
1476
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1477
1477
|
"""Return a list of current incursions"""
|
|
1478
1478
|
...
|
|
1479
1479
|
|
|
@@ -1484,11 +1484,11 @@ class GetIncursionsOperation(EsiOperation):
|
|
|
1484
1484
|
|
|
1485
1485
|
class GetCharactersCharacterIdIndustryJobsOperation(EsiOperation):
|
|
1486
1486
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1487
|
-
def result(self,
|
|
1487
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1488
1488
|
"""List industry jobs placed by a character"""
|
|
1489
1489
|
...
|
|
1490
1490
|
|
|
1491
|
-
def results(self,
|
|
1491
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1492
1492
|
"""List industry jobs placed by a character"""
|
|
1493
1493
|
...
|
|
1494
1494
|
|
|
@@ -1499,11 +1499,11 @@ class GetCharactersCharacterIdIndustryJobsOperation(EsiOperation):
|
|
|
1499
1499
|
|
|
1500
1500
|
class GetCharactersCharacterIdMiningOperation(EsiOperation):
|
|
1501
1501
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1502
|
-
def result(self,
|
|
1502
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1503
1503
|
"""Paginated record of all mining done by a character for the past 30 days"""
|
|
1504
1504
|
...
|
|
1505
1505
|
|
|
1506
|
-
def results(self,
|
|
1506
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1507
1507
|
"""Paginated record of all mining done by a character for the past 30 days"""
|
|
1508
1508
|
...
|
|
1509
1509
|
|
|
@@ -1514,11 +1514,11 @@ class GetCharactersCharacterIdMiningOperation(EsiOperation):
|
|
|
1514
1514
|
|
|
1515
1515
|
class GetCorporationCorporationIdMiningExtractionsOperation(EsiOperation):
|
|
1516
1516
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1517
|
-
def result(self,
|
|
1517
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1518
1518
|
"""Extraction timers for all moon chunks being extracted by refineries belonging to a corporation."""
|
|
1519
1519
|
...
|
|
1520
1520
|
|
|
1521
|
-
def results(self,
|
|
1521
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1522
1522
|
"""Extraction timers for all moon chunks being extracted by refineries belonging to a corporation."""
|
|
1523
1523
|
...
|
|
1524
1524
|
|
|
@@ -1529,11 +1529,11 @@ class GetCorporationCorporationIdMiningExtractionsOperation(EsiOperation):
|
|
|
1529
1529
|
|
|
1530
1530
|
class GetCorporationCorporationIdMiningObserversOperation(EsiOperation):
|
|
1531
1531
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1532
|
-
def result(self,
|
|
1532
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1533
1533
|
"""Paginated list of all entities capable of observing and recording mining for a corporation"""
|
|
1534
1534
|
...
|
|
1535
1535
|
|
|
1536
|
-
def results(self,
|
|
1536
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1537
1537
|
"""Paginated list of all entities capable of observing and recording mining for a corporation"""
|
|
1538
1538
|
...
|
|
1539
1539
|
|
|
@@ -1544,11 +1544,11 @@ class GetCorporationCorporationIdMiningObserversOperation(EsiOperation):
|
|
|
1544
1544
|
|
|
1545
1545
|
class GetCorporationCorporationIdMiningObserversObserverIdOperation(EsiOperation):
|
|
1546
1546
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1547
|
-
def result(self,
|
|
1547
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1548
1548
|
"""Paginated record of all mining seen by an observer"""
|
|
1549
1549
|
...
|
|
1550
1550
|
|
|
1551
|
-
def results(self,
|
|
1551
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1552
1552
|
"""Paginated record of all mining seen by an observer"""
|
|
1553
1553
|
...
|
|
1554
1554
|
|
|
@@ -1559,11 +1559,11 @@ class GetCorporationCorporationIdMiningObserversObserverIdOperation(EsiOperation
|
|
|
1559
1559
|
|
|
1560
1560
|
class GetCorporationsCorporationIdIndustryJobsOperation(EsiOperation):
|
|
1561
1561
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1562
|
-
def result(self,
|
|
1562
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1563
1563
|
"""List industry jobs run by a corporation"""
|
|
1564
1564
|
...
|
|
1565
1565
|
|
|
1566
|
-
def results(self,
|
|
1566
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1567
1567
|
"""List industry jobs run by a corporation"""
|
|
1568
1568
|
...
|
|
1569
1569
|
|
|
@@ -1574,11 +1574,11 @@ class GetCorporationsCorporationIdIndustryJobsOperation(EsiOperation):
|
|
|
1574
1574
|
|
|
1575
1575
|
class GetIndustryFacilitiesOperation(EsiOperation):
|
|
1576
1576
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1577
|
-
def result(self,
|
|
1577
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1578
1578
|
"""Return a list of industry facilities"""
|
|
1579
1579
|
...
|
|
1580
1580
|
|
|
1581
|
-
def results(self,
|
|
1581
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1582
1582
|
"""Return a list of industry facilities"""
|
|
1583
1583
|
...
|
|
1584
1584
|
|
|
@@ -1589,11 +1589,11 @@ class GetIndustryFacilitiesOperation(EsiOperation):
|
|
|
1589
1589
|
|
|
1590
1590
|
class GetIndustrySystemsOperation(EsiOperation):
|
|
1591
1591
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1592
|
-
def result(self,
|
|
1592
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1593
1593
|
"""Return cost indices for solar systems"""
|
|
1594
1594
|
...
|
|
1595
1595
|
|
|
1596
|
-
def results(self,
|
|
1596
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1597
1597
|
"""Return cost indices for solar systems"""
|
|
1598
1598
|
...
|
|
1599
1599
|
|
|
@@ -1604,11 +1604,11 @@ class GetIndustrySystemsOperation(EsiOperation):
|
|
|
1604
1604
|
|
|
1605
1605
|
class GetInsurancePricesOperation(EsiOperation):
|
|
1606
1606
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1607
|
-
def result(self,
|
|
1607
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1608
1608
|
"""Return available insurance levels for all ship types"""
|
|
1609
1609
|
...
|
|
1610
1610
|
|
|
1611
|
-
def results(self,
|
|
1611
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1612
1612
|
"""Return available insurance levels for all ship types"""
|
|
1613
1613
|
...
|
|
1614
1614
|
|
|
@@ -1619,11 +1619,11 @@ class GetInsurancePricesOperation(EsiOperation):
|
|
|
1619
1619
|
|
|
1620
1620
|
class GetCharactersCharacterIdKillmailsRecentOperation(EsiOperation):
|
|
1621
1621
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1622
|
-
def result(self,
|
|
1622
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1623
1623
|
"""Return a list of a character's kills and losses going back 90 days"""
|
|
1624
1624
|
...
|
|
1625
1625
|
|
|
1626
|
-
def results(self,
|
|
1626
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1627
1627
|
"""Return a list of a character's kills and losses going back 90 days"""
|
|
1628
1628
|
...
|
|
1629
1629
|
|
|
@@ -1634,11 +1634,11 @@ class GetCharactersCharacterIdKillmailsRecentOperation(EsiOperation):
|
|
|
1634
1634
|
|
|
1635
1635
|
class GetCorporationsCorporationIdKillmailsRecentOperation(EsiOperation):
|
|
1636
1636
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1637
|
-
def result(self,
|
|
1637
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1638
1638
|
"""Get a list of a corporation's kills and losses going back 90 days"""
|
|
1639
1639
|
...
|
|
1640
1640
|
|
|
1641
|
-
def results(self,
|
|
1641
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1642
1642
|
"""Get a list of a corporation's kills and losses going back 90 days"""
|
|
1643
1643
|
...
|
|
1644
1644
|
|
|
@@ -1649,11 +1649,11 @@ class GetCorporationsCorporationIdKillmailsRecentOperation(EsiOperation):
|
|
|
1649
1649
|
|
|
1650
1650
|
class GetKillmailsKillmailIdKillmailHashOperation(EsiOperation):
|
|
1651
1651
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1652
|
-
def result(self,
|
|
1652
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1653
1653
|
"""Return a single killmail from its ID and hash"""
|
|
1654
1654
|
...
|
|
1655
1655
|
|
|
1656
|
-
def results(self,
|
|
1656
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1657
1657
|
"""Return a single killmail from its ID and hash"""
|
|
1658
1658
|
...
|
|
1659
1659
|
|
|
@@ -1664,11 +1664,11 @@ class GetKillmailsKillmailIdKillmailHashOperation(EsiOperation):
|
|
|
1664
1664
|
|
|
1665
1665
|
class GetCharactersCharacterIdLocationOperation(EsiOperation):
|
|
1666
1666
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1667
|
-
def result(self,
|
|
1667
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1668
1668
|
"""Information about the characters current location. Returns the current solar system id, and also the current station or structure ID if applicable"""
|
|
1669
1669
|
...
|
|
1670
1670
|
|
|
1671
|
-
def results(self,
|
|
1671
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1672
1672
|
"""Information about the characters current location. Returns the current solar system id, and also the current station or structure ID if applicable"""
|
|
1673
1673
|
...
|
|
1674
1674
|
|
|
@@ -1679,11 +1679,11 @@ class GetCharactersCharacterIdLocationOperation(EsiOperation):
|
|
|
1679
1679
|
|
|
1680
1680
|
class GetCharactersCharacterIdOnlineOperation(EsiOperation):
|
|
1681
1681
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1682
|
-
def result(self,
|
|
1682
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1683
1683
|
"""Checks if the character is currently online"""
|
|
1684
1684
|
...
|
|
1685
1685
|
|
|
1686
|
-
def results(self,
|
|
1686
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1687
1687
|
"""Checks if the character is currently online"""
|
|
1688
1688
|
...
|
|
1689
1689
|
|
|
@@ -1694,11 +1694,11 @@ class GetCharactersCharacterIdOnlineOperation(EsiOperation):
|
|
|
1694
1694
|
|
|
1695
1695
|
class GetCharactersCharacterIdShipOperation(EsiOperation):
|
|
1696
1696
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1697
|
-
def result(self,
|
|
1697
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1698
1698
|
"""Get the current ship type, name and id"""
|
|
1699
1699
|
...
|
|
1700
1700
|
|
|
1701
|
-
def results(self,
|
|
1701
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1702
1702
|
"""Get the current ship type, name and id"""
|
|
1703
1703
|
...
|
|
1704
1704
|
|
|
@@ -1709,11 +1709,11 @@ class GetCharactersCharacterIdShipOperation(EsiOperation):
|
|
|
1709
1709
|
|
|
1710
1710
|
class GetCharactersCharacterIdLoyaltyPointsOperation(EsiOperation):
|
|
1711
1711
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1712
|
-
def result(self,
|
|
1712
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1713
1713
|
"""Return a list of loyalty points for all corporations the character has worked for"""
|
|
1714
1714
|
...
|
|
1715
1715
|
|
|
1716
|
-
def results(self,
|
|
1716
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1717
1717
|
"""Return a list of loyalty points for all corporations the character has worked for"""
|
|
1718
1718
|
...
|
|
1719
1719
|
|
|
@@ -1724,11 +1724,11 @@ class GetCharactersCharacterIdLoyaltyPointsOperation(EsiOperation):
|
|
|
1724
1724
|
|
|
1725
1725
|
class GetLoyaltyStoresCorporationIdOffersOperation(EsiOperation):
|
|
1726
1726
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1727
|
-
def result(self,
|
|
1727
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1728
1728
|
"""Return a list of offers from a specific corporation's loyalty store This route expires daily at 11:05"""
|
|
1729
1729
|
...
|
|
1730
1730
|
|
|
1731
|
-
def results(self,
|
|
1731
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1732
1732
|
"""Return a list of offers from a specific corporation's loyalty store This route expires daily at 11:05"""
|
|
1733
1733
|
...
|
|
1734
1734
|
|
|
@@ -1739,23 +1739,23 @@ class GetLoyaltyStoresCorporationIdOffersOperation(EsiOperation):
|
|
|
1739
1739
|
|
|
1740
1740
|
class DeleteCharactersCharacterIdMailLabelsLabelIdOperation(EsiOperation):
|
|
1741
1741
|
"""EsiOperation, use result()"""
|
|
1742
|
-
def result(self,
|
|
1742
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1743
1743
|
"""Delete a mail label"""
|
|
1744
1744
|
...
|
|
1745
1745
|
|
|
1746
1746
|
class DeleteCharactersCharacterIdMailMailIdOperation(EsiOperation):
|
|
1747
1747
|
"""EsiOperation, use result()"""
|
|
1748
|
-
def result(self,
|
|
1748
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1749
1749
|
"""Delete a mail"""
|
|
1750
1750
|
...
|
|
1751
1751
|
|
|
1752
1752
|
class GetCharactersCharacterIdMailOperation(EsiOperation):
|
|
1753
1753
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1754
|
-
def result(self,
|
|
1754
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1755
1755
|
"""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"""
|
|
1756
1756
|
...
|
|
1757
1757
|
|
|
1758
|
-
def results(self,
|
|
1758
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1759
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"""
|
|
1760
1760
|
...
|
|
1761
1761
|
|
|
@@ -1766,11 +1766,11 @@ class GetCharactersCharacterIdMailOperation(EsiOperation):
|
|
|
1766
1766
|
|
|
1767
1767
|
class GetCharactersCharacterIdMailLabelsOperation(EsiOperation):
|
|
1768
1768
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1769
|
-
def result(self,
|
|
1769
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1770
1770
|
"""Return a list of the users mail labels, unread counts for each label and a total unread count."""
|
|
1771
1771
|
...
|
|
1772
1772
|
|
|
1773
|
-
def results(self,
|
|
1773
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1774
1774
|
"""Return a list of the users mail labels, unread counts for each label and a total unread count."""
|
|
1775
1775
|
...
|
|
1776
1776
|
|
|
@@ -1781,11 +1781,11 @@ class GetCharactersCharacterIdMailLabelsOperation(EsiOperation):
|
|
|
1781
1781
|
|
|
1782
1782
|
class GetCharactersCharacterIdMailListsOperation(EsiOperation):
|
|
1783
1783
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1784
|
-
def result(self,
|
|
1784
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1785
1785
|
"""Return all mailing lists that the character is subscribed to"""
|
|
1786
1786
|
...
|
|
1787
1787
|
|
|
1788
|
-
def results(self,
|
|
1788
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1789
1789
|
"""Return all mailing lists that the character is subscribed to"""
|
|
1790
1790
|
...
|
|
1791
1791
|
|
|
@@ -1796,11 +1796,11 @@ class GetCharactersCharacterIdMailListsOperation(EsiOperation):
|
|
|
1796
1796
|
|
|
1797
1797
|
class GetCharactersCharacterIdMailMailIdOperation(EsiOperation):
|
|
1798
1798
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1799
|
-
def result(self,
|
|
1799
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1800
1800
|
"""Return the contents of an EVE mail"""
|
|
1801
1801
|
...
|
|
1802
1802
|
|
|
1803
|
-
def results(self,
|
|
1803
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1804
1804
|
"""Return the contents of an EVE mail"""
|
|
1805
1805
|
...
|
|
1806
1806
|
|
|
@@ -1811,11 +1811,11 @@ class GetCharactersCharacterIdMailMailIdOperation(EsiOperation):
|
|
|
1811
1811
|
|
|
1812
1812
|
class PostCharactersCharacterIdMailOperation(EsiOperation):
|
|
1813
1813
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1814
|
-
def result(self,
|
|
1814
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> int:
|
|
1815
1815
|
"""Create and send a new mail"""
|
|
1816
1816
|
...
|
|
1817
1817
|
|
|
1818
|
-
def results(self,
|
|
1818
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
1819
1819
|
"""Create and send a new mail"""
|
|
1820
1820
|
...
|
|
1821
1821
|
|
|
@@ -1826,11 +1826,11 @@ class PostCharactersCharacterIdMailOperation(EsiOperation):
|
|
|
1826
1826
|
|
|
1827
1827
|
class PostCharactersCharacterIdMailLabelsOperation(EsiOperation):
|
|
1828
1828
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1829
|
-
def result(self,
|
|
1829
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> int:
|
|
1830
1830
|
"""Create a mail label"""
|
|
1831
1831
|
...
|
|
1832
1832
|
|
|
1833
|
-
def results(self,
|
|
1833
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
1834
1834
|
"""Create a mail label"""
|
|
1835
1835
|
...
|
|
1836
1836
|
|
|
@@ -1841,17 +1841,17 @@ class PostCharactersCharacterIdMailLabelsOperation(EsiOperation):
|
|
|
1841
1841
|
|
|
1842
1842
|
class PutCharactersCharacterIdMailMailIdOperation(EsiOperation):
|
|
1843
1843
|
"""EsiOperation, use result()"""
|
|
1844
|
-
def result(self,
|
|
1844
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> None:
|
|
1845
1845
|
"""Update metadata about a mail"""
|
|
1846
1846
|
...
|
|
1847
1847
|
|
|
1848
1848
|
class GetCharactersCharacterIdOrdersOperation(EsiOperation):
|
|
1849
1849
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1850
|
-
def result(self,
|
|
1850
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1851
1851
|
"""List open market orders placed by a character"""
|
|
1852
1852
|
...
|
|
1853
1853
|
|
|
1854
|
-
def results(self,
|
|
1854
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1855
1855
|
"""List open market orders placed by a character"""
|
|
1856
1856
|
...
|
|
1857
1857
|
|
|
@@ -1862,11 +1862,11 @@ class GetCharactersCharacterIdOrdersOperation(EsiOperation):
|
|
|
1862
1862
|
|
|
1863
1863
|
class GetCharactersCharacterIdOrdersHistoryOperation(EsiOperation):
|
|
1864
1864
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1865
|
-
def result(self,
|
|
1865
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1866
1866
|
"""List cancelled and expired market orders placed by a character up to 90 days in the past."""
|
|
1867
1867
|
...
|
|
1868
1868
|
|
|
1869
|
-
def results(self,
|
|
1869
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1870
1870
|
"""List cancelled and expired market orders placed by a character up to 90 days in the past."""
|
|
1871
1871
|
...
|
|
1872
1872
|
|
|
@@ -1877,11 +1877,11 @@ class GetCharactersCharacterIdOrdersHistoryOperation(EsiOperation):
|
|
|
1877
1877
|
|
|
1878
1878
|
class GetCorporationsCorporationIdOrdersOperation(EsiOperation):
|
|
1879
1879
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1880
|
-
def result(self,
|
|
1880
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1881
1881
|
"""List open market orders placed on behalf of a corporation"""
|
|
1882
1882
|
...
|
|
1883
1883
|
|
|
1884
|
-
def results(self,
|
|
1884
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1885
1885
|
"""List open market orders placed on behalf of a corporation"""
|
|
1886
1886
|
...
|
|
1887
1887
|
|
|
@@ -1892,11 +1892,11 @@ class GetCorporationsCorporationIdOrdersOperation(EsiOperation):
|
|
|
1892
1892
|
|
|
1893
1893
|
class GetCorporationsCorporationIdOrdersHistoryOperation(EsiOperation):
|
|
1894
1894
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1895
|
-
def result(self,
|
|
1895
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1896
1896
|
"""List cancelled and expired market orders placed on behalf of a corporation up to 90 days in the past."""
|
|
1897
1897
|
...
|
|
1898
1898
|
|
|
1899
|
-
def results(self,
|
|
1899
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1900
1900
|
"""List cancelled and expired market orders placed on behalf of a corporation up to 90 days in the past."""
|
|
1901
1901
|
...
|
|
1902
1902
|
|
|
@@ -1907,11 +1907,11 @@ class GetCorporationsCorporationIdOrdersHistoryOperation(EsiOperation):
|
|
|
1907
1907
|
|
|
1908
1908
|
class GetMarketsGroupsOperation(EsiOperation):
|
|
1909
1909
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1910
|
-
def result(self,
|
|
1910
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
1911
1911
|
"""Get a list of item groups This route expires daily at 11:05"""
|
|
1912
1912
|
...
|
|
1913
1913
|
|
|
1914
|
-
def results(self,
|
|
1914
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
1915
1915
|
"""Get a list of item groups This route expires daily at 11:05"""
|
|
1916
1916
|
...
|
|
1917
1917
|
|
|
@@ -1922,11 +1922,11 @@ class GetMarketsGroupsOperation(EsiOperation):
|
|
|
1922
1922
|
|
|
1923
1923
|
class GetMarketsGroupsMarketGroupIdOperation(EsiOperation):
|
|
1924
1924
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1925
|
-
def result(self,
|
|
1925
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
1926
1926
|
"""Get information on an item group This route expires daily at 11:05"""
|
|
1927
1927
|
...
|
|
1928
1928
|
|
|
1929
|
-
def results(self,
|
|
1929
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1930
1930
|
"""Get information on an item group This route expires daily at 11:05"""
|
|
1931
1931
|
...
|
|
1932
1932
|
|
|
@@ -1937,11 +1937,11 @@ class GetMarketsGroupsMarketGroupIdOperation(EsiOperation):
|
|
|
1937
1937
|
|
|
1938
1938
|
class GetMarketsPricesOperation(EsiOperation):
|
|
1939
1939
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1940
|
-
def result(self,
|
|
1940
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1941
1941
|
"""Return a list of prices"""
|
|
1942
1942
|
...
|
|
1943
1943
|
|
|
1944
|
-
def results(self,
|
|
1944
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1945
1945
|
"""Return a list of prices"""
|
|
1946
1946
|
...
|
|
1947
1947
|
|
|
@@ -1952,11 +1952,11 @@ class GetMarketsPricesOperation(EsiOperation):
|
|
|
1952
1952
|
|
|
1953
1953
|
class GetMarketsRegionIdHistoryOperation(EsiOperation):
|
|
1954
1954
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1955
|
-
def result(self,
|
|
1955
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1956
1956
|
"""Return a list of historical market statistics for the specified type in a region This route expires daily at 11:05"""
|
|
1957
1957
|
...
|
|
1958
1958
|
|
|
1959
|
-
def results(self,
|
|
1959
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1960
1960
|
"""Return a list of historical market statistics for the specified type in a region This route expires daily at 11:05"""
|
|
1961
1961
|
...
|
|
1962
1962
|
|
|
@@ -1967,11 +1967,11 @@ class GetMarketsRegionIdHistoryOperation(EsiOperation):
|
|
|
1967
1967
|
|
|
1968
1968
|
class GetMarketsRegionIdOrdersOperation(EsiOperation):
|
|
1969
1969
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1970
|
-
def result(self,
|
|
1970
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1971
1971
|
"""Return a list of orders in a region"""
|
|
1972
1972
|
...
|
|
1973
1973
|
|
|
1974
|
-
def results(self,
|
|
1974
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
1975
1975
|
"""Return a list of orders in a region"""
|
|
1976
1976
|
...
|
|
1977
1977
|
|
|
@@ -1982,11 +1982,11 @@ class GetMarketsRegionIdOrdersOperation(EsiOperation):
|
|
|
1982
1982
|
|
|
1983
1983
|
class GetMarketsRegionIdTypesOperation(EsiOperation):
|
|
1984
1984
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
1985
|
-
def result(self,
|
|
1985
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
1986
1986
|
"""Return a list of type IDs that have active orders in the region, for efficient market indexing."""
|
|
1987
1987
|
...
|
|
1988
1988
|
|
|
1989
|
-
def results(self,
|
|
1989
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
1990
1990
|
"""Return a list of type IDs that have active orders in the region, for efficient market indexing."""
|
|
1991
1991
|
...
|
|
1992
1992
|
|
|
@@ -1997,11 +1997,11 @@ class GetMarketsRegionIdTypesOperation(EsiOperation):
|
|
|
1997
1997
|
|
|
1998
1998
|
class GetMarketsStructuresStructureIdOperation(EsiOperation):
|
|
1999
1999
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2000
|
-
def result(self,
|
|
2000
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2001
2001
|
"""Return all orders in a structure"""
|
|
2002
2002
|
...
|
|
2003
2003
|
|
|
2004
|
-
def results(self,
|
|
2004
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2005
2005
|
"""Return all orders in a structure"""
|
|
2006
2006
|
...
|
|
2007
2007
|
|
|
@@ -2010,13 +2010,43 @@ class GetMarketsStructuresStructureIdOperation(EsiOperation):
|
|
|
2010
2010
|
...
|
|
2011
2011
|
|
|
2012
2012
|
|
|
2013
|
+
class GetMetaChangelogOperation(EsiOperation):
|
|
2014
|
+
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2015
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2016
|
+
"""Get the changelog of this API."""
|
|
2017
|
+
...
|
|
2018
|
+
|
|
2019
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: 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, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2031
|
+
"""Get a list of compatibility dates."""
|
|
2032
|
+
...
|
|
2033
|
+
|
|
2034
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: 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
|
+
|
|
2013
2043
|
class GetCharactersCharacterIdPlanetsOperation(EsiOperation):
|
|
2014
2044
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2015
|
-
def result(self,
|
|
2045
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2016
2046
|
"""Returns a list of all planetary colonies owned by a character."""
|
|
2017
2047
|
...
|
|
2018
2048
|
|
|
2019
|
-
def results(self,
|
|
2049
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2020
2050
|
"""Returns a list of all planetary colonies owned by a character."""
|
|
2021
2051
|
...
|
|
2022
2052
|
|
|
@@ -2027,11 +2057,11 @@ class GetCharactersCharacterIdPlanetsOperation(EsiOperation):
|
|
|
2027
2057
|
|
|
2028
2058
|
class GetCharactersCharacterIdPlanetsPlanetIdOperation(EsiOperation):
|
|
2029
2059
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2030
|
-
def result(self,
|
|
2060
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2031
2061
|
"""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."""
|
|
2032
2062
|
...
|
|
2033
2063
|
|
|
2034
|
-
def results(self,
|
|
2064
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2035
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."""
|
|
2036
2066
|
...
|
|
2037
2067
|
|
|
@@ -2042,11 +2072,11 @@ class GetCharactersCharacterIdPlanetsPlanetIdOperation(EsiOperation):
|
|
|
2042
2072
|
|
|
2043
2073
|
class GetCorporationsCorporationIdCustomsOfficesOperation(EsiOperation):
|
|
2044
2074
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2045
|
-
def result(self,
|
|
2075
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2046
2076
|
"""List customs offices owned by a corporation"""
|
|
2047
2077
|
...
|
|
2048
2078
|
|
|
2049
|
-
def results(self,
|
|
2079
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2050
2080
|
"""List customs offices owned by a corporation"""
|
|
2051
2081
|
...
|
|
2052
2082
|
|
|
@@ -2057,11 +2087,11 @@ class GetCorporationsCorporationIdCustomsOfficesOperation(EsiOperation):
|
|
|
2057
2087
|
|
|
2058
2088
|
class GetUniverseSchematicsSchematicIdOperation(EsiOperation):
|
|
2059
2089
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2060
|
-
def result(self,
|
|
2090
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2061
2091
|
"""Get information on a planetary factory schematic"""
|
|
2062
2092
|
...
|
|
2063
2093
|
|
|
2064
|
-
def results(self,
|
|
2094
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2065
2095
|
"""Get information on a planetary factory schematic"""
|
|
2066
2096
|
...
|
|
2067
2097
|
|
|
@@ -2072,11 +2102,11 @@ class GetUniverseSchematicsSchematicIdOperation(EsiOperation):
|
|
|
2072
2102
|
|
|
2073
2103
|
class GetRouteOriginDestinationOperation(EsiOperation):
|
|
2074
2104
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2075
|
-
def result(self,
|
|
2105
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
2076
2106
|
"""Get the systems between origin and destination"""
|
|
2077
2107
|
...
|
|
2078
2108
|
|
|
2079
|
-
def results(self,
|
|
2109
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
2080
2110
|
"""Get the systems between origin and destination"""
|
|
2081
2111
|
...
|
|
2082
2112
|
|
|
@@ -2087,11 +2117,11 @@ class GetRouteOriginDestinationOperation(EsiOperation):
|
|
|
2087
2117
|
|
|
2088
2118
|
class GetCharactersCharacterIdSearchOperation(EsiOperation):
|
|
2089
2119
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2090
|
-
def result(self,
|
|
2120
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2091
2121
|
"""Search for entities that match a given sub-string."""
|
|
2092
2122
|
...
|
|
2093
2123
|
|
|
2094
|
-
def results(self,
|
|
2124
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2095
2125
|
"""Search for entities that match a given sub-string."""
|
|
2096
2126
|
...
|
|
2097
2127
|
|
|
@@ -2102,11 +2132,11 @@ class GetCharactersCharacterIdSearchOperation(EsiOperation):
|
|
|
2102
2132
|
|
|
2103
2133
|
class GetCharactersCharacterIdAttributesOperation(EsiOperation):
|
|
2104
2134
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2105
|
-
def result(self,
|
|
2135
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2106
2136
|
"""Return attributes of a character"""
|
|
2107
2137
|
...
|
|
2108
2138
|
|
|
2109
|
-
def results(self,
|
|
2139
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2110
2140
|
"""Return attributes of a character"""
|
|
2111
2141
|
...
|
|
2112
2142
|
|
|
@@ -2117,11 +2147,11 @@ class GetCharactersCharacterIdAttributesOperation(EsiOperation):
|
|
|
2117
2147
|
|
|
2118
2148
|
class GetCharactersCharacterIdSkillqueueOperation(EsiOperation):
|
|
2119
2149
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2120
|
-
def result(self,
|
|
2150
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2121
2151
|
"""List the configured skill queue for the given character"""
|
|
2122
2152
|
...
|
|
2123
2153
|
|
|
2124
|
-
def results(self,
|
|
2154
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2125
2155
|
"""List the configured skill queue for the given character"""
|
|
2126
2156
|
...
|
|
2127
2157
|
|
|
@@ -2132,11 +2162,11 @@ class GetCharactersCharacterIdSkillqueueOperation(EsiOperation):
|
|
|
2132
2162
|
|
|
2133
2163
|
class GetCharactersCharacterIdSkillsOperation(EsiOperation):
|
|
2134
2164
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2135
|
-
def result(self,
|
|
2165
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2136
2166
|
"""List all trained skills for the given character"""
|
|
2137
2167
|
...
|
|
2138
2168
|
|
|
2139
|
-
def results(self,
|
|
2169
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2140
2170
|
"""List all trained skills for the given character"""
|
|
2141
2171
|
...
|
|
2142
2172
|
|
|
@@ -2147,11 +2177,11 @@ class GetCharactersCharacterIdSkillsOperation(EsiOperation):
|
|
|
2147
2177
|
|
|
2148
2178
|
class GetSovereigntyCampaignsOperation(EsiOperation):
|
|
2149
2179
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2150
|
-
def result(self,
|
|
2180
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2151
2181
|
"""Shows sovereignty data for campaigns."""
|
|
2152
2182
|
...
|
|
2153
2183
|
|
|
2154
|
-
def results(self,
|
|
2184
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2155
2185
|
"""Shows sovereignty data for campaigns."""
|
|
2156
2186
|
...
|
|
2157
2187
|
|
|
@@ -2162,11 +2192,11 @@ class GetSovereigntyCampaignsOperation(EsiOperation):
|
|
|
2162
2192
|
|
|
2163
2193
|
class GetSovereigntyMapOperation(EsiOperation):
|
|
2164
2194
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2165
|
-
def result(self,
|
|
2195
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2166
2196
|
"""Shows sovereignty information for solar systems"""
|
|
2167
2197
|
...
|
|
2168
2198
|
|
|
2169
|
-
def results(self,
|
|
2199
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2170
2200
|
"""Shows sovereignty information for solar systems"""
|
|
2171
2201
|
...
|
|
2172
2202
|
|
|
@@ -2177,11 +2207,11 @@ class GetSovereigntyMapOperation(EsiOperation):
|
|
|
2177
2207
|
|
|
2178
2208
|
class GetSovereigntyStructuresOperation(EsiOperation):
|
|
2179
2209
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2180
|
-
def result(self,
|
|
2210
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2181
2211
|
"""Shows sovereignty data for structures."""
|
|
2182
2212
|
...
|
|
2183
2213
|
|
|
2184
|
-
def results(self,
|
|
2214
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2185
2215
|
"""Shows sovereignty data for structures."""
|
|
2186
2216
|
...
|
|
2187
2217
|
|
|
@@ -2192,11 +2222,11 @@ class GetSovereigntyStructuresOperation(EsiOperation):
|
|
|
2192
2222
|
|
|
2193
2223
|
class GetStatusOperation(EsiOperation):
|
|
2194
2224
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2195
|
-
def result(self,
|
|
2225
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2196
2226
|
"""EVE Server status"""
|
|
2197
2227
|
...
|
|
2198
2228
|
|
|
2199
|
-
def results(self,
|
|
2229
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2200
2230
|
"""EVE Server status"""
|
|
2201
2231
|
...
|
|
2202
2232
|
|
|
@@ -2207,11 +2237,11 @@ class GetStatusOperation(EsiOperation):
|
|
|
2207
2237
|
|
|
2208
2238
|
class GetUniverseAncestriesOperation(EsiOperation):
|
|
2209
2239
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2210
|
-
def result(self,
|
|
2240
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2211
2241
|
"""Get all character ancestries This route expires daily at 11:05"""
|
|
2212
2242
|
...
|
|
2213
2243
|
|
|
2214
|
-
def results(self,
|
|
2244
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2215
2245
|
"""Get all character ancestries This route expires daily at 11:05"""
|
|
2216
2246
|
...
|
|
2217
2247
|
|
|
@@ -2222,11 +2252,11 @@ class GetUniverseAncestriesOperation(EsiOperation):
|
|
|
2222
2252
|
|
|
2223
2253
|
class GetUniverseAsteroidBeltsAsteroidBeltIdOperation(EsiOperation):
|
|
2224
2254
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2225
|
-
def result(self,
|
|
2255
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2226
2256
|
"""Get information on an asteroid belt This route expires daily at 11:05"""
|
|
2227
2257
|
...
|
|
2228
2258
|
|
|
2229
|
-
def results(self,
|
|
2259
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2230
2260
|
"""Get information on an asteroid belt This route expires daily at 11:05"""
|
|
2231
2261
|
...
|
|
2232
2262
|
|
|
@@ -2237,11 +2267,11 @@ class GetUniverseAsteroidBeltsAsteroidBeltIdOperation(EsiOperation):
|
|
|
2237
2267
|
|
|
2238
2268
|
class GetUniverseBloodlinesOperation(EsiOperation):
|
|
2239
2269
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2240
|
-
def result(self,
|
|
2270
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2241
2271
|
"""Get a list of bloodlines This route expires daily at 11:05"""
|
|
2242
2272
|
...
|
|
2243
2273
|
|
|
2244
|
-
def results(self,
|
|
2274
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2245
2275
|
"""Get a list of bloodlines This route expires daily at 11:05"""
|
|
2246
2276
|
...
|
|
2247
2277
|
|
|
@@ -2252,11 +2282,11 @@ class GetUniverseBloodlinesOperation(EsiOperation):
|
|
|
2252
2282
|
|
|
2253
2283
|
class GetUniverseCategoriesOperation(EsiOperation):
|
|
2254
2284
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2255
|
-
def result(self,
|
|
2285
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
2256
2286
|
"""Get a list of item categories This route expires daily at 11:05"""
|
|
2257
2287
|
...
|
|
2258
2288
|
|
|
2259
|
-
def results(self,
|
|
2289
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
2260
2290
|
"""Get a list of item categories This route expires daily at 11:05"""
|
|
2261
2291
|
...
|
|
2262
2292
|
|
|
@@ -2267,11 +2297,11 @@ class GetUniverseCategoriesOperation(EsiOperation):
|
|
|
2267
2297
|
|
|
2268
2298
|
class GetUniverseCategoriesCategoryIdOperation(EsiOperation):
|
|
2269
2299
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2270
|
-
def result(self,
|
|
2300
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2271
2301
|
"""Get information of an item category This route expires daily at 11:05"""
|
|
2272
2302
|
...
|
|
2273
2303
|
|
|
2274
|
-
def results(self,
|
|
2304
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2275
2305
|
"""Get information of an item category This route expires daily at 11:05"""
|
|
2276
2306
|
...
|
|
2277
2307
|
|
|
@@ -2282,11 +2312,11 @@ class GetUniverseCategoriesCategoryIdOperation(EsiOperation):
|
|
|
2282
2312
|
|
|
2283
2313
|
class GetUniverseConstellationsOperation(EsiOperation):
|
|
2284
2314
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2285
|
-
def result(self,
|
|
2315
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
2286
2316
|
"""Get a list of constellations This route expires daily at 11:05"""
|
|
2287
2317
|
...
|
|
2288
2318
|
|
|
2289
|
-
def results(self,
|
|
2319
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
2290
2320
|
"""Get a list of constellations This route expires daily at 11:05"""
|
|
2291
2321
|
...
|
|
2292
2322
|
|
|
@@ -2297,11 +2327,11 @@ class GetUniverseConstellationsOperation(EsiOperation):
|
|
|
2297
2327
|
|
|
2298
2328
|
class GetUniverseConstellationsConstellationIdOperation(EsiOperation):
|
|
2299
2329
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2300
|
-
def result(self,
|
|
2330
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2301
2331
|
"""Get information on a constellation This route expires daily at 11:05"""
|
|
2302
2332
|
...
|
|
2303
2333
|
|
|
2304
|
-
def results(self,
|
|
2334
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2305
2335
|
"""Get information on a constellation This route expires daily at 11:05"""
|
|
2306
2336
|
...
|
|
2307
2337
|
|
|
@@ -2312,11 +2342,11 @@ class GetUniverseConstellationsConstellationIdOperation(EsiOperation):
|
|
|
2312
2342
|
|
|
2313
2343
|
class GetUniverseFactionsOperation(EsiOperation):
|
|
2314
2344
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2315
|
-
def result(self,
|
|
2345
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2316
2346
|
"""Get a list of factions This route expires daily at 11:05"""
|
|
2317
2347
|
...
|
|
2318
2348
|
|
|
2319
|
-
def results(self,
|
|
2349
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2320
2350
|
"""Get a list of factions This route expires daily at 11:05"""
|
|
2321
2351
|
...
|
|
2322
2352
|
|
|
@@ -2327,11 +2357,11 @@ class GetUniverseFactionsOperation(EsiOperation):
|
|
|
2327
2357
|
|
|
2328
2358
|
class GetUniverseGraphicsOperation(EsiOperation):
|
|
2329
2359
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2330
|
-
def result(self,
|
|
2360
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
2331
2361
|
"""Get a list of graphics This route expires daily at 11:05"""
|
|
2332
2362
|
...
|
|
2333
2363
|
|
|
2334
|
-
def results(self,
|
|
2364
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
2335
2365
|
"""Get a list of graphics This route expires daily at 11:05"""
|
|
2336
2366
|
...
|
|
2337
2367
|
|
|
@@ -2342,11 +2372,11 @@ class GetUniverseGraphicsOperation(EsiOperation):
|
|
|
2342
2372
|
|
|
2343
2373
|
class GetUniverseGraphicsGraphicIdOperation(EsiOperation):
|
|
2344
2374
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2345
|
-
def result(self,
|
|
2375
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2346
2376
|
"""Get information on a graphic This route expires daily at 11:05"""
|
|
2347
2377
|
...
|
|
2348
2378
|
|
|
2349
|
-
def results(self,
|
|
2379
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2350
2380
|
"""Get information on a graphic This route expires daily at 11:05"""
|
|
2351
2381
|
...
|
|
2352
2382
|
|
|
@@ -2357,11 +2387,11 @@ class GetUniverseGraphicsGraphicIdOperation(EsiOperation):
|
|
|
2357
2387
|
|
|
2358
2388
|
class GetUniverseGroupsOperation(EsiOperation):
|
|
2359
2389
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2360
|
-
def result(self,
|
|
2390
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
2361
2391
|
"""Get a list of item groups This route expires daily at 11:05"""
|
|
2362
2392
|
...
|
|
2363
2393
|
|
|
2364
|
-
def results(self,
|
|
2394
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
2365
2395
|
"""Get a list of item groups This route expires daily at 11:05"""
|
|
2366
2396
|
...
|
|
2367
2397
|
|
|
@@ -2372,11 +2402,11 @@ class GetUniverseGroupsOperation(EsiOperation):
|
|
|
2372
2402
|
|
|
2373
2403
|
class GetUniverseGroupsGroupIdOperation(EsiOperation):
|
|
2374
2404
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2375
|
-
def result(self,
|
|
2405
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2376
2406
|
"""Get information on an item group This route expires daily at 11:05"""
|
|
2377
2407
|
...
|
|
2378
2408
|
|
|
2379
|
-
def results(self,
|
|
2409
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2380
2410
|
"""Get information on an item group This route expires daily at 11:05"""
|
|
2381
2411
|
...
|
|
2382
2412
|
|
|
@@ -2387,11 +2417,11 @@ class GetUniverseGroupsGroupIdOperation(EsiOperation):
|
|
|
2387
2417
|
|
|
2388
2418
|
class GetUniverseMoonsMoonIdOperation(EsiOperation):
|
|
2389
2419
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2390
|
-
def result(self,
|
|
2420
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2391
2421
|
"""Get information on a moon This route expires daily at 11:05"""
|
|
2392
2422
|
...
|
|
2393
2423
|
|
|
2394
|
-
def results(self,
|
|
2424
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2395
2425
|
"""Get information on a moon This route expires daily at 11:05"""
|
|
2396
2426
|
...
|
|
2397
2427
|
|
|
@@ -2402,11 +2432,11 @@ class GetUniverseMoonsMoonIdOperation(EsiOperation):
|
|
|
2402
2432
|
|
|
2403
2433
|
class GetUniversePlanetsPlanetIdOperation(EsiOperation):
|
|
2404
2434
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2405
|
-
def result(self,
|
|
2435
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2406
2436
|
"""Get information on a planet This route expires daily at 11:05"""
|
|
2407
2437
|
...
|
|
2408
2438
|
|
|
2409
|
-
def results(self,
|
|
2439
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2410
2440
|
"""Get information on a planet This route expires daily at 11:05"""
|
|
2411
2441
|
...
|
|
2412
2442
|
|
|
@@ -2417,11 +2447,11 @@ class GetUniversePlanetsPlanetIdOperation(EsiOperation):
|
|
|
2417
2447
|
|
|
2418
2448
|
class GetUniverseRacesOperation(EsiOperation):
|
|
2419
2449
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2420
|
-
def result(self,
|
|
2450
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2421
2451
|
"""Get a list of character races This route expires daily at 11:05"""
|
|
2422
2452
|
...
|
|
2423
2453
|
|
|
2424
|
-
def results(self,
|
|
2454
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2425
2455
|
"""Get a list of character races This route expires daily at 11:05"""
|
|
2426
2456
|
...
|
|
2427
2457
|
|
|
@@ -2432,11 +2462,11 @@ class GetUniverseRacesOperation(EsiOperation):
|
|
|
2432
2462
|
|
|
2433
2463
|
class GetUniverseRegionsOperation(EsiOperation):
|
|
2434
2464
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2435
|
-
def result(self,
|
|
2465
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
2436
2466
|
"""Get a list of regions This route expires daily at 11:05"""
|
|
2437
2467
|
...
|
|
2438
2468
|
|
|
2439
|
-
def results(self,
|
|
2469
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
2440
2470
|
"""Get a list of regions This route expires daily at 11:05"""
|
|
2441
2471
|
...
|
|
2442
2472
|
|
|
@@ -2447,11 +2477,11 @@ class GetUniverseRegionsOperation(EsiOperation):
|
|
|
2447
2477
|
|
|
2448
2478
|
class GetUniverseRegionsRegionIdOperation(EsiOperation):
|
|
2449
2479
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2450
|
-
def result(self,
|
|
2480
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2451
2481
|
"""Get information on a region This route expires daily at 11:05"""
|
|
2452
2482
|
...
|
|
2453
2483
|
|
|
2454
|
-
def results(self,
|
|
2484
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2455
2485
|
"""Get information on a region This route expires daily at 11:05"""
|
|
2456
2486
|
...
|
|
2457
2487
|
|
|
@@ -2462,11 +2492,11 @@ class GetUniverseRegionsRegionIdOperation(EsiOperation):
|
|
|
2462
2492
|
|
|
2463
2493
|
class GetUniverseStargatesStargateIdOperation(EsiOperation):
|
|
2464
2494
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2465
|
-
def result(self,
|
|
2495
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2466
2496
|
"""Get information on a stargate This route expires daily at 11:05"""
|
|
2467
2497
|
...
|
|
2468
2498
|
|
|
2469
|
-
def results(self,
|
|
2499
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2470
2500
|
"""Get information on a stargate This route expires daily at 11:05"""
|
|
2471
2501
|
...
|
|
2472
2502
|
|
|
@@ -2477,11 +2507,11 @@ class GetUniverseStargatesStargateIdOperation(EsiOperation):
|
|
|
2477
2507
|
|
|
2478
2508
|
class GetUniverseStarsStarIdOperation(EsiOperation):
|
|
2479
2509
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2480
|
-
def result(self,
|
|
2510
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2481
2511
|
"""Get information on a star This route expires daily at 11:05"""
|
|
2482
2512
|
...
|
|
2483
2513
|
|
|
2484
|
-
def results(self,
|
|
2514
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2485
2515
|
"""Get information on a star This route expires daily at 11:05"""
|
|
2486
2516
|
...
|
|
2487
2517
|
|
|
@@ -2492,11 +2522,11 @@ class GetUniverseStarsStarIdOperation(EsiOperation):
|
|
|
2492
2522
|
|
|
2493
2523
|
class GetUniverseStationsStationIdOperation(EsiOperation):
|
|
2494
2524
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2495
|
-
def result(self,
|
|
2525
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2496
2526
|
"""Get information on a station This route expires daily at 11:05"""
|
|
2497
2527
|
...
|
|
2498
2528
|
|
|
2499
|
-
def results(self,
|
|
2529
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2500
2530
|
"""Get information on a station This route expires daily at 11:05"""
|
|
2501
2531
|
...
|
|
2502
2532
|
|
|
@@ -2507,11 +2537,11 @@ class GetUniverseStationsStationIdOperation(EsiOperation):
|
|
|
2507
2537
|
|
|
2508
2538
|
class GetUniverseStructuresOperation(EsiOperation):
|
|
2509
2539
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2510
|
-
def result(self,
|
|
2540
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
2511
2541
|
"""List all public structures"""
|
|
2512
2542
|
...
|
|
2513
2543
|
|
|
2514
|
-
def results(self,
|
|
2544
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
2515
2545
|
"""List all public structures"""
|
|
2516
2546
|
...
|
|
2517
2547
|
|
|
@@ -2522,11 +2552,11 @@ class GetUniverseStructuresOperation(EsiOperation):
|
|
|
2522
2552
|
|
|
2523
2553
|
class GetUniverseStructuresStructureIdOperation(EsiOperation):
|
|
2524
2554
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2525
|
-
def result(self,
|
|
2555
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2526
2556
|
"""Returns information on requested structure if you are on the ACL. Otherwise, returns "Forbidden" for all inputs."""
|
|
2527
2557
|
...
|
|
2528
2558
|
|
|
2529
|
-
def results(self,
|
|
2559
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2530
2560
|
"""Returns information on requested structure if you are on the ACL. Otherwise, returns "Forbidden" for all inputs."""
|
|
2531
2561
|
...
|
|
2532
2562
|
|
|
@@ -2537,11 +2567,11 @@ class GetUniverseStructuresStructureIdOperation(EsiOperation):
|
|
|
2537
2567
|
|
|
2538
2568
|
class GetUniverseSystemJumpsOperation(EsiOperation):
|
|
2539
2569
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2540
|
-
def result(self,
|
|
2570
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2541
2571
|
"""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"""
|
|
2542
2572
|
...
|
|
2543
2573
|
|
|
2544
|
-
def results(self,
|
|
2574
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2545
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"""
|
|
2546
2576
|
...
|
|
2547
2577
|
|
|
@@ -2552,11 +2582,11 @@ class GetUniverseSystemJumpsOperation(EsiOperation):
|
|
|
2552
2582
|
|
|
2553
2583
|
class GetUniverseSystemKillsOperation(EsiOperation):
|
|
2554
2584
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2555
|
-
def result(self,
|
|
2585
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2556
2586
|
"""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"""
|
|
2557
2587
|
...
|
|
2558
2588
|
|
|
2559
|
-
def results(self,
|
|
2589
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2560
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"""
|
|
2561
2591
|
...
|
|
2562
2592
|
|
|
@@ -2567,11 +2597,11 @@ class GetUniverseSystemKillsOperation(EsiOperation):
|
|
|
2567
2597
|
|
|
2568
2598
|
class GetUniverseSystemsOperation(EsiOperation):
|
|
2569
2599
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2570
|
-
def result(self,
|
|
2600
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
2571
2601
|
"""Get a list of solar systems This route expires daily at 11:05"""
|
|
2572
2602
|
...
|
|
2573
2603
|
|
|
2574
|
-
def results(self,
|
|
2604
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
2575
2605
|
"""Get a list of solar systems This route expires daily at 11:05"""
|
|
2576
2606
|
...
|
|
2577
2607
|
|
|
@@ -2582,11 +2612,11 @@ class GetUniverseSystemsOperation(EsiOperation):
|
|
|
2582
2612
|
|
|
2583
2613
|
class GetUniverseSystemsSystemIdOperation(EsiOperation):
|
|
2584
2614
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2585
|
-
def result(self,
|
|
2615
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2586
2616
|
"""Get information on a solar system. This route expires daily at 11:05"""
|
|
2587
2617
|
...
|
|
2588
2618
|
|
|
2589
|
-
def results(self,
|
|
2619
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2590
2620
|
"""Get information on a solar system. This route expires daily at 11:05"""
|
|
2591
2621
|
...
|
|
2592
2622
|
|
|
@@ -2597,11 +2627,11 @@ class GetUniverseSystemsSystemIdOperation(EsiOperation):
|
|
|
2597
2627
|
|
|
2598
2628
|
class GetUniverseTypesOperation(EsiOperation):
|
|
2599
2629
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2600
|
-
def result(self,
|
|
2630
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
2601
2631
|
"""Get a list of type ids This route expires daily at 11:05"""
|
|
2602
2632
|
...
|
|
2603
2633
|
|
|
2604
|
-
def results(self,
|
|
2634
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
2605
2635
|
"""Get a list of type ids This route expires daily at 11:05"""
|
|
2606
2636
|
...
|
|
2607
2637
|
|
|
@@ -2612,11 +2642,11 @@ class GetUniverseTypesOperation(EsiOperation):
|
|
|
2612
2642
|
|
|
2613
2643
|
class GetUniverseTypesTypeIdOperation(EsiOperation):
|
|
2614
2644
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2615
|
-
def result(self,
|
|
2645
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2616
2646
|
"""Get information on a type This route expires daily at 11:05"""
|
|
2617
2647
|
...
|
|
2618
2648
|
|
|
2619
|
-
def results(self,
|
|
2649
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2620
2650
|
"""Get information on a type This route expires daily at 11:05"""
|
|
2621
2651
|
...
|
|
2622
2652
|
|
|
@@ -2627,11 +2657,11 @@ class GetUniverseTypesTypeIdOperation(EsiOperation):
|
|
|
2627
2657
|
|
|
2628
2658
|
class PostUniverseIdsOperation(EsiOperation):
|
|
2629
2659
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2630
|
-
def result(self,
|
|
2660
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> Any:
|
|
2631
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"""
|
|
2632
2662
|
...
|
|
2633
2663
|
|
|
2634
|
-
def results(self,
|
|
2664
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
2635
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"""
|
|
2636
2666
|
...
|
|
2637
2667
|
|
|
@@ -2642,11 +2672,11 @@ class PostUniverseIdsOperation(EsiOperation):
|
|
|
2642
2672
|
|
|
2643
2673
|
class PostUniverseNamesOperation(EsiOperation):
|
|
2644
2674
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2645
|
-
def result(self,
|
|
2675
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> Any:
|
|
2646
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"""
|
|
2647
2677
|
...
|
|
2648
2678
|
|
|
2649
|
-
def results(self,
|
|
2679
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
2650
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"""
|
|
2651
2681
|
...
|
|
2652
2682
|
|
|
@@ -2657,11 +2687,11 @@ class PostUniverseNamesOperation(EsiOperation):
|
|
|
2657
2687
|
|
|
2658
2688
|
class PostUiAutopilotWaypointOperation(EsiOperation):
|
|
2659
2689
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2660
|
-
def result(self,
|
|
2690
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> Any:
|
|
2661
2691
|
"""Set a solar system as autopilot waypoint"""
|
|
2662
2692
|
...
|
|
2663
2693
|
|
|
2664
|
-
def results(self,
|
|
2694
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
2665
2695
|
"""Set a solar system as autopilot waypoint"""
|
|
2666
2696
|
...
|
|
2667
2697
|
|
|
@@ -2672,11 +2702,11 @@ class PostUiAutopilotWaypointOperation(EsiOperation):
|
|
|
2672
2702
|
|
|
2673
2703
|
class PostUiOpenwindowContractOperation(EsiOperation):
|
|
2674
2704
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2675
|
-
def result(self,
|
|
2705
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> Any:
|
|
2676
2706
|
"""Open the contract window inside the client"""
|
|
2677
2707
|
...
|
|
2678
2708
|
|
|
2679
|
-
def results(self,
|
|
2709
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
2680
2710
|
"""Open the contract window inside the client"""
|
|
2681
2711
|
...
|
|
2682
2712
|
|
|
@@ -2687,11 +2717,11 @@ class PostUiOpenwindowContractOperation(EsiOperation):
|
|
|
2687
2717
|
|
|
2688
2718
|
class PostUiOpenwindowInformationOperation(EsiOperation):
|
|
2689
2719
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2690
|
-
def result(self,
|
|
2720
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> Any:
|
|
2691
2721
|
"""Open the information window for a character, corporation or alliance inside the client"""
|
|
2692
2722
|
...
|
|
2693
2723
|
|
|
2694
|
-
def results(self,
|
|
2724
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
2695
2725
|
"""Open the information window for a character, corporation or alliance inside the client"""
|
|
2696
2726
|
...
|
|
2697
2727
|
|
|
@@ -2702,11 +2732,11 @@ class PostUiOpenwindowInformationOperation(EsiOperation):
|
|
|
2702
2732
|
|
|
2703
2733
|
class PostUiOpenwindowMarketdetailsOperation(EsiOperation):
|
|
2704
2734
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2705
|
-
def result(self,
|
|
2735
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> Any:
|
|
2706
2736
|
"""Open the market details window for a specific typeID inside the client"""
|
|
2707
2737
|
...
|
|
2708
2738
|
|
|
2709
|
-
def results(self,
|
|
2739
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
2710
2740
|
"""Open the market details window for a specific typeID inside the client"""
|
|
2711
2741
|
...
|
|
2712
2742
|
|
|
@@ -2717,11 +2747,11 @@ class PostUiOpenwindowMarketdetailsOperation(EsiOperation):
|
|
|
2717
2747
|
|
|
2718
2748
|
class PostUiOpenwindowNewmailOperation(EsiOperation):
|
|
2719
2749
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2720
|
-
def result(self,
|
|
2750
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> Any:
|
|
2721
2751
|
"""Open the New Mail window, according to settings from the request if applicable"""
|
|
2722
2752
|
...
|
|
2723
2753
|
|
|
2724
|
-
def results(self,
|
|
2754
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[Any]:
|
|
2725
2755
|
"""Open the New Mail window, according to settings from the request if applicable"""
|
|
2726
2756
|
...
|
|
2727
2757
|
|
|
@@ -2732,11 +2762,11 @@ class PostUiOpenwindowNewmailOperation(EsiOperation):
|
|
|
2732
2762
|
|
|
2733
2763
|
class GetCharactersCharacterIdWalletOperation(EsiOperation):
|
|
2734
2764
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2735
|
-
def result(self,
|
|
2765
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> float:
|
|
2736
2766
|
"""Returns a character's wallet balance"""
|
|
2737
2767
|
...
|
|
2738
2768
|
|
|
2739
|
-
def results(self,
|
|
2769
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[float]:
|
|
2740
2770
|
"""Returns a character's wallet balance"""
|
|
2741
2771
|
...
|
|
2742
2772
|
|
|
@@ -2747,11 +2777,11 @@ class GetCharactersCharacterIdWalletOperation(EsiOperation):
|
|
|
2747
2777
|
|
|
2748
2778
|
class GetCharactersCharacterIdWalletJournalOperation(EsiOperation):
|
|
2749
2779
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2750
|
-
def result(self,
|
|
2780
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2751
2781
|
"""Retrieve the given character's wallet journal going 30 days back"""
|
|
2752
2782
|
...
|
|
2753
2783
|
|
|
2754
|
-
def results(self,
|
|
2784
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2755
2785
|
"""Retrieve the given character's wallet journal going 30 days back"""
|
|
2756
2786
|
...
|
|
2757
2787
|
|
|
@@ -2762,11 +2792,11 @@ class GetCharactersCharacterIdWalletJournalOperation(EsiOperation):
|
|
|
2762
2792
|
|
|
2763
2793
|
class GetCharactersCharacterIdWalletTransactionsOperation(EsiOperation):
|
|
2764
2794
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2765
|
-
def result(self,
|
|
2795
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2766
2796
|
"""Get wallet transactions of a character"""
|
|
2767
2797
|
...
|
|
2768
2798
|
|
|
2769
|
-
def results(self,
|
|
2799
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2770
2800
|
"""Get wallet transactions of a character"""
|
|
2771
2801
|
...
|
|
2772
2802
|
|
|
@@ -2777,11 +2807,11 @@ class GetCharactersCharacterIdWalletTransactionsOperation(EsiOperation):
|
|
|
2777
2807
|
|
|
2778
2808
|
class GetCorporationsCorporationIdWalletsOperation(EsiOperation):
|
|
2779
2809
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2780
|
-
def result(self,
|
|
2810
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2781
2811
|
"""Get a corporation's wallets"""
|
|
2782
2812
|
...
|
|
2783
2813
|
|
|
2784
|
-
def results(self,
|
|
2814
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2785
2815
|
"""Get a corporation's wallets"""
|
|
2786
2816
|
...
|
|
2787
2817
|
|
|
@@ -2792,11 +2822,11 @@ class GetCorporationsCorporationIdWalletsOperation(EsiOperation):
|
|
|
2792
2822
|
|
|
2793
2823
|
class GetCorporationsCorporationIdWalletsDivisionJournalOperation(EsiOperation):
|
|
2794
2824
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2795
|
-
def result(self,
|
|
2825
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2796
2826
|
"""Retrieve the given corporation's wallet journal for the given division going 30 days back"""
|
|
2797
2827
|
...
|
|
2798
2828
|
|
|
2799
|
-
def results(self,
|
|
2829
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2800
2830
|
"""Retrieve the given corporation's wallet journal for the given division going 30 days back"""
|
|
2801
2831
|
...
|
|
2802
2832
|
|
|
@@ -2807,11 +2837,11 @@ class GetCorporationsCorporationIdWalletsDivisionJournalOperation(EsiOperation):
|
|
|
2807
2837
|
|
|
2808
2838
|
class GetCorporationsCorporationIdWalletsDivisionTransactionsOperation(EsiOperation):
|
|
2809
2839
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2810
|
-
def result(self,
|
|
2840
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2811
2841
|
"""Get wallet transactions of a corporation"""
|
|
2812
2842
|
...
|
|
2813
2843
|
|
|
2814
|
-
def results(self,
|
|
2844
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2815
2845
|
"""Get wallet transactions of a corporation"""
|
|
2816
2846
|
...
|
|
2817
2847
|
|
|
@@ -2822,11 +2852,11 @@ class GetCorporationsCorporationIdWalletsDivisionTransactionsOperation(EsiOperat
|
|
|
2822
2852
|
|
|
2823
2853
|
class GetWarsOperation(EsiOperation):
|
|
2824
2854
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2825
|
-
def result(self,
|
|
2855
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
2826
2856
|
"""Return a list of wars"""
|
|
2827
2857
|
...
|
|
2828
2858
|
|
|
2829
|
-
def results(self,
|
|
2859
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[int]:
|
|
2830
2860
|
"""Return a list of wars"""
|
|
2831
2861
|
...
|
|
2832
2862
|
|
|
@@ -2837,11 +2867,11 @@ class GetWarsOperation(EsiOperation):
|
|
|
2837
2867
|
|
|
2838
2868
|
class GetWarsWarIdOperation(EsiOperation):
|
|
2839
2869
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2840
|
-
def result(self,
|
|
2870
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> dict[str, Any]:
|
|
2841
2871
|
"""Return details about a war"""
|
|
2842
2872
|
...
|
|
2843
2873
|
|
|
2844
|
-
def results(self,
|
|
2874
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2845
2875
|
"""Return details about a war"""
|
|
2846
2876
|
...
|
|
2847
2877
|
|
|
@@ -2852,11 +2882,11 @@ class GetWarsWarIdOperation(EsiOperation):
|
|
|
2852
2882
|
|
|
2853
2883
|
class GetWarsWarIdKillmailsOperation(EsiOperation):
|
|
2854
2884
|
"""EsiOperation, use result(), results() or results_localized()"""
|
|
2855
|
-
def result(self,
|
|
2885
|
+
def result(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2856
2886
|
"""Return a list of kills related to a war"""
|
|
2857
2887
|
...
|
|
2858
2888
|
|
|
2859
|
-
def results(self,
|
|
2889
|
+
def results(self, use_etag: bool = True, return_response: bool = False, force_refresh: bool = False, use_cache: bool = True, **extra) -> list[dict[str, Any]]:
|
|
2860
2890
|
"""Return a list of kills related to a war"""
|
|
2861
2891
|
...
|
|
2862
2892
|
|
|
@@ -3518,6 +3548,18 @@ class ESIClientStub:
|
|
|
3518
3548
|
|
|
3519
3549
|
Market: _Market = _Market()
|
|
3520
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
|
+
|
|
3521
3563
|
class _Planetary_Interaction:
|
|
3522
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:
|
|
3523
3565
|
"""Returns a list of all planetary colonies owned by a character."""
|