@localisprimary/esi 1.0.2 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -6
- package/dist/client.d.ts +197 -195
- package/dist/client.js +10 -0
- package/dist/types.d.ts +1034 -2
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -1,13 +1,18 @@
|
|
|
1
|
-
export interface EsiResponse<TData
|
|
1
|
+
export interface EsiResponse<TData, THeaders = Record<string, string>> {
|
|
2
2
|
data: TData;
|
|
3
3
|
status: number;
|
|
4
|
-
headers:
|
|
4
|
+
headers: THeaders;
|
|
5
5
|
}
|
|
6
6
|
export interface EsiError {
|
|
7
7
|
error: string;
|
|
8
8
|
status: number;
|
|
9
9
|
}
|
|
10
10
|
export type GetAlliancesResponse = number[];
|
|
11
|
+
export interface GetAlliancesResponseHeaders {
|
|
12
|
+
'Cache-Control'?: string;
|
|
13
|
+
ETag?: string;
|
|
14
|
+
'Last-Modified'?: string;
|
|
15
|
+
}
|
|
11
16
|
export interface GetAllianceResponse {
|
|
12
17
|
creator_corporation_id: number;
|
|
13
18
|
creator_id: number;
|
|
@@ -20,6 +25,11 @@ export interface GetAllianceResponse {
|
|
|
20
25
|
export interface GetAllianceParams {
|
|
21
26
|
alliance_id: number | string;
|
|
22
27
|
}
|
|
28
|
+
export interface GetAllianceResponseHeaders {
|
|
29
|
+
'Cache-Control'?: string;
|
|
30
|
+
ETag?: string;
|
|
31
|
+
'Last-Modified'?: string;
|
|
32
|
+
}
|
|
23
33
|
export type GetAllianceContactsResponse = {
|
|
24
34
|
contact_id: number;
|
|
25
35
|
contact_type: 'character' | 'corporation' | 'alliance' | 'faction';
|
|
@@ -30,6 +40,12 @@ export interface GetAllianceContactsParams {
|
|
|
30
40
|
alliance_id: number | string;
|
|
31
41
|
page?: number;
|
|
32
42
|
}
|
|
43
|
+
export interface GetAllianceContactsResponseHeaders {
|
|
44
|
+
'Cache-Control'?: string;
|
|
45
|
+
ETag?: string;
|
|
46
|
+
'Last-Modified'?: string;
|
|
47
|
+
'X-Pages'?: number;
|
|
48
|
+
}
|
|
33
49
|
export type GetAllianceContactsLabelsResponse = {
|
|
34
50
|
label_id: number;
|
|
35
51
|
label_name: string;
|
|
@@ -37,10 +53,20 @@ export type GetAllianceContactsLabelsResponse = {
|
|
|
37
53
|
export interface GetAllianceContactsLabelsParams {
|
|
38
54
|
alliance_id: number | string;
|
|
39
55
|
}
|
|
56
|
+
export interface GetAllianceContactsLabelsResponseHeaders {
|
|
57
|
+
'Cache-Control'?: string;
|
|
58
|
+
ETag?: string;
|
|
59
|
+
'Last-Modified'?: string;
|
|
60
|
+
}
|
|
40
61
|
export type GetAllianceCorporationsResponse = number[];
|
|
41
62
|
export interface GetAllianceCorporationsParams {
|
|
42
63
|
alliance_id: number | string;
|
|
43
64
|
}
|
|
65
|
+
export interface GetAllianceCorporationsResponseHeaders {
|
|
66
|
+
'Cache-Control'?: string;
|
|
67
|
+
ETag?: string;
|
|
68
|
+
'Last-Modified'?: string;
|
|
69
|
+
}
|
|
44
70
|
export interface GetAllianceIconsResponse {
|
|
45
71
|
px128x128?: string;
|
|
46
72
|
px64x64?: string;
|
|
@@ -48,6 +74,11 @@ export interface GetAllianceIconsResponse {
|
|
|
48
74
|
export interface GetAllianceIconsParams {
|
|
49
75
|
alliance_id: number | string;
|
|
50
76
|
}
|
|
77
|
+
export interface GetAllianceIconsResponseHeaders {
|
|
78
|
+
'Cache-Control'?: string;
|
|
79
|
+
ETag?: string;
|
|
80
|
+
'Last-Modified'?: string;
|
|
81
|
+
}
|
|
51
82
|
export type PostCharactersAffiliationResponse = {
|
|
52
83
|
alliance_id: number;
|
|
53
84
|
character_id: number;
|
|
@@ -57,6 +88,11 @@ export type PostCharactersAffiliationResponse = {
|
|
|
57
88
|
export interface PostCharactersAffiliationParams {
|
|
58
89
|
body: number[];
|
|
59
90
|
}
|
|
91
|
+
export interface PostCharactersAffiliationResponseHeaders {
|
|
92
|
+
'Cache-Control'?: string;
|
|
93
|
+
ETag?: string;
|
|
94
|
+
'Last-Modified'?: string;
|
|
95
|
+
}
|
|
60
96
|
export interface GetCharacterResponse {
|
|
61
97
|
alliance_id?: number;
|
|
62
98
|
birthday: string;
|
|
@@ -73,6 +109,11 @@ export interface GetCharacterResponse {
|
|
|
73
109
|
export interface GetCharacterParams {
|
|
74
110
|
character_id: number | string;
|
|
75
111
|
}
|
|
112
|
+
export interface GetCharacterResponseHeaders {
|
|
113
|
+
'Cache-Control'?: string;
|
|
114
|
+
ETag?: string;
|
|
115
|
+
'Last-Modified'?: string;
|
|
116
|
+
}
|
|
76
117
|
export type GetCharacterAgentsResearchResponse = {
|
|
77
118
|
agent_id: number;
|
|
78
119
|
points_per_day: number;
|
|
@@ -83,6 +124,11 @@ export type GetCharacterAgentsResearchResponse = {
|
|
|
83
124
|
export interface GetCharacterAgentsResearchParams {
|
|
84
125
|
character_id: number | string;
|
|
85
126
|
}
|
|
127
|
+
export interface GetCharacterAgentsResearchResponseHeaders {
|
|
128
|
+
'Cache-Control'?: string;
|
|
129
|
+
ETag?: string;
|
|
130
|
+
'Last-Modified'?: string;
|
|
131
|
+
}
|
|
86
132
|
export type GetCharacterAssetsResponse = {
|
|
87
133
|
is_blueprint_copy: boolean;
|
|
88
134
|
is_singleton: boolean;
|
|
@@ -97,6 +143,12 @@ export interface GetCharacterAssetsParams {
|
|
|
97
143
|
character_id: number | string;
|
|
98
144
|
page?: number;
|
|
99
145
|
}
|
|
146
|
+
export interface GetCharacterAssetsResponseHeaders {
|
|
147
|
+
'Cache-Control'?: string;
|
|
148
|
+
ETag?: string;
|
|
149
|
+
'Last-Modified'?: string;
|
|
150
|
+
'X-Pages'?: number;
|
|
151
|
+
}
|
|
100
152
|
export type PostCharacterAssetsLocationsResponse = {
|
|
101
153
|
item_id: number;
|
|
102
154
|
position: {
|
|
@@ -109,6 +161,11 @@ export interface PostCharacterAssetsLocationsParams {
|
|
|
109
161
|
character_id: number | string;
|
|
110
162
|
body: number[];
|
|
111
163
|
}
|
|
164
|
+
export interface PostCharacterAssetsLocationsResponseHeaders {
|
|
165
|
+
'Cache-Control'?: string;
|
|
166
|
+
ETag?: string;
|
|
167
|
+
'Last-Modified'?: string;
|
|
168
|
+
}
|
|
112
169
|
export type PostCharacterAssetsNamesResponse = {
|
|
113
170
|
item_id: number;
|
|
114
171
|
name: string;
|
|
@@ -117,6 +174,11 @@ export interface PostCharacterAssetsNamesParams {
|
|
|
117
174
|
character_id: number | string;
|
|
118
175
|
body: number[];
|
|
119
176
|
}
|
|
177
|
+
export interface PostCharacterAssetsNamesResponseHeaders {
|
|
178
|
+
'Cache-Control'?: string;
|
|
179
|
+
ETag?: string;
|
|
180
|
+
'Last-Modified'?: string;
|
|
181
|
+
}
|
|
120
182
|
export interface GetCharacterAttributesResponse {
|
|
121
183
|
accrued_remap_cooldown_date?: string;
|
|
122
184
|
bonus_remaps?: number;
|
|
@@ -130,6 +192,11 @@ export interface GetCharacterAttributesResponse {
|
|
|
130
192
|
export interface GetCharacterAttributesParams {
|
|
131
193
|
character_id: number | string;
|
|
132
194
|
}
|
|
195
|
+
export interface GetCharacterAttributesResponseHeaders {
|
|
196
|
+
'Cache-Control'?: string;
|
|
197
|
+
ETag?: string;
|
|
198
|
+
'Last-Modified'?: string;
|
|
199
|
+
}
|
|
133
200
|
export type GetCharacterBlueprintsResponse = {
|
|
134
201
|
item_id: number;
|
|
135
202
|
location_flag: 'AutoFit' | 'Cargo' | 'CorpseBay' | 'DroneBay' | 'FleetHangar' | 'Deliveries' | 'HiddenModifiers' | 'Hangar' | 'HangarAll' | 'LoSlot0' | 'LoSlot1' | 'LoSlot2' | 'LoSlot3' | 'LoSlot4' | 'LoSlot5' | 'LoSlot6' | 'LoSlot7' | 'MedSlot0' | 'MedSlot1' | 'MedSlot2' | 'MedSlot3' | 'MedSlot4' | 'MedSlot5' | 'MedSlot6' | 'MedSlot7' | 'HiSlot0' | 'HiSlot1' | 'HiSlot2' | 'HiSlot3' | 'HiSlot4' | 'HiSlot5' | 'HiSlot6' | 'HiSlot7' | 'AssetSafety' | 'Locked' | 'Unlocked' | 'Implant' | 'QuafeBay' | 'RigSlot0' | 'RigSlot1' | 'RigSlot2' | 'RigSlot3' | 'RigSlot4' | 'RigSlot5' | 'RigSlot6' | 'RigSlot7' | 'ShipHangar' | 'SpecializedFuelBay' | 'SpecializedOreHold' | 'SpecializedGasHold' | 'SpecializedMineralHold' | 'SpecializedSalvageHold' | 'SpecializedShipHold' | 'SpecializedSmallShipHold' | 'SpecializedMediumShipHold' | 'SpecializedLargeShipHold' | 'SpecializedIndustrialShipHold' | 'SpecializedAmmoHold' | 'SpecializedCommandCenterHold' | 'SpecializedPlanetaryCommoditiesHold' | 'SpecializedMaterialBay' | 'SubSystemSlot0' | 'SubSystemSlot1' | 'SubSystemSlot2' | 'SubSystemSlot3' | 'SubSystemSlot4' | 'SubSystemSlot5' | 'SubSystemSlot6' | 'SubSystemSlot7' | 'FighterBay' | 'FighterTube0' | 'FighterTube1' | 'FighterTube2' | 'FighterTube3' | 'FighterTube4' | 'Module';
|
|
@@ -144,6 +211,12 @@ export interface GetCharacterBlueprintsParams {
|
|
|
144
211
|
character_id: number | string;
|
|
145
212
|
page?: number;
|
|
146
213
|
}
|
|
214
|
+
export interface GetCharacterBlueprintsResponseHeaders {
|
|
215
|
+
'Cache-Control'?: string;
|
|
216
|
+
ETag?: string;
|
|
217
|
+
'Last-Modified'?: string;
|
|
218
|
+
'X-Pages'?: number;
|
|
219
|
+
}
|
|
147
220
|
export type GetCharacterCalendarResponse = {
|
|
148
221
|
event_date: string;
|
|
149
222
|
event_id: number;
|
|
@@ -155,6 +228,11 @@ export interface GetCharacterCalendarParams {
|
|
|
155
228
|
character_id: number | string;
|
|
156
229
|
from_event?: number;
|
|
157
230
|
}
|
|
231
|
+
export interface GetCharacterCalendarResponseHeaders {
|
|
232
|
+
'Cache-Control'?: string;
|
|
233
|
+
ETag?: string;
|
|
234
|
+
'Last-Modified'?: string;
|
|
235
|
+
}
|
|
158
236
|
export interface GetCharacterCalendarEventIdResponse {
|
|
159
237
|
date: string;
|
|
160
238
|
duration: number;
|
|
@@ -171,12 +249,22 @@ export interface GetCharacterCalendarEventIdParams {
|
|
|
171
249
|
character_id: number | string;
|
|
172
250
|
event_id: number | string;
|
|
173
251
|
}
|
|
252
|
+
export interface GetCharacterCalendarEventIdResponseHeaders {
|
|
253
|
+
'Cache-Control'?: string;
|
|
254
|
+
ETag?: string;
|
|
255
|
+
'Last-Modified'?: string;
|
|
256
|
+
}
|
|
174
257
|
export type PutCharacterCalendarEventIdResponse = unknown;
|
|
175
258
|
export interface PutCharacterCalendarEventIdParams {
|
|
176
259
|
character_id: number | string;
|
|
177
260
|
event_id: number | string;
|
|
178
261
|
response: 'accepted' | 'declined' | 'tentative';
|
|
179
262
|
}
|
|
263
|
+
export interface PutCharacterCalendarEventIdResponseHeaders {
|
|
264
|
+
'Cache-Control'?: string;
|
|
265
|
+
ETag?: string;
|
|
266
|
+
'Last-Modified'?: string;
|
|
267
|
+
}
|
|
180
268
|
export type GetCharacterCalendarEventAttendeesResponse = {
|
|
181
269
|
character_id: number;
|
|
182
270
|
event_response: 'declined' | 'not_responded' | 'accepted' | 'tentative';
|
|
@@ -185,6 +273,11 @@ export interface GetCharacterCalendarEventAttendeesParams {
|
|
|
185
273
|
character_id: number | string;
|
|
186
274
|
event_id: number | string;
|
|
187
275
|
}
|
|
276
|
+
export interface GetCharacterCalendarEventAttendeesResponseHeaders {
|
|
277
|
+
'Cache-Control'?: string;
|
|
278
|
+
ETag?: string;
|
|
279
|
+
'Last-Modified'?: string;
|
|
280
|
+
}
|
|
188
281
|
export interface GetCharacterClonesResponse {
|
|
189
282
|
home_location?: {
|
|
190
283
|
location_id: number;
|
|
@@ -203,11 +296,21 @@ export interface GetCharacterClonesResponse {
|
|
|
203
296
|
export interface GetCharacterClonesParams {
|
|
204
297
|
character_id: number | string;
|
|
205
298
|
}
|
|
299
|
+
export interface GetCharacterClonesResponseHeaders {
|
|
300
|
+
'Cache-Control'?: string;
|
|
301
|
+
ETag?: string;
|
|
302
|
+
'Last-Modified'?: string;
|
|
303
|
+
}
|
|
206
304
|
export type DeleteCharacterContactsResponse = unknown;
|
|
207
305
|
export interface DeleteCharacterContactsParams {
|
|
208
306
|
character_id: number | string;
|
|
209
307
|
contact_ids?: number[];
|
|
210
308
|
}
|
|
309
|
+
export interface DeleteCharacterContactsResponseHeaders {
|
|
310
|
+
'Cache-Control'?: string;
|
|
311
|
+
ETag?: string;
|
|
312
|
+
'Last-Modified'?: string;
|
|
313
|
+
}
|
|
211
314
|
export type GetCharacterContactsResponse = {
|
|
212
315
|
contact_id: number;
|
|
213
316
|
contact_type: 'character' | 'corporation' | 'alliance' | 'faction';
|
|
@@ -220,6 +323,12 @@ export interface GetCharacterContactsParams {
|
|
|
220
323
|
character_id: number | string;
|
|
221
324
|
page?: number;
|
|
222
325
|
}
|
|
326
|
+
export interface GetCharacterContactsResponseHeaders {
|
|
327
|
+
'Cache-Control'?: string;
|
|
328
|
+
ETag?: string;
|
|
329
|
+
'Last-Modified'?: string;
|
|
330
|
+
'X-Pages'?: number;
|
|
331
|
+
}
|
|
223
332
|
export type PostCharacterContactsResponse = number[];
|
|
224
333
|
export interface PostCharacterContactsParams {
|
|
225
334
|
character_id: number | string;
|
|
@@ -228,6 +337,11 @@ export interface PostCharacterContactsParams {
|
|
|
228
337
|
watched?: boolean;
|
|
229
338
|
body: number[];
|
|
230
339
|
}
|
|
340
|
+
export interface PostCharacterContactsResponseHeaders {
|
|
341
|
+
'Cache-Control'?: string;
|
|
342
|
+
ETag?: string;
|
|
343
|
+
'Last-Modified'?: string;
|
|
344
|
+
}
|
|
231
345
|
export type PutCharacterContactsResponse = unknown;
|
|
232
346
|
export interface PutCharacterContactsParams {
|
|
233
347
|
character_id: number | string;
|
|
@@ -236,6 +350,11 @@ export interface PutCharacterContactsParams {
|
|
|
236
350
|
watched?: boolean;
|
|
237
351
|
body: number[];
|
|
238
352
|
}
|
|
353
|
+
export interface PutCharacterContactsResponseHeaders {
|
|
354
|
+
'Cache-Control'?: string;
|
|
355
|
+
ETag?: string;
|
|
356
|
+
'Last-Modified'?: string;
|
|
357
|
+
}
|
|
239
358
|
export type GetCharacterContactsLabelsResponse = {
|
|
240
359
|
label_id: number;
|
|
241
360
|
label_name: string;
|
|
@@ -243,6 +362,11 @@ export type GetCharacterContactsLabelsResponse = {
|
|
|
243
362
|
export interface GetCharacterContactsLabelsParams {
|
|
244
363
|
character_id: number | string;
|
|
245
364
|
}
|
|
365
|
+
export interface GetCharacterContactsLabelsResponseHeaders {
|
|
366
|
+
'Cache-Control'?: string;
|
|
367
|
+
ETag?: string;
|
|
368
|
+
'Last-Modified'?: string;
|
|
369
|
+
}
|
|
246
370
|
export type GetCharacterContractsResponse = {
|
|
247
371
|
acceptor_id: number;
|
|
248
372
|
assignee_id: number;
|
|
@@ -271,6 +395,12 @@ export interface GetCharacterContractsParams {
|
|
|
271
395
|
character_id: number | string;
|
|
272
396
|
page?: number;
|
|
273
397
|
}
|
|
398
|
+
export interface GetCharacterContractsResponseHeaders {
|
|
399
|
+
'Cache-Control'?: string;
|
|
400
|
+
ETag?: string;
|
|
401
|
+
'Last-Modified'?: string;
|
|
402
|
+
'X-Pages'?: number;
|
|
403
|
+
}
|
|
274
404
|
export type GetCharacterContractBidsResponse = {
|
|
275
405
|
amount: number;
|
|
276
406
|
bid_id: number;
|
|
@@ -281,6 +411,11 @@ export interface GetCharacterContractBidsParams {
|
|
|
281
411
|
character_id: number | string;
|
|
282
412
|
contract_id: number | string;
|
|
283
413
|
}
|
|
414
|
+
export interface GetCharacterContractBidsResponseHeaders {
|
|
415
|
+
'Cache-Control'?: string;
|
|
416
|
+
ETag?: string;
|
|
417
|
+
'Last-Modified'?: string;
|
|
418
|
+
}
|
|
284
419
|
export type GetCharacterContractItemsResponse = {
|
|
285
420
|
is_included: boolean;
|
|
286
421
|
is_singleton: boolean;
|
|
@@ -293,6 +428,11 @@ export interface GetCharacterContractItemsParams {
|
|
|
293
428
|
character_id: number | string;
|
|
294
429
|
contract_id: number | string;
|
|
295
430
|
}
|
|
431
|
+
export interface GetCharacterContractItemsResponseHeaders {
|
|
432
|
+
'Cache-Control'?: string;
|
|
433
|
+
ETag?: string;
|
|
434
|
+
'Last-Modified'?: string;
|
|
435
|
+
}
|
|
296
436
|
export type GetCharacterCorporationhistoryResponse = {
|
|
297
437
|
corporation_id: number;
|
|
298
438
|
is_deleted: boolean;
|
|
@@ -302,11 +442,21 @@ export type GetCharacterCorporationhistoryResponse = {
|
|
|
302
442
|
export interface GetCharacterCorporationhistoryParams {
|
|
303
443
|
character_id: number | string;
|
|
304
444
|
}
|
|
445
|
+
export interface GetCharacterCorporationhistoryResponseHeaders {
|
|
446
|
+
'Cache-Control'?: string;
|
|
447
|
+
ETag?: string;
|
|
448
|
+
'Last-Modified'?: string;
|
|
449
|
+
}
|
|
305
450
|
export type PostCharacterCspaResponse = number;
|
|
306
451
|
export interface PostCharacterCspaParams {
|
|
307
452
|
character_id: number | string;
|
|
308
453
|
body: number[];
|
|
309
454
|
}
|
|
455
|
+
export interface PostCharacterCspaResponseHeaders {
|
|
456
|
+
'Cache-Control'?: string;
|
|
457
|
+
ETag?: string;
|
|
458
|
+
'Last-Modified'?: string;
|
|
459
|
+
}
|
|
310
460
|
export interface GetCharacterFatigueResponse {
|
|
311
461
|
jump_fatigue_expire_date?: string;
|
|
312
462
|
last_jump_date?: string;
|
|
@@ -315,6 +465,11 @@ export interface GetCharacterFatigueResponse {
|
|
|
315
465
|
export interface GetCharacterFatigueParams {
|
|
316
466
|
character_id: number | string;
|
|
317
467
|
}
|
|
468
|
+
export interface GetCharacterFatigueResponseHeaders {
|
|
469
|
+
'Cache-Control'?: string;
|
|
470
|
+
ETag?: string;
|
|
471
|
+
'Last-Modified'?: string;
|
|
472
|
+
}
|
|
318
473
|
export type GetCharacterFittingsResponse = {
|
|
319
474
|
description: string;
|
|
320
475
|
fitting_id: number;
|
|
@@ -329,6 +484,11 @@ export type GetCharacterFittingsResponse = {
|
|
|
329
484
|
export interface GetCharacterFittingsParams {
|
|
330
485
|
character_id: number | string;
|
|
331
486
|
}
|
|
487
|
+
export interface GetCharacterFittingsResponseHeaders {
|
|
488
|
+
'Cache-Control'?: string;
|
|
489
|
+
ETag?: string;
|
|
490
|
+
'Last-Modified'?: string;
|
|
491
|
+
}
|
|
332
492
|
export interface PostCharacterFittingsResponse {
|
|
333
493
|
fitting_id: number;
|
|
334
494
|
}
|
|
@@ -343,11 +503,21 @@ export interface PostCharacterFittingsParams {
|
|
|
343
503
|
name: string;
|
|
344
504
|
ship_type_id: number;
|
|
345
505
|
}
|
|
506
|
+
export interface PostCharacterFittingsResponseHeaders {
|
|
507
|
+
'Cache-Control'?: string;
|
|
508
|
+
ETag?: string;
|
|
509
|
+
'Last-Modified'?: string;
|
|
510
|
+
}
|
|
346
511
|
export type DeleteCharacterFittingResponse = unknown;
|
|
347
512
|
export interface DeleteCharacterFittingParams {
|
|
348
513
|
character_id: number | string;
|
|
349
514
|
fitting_id: number | string;
|
|
350
515
|
}
|
|
516
|
+
export interface DeleteCharacterFittingResponseHeaders {
|
|
517
|
+
'Cache-Control'?: string;
|
|
518
|
+
ETag?: string;
|
|
519
|
+
'Last-Modified'?: string;
|
|
520
|
+
}
|
|
351
521
|
export interface GetCharacterFleetResponse {
|
|
352
522
|
fleet_boss_id: number;
|
|
353
523
|
fleet_id: number;
|
|
@@ -358,6 +528,11 @@ export interface GetCharacterFleetResponse {
|
|
|
358
528
|
export interface GetCharacterFleetParams {
|
|
359
529
|
character_id: number | string;
|
|
360
530
|
}
|
|
531
|
+
export interface GetCharacterFleetResponseHeaders {
|
|
532
|
+
'Cache-Control'?: string;
|
|
533
|
+
ETag?: string;
|
|
534
|
+
'Last-Modified'?: string;
|
|
535
|
+
}
|
|
361
536
|
export interface GetCharacterFwStatsResponse {
|
|
362
537
|
current_rank?: number;
|
|
363
538
|
enlisted_on?: string;
|
|
@@ -377,10 +552,20 @@ export interface GetCharacterFwStatsResponse {
|
|
|
377
552
|
export interface GetCharacterFwStatsParams {
|
|
378
553
|
character_id: number | string;
|
|
379
554
|
}
|
|
555
|
+
export interface GetCharacterFwStatsResponseHeaders {
|
|
556
|
+
'Cache-Control'?: string;
|
|
557
|
+
ETag?: string;
|
|
558
|
+
'Last-Modified'?: string;
|
|
559
|
+
}
|
|
380
560
|
export type GetCharacterImplantsResponse = number[];
|
|
381
561
|
export interface GetCharacterImplantsParams {
|
|
382
562
|
character_id: number | string;
|
|
383
563
|
}
|
|
564
|
+
export interface GetCharacterImplantsResponseHeaders {
|
|
565
|
+
'Cache-Control'?: string;
|
|
566
|
+
ETag?: string;
|
|
567
|
+
'Last-Modified'?: string;
|
|
568
|
+
}
|
|
384
569
|
export type GetCharacterIndustryJobsResponse = {
|
|
385
570
|
activity_id: number;
|
|
386
571
|
blueprint_id: number;
|
|
@@ -409,6 +594,11 @@ export interface GetCharacterIndustryJobsParams {
|
|
|
409
594
|
character_id: number | string;
|
|
410
595
|
include_completed?: boolean;
|
|
411
596
|
}
|
|
597
|
+
export interface GetCharacterIndustryJobsResponseHeaders {
|
|
598
|
+
'Cache-Control'?: string;
|
|
599
|
+
ETag?: string;
|
|
600
|
+
'Last-Modified'?: string;
|
|
601
|
+
}
|
|
412
602
|
export type GetCharacterKillmailsRecentResponse = {
|
|
413
603
|
killmail_hash: string;
|
|
414
604
|
killmail_id: number;
|
|
@@ -417,6 +607,12 @@ export interface GetCharacterKillmailsRecentParams {
|
|
|
417
607
|
character_id: number | string;
|
|
418
608
|
page?: number;
|
|
419
609
|
}
|
|
610
|
+
export interface GetCharacterKillmailsRecentResponseHeaders {
|
|
611
|
+
'Cache-Control'?: string;
|
|
612
|
+
ETag?: string;
|
|
613
|
+
'Last-Modified'?: string;
|
|
614
|
+
'X-Pages'?: number;
|
|
615
|
+
}
|
|
420
616
|
export interface GetCharacterLocationResponse {
|
|
421
617
|
solar_system_id: number;
|
|
422
618
|
station_id?: number;
|
|
@@ -425,6 +621,11 @@ export interface GetCharacterLocationResponse {
|
|
|
425
621
|
export interface GetCharacterLocationParams {
|
|
426
622
|
character_id: number | string;
|
|
427
623
|
}
|
|
624
|
+
export interface GetCharacterLocationResponseHeaders {
|
|
625
|
+
'Cache-Control'?: string;
|
|
626
|
+
ETag?: string;
|
|
627
|
+
'Last-Modified'?: string;
|
|
628
|
+
}
|
|
428
629
|
export type GetCharacterLoyaltyPointsResponse = {
|
|
429
630
|
corporation_id: number;
|
|
430
631
|
loyalty_points: number;
|
|
@@ -432,6 +633,11 @@ export type GetCharacterLoyaltyPointsResponse = {
|
|
|
432
633
|
export interface GetCharacterLoyaltyPointsParams {
|
|
433
634
|
character_id: number | string;
|
|
434
635
|
}
|
|
636
|
+
export interface GetCharacterLoyaltyPointsResponseHeaders {
|
|
637
|
+
'Cache-Control'?: string;
|
|
638
|
+
ETag?: string;
|
|
639
|
+
'Last-Modified'?: string;
|
|
640
|
+
}
|
|
435
641
|
export type GetCharacterMailResponse = {
|
|
436
642
|
from: number;
|
|
437
643
|
is_read: boolean;
|
|
@@ -449,6 +655,11 @@ export interface GetCharacterMailParams {
|
|
|
449
655
|
labels?: number[];
|
|
450
656
|
last_mail_id?: number;
|
|
451
657
|
}
|
|
658
|
+
export interface GetCharacterMailResponseHeaders {
|
|
659
|
+
'Cache-Control'?: string;
|
|
660
|
+
ETag?: string;
|
|
661
|
+
'Last-Modified'?: string;
|
|
662
|
+
}
|
|
452
663
|
export type PostCharacterMailResponse = number;
|
|
453
664
|
export interface PostCharacterMailParams {
|
|
454
665
|
character_id: number | string;
|
|
@@ -460,6 +671,11 @@ export interface PostCharacterMailParams {
|
|
|
460
671
|
}[];
|
|
461
672
|
subject: string;
|
|
462
673
|
}
|
|
674
|
+
export interface PostCharacterMailResponseHeaders {
|
|
675
|
+
'Cache-Control'?: string;
|
|
676
|
+
ETag?: string;
|
|
677
|
+
'Last-Modified'?: string;
|
|
678
|
+
}
|
|
463
679
|
export interface GetCharacterMailLabelsResponse {
|
|
464
680
|
labels?: {
|
|
465
681
|
color: '#0000fe' | '#006634' | '#0099ff' | '#00ff33' | '#01ffff' | '#349800' | '#660066' | '#666666' | '#999999' | '#99ffff' | '#9a0000' | '#ccff9a' | '#e6e6e6' | '#fe0000' | '#ff6600' | '#ffff01' | '#ffffcd' | '#ffffff';
|
|
@@ -472,17 +688,32 @@ export interface GetCharacterMailLabelsResponse {
|
|
|
472
688
|
export interface GetCharacterMailLabelsParams {
|
|
473
689
|
character_id: number | string;
|
|
474
690
|
}
|
|
691
|
+
export interface GetCharacterMailLabelsResponseHeaders {
|
|
692
|
+
'Cache-Control'?: string;
|
|
693
|
+
ETag?: string;
|
|
694
|
+
'Last-Modified'?: string;
|
|
695
|
+
}
|
|
475
696
|
export type PostCharacterMailLabelsResponse = number;
|
|
476
697
|
export interface PostCharacterMailLabelsParams {
|
|
477
698
|
character_id: number | string;
|
|
478
699
|
color?: '#0000fe' | '#006634' | '#0099ff' | '#00ff33' | '#01ffff' | '#349800' | '#660066' | '#666666' | '#999999' | '#99ffff' | '#9a0000' | '#ccff9a' | '#e6e6e6' | '#fe0000' | '#ff6600' | '#ffff01' | '#ffffcd' | '#ffffff';
|
|
479
700
|
name: string;
|
|
480
701
|
}
|
|
702
|
+
export interface PostCharacterMailLabelsResponseHeaders {
|
|
703
|
+
'Cache-Control'?: string;
|
|
704
|
+
ETag?: string;
|
|
705
|
+
'Last-Modified'?: string;
|
|
706
|
+
}
|
|
481
707
|
export type DeleteCharacterMailLabelResponse = unknown;
|
|
482
708
|
export interface DeleteCharacterMailLabelParams {
|
|
483
709
|
character_id: number | string;
|
|
484
710
|
label_id: number | string;
|
|
485
711
|
}
|
|
712
|
+
export interface DeleteCharacterMailLabelResponseHeaders {
|
|
713
|
+
'Cache-Control'?: string;
|
|
714
|
+
ETag?: string;
|
|
715
|
+
'Last-Modified'?: string;
|
|
716
|
+
}
|
|
486
717
|
export type GetCharacterMailListsResponse = {
|
|
487
718
|
mailing_list_id: number;
|
|
488
719
|
name: string;
|
|
@@ -490,11 +721,21 @@ export type GetCharacterMailListsResponse = {
|
|
|
490
721
|
export interface GetCharacterMailListsParams {
|
|
491
722
|
character_id: number | string;
|
|
492
723
|
}
|
|
724
|
+
export interface GetCharacterMailListsResponseHeaders {
|
|
725
|
+
'Cache-Control'?: string;
|
|
726
|
+
ETag?: string;
|
|
727
|
+
'Last-Modified'?: string;
|
|
728
|
+
}
|
|
493
729
|
export type DeleteCharacterMailMailIdResponse = unknown;
|
|
494
730
|
export interface DeleteCharacterMailMailIdParams {
|
|
495
731
|
character_id: number | string;
|
|
496
732
|
mail_id: number | string;
|
|
497
733
|
}
|
|
734
|
+
export interface DeleteCharacterMailMailIdResponseHeaders {
|
|
735
|
+
'Cache-Control'?: string;
|
|
736
|
+
ETag?: string;
|
|
737
|
+
'Last-Modified'?: string;
|
|
738
|
+
}
|
|
498
739
|
export interface GetCharacterMailMailIdResponse {
|
|
499
740
|
body?: string;
|
|
500
741
|
from?: number;
|
|
@@ -511,6 +752,11 @@ export interface GetCharacterMailMailIdParams {
|
|
|
511
752
|
character_id: number | string;
|
|
512
753
|
mail_id: number | string;
|
|
513
754
|
}
|
|
755
|
+
export interface GetCharacterMailMailIdResponseHeaders {
|
|
756
|
+
'Cache-Control'?: string;
|
|
757
|
+
ETag?: string;
|
|
758
|
+
'Last-Modified'?: string;
|
|
759
|
+
}
|
|
514
760
|
export type PutCharacterMailMailIdResponse = unknown;
|
|
515
761
|
export interface PutCharacterMailMailIdParams {
|
|
516
762
|
character_id: number | string;
|
|
@@ -518,6 +764,11 @@ export interface PutCharacterMailMailIdParams {
|
|
|
518
764
|
labels?: number[];
|
|
519
765
|
read?: boolean;
|
|
520
766
|
}
|
|
767
|
+
export interface PutCharacterMailMailIdResponseHeaders {
|
|
768
|
+
'Cache-Control'?: string;
|
|
769
|
+
ETag?: string;
|
|
770
|
+
'Last-Modified'?: string;
|
|
771
|
+
}
|
|
521
772
|
export type GetCharacterMedalsResponse = {
|
|
522
773
|
corporation_id: number;
|
|
523
774
|
date: string;
|
|
@@ -537,6 +788,11 @@ export type GetCharacterMedalsResponse = {
|
|
|
537
788
|
export interface GetCharacterMedalsParams {
|
|
538
789
|
character_id: number | string;
|
|
539
790
|
}
|
|
791
|
+
export interface GetCharacterMedalsResponseHeaders {
|
|
792
|
+
'Cache-Control'?: string;
|
|
793
|
+
ETag?: string;
|
|
794
|
+
'Last-Modified'?: string;
|
|
795
|
+
}
|
|
540
796
|
export type GetCharacterMiningResponse = {
|
|
541
797
|
date: string;
|
|
542
798
|
quantity: number;
|
|
@@ -547,6 +803,12 @@ export interface GetCharacterMiningParams {
|
|
|
547
803
|
character_id: number | string;
|
|
548
804
|
page?: number;
|
|
549
805
|
}
|
|
806
|
+
export interface GetCharacterMiningResponseHeaders {
|
|
807
|
+
'Cache-Control'?: string;
|
|
808
|
+
ETag?: string;
|
|
809
|
+
'Last-Modified'?: string;
|
|
810
|
+
'X-Pages'?: number;
|
|
811
|
+
}
|
|
550
812
|
export type GetCharacterNotificationsResponse = {
|
|
551
813
|
is_read: boolean;
|
|
552
814
|
notification_id: number;
|
|
@@ -559,6 +821,11 @@ export type GetCharacterNotificationsResponse = {
|
|
|
559
821
|
export interface GetCharacterNotificationsParams {
|
|
560
822
|
character_id: number | string;
|
|
561
823
|
}
|
|
824
|
+
export interface GetCharacterNotificationsResponseHeaders {
|
|
825
|
+
'Cache-Control'?: string;
|
|
826
|
+
ETag?: string;
|
|
827
|
+
'Last-Modified'?: string;
|
|
828
|
+
}
|
|
562
829
|
export type GetCharacterNotificationsContactsResponse = {
|
|
563
830
|
message: string;
|
|
564
831
|
notification_id: number;
|
|
@@ -569,6 +836,11 @@ export type GetCharacterNotificationsContactsResponse = {
|
|
|
569
836
|
export interface GetCharacterNotificationsContactsParams {
|
|
570
837
|
character_id: number | string;
|
|
571
838
|
}
|
|
839
|
+
export interface GetCharacterNotificationsContactsResponseHeaders {
|
|
840
|
+
'Cache-Control'?: string;
|
|
841
|
+
ETag?: string;
|
|
842
|
+
'Last-Modified'?: string;
|
|
843
|
+
}
|
|
572
844
|
export interface GetCharacterOnlineResponse {
|
|
573
845
|
last_login?: string;
|
|
574
846
|
last_logout?: string;
|
|
@@ -578,6 +850,11 @@ export interface GetCharacterOnlineResponse {
|
|
|
578
850
|
export interface GetCharacterOnlineParams {
|
|
579
851
|
character_id: number | string;
|
|
580
852
|
}
|
|
853
|
+
export interface GetCharacterOnlineResponseHeaders {
|
|
854
|
+
'Cache-Control'?: string;
|
|
855
|
+
ETag?: string;
|
|
856
|
+
'Last-Modified'?: string;
|
|
857
|
+
}
|
|
581
858
|
export type GetCharacterOrdersResponse = {
|
|
582
859
|
duration: number;
|
|
583
860
|
escrow: number;
|
|
@@ -597,6 +874,11 @@ export type GetCharacterOrdersResponse = {
|
|
|
597
874
|
export interface GetCharacterOrdersParams {
|
|
598
875
|
character_id: number | string;
|
|
599
876
|
}
|
|
877
|
+
export interface GetCharacterOrdersResponseHeaders {
|
|
878
|
+
'Cache-Control'?: string;
|
|
879
|
+
ETag?: string;
|
|
880
|
+
'Last-Modified'?: string;
|
|
881
|
+
}
|
|
600
882
|
export type GetCharacterOrdersHistoryResponse = {
|
|
601
883
|
duration: number;
|
|
602
884
|
escrow: number;
|
|
@@ -618,6 +900,12 @@ export interface GetCharacterOrdersHistoryParams {
|
|
|
618
900
|
character_id: number | string;
|
|
619
901
|
page?: number;
|
|
620
902
|
}
|
|
903
|
+
export interface GetCharacterOrdersHistoryResponseHeaders {
|
|
904
|
+
'Cache-Control'?: string;
|
|
905
|
+
ETag?: string;
|
|
906
|
+
'Last-Modified'?: string;
|
|
907
|
+
'X-Pages'?: number;
|
|
908
|
+
}
|
|
621
909
|
export type GetCharacterPlanetsResponse = {
|
|
622
910
|
last_update: string;
|
|
623
911
|
num_pins: number;
|
|
@@ -630,6 +918,11 @@ export type GetCharacterPlanetsResponse = {
|
|
|
630
918
|
export interface GetCharacterPlanetsParams {
|
|
631
919
|
character_id: number | string;
|
|
632
920
|
}
|
|
921
|
+
export interface GetCharacterPlanetsResponseHeaders {
|
|
922
|
+
'Cache-Control'?: string;
|
|
923
|
+
ETag?: string;
|
|
924
|
+
'Last-Modified'?: string;
|
|
925
|
+
}
|
|
633
926
|
export interface GetCharacterPlanetResponse {
|
|
634
927
|
links: {
|
|
635
928
|
destination_pin_id: number;
|
|
@@ -677,6 +970,11 @@ export interface GetCharacterPlanetParams {
|
|
|
677
970
|
character_id: number | string;
|
|
678
971
|
planet_id: number | string;
|
|
679
972
|
}
|
|
973
|
+
export interface GetCharacterPlanetResponseHeaders {
|
|
974
|
+
'Cache-Control'?: string;
|
|
975
|
+
ETag?: string;
|
|
976
|
+
'Last-Modified'?: string;
|
|
977
|
+
}
|
|
680
978
|
export interface GetCharacterPortraitResponse {
|
|
681
979
|
px128x128?: string;
|
|
682
980
|
px256x256?: string;
|
|
@@ -686,6 +984,11 @@ export interface GetCharacterPortraitResponse {
|
|
|
686
984
|
export interface GetCharacterPortraitParams {
|
|
687
985
|
character_id: number | string;
|
|
688
986
|
}
|
|
987
|
+
export interface GetCharacterPortraitResponseHeaders {
|
|
988
|
+
'Cache-Control'?: string;
|
|
989
|
+
ETag?: string;
|
|
990
|
+
'Last-Modified'?: string;
|
|
991
|
+
}
|
|
689
992
|
export interface GetCharacterRolesResponse {
|
|
690
993
|
roles?: 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Brand_Manager' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Deliveries_Container_Take' | 'Deliveries_Query' | 'Deliveries_Take' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Project_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Skill_Plan_Manager' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Trader'[];
|
|
691
994
|
roles_at_base?: 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Brand_Manager' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Deliveries_Container_Take' | 'Deliveries_Query' | 'Deliveries_Take' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Project_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Skill_Plan_Manager' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Trader'[];
|
|
@@ -695,6 +998,11 @@ export interface GetCharacterRolesResponse {
|
|
|
695
998
|
export interface GetCharacterRolesParams {
|
|
696
999
|
character_id: number | string;
|
|
697
1000
|
}
|
|
1001
|
+
export interface GetCharacterRolesResponseHeaders {
|
|
1002
|
+
'Cache-Control'?: string;
|
|
1003
|
+
ETag?: string;
|
|
1004
|
+
'Last-Modified'?: string;
|
|
1005
|
+
}
|
|
698
1006
|
export interface GetCharacterSearchResponse {
|
|
699
1007
|
agent?: number[];
|
|
700
1008
|
alliance?: number[];
|
|
@@ -714,6 +1022,12 @@ export interface GetCharacterSearchParams {
|
|
|
714
1022
|
search?: string;
|
|
715
1023
|
strict?: boolean;
|
|
716
1024
|
}
|
|
1025
|
+
export interface GetCharacterSearchResponseHeaders {
|
|
1026
|
+
'Cache-Control'?: string;
|
|
1027
|
+
'Content-Language'?: 'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es';
|
|
1028
|
+
ETag?: string;
|
|
1029
|
+
'Last-Modified'?: string;
|
|
1030
|
+
}
|
|
717
1031
|
export interface GetCharacterShipResponse {
|
|
718
1032
|
ship_item_id: number;
|
|
719
1033
|
ship_name: string;
|
|
@@ -722,6 +1036,11 @@ export interface GetCharacterShipResponse {
|
|
|
722
1036
|
export interface GetCharacterShipParams {
|
|
723
1037
|
character_id: number | string;
|
|
724
1038
|
}
|
|
1039
|
+
export interface GetCharacterShipResponseHeaders {
|
|
1040
|
+
'Cache-Control'?: string;
|
|
1041
|
+
ETag?: string;
|
|
1042
|
+
'Last-Modified'?: string;
|
|
1043
|
+
}
|
|
725
1044
|
export type GetCharacterSkillqueueResponse = {
|
|
726
1045
|
finish_date: string;
|
|
727
1046
|
finished_level: number;
|
|
@@ -735,6 +1054,11 @@ export type GetCharacterSkillqueueResponse = {
|
|
|
735
1054
|
export interface GetCharacterSkillqueueParams {
|
|
736
1055
|
character_id: number | string;
|
|
737
1056
|
}
|
|
1057
|
+
export interface GetCharacterSkillqueueResponseHeaders {
|
|
1058
|
+
'Cache-Control'?: string;
|
|
1059
|
+
ETag?: string;
|
|
1060
|
+
'Last-Modified'?: string;
|
|
1061
|
+
}
|
|
738
1062
|
export interface GetCharacterSkillsResponse {
|
|
739
1063
|
skills: {
|
|
740
1064
|
active_skill_level: number;
|
|
@@ -748,6 +1072,11 @@ export interface GetCharacterSkillsResponse {
|
|
|
748
1072
|
export interface GetCharacterSkillsParams {
|
|
749
1073
|
character_id: number | string;
|
|
750
1074
|
}
|
|
1075
|
+
export interface GetCharacterSkillsResponseHeaders {
|
|
1076
|
+
'Cache-Control'?: string;
|
|
1077
|
+
ETag?: string;
|
|
1078
|
+
'Last-Modified'?: string;
|
|
1079
|
+
}
|
|
751
1080
|
export type GetCharacterStandingsResponse = {
|
|
752
1081
|
from_id: number;
|
|
753
1082
|
from_type: 'agent' | 'npc_corp' | 'faction';
|
|
@@ -756,6 +1085,11 @@ export type GetCharacterStandingsResponse = {
|
|
|
756
1085
|
export interface GetCharacterStandingsParams {
|
|
757
1086
|
character_id: number | string;
|
|
758
1087
|
}
|
|
1088
|
+
export interface GetCharacterStandingsResponseHeaders {
|
|
1089
|
+
'Cache-Control'?: string;
|
|
1090
|
+
ETag?: string;
|
|
1091
|
+
'Last-Modified'?: string;
|
|
1092
|
+
}
|
|
759
1093
|
export type GetCharacterTitlesResponse = {
|
|
760
1094
|
name: string;
|
|
761
1095
|
title_id: number;
|
|
@@ -763,10 +1097,20 @@ export type GetCharacterTitlesResponse = {
|
|
|
763
1097
|
export interface GetCharacterTitlesParams {
|
|
764
1098
|
character_id: number | string;
|
|
765
1099
|
}
|
|
1100
|
+
export interface GetCharacterTitlesResponseHeaders {
|
|
1101
|
+
'Cache-Control'?: string;
|
|
1102
|
+
ETag?: string;
|
|
1103
|
+
'Last-Modified'?: string;
|
|
1104
|
+
}
|
|
766
1105
|
export type GetCharacterWalletResponse = number;
|
|
767
1106
|
export interface GetCharacterWalletParams {
|
|
768
1107
|
character_id: number | string;
|
|
769
1108
|
}
|
|
1109
|
+
export interface GetCharacterWalletResponseHeaders {
|
|
1110
|
+
'Cache-Control'?: string;
|
|
1111
|
+
ETag?: string;
|
|
1112
|
+
'Last-Modified'?: string;
|
|
1113
|
+
}
|
|
770
1114
|
export type GetCharacterWalletJournalResponse = {
|
|
771
1115
|
amount: number;
|
|
772
1116
|
balance: number;
|
|
@@ -786,6 +1130,12 @@ export interface GetCharacterWalletJournalParams {
|
|
|
786
1130
|
character_id: number | string;
|
|
787
1131
|
page?: number;
|
|
788
1132
|
}
|
|
1133
|
+
export interface GetCharacterWalletJournalResponseHeaders {
|
|
1134
|
+
'Cache-Control'?: string;
|
|
1135
|
+
ETag?: string;
|
|
1136
|
+
'Last-Modified'?: string;
|
|
1137
|
+
'X-Pages'?: number;
|
|
1138
|
+
}
|
|
789
1139
|
export type GetCharacterWalletTransactionsResponse = {
|
|
790
1140
|
client_id: number;
|
|
791
1141
|
date: string;
|
|
@@ -802,6 +1152,11 @@ export interface GetCharacterWalletTransactionsParams {
|
|
|
802
1152
|
character_id: number | string;
|
|
803
1153
|
from_id?: number;
|
|
804
1154
|
}
|
|
1155
|
+
export interface GetCharacterWalletTransactionsResponseHeaders {
|
|
1156
|
+
'Cache-Control'?: string;
|
|
1157
|
+
ETag?: string;
|
|
1158
|
+
'Last-Modified'?: string;
|
|
1159
|
+
}
|
|
805
1160
|
export type GetContractsPublicBidsResponse = {
|
|
806
1161
|
amount: number;
|
|
807
1162
|
bid_id: number;
|
|
@@ -811,6 +1166,12 @@ export interface GetContractsPublicBidsParams {
|
|
|
811
1166
|
contract_id: number | string;
|
|
812
1167
|
page?: number;
|
|
813
1168
|
}
|
|
1169
|
+
export interface GetContractsPublicBidsResponseHeaders {
|
|
1170
|
+
'Cache-Control'?: string;
|
|
1171
|
+
ETag?: string;
|
|
1172
|
+
'Last-Modified'?: string;
|
|
1173
|
+
'X-Pages'?: number;
|
|
1174
|
+
}
|
|
814
1175
|
export type GetContractsPublicItemsResponse = {
|
|
815
1176
|
is_blueprint_copy: boolean;
|
|
816
1177
|
is_included: boolean;
|
|
@@ -826,6 +1187,12 @@ export interface GetContractsPublicItemsParams {
|
|
|
826
1187
|
contract_id: number | string;
|
|
827
1188
|
page?: number;
|
|
828
1189
|
}
|
|
1190
|
+
export interface GetContractsPublicItemsResponseHeaders {
|
|
1191
|
+
'Cache-Control'?: string;
|
|
1192
|
+
ETag?: string;
|
|
1193
|
+
'Last-Modified'?: string;
|
|
1194
|
+
'X-Pages'?: number;
|
|
1195
|
+
}
|
|
829
1196
|
export type GetContractsPublicRegionIdResponse = {
|
|
830
1197
|
buyout: number;
|
|
831
1198
|
collateral: number;
|
|
@@ -848,6 +1215,12 @@ export interface GetContractsPublicRegionIdParams {
|
|
|
848
1215
|
region_id: number | string;
|
|
849
1216
|
page?: number;
|
|
850
1217
|
}
|
|
1218
|
+
export interface GetContractsPublicRegionIdResponseHeaders {
|
|
1219
|
+
'Cache-Control'?: string;
|
|
1220
|
+
ETag?: string;
|
|
1221
|
+
'Last-Modified'?: string;
|
|
1222
|
+
'X-Pages'?: number;
|
|
1223
|
+
}
|
|
851
1224
|
export type GetCorporationCorporationMiningExtractionsResponse = {
|
|
852
1225
|
chunk_arrival_time: string;
|
|
853
1226
|
extraction_start_time: string;
|
|
@@ -859,6 +1232,12 @@ export interface GetCorporationCorporationMiningExtractionsParams {
|
|
|
859
1232
|
corporation_id: number | string;
|
|
860
1233
|
page?: number;
|
|
861
1234
|
}
|
|
1235
|
+
export interface GetCorporationCorporationMiningExtractionsResponseHeaders {
|
|
1236
|
+
'Cache-Control'?: string;
|
|
1237
|
+
ETag?: string;
|
|
1238
|
+
'Last-Modified'?: string;
|
|
1239
|
+
'X-Pages'?: number;
|
|
1240
|
+
}
|
|
862
1241
|
export type GetCorporationCorporationMiningObserversResponse = {
|
|
863
1242
|
last_updated: string;
|
|
864
1243
|
observer_id: number;
|
|
@@ -868,6 +1247,12 @@ export interface GetCorporationCorporationMiningObserversParams {
|
|
|
868
1247
|
corporation_id: number | string;
|
|
869
1248
|
page?: number;
|
|
870
1249
|
}
|
|
1250
|
+
export interface GetCorporationCorporationMiningObserversResponseHeaders {
|
|
1251
|
+
'Cache-Control'?: string;
|
|
1252
|
+
ETag?: string;
|
|
1253
|
+
'Last-Modified'?: string;
|
|
1254
|
+
'X-Pages'?: number;
|
|
1255
|
+
}
|
|
871
1256
|
export type GetCorporationCorporationMiningObserverResponse = {
|
|
872
1257
|
character_id: number;
|
|
873
1258
|
last_updated: string;
|
|
@@ -880,7 +1265,18 @@ export interface GetCorporationCorporationMiningObserverParams {
|
|
|
880
1265
|
observer_id: number | string;
|
|
881
1266
|
page?: number;
|
|
882
1267
|
}
|
|
1268
|
+
export interface GetCorporationCorporationMiningObserverResponseHeaders {
|
|
1269
|
+
'Cache-Control'?: string;
|
|
1270
|
+
ETag?: string;
|
|
1271
|
+
'Last-Modified'?: string;
|
|
1272
|
+
'X-Pages'?: number;
|
|
1273
|
+
}
|
|
883
1274
|
export type GetCorporationsNpccorpsResponse = number[];
|
|
1275
|
+
export interface GetCorporationsNpccorpsResponseHeaders {
|
|
1276
|
+
'Cache-Control'?: string;
|
|
1277
|
+
ETag?: string;
|
|
1278
|
+
'Last-Modified'?: string;
|
|
1279
|
+
}
|
|
884
1280
|
export interface GetCorporationResponse {
|
|
885
1281
|
alliance_id?: number;
|
|
886
1282
|
ceo_id: number;
|
|
@@ -900,6 +1296,11 @@ export interface GetCorporationResponse {
|
|
|
900
1296
|
export interface GetCorporationParams {
|
|
901
1297
|
corporation_id: number | string;
|
|
902
1298
|
}
|
|
1299
|
+
export interface GetCorporationResponseHeaders {
|
|
1300
|
+
'Cache-Control'?: string;
|
|
1301
|
+
ETag?: string;
|
|
1302
|
+
'Last-Modified'?: string;
|
|
1303
|
+
}
|
|
903
1304
|
export type GetCorporationAlliancehistoryResponse = {
|
|
904
1305
|
alliance_id: number;
|
|
905
1306
|
is_deleted: boolean;
|
|
@@ -909,6 +1310,11 @@ export type GetCorporationAlliancehistoryResponse = {
|
|
|
909
1310
|
export interface GetCorporationAlliancehistoryParams {
|
|
910
1311
|
corporation_id: number | string;
|
|
911
1312
|
}
|
|
1313
|
+
export interface GetCorporationAlliancehistoryResponseHeaders {
|
|
1314
|
+
'Cache-Control'?: string;
|
|
1315
|
+
ETag?: string;
|
|
1316
|
+
'Last-Modified'?: string;
|
|
1317
|
+
}
|
|
912
1318
|
export type GetCorporationAssetsResponse = {
|
|
913
1319
|
is_blueprint_copy: boolean;
|
|
914
1320
|
is_singleton: boolean;
|
|
@@ -923,6 +1329,12 @@ export interface GetCorporationAssetsParams {
|
|
|
923
1329
|
corporation_id: number | string;
|
|
924
1330
|
page?: number;
|
|
925
1331
|
}
|
|
1332
|
+
export interface GetCorporationAssetsResponseHeaders {
|
|
1333
|
+
'Cache-Control'?: string;
|
|
1334
|
+
ETag?: string;
|
|
1335
|
+
'Last-Modified'?: string;
|
|
1336
|
+
'X-Pages'?: number;
|
|
1337
|
+
}
|
|
926
1338
|
export type PostCorporationAssetsLocationsResponse = {
|
|
927
1339
|
item_id: number;
|
|
928
1340
|
position: {
|
|
@@ -935,6 +1347,11 @@ export interface PostCorporationAssetsLocationsParams {
|
|
|
935
1347
|
corporation_id: number | string;
|
|
936
1348
|
body: number[];
|
|
937
1349
|
}
|
|
1350
|
+
export interface PostCorporationAssetsLocationsResponseHeaders {
|
|
1351
|
+
'Cache-Control'?: string;
|
|
1352
|
+
ETag?: string;
|
|
1353
|
+
'Last-Modified'?: string;
|
|
1354
|
+
}
|
|
938
1355
|
export type PostCorporationAssetsNamesResponse = {
|
|
939
1356
|
item_id: number;
|
|
940
1357
|
name: string;
|
|
@@ -943,6 +1360,11 @@ export interface PostCorporationAssetsNamesParams {
|
|
|
943
1360
|
corporation_id: number | string;
|
|
944
1361
|
body: number[];
|
|
945
1362
|
}
|
|
1363
|
+
export interface PostCorporationAssetsNamesResponseHeaders {
|
|
1364
|
+
'Cache-Control'?: string;
|
|
1365
|
+
ETag?: string;
|
|
1366
|
+
'Last-Modified'?: string;
|
|
1367
|
+
}
|
|
946
1368
|
export type GetCorporationBlueprintsResponse = {
|
|
947
1369
|
item_id: number;
|
|
948
1370
|
location_flag: 'AssetSafety' | 'AutoFit' | 'Bonus' | 'Booster' | 'BoosterBay' | 'Capsule' | 'CapsuleerDeliveries' | 'Cargo' | 'CorpDeliveries' | 'CorpSAG1' | 'CorpSAG2' | 'CorpSAG3' | 'CorpSAG4' | 'CorpSAG5' | 'CorpSAG6' | 'CorpSAG7' | 'CorporationGoalDeliveries' | 'CrateLoot' | 'Deliveries' | 'DroneBay' | 'DustBattle' | 'DustDatabank' | 'FighterBay' | 'FighterTube0' | 'FighterTube1' | 'FighterTube2' | 'FighterTube3' | 'FighterTube4' | 'FleetHangar' | 'FrigateEscapeBay' | 'Hangar' | 'HangarAll' | 'HiSlot0' | 'HiSlot1' | 'HiSlot2' | 'HiSlot3' | 'HiSlot4' | 'HiSlot5' | 'HiSlot6' | 'HiSlot7' | 'HiddenModifiers' | 'Implant' | 'Impounded' | 'InfrastructureHangar' | 'JunkyardReprocessed' | 'JunkyardTrashed' | 'LoSlot0' | 'LoSlot1' | 'LoSlot2' | 'LoSlot3' | 'LoSlot4' | 'LoSlot5' | 'LoSlot6' | 'LoSlot7' | 'Locked' | 'MedSlot0' | 'MedSlot1' | 'MedSlot2' | 'MedSlot3' | 'MedSlot4' | 'MedSlot5' | 'MedSlot6' | 'MedSlot7' | 'MobileDepotHold' | 'MoonMaterialBay' | 'OfficeFolder' | 'Pilot' | 'PlanetSurface' | 'QuafeBay' | 'QuantumCoreRoom' | 'Reward' | 'RigSlot0' | 'RigSlot1' | 'RigSlot2' | 'RigSlot3' | 'RigSlot4' | 'RigSlot5' | 'RigSlot6' | 'RigSlot7' | 'SecondaryStorage' | 'ServiceSlot0' | 'ServiceSlot1' | 'ServiceSlot2' | 'ServiceSlot3' | 'ServiceSlot4' | 'ServiceSlot5' | 'ServiceSlot6' | 'ServiceSlot7' | 'ShipHangar' | 'ShipOffline' | 'Skill' | 'SkillInTraining' | 'SpecializedAmmoHold' | 'SpecializedAsteroidHold' | 'SpecializedCommandCenterHold' | 'SpecializedFuelBay' | 'SpecializedGasHold' | 'SpecializedIceHold' | 'SpecializedIndustrialShipHold' | 'SpecializedLargeShipHold' | 'SpecializedMaterialBay' | 'SpecializedMediumShipHold' | 'SpecializedMineralHold' | 'SpecializedOreHold' | 'SpecializedPlanetaryCommoditiesHold' | 'SpecializedSalvageHold' | 'SpecializedShipHold' | 'SpecializedSmallShipHold' | 'StructureActive' | 'StructureFuel' | 'StructureInactive' | 'StructureOffline' | 'SubSystemBay' | 'SubSystemSlot0' | 'SubSystemSlot1' | 'SubSystemSlot2' | 'SubSystemSlot3' | 'SubSystemSlot4' | 'SubSystemSlot5' | 'SubSystemSlot6' | 'SubSystemSlot7' | 'Unlocked' | 'Wallet' | 'Wardrobe';
|
|
@@ -957,6 +1379,12 @@ export interface GetCorporationBlueprintsParams {
|
|
|
957
1379
|
corporation_id: number | string;
|
|
958
1380
|
page?: number;
|
|
959
1381
|
}
|
|
1382
|
+
export interface GetCorporationBlueprintsResponseHeaders {
|
|
1383
|
+
'Cache-Control'?: string;
|
|
1384
|
+
ETag?: string;
|
|
1385
|
+
'Last-Modified'?: string;
|
|
1386
|
+
'X-Pages'?: number;
|
|
1387
|
+
}
|
|
960
1388
|
export type GetCorporationContactsResponse = {
|
|
961
1389
|
contact_id: number;
|
|
962
1390
|
contact_type: 'character' | 'corporation' | 'alliance' | 'faction';
|
|
@@ -968,6 +1396,12 @@ export interface GetCorporationContactsParams {
|
|
|
968
1396
|
corporation_id: number | string;
|
|
969
1397
|
page?: number;
|
|
970
1398
|
}
|
|
1399
|
+
export interface GetCorporationContactsResponseHeaders {
|
|
1400
|
+
'Cache-Control'?: string;
|
|
1401
|
+
ETag?: string;
|
|
1402
|
+
'Last-Modified'?: string;
|
|
1403
|
+
'X-Pages'?: number;
|
|
1404
|
+
}
|
|
971
1405
|
export type GetCorporationContactsLabelsResponse = {
|
|
972
1406
|
label_id: number;
|
|
973
1407
|
label_name: string;
|
|
@@ -975,6 +1409,11 @@ export type GetCorporationContactsLabelsResponse = {
|
|
|
975
1409
|
export interface GetCorporationContactsLabelsParams {
|
|
976
1410
|
corporation_id: number | string;
|
|
977
1411
|
}
|
|
1412
|
+
export interface GetCorporationContactsLabelsResponseHeaders {
|
|
1413
|
+
'Cache-Control'?: string;
|
|
1414
|
+
ETag?: string;
|
|
1415
|
+
'Last-Modified'?: string;
|
|
1416
|
+
}
|
|
978
1417
|
export type GetCorporationContainersLogsResponse = {
|
|
979
1418
|
action: 'add' | 'assemble' | 'configure' | 'enter_password' | 'lock' | 'move' | 'repackage' | 'set_name' | 'set_password' | 'unlock';
|
|
980
1419
|
character_id: number;
|
|
@@ -993,6 +1432,12 @@ export interface GetCorporationContainersLogsParams {
|
|
|
993
1432
|
corporation_id: number | string;
|
|
994
1433
|
page?: number;
|
|
995
1434
|
}
|
|
1435
|
+
export interface GetCorporationContainersLogsResponseHeaders {
|
|
1436
|
+
'Cache-Control'?: string;
|
|
1437
|
+
ETag?: string;
|
|
1438
|
+
'Last-Modified'?: string;
|
|
1439
|
+
'X-Pages'?: number;
|
|
1440
|
+
}
|
|
996
1441
|
export type GetCorporationContractsResponse = {
|
|
997
1442
|
acceptor_id: number;
|
|
998
1443
|
assignee_id: number;
|
|
@@ -1021,6 +1466,12 @@ export interface GetCorporationContractsParams {
|
|
|
1021
1466
|
corporation_id: number | string;
|
|
1022
1467
|
page?: number;
|
|
1023
1468
|
}
|
|
1469
|
+
export interface GetCorporationContractsResponseHeaders {
|
|
1470
|
+
'Cache-Control'?: string;
|
|
1471
|
+
ETag?: string;
|
|
1472
|
+
'Last-Modified'?: string;
|
|
1473
|
+
'X-Pages'?: number;
|
|
1474
|
+
}
|
|
1024
1475
|
export type GetCorporationContractBidsResponse = {
|
|
1025
1476
|
amount: number;
|
|
1026
1477
|
bid_id: number;
|
|
@@ -1032,6 +1483,12 @@ export interface GetCorporationContractBidsParams {
|
|
|
1032
1483
|
contract_id: number | string;
|
|
1033
1484
|
page?: number;
|
|
1034
1485
|
}
|
|
1486
|
+
export interface GetCorporationContractBidsResponseHeaders {
|
|
1487
|
+
'Cache-Control'?: string;
|
|
1488
|
+
ETag?: string;
|
|
1489
|
+
'Last-Modified'?: string;
|
|
1490
|
+
'X-Pages'?: number;
|
|
1491
|
+
}
|
|
1035
1492
|
export type GetCorporationContractItemsResponse = {
|
|
1036
1493
|
is_included: boolean;
|
|
1037
1494
|
is_singleton: boolean;
|
|
@@ -1044,6 +1501,11 @@ export interface GetCorporationContractItemsParams {
|
|
|
1044
1501
|
corporation_id: number | string;
|
|
1045
1502
|
contract_id: number | string;
|
|
1046
1503
|
}
|
|
1504
|
+
export interface GetCorporationContractItemsResponseHeaders {
|
|
1505
|
+
'Cache-Control'?: string;
|
|
1506
|
+
ETag?: string;
|
|
1507
|
+
'Last-Modified'?: string;
|
|
1508
|
+
}
|
|
1047
1509
|
export type GetCorporationCustomsOfficesResponse = {
|
|
1048
1510
|
alliance_tax_rate: number;
|
|
1049
1511
|
allow_access_with_standings: boolean;
|
|
@@ -1064,6 +1526,12 @@ export interface GetCorporationCustomsOfficesParams {
|
|
|
1064
1526
|
corporation_id: number | string;
|
|
1065
1527
|
page?: number;
|
|
1066
1528
|
}
|
|
1529
|
+
export interface GetCorporationCustomsOfficesResponseHeaders {
|
|
1530
|
+
'Cache-Control'?: string;
|
|
1531
|
+
ETag?: string;
|
|
1532
|
+
'Last-Modified'?: string;
|
|
1533
|
+
'X-Pages'?: number;
|
|
1534
|
+
}
|
|
1067
1535
|
export interface GetCorporationDivisionsResponse {
|
|
1068
1536
|
hangar?: {
|
|
1069
1537
|
division: number;
|
|
@@ -1077,6 +1545,11 @@ export interface GetCorporationDivisionsResponse {
|
|
|
1077
1545
|
export interface GetCorporationDivisionsParams {
|
|
1078
1546
|
corporation_id: number | string;
|
|
1079
1547
|
}
|
|
1548
|
+
export interface GetCorporationDivisionsResponseHeaders {
|
|
1549
|
+
'Cache-Control'?: string;
|
|
1550
|
+
ETag?: string;
|
|
1551
|
+
'Last-Modified'?: string;
|
|
1552
|
+
}
|
|
1080
1553
|
export type GetCorporationFacilitiesResponse = {
|
|
1081
1554
|
facility_id: number;
|
|
1082
1555
|
system_id: number;
|
|
@@ -1085,6 +1558,11 @@ export type GetCorporationFacilitiesResponse = {
|
|
|
1085
1558
|
export interface GetCorporationFacilitiesParams {
|
|
1086
1559
|
corporation_id: number | string;
|
|
1087
1560
|
}
|
|
1561
|
+
export interface GetCorporationFacilitiesResponseHeaders {
|
|
1562
|
+
'Cache-Control'?: string;
|
|
1563
|
+
ETag?: string;
|
|
1564
|
+
'Last-Modified'?: string;
|
|
1565
|
+
}
|
|
1088
1566
|
export interface GetCorporationFwStatsResponse {
|
|
1089
1567
|
enlisted_on?: string;
|
|
1090
1568
|
faction_id?: number;
|
|
@@ -1103,6 +1581,11 @@ export interface GetCorporationFwStatsResponse {
|
|
|
1103
1581
|
export interface GetCorporationFwStatsParams {
|
|
1104
1582
|
corporation_id: number | string;
|
|
1105
1583
|
}
|
|
1584
|
+
export interface GetCorporationFwStatsResponseHeaders {
|
|
1585
|
+
'Cache-Control'?: string;
|
|
1586
|
+
ETag?: string;
|
|
1587
|
+
'Last-Modified'?: string;
|
|
1588
|
+
}
|
|
1106
1589
|
export interface GetCorporationIconsResponse {
|
|
1107
1590
|
px128x128?: string;
|
|
1108
1591
|
px256x256?: string;
|
|
@@ -1111,6 +1594,11 @@ export interface GetCorporationIconsResponse {
|
|
|
1111
1594
|
export interface GetCorporationIconsParams {
|
|
1112
1595
|
corporation_id: number | string;
|
|
1113
1596
|
}
|
|
1597
|
+
export interface GetCorporationIconsResponseHeaders {
|
|
1598
|
+
'Cache-Control'?: string;
|
|
1599
|
+
ETag?: string;
|
|
1600
|
+
'Last-Modified'?: string;
|
|
1601
|
+
}
|
|
1114
1602
|
export type GetCorporationIndustryJobsResponse = {
|
|
1115
1603
|
activity_id: number;
|
|
1116
1604
|
blueprint_id: number;
|
|
@@ -1140,6 +1628,12 @@ export interface GetCorporationIndustryJobsParams {
|
|
|
1140
1628
|
include_completed?: boolean;
|
|
1141
1629
|
page?: number;
|
|
1142
1630
|
}
|
|
1631
|
+
export interface GetCorporationIndustryJobsResponseHeaders {
|
|
1632
|
+
'Cache-Control'?: string;
|
|
1633
|
+
ETag?: string;
|
|
1634
|
+
'Last-Modified'?: string;
|
|
1635
|
+
'X-Pages'?: number;
|
|
1636
|
+
}
|
|
1143
1637
|
export type GetCorporationKillmailsRecentResponse = {
|
|
1144
1638
|
killmail_hash: string;
|
|
1145
1639
|
killmail_id: number;
|
|
@@ -1148,6 +1642,12 @@ export interface GetCorporationKillmailsRecentParams {
|
|
|
1148
1642
|
corporation_id: number | string;
|
|
1149
1643
|
page?: number;
|
|
1150
1644
|
}
|
|
1645
|
+
export interface GetCorporationKillmailsRecentResponseHeaders {
|
|
1646
|
+
'Cache-Control'?: string;
|
|
1647
|
+
ETag?: string;
|
|
1648
|
+
'Last-Modified'?: string;
|
|
1649
|
+
'X-Pages'?: number;
|
|
1650
|
+
}
|
|
1151
1651
|
export type GetCorporationMedalsResponse = {
|
|
1152
1652
|
created_at: string;
|
|
1153
1653
|
creator_id: number;
|
|
@@ -1159,6 +1659,12 @@ export interface GetCorporationMedalsParams {
|
|
|
1159
1659
|
corporation_id: number | string;
|
|
1160
1660
|
page?: number;
|
|
1161
1661
|
}
|
|
1662
|
+
export interface GetCorporationMedalsResponseHeaders {
|
|
1663
|
+
'Cache-Control'?: string;
|
|
1664
|
+
ETag?: string;
|
|
1665
|
+
'Last-Modified'?: string;
|
|
1666
|
+
'X-Pages'?: number;
|
|
1667
|
+
}
|
|
1162
1668
|
export type GetCorporationMedalsIssuedResponse = {
|
|
1163
1669
|
character_id: number;
|
|
1164
1670
|
issued_at: string;
|
|
@@ -1171,14 +1677,30 @@ export interface GetCorporationMedalsIssuedParams {
|
|
|
1171
1677
|
corporation_id: number | string;
|
|
1172
1678
|
page?: number;
|
|
1173
1679
|
}
|
|
1680
|
+
export interface GetCorporationMedalsIssuedResponseHeaders {
|
|
1681
|
+
'Cache-Control'?: string;
|
|
1682
|
+
ETag?: string;
|
|
1683
|
+
'Last-Modified'?: string;
|
|
1684
|
+
'X-Pages'?: number;
|
|
1685
|
+
}
|
|
1174
1686
|
export type GetCorporationMembersResponse = number[];
|
|
1175
1687
|
export interface GetCorporationMembersParams {
|
|
1176
1688
|
corporation_id: number | string;
|
|
1177
1689
|
}
|
|
1690
|
+
export interface GetCorporationMembersResponseHeaders {
|
|
1691
|
+
'Cache-Control'?: string;
|
|
1692
|
+
ETag?: string;
|
|
1693
|
+
'Last-Modified'?: string;
|
|
1694
|
+
}
|
|
1178
1695
|
export type GetCorporationMembersLimitResponse = number;
|
|
1179
1696
|
export interface GetCorporationMembersLimitParams {
|
|
1180
1697
|
corporation_id: number | string;
|
|
1181
1698
|
}
|
|
1699
|
+
export interface GetCorporationMembersLimitResponseHeaders {
|
|
1700
|
+
'Cache-Control'?: string;
|
|
1701
|
+
ETag?: string;
|
|
1702
|
+
'Last-Modified'?: string;
|
|
1703
|
+
}
|
|
1182
1704
|
export type GetCorporationMembersTitlesResponse = {
|
|
1183
1705
|
character_id: number;
|
|
1184
1706
|
titles: number[];
|
|
@@ -1186,6 +1708,11 @@ export type GetCorporationMembersTitlesResponse = {
|
|
|
1186
1708
|
export interface GetCorporationMembersTitlesParams {
|
|
1187
1709
|
corporation_id: number | string;
|
|
1188
1710
|
}
|
|
1711
|
+
export interface GetCorporationMembersTitlesResponseHeaders {
|
|
1712
|
+
'Cache-Control'?: string;
|
|
1713
|
+
ETag?: string;
|
|
1714
|
+
'Last-Modified'?: string;
|
|
1715
|
+
}
|
|
1189
1716
|
export type GetCorporationMembertrackingResponse = {
|
|
1190
1717
|
base_id: number;
|
|
1191
1718
|
character_id: number;
|
|
@@ -1198,6 +1725,11 @@ export type GetCorporationMembertrackingResponse = {
|
|
|
1198
1725
|
export interface GetCorporationMembertrackingParams {
|
|
1199
1726
|
corporation_id: number | string;
|
|
1200
1727
|
}
|
|
1728
|
+
export interface GetCorporationMembertrackingResponseHeaders {
|
|
1729
|
+
'Cache-Control'?: string;
|
|
1730
|
+
ETag?: string;
|
|
1731
|
+
'Last-Modified'?: string;
|
|
1732
|
+
}
|
|
1201
1733
|
export type GetCorporationOrdersResponse = {
|
|
1202
1734
|
duration: number;
|
|
1203
1735
|
escrow: number;
|
|
@@ -1219,6 +1751,12 @@ export interface GetCorporationOrdersParams {
|
|
|
1219
1751
|
corporation_id: number | string;
|
|
1220
1752
|
page?: number;
|
|
1221
1753
|
}
|
|
1754
|
+
export interface GetCorporationOrdersResponseHeaders {
|
|
1755
|
+
'Cache-Control'?: string;
|
|
1756
|
+
ETag?: string;
|
|
1757
|
+
'Last-Modified'?: string;
|
|
1758
|
+
'X-Pages'?: number;
|
|
1759
|
+
}
|
|
1222
1760
|
export type GetCorporationOrdersHistoryResponse = {
|
|
1223
1761
|
duration: number;
|
|
1224
1762
|
escrow: number;
|
|
@@ -1241,6 +1779,12 @@ export interface GetCorporationOrdersHistoryParams {
|
|
|
1241
1779
|
corporation_id: number | string;
|
|
1242
1780
|
page?: number;
|
|
1243
1781
|
}
|
|
1782
|
+
export interface GetCorporationOrdersHistoryResponseHeaders {
|
|
1783
|
+
'Cache-Control'?: string;
|
|
1784
|
+
ETag?: string;
|
|
1785
|
+
'Last-Modified'?: string;
|
|
1786
|
+
'X-Pages'?: number;
|
|
1787
|
+
}
|
|
1244
1788
|
export type GetCorporationRolesResponse = {
|
|
1245
1789
|
character_id: number;
|
|
1246
1790
|
grantable_roles: 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Brand_Manager' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Deliveries_Container_Take' | 'Deliveries_Query' | 'Deliveries_Take' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Project_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Skill_Plan_Manager' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Trader'[];
|
|
@@ -1255,6 +1799,11 @@ export type GetCorporationRolesResponse = {
|
|
|
1255
1799
|
export interface GetCorporationRolesParams {
|
|
1256
1800
|
corporation_id: number | string;
|
|
1257
1801
|
}
|
|
1802
|
+
export interface GetCorporationRolesResponseHeaders {
|
|
1803
|
+
'Cache-Control'?: string;
|
|
1804
|
+
ETag?: string;
|
|
1805
|
+
'Last-Modified'?: string;
|
|
1806
|
+
}
|
|
1258
1807
|
export type GetCorporationRolesHistoryResponse = {
|
|
1259
1808
|
changed_at: string;
|
|
1260
1809
|
character_id: number;
|
|
@@ -1267,6 +1816,12 @@ export interface GetCorporationRolesHistoryParams {
|
|
|
1267
1816
|
corporation_id: number | string;
|
|
1268
1817
|
page?: number;
|
|
1269
1818
|
}
|
|
1819
|
+
export interface GetCorporationRolesHistoryResponseHeaders {
|
|
1820
|
+
'Cache-Control'?: string;
|
|
1821
|
+
ETag?: string;
|
|
1822
|
+
'Last-Modified'?: string;
|
|
1823
|
+
'X-Pages'?: number;
|
|
1824
|
+
}
|
|
1270
1825
|
export type GetCorporationShareholdersResponse = {
|
|
1271
1826
|
share_count: number;
|
|
1272
1827
|
shareholder_id: number;
|
|
@@ -1276,6 +1831,12 @@ export interface GetCorporationShareholdersParams {
|
|
|
1276
1831
|
corporation_id: number | string;
|
|
1277
1832
|
page?: number;
|
|
1278
1833
|
}
|
|
1834
|
+
export interface GetCorporationShareholdersResponseHeaders {
|
|
1835
|
+
'Cache-Control'?: string;
|
|
1836
|
+
ETag?: string;
|
|
1837
|
+
'Last-Modified'?: string;
|
|
1838
|
+
'X-Pages'?: number;
|
|
1839
|
+
}
|
|
1279
1840
|
export type GetCorporationStandingsResponse = {
|
|
1280
1841
|
from_id: number;
|
|
1281
1842
|
from_type: 'agent' | 'npc_corp' | 'faction';
|
|
@@ -1285,6 +1846,12 @@ export interface GetCorporationStandingsParams {
|
|
|
1285
1846
|
corporation_id: number | string;
|
|
1286
1847
|
page?: number;
|
|
1287
1848
|
}
|
|
1849
|
+
export interface GetCorporationStandingsResponseHeaders {
|
|
1850
|
+
'Cache-Control'?: string;
|
|
1851
|
+
ETag?: string;
|
|
1852
|
+
'Last-Modified'?: string;
|
|
1853
|
+
'X-Pages'?: number;
|
|
1854
|
+
}
|
|
1288
1855
|
export type GetCorporationStarbasesResponse = {
|
|
1289
1856
|
moon_id: number;
|
|
1290
1857
|
onlined_since: string;
|
|
@@ -1299,6 +1866,12 @@ export interface GetCorporationStarbasesParams {
|
|
|
1299
1866
|
corporation_id: number | string;
|
|
1300
1867
|
page?: number;
|
|
1301
1868
|
}
|
|
1869
|
+
export interface GetCorporationStarbasesResponseHeaders {
|
|
1870
|
+
'Cache-Control'?: string;
|
|
1871
|
+
ETag?: string;
|
|
1872
|
+
'Last-Modified'?: string;
|
|
1873
|
+
'X-Pages'?: number;
|
|
1874
|
+
}
|
|
1302
1875
|
export interface GetCorporationStarbaseResponse {
|
|
1303
1876
|
allow_alliance_members: boolean;
|
|
1304
1877
|
allow_corporation_members: boolean;
|
|
@@ -1323,6 +1896,11 @@ export interface GetCorporationStarbaseParams {
|
|
|
1323
1896
|
starbase_id: number | string;
|
|
1324
1897
|
system_id?: number;
|
|
1325
1898
|
}
|
|
1899
|
+
export interface GetCorporationStarbaseResponseHeaders {
|
|
1900
|
+
'Cache-Control'?: string;
|
|
1901
|
+
ETag?: string;
|
|
1902
|
+
'Last-Modified'?: string;
|
|
1903
|
+
}
|
|
1326
1904
|
export type GetCorporationStructuresResponse = {
|
|
1327
1905
|
corporation_id: number;
|
|
1328
1906
|
fuel_expires: string;
|
|
@@ -1347,6 +1925,13 @@ export interface GetCorporationStructuresParams {
|
|
|
1347
1925
|
corporation_id: number | string;
|
|
1348
1926
|
page?: number;
|
|
1349
1927
|
}
|
|
1928
|
+
export interface GetCorporationStructuresResponseHeaders {
|
|
1929
|
+
'Cache-Control'?: string;
|
|
1930
|
+
'Content-Language'?: 'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es';
|
|
1931
|
+
ETag?: string;
|
|
1932
|
+
'Last-Modified'?: string;
|
|
1933
|
+
'X-Pages'?: number;
|
|
1934
|
+
}
|
|
1350
1935
|
export type GetCorporationTitlesResponse = {
|
|
1351
1936
|
grantable_roles: 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Brand_Manager' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Deliveries_Container_Take' | 'Deliveries_Query' | 'Deliveries_Take' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Project_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Skill_Plan_Manager' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Trader'[];
|
|
1352
1937
|
grantable_roles_at_base: 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Brand_Manager' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Deliveries_Container_Take' | 'Deliveries_Query' | 'Deliveries_Take' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Project_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Skill_Plan_Manager' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Trader'[];
|
|
@@ -1362,6 +1947,11 @@ export type GetCorporationTitlesResponse = {
|
|
|
1362
1947
|
export interface GetCorporationTitlesParams {
|
|
1363
1948
|
corporation_id: number | string;
|
|
1364
1949
|
}
|
|
1950
|
+
export interface GetCorporationTitlesResponseHeaders {
|
|
1951
|
+
'Cache-Control'?: string;
|
|
1952
|
+
ETag?: string;
|
|
1953
|
+
'Last-Modified'?: string;
|
|
1954
|
+
}
|
|
1365
1955
|
export type GetCorporationWalletsResponse = {
|
|
1366
1956
|
balance: number;
|
|
1367
1957
|
division: number;
|
|
@@ -1369,6 +1959,11 @@ export type GetCorporationWalletsResponse = {
|
|
|
1369
1959
|
export interface GetCorporationWalletsParams {
|
|
1370
1960
|
corporation_id: number | string;
|
|
1371
1961
|
}
|
|
1962
|
+
export interface GetCorporationWalletsResponseHeaders {
|
|
1963
|
+
'Cache-Control'?: string;
|
|
1964
|
+
ETag?: string;
|
|
1965
|
+
'Last-Modified'?: string;
|
|
1966
|
+
}
|
|
1372
1967
|
export type GetCorporationWalletsDivisionJournalResponse = {
|
|
1373
1968
|
amount: number;
|
|
1374
1969
|
balance: number;
|
|
@@ -1389,6 +1984,12 @@ export interface GetCorporationWalletsDivisionJournalParams {
|
|
|
1389
1984
|
division: number | string;
|
|
1390
1985
|
page?: number;
|
|
1391
1986
|
}
|
|
1987
|
+
export interface GetCorporationWalletsDivisionJournalResponseHeaders {
|
|
1988
|
+
'Cache-Control'?: string;
|
|
1989
|
+
ETag?: string;
|
|
1990
|
+
'Last-Modified'?: string;
|
|
1991
|
+
'X-Pages'?: number;
|
|
1992
|
+
}
|
|
1392
1993
|
export type GetCorporationWalletsDivisionTransactionsResponse = {
|
|
1393
1994
|
client_id: number;
|
|
1394
1995
|
date: string;
|
|
@@ -1405,7 +2006,17 @@ export interface GetCorporationWalletsDivisionTransactionsParams {
|
|
|
1405
2006
|
division: number | string;
|
|
1406
2007
|
from_id?: number;
|
|
1407
2008
|
}
|
|
2009
|
+
export interface GetCorporationWalletsDivisionTransactionsResponseHeaders {
|
|
2010
|
+
'Cache-Control'?: string;
|
|
2011
|
+
ETag?: string;
|
|
2012
|
+
'Last-Modified'?: string;
|
|
2013
|
+
}
|
|
1408
2014
|
export type GetDogmaAttributesResponse = number[];
|
|
2015
|
+
export interface GetDogmaAttributesResponseHeaders {
|
|
2016
|
+
'Cache-Control'?: string;
|
|
2017
|
+
ETag?: string;
|
|
2018
|
+
'Last-Modified'?: string;
|
|
2019
|
+
}
|
|
1409
2020
|
export interface GetDogmaAttributeResponse {
|
|
1410
2021
|
attribute_id: number;
|
|
1411
2022
|
default_value?: number;
|
|
@@ -1421,6 +2032,11 @@ export interface GetDogmaAttributeResponse {
|
|
|
1421
2032
|
export interface GetDogmaAttributeParams {
|
|
1422
2033
|
attribute_id: number | string;
|
|
1423
2034
|
}
|
|
2035
|
+
export interface GetDogmaAttributeResponseHeaders {
|
|
2036
|
+
'Cache-Control'?: string;
|
|
2037
|
+
ETag?: string;
|
|
2038
|
+
'Last-Modified'?: string;
|
|
2039
|
+
}
|
|
1424
2040
|
export interface GetDogmaDynamicTypeItemIdResponse {
|
|
1425
2041
|
created_by: number;
|
|
1426
2042
|
dogma_attributes: {
|
|
@@ -1438,7 +2054,17 @@ export interface GetDogmaDynamicTypeItemIdParams {
|
|
|
1438
2054
|
type_id: number | string;
|
|
1439
2055
|
item_id: number | string;
|
|
1440
2056
|
}
|
|
2057
|
+
export interface GetDogmaDynamicTypeItemIdResponseHeaders {
|
|
2058
|
+
'Cache-Control'?: string;
|
|
2059
|
+
ETag?: string;
|
|
2060
|
+
'Last-Modified'?: string;
|
|
2061
|
+
}
|
|
1441
2062
|
export type GetDogmaEffectsResponse = number[];
|
|
2063
|
+
export interface GetDogmaEffectsResponseHeaders {
|
|
2064
|
+
'Cache-Control'?: string;
|
|
2065
|
+
ETag?: string;
|
|
2066
|
+
'Last-Modified'?: string;
|
|
2067
|
+
}
|
|
1442
2068
|
export interface GetDogmaEffectResponse {
|
|
1443
2069
|
description?: string;
|
|
1444
2070
|
disallow_auto_repeat?: boolean;
|
|
@@ -1472,6 +2098,11 @@ export interface GetDogmaEffectResponse {
|
|
|
1472
2098
|
export interface GetDogmaEffectParams {
|
|
1473
2099
|
effect_id: number | string;
|
|
1474
2100
|
}
|
|
2101
|
+
export interface GetDogmaEffectResponseHeaders {
|
|
2102
|
+
'Cache-Control'?: string;
|
|
2103
|
+
ETag?: string;
|
|
2104
|
+
'Last-Modified'?: string;
|
|
2105
|
+
}
|
|
1475
2106
|
export interface GetFleetResponse {
|
|
1476
2107
|
is_free_move: boolean;
|
|
1477
2108
|
is_registered: boolean;
|
|
@@ -1481,12 +2112,22 @@ export interface GetFleetResponse {
|
|
|
1481
2112
|
export interface GetFleetParams {
|
|
1482
2113
|
fleet_id: number | string;
|
|
1483
2114
|
}
|
|
2115
|
+
export interface GetFleetResponseHeaders {
|
|
2116
|
+
'Cache-Control'?: string;
|
|
2117
|
+
ETag?: string;
|
|
2118
|
+
'Last-Modified'?: string;
|
|
2119
|
+
}
|
|
1484
2120
|
export type PutFleetResponse = unknown;
|
|
1485
2121
|
export interface PutFleetParams {
|
|
1486
2122
|
fleet_id: number | string;
|
|
1487
2123
|
is_free_move?: boolean;
|
|
1488
2124
|
motd?: string;
|
|
1489
2125
|
}
|
|
2126
|
+
export interface PutFleetResponseHeaders {
|
|
2127
|
+
'Cache-Control'?: string;
|
|
2128
|
+
ETag?: string;
|
|
2129
|
+
'Last-Modified'?: string;
|
|
2130
|
+
}
|
|
1490
2131
|
export type GetFleetMembersResponse = {
|
|
1491
2132
|
character_id: number;
|
|
1492
2133
|
join_time: string;
|
|
@@ -1502,6 +2143,12 @@ export type GetFleetMembersResponse = {
|
|
|
1502
2143
|
export interface GetFleetMembersParams {
|
|
1503
2144
|
fleet_id: number | string;
|
|
1504
2145
|
}
|
|
2146
|
+
export interface GetFleetMembersResponseHeaders {
|
|
2147
|
+
'Cache-Control'?: string;
|
|
2148
|
+
'Content-Language'?: 'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es';
|
|
2149
|
+
ETag?: string;
|
|
2150
|
+
'Last-Modified'?: string;
|
|
2151
|
+
}
|
|
1505
2152
|
export type PostFleetMembersResponse = unknown;
|
|
1506
2153
|
export interface PostFleetMembersParams {
|
|
1507
2154
|
fleet_id: number | string;
|
|
@@ -1510,11 +2157,21 @@ export interface PostFleetMembersParams {
|
|
|
1510
2157
|
squad_id?: number;
|
|
1511
2158
|
wing_id?: number;
|
|
1512
2159
|
}
|
|
2160
|
+
export interface PostFleetMembersResponseHeaders {
|
|
2161
|
+
'Cache-Control'?: string;
|
|
2162
|
+
ETag?: string;
|
|
2163
|
+
'Last-Modified'?: string;
|
|
2164
|
+
}
|
|
1513
2165
|
export type DeleteFleetMemberResponse = unknown;
|
|
1514
2166
|
export interface DeleteFleetMemberParams {
|
|
1515
2167
|
fleet_id: number | string;
|
|
1516
2168
|
member_id: number | string;
|
|
1517
2169
|
}
|
|
2170
|
+
export interface DeleteFleetMemberResponseHeaders {
|
|
2171
|
+
'Cache-Control'?: string;
|
|
2172
|
+
ETag?: string;
|
|
2173
|
+
'Last-Modified'?: string;
|
|
2174
|
+
}
|
|
1518
2175
|
export type PutFleetMemberResponse = unknown;
|
|
1519
2176
|
export interface PutFleetMemberParams {
|
|
1520
2177
|
fleet_id: number | string;
|
|
@@ -1523,17 +2180,32 @@ export interface PutFleetMemberParams {
|
|
|
1523
2180
|
squad_id?: number;
|
|
1524
2181
|
wing_id?: number;
|
|
1525
2182
|
}
|
|
2183
|
+
export interface PutFleetMemberResponseHeaders {
|
|
2184
|
+
'Cache-Control'?: string;
|
|
2185
|
+
ETag?: string;
|
|
2186
|
+
'Last-Modified'?: string;
|
|
2187
|
+
}
|
|
1526
2188
|
export type DeleteFleetSquadResponse = unknown;
|
|
1527
2189
|
export interface DeleteFleetSquadParams {
|
|
1528
2190
|
fleet_id: number | string;
|
|
1529
2191
|
squad_id: number | string;
|
|
1530
2192
|
}
|
|
2193
|
+
export interface DeleteFleetSquadResponseHeaders {
|
|
2194
|
+
'Cache-Control'?: string;
|
|
2195
|
+
ETag?: string;
|
|
2196
|
+
'Last-Modified'?: string;
|
|
2197
|
+
}
|
|
1531
2198
|
export type PutFleetSquadResponse = unknown;
|
|
1532
2199
|
export interface PutFleetSquadParams {
|
|
1533
2200
|
fleet_id: number | string;
|
|
1534
2201
|
squad_id: number | string;
|
|
1535
2202
|
name: string;
|
|
1536
2203
|
}
|
|
2204
|
+
export interface PutFleetSquadResponseHeaders {
|
|
2205
|
+
'Cache-Control'?: string;
|
|
2206
|
+
ETag?: string;
|
|
2207
|
+
'Last-Modified'?: string;
|
|
2208
|
+
}
|
|
1537
2209
|
export type GetFleetWingsResponse = {
|
|
1538
2210
|
id: number;
|
|
1539
2211
|
name: string;
|
|
@@ -1545,23 +2217,44 @@ export type GetFleetWingsResponse = {
|
|
|
1545
2217
|
export interface GetFleetWingsParams {
|
|
1546
2218
|
fleet_id: number | string;
|
|
1547
2219
|
}
|
|
2220
|
+
export interface GetFleetWingsResponseHeaders {
|
|
2221
|
+
'Cache-Control'?: string;
|
|
2222
|
+
'Content-Language'?: 'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es';
|
|
2223
|
+
ETag?: string;
|
|
2224
|
+
'Last-Modified'?: string;
|
|
2225
|
+
}
|
|
1548
2226
|
export interface PostFleetWingsResponse {
|
|
1549
2227
|
wing_id: number;
|
|
1550
2228
|
}
|
|
1551
2229
|
export interface PostFleetWingsParams {
|
|
1552
2230
|
fleet_id: number | string;
|
|
1553
2231
|
}
|
|
2232
|
+
export interface PostFleetWingsResponseHeaders {
|
|
2233
|
+
'Cache-Control'?: string;
|
|
2234
|
+
ETag?: string;
|
|
2235
|
+
'Last-Modified'?: string;
|
|
2236
|
+
}
|
|
1554
2237
|
export type DeleteFleetWingResponse = unknown;
|
|
1555
2238
|
export interface DeleteFleetWingParams {
|
|
1556
2239
|
fleet_id: number | string;
|
|
1557
2240
|
wing_id: number | string;
|
|
1558
2241
|
}
|
|
2242
|
+
export interface DeleteFleetWingResponseHeaders {
|
|
2243
|
+
'Cache-Control'?: string;
|
|
2244
|
+
ETag?: string;
|
|
2245
|
+
'Last-Modified'?: string;
|
|
2246
|
+
}
|
|
1559
2247
|
export type PutFleetWingResponse = unknown;
|
|
1560
2248
|
export interface PutFleetWingParams {
|
|
1561
2249
|
fleet_id: number | string;
|
|
1562
2250
|
wing_id: number | string;
|
|
1563
2251
|
name: string;
|
|
1564
2252
|
}
|
|
2253
|
+
export interface PutFleetWingResponseHeaders {
|
|
2254
|
+
'Cache-Control'?: string;
|
|
2255
|
+
ETag?: string;
|
|
2256
|
+
'Last-Modified'?: string;
|
|
2257
|
+
}
|
|
1565
2258
|
export interface PostFleetWingSquadsResponse {
|
|
1566
2259
|
squad_id: number;
|
|
1567
2260
|
}
|
|
@@ -1569,6 +2262,11 @@ export interface PostFleetWingSquadsParams {
|
|
|
1569
2262
|
fleet_id: number | string;
|
|
1570
2263
|
wing_id: number | string;
|
|
1571
2264
|
}
|
|
2265
|
+
export interface PostFleetWingSquadsResponseHeaders {
|
|
2266
|
+
'Cache-Control'?: string;
|
|
2267
|
+
ETag?: string;
|
|
2268
|
+
'Last-Modified'?: string;
|
|
2269
|
+
}
|
|
1572
2270
|
export interface GetFwLeaderboardsResponse {
|
|
1573
2271
|
kills: {
|
|
1574
2272
|
active_total: {
|
|
@@ -1599,6 +2297,11 @@ export interface GetFwLeaderboardsResponse {
|
|
|
1599
2297
|
}[];
|
|
1600
2298
|
};
|
|
1601
2299
|
}
|
|
2300
|
+
export interface GetFwLeaderboardsResponseHeaders {
|
|
2301
|
+
'Cache-Control'?: string;
|
|
2302
|
+
ETag?: string;
|
|
2303
|
+
'Last-Modified'?: string;
|
|
2304
|
+
}
|
|
1602
2305
|
export interface GetFwLeaderboardsCharactersResponse {
|
|
1603
2306
|
kills: {
|
|
1604
2307
|
active_total: {
|
|
@@ -1629,6 +2332,11 @@ export interface GetFwLeaderboardsCharactersResponse {
|
|
|
1629
2332
|
}[];
|
|
1630
2333
|
};
|
|
1631
2334
|
}
|
|
2335
|
+
export interface GetFwLeaderboardsCharactersResponseHeaders {
|
|
2336
|
+
'Cache-Control'?: string;
|
|
2337
|
+
ETag?: string;
|
|
2338
|
+
'Last-Modified'?: string;
|
|
2339
|
+
}
|
|
1632
2340
|
export interface GetFwLeaderboardsCorporationsResponse {
|
|
1633
2341
|
kills: {
|
|
1634
2342
|
active_total: {
|
|
@@ -1659,6 +2367,11 @@ export interface GetFwLeaderboardsCorporationsResponse {
|
|
|
1659
2367
|
}[];
|
|
1660
2368
|
};
|
|
1661
2369
|
}
|
|
2370
|
+
export interface GetFwLeaderboardsCorporationsResponseHeaders {
|
|
2371
|
+
'Cache-Control'?: string;
|
|
2372
|
+
ETag?: string;
|
|
2373
|
+
'Last-Modified'?: string;
|
|
2374
|
+
}
|
|
1662
2375
|
export type GetFwStatsResponse = {
|
|
1663
2376
|
faction_id: number;
|
|
1664
2377
|
kills: {
|
|
@@ -1674,6 +2387,11 @@ export type GetFwStatsResponse = {
|
|
|
1674
2387
|
yesterday: number;
|
|
1675
2388
|
};
|
|
1676
2389
|
}[];
|
|
2390
|
+
export interface GetFwStatsResponseHeaders {
|
|
2391
|
+
'Cache-Control'?: string;
|
|
2392
|
+
ETag?: string;
|
|
2393
|
+
'Last-Modified'?: string;
|
|
2394
|
+
}
|
|
1677
2395
|
export type GetFwSystemsResponse = {
|
|
1678
2396
|
contested: 'captured' | 'contested' | 'uncontested' | 'vulnerable';
|
|
1679
2397
|
occupier_faction_id: number;
|
|
@@ -1682,10 +2400,20 @@ export type GetFwSystemsResponse = {
|
|
|
1682
2400
|
victory_points: number;
|
|
1683
2401
|
victory_points_threshold: number;
|
|
1684
2402
|
}[];
|
|
2403
|
+
export interface GetFwSystemsResponseHeaders {
|
|
2404
|
+
'Cache-Control'?: string;
|
|
2405
|
+
ETag?: string;
|
|
2406
|
+
'Last-Modified'?: string;
|
|
2407
|
+
}
|
|
1685
2408
|
export type GetFwWarsResponse = {
|
|
1686
2409
|
against_id: number;
|
|
1687
2410
|
faction_id: number;
|
|
1688
2411
|
}[];
|
|
2412
|
+
export interface GetFwWarsResponseHeaders {
|
|
2413
|
+
'Cache-Control'?: string;
|
|
2414
|
+
ETag?: string;
|
|
2415
|
+
'Last-Modified'?: string;
|
|
2416
|
+
}
|
|
1689
2417
|
export type GetIncursionsResponse = {
|
|
1690
2418
|
constellation_id: number;
|
|
1691
2419
|
faction_id: number;
|
|
@@ -1696,6 +2424,11 @@ export type GetIncursionsResponse = {
|
|
|
1696
2424
|
state: 'withdrawing' | 'mobilizing' | 'established';
|
|
1697
2425
|
type: string;
|
|
1698
2426
|
}[];
|
|
2427
|
+
export interface GetIncursionsResponseHeaders {
|
|
2428
|
+
'Cache-Control'?: string;
|
|
2429
|
+
ETag?: string;
|
|
2430
|
+
'Last-Modified'?: string;
|
|
2431
|
+
}
|
|
1699
2432
|
export type GetIndustryFacilitiesResponse = {
|
|
1700
2433
|
facility_id: number;
|
|
1701
2434
|
owner_id: number;
|
|
@@ -1704,6 +2437,11 @@ export type GetIndustryFacilitiesResponse = {
|
|
|
1704
2437
|
tax: number;
|
|
1705
2438
|
type_id: number;
|
|
1706
2439
|
}[];
|
|
2440
|
+
export interface GetIndustryFacilitiesResponseHeaders {
|
|
2441
|
+
'Cache-Control'?: string;
|
|
2442
|
+
ETag?: string;
|
|
2443
|
+
'Last-Modified'?: string;
|
|
2444
|
+
}
|
|
1707
2445
|
export type GetIndustrySystemsResponse = {
|
|
1708
2446
|
cost_indices: {
|
|
1709
2447
|
activity: 'copying' | 'duplicating' | 'invention' | 'manufacturing' | 'none' | 'reaction' | 'researching_material_efficiency' | 'researching_technology' | 'researching_time_efficiency' | 'reverse_engineering';
|
|
@@ -1711,6 +2449,11 @@ export type GetIndustrySystemsResponse = {
|
|
|
1711
2449
|
}[];
|
|
1712
2450
|
solar_system_id: number;
|
|
1713
2451
|
}[];
|
|
2452
|
+
export interface GetIndustrySystemsResponseHeaders {
|
|
2453
|
+
'Cache-Control'?: string;
|
|
2454
|
+
ETag?: string;
|
|
2455
|
+
'Last-Modified'?: string;
|
|
2456
|
+
}
|
|
1714
2457
|
export type GetInsurancePricesResponse = {
|
|
1715
2458
|
levels: {
|
|
1716
2459
|
cost: number;
|
|
@@ -1719,6 +2462,12 @@ export type GetInsurancePricesResponse = {
|
|
|
1719
2462
|
}[];
|
|
1720
2463
|
type_id: number;
|
|
1721
2464
|
}[];
|
|
2465
|
+
export interface GetInsurancePricesResponseHeaders {
|
|
2466
|
+
'Cache-Control'?: string;
|
|
2467
|
+
'Content-Language'?: 'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es';
|
|
2468
|
+
ETag?: string;
|
|
2469
|
+
'Last-Modified'?: string;
|
|
2470
|
+
}
|
|
1722
2471
|
export interface GetKillmailKillmailHashResponse {
|
|
1723
2472
|
attackers: {
|
|
1724
2473
|
alliance_id: number;
|
|
@@ -1768,6 +2517,11 @@ export interface GetKillmailKillmailHashParams {
|
|
|
1768
2517
|
killmail_id: number | string;
|
|
1769
2518
|
killmail_hash: number | string;
|
|
1770
2519
|
}
|
|
2520
|
+
export interface GetKillmailKillmailHashResponseHeaders {
|
|
2521
|
+
'Cache-Control'?: string;
|
|
2522
|
+
ETag?: string;
|
|
2523
|
+
'Last-Modified'?: string;
|
|
2524
|
+
}
|
|
1771
2525
|
export type GetLoyaltyCorporationOffersResponse = {
|
|
1772
2526
|
ak_cost: number;
|
|
1773
2527
|
isk_cost: number;
|
|
@@ -1783,7 +2537,17 @@ export type GetLoyaltyCorporationOffersResponse = {
|
|
|
1783
2537
|
export interface GetLoyaltyCorporationOffersParams {
|
|
1784
2538
|
corporation_id: number | string;
|
|
1785
2539
|
}
|
|
2540
|
+
export interface GetLoyaltyCorporationOffersResponseHeaders {
|
|
2541
|
+
'Cache-Control'?: string;
|
|
2542
|
+
ETag?: string;
|
|
2543
|
+
'Last-Modified'?: string;
|
|
2544
|
+
}
|
|
1786
2545
|
export type GetMarketsGroupsResponse = number[];
|
|
2546
|
+
export interface GetMarketsGroupsResponseHeaders {
|
|
2547
|
+
'Cache-Control'?: string;
|
|
2548
|
+
ETag?: string;
|
|
2549
|
+
'Last-Modified'?: string;
|
|
2550
|
+
}
|
|
1787
2551
|
export interface GetMarketsGroupsMarketGroupIdResponse {
|
|
1788
2552
|
description: string;
|
|
1789
2553
|
market_group_id: number;
|
|
@@ -1794,11 +2558,22 @@ export interface GetMarketsGroupsMarketGroupIdResponse {
|
|
|
1794
2558
|
export interface GetMarketsGroupsMarketGroupIdParams {
|
|
1795
2559
|
market_group_id: number | string;
|
|
1796
2560
|
}
|
|
2561
|
+
export interface GetMarketsGroupsMarketGroupIdResponseHeaders {
|
|
2562
|
+
'Cache-Control'?: string;
|
|
2563
|
+
'Content-Language'?: 'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es';
|
|
2564
|
+
ETag?: string;
|
|
2565
|
+
'Last-Modified'?: string;
|
|
2566
|
+
}
|
|
1797
2567
|
export type GetMarketsPricesResponse = {
|
|
1798
2568
|
adjusted_price: number;
|
|
1799
2569
|
average_price: number;
|
|
1800
2570
|
type_id: number;
|
|
1801
2571
|
}[];
|
|
2572
|
+
export interface GetMarketsPricesResponseHeaders {
|
|
2573
|
+
'Cache-Control'?: string;
|
|
2574
|
+
ETag?: string;
|
|
2575
|
+
'Last-Modified'?: string;
|
|
2576
|
+
}
|
|
1802
2577
|
export type GetMarketsStructureResponse = {
|
|
1803
2578
|
duration: number;
|
|
1804
2579
|
is_buy_order: boolean;
|
|
@@ -1816,6 +2591,12 @@ export interface GetMarketsStructureParams {
|
|
|
1816
2591
|
structure_id: number | string;
|
|
1817
2592
|
page?: number;
|
|
1818
2593
|
}
|
|
2594
|
+
export interface GetMarketsStructureResponseHeaders {
|
|
2595
|
+
'Cache-Control'?: string;
|
|
2596
|
+
ETag?: string;
|
|
2597
|
+
'Last-Modified'?: string;
|
|
2598
|
+
'X-Pages'?: number;
|
|
2599
|
+
}
|
|
1819
2600
|
export type GetRegionHistoryResponse = {
|
|
1820
2601
|
average: number;
|
|
1821
2602
|
date: string;
|
|
@@ -1828,6 +2609,11 @@ export interface GetRegionHistoryParams {
|
|
|
1828
2609
|
region_id: number | string;
|
|
1829
2610
|
type_id?: number;
|
|
1830
2611
|
}
|
|
2612
|
+
export interface GetRegionHistoryResponseHeaders {
|
|
2613
|
+
'Cache-Control'?: string;
|
|
2614
|
+
ETag?: string;
|
|
2615
|
+
'Last-Modified'?: string;
|
|
2616
|
+
}
|
|
1831
2617
|
export type GetRegionOrdersResponse = {
|
|
1832
2618
|
duration: number;
|
|
1833
2619
|
is_buy_order: boolean;
|
|
@@ -1848,11 +2634,23 @@ export interface GetRegionOrdersParams {
|
|
|
1848
2634
|
page?: number;
|
|
1849
2635
|
type_id?: number;
|
|
1850
2636
|
}
|
|
2637
|
+
export interface GetRegionOrdersResponseHeaders {
|
|
2638
|
+
'Cache-Control'?: string;
|
|
2639
|
+
ETag?: string;
|
|
2640
|
+
'Last-Modified'?: string;
|
|
2641
|
+
'X-Pages'?: number;
|
|
2642
|
+
}
|
|
1851
2643
|
export type GetRegionTypesResponse = number[];
|
|
1852
2644
|
export interface GetRegionTypesParams {
|
|
1853
2645
|
region_id: number | string;
|
|
1854
2646
|
page?: number;
|
|
1855
2647
|
}
|
|
2648
|
+
export interface GetRegionTypesResponseHeaders {
|
|
2649
|
+
'Cache-Control'?: string;
|
|
2650
|
+
ETag?: string;
|
|
2651
|
+
'Last-Modified'?: string;
|
|
2652
|
+
'X-Pages'?: number;
|
|
2653
|
+
}
|
|
1856
2654
|
export type GetRouteOriginDestinationResponse = number[];
|
|
1857
2655
|
export interface GetRouteOriginDestinationParams {
|
|
1858
2656
|
origin: number | string;
|
|
@@ -1861,6 +2659,11 @@ export interface GetRouteOriginDestinationParams {
|
|
|
1861
2659
|
connections?: number[][];
|
|
1862
2660
|
flag?: 'shortest' | 'secure' | 'insecure';
|
|
1863
2661
|
}
|
|
2662
|
+
export interface GetRouteOriginDestinationResponseHeaders {
|
|
2663
|
+
'Cache-Control'?: string;
|
|
2664
|
+
ETag?: string;
|
|
2665
|
+
'Last-Modified'?: string;
|
|
2666
|
+
}
|
|
1864
2667
|
export type GetSovereigntyCampaignsResponse = {
|
|
1865
2668
|
attackers_score: number;
|
|
1866
2669
|
campaign_id: number;
|
|
@@ -1876,12 +2679,22 @@ export type GetSovereigntyCampaignsResponse = {
|
|
|
1876
2679
|
start_time: string;
|
|
1877
2680
|
structure_id: number;
|
|
1878
2681
|
}[];
|
|
2682
|
+
export interface GetSovereigntyCampaignsResponseHeaders {
|
|
2683
|
+
'Cache-Control'?: string;
|
|
2684
|
+
ETag?: string;
|
|
2685
|
+
'Last-Modified'?: string;
|
|
2686
|
+
}
|
|
1879
2687
|
export type GetSovereigntyMapResponse = {
|
|
1880
2688
|
alliance_id: number;
|
|
1881
2689
|
corporation_id: number;
|
|
1882
2690
|
faction_id: number;
|
|
1883
2691
|
system_id: number;
|
|
1884
2692
|
}[];
|
|
2693
|
+
export interface GetSovereigntyMapResponseHeaders {
|
|
2694
|
+
'Cache-Control'?: string;
|
|
2695
|
+
ETag?: string;
|
|
2696
|
+
'Last-Modified'?: string;
|
|
2697
|
+
}
|
|
1885
2698
|
export type GetSovereigntyStructuresResponse = {
|
|
1886
2699
|
alliance_id: number;
|
|
1887
2700
|
solar_system_id: number;
|
|
@@ -1891,30 +2704,60 @@ export type GetSovereigntyStructuresResponse = {
|
|
|
1891
2704
|
vulnerable_end_time: string;
|
|
1892
2705
|
vulnerable_start_time: string;
|
|
1893
2706
|
}[];
|
|
2707
|
+
export interface GetSovereigntyStructuresResponseHeaders {
|
|
2708
|
+
'Cache-Control'?: string;
|
|
2709
|
+
ETag?: string;
|
|
2710
|
+
'Last-Modified'?: string;
|
|
2711
|
+
}
|
|
1894
2712
|
export interface GetStatusResponse {
|
|
1895
2713
|
players: number;
|
|
1896
2714
|
server_version: string;
|
|
1897
2715
|
start_time: string;
|
|
1898
2716
|
vip?: boolean;
|
|
1899
2717
|
}
|
|
2718
|
+
export interface GetStatusResponseHeaders {
|
|
2719
|
+
'Cache-Control'?: string;
|
|
2720
|
+
ETag?: string;
|
|
2721
|
+
'Last-Modified'?: string;
|
|
2722
|
+
}
|
|
1900
2723
|
export type PostUiAutopilotWaypointResponse = unknown;
|
|
1901
2724
|
export interface PostUiAutopilotWaypointParams {
|
|
1902
2725
|
add_to_beginning?: boolean;
|
|
1903
2726
|
clear_other_waypoints?: boolean;
|
|
1904
2727
|
destination_id?: number;
|
|
1905
2728
|
}
|
|
2729
|
+
export interface PostUiAutopilotWaypointResponseHeaders {
|
|
2730
|
+
'Cache-Control'?: string;
|
|
2731
|
+
ETag?: string;
|
|
2732
|
+
'Last-Modified'?: string;
|
|
2733
|
+
}
|
|
1906
2734
|
export type PostUiOpenwindowContractResponse = unknown;
|
|
1907
2735
|
export interface PostUiOpenwindowContractParams {
|
|
1908
2736
|
contract_id?: number;
|
|
1909
2737
|
}
|
|
2738
|
+
export interface PostUiOpenwindowContractResponseHeaders {
|
|
2739
|
+
'Cache-Control'?: string;
|
|
2740
|
+
ETag?: string;
|
|
2741
|
+
'Last-Modified'?: string;
|
|
2742
|
+
}
|
|
1910
2743
|
export type PostUiOpenwindowInformationResponse = unknown;
|
|
1911
2744
|
export interface PostUiOpenwindowInformationParams {
|
|
1912
2745
|
target_id?: number;
|
|
1913
2746
|
}
|
|
2747
|
+
export interface PostUiOpenwindowInformationResponseHeaders {
|
|
2748
|
+
'Cache-Control'?: string;
|
|
2749
|
+
ETag?: string;
|
|
2750
|
+
'Last-Modified'?: string;
|
|
2751
|
+
}
|
|
1914
2752
|
export type PostUiOpenwindowMarketdetailsResponse = unknown;
|
|
1915
2753
|
export interface PostUiOpenwindowMarketdetailsParams {
|
|
1916
2754
|
type_id?: number;
|
|
1917
2755
|
}
|
|
2756
|
+
export interface PostUiOpenwindowMarketdetailsResponseHeaders {
|
|
2757
|
+
'Cache-Control'?: string;
|
|
2758
|
+
ETag?: string;
|
|
2759
|
+
'Last-Modified'?: string;
|
|
2760
|
+
}
|
|
1918
2761
|
export type PostUiOpenwindowNewmailResponse = unknown;
|
|
1919
2762
|
export interface PostUiOpenwindowNewmailParams {
|
|
1920
2763
|
body: string;
|
|
@@ -1923,6 +2766,11 @@ export interface PostUiOpenwindowNewmailParams {
|
|
|
1923
2766
|
to_corp_or_alliance_id?: number;
|
|
1924
2767
|
to_mailing_list_id?: number;
|
|
1925
2768
|
}
|
|
2769
|
+
export interface PostUiOpenwindowNewmailResponseHeaders {
|
|
2770
|
+
'Cache-Control'?: string;
|
|
2771
|
+
ETag?: string;
|
|
2772
|
+
'Last-Modified'?: string;
|
|
2773
|
+
}
|
|
1926
2774
|
export type GetUniverseAncestriesResponse = {
|
|
1927
2775
|
bloodline_id: number;
|
|
1928
2776
|
description: string;
|
|
@@ -1931,6 +2779,12 @@ export type GetUniverseAncestriesResponse = {
|
|
|
1931
2779
|
name: string;
|
|
1932
2780
|
short_description: string;
|
|
1933
2781
|
}[];
|
|
2782
|
+
export interface GetUniverseAncestriesResponseHeaders {
|
|
2783
|
+
'Cache-Control'?: string;
|
|
2784
|
+
'Content-Language'?: 'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es';
|
|
2785
|
+
ETag?: string;
|
|
2786
|
+
'Last-Modified'?: string;
|
|
2787
|
+
}
|
|
1934
2788
|
export interface GetUniverseAsteroidBeltsAsteroidBeltIdResponse {
|
|
1935
2789
|
name: string;
|
|
1936
2790
|
position: {
|
|
@@ -1943,6 +2797,11 @@ export interface GetUniverseAsteroidBeltsAsteroidBeltIdResponse {
|
|
|
1943
2797
|
export interface GetUniverseAsteroidBeltsAsteroidBeltIdParams {
|
|
1944
2798
|
asteroid_belt_id: number | string;
|
|
1945
2799
|
}
|
|
2800
|
+
export interface GetUniverseAsteroidBeltsAsteroidBeltIdResponseHeaders {
|
|
2801
|
+
'Cache-Control'?: string;
|
|
2802
|
+
ETag?: string;
|
|
2803
|
+
'Last-Modified'?: string;
|
|
2804
|
+
}
|
|
1946
2805
|
export type GetUniverseBloodlinesResponse = {
|
|
1947
2806
|
bloodline_id: number;
|
|
1948
2807
|
charisma: number;
|
|
@@ -1956,7 +2815,18 @@ export type GetUniverseBloodlinesResponse = {
|
|
|
1956
2815
|
ship_type_id: number;
|
|
1957
2816
|
willpower: number;
|
|
1958
2817
|
}[];
|
|
2818
|
+
export interface GetUniverseBloodlinesResponseHeaders {
|
|
2819
|
+
'Cache-Control'?: string;
|
|
2820
|
+
'Content-Language'?: 'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es';
|
|
2821
|
+
ETag?: string;
|
|
2822
|
+
'Last-Modified'?: string;
|
|
2823
|
+
}
|
|
1959
2824
|
export type GetUniverseCategoriesResponse = number[];
|
|
2825
|
+
export interface GetUniverseCategoriesResponseHeaders {
|
|
2826
|
+
'Cache-Control'?: string;
|
|
2827
|
+
ETag?: string;
|
|
2828
|
+
'Last-Modified'?: string;
|
|
2829
|
+
}
|
|
1960
2830
|
export interface GetUniverseCategoryResponse {
|
|
1961
2831
|
category_id: number;
|
|
1962
2832
|
groups: number[];
|
|
@@ -1966,7 +2836,18 @@ export interface GetUniverseCategoryResponse {
|
|
|
1966
2836
|
export interface GetUniverseCategoryParams {
|
|
1967
2837
|
category_id: number | string;
|
|
1968
2838
|
}
|
|
2839
|
+
export interface GetUniverseCategoryResponseHeaders {
|
|
2840
|
+
'Cache-Control'?: string;
|
|
2841
|
+
'Content-Language'?: 'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es';
|
|
2842
|
+
ETag?: string;
|
|
2843
|
+
'Last-Modified'?: string;
|
|
2844
|
+
}
|
|
1969
2845
|
export type GetUniverseConstellationsResponse = number[];
|
|
2846
|
+
export interface GetUniverseConstellationsResponseHeaders {
|
|
2847
|
+
'Cache-Control'?: string;
|
|
2848
|
+
ETag?: string;
|
|
2849
|
+
'Last-Modified'?: string;
|
|
2850
|
+
}
|
|
1970
2851
|
export interface GetUniverseConstellationResponse {
|
|
1971
2852
|
constellation_id: number;
|
|
1972
2853
|
name: string;
|
|
@@ -1981,6 +2862,12 @@ export interface GetUniverseConstellationResponse {
|
|
|
1981
2862
|
export interface GetUniverseConstellationParams {
|
|
1982
2863
|
constellation_id: number | string;
|
|
1983
2864
|
}
|
|
2865
|
+
export interface GetUniverseConstellationResponseHeaders {
|
|
2866
|
+
'Cache-Control'?: string;
|
|
2867
|
+
'Content-Language'?: 'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es';
|
|
2868
|
+
ETag?: string;
|
|
2869
|
+
'Last-Modified'?: string;
|
|
2870
|
+
}
|
|
1984
2871
|
export type GetUniverseFactionsResponse = {
|
|
1985
2872
|
corporation_id: number;
|
|
1986
2873
|
description: string;
|
|
@@ -1993,7 +2880,18 @@ export type GetUniverseFactionsResponse = {
|
|
|
1993
2880
|
station_count: number;
|
|
1994
2881
|
station_system_count: number;
|
|
1995
2882
|
}[];
|
|
2883
|
+
export interface GetUniverseFactionsResponseHeaders {
|
|
2884
|
+
'Cache-Control'?: string;
|
|
2885
|
+
'Content-Language'?: 'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es';
|
|
2886
|
+
ETag?: string;
|
|
2887
|
+
'Last-Modified'?: string;
|
|
2888
|
+
}
|
|
1996
2889
|
export type GetUniverseGraphicsResponse = number[];
|
|
2890
|
+
export interface GetUniverseGraphicsResponseHeaders {
|
|
2891
|
+
'Cache-Control'?: string;
|
|
2892
|
+
ETag?: string;
|
|
2893
|
+
'Last-Modified'?: string;
|
|
2894
|
+
}
|
|
1997
2895
|
export interface GetUniverseGraphicResponse {
|
|
1998
2896
|
collision_file?: string;
|
|
1999
2897
|
graphic_file?: string;
|
|
@@ -2007,10 +2905,21 @@ export interface GetUniverseGraphicResponse {
|
|
|
2007
2905
|
export interface GetUniverseGraphicParams {
|
|
2008
2906
|
graphic_id: number | string;
|
|
2009
2907
|
}
|
|
2908
|
+
export interface GetUniverseGraphicResponseHeaders {
|
|
2909
|
+
'Cache-Control'?: string;
|
|
2910
|
+
ETag?: string;
|
|
2911
|
+
'Last-Modified'?: string;
|
|
2912
|
+
}
|
|
2010
2913
|
export type GetUniverseGroupsResponse = number[];
|
|
2011
2914
|
export interface GetUniverseGroupsParams {
|
|
2012
2915
|
page?: number;
|
|
2013
2916
|
}
|
|
2917
|
+
export interface GetUniverseGroupsResponseHeaders {
|
|
2918
|
+
'Cache-Control'?: string;
|
|
2919
|
+
ETag?: string;
|
|
2920
|
+
'Last-Modified'?: string;
|
|
2921
|
+
'X-Pages'?: number;
|
|
2922
|
+
}
|
|
2014
2923
|
export interface GetUniverseGroupResponse {
|
|
2015
2924
|
category_id: number;
|
|
2016
2925
|
group_id: number;
|
|
@@ -2021,6 +2930,12 @@ export interface GetUniverseGroupResponse {
|
|
|
2021
2930
|
export interface GetUniverseGroupParams {
|
|
2022
2931
|
group_id: number | string;
|
|
2023
2932
|
}
|
|
2933
|
+
export interface GetUniverseGroupResponseHeaders {
|
|
2934
|
+
'Cache-Control'?: string;
|
|
2935
|
+
'Content-Language'?: 'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es';
|
|
2936
|
+
ETag?: string;
|
|
2937
|
+
'Last-Modified'?: string;
|
|
2938
|
+
}
|
|
2024
2939
|
export interface PostUniverseIdsResponse {
|
|
2025
2940
|
agents?: {
|
|
2026
2941
|
id: number;
|
|
@@ -2066,6 +2981,12 @@ export interface PostUniverseIdsResponse {
|
|
|
2066
2981
|
export interface PostUniverseIdsParams {
|
|
2067
2982
|
body: string[];
|
|
2068
2983
|
}
|
|
2984
|
+
export interface PostUniverseIdsResponseHeaders {
|
|
2985
|
+
'Cache-Control'?: string;
|
|
2986
|
+
'Content-Language'?: 'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es';
|
|
2987
|
+
ETag?: string;
|
|
2988
|
+
'Last-Modified'?: string;
|
|
2989
|
+
}
|
|
2069
2990
|
export interface GetUniverseMoonResponse {
|
|
2070
2991
|
moon_id: number;
|
|
2071
2992
|
name: string;
|
|
@@ -2079,6 +3000,11 @@ export interface GetUniverseMoonResponse {
|
|
|
2079
3000
|
export interface GetUniverseMoonParams {
|
|
2080
3001
|
moon_id: number | string;
|
|
2081
3002
|
}
|
|
3003
|
+
export interface GetUniverseMoonResponseHeaders {
|
|
3004
|
+
'Cache-Control'?: string;
|
|
3005
|
+
ETag?: string;
|
|
3006
|
+
'Last-Modified'?: string;
|
|
3007
|
+
}
|
|
2082
3008
|
export type PostUniverseNamesResponse = {
|
|
2083
3009
|
category: 'alliance' | 'character' | 'constellation' | 'corporation' | 'inventory_type' | 'region' | 'solar_system' | 'station' | 'faction';
|
|
2084
3010
|
id: number;
|
|
@@ -2087,6 +3013,11 @@ export type PostUniverseNamesResponse = {
|
|
|
2087
3013
|
export interface PostUniverseNamesParams {
|
|
2088
3014
|
body: number[];
|
|
2089
3015
|
}
|
|
3016
|
+
export interface PostUniverseNamesResponseHeaders {
|
|
3017
|
+
'Cache-Control'?: string;
|
|
3018
|
+
ETag?: string;
|
|
3019
|
+
'Last-Modified'?: string;
|
|
3020
|
+
}
|
|
2090
3021
|
export interface GetUniversePlanetResponse {
|
|
2091
3022
|
name: string;
|
|
2092
3023
|
planet_id: number;
|
|
@@ -2101,13 +3032,29 @@ export interface GetUniversePlanetResponse {
|
|
|
2101
3032
|
export interface GetUniversePlanetParams {
|
|
2102
3033
|
planet_id: number | string;
|
|
2103
3034
|
}
|
|
3035
|
+
export interface GetUniversePlanetResponseHeaders {
|
|
3036
|
+
'Cache-Control'?: string;
|
|
3037
|
+
ETag?: string;
|
|
3038
|
+
'Last-Modified'?: string;
|
|
3039
|
+
}
|
|
2104
3040
|
export type GetUniverseRacesResponse = {
|
|
2105
3041
|
alliance_id: number;
|
|
2106
3042
|
description: string;
|
|
2107
3043
|
name: string;
|
|
2108
3044
|
race_id: number;
|
|
2109
3045
|
}[];
|
|
3046
|
+
export interface GetUniverseRacesResponseHeaders {
|
|
3047
|
+
'Cache-Control'?: string;
|
|
3048
|
+
'Content-Language'?: 'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es';
|
|
3049
|
+
ETag?: string;
|
|
3050
|
+
'Last-Modified'?: string;
|
|
3051
|
+
}
|
|
2110
3052
|
export type GetUniverseRegionsResponse = number[];
|
|
3053
|
+
export interface GetUniverseRegionsResponseHeaders {
|
|
3054
|
+
'Cache-Control'?: string;
|
|
3055
|
+
ETag?: string;
|
|
3056
|
+
'Last-Modified'?: string;
|
|
3057
|
+
}
|
|
2111
3058
|
export interface GetUniverseRegionResponse {
|
|
2112
3059
|
constellations: number[];
|
|
2113
3060
|
description?: string;
|
|
@@ -2117,6 +3064,12 @@ export interface GetUniverseRegionResponse {
|
|
|
2117
3064
|
export interface GetUniverseRegionParams {
|
|
2118
3065
|
region_id: number | string;
|
|
2119
3066
|
}
|
|
3067
|
+
export interface GetUniverseRegionResponseHeaders {
|
|
3068
|
+
'Cache-Control'?: string;
|
|
3069
|
+
'Content-Language'?: 'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es';
|
|
3070
|
+
ETag?: string;
|
|
3071
|
+
'Last-Modified'?: string;
|
|
3072
|
+
}
|
|
2120
3073
|
export interface GetUniverseSchematicResponse {
|
|
2121
3074
|
cycle_time: number;
|
|
2122
3075
|
schematic_name: string;
|
|
@@ -2124,6 +3077,11 @@ export interface GetUniverseSchematicResponse {
|
|
|
2124
3077
|
export interface GetUniverseSchematicParams {
|
|
2125
3078
|
schematic_id: number | string;
|
|
2126
3079
|
}
|
|
3080
|
+
export interface GetUniverseSchematicResponseHeaders {
|
|
3081
|
+
'Cache-Control'?: string;
|
|
3082
|
+
ETag?: string;
|
|
3083
|
+
'Last-Modified'?: string;
|
|
3084
|
+
}
|
|
2127
3085
|
export interface GetUniverseStargateResponse {
|
|
2128
3086
|
destination: {
|
|
2129
3087
|
stargate_id: number;
|
|
@@ -2142,6 +3100,11 @@ export interface GetUniverseStargateResponse {
|
|
|
2142
3100
|
export interface GetUniverseStargateParams {
|
|
2143
3101
|
stargate_id: number | string;
|
|
2144
3102
|
}
|
|
3103
|
+
export interface GetUniverseStargateResponseHeaders {
|
|
3104
|
+
'Cache-Control'?: string;
|
|
3105
|
+
ETag?: string;
|
|
3106
|
+
'Last-Modified'?: string;
|
|
3107
|
+
}
|
|
2145
3108
|
export interface GetUniverseStarResponse {
|
|
2146
3109
|
age: number;
|
|
2147
3110
|
luminosity: number;
|
|
@@ -2155,6 +3118,11 @@ export interface GetUniverseStarResponse {
|
|
|
2155
3118
|
export interface GetUniverseStarParams {
|
|
2156
3119
|
star_id: number | string;
|
|
2157
3120
|
}
|
|
3121
|
+
export interface GetUniverseStarResponseHeaders {
|
|
3122
|
+
'Cache-Control'?: string;
|
|
3123
|
+
ETag?: string;
|
|
3124
|
+
'Last-Modified'?: string;
|
|
3125
|
+
}
|
|
2158
3126
|
export interface GetUniverseStationResponse {
|
|
2159
3127
|
max_dockable_ship_volume: number;
|
|
2160
3128
|
name: string;
|
|
@@ -2176,10 +3144,20 @@ export interface GetUniverseStationResponse {
|
|
|
2176
3144
|
export interface GetUniverseStationParams {
|
|
2177
3145
|
station_id: number | string;
|
|
2178
3146
|
}
|
|
3147
|
+
export interface GetUniverseStationResponseHeaders {
|
|
3148
|
+
'Cache-Control'?: string;
|
|
3149
|
+
ETag?: string;
|
|
3150
|
+
'Last-Modified'?: string;
|
|
3151
|
+
}
|
|
2179
3152
|
export type GetUniverseStructuresResponse = number[];
|
|
2180
3153
|
export interface GetUniverseStructuresParams {
|
|
2181
3154
|
filter?: 'market' | 'manufacturing_basic';
|
|
2182
3155
|
}
|
|
3156
|
+
export interface GetUniverseStructuresResponseHeaders {
|
|
3157
|
+
'Cache-Control'?: string;
|
|
3158
|
+
ETag?: string;
|
|
3159
|
+
'Last-Modified'?: string;
|
|
3160
|
+
}
|
|
2183
3161
|
export interface GetUniverseStructureResponse {
|
|
2184
3162
|
name: string;
|
|
2185
3163
|
owner_id: number;
|
|
@@ -2194,17 +3172,37 @@ export interface GetUniverseStructureResponse {
|
|
|
2194
3172
|
export interface GetUniverseStructureParams {
|
|
2195
3173
|
structure_id: number | string;
|
|
2196
3174
|
}
|
|
3175
|
+
export interface GetUniverseStructureResponseHeaders {
|
|
3176
|
+
'Cache-Control'?: string;
|
|
3177
|
+
ETag?: string;
|
|
3178
|
+
'Last-Modified'?: string;
|
|
3179
|
+
}
|
|
2197
3180
|
export type GetUniverseSystemJumpsResponse = {
|
|
2198
3181
|
ship_jumps: number;
|
|
2199
3182
|
system_id: number;
|
|
2200
3183
|
}[];
|
|
3184
|
+
export interface GetUniverseSystemJumpsResponseHeaders {
|
|
3185
|
+
'Cache-Control'?: string;
|
|
3186
|
+
ETag?: string;
|
|
3187
|
+
'Last-Modified'?: string;
|
|
3188
|
+
}
|
|
2201
3189
|
export type GetUniverseSystemKillsResponse = {
|
|
2202
3190
|
npc_kills: number;
|
|
2203
3191
|
pod_kills: number;
|
|
2204
3192
|
ship_kills: number;
|
|
2205
3193
|
system_id: number;
|
|
2206
3194
|
}[];
|
|
3195
|
+
export interface GetUniverseSystemKillsResponseHeaders {
|
|
3196
|
+
'Cache-Control'?: string;
|
|
3197
|
+
ETag?: string;
|
|
3198
|
+
'Last-Modified'?: string;
|
|
3199
|
+
}
|
|
2207
3200
|
export type GetUniverseSystemsResponse = number[];
|
|
3201
|
+
export interface GetUniverseSystemsResponseHeaders {
|
|
3202
|
+
'Cache-Control'?: string;
|
|
3203
|
+
ETag?: string;
|
|
3204
|
+
'Last-Modified'?: string;
|
|
3205
|
+
}
|
|
2208
3206
|
export interface GetUniverseSystemResponse {
|
|
2209
3207
|
constellation_id: number;
|
|
2210
3208
|
name: string;
|
|
@@ -2228,10 +3226,22 @@ export interface GetUniverseSystemResponse {
|
|
|
2228
3226
|
export interface GetUniverseSystemParams {
|
|
2229
3227
|
system_id: number | string;
|
|
2230
3228
|
}
|
|
3229
|
+
export interface GetUniverseSystemResponseHeaders {
|
|
3230
|
+
'Cache-Control'?: string;
|
|
3231
|
+
'Content-Language'?: 'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es';
|
|
3232
|
+
ETag?: string;
|
|
3233
|
+
'Last-Modified'?: string;
|
|
3234
|
+
}
|
|
2231
3235
|
export type GetUniverseTypesResponse = number[];
|
|
2232
3236
|
export interface GetUniverseTypesParams {
|
|
2233
3237
|
page?: number;
|
|
2234
3238
|
}
|
|
3239
|
+
export interface GetUniverseTypesResponseHeaders {
|
|
3240
|
+
'Cache-Control'?: string;
|
|
3241
|
+
ETag?: string;
|
|
3242
|
+
'Last-Modified'?: string;
|
|
3243
|
+
'X-Pages'?: number;
|
|
3244
|
+
}
|
|
2235
3245
|
export interface GetUniverseTypeResponse {
|
|
2236
3246
|
capacity?: number;
|
|
2237
3247
|
description: string;
|
|
@@ -2259,10 +3269,21 @@ export interface GetUniverseTypeResponse {
|
|
|
2259
3269
|
export interface GetUniverseTypeParams {
|
|
2260
3270
|
type_id: number | string;
|
|
2261
3271
|
}
|
|
3272
|
+
export interface GetUniverseTypeResponseHeaders {
|
|
3273
|
+
'Cache-Control'?: string;
|
|
3274
|
+
'Content-Language'?: 'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es';
|
|
3275
|
+
ETag?: string;
|
|
3276
|
+
'Last-Modified'?: string;
|
|
3277
|
+
}
|
|
2262
3278
|
export type GetWarsResponse = number[];
|
|
2263
3279
|
export interface GetWarsParams {
|
|
2264
3280
|
max_war_id?: number;
|
|
2265
3281
|
}
|
|
3282
|
+
export interface GetWarsResponseHeaders {
|
|
3283
|
+
'Cache-Control'?: string;
|
|
3284
|
+
ETag?: string;
|
|
3285
|
+
'Last-Modified'?: string;
|
|
3286
|
+
}
|
|
2266
3287
|
export interface GetWarResponse {
|
|
2267
3288
|
aggressor: {
|
|
2268
3289
|
alliance_id: number;
|
|
@@ -2291,6 +3312,11 @@ export interface GetWarResponse {
|
|
|
2291
3312
|
export interface GetWarParams {
|
|
2292
3313
|
war_id: number | string;
|
|
2293
3314
|
}
|
|
3315
|
+
export interface GetWarResponseHeaders {
|
|
3316
|
+
'Cache-Control'?: string;
|
|
3317
|
+
ETag?: string;
|
|
3318
|
+
'Last-Modified'?: string;
|
|
3319
|
+
}
|
|
2294
3320
|
export type GetWarKillmailsResponse = {
|
|
2295
3321
|
killmail_hash: string;
|
|
2296
3322
|
killmail_id: number;
|
|
@@ -2299,3 +3325,9 @@ export interface GetWarKillmailsParams {
|
|
|
2299
3325
|
war_id: number | string;
|
|
2300
3326
|
page?: number;
|
|
2301
3327
|
}
|
|
3328
|
+
export interface GetWarKillmailsResponseHeaders {
|
|
3329
|
+
'Cache-Control'?: string;
|
|
3330
|
+
ETag?: string;
|
|
3331
|
+
'Last-Modified'?: string;
|
|
3332
|
+
'X-Pages'?: number;
|
|
3333
|
+
}
|