esisl_genoa_client 0.1.5 → 0.1.6
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 +4 -2
- package/dist/apis/AllianceApi.d.ts +8 -0
- package/dist/apis/AllianceApi.js +29 -0
- package/dist/apis/AssetsApi.d.ts +12 -0
- package/dist/apis/AssetsApi.js +43 -0
- package/dist/apis/CalendarApi.d.ts +8 -0
- package/dist/apis/CalendarApi.js +29 -0
- package/dist/apis/CharacterApi.d.ts +28 -0
- package/dist/apis/CharacterApi.js +99 -0
- package/dist/apis/ClonesApi.d.ts +4 -0
- package/dist/apis/ClonesApi.js +15 -0
- package/dist/apis/ContactsApi.d.ts +18 -0
- package/dist/apis/ContactsApi.js +64 -0
- package/dist/apis/ContractsApi.d.ts +18 -0
- package/dist/apis/ContractsApi.js +64 -0
- package/dist/apis/CorporationApi.d.ts +44 -0
- package/dist/apis/CorporationApi.js +155 -0
- package/dist/apis/CorporationProjectsApi.d.ts +8 -4
- package/dist/apis/CorporationProjectsApi.js +29 -6
- package/dist/apis/DogmaApi.d.ts +10 -0
- package/dist/apis/DogmaApi.js +36 -0
- package/dist/apis/FactionWarfareApi.d.ts +16 -0
- package/dist/apis/FactionWarfareApi.js +57 -0
- package/dist/apis/FittingsApi.d.ts +6 -0
- package/dist/apis/FittingsApi.js +22 -0
- package/dist/apis/FleetsApi.d.ts +28 -0
- package/dist/apis/FleetsApi.js +99 -0
- package/dist/apis/FreelanceJobsApi.d.ts +12 -2
- package/dist/apis/FreelanceJobsApi.js +43 -3
- package/dist/apis/IncursionsApi.d.ts +2 -0
- package/dist/apis/IncursionsApi.js +8 -0
- package/dist/apis/IndustryApi.d.ts +16 -0
- package/dist/apis/IndustryApi.js +57 -0
- package/dist/apis/InsuranceApi.d.ts +2 -0
- package/dist/apis/InsuranceApi.js +8 -0
- package/dist/apis/KillmailsApi.d.ts +6 -0
- package/dist/apis/KillmailsApi.js +22 -0
- package/dist/apis/LocationApi.d.ts +6 -0
- package/dist/apis/LocationApi.js +22 -0
- package/dist/apis/LoyaltyApi.d.ts +4 -0
- package/dist/apis/LoyaltyApi.js +15 -0
- package/dist/apis/MailApi.d.ts +18 -0
- package/dist/apis/MailApi.js +64 -0
- package/dist/apis/MarketApi.d.ts +22 -0
- package/dist/apis/MarketApi.js +78 -0
- package/dist/apis/MetaApi.d.ts +6 -0
- package/dist/apis/MetaApi.js +22 -0
- package/dist/apis/PlanetaryInteractionApi.d.ts +8 -0
- package/dist/apis/PlanetaryInteractionApi.js +29 -0
- package/dist/apis/RoutesApi.d.ts +2 -0
- package/dist/apis/RoutesApi.js +8 -0
- package/dist/apis/SearchApi.d.ts +2 -0
- package/dist/apis/SearchApi.js +8 -0
- package/dist/apis/SkillsApi.d.ts +6 -0
- package/dist/apis/SkillsApi.js +22 -0
- package/dist/apis/SovereigntyApi.d.ts +6 -0
- package/dist/apis/SovereigntyApi.js +22 -0
- package/dist/apis/StatusApi.d.ts +2 -0
- package/dist/apis/StatusApi.js +8 -0
- package/dist/apis/UniverseApi.d.ts +60 -0
- package/dist/apis/UniverseApi.js +211 -0
- package/dist/apis/UserInterfaceApi.d.ts +10 -0
- package/dist/apis/UserInterfaceApi.js +36 -0
- package/dist/apis/WalletApi.d.ts +12 -0
- package/dist/apis/WalletApi.js +43 -0
- package/dist/apis/WarsApi.d.ts +6 -0
- package/dist/apis/WarsApi.js +22 -0
- package/dist/constants.d.ts +8 -0
- package/dist/constants.js +13 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +5 -0
- package/docs/AllianceApi.md +16 -4
- package/docs/AssetsApi.md +24 -6
- package/docs/CalendarApi.md +16 -4
- package/docs/CharacterApi.md +56 -14
- package/docs/ClonesApi.md +8 -2
- package/docs/ContactsApi.md +36 -9
- package/docs/ContractsApi.md +36 -9
- package/docs/CorporationApi.md +88 -22
- package/docs/CorporationProjectsApi.md +20 -14
- package/docs/DogmaApi.md +20 -5
- package/docs/FactionWarfareApi.md +32 -8
- package/docs/FittingsApi.md +12 -3
- package/docs/FleetsApi.md +56 -14
- package/docs/FreelanceJobsApi.md +30 -15
- package/docs/IncursionsApi.md +4 -1
- package/docs/IndustryApi.md +32 -8
- package/docs/InsuranceApi.md +4 -1
- package/docs/KillmailsApi.md +12 -3
- package/docs/LocationApi.md +12 -3
- package/docs/LoyaltyApi.md +8 -2
- package/docs/MailApi.md +36 -9
- package/docs/MarketApi.md +44 -11
- package/docs/MetaApi.md +15 -6
- package/docs/PlanetaryInteractionApi.md +16 -4
- package/docs/RoutesApi.md +5 -2
- package/docs/SearchApi.md +4 -1
- package/docs/SkillsApi.md +12 -3
- package/docs/SovereigntyApi.md +12 -3
- package/docs/StatusApi.md +4 -1
- package/docs/UniverseApi.md +120 -30
- package/docs/UserInterfaceApi.md +20 -5
- package/docs/WalletApi.md +24 -6
- package/docs/WarsApi.md +12 -3
- package/esisl_genoa_client-0.1.6.tgz +0 -0
- package/package.json +1 -1
- package/src/apis/AllianceApi.ts +45 -0
- package/src/apis/AssetsApi.ts +67 -0
- package/src/apis/CalendarApi.ts +45 -0
- package/src/apis/CharacterApi.ts +155 -0
- package/src/apis/ClonesApi.ts +23 -0
- package/src/apis/ContactsApi.ts +100 -0
- package/src/apis/ContractsApi.ts +100 -0
- package/src/apis/CorporationApi.ts +243 -0
- package/src/apis/CorporationProjectsApi.ts +45 -12
- package/src/apis/DogmaApi.ts +56 -0
- package/src/apis/FactionWarfareApi.ts +89 -0
- package/src/apis/FittingsApi.ts +34 -0
- package/src/apis/FleetsApi.ts +155 -0
- package/src/apis/FreelanceJobsApi.ts +67 -6
- package/src/apis/IncursionsApi.ts +12 -0
- package/src/apis/IndustryApi.ts +89 -0
- package/src/apis/InsuranceApi.ts +12 -0
- package/src/apis/KillmailsApi.ts +34 -0
- package/src/apis/LocationApi.ts +34 -0
- package/src/apis/LoyaltyApi.ts +23 -0
- package/src/apis/MailApi.ts +100 -0
- package/src/apis/MarketApi.ts +122 -0
- package/src/apis/MetaApi.ts +34 -0
- package/src/apis/PlanetaryInteractionApi.ts +45 -0
- package/src/apis/RoutesApi.ts +12 -0
- package/src/apis/SearchApi.ts +12 -0
- package/src/apis/SkillsApi.ts +34 -0
- package/src/apis/SovereigntyApi.ts +34 -0
- package/src/apis/StatusApi.ts +12 -0
- package/src/apis/UniverseApi.ts +331 -0
- package/src/apis/UserInterfaceApi.ts +56 -0
- package/src/apis/WalletApi.ts +67 -0
- package/src/apis/WarsApi.ts +34 -0
- package/src/constants.ts +10 -0
- package/src/index.ts +1 -0
- package/esisl_genoa_client-0.1.4.tgz +0 -0
- package/esisl_genoa_client-0.1.5.tgz +0 -0
package/docs/SovereigntyApi.md
CHANGED
|
@@ -12,7 +12,7 @@ All URIs are relative to *https://esi.evetech.net*
|
|
|
12
12
|
|
|
13
13
|
## getSovereigntyCampaigns
|
|
14
14
|
|
|
15
|
-
> Array<SovereigntyCampaignsGetInner> getSovereigntyCampaigns(xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
15
|
+
> Array<SovereigntyCampaignsGetInner> getSovereigntyCampaigns(xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
16
16
|
|
|
17
17
|
List sovereignty campaigns
|
|
18
18
|
|
|
@@ -40,6 +40,8 @@ async function example() {
|
|
|
40
40
|
ifNoneMatch: ifNoneMatch_example,
|
|
41
41
|
// string | The tenant ID for the request. (optional)
|
|
42
42
|
xTenant: ,
|
|
43
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
44
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
43
45
|
} satisfies GetSovereigntyCampaignsRequest;
|
|
44
46
|
|
|
45
47
|
try {
|
|
@@ -63,6 +65,7 @@ example().catch(console.error);
|
|
|
63
65
|
| **acceptLanguage** | `en`, `de`, `fr`, `ja`, `ru`, `zh`, `ko`, `es` | The language to use for the response. | [Optional] [Defaults to `'en'`] [Enum: en, de, fr, ja, ru, zh, ko, es] |
|
|
64
66
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
65
67
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
68
|
+
| **ifModifiedSince** | `string` | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. | [Optional] [Defaults to `undefined`] |
|
|
66
69
|
|
|
67
70
|
### Return type
|
|
68
71
|
|
|
@@ -89,7 +92,7 @@ No authorization required
|
|
|
89
92
|
|
|
90
93
|
## getSovereigntyMap
|
|
91
94
|
|
|
92
|
-
> Array<SovereigntyMapGetInner> getSovereigntyMap(xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
95
|
+
> Array<SovereigntyMapGetInner> getSovereigntyMap(xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
93
96
|
|
|
94
97
|
List sovereignty of systems
|
|
95
98
|
|
|
@@ -117,6 +120,8 @@ async function example() {
|
|
|
117
120
|
ifNoneMatch: ifNoneMatch_example,
|
|
118
121
|
// string | The tenant ID for the request. (optional)
|
|
119
122
|
xTenant: ,
|
|
123
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
124
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
120
125
|
} satisfies GetSovereigntyMapRequest;
|
|
121
126
|
|
|
122
127
|
try {
|
|
@@ -140,6 +145,7 @@ example().catch(console.error);
|
|
|
140
145
|
| **acceptLanguage** | `en`, `de`, `fr`, `ja`, `ru`, `zh`, `ko`, `es` | The language to use for the response. | [Optional] [Defaults to `'en'`] [Enum: en, de, fr, ja, ru, zh, ko, es] |
|
|
141
146
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
142
147
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
148
|
+
| **ifModifiedSince** | `string` | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. | [Optional] [Defaults to `undefined`] |
|
|
143
149
|
|
|
144
150
|
### Return type
|
|
145
151
|
|
|
@@ -166,7 +172,7 @@ No authorization required
|
|
|
166
172
|
|
|
167
173
|
## getSovereigntyStructures
|
|
168
174
|
|
|
169
|
-
> Array<SovereigntyStructuresGetInner> getSovereigntyStructures(xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
175
|
+
> Array<SovereigntyStructuresGetInner> getSovereigntyStructures(xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
170
176
|
|
|
171
177
|
List sovereignty structures
|
|
172
178
|
|
|
@@ -194,6 +200,8 @@ async function example() {
|
|
|
194
200
|
ifNoneMatch: ifNoneMatch_example,
|
|
195
201
|
// string | The tenant ID for the request. (optional)
|
|
196
202
|
xTenant: ,
|
|
203
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
204
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
197
205
|
} satisfies GetSovereigntyStructuresRequest;
|
|
198
206
|
|
|
199
207
|
try {
|
|
@@ -217,6 +225,7 @@ example().catch(console.error);
|
|
|
217
225
|
| **acceptLanguage** | `en`, `de`, `fr`, `ja`, `ru`, `zh`, `ko`, `es` | The language to use for the response. | [Optional] [Defaults to `'en'`] [Enum: en, de, fr, ja, ru, zh, ko, es] |
|
|
218
226
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
219
227
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
228
|
+
| **ifModifiedSince** | `string` | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. | [Optional] [Defaults to `undefined`] |
|
|
220
229
|
|
|
221
230
|
### Return type
|
|
222
231
|
|
package/docs/StatusApi.md
CHANGED
|
@@ -10,7 +10,7 @@ All URIs are relative to *https://esi.evetech.net*
|
|
|
10
10
|
|
|
11
11
|
## getStatus
|
|
12
12
|
|
|
13
|
-
> StatusGet getStatus(xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
13
|
+
> StatusGet getStatus(xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
14
14
|
|
|
15
15
|
Retrieve the uptime and player counts
|
|
16
16
|
|
|
@@ -38,6 +38,8 @@ async function example() {
|
|
|
38
38
|
ifNoneMatch: ifNoneMatch_example,
|
|
39
39
|
// string | The tenant ID for the request. (optional)
|
|
40
40
|
xTenant: ,
|
|
41
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
42
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
41
43
|
} satisfies GetStatusRequest;
|
|
42
44
|
|
|
43
45
|
try {
|
|
@@ -61,6 +63,7 @@ example().catch(console.error);
|
|
|
61
63
|
| **acceptLanguage** | `en`, `de`, `fr`, `ja`, `ru`, `zh`, `ko`, `es` | The language to use for the response. | [Optional] [Defaults to `'en'`] [Enum: en, de, fr, ja, ru, zh, ko, es] |
|
|
62
64
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
63
65
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
66
|
+
| **ifModifiedSince** | `string` | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. | [Optional] [Defaults to `undefined`] |
|
|
64
67
|
|
|
65
68
|
### Return type
|
|
66
69
|
|