@localisprimary/esi 2.0.8 → 2.0.9

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 CHANGED
@@ -133,8 +133,11 @@ esi.postCharacterMail({
133
133
  | [`postCharactersAffiliation`](https://developers.eveonline.com/api-explorer#/operations/PostCharactersAffiliation) | Bulk lookup of character IDs to corporation, alliance and faction |
134
134
  | [`getCharacterSearch`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdSearch) | Search for entities that match a given sub-string. |
135
135
  | [`getCharacterShip`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdShip) | Get the current ship type, name and id |
136
- | [`getCharacterSkillqueue`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdSkillqueue) | List the configured skill queue for the given character |
137
- | [`getCharacterSkills`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdSkills) | List all trained skills for the given character |
136
+ | [`getCharacterSkillqueue`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdSkillqueue) | List the configured skill queue for the given character. Entries that have their finish time in the past are completed, but aren't updated in the "/skills" route
137
+ yet. This will happen the next time the character logs in. |
138
+ | [`getCharacterSkills`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdSkills) | List all trained skills for the given character. Skills returned by this route can be out-of-date if the character hasn't logged in since one or more skills
139
+ completed training. Use the /skillqueue route to check for skills that completed training. Entries that are
140
+ in the past need to be applied on top of this list to get an accurate view of the character's current skills. |
138
141
  | [`getCharacterStandings`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdStandings) | Return character standings from agents, NPC corporations, and factions |
139
142
  | [`getCharacterTitles`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdTitles) | Returns a character's titles |
140
143
  | [`getCharacterWallet`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdWallet) | Returns a character's wallet balance |
package/dist/client.d.ts CHANGED
@@ -389,13 +389,20 @@ export declare class EsiClient {
389
389
  */
390
390
  getCharacterShip(params: Types.GetCharacterShipParams): Promise<Types.EsiResponse<Types.GetCharacterShipResponse, Types.GetCharacterShipResponseHeaders>>;
391
391
  /**
392
- * List the configured skill queue for the given character
392
+ * List the configured skill queue for the given character.
393
+
394
+ * Entries that have their finish time in the past are completed, but aren't updated in the "/skills" route
395
+ yet. This will happen the next time the character logs in.
393
396
 
394
397
  * @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdSkillqueue
395
398
  */
396
399
  getCharacterSkillqueue(params: Types.GetCharacterSkillqueueParams): Promise<Types.EsiResponse<Types.GetCharacterSkillqueueResponse, Types.GetCharacterSkillqueueResponseHeaders>>;
397
400
  /**
398
- * List all trained skills for the given character
401
+ * List all trained skills for the given character.
402
+
403
+ * Skills returned by this route can be out-of-date if the character hasn't logged in since one or more skills
404
+ completed training. Use the /skillqueue route to check for skills that completed training. Entries that are
405
+ in the past need to be applied on top of this list to get an accurate view of the character's current skills.
399
406
 
400
407
  * @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdSkills
401
408
  */
package/dist/client.js CHANGED
@@ -1,4 +1,4 @@
1
- const COMPATIBILITY_DATE = '2026-01-16';
1
+ const COMPATIBILITY_DATE = '2026-01-27';
2
2
  export class EsiClient {
3
3
  constructor(options) {
4
4
  this.baseUrl = 'https://esi.evetech.net';
@@ -670,7 +670,10 @@ export class EsiClient {
670
670
  return this.request('GET', path, undefined, undefined);
671
671
  }
672
672
  /**
673
- * List the configured skill queue for the given character
673
+ * List the configured skill queue for the given character.
674
+
675
+ * Entries that have their finish time in the past are completed, but aren't updated in the "/skills" route
676
+ yet. This will happen the next time the character logs in.
674
677
 
675
678
  * @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdSkillqueue
676
679
  */
@@ -679,7 +682,11 @@ export class EsiClient {
679
682
  return this.request('GET', path, undefined, undefined);
680
683
  }
681
684
  /**
682
- * List all trained skills for the given character
685
+ * List all trained skills for the given character.
686
+
687
+ * Skills returned by this route can be out-of-date if the character hasn't logged in since one or more skills
688
+ completed training. Use the /skillqueue route to check for skills that completed training. Entries that are
689
+ in the past need to be applied on top of this list to get an accurate view of the character's current skills.
683
690
 
684
691
  * @see https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdSkills
685
692
  */
package/dist/types.d.ts CHANGED
@@ -1039,16 +1039,18 @@ export interface GetCharacterShipResponseHeaders {
1039
1039
  ETag?: string;
1040
1040
  'Last-Modified'?: string;
1041
1041
  }
1042
- export type GetCharacterSkillqueueResponse = {
1043
- finish_date: string;
1042
+ export type TypeID = number;
1043
+ export interface CharactersSkillqueueSkill {
1044
+ finish_date?: string;
1044
1045
  finished_level: number;
1045
- level_end_sp: number;
1046
- level_start_sp: number;
1046
+ level_end_sp?: number;
1047
+ level_start_sp?: number;
1047
1048
  queue_position: number;
1048
- skill_id: number;
1049
- start_date: string;
1050
- training_start_sp: number;
1051
- }[];
1049
+ skill_id: TypeID;
1050
+ start_date?: string;
1051
+ training_start_sp?: number;
1052
+ }
1053
+ export type GetCharacterSkillqueueResponse = CharactersSkillqueueSkill[];
1052
1054
  export interface GetCharacterSkillqueueParams {
1053
1055
  character_id: number | string;
1054
1056
  }
@@ -1057,13 +1059,14 @@ export interface GetCharacterSkillqueueResponseHeaders {
1057
1059
  ETag?: string;
1058
1060
  'Last-Modified'?: string;
1059
1061
  }
1062
+ export interface CharactersSkillsSkill {
1063
+ active_skill_level: number;
1064
+ skill_id: number;
1065
+ skillpoints_in_skill: number;
1066
+ trained_skill_level: number;
1067
+ }
1060
1068
  export interface GetCharacterSkillsResponse {
1061
- skills: {
1062
- active_skill_level: number;
1063
- skill_id: number;
1064
- skillpoints_in_skill: number;
1065
- trained_skill_level: number;
1066
- }[];
1069
+ skills: CharactersSkillsSkill[];
1067
1070
  total_sp: number;
1068
1071
  unallocated_sp?: number;
1069
1072
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@localisprimary/esi",
3
- "version": "2.0.8",
3
+ "version": "2.0.9",
4
4
  "type": "module",
5
5
  "description": "Auto-generated TypeScript client for the EVE Online API",
6
6
  "main": "dist/index.js",
@@ -33,25 +33,25 @@
33
33
  },
34
34
  "license": "ISC",
35
35
  "devDependencies": {
36
- "@types/node": "^24.10.0",
37
- "@typescript-eslint/eslint-plugin": "^8.46.2",
38
- "@typescript-eslint/parser": "^8.46.2",
39
- "@vitest/ui": "^4.0.6",
40
- "beachball": "^2.56.0",
41
- "camelcase": "^8.0.0",
42
- "eslint": "^9.39.0",
36
+ "@types/node": "^24.10.9",
37
+ "@typescript-eslint/eslint-plugin": "^8.54.0",
38
+ "@typescript-eslint/parser": "^8.54.0",
39
+ "@vitest/ui": "^4.0.18",
40
+ "beachball": "^2.63.0",
41
+ "camelcase": "^9.0.0",
42
+ "eslint": "^9.39.2",
43
43
  "eslint-config-prettier": "^10.1.8",
44
- "eslint-plugin-prettier": "^5.5.4",
45
- "prettier": "^3.6.2",
46
- "rimraf": "^6.1.0",
44
+ "eslint-plugin-prettier": "^5.5.5",
45
+ "prettier": "^3.8.1",
46
+ "rimraf": "^6.1.2",
47
47
  "typescript": "^5.9.3",
48
- "vitest": "^4.0.6"
48
+ "vitest": "^4.0.18"
49
49
  },
50
50
  "files": [
51
51
  "dist/**/*"
52
52
  ],
53
53
  "engines": {
54
- "node": "^24.4.1"
54
+ "node": "^24.13.0"
55
55
  },
56
- "packageManager": "pnpm@10.20.0+sha512.cf9998222162dd85864d0a8102e7892e7ba4ceadebbf5a31f9c2fce48dfce317a9c53b9f6464d1ef9042cba2e02ae02a9f7c143a2b438cd93c91840f0192b9dd"
56
+ "packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264"
57
57
  }