@localisprimary/esi 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/README.md +76 -75
  2. package/package.json +14 -14
package/README.md CHANGED
@@ -10,11 +10,11 @@ import { EsiClient } from '@localisprimary/esi'
10
10
  // Create client (optionally with auth token)
11
11
  const esi = new EsiClient({ token: 'bearer-token' })
12
12
 
13
- // Example: Get all alliances
13
+ // Get all alliances
14
14
  const alliances = await esi.getAlliances()
15
15
  console.log(alliances.data)
16
16
 
17
- // Example: Get specific alliance info
17
+ // Get specific alliance by ID
18
18
  const alliance = await esi.getAlliance({ alliance_id: 123 })
19
19
  console.log(alliance.data)
20
20
  ```
@@ -36,7 +36,7 @@ interface EsiError {
36
36
  }
37
37
  ```
38
38
 
39
- All methods are fully typed, ex `getAlliance` will take `GetAllianceParams` and return `GetAllianceResponse`.
39
+ All methods are fully typed: `getAlliance` will take `GetAllianceParams` and return `GetAllianceResponse`.
40
40
 
41
41
  `Params` types make no distinction between path, query, or body parameters, it's all the same object:
42
42
  ```typescript
@@ -60,7 +60,7 @@ esi.postCharacterMail({
60
60
  | [`getAllianceContacts`](https://developers.eveonline.com/api-explorer#/operations/GetAlliancesAllianceIdContacts) | Return contacts of an alliance |
61
61
  | [`getAllianceContactsLabels`](https://developers.eveonline.com/api-explorer#/operations/GetAlliancesAllianceIdContactsLabels) | Return custom labels for an alliance's contacts |
62
62
  | [`getAllianceCorporations`](https://developers.eveonline.com/api-explorer#/operations/GetAlliancesAllianceIdCorporations) | List all current member corporations of an alliance |
63
- | [`getAllianceIcons`](https://developers.eveonline.com/api-explorer#/operations/GetAlliancesAllianceIdIcons) | Get the icon urls for a alliance. . This route expires daily at 11:05 |
63
+ | [`getAllianceIcons`](https://developers.eveonline.com/api-explorer#/operations/GetAlliancesAllianceIdIcons) | Get the icon urls for a alliance. This route expires daily at 11:05 |
64
64
  | [`getAlliances`](https://developers.eveonline.com/api-explorer#/operations/GetAlliances) | List all active player alliances |
65
65
  | [`getCharacter`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterId) | Public information about a character |
66
66
  | [`getCharacterAgentsResearch`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdAgentsResearch) | Return a list of agents research information for a character. The formula for finding the current research points with an agent is: currentPoints = remainderPoints + pointsPerDay * days(currentTime - researchStartDate) |
@@ -89,7 +89,7 @@ esi.postCharacterMail({
89
89
  | [`getCharacterFittings`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdFittings) | Return fittings of a character |
90
90
  | [`postCharacterFittings`](https://developers.eveonline.com/api-explorer#/operations/PostCharactersCharacterIdFittings) | Save a new fitting for a character |
91
91
  | [`getCharacterFleet`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdFleet) | Return the fleet ID the character is in, if any. |
92
- | [`getCharacterFwStats`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdFwStats) | Statistical overview of a character involved in faction warfare. . This route expires daily at 11:05 |
92
+ | [`getCharacterFwStats`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdFwStats) | Statistical overview of a character involved in faction warfare. This route expires daily at 11:05 |
93
93
  | [`getCharacterImplants`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdImplants) | Return implants on the active clone of a character |
94
94
  | [`getCharacterIndustryJobs`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdIndustryJobs) | List industry jobs placed by a character |
95
95
  | [`getCharacterKillmailsRecent`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdKillmailsRecent) | Return a list of a character's kills and losses going back 90 days |
@@ -113,7 +113,7 @@ esi.postCharacterMail({
113
113
  | [`getCharacterOrdersHistory`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdOrdersHistory) | List cancelled and expired market orders placed by a character up to 90 days in the past. |
114
114
  | [`getCharacterPlanet`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdPlanetsPlanetId) | Returns full details on the layout of a single planetary colony, including links, pins and routes. Note: Planetary information is only recalculated when the colony is viewed through the client. Information will not update until this criteria is met. |
115
115
  | [`getCharacterPlanets`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdPlanets) | Returns a list of all planetary colonies owned by a character. |
116
- | [`getCharacterPortrait`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdPortrait) | Get portrait urls for a character. . This route expires daily at 11:05 |
116
+ | [`getCharacterPortrait`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdPortrait) | Get portrait urls for a character. This route expires daily at 11:05 |
117
117
  | [`getCharacterRoles`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdRoles) | Returns a character's corporation roles |
118
118
  | [`postCharactersAffiliation`](https://developers.eveonline.com/api-explorer#/operations/PostCharactersAffiliation) | Bulk lookup of character IDs to corporation, alliance and faction |
119
119
  | [`getCharacterSearch`](https://developers.eveonline.com/api-explorer#/operations/GetCharactersCharacterIdSearch) | Search for entities that match a given sub-string. |
@@ -130,51 +130,51 @@ esi.postCharacterMail({
130
130
  | [`getContractsPublicRegionId`](https://developers.eveonline.com/api-explorer#/operations/GetContractsPublicRegionId) | Returns a paginated list of all public contracts in the given region |
131
131
  | [`getCorporation`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationId) | Public information about a corporation |
132
132
  | [`getCorporationAlliancehistory`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdAlliancehistory) | Get a list of all the alliances a corporation has been a member of |
133
- | [`getCorporationAssets`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdAssets) | Return a list of the corporation assets. . Requires one of the following EVE corporation role(s): Director |
134
- | [`postCorporationAssetsLocations`](https://developers.eveonline.com/api-explorer#/operations/PostCorporationsCorporationIdAssetsLocations) | Return locations for a set of item ids, which you can get from corporation assets endpoint. Coordinates for items in hangars or stations are set to (0,0,0). . Requires one of the following EVE corporation role(s): Director |
135
- | [`postCorporationAssetsNames`](https://developers.eveonline.com/api-explorer#/operations/PostCorporationsCorporationIdAssetsNames) | Return names for a set of item ids, which you can get from corporation assets endpoint. Only valid for items that can customize names, like containers or ships. . Requires one of the following EVE corporation role(s): Director |
136
- | [`getCorporationBlueprints`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdBlueprints) | Returns a list of blueprints the corporation owns. . Requires one of the following EVE corporation role(s): Director |
133
+ | [`getCorporationAssets`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdAssets) | Return a list of the corporation assets. Requires one of the following EVE corporation role(s): Director |
134
+ | [`postCorporationAssetsLocations`](https://developers.eveonline.com/api-explorer#/operations/PostCorporationsCorporationIdAssetsLocations) | Return locations for a set of item ids, which you can get from corporation assets endpoint. Coordinates for items in hangars or stations are set to (0,0,0). Requires one of the following EVE corporation role(s): Director |
135
+ | [`postCorporationAssetsNames`](https://developers.eveonline.com/api-explorer#/operations/PostCorporationsCorporationIdAssetsNames) | Return names for a set of item ids, which you can get from corporation assets endpoint. Only valid for items that can customize names, like containers or ships. Requires one of the following EVE corporation role(s): Director |
136
+ | [`getCorporationBlueprints`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdBlueprints) | Returns a list of blueprints the corporation owns. Requires one of the following EVE corporation role(s): Director |
137
137
  | [`getCorporationContacts`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdContacts) | Return contacts of a corporation |
138
138
  | [`getCorporationContactsLabels`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdContactsLabels) | Return custom labels for a corporation's contacts |
139
- | [`getCorporationContainersLogs`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdContainersLogs) | Returns logs recorded in the past seven days from all audit log secure containers (ALSC) owned by a given corporation. . Requires one of the following EVE corporation role(s): Director |
139
+ | [`getCorporationContainersLogs`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdContainersLogs) | Returns logs recorded in the past seven days from all audit log secure containers (ALSC) owned by a given corporation. Requires one of the following EVE corporation role(s): Director |
140
140
  | [`getCorporationContractBids`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdContractsContractIdBids) | Lists bids on a particular auction contract |
141
141
  | [`getCorporationContractItems`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdContractsContractIdItems) | Lists items of a particular contract |
142
142
  | [`getCorporationContracts`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdContracts) | Returns contracts available to a corporation, only if the corporation is issuer, acceptor or assignee. Only returns contracts no older than 30 days, or if the status is "in_progress". |
143
- | [`getCorporationCorporationMiningExtractions`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationCorporationIdMiningExtractions) | Extraction timers for all moon chunks being extracted by refineries belonging to a corporation.. . Requires one of the following EVE corporation role(s): Station_Manager |
144
- | [`getCorporationCorporationMiningObserver`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationCorporationIdMiningObserversObserverId) | Paginated record of all mining seen by an observer. . Requires one of the following EVE corporation role(s): Accountant |
145
- | [`getCorporationCorporationMiningObservers`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationCorporationIdMiningObservers) | Paginated list of all entities capable of observing and recording mining for a corporation. . Requires one of the following EVE corporation role(s): Accountant |
146
- | [`getCorporationCustomsOffices`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdCustomsOffices) | List customs offices owned by a corporation. . Requires one of the following EVE corporation role(s): Director |
147
- | [`getCorporationDivisions`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdDivisions) | Return corporation hangar and wallet division names, only show if a division is not using the default name. . Requires one of the following EVE corporation role(s): Director |
148
- | [`getCorporationFacilities`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdFacilities) | Return a corporation's facilities. . Requires one of the following EVE corporation role(s): Factory_Manager |
149
- | [`getCorporationFwStats`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdFwStats) | Statistics about a corporation involved in faction warfare. . This route expires daily at 11:05 |
143
+ | [`getCorporationCorporationMiningExtractions`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationCorporationIdMiningExtractions) | Extraction timers for all moon chunks being extracted by refineries belonging to a corporation.. Requires one of the following EVE corporation role(s): Station_Manager |
144
+ | [`getCorporationCorporationMiningObserver`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationCorporationIdMiningObserversObserverId) | Paginated record of all mining seen by an observer. Requires one of the following EVE corporation role(s): Accountant |
145
+ | [`getCorporationCorporationMiningObservers`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationCorporationIdMiningObservers) | Paginated list of all entities capable of observing and recording mining for a corporation. Requires one of the following EVE corporation role(s): Accountant |
146
+ | [`getCorporationCustomsOffices`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdCustomsOffices) | List customs offices owned by a corporation. Requires one of the following EVE corporation role(s): Director |
147
+ | [`getCorporationDivisions`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdDivisions) | Return corporation hangar and wallet division names, only show if a division is not using the default name. Requires one of the following EVE corporation role(s): Director |
148
+ | [`getCorporationFacilities`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdFacilities) | Return a corporation's facilities. Requires one of the following EVE corporation role(s): Factory_Manager |
149
+ | [`getCorporationFwStats`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdFwStats) | Statistics about a corporation involved in faction warfare. This route expires daily at 11:05 |
150
150
  | [`getCorporationIcons`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdIcons) | Get the icon urls for a corporation |
151
- | [`getCorporationIndustryJobs`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdIndustryJobs) | List industry jobs run by a corporation. . Requires one of the following EVE corporation role(s): Factory_Manager |
152
- | [`getCorporationKillmailsRecent`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdKillmailsRecent) | Get a list of a corporation's kills and losses going back 90 days. . Requires one of the following EVE corporation role(s): Director |
151
+ | [`getCorporationIndustryJobs`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdIndustryJobs) | List industry jobs run by a corporation. Requires one of the following EVE corporation role(s): Factory_Manager |
152
+ | [`getCorporationKillmailsRecent`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdKillmailsRecent) | Get a list of a corporation's kills and losses going back 90 days. Requires one of the following EVE corporation role(s): Director |
153
153
  | [`getCorporationMedals`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdMedals) | Returns a corporation's medals |
154
- | [`getCorporationMedalsIssued`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdMedalsIssued) | Returns medals issued by a corporation. . Requires one of the following EVE corporation role(s): Director |
154
+ | [`getCorporationMedalsIssued`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdMedalsIssued) | Returns medals issued by a corporation. Requires one of the following EVE corporation role(s): Director |
155
155
  | [`getCorporationMembers`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdMembers) | Return the current member list of a corporation, the token's character need to be a member of the corporation. |
156
- | [`getCorporationMembersLimit`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdMembersLimit) | Return a corporation's member limit, not including CEO himself. . Requires one of the following EVE corporation role(s): Director |
157
- | [`getCorporationMembersTitles`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdMembersTitles) | Returns a corporation's members' titles. . Requires one of the following EVE corporation role(s): Director |
158
- | [`getCorporationMembertracking`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdMembertracking) | Returns additional information about a corporation's members which helps tracking their activities. . Requires one of the following EVE corporation role(s): Director |
159
- | [`getCorporationOrders`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdOrders) | List open market orders placed on behalf of a corporation. . Requires one of the following EVE corporation role(s): Accountant, Trader |
160
- | [`getCorporationOrdersHistory`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdOrdersHistory) | List cancelled and expired market orders placed on behalf of a corporation up to 90 days in the past.. . Requires one of the following EVE corporation role(s): Accountant, Trader |
156
+ | [`getCorporationMembersLimit`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdMembersLimit) | Return a corporation's member limit, not including CEO himself. Requires one of the following EVE corporation role(s): Director |
157
+ | [`getCorporationMembersTitles`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdMembersTitles) | Returns a corporation's members' titles. Requires one of the following EVE corporation role(s): Director |
158
+ | [`getCorporationMembertracking`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdMembertracking) | Returns additional information about a corporation's members which helps tracking their activities. Requires one of the following EVE corporation role(s): Director |
159
+ | [`getCorporationOrders`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdOrders) | List open market orders placed on behalf of a corporation. Requires one of the following EVE corporation role(s): Accountant, Trader |
160
+ | [`getCorporationOrdersHistory`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdOrdersHistory) | List cancelled and expired market orders placed on behalf of a corporation up to 90 days in the past.. Requires one of the following EVE corporation role(s): Accountant, Trader |
161
161
  | [`getCorporationRoles`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdRoles) | Return the roles of all members if the character has the personnel manager role or any grantable role. |
162
- | [`getCorporationRolesHistory`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdRolesHistory) | Return how roles have changed for a coporation's members, up to a month. . Requires one of the following EVE corporation role(s): Director |
163
- | [`getCorporationShareholders`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdShareholders) | Return the current shareholders of a corporation.. . Requires one of the following EVE corporation role(s): Director |
164
- | [`getCorporationsNpccorps`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsNpccorps) | Get a list of npc corporations. . This route expires daily at 11:05 |
162
+ | [`getCorporationRolesHistory`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdRolesHistory) | Return how roles have changed for a coporation's members, up to a month. Requires one of the following EVE corporation role(s): Director |
163
+ | [`getCorporationShareholders`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdShareholders) | Return the current shareholders of a corporation.. Requires one of the following EVE corporation role(s): Director |
164
+ | [`getCorporationsNpccorps`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsNpccorps) | Get a list of npc corporations. This route expires daily at 11:05 |
165
165
  | [`getCorporationStandings`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdStandings) | Return corporation standings from agents, NPC corporations, and factions |
166
- | [`getCorporationStarbase`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdStarbasesStarbaseId) | Returns various settings and fuels of a starbase (POS). . Requires one of the following EVE corporation role(s): Director |
167
- | [`getCorporationStarbases`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdStarbases) | Returns list of corporation starbases (POSes). . Requires one of the following EVE corporation role(s): Director |
168
- | [`getCorporationStructures`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdStructures) | Get a list of corporation structures. This route's version includes the changes to structures detailed in this blog: https://www.eveonline.com/article/upwell-2.0-structures-changes-coming-on-february-13th. . Requires one of the following EVE corporation role(s): Station_Manager |
169
- | [`getCorporationTitles`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdTitles) | Returns a corporation's titles. . Requires one of the following EVE corporation role(s): Director |
170
- | [`getCorporationWallets`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdWallets) | Get a corporation's wallets. . Requires one of the following EVE corporation role(s): Accountant, Junior_Accountant |
171
- | [`getCorporationWalletsDivisionJournal`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdWalletsDivisionJournal) | Retrieve the given corporation's wallet journal for the given division going 30 days back. . Requires one of the following EVE corporation role(s): Accountant, Junior_Accountant |
172
- | [`getCorporationWalletsDivisionTransactions`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdWalletsDivisionTransactions) | Get wallet transactions of a corporation. . Requires one of the following EVE corporation role(s): Accountant, Junior_Accountant |
173
- | [`getDogmaAttribute`](https://developers.eveonline.com/api-explorer#/operations/GetDogmaAttributesAttributeId) | Get information on a dogma attribute. . This route expires daily at 11:05 |
174
- | [`getDogmaAttributes`](https://developers.eveonline.com/api-explorer#/operations/GetDogmaAttributes) | Get a list of dogma attribute ids. . This route expires daily at 11:05 |
175
- | [`getDogmaDynamicTypeItemId`](https://developers.eveonline.com/api-explorer#/operations/GetDogmaDynamicItemsTypeIdItemId) | Returns info about a dynamic item resulting from mutation with a mutaplasmid.. . This route expires daily at 11:05 |
176
- | [`getDogmaEffect`](https://developers.eveonline.com/api-explorer#/operations/GetDogmaEffectsEffectId) | Get information on a dogma effect. . This route expires daily at 11:05 |
177
- | [`getDogmaEffects`](https://developers.eveonline.com/api-explorer#/operations/GetDogmaEffects) | Get a list of dogma effect ids. . This route expires daily at 11:05 |
166
+ | [`getCorporationStarbase`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdStarbasesStarbaseId) | Returns various settings and fuels of a starbase (POS). Requires one of the following EVE corporation role(s): Director |
167
+ | [`getCorporationStarbases`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdStarbases) | Returns list of corporation starbases (POSes). Requires one of the following EVE corporation role(s): Director |
168
+ | [`getCorporationStructures`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdStructures) | Get a list of corporation structures. This route's version includes the changes to structures detailed in this blog: https://www.eveonline.com/article/upwell-2.0-structures-changes-coming-on-february-13th. Requires one of the following EVE corporation role(s): Station_Manager |
169
+ | [`getCorporationTitles`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdTitles) | Returns a corporation's titles. Requires one of the following EVE corporation role(s): Director |
170
+ | [`getCorporationWallets`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdWallets) | Get a corporation's wallets. Requires one of the following EVE corporation role(s): Accountant, Junior_Accountant |
171
+ | [`getCorporationWalletsDivisionJournal`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdWalletsDivisionJournal) | Retrieve the given corporation's wallet journal for the given division going 30 days back. Requires one of the following EVE corporation role(s): Accountant, Junior_Accountant |
172
+ | [`getCorporationWalletsDivisionTransactions`](https://developers.eveonline.com/api-explorer#/operations/GetCorporationsCorporationIdWalletsDivisionTransactions) | Get wallet transactions of a corporation. Requires one of the following EVE corporation role(s): Accountant, Junior_Accountant |
173
+ | [`getDogmaAttribute`](https://developers.eveonline.com/api-explorer#/operations/GetDogmaAttributesAttributeId) | Get information on a dogma attribute. This route expires daily at 11:05 |
174
+ | [`getDogmaAttributes`](https://developers.eveonline.com/api-explorer#/operations/GetDogmaAttributes) | Get a list of dogma attribute ids. This route expires daily at 11:05 |
175
+ | [`getDogmaDynamicTypeItemId`](https://developers.eveonline.com/api-explorer#/operations/GetDogmaDynamicItemsTypeIdItemId) | Returns info about a dynamic item resulting from mutation with a mutaplasmid.. This route expires daily at 11:05 |
176
+ | [`getDogmaEffect`](https://developers.eveonline.com/api-explorer#/operations/GetDogmaEffectsEffectId) | Get information on a dogma effect. This route expires daily at 11:05 |
177
+ | [`getDogmaEffects`](https://developers.eveonline.com/api-explorer#/operations/GetDogmaEffects) | Get a list of dogma effect ids. This route expires daily at 11:05 |
178
178
  | [`getFleet`](https://developers.eveonline.com/api-explorer#/operations/GetFleetsFleetId) | Return details about a fleet |
179
179
  | [`putFleet`](https://developers.eveonline.com/api-explorer#/operations/PutFleetsFleetId) | Update settings about a fleet |
180
180
  | [`deleteFleetMember`](https://developers.eveonline.com/api-explorer#/operations/DeleteFleetsFleetIdMembersMemberId) | Kick a fleet member |
@@ -188,23 +188,23 @@ esi.postCharacterMail({
188
188
  | [`getFleetWings`](https://developers.eveonline.com/api-explorer#/operations/GetFleetsFleetIdWings) | Return information about wings in a fleet |
189
189
  | [`postFleetWings`](https://developers.eveonline.com/api-explorer#/operations/PostFleetsFleetIdWings) | Create a new wing in a fleet |
190
190
  | [`postFleetWingSquads`](https://developers.eveonline.com/api-explorer#/operations/PostFleetsFleetIdWingsWingIdSquads) | Create a new squad in a fleet |
191
- | [`getFwLeaderboards`](https://developers.eveonline.com/api-explorer#/operations/GetFwLeaderboards) | Top 4 leaderboard of factions for kills and victory points separated by total, last week and yesterday. . This route expires daily at 11:05 |
192
- | [`getFwLeaderboardsCharacters`](https://developers.eveonline.com/api-explorer#/operations/GetFwLeaderboardsCharacters) | Top 100 leaderboard of pilots for kills and victory points separated by total, last week and yesterday. . This route expires daily at 11:05 |
193
- | [`getFwLeaderboardsCorporations`](https://developers.eveonline.com/api-explorer#/operations/GetFwLeaderboardsCorporations) | Top 10 leaderboard of corporations for kills and victory points separated by total, last week and yesterday. . This route expires daily at 11:05 |
194
- | [`getFwStats`](https://developers.eveonline.com/api-explorer#/operations/GetFwStats) | Statistical overviews of factions involved in faction warfare. . This route expires daily at 11:05 |
191
+ | [`getFwLeaderboards`](https://developers.eveonline.com/api-explorer#/operations/GetFwLeaderboards) | Top 4 leaderboard of factions for kills and victory points separated by total, last week and yesterday. This route expires daily at 11:05 |
192
+ | [`getFwLeaderboardsCharacters`](https://developers.eveonline.com/api-explorer#/operations/GetFwLeaderboardsCharacters) | Top 100 leaderboard of pilots for kills and victory points separated by total, last week and yesterday. This route expires daily at 11:05 |
193
+ | [`getFwLeaderboardsCorporations`](https://developers.eveonline.com/api-explorer#/operations/GetFwLeaderboardsCorporations) | Top 10 leaderboard of corporations for kills and victory points separated by total, last week and yesterday. This route expires daily at 11:05 |
194
+ | [`getFwStats`](https://developers.eveonline.com/api-explorer#/operations/GetFwStats) | Statistical overviews of factions involved in faction warfare. This route expires daily at 11:05 |
195
195
  | [`getFwSystems`](https://developers.eveonline.com/api-explorer#/operations/GetFwSystems) | An overview of the current ownership of faction warfare solar systems |
196
- | [`getFwWars`](https://developers.eveonline.com/api-explorer#/operations/GetFwWars) | Data about which NPC factions are at war. . This route expires daily at 11:05 |
196
+ | [`getFwWars`](https://developers.eveonline.com/api-explorer#/operations/GetFwWars) | Data about which NPC factions are at war. This route expires daily at 11:05 |
197
197
  | [`getIncursions`](https://developers.eveonline.com/api-explorer#/operations/GetIncursions) | Return a list of current incursions |
198
198
  | [`getIndustryFacilities`](https://developers.eveonline.com/api-explorer#/operations/GetIndustryFacilities) | Return a list of industry facilities |
199
199
  | [`getIndustrySystems`](https://developers.eveonline.com/api-explorer#/operations/GetIndustrySystems) | Return cost indices for solar systems |
200
200
  | [`getInsurancePrices`](https://developers.eveonline.com/api-explorer#/operations/GetInsurancePrices) | Return available insurance levels for all ship types |
201
201
  | [`getKillmailKillmailHash`](https://developers.eveonline.com/api-explorer#/operations/GetKillmailsKillmailIdKillmailHash) | Return a single killmail from its ID and hash |
202
- | [`getLoyaltyCorporationOffers`](https://developers.eveonline.com/api-explorer#/operations/GetLoyaltyStoresCorporationIdOffers) | Return a list of offers from a specific corporation's loyalty store. . This route expires daily at 11:05 |
203
- | [`getMarketsGroups`](https://developers.eveonline.com/api-explorer#/operations/GetMarketsGroups) | Get a list of item groups. . This route expires daily at 11:05 |
204
- | [`getMarketsGroupsMarketGroupId`](https://developers.eveonline.com/api-explorer#/operations/GetMarketsGroupsMarketGroupId) | Get information on an item group. . This route expires daily at 11:05 |
202
+ | [`getLoyaltyCorporationOffers`](https://developers.eveonline.com/api-explorer#/operations/GetLoyaltyStoresCorporationIdOffers) | Return a list of offers from a specific corporation's loyalty store. This route expires daily at 11:05 |
203
+ | [`getMarketsGroups`](https://developers.eveonline.com/api-explorer#/operations/GetMarketsGroups) | Get a list of item groups. This route expires daily at 11:05 |
204
+ | [`getMarketsGroupsMarketGroupId`](https://developers.eveonline.com/api-explorer#/operations/GetMarketsGroupsMarketGroupId) | Get information on an item group. This route expires daily at 11:05 |
205
205
  | [`getMarketsPrices`](https://developers.eveonline.com/api-explorer#/operations/GetMarketsPrices) | Return a list of prices |
206
206
  | [`getMarketsStructure`](https://developers.eveonline.com/api-explorer#/operations/GetMarketsStructuresStructureId) | Return all orders in a structure |
207
- | [`getRegionHistory`](https://developers.eveonline.com/api-explorer#/operations/GetMarketsRegionIdHistory) | Return a list of historical market statistics for the specified type in a region. . This route expires daily at 11:05 |
207
+ | [`getRegionHistory`](https://developers.eveonline.com/api-explorer#/operations/GetMarketsRegionIdHistory) | Return a list of historical market statistics for the specified type in a region. This route expires daily at 11:05 |
208
208
  | [`getRegionOrders`](https://developers.eveonline.com/api-explorer#/operations/GetMarketsRegionIdOrders) | Return a list of orders in a region |
209
209
  | [`getRegionTypes`](https://developers.eveonline.com/api-explorer#/operations/GetMarketsRegionIdTypes) | Return a list of type IDs that have active orders in the region, for efficient market indexing. |
210
210
  | [`getRouteOriginDestination`](https://developers.eveonline.com/api-explorer#/operations/GetRouteOriginDestination) | Get the systems between origin and destination |
@@ -217,40 +217,41 @@ esi.postCharacterMail({
217
217
  | [`postUiOpenwindowInformation`](https://developers.eveonline.com/api-explorer#/operations/PostUiOpenwindowInformation) | Open the information window for a character, corporation or alliance inside the client |
218
218
  | [`postUiOpenwindowMarketdetails`](https://developers.eveonline.com/api-explorer#/operations/PostUiOpenwindowMarketdetails) | Open the market details window for a specific typeID inside the client |
219
219
  | [`postUiOpenwindowNewmail`](https://developers.eveonline.com/api-explorer#/operations/PostUiOpenwindowNewmail) | Open the New Mail window, according to settings from the request if applicable |
220
- | [`getUniverseAncestries`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseAncestries) | Get all character ancestries. . This route expires daily at 11:05 |
221
- | [`getUniverseAsteroidBeltsAsteroidBeltId`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseAsteroidBeltsAsteroidBeltId) | Get information on an asteroid belt. . This route expires daily at 11:05 |
222
- | [`getUniverseBloodlines`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseBloodlines) | Get a list of bloodlines. . This route expires daily at 11:05 |
223
- | [`getUniverseCategories`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseCategories) | Get a list of item categories. . This route expires daily at 11:05 |
224
- | [`getUniverseCategory`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseCategoriesCategoryId) | Get information of an item category. . This route expires daily at 11:05 |
225
- | [`getUniverseConstellation`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseConstellationsConstellationId) | Get information on a constellation. . This route expires daily at 11:05 |
226
- | [`getUniverseConstellations`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseConstellations) | Get a list of constellations. . This route expires daily at 11:05 |
227
- | [`getUniverseFactions`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseFactions) | Get a list of factions. . This route expires daily at 11:05 |
228
- | [`getUniverseGraphic`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseGraphicsGraphicId) | Get information on a graphic. . This route expires daily at 11:05 |
229
- | [`getUniverseGraphics`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseGraphics) | Get a list of graphics. . This route expires daily at 11:05 |
230
- | [`getUniverseGroup`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseGroupsGroupId) | Get information on an item group. . This route expires daily at 11:05 |
231
- | [`getUniverseGroups`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseGroups) | Get a list of item groups. . This route expires daily at 11:05 |
220
+ | [`getUniverseAncestries`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseAncestries) | Get all character ancestries. This route expires daily at 11:05 |
221
+ | [`getUniverseAsteroidBeltsAsteroidBeltId`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseAsteroidBeltsAsteroidBeltId) | Get information on an asteroid belt. This route expires daily at 11:05 |
222
+ | [`getUniverseBloodlines`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseBloodlines) | Get a list of bloodlines. This route expires daily at 11:05 |
223
+ | [`getUniverseCategories`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseCategories) | Get a list of item categories. This route expires daily at 11:05 |
224
+ | [`getUniverseCategory`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseCategoriesCategoryId) | Get information of an item category. This route expires daily at 11:05 |
225
+ | [`getUniverseConstellation`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseConstellationsConstellationId) | Get information on a constellation. This route expires daily at 11:05 |
226
+ | [`getUniverseConstellations`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseConstellations) | Get a list of constellations. This route expires daily at 11:05 |
227
+ | [`getUniverseFactions`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseFactions) | Get a list of factions. This route expires daily at 11:05 |
228
+ | [`getUniverseGraphic`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseGraphicsGraphicId) | Get information on a graphic. This route expires daily at 11:05 |
229
+ | [`getUniverseGraphics`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseGraphics) | Get a list of graphics. This route expires daily at 11:05 |
230
+ | [`getUniverseGroup`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseGroupsGroupId) | Get information on an item group. This route expires daily at 11:05 |
231
+ | [`getUniverseGroups`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseGroups) | Get a list of item groups. This route expires daily at 11:05 |
232
232
  | [`postUniverseIds`](https://developers.eveonline.com/api-explorer#/operations/PostUniverseIds) | Resolve a set of names to IDs in the following categories: agents, alliances, characters, constellations, corporations factions, inventory_types, regions, stations, and systems. Only exact matches will be returned. All names searched for are cached for 12 hours |
233
- | [`getUniverseMoon`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseMoonsMoonId) | Get information on a moon. . This route expires daily at 11:05 |
233
+ | [`getUniverseMoon`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseMoonsMoonId) | Get information on a moon. This route expires daily at 11:05 |
234
234
  | [`postUniverseNames`](https://developers.eveonline.com/api-explorer#/operations/PostUniverseNames) | Resolve a set of IDs to names and categories. Supported ID's for resolving are: Characters, Corporations, Alliances, Stations, Solar Systems, Constellations, Regions, Types, Factions |
235
- | [`getUniversePlanet`](https://developers.eveonline.com/api-explorer#/operations/GetUniversePlanetsPlanetId) | Get information on a planet. . This route expires daily at 11:05 |
236
- | [`getUniverseRaces`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseRaces) | Get a list of character races. . This route expires daily at 11:05 |
237
- | [`getUniverseRegion`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseRegionsRegionId) | Get information on a region. . This route expires daily at 11:05 |
238
- | [`getUniverseRegions`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseRegions) | Get a list of regions. . This route expires daily at 11:05 |
235
+ | [`getUniversePlanet`](https://developers.eveonline.com/api-explorer#/operations/GetUniversePlanetsPlanetId) | Get information on a planet. This route expires daily at 11:05 |
236
+ | [`getUniverseRaces`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseRaces) | Get a list of character races. This route expires daily at 11:05 |
237
+ | [`getUniverseRegion`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseRegionsRegionId) | Get information on a region. This route expires daily at 11:05 |
238
+ | [`getUniverseRegions`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseRegions) | Get a list of regions. This route expires daily at 11:05 |
239
239
  | [`getUniverseSchematic`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseSchematicsSchematicId) | Get information on a planetary factory schematic |
240
- | [`getUniverseStar`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseStarsStarId) | Get information on a star. . This route expires daily at 11:05 |
241
- | [`getUniverseStargate`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseStargatesStargateId) | Get information on a stargate. . This route expires daily at 11:05 |
242
- | [`getUniverseStation`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseStationsStationId) | Get information on a station. . This route expires daily at 11:05 |
240
+ | [`getUniverseStar`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseStarsStarId) | Get information on a star. This route expires daily at 11:05 |
241
+ | [`getUniverseStargate`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseStargatesStargateId) | Get information on a stargate. This route expires daily at 11:05 |
242
+ | [`getUniverseStation`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseStationsStationId) | Get information on a station. This route expires daily at 11:05 |
243
243
  | [`getUniverseStructure`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseStructuresStructureId) | Returns information on requested structure if you are on the ACL. Otherwise, returns "Forbidden" for all inputs. |
244
244
  | [`getUniverseStructures`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseStructures) | List all public structures |
245
- | [`getUniverseSystem`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseSystemsSystemId) | Get information on a solar system.. . This route expires daily at 11:05 |
245
+ | [`getUniverseSystem`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseSystemsSystemId) | Get information on a solar system.. This route expires daily at 11:05 |
246
246
  | [`getUniverseSystemJumps`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseSystemJumps) | Get the number of jumps in solar systems within the last hour ending at the timestamp of the Last-Modified header, excluding wormhole space. Only systems with jumps will be listed |
247
247
  | [`getUniverseSystemKills`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseSystemKills) | Get the number of ship, pod and NPC kills per solar system within the last hour ending at the timestamp of the Last-Modified header, excluding wormhole space. Only systems with kills will be listed |
248
- | [`getUniverseSystems`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseSystems) | Get a list of solar systems. . This route expires daily at 11:05 |
249
- | [`getUniverseType`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseTypesTypeId) | Get information on a type. . This route expires daily at 11:05 |
250
- | [`getUniverseTypes`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseTypes) | Get a list of type ids. . This route expires daily at 11:05 |
248
+ | [`getUniverseSystems`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseSystems) | Get a list of solar systems. This route expires daily at 11:05 |
249
+ | [`getUniverseType`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseTypesTypeId) | Get information on a type. This route expires daily at 11:05 |
250
+ | [`getUniverseTypes`](https://developers.eveonline.com/api-explorer#/operations/GetUniverseTypes) | Get a list of type ids. This route expires daily at 11:05 |
251
251
  | [`getWar`](https://developers.eveonline.com/api-explorer#/operations/GetWarsWarId) | Return details about a war |
252
252
  | [`getWarKillmails`](https://developers.eveonline.com/api-explorer#/operations/GetWarsWarIdKillmails) | Return a list of kills related to a war |
253
253
  | [`getWars`](https://developers.eveonline.com/api-explorer#/operations/GetWars) | Return a list of wars |
254
254
 
255
255
 
256
- [![BuyMeACoffee](https://raw.githubusercontent.com/pachadotdev/buymeacoffee-badges/main/bmc-white.svg)](https://buymeacoffee.com/nfinished)
256
+
257
+ [![BuyMeACoffee](https://raw.githubusercontent.com/pachadotdev/buymeacoffee-badges/main/bmc-green.svg)](https://buymeacoffee.com/nfinished)
package/package.json CHANGED
@@ -1,21 +1,11 @@
1
1
  {
2
2
  "name": "@localisprimary/esi",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "description": "Auto-generated TypeScript client for EVE Online ESI API",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "sideEffects": false,
9
- "scripts": {
10
- "fetch-schema": "node scripts/fetch-schema.ts",
11
- "generate": "node scripts/generate.ts && pnpm lint:fix",
12
- "build": "rimraf dist && tsc",
13
- "compile": "pnpm fetch-schema && pnpm generate && pnpm build",
14
- "lint": "eslint src",
15
- "lint:fix": "eslint src --fix",
16
- "test": "vitest run",
17
- "change": "beachball change"
18
- },
19
9
  "keywords": [
20
10
  "eve",
21
11
  "eve online",
@@ -27,7 +17,8 @@
27
17
  "author": "Adam Trager <hello@adamtrager.com>",
28
18
  "repository": {
29
19
  "type": "git",
30
- "url": "https://github.com/localisprimary/esi.git"},
20
+ "url": "https://github.com/localisprimary/esi.git"
21
+ },
31
22
  "license": "ISC",
32
23
  "devDependencies": {
33
24
  "@types/node": "^24.1.0",
@@ -50,5 +41,14 @@
50
41
  "engines": {
51
42
  "node": "^24.4.1"
52
43
  },
53
- "packageManager": "pnpm@10.13.1+sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad"
54
- }
44
+ "scripts": {
45
+ "fetch-schema": "node scripts/fetch-schema.ts",
46
+ "generate": "node scripts/generate.ts && pnpm lint:fix",
47
+ "build": "rimraf dist && tsc",
48
+ "compile": "pnpm fetch-schema && pnpm generate && pnpm build",
49
+ "lint": "eslint src",
50
+ "lint:fix": "eslint src --fix",
51
+ "test": "vitest run",
52
+ "change": "beachball change"
53
+ }
54
+ }