eve-esi-types 2.3.4 → 2.3.5

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.
@@ -22,6 +22,6 @@ import type { IESIRequestFunction } from "../v2";
22
22
  * @param pathParams - An object of parameters to include in the request
23
23
  * @param options - An object of options to include in the request
24
24
  * @returns A Promise object containing the response data
25
- * @throws {ESIRequesError}
25
+ * @throws {util.ESIRequestError}
26
26
  */
27
27
  export declare const request: IESIRequestFunction<util.ESIRequestOptions>;
@@ -34,7 +34,7 @@ const DEBUG = util.isDebug();
34
34
  * @param pathParams - An object of parameters to include in the request
35
35
  * @param options - An object of options to include in the request
36
36
  * @returns A Promise object containing the response data
37
- * @throws {ESIRequesError}
37
+ * @throws {util.ESIRequestError}
38
38
  */
39
39
  export const request = /** @type {IESIRequestFunction} */ (async (method, endpoint, pathParams, opt) => {
40
40
  if (typeof pathParams === "number") {
package/lib/rq-util.d.mts CHANGED
@@ -60,12 +60,12 @@ export type ESIRequestOptions = {
60
60
  /**
61
61
  * simple named error class.
62
62
  */
63
- export declare class ESIRequesError extends Error {
63
+ export declare class ESIRequestError extends Error {
64
64
  }
65
65
  /**
66
66
  * throws when x-esi-error-limit-remain header value is "0". (http status: 420)
67
67
  */
68
- export declare class ESIErrorLimitReachedError extends ESIRequesError {
68
+ export declare class ESIErrorLimitReachedError extends ESIRequestError {
69
69
  constructor();
70
70
  valueOf(): number;
71
71
  }
package/lib/rq-util.mjs CHANGED
@@ -32,12 +32,12 @@ export const BASE = "https://esi.evetech.net";
32
32
  /**
33
33
  * simple named error class.
34
34
  */
35
- export class ESIRequesError extends Error {
35
+ export class ESIRequestError extends Error {
36
36
  }
37
37
  /**
38
38
  * throws when x-esi-error-limit-remain header value is "0". (http status: 420)
39
39
  */
40
- export class ESIErrorLimitReachedError extends ESIRequesError {
40
+ export class ESIErrorLimitReachedError extends ESIRequestError {
41
41
  constructor() {
42
42
  super("Cannot continue ESI request because 'x-esi-error-limit-remain' is zero!");
43
43
  }
@@ -118,7 +118,7 @@ export const handleESIError = async (res, endpointUrl, abortable) => {
118
118
  throw new ESIErrorLimitReachedError();
119
119
  }
120
120
  else {
121
- throw new ESIRequesError(`${res.statusText} (status=${status}, url=${endpointUrl})`);
121
+ throw new ESIRequestError(`${res.statusText} (status=${status}, url=${endpointUrl})`);
122
122
  }
123
123
  };
124
124
  /** @satisfies {TESIErrorStats[]} */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eve-esi-types",
3
- "version": "2.3.4",
3
+ "version": "2.3.5",
4
4
  "description": "Extracted the main type of ESI. use for ESI request response types (version 2 only)",
5
5
  "main": "v2/index.d.ts",
6
6
  "scripts": {
@@ -9,7 +9,7 @@
9
9
  * THIS DTS IS AUTO GENERATED, DO NOT EDIT
10
10
  *
11
11
  * @file eve-esi-types/v2/esi-tagged-types.d.ts
12
- * @summary This file is auto-generated and defines version 2.3.2 of the EVE Online ESI response types.
12
+ * @summary This file is auto-generated and defines version 2.3.5 of the EVE Online ESI response types.
13
13
  */
14
14
  import { TESIResponseOKMap } from "./index.d.ts";
15
15
  export * from "./index.d.ts";
@@ -30,13 +30,13 @@ export declare type LCamelCase<S extends string> = S extends `${infer P1} ${infe
30
30
  ? `${Lowercase<P1>}${Capitalize<P2>}` : Lowercase<S>;
31
31
 
32
32
 
33
- declare const enum EInferSomethingBy {
34
- METHOD,
35
- TAGs
36
- }
37
- declare type InferSomethingBy<Tag, AsType extends EInferSomethingBy = EInferSomethingBy.METHOD> = {
33
+ declare type EInferSomethingBy = {
34
+ readonly METHOD: 0;
35
+ readonly TAGs: 1;
36
+ };
37
+ declare type InferSomethingBy<Tag, AsType extends EInferSomethingBy = EInferSomethingBy["METHOD"]> = {
38
38
  [M in TESIEntryMethod]: TESIResponseOKMap[M] extends Record<`/${string}/`, { tag: infer ActualTag }>
39
- ? AsType extends EInferSomethingBy.TAGs
39
+ ? AsType extends EInferSomethingBy["TAGs"]
40
40
  ? ActualTag : ActualTag extends Tag
41
41
  ? M
42
42
  : never
@@ -50,7 +50,7 @@ declare type InferSomethingBy<Tag, AsType extends EInferSomethingBy = EInferSome
50
50
  * @template M - The HTTP method.
51
51
  * @date 2025/2/28
52
52
  */
53
- export declare type ESITags = InferSomethingBy<never, EInferSomethingBy.TAGs>
53
+ export declare type ESITags = InferSomethingBy<never, EInferSomethingBy["TAGs"]>
54
54
 
55
55
  // - - - - - - - - - - - - - - - - - - - - - - - - - -
56
56
  // Utility Type `InferMethod`
package/v2/index.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  * THIS DTS IS AUTO GENERATED, DO NOT EDIT
10
10
  *
11
11
  * @file eve-esi-types/v2/index.d.ts
12
- * @summary This file is auto-generated and defines version 2.3.2 of the EVE Online ESI response types.
12
+ * @summary This file is auto-generated and defines version 2.3.5 of the EVE Online ESI response types.
13
13
  */
14
14
 
15
15
  import type { TESIResponseOKMap } from "./response-map.d.ts";
@@ -68,6 +68,34 @@ export type TESIRequestFunctionMethods<ActualOpt = {}> = {
68
68
  [method in TESIEntryMethod]: TESIRequestFunctionEachMethod<method, ActualOpt>;
69
69
  }
70
70
 
71
+ /**
72
+ * List of "x-cached-seconds"
73
+ *
74
+ * ```ts
75
+ * // const cacheSecGet: 3600 | 300 | 604800 | 120 | 5 | 600 | 86400 | 60 | 30 | 1200 | 1800 | 30758400
76
+ * const cacheSecGet: TESICachedSeconds<"get">;
77
+ * // const cache5sec: 5
78
+ * const cache5s: TESICachedSeconds<"put">;
79
+ * // const cache3600s: 3600
80
+ * const cache3600s: TESICachedSeconds<"post">;
81
+ * // "/characters/affiliation/"
82
+ * const cache3600sEndpoint: TESICachedSeconds<"post", 1>;
83
+ * ```
84
+ */
85
+ export declare type TESICachedSeconds<
86
+ Method extends TESIEntryMethod, AsEndpoint = void
87
+ > = {
88
+ [M in TESIEntryMethod]: {
89
+ [EP in keyof TESIResponseOKMap[M]]: TESIResponseOKMap[M][EP]["cachedSeconds"] extends number
90
+ ? AsEndpoint extends void
91
+ ? TESIResponseOKMap[M][EP]["cachedSeconds"]: EP
92
+ : never
93
+ }[keyof TESIResponseOKMap[M]];
94
+ }[Method];
95
+ // const cacheSecGet: TESICachedSeconds<"get">;
96
+ // const cache5sec: TESICachedSeconds<"put">;
97
+ // const cache3600sEndpoint: TESICachedSeconds<"post", 1>;
98
+
71
99
  declare global {
72
100
 
73
101
  /**
@@ -143,7 +171,7 @@ declare global {
143
171
  //* ctt
144
172
  type IdentifyParameters<
145
173
  Entry, Opt,
146
- Keys = Exclude<keyof Entry, "result" | "tag">
174
+ Keys = Exclude<keyof Entry, "result" | "tag" | "cachedSeconds">
147
175
  > = RequireThese<Opt, Keys> & Pick<Entry, Keys>;
148
176
  /*/
149
177
  type IdentifyParameters<
@@ -9,7 +9,7 @@
9
9
  * THIS DTS IS AUTO GENERATED, DO NOT EDIT
10
10
  *
11
11
  * @file eve-esi-types/v2/response-map.d.ts
12
- * @summary This file is auto-generated and defines version 2.3.2 of the EVE Online ESI response types.
12
+ * @summary This file is auto-generated and defines version 2.3.5 of the EVE Online ESI response types.
13
13
  */
14
14
  import "./types-index.d.ts";
15
15
 
@@ -19,26 +19,31 @@ export type TESIResponseOKMap = {
19
19
  "/alliances/": {
20
20
  result: GetAlliancesOk;
21
21
  tag: "Alliance";
22
+ cachedSeconds: 3600;
22
23
  },
23
24
  "/alliances/{alliance_id}/": {
24
25
  result: GetAlliancesAllianceIdOk;
25
26
  tag: "Alliance";
27
+ cachedSeconds: 3600;
26
28
  },
27
29
  "/alliances/{alliance_id}/contacts/": {
28
30
  result: GetAlliancesAllianceIdContactsOk;
29
31
  /** `esi-alliances.read_contacts.v1` */
30
32
  auth: true;
31
33
  tag: "Contacts";
34
+ cachedSeconds: 300;
32
35
  },
33
36
  "/alliances/{alliance_id}/contacts/labels/": {
34
37
  result: GetAlliancesAllianceIdContactsLabelsOk;
35
38
  /** `esi-alliances.read_contacts.v1` */
36
39
  auth: true;
37
40
  tag: "Contacts";
41
+ cachedSeconds: 300;
38
42
  },
39
43
  "/alliances/{alliance_id}/corporations/": {
40
44
  result: GetAlliancesAllianceIdCorporationsOk;
41
45
  tag: "Alliance";
46
+ cachedSeconds: 3600;
42
47
  },
43
48
  "/alliances/{alliance_id}/icons/": {
44
49
  result: GetAlliancesAllianceIdIconsOk;
@@ -47,30 +52,35 @@ export type TESIResponseOKMap = {
47
52
  "/characters/{character_id}/": {
48
53
  result: GetCharactersCharacterIdOk;
49
54
  tag: "Character";
55
+ cachedSeconds: 604800;
50
56
  },
51
57
  "/characters/{character_id}/agents_research/": {
52
58
  result: GetCharactersCharacterIdAgentsResearchOk;
53
59
  /** `esi-characters.read_agents_research.v1` */
54
60
  auth: true;
55
61
  tag: "Character";
62
+ cachedSeconds: 3600;
56
63
  },
57
64
  "/characters/{character_id}/assets/": {
58
65
  result: GetCharactersCharacterIdAssetsOk;
59
66
  /** `esi-assets.read_assets.v1` */
60
67
  auth: true;
61
68
  tag: "Assets";
69
+ cachedSeconds: 3600;
62
70
  },
63
71
  "/characters/{character_id}/attributes/": {
64
72
  result: GetCharactersCharacterIdAttributesOk;
65
73
  /** `esi-skills.read_skills.v1` */
66
74
  auth: true;
67
75
  tag: "Skills";
76
+ cachedSeconds: 120;
68
77
  },
69
78
  "/characters/{character_id}/blueprints/": {
70
79
  result: GetCharactersCharacterIdBlueprintsOk;
71
80
  /** `esi-characters.read_blueprints.v1` */
72
81
  auth: true;
73
82
  tag: "Character";
83
+ cachedSeconds: 3600;
74
84
  },
75
85
  "/characters/{character_id}/calendar/": {
76
86
  result: GetCharactersCharacterIdCalendarOk;
@@ -80,88 +90,102 @@ export type TESIResponseOKMap = {
80
90
  /** `esi-calendar.read_calendar_events.v1` */
81
91
  auth: true;
82
92
  tag: "Calendar";
93
+ cachedSeconds: 5;
83
94
  },
84
95
  "/characters/{character_id}/calendar/{event_id}/": {
85
96
  result: GetCharactersCharacterIdCalendarEventIdOk;
86
97
  /** `esi-calendar.read_calendar_events.v1` */
87
98
  auth: true;
88
99
  tag: "Calendar";
100
+ cachedSeconds: 5;
89
101
  },
90
102
  "/characters/{character_id}/calendar/{event_id}/attendees/": {
91
103
  result: GetCharactersCharacterIdCalendarEventIdAttendeesOk;
92
104
  /** `esi-calendar.read_calendar_events.v1` */
93
105
  auth: true;
94
106
  tag: "Calendar";
107
+ cachedSeconds: 600;
95
108
  },
96
109
  "/characters/{character_id}/clones/": {
97
110
  result: GetCharactersCharacterIdClonesOk;
98
111
  /** `esi-clones.read_clones.v1` */
99
112
  auth: true;
100
113
  tag: "Clones";
114
+ cachedSeconds: 120;
101
115
  },
102
116
  "/characters/{character_id}/contacts/": {
103
117
  result: GetCharactersCharacterIdContactsOk;
104
118
  /** `esi-characters.read_contacts.v1` */
105
119
  auth: true;
106
120
  tag: "Contacts";
121
+ cachedSeconds: 300;
107
122
  },
108
123
  "/characters/{character_id}/contacts/labels/": {
109
124
  result: GetCharactersCharacterIdContactsLabelsOk;
110
125
  /** `esi-characters.read_contacts.v1` */
111
126
  auth: true;
112
127
  tag: "Contacts";
128
+ cachedSeconds: 300;
113
129
  },
114
130
  "/characters/{character_id}/contracts/": {
115
131
  result: GetCharactersCharacterIdContractsOk;
116
132
  /** `esi-contracts.read_character_contracts.v1` */
117
133
  auth: true;
118
134
  tag: "Contracts";
135
+ cachedSeconds: 300;
119
136
  },
120
137
  "/characters/{character_id}/contracts/{contract_id}/bids/": {
121
138
  result: GetCharactersCharacterIdContractsContractIdBidsOk;
122
139
  /** `esi-contracts.read_character_contracts.v1` */
123
140
  auth: true;
124
141
  tag: "Contracts";
142
+ cachedSeconds: 300;
125
143
  },
126
144
  "/characters/{character_id}/contracts/{contract_id}/items/": {
127
145
  result: GetCharactersCharacterIdContractsContractIdItemsOk;
128
146
  /** `esi-contracts.read_character_contracts.v1` */
129
147
  auth: true;
130
148
  tag: "Contracts";
149
+ cachedSeconds: 3600;
131
150
  },
132
151
  "/characters/{character_id}/corporationhistory/": {
133
152
  result: GetCharactersCharacterIdCorporationhistoryOk;
134
153
  tag: "Character";
154
+ cachedSeconds: 86400;
135
155
  },
136
156
  "/characters/{character_id}/fatigue/": {
137
157
  result: GetCharactersCharacterIdFatigueOk;
138
158
  /** `esi-characters.read_fatigue.v1` */
139
159
  auth: true;
140
160
  tag: "Character";
161
+ cachedSeconds: 300;
141
162
  },
142
163
  "/characters/{character_id}/fittings/": {
143
164
  result: GetCharactersCharacterIdFittingsOk;
144
165
  /** `esi-fittings.read_fittings.v1` */
145
166
  auth: true;
146
167
  tag: "Fittings";
168
+ cachedSeconds: 300;
147
169
  },
148
170
  "/characters/{character_id}/fleet/": {
149
171
  result: GetCharactersCharacterIdFleetOk;
150
172
  /** `esi-fleets.read_fleet.v1` */
151
173
  auth: true;
152
174
  tag: "Fleets";
175
+ cachedSeconds: 60;
153
176
  },
154
177
  "/characters/{character_id}/fw/stats/": {
155
178
  result: GetCharactersCharacterIdFwStatsOk;
156
179
  /** `esi-characters.read_fw_stats.v1` */
157
180
  auth: true;
158
- tag: "Faction Warfare"
181
+ tag: "Faction Warfare";
159
182
  },
160
183
  "/characters/{character_id}/implants/": {
161
184
  result: GetCharactersCharacterIdImplantsOk;
162
185
  /** `esi-clones.read_implants.v1` */
163
186
  auth: true;
164
187
  tag: "Clones";
188
+ cachedSeconds: 120;
165
189
  },
166
190
  "/characters/{character_id}/industry/jobs/": {
167
191
  result: GetCharactersCharacterIdIndustryJobsOk;
@@ -171,24 +195,28 @@ export type TESIResponseOKMap = {
171
195
  /** `esi-industry.read_character_jobs.v1` */
172
196
  auth: true;
173
197
  tag: "Industry";
198
+ cachedSeconds: 300;
174
199
  },
175
200
  "/characters/{character_id}/killmails/recent/": {
176
201
  result: GetCharactersCharacterIdKillmailsRecentOk;
177
202
  /** `esi-killmails.read_killmails.v1` */
178
203
  auth: true;
179
204
  tag: "Killmails";
205
+ cachedSeconds: 300;
180
206
  },
181
207
  "/characters/{character_id}/location/": {
182
208
  result: GetCharactersCharacterIdLocationOk;
183
209
  /** `esi-location.read_location.v1` */
184
210
  auth: true;
185
211
  tag: "Location";
212
+ cachedSeconds: 5;
186
213
  },
187
214
  "/characters/{character_id}/loyalty/points/": {
188
215
  result: GetCharactersCharacterIdLoyaltyPointsOk;
189
216
  /** `esi-characters.read_loyalty.v1` */
190
217
  auth: true;
191
218
  tag: "Loyalty";
219
+ cachedSeconds: 3600;
192
220
  },
193
221
  "/characters/{character_id}/mail/": {
194
222
  result: GetCharactersCharacterIdMailOk;
@@ -199,84 +227,97 @@ export type TESIResponseOKMap = {
199
227
  /** `esi-mail.read_mail.v1` */
200
228
  auth: true;
201
229
  tag: "Mail";
230
+ cachedSeconds: 30;
202
231
  },
203
232
  "/characters/{character_id}/mail/labels/": {
204
233
  result: GetCharactersCharacterIdMailLabelsOk;
205
234
  /** `esi-mail.read_mail.v1` */
206
235
  auth: true;
207
236
  tag: "Mail";
237
+ cachedSeconds: 30;
208
238
  },
209
239
  "/characters/{character_id}/mail/lists/": {
210
240
  result: GetCharactersCharacterIdMailListsOk;
211
241
  /** `esi-mail.read_mail.v1` */
212
242
  auth: true;
213
243
  tag: "Mail";
244
+ cachedSeconds: 120;
214
245
  },
215
246
  "/characters/{character_id}/mail/{mail_id}/": {
216
247
  result: GetCharactersCharacterIdMailMailIdOk;
217
248
  /** `esi-mail.read_mail.v1` */
218
249
  auth: true;
219
250
  tag: "Mail";
251
+ cachedSeconds: 30;
220
252
  },
221
253
  "/characters/{character_id}/medals/": {
222
254
  result: GetCharactersCharacterIdMedalsOk;
223
255
  /** `esi-characters.read_medals.v1` */
224
256
  auth: true;
225
257
  tag: "Character";
258
+ cachedSeconds: 3600;
226
259
  },
227
260
  "/characters/{character_id}/mining/": {
228
261
  result: GetCharactersCharacterIdMiningOk;
229
262
  /** `esi-industry.read_character_mining.v1` */
230
263
  auth: true;
231
264
  tag: "Industry";
265
+ cachedSeconds: 600;
232
266
  },
233
267
  "/characters/{character_id}/notifications/": {
234
268
  result: GetCharactersCharacterIdNotificationsOk;
235
269
  /** `esi-characters.read_notifications.v1` */
236
270
  auth: true;
237
271
  tag: "Character";
272
+ cachedSeconds: 600;
238
273
  },
239
274
  "/characters/{character_id}/notifications/contacts/": {
240
275
  result: GetCharactersCharacterIdNotificationsContactsOk;
241
276
  /** `esi-characters.read_notifications.v1` */
242
277
  auth: true;
243
278
  tag: "Character";
279
+ cachedSeconds: 600;
244
280
  },
245
281
  "/characters/{character_id}/online/": {
246
282
  result: GetCharactersCharacterIdOnlineOk;
247
283
  /** `esi-location.read_online.v1` */
248
284
  auth: true;
249
285
  tag: "Location";
286
+ cachedSeconds: 60;
250
287
  },
251
288
  "/characters/{character_id}/opportunities/": {
252
289
  result: GetCharactersCharacterIdOpportunitiesOk;
253
290
  /** `esi-characters.read_opportunities.v1` */
254
291
  auth: true;
255
292
  tag: "Opportunities";
293
+ cachedSeconds: 3600;
256
294
  },
257
295
  "/characters/{character_id}/orders/": {
258
296
  result: GetCharactersCharacterIdOrdersOk;
259
297
  /** `esi-markets.read_character_orders.v1` */
260
298
  auth: true;
261
299
  tag: "Market";
300
+ cachedSeconds: 1200;
262
301
  },
263
302
  "/characters/{character_id}/orders/history/": {
264
303
  result: GetCharactersCharacterIdOrdersHistoryOk;
265
304
  /** `esi-markets.read_character_orders.v1` */
266
305
  auth: true;
267
306
  tag: "Market";
307
+ cachedSeconds: 3600;
268
308
  },
269
309
  "/characters/{character_id}/planets/": {
270
310
  result: GetCharactersCharacterIdPlanetsOk;
271
311
  /** `esi-planets.manage_planets.v1` */
272
312
  auth: true;
273
- tag: "Planetary Interaction"
313
+ tag: "Planetary Interaction";
314
+ cachedSeconds: 600;
274
315
  },
275
316
  "/characters/{character_id}/planets/{planet_id}/": {
276
317
  result: GetCharactersCharacterIdPlanetsPlanetIdOk;
277
318
  /** `esi-planets.manage_planets.v1` */
278
319
  auth: true;
279
- tag: "Planetary Interaction"
320
+ tag: "Planetary Interaction";
280
321
  },
281
322
  "/characters/{character_id}/portrait/": {
282
323
  result: GetCharactersCharacterIdPortraitOk;
@@ -287,6 +328,7 @@ export type TESIResponseOKMap = {
287
328
  /** `esi-characters.read_corporation_roles.v1` */
288
329
  auth: true;
289
330
  tag: "Character";
331
+ cachedSeconds: 3600;
290
332
  },
291
333
  "/characters/{character_id}/search/": {
292
334
  result: GetCharactersCharacterIdSearchOk;
@@ -298,48 +340,56 @@ export type TESIResponseOKMap = {
298
340
  /** `esi-search.search_structures.v1` */
299
341
  auth: true;
300
342
  tag: "Search";
343
+ cachedSeconds: 3600;
301
344
  },
302
345
  "/characters/{character_id}/ship/": {
303
346
  result: GetCharactersCharacterIdShipOk;
304
347
  /** `esi-location.read_ship_type.v1` */
305
348
  auth: true;
306
349
  tag: "Location";
350
+ cachedSeconds: 5;
307
351
  },
308
352
  "/characters/{character_id}/skillqueue/": {
309
353
  result: GetCharactersCharacterIdSkillqueueOk;
310
354
  /** `esi-skills.read_skillqueue.v1` */
311
355
  auth: true;
312
356
  tag: "Skills";
357
+ cachedSeconds: 120;
313
358
  },
314
359
  "/characters/{character_id}/skills/": {
315
360
  result: GetCharactersCharacterIdSkillsOk;
316
361
  /** `esi-skills.read_skills.v1` */
317
362
  auth: true;
318
363
  tag: "Skills";
364
+ cachedSeconds: 120;
319
365
  },
320
366
  "/characters/{character_id}/standings/": {
321
367
  result: GetCharactersCharacterIdStandingsOk;
322
368
  /** `esi-characters.read_standings.v1` */
323
369
  auth: true;
324
370
  tag: "Character";
371
+ cachedSeconds: 3600;
325
372
  },
326
373
  "/characters/{character_id}/titles/": {
327
374
  result: GetCharactersCharacterIdTitlesOk;
328
375
  /** `esi-characters.read_titles.v1` */
329
376
  auth: true;
330
377
  tag: "Character";
378
+ cachedSeconds: 3600;
331
379
  },
332
380
  "/characters/{character_id}/wallet/": {
333
381
  result: GetCharactersCharacterIdWalletOk;
334
382
  /** `esi-wallet.read_character_wallet.v1` */
335
383
  auth: true;
336
384
  tag: "Wallet";
385
+ cachedSeconds: 120;
337
386
  },
338
387
  "/characters/{character_id}/wallet/journal/": {
339
388
  result: GetCharactersCharacterIdWalletJournalOk;
340
389
  /** `esi-wallet.read_character_wallet.v1` */
341
390
  auth: true;
342
391
  tag: "Wallet";
392
+ cachedSeconds: 3600;
343
393
  },
344
394
  "/characters/{character_id}/wallet/transactions/": {
345
395
  result: GetCharactersCharacterIdWalletTransactionsOk;
@@ -349,36 +399,43 @@ export type TESIResponseOKMap = {
349
399
  /** `esi-wallet.read_character_wallet.v1` */
350
400
  auth: true;
351
401
  tag: "Wallet";
402
+ cachedSeconds: 3600;
352
403
  },
353
404
  "/contracts/public/bids/{contract_id}/": {
354
405
  result: GetContractsPublicBidsContractIdOk;
355
406
  tag: "Contracts";
407
+ cachedSeconds: 300;
356
408
  },
357
409
  "/contracts/public/items/{contract_id}/": {
358
410
  result: GetContractsPublicItemsContractIdOk;
359
411
  tag: "Contracts";
412
+ cachedSeconds: 3600;
360
413
  },
361
414
  "/contracts/public/{region_id}/": {
362
415
  result: GetContractsPublicRegionIdOk;
363
416
  tag: "Contracts";
417
+ cachedSeconds: 1800;
364
418
  },
365
419
  "/corporation/{corporation_id}/mining/extractions/": {
366
420
  result: GetCorporationCorporationIdMiningExtractionsOk;
367
421
  /** `esi-industry.read_corporation_mining.v1` */
368
422
  auth: true;
369
423
  tag: "Industry";
424
+ cachedSeconds: 1800;
370
425
  },
371
426
  "/corporation/{corporation_id}/mining/observers/": {
372
427
  result: GetCorporationCorporationIdMiningObserversOk;
373
428
  /** `esi-industry.read_corporation_mining.v1` */
374
429
  auth: true;
375
430
  tag: "Industry";
431
+ cachedSeconds: 3600;
376
432
  },
377
433
  "/corporation/{corporation_id}/mining/observers/{observer_id}/": {
378
434
  result: GetCorporationCorporationIdMiningObserversObserverIdOk;
379
435
  /** `esi-industry.read_corporation_mining.v1` */
380
436
  auth: true;
381
437
  tag: "Industry";
438
+ cachedSeconds: 3600;
382
439
  },
383
440
  "/corporations/npccorps/": {
384
441
  result: GetCorporationsNpccorpsOk;
@@ -387,86 +444,100 @@ export type TESIResponseOKMap = {
387
444
  "/corporations/{corporation_id}/": {
388
445
  result: GetCorporationsCorporationIdOk;
389
446
  tag: "Corporation";
447
+ cachedSeconds: 3600;
390
448
  },
391
449
  "/corporations/{corporation_id}/alliancehistory/": {
392
450
  result: GetCorporationsCorporationIdAlliancehistoryOk;
393
451
  tag: "Corporation";
452
+ cachedSeconds: 3600;
394
453
  },
395
454
  "/corporations/{corporation_id}/assets/": {
396
455
  result: GetCorporationsCorporationIdAssetsOk;
397
456
  /** `esi-assets.read_corporation_assets.v1` */
398
457
  auth: true;
399
458
  tag: "Assets";
459
+ cachedSeconds: 3600;
400
460
  },
401
461
  "/corporations/{corporation_id}/blueprints/": {
402
462
  result: GetCorporationsCorporationIdBlueprintsOk;
403
463
  /** `esi-corporations.read_blueprints.v1` */
404
464
  auth: true;
405
465
  tag: "Corporation";
466
+ cachedSeconds: 3600;
406
467
  },
407
468
  "/corporations/{corporation_id}/contacts/": {
408
469
  result: GetCorporationsCorporationIdContactsOk;
409
470
  /** `esi-corporations.read_contacts.v1` */
410
471
  auth: true;
411
472
  tag: "Contacts";
473
+ cachedSeconds: 300;
412
474
  },
413
475
  "/corporations/{corporation_id}/contacts/labels/": {
414
476
  result: GetCorporationsCorporationIdContactsLabelsOk;
415
477
  /** `esi-corporations.read_contacts.v1` */
416
478
  auth: true;
417
479
  tag: "Contacts";
480
+ cachedSeconds: 300;
418
481
  },
419
482
  "/corporations/{corporation_id}/containers/logs/": {
420
483
  result: GetCorporationsCorporationIdContainersLogsOk;
421
484
  /** `esi-corporations.read_container_logs.v1` */
422
485
  auth: true;
423
486
  tag: "Corporation";
487
+ cachedSeconds: 600;
424
488
  },
425
489
  "/corporations/{corporation_id}/contracts/": {
426
490
  result: GetCorporationsCorporationIdContractsOk;
427
491
  /** `esi-contracts.read_corporation_contracts.v1` */
428
492
  auth: true;
429
493
  tag: "Contracts";
494
+ cachedSeconds: 300;
430
495
  },
431
496
  "/corporations/{corporation_id}/contracts/{contract_id}/bids/": {
432
497
  result: GetCorporationsCorporationIdContractsContractIdBidsOk;
433
498
  /** `esi-contracts.read_corporation_contracts.v1` */
434
499
  auth: true;
435
500
  tag: "Contracts";
501
+ cachedSeconds: 3600;
436
502
  },
437
503
  "/corporations/{corporation_id}/contracts/{contract_id}/items/": {
438
504
  result: GetCorporationsCorporationIdContractsContractIdItemsOk;
439
505
  /** `esi-contracts.read_corporation_contracts.v1` */
440
506
  auth: true;
441
507
  tag: "Contracts";
508
+ cachedSeconds: 3600;
442
509
  },
443
510
  "/corporations/{corporation_id}/customs_offices/": {
444
511
  result: GetCorporationsCorporationIdCustomsOfficesOk;
445
512
  /** `esi-planets.read_customs_offices.v1` */
446
513
  auth: true;
447
- tag: "Planetary Interaction"
514
+ tag: "Planetary Interaction";
515
+ cachedSeconds: 3600;
448
516
  },
449
517
  "/corporations/{corporation_id}/divisions/": {
450
518
  result: GetCorporationsCorporationIdDivisionsOk;
451
519
  /** `esi-corporations.read_divisions.v1` */
452
520
  auth: true;
453
521
  tag: "Corporation";
522
+ cachedSeconds: 3600;
454
523
  },
455
524
  "/corporations/{corporation_id}/facilities/": {
456
525
  result: GetCorporationsCorporationIdFacilitiesOk;
457
526
  /** `esi-corporations.read_facilities.v1` */
458
527
  auth: true;
459
528
  tag: "Corporation";
529
+ cachedSeconds: 3600;
460
530
  },
461
531
  "/corporations/{corporation_id}/fw/stats/": {
462
532
  result: GetCorporationsCorporationIdFwStatsOk;
463
533
  /** `esi-corporations.read_fw_stats.v1` */
464
534
  auth: true;
465
- tag: "Faction Warfare"
535
+ tag: "Faction Warfare";
466
536
  },
467
537
  "/corporations/{corporation_id}/icons/": {
468
538
  result: GetCorporationsCorporationIdIconsOk;
469
539
  tag: "Corporation";
540
+ cachedSeconds: 3600;
470
541
  },
471
542
  "/corporations/{corporation_id}/industry/jobs/": {
472
543
  result: GetCorporationsCorporationIdIndustryJobsOk;
@@ -476,90 +547,105 @@ export type TESIResponseOKMap = {
476
547
  /** `esi-industry.read_corporation_jobs.v1` */
477
548
  auth: true;
478
549
  tag: "Industry";
550
+ cachedSeconds: 300;
479
551
  },
480
552
  "/corporations/{corporation_id}/killmails/recent/": {
481
553
  result: GetCorporationsCorporationIdKillmailsRecentOk;
482
554
  /** `esi-killmails.read_corporation_killmails.v1` */
483
555
  auth: true;
484
556
  tag: "Killmails";
557
+ cachedSeconds: 300;
485
558
  },
486
559
  "/corporations/{corporation_id}/medals/": {
487
560
  result: GetCorporationsCorporationIdMedalsOk;
488
561
  /** `esi-corporations.read_medals.v1` */
489
562
  auth: true;
490
563
  tag: "Corporation";
564
+ cachedSeconds: 3600;
491
565
  },
492
566
  "/corporations/{corporation_id}/medals/issued/": {
493
567
  result: GetCorporationsCorporationIdMedalsIssuedOk;
494
568
  /** `esi-corporations.read_medals.v1` */
495
569
  auth: true;
496
570
  tag: "Corporation";
571
+ cachedSeconds: 3600;
497
572
  },
498
573
  "/corporations/{corporation_id}/members/": {
499
574
  result: GetCorporationsCorporationIdMembersOk;
500
575
  /** `esi-corporations.read_corporation_membership.v1` */
501
576
  auth: true;
502
577
  tag: "Corporation";
578
+ cachedSeconds: 3600;
503
579
  },
504
580
  "/corporations/{corporation_id}/members/limit/": {
505
581
  result: GetCorporationsCorporationIdMembersLimitOk;
506
582
  /** `esi-corporations.track_members.v1` */
507
583
  auth: true;
508
584
  tag: "Corporation";
585
+ cachedSeconds: 3600;
509
586
  },
510
587
  "/corporations/{corporation_id}/members/titles/": {
511
588
  result: GetCorporationsCorporationIdMembersTitlesOk;
512
589
  /** `esi-corporations.read_titles.v1` */
513
590
  auth: true;
514
591
  tag: "Corporation";
592
+ cachedSeconds: 3600;
515
593
  },
516
594
  "/corporations/{corporation_id}/membertracking/": {
517
595
  result: GetCorporationsCorporationIdMembertrackingOk;
518
596
  /** `esi-corporations.track_members.v1` */
519
597
  auth: true;
520
598
  tag: "Corporation";
599
+ cachedSeconds: 3600;
521
600
  },
522
601
  "/corporations/{corporation_id}/orders/": {
523
602
  result: GetCorporationsCorporationIdOrdersOk;
524
603
  /** `esi-markets.read_corporation_orders.v1` */
525
604
  auth: true;
526
605
  tag: "Market";
606
+ cachedSeconds: 1200;
527
607
  },
528
608
  "/corporations/{corporation_id}/orders/history/": {
529
609
  result: GetCorporationsCorporationIdOrdersHistoryOk;
530
610
  /** `esi-markets.read_corporation_orders.v1` */
531
611
  auth: true;
532
612
  tag: "Market";
613
+ cachedSeconds: 3600;
533
614
  },
534
615
  "/corporations/{corporation_id}/roles/": {
535
616
  result: GetCorporationsCorporationIdRolesOk;
536
617
  /** `esi-corporations.read_corporation_membership.v1` */
537
618
  auth: true;
538
619
  tag: "Corporation";
620
+ cachedSeconds: 3600;
539
621
  },
540
622
  "/corporations/{corporation_id}/roles/history/": {
541
623
  result: GetCorporationsCorporationIdRolesHistoryOk;
542
624
  /** `esi-corporations.read_corporation_membership.v1` */
543
625
  auth: true;
544
626
  tag: "Corporation";
627
+ cachedSeconds: 3600;
545
628
  },
546
629
  "/corporations/{corporation_id}/shareholders/": {
547
630
  result: GetCorporationsCorporationIdShareholdersOk;
548
631
  /** `esi-wallet.read_corporation_wallets.v1` */
549
632
  auth: true;
550
633
  tag: "Corporation";
634
+ cachedSeconds: 3600;
551
635
  },
552
636
  "/corporations/{corporation_id}/standings/": {
553
637
  result: GetCorporationsCorporationIdStandingsOk;
554
638
  /** `esi-corporations.read_standings.v1` */
555
639
  auth: true;
556
640
  tag: "Corporation";
641
+ cachedSeconds: 3600;
557
642
  },
558
643
  "/corporations/{corporation_id}/starbases/": {
559
644
  result: GetCorporationsCorporationIdStarbasesOk;
560
645
  /** `esi-corporations.read_starbases.v1` */
561
646
  auth: true;
562
647
  tag: "Corporation";
648
+ cachedSeconds: 3600;
563
649
  },
564
650
  "/corporations/{corporation_id}/starbases/{starbase_id}/": {
565
651
  result: GetCorporationsCorporationIdStarbasesStarbaseIdOk;
@@ -569,30 +655,35 @@ export type TESIResponseOKMap = {
569
655
  /** `esi-corporations.read_starbases.v1` */
570
656
  auth: true;
571
657
  tag: "Corporation";
658
+ cachedSeconds: 3600;
572
659
  },
573
660
  "/corporations/{corporation_id}/structures/": {
574
661
  result: GetCorporationsCorporationIdStructuresOk;
575
662
  /** `esi-corporations.read_structures.v1` */
576
663
  auth: true;
577
664
  tag: "Corporation";
665
+ cachedSeconds: 3600;
578
666
  },
579
667
  "/corporations/{corporation_id}/titles/": {
580
668
  result: GetCorporationsCorporationIdTitlesOk;
581
669
  /** `esi-corporations.read_titles.v1` */
582
670
  auth: true;
583
671
  tag: "Corporation";
672
+ cachedSeconds: 3600;
584
673
  },
585
674
  "/corporations/{corporation_id}/wallets/": {
586
675
  result: GetCorporationsCorporationIdWalletsOk;
587
676
  /** `esi-wallet.read_corporation_wallets.v1` */
588
677
  auth: true;
589
678
  tag: "Wallet";
679
+ cachedSeconds: 300;
590
680
  },
591
681
  "/corporations/{corporation_id}/wallets/{division}/journal/": {
592
682
  result: GetCorporationsCorporationIdWalletsDivisionJournalOk;
593
683
  /** `esi-wallet.read_corporation_wallets.v1` */
594
684
  auth: true;
595
685
  tag: "Wallet";
686
+ cachedSeconds: 3600;
596
687
  },
597
688
  "/corporations/{corporation_id}/wallets/{division}/transactions/": {
598
689
  result: GetCorporationsCorporationIdWalletsDivisionTransactionsOk;
@@ -602,6 +693,7 @@ export type TESIResponseOKMap = {
602
693
  /** `esi-wallet.read_corporation_wallets.v1` */
603
694
  auth: true;
604
695
  tag: "Wallet";
696
+ cachedSeconds: 3600;
605
697
  },
606
698
  "/dogma/attributes/": {
607
699
  result: GetDogmaAttributesOk;
@@ -628,62 +720,71 @@ export type TESIResponseOKMap = {
628
720
  /** `esi-fleets.read_fleet.v1` */
629
721
  auth: true;
630
722
  tag: "Fleets";
723
+ cachedSeconds: 5;
631
724
  },
632
725
  "/fleets/{fleet_id}/members/": {
633
726
  result: GetFleetsFleetIdMembersOk;
634
727
  /** `esi-fleets.read_fleet.v1` */
635
728
  auth: true;
636
729
  tag: "Fleets";
730
+ cachedSeconds: 5;
637
731
  },
638
732
  "/fleets/{fleet_id}/wings/": {
639
733
  result: GetFleetsFleetIdWingsOk;
640
734
  /** `esi-fleets.read_fleet.v1` */
641
735
  auth: true;
642
736
  tag: "Fleets";
737
+ cachedSeconds: 5;
643
738
  },
644
739
  "/fw/leaderboards/": {
645
740
  result: GetFwLeaderboardsOk;
646
- tag: "Faction Warfare"
741
+ tag: "Faction Warfare";
647
742
  },
648
743
  "/fw/leaderboards/characters/": {
649
744
  result: GetFwLeaderboardsCharactersOk;
650
- tag: "Faction Warfare"
745
+ tag: "Faction Warfare";
651
746
  },
652
747
  "/fw/leaderboards/corporations/": {
653
748
  result: GetFwLeaderboardsCorporationsOk;
654
- tag: "Faction Warfare"
749
+ tag: "Faction Warfare";
655
750
  },
656
751
  "/fw/stats/": {
657
752
  result: GetFwStatsOk;
658
- tag: "Faction Warfare"
753
+ tag: "Faction Warfare";
659
754
  },
660
755
  "/fw/systems/": {
661
756
  result: GetFwSystemsOk;
662
- tag: "Faction Warfare"
757
+ tag: "Faction Warfare";
758
+ cachedSeconds: 1800;
663
759
  },
664
760
  "/fw/wars/": {
665
761
  result: GetFwWarsOk;
666
- tag: "Faction Warfare"
762
+ tag: "Faction Warfare";
667
763
  },
668
764
  "/incursions/": {
669
765
  result: GetIncursionsOk;
670
766
  tag: "Incursions";
767
+ cachedSeconds: 300;
671
768
  },
672
769
  "/industry/facilities/": {
673
770
  result: GetIndustryFacilitiesOk;
674
771
  tag: "Industry";
772
+ cachedSeconds: 3600;
675
773
  },
676
774
  "/industry/systems/": {
677
775
  result: GetIndustrySystemsOk;
678
776
  tag: "Industry";
777
+ cachedSeconds: 3600;
679
778
  },
680
779
  "/insurance/prices/": {
681
780
  result: GetInsurancePricesOk;
682
781
  tag: "Insurance";
782
+ cachedSeconds: 3600;
683
783
  },
684
784
  "/killmails/{killmail_id}/{killmail_hash}/": {
685
785
  result: GetKillmailsKillmailIdKillmailHashOk;
686
786
  tag: "Killmails";
787
+ cachedSeconds: 30758400;
687
788
  },
688
789
  "/loyalty/stores/{corporation_id}/offers/": {
689
790
  result: GetLoyaltyStoresCorporationIdOffersOk;
@@ -700,12 +801,14 @@ export type TESIResponseOKMap = {
700
801
  "/markets/prices/": {
701
802
  result: GetMarketsPricesOk;
702
803
  tag: "Market";
804
+ cachedSeconds: 3600;
703
805
  },
704
806
  "/markets/structures/{structure_id}/": {
705
807
  result: GetMarketsStructuresStructureIdOk;
706
808
  /** `esi-markets.structure_markets.v1` */
707
809
  auth: true;
708
810
  tag: "Market";
811
+ cachedSeconds: 300;
709
812
  },
710
813
  "/markets/{region_id}/history/": {
711
814
  result: GetMarketsRegionIdHistoryOk;
@@ -721,10 +824,12 @@ export type TESIResponseOKMap = {
721
824
  type_id?: number;
722
825
  },
723
826
  tag: "Market";
827
+ cachedSeconds: 300;
724
828
  },
725
829
  "/markets/{region_id}/types/": {
726
830
  result: GetMarketsRegionIdTypesOk;
727
831
  tag: "Market";
832
+ cachedSeconds: 600;
728
833
  },
729
834
  "/opportunities/groups/": {
730
835
  result: GetOpportunitiesGroupsOk;
@@ -750,22 +855,27 @@ export type TESIResponseOKMap = {
750
855
  flag?: GetRouteOriginDestinationFlag;
751
856
  },
752
857
  tag: "Routes";
858
+ cachedSeconds: 86400;
753
859
  },
754
860
  "/sovereignty/campaigns/": {
755
861
  result: GetSovereigntyCampaignsOk;
756
862
  tag: "Sovereignty";
863
+ cachedSeconds: 5;
757
864
  },
758
865
  "/sovereignty/map/": {
759
866
  result: GetSovereigntyMapOk;
760
867
  tag: "Sovereignty";
868
+ cachedSeconds: 3600;
761
869
  },
762
870
  "/sovereignty/structures/": {
763
871
  result: GetSovereigntyStructuresOk;
764
872
  tag: "Sovereignty";
873
+ cachedSeconds: 120;
765
874
  },
766
875
  "/status/": {
767
876
  result: GetStatusOk;
768
877
  tag: "Status";
878
+ cachedSeconds: 30;
769
879
  },
770
880
  "/universe/ancestries/": {
771
881
  result: GetUniverseAncestriesOk;
@@ -837,7 +947,8 @@ export type TESIResponseOKMap = {
837
947
  },
838
948
  "/universe/schematics/{schematic_id}/": {
839
949
  result: GetUniverseSchematicsSchematicIdOk;
840
- tag: "Planetary Interaction"
950
+ tag: "Planetary Interaction";
951
+ cachedSeconds: 3600;
841
952
  },
842
953
  "/universe/stargates/{stargate_id}/": {
843
954
  result: GetUniverseStargatesStargateIdOk;
@@ -857,20 +968,24 @@ export type TESIResponseOKMap = {
857
968
  filter?: GetUniverseStructuresFilter;
858
969
  },
859
970
  tag: "Universe";
971
+ cachedSeconds: 3600;
860
972
  },
861
973
  "/universe/structures/{structure_id}/": {
862
974
  result: GetUniverseStructuresStructureIdOk;
863
975
  /** `esi-universe.read_structures.v1` */
864
976
  auth: true;
865
977
  tag: "Universe";
978
+ cachedSeconds: 3600;
866
979
  },
867
980
  "/universe/system_jumps/": {
868
981
  result: GetUniverseSystemJumpsOk;
869
982
  tag: "Universe";
983
+ cachedSeconds: 3600;
870
984
  },
871
985
  "/universe/system_kills/": {
872
986
  result: GetUniverseSystemKillsOk;
873
987
  tag: "Universe";
988
+ cachedSeconds: 3600;
874
989
  },
875
990
  "/universe/systems/": {
876
991
  result: GetUniverseSystemsOk;
@@ -894,14 +1009,17 @@ export type TESIResponseOKMap = {
894
1009
  max_war_id?: number;
895
1010
  },
896
1011
  tag: "Wars";
1012
+ cachedSeconds: 3600;
897
1013
  },
898
1014
  "/wars/{war_id}/": {
899
1015
  result: GetWarsWarIdOk;
900
1016
  tag: "Wars";
1017
+ cachedSeconds: 3600;
901
1018
  },
902
1019
  "/wars/{war_id}/killmails/": {
903
1020
  result: GetWarsWarIdKillmailsOk;
904
1021
  tag: "Wars";
1022
+ cachedSeconds: 3600;
905
1023
  }
906
1024
  },
907
1025
  post: {
@@ -916,7 +1034,7 @@ export type TESIResponseOKMap = {
916
1034
  result: NoContentResponse;
917
1035
  /** `esi-ui.write_waypoint.v1` */
918
1036
  auth: true;
919
- tag: "User Interface",
1037
+ tag: "User Interface";
920
1038
  query: {
921
1039
  add_to_beginning: boolean;
922
1040
  clear_other_waypoints: boolean;
@@ -927,7 +1045,7 @@ export type TESIResponseOKMap = {
927
1045
  result: NoContentResponse;
928
1046
  /** `esi-ui.open_window.v1` */
929
1047
  auth: true;
930
- tag: "User Interface",
1048
+ tag: "User Interface";
931
1049
  query: {
932
1050
  contract_id: number;
933
1051
  }
@@ -936,7 +1054,7 @@ export type TESIResponseOKMap = {
936
1054
  result: NoContentResponse;
937
1055
  /** `esi-ui.open_window.v1` */
938
1056
  auth: true;
939
- tag: "User Interface",
1057
+ tag: "User Interface";
940
1058
  query: {
941
1059
  target_id: number;
942
1060
  }
@@ -945,7 +1063,7 @@ export type TESIResponseOKMap = {
945
1063
  result: NoContentResponse;
946
1064
  /** `esi-ui.open_window.v1` */
947
1065
  auth: true;
948
- tag: "User Interface",
1066
+ tag: "User Interface";
949
1067
  query: {
950
1068
  type_id: number;
951
1069
  }
@@ -954,13 +1072,14 @@ export type TESIResponseOKMap = {
954
1072
  result: NoContentResponse;
955
1073
  /** `esi-ui.open_window.v1` */
956
1074
  auth: true;
957
- tag: "User Interface",
1075
+ tag: "User Interface";
958
1076
  body: PostUiOpenwindowNewmailNewMail;
959
1077
  },
960
1078
  "/characters/affiliation/": {
961
1079
  result: PostCharactersAffiliationOk;
962
1080
  body: PostCharactersAffiliationCharacters;
963
1081
  tag: "Character";
1082
+ cachedSeconds: 3600;
964
1083
  },
965
1084
  "/characters/{character_id}/assets/locations/": {
966
1085
  result: PostCharactersCharacterIdAssetsLocationsOk;
@@ -1059,6 +1178,7 @@ export type TESIResponseOKMap = {
1059
1178
  /** `esi-calendar.respond_calendar_events.v1` */
1060
1179
  auth: true;
1061
1180
  tag: "Calendar";
1181
+ cachedSeconds: 5;
1062
1182
  body: PutCharactersCharacterIdCalendarEventIdResponse;
1063
1183
  },
1064
1184
  "/characters/{character_id}/contacts/": {
@@ -9,7 +9,7 @@
9
9
  * THIS DTS IS AUTO GENERATED, DO NOT EDIT
10
10
  *
11
11
  * @file eve-esi-types/v2/types-index.d.ts
12
- * @summary This file is auto-generated and defines version 2.3.2 of the EVE Online ESI response types.
12
+ * @summary This file is auto-generated and defines version 2.3.5 of the EVE Online ESI response types.
13
13
  */
14
14
  import "./get_wars_ok.d.ts";
15
15
  import "./get_status_ok.d.ts";