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
|
@@ -13,7 +13,7 @@ All URIs are relative to *https://esi.evetech.net*
|
|
|
13
13
|
|
|
14
14
|
## getCorporationsProjectsContribution
|
|
15
15
|
|
|
16
|
-
> CorporationsProjectsContribution getCorporationsProjectsContribution(corporationId, projectId, characterId, xCompatibilityDate,
|
|
16
|
+
> CorporationsProjectsContribution getCorporationsProjectsContribution(corporationId, projectId, characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
17
17
|
|
|
18
18
|
Get your project contribution
|
|
19
19
|
|
|
@@ -45,14 +45,14 @@ async function example() {
|
|
|
45
45
|
characterId: 789,
|
|
46
46
|
// '2025-12-16' | The compatibility date for the request.
|
|
47
47
|
xCompatibilityDate: 2013-10-20,
|
|
48
|
-
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
49
|
-
ifModifiedSince: ifModifiedSince_example,
|
|
50
48
|
// 'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es' | The language to use for the response. (optional)
|
|
51
49
|
acceptLanguage: acceptLanguage_example,
|
|
52
50
|
// string | The ETag of the previous request. A 304 will be returned if this matches the current ETag. (optional)
|
|
53
51
|
ifNoneMatch: ifNoneMatch_example,
|
|
54
52
|
// string | The tenant ID for the request. (optional)
|
|
55
53
|
xTenant: ,
|
|
54
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
55
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
56
56
|
} satisfies GetCorporationsProjectsContributionRequest;
|
|
57
57
|
|
|
58
58
|
try {
|
|
@@ -76,10 +76,10 @@ example().catch(console.error);
|
|
|
76
76
|
| **projectId** | `string` | The ID of the project | [Defaults to `undefined`] |
|
|
77
77
|
| **characterId** | `number` | The ID of the character | [Defaults to `undefined`] |
|
|
78
78
|
| **xCompatibilityDate** | `2025-12-16` | The compatibility date for the request. | [Defaults to `undefined`] [Enum: 2025-12-16] |
|
|
79
|
-
| **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`] |
|
|
80
79
|
| **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] |
|
|
81
80
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
82
81
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
82
|
+
| **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`] |
|
|
83
83
|
|
|
84
84
|
### Return type
|
|
85
85
|
|
|
@@ -99,14 +99,14 @@ example().catch(console.error);
|
|
|
99
99
|
| Status code | Description | Response headers |
|
|
100
100
|
|-------------|-------------|------------------|
|
|
101
101
|
| **200** | OK | * Cache-Control - <br> * ETag - <br> * Last-Modified - <br> |
|
|
102
|
-
| **0** | Error |
|
|
102
|
+
| **0** | Error | - |
|
|
103
103
|
|
|
104
104
|
[[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
|
|
105
105
|
|
|
106
106
|
|
|
107
107
|
## getCorporationsProjectsContributors
|
|
108
108
|
|
|
109
|
-
> CorporationsProjectsContributors getCorporationsProjectsContributors(corporationId, projectId, xCompatibilityDate, after, before, limit, acceptLanguage, ifNoneMatch, xTenant)
|
|
109
|
+
> CorporationsProjectsContributors getCorporationsProjectsContributors(corporationId, projectId, xCompatibilityDate, after, before, limit, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
110
110
|
|
|
111
111
|
List project contributors
|
|
112
112
|
|
|
@@ -148,6 +148,8 @@ async function example() {
|
|
|
148
148
|
ifNoneMatch: ifNoneMatch_example,
|
|
149
149
|
// string | The tenant ID for the request. (optional)
|
|
150
150
|
xTenant: ,
|
|
151
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
152
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
151
153
|
} satisfies GetCorporationsProjectsContributorsRequest;
|
|
152
154
|
|
|
153
155
|
try {
|
|
@@ -176,6 +178,7 @@ example().catch(console.error);
|
|
|
176
178
|
| **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] |
|
|
177
179
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
178
180
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
181
|
+
| **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`] |
|
|
179
182
|
|
|
180
183
|
### Return type
|
|
181
184
|
|
|
@@ -195,14 +198,14 @@ example().catch(console.error);
|
|
|
195
198
|
| Status code | Description | Response headers |
|
|
196
199
|
|-------------|-------------|------------------|
|
|
197
200
|
| **200** | OK | * Cache-Control - <br> * ETag - <br> * Last-Modified - <br> |
|
|
198
|
-
| **0** | Error |
|
|
201
|
+
| **0** | Error | - |
|
|
199
202
|
|
|
200
203
|
[[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
|
|
201
204
|
|
|
202
205
|
|
|
203
206
|
## getCorporationsProjectsDetail
|
|
204
207
|
|
|
205
|
-
> CorporationsProjectsDetail getCorporationsProjectsDetail(corporationId, projectId, xCompatibilityDate,
|
|
208
|
+
> CorporationsProjectsDetail getCorporationsProjectsDetail(corporationId, projectId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
206
209
|
|
|
207
210
|
Get project details
|
|
208
211
|
|
|
@@ -232,14 +235,14 @@ async function example() {
|
|
|
232
235
|
projectId: 38400000-8cf0-11bd-b23e-10b96e4ef00d,
|
|
233
236
|
// '2025-12-16' | The compatibility date for the request.
|
|
234
237
|
xCompatibilityDate: 2013-10-20,
|
|
235
|
-
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
236
|
-
ifModifiedSince: ifModifiedSince_example,
|
|
237
238
|
// 'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es' | The language to use for the response. (optional)
|
|
238
239
|
acceptLanguage: acceptLanguage_example,
|
|
239
240
|
// string | The ETag of the previous request. A 304 will be returned if this matches the current ETag. (optional)
|
|
240
241
|
ifNoneMatch: ifNoneMatch_example,
|
|
241
242
|
// string | The tenant ID for the request. (optional)
|
|
242
243
|
xTenant: ,
|
|
244
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
245
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
243
246
|
} satisfies GetCorporationsProjectsDetailRequest;
|
|
244
247
|
|
|
245
248
|
try {
|
|
@@ -262,10 +265,10 @@ example().catch(console.error);
|
|
|
262
265
|
| **corporationId** | `number` | The ID of the corporation | [Defaults to `undefined`] |
|
|
263
266
|
| **projectId** | `string` | The ID of the project | [Defaults to `undefined`] |
|
|
264
267
|
| **xCompatibilityDate** | `2025-12-16` | The compatibility date for the request. | [Defaults to `undefined`] [Enum: 2025-12-16] |
|
|
265
|
-
| **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`] |
|
|
266
268
|
| **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] |
|
|
267
269
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
268
270
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
271
|
+
| **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`] |
|
|
269
272
|
|
|
270
273
|
### Return type
|
|
271
274
|
|
|
@@ -285,14 +288,14 @@ example().catch(console.error);
|
|
|
285
288
|
| Status code | Description | Response headers |
|
|
286
289
|
|-------------|-------------|------------------|
|
|
287
290
|
| **200** | OK | * Cache-Control - <br> * ETag - <br> * Last-Modified - <br> |
|
|
288
|
-
| **0** | Error |
|
|
291
|
+
| **0** | Error | - |
|
|
289
292
|
|
|
290
293
|
[[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
|
|
291
294
|
|
|
292
295
|
|
|
293
296
|
## getCorporationsProjectsListing
|
|
294
297
|
|
|
295
|
-
> CorporationsProjectsListing getCorporationsProjectsListing(corporationId, xCompatibilityDate, after, before, limit, state, acceptLanguage, ifNoneMatch, xTenant)
|
|
298
|
+
> CorporationsProjectsListing getCorporationsProjectsListing(corporationId, xCompatibilityDate, after, before, limit, state, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
296
299
|
|
|
297
300
|
List corporation projects
|
|
298
301
|
|
|
@@ -334,6 +337,8 @@ async function example() {
|
|
|
334
337
|
ifNoneMatch: ifNoneMatch_example,
|
|
335
338
|
// string | The tenant ID for the request. (optional)
|
|
336
339
|
xTenant: ,
|
|
340
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
341
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
337
342
|
} satisfies GetCorporationsProjectsListingRequest;
|
|
338
343
|
|
|
339
344
|
try {
|
|
@@ -362,6 +367,7 @@ example().catch(console.error);
|
|
|
362
367
|
| **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] |
|
|
363
368
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
364
369
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
370
|
+
| **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`] |
|
|
365
371
|
|
|
366
372
|
### Return type
|
|
367
373
|
|
|
@@ -381,7 +387,7 @@ example().catch(console.error);
|
|
|
381
387
|
| Status code | Description | Response headers |
|
|
382
388
|
|-------------|-------------|------------------|
|
|
383
389
|
| **200** | OK | * Cache-Control - <br> * ETag - <br> * Last-Modified - <br> |
|
|
384
|
-
| **0** | Error |
|
|
390
|
+
| **0** | Error | - |
|
|
385
391
|
|
|
386
392
|
[[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
|
|
387
393
|
|
package/docs/DogmaApi.md
CHANGED
|
@@ -14,7 +14,7 @@ All URIs are relative to *https://esi.evetech.net*
|
|
|
14
14
|
|
|
15
15
|
## getDogmaAttributes
|
|
16
16
|
|
|
17
|
-
> Array<number> getDogmaAttributes(xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
17
|
+
> Array<number> getDogmaAttributes(xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
18
18
|
|
|
19
19
|
Get attributes
|
|
20
20
|
|
|
@@ -42,6 +42,8 @@ async function example() {
|
|
|
42
42
|
ifNoneMatch: ifNoneMatch_example,
|
|
43
43
|
// string | The tenant ID for the request. (optional)
|
|
44
44
|
xTenant: ,
|
|
45
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
46
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
45
47
|
} satisfies GetDogmaAttributesRequest;
|
|
46
48
|
|
|
47
49
|
try {
|
|
@@ -65,6 +67,7 @@ example().catch(console.error);
|
|
|
65
67
|
| **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] |
|
|
66
68
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
67
69
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
70
|
+
| **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`] |
|
|
68
71
|
|
|
69
72
|
### Return type
|
|
70
73
|
|
|
@@ -91,7 +94,7 @@ No authorization required
|
|
|
91
94
|
|
|
92
95
|
## getDogmaAttributesAttributeId
|
|
93
96
|
|
|
94
|
-
> DogmaAttributesAttributeIdGet getDogmaAttributesAttributeId(attributeId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
97
|
+
> DogmaAttributesAttributeIdGet getDogmaAttributesAttributeId(attributeId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
95
98
|
|
|
96
99
|
Get attribute information
|
|
97
100
|
|
|
@@ -121,6 +124,8 @@ async function example() {
|
|
|
121
124
|
ifNoneMatch: ifNoneMatch_example,
|
|
122
125
|
// string | The tenant ID for the request. (optional)
|
|
123
126
|
xTenant: ,
|
|
127
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
128
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
124
129
|
} satisfies GetDogmaAttributesAttributeIdRequest;
|
|
125
130
|
|
|
126
131
|
try {
|
|
@@ -145,6 +150,7 @@ example().catch(console.error);
|
|
|
145
150
|
| **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] |
|
|
146
151
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
147
152
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
153
|
+
| **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`] |
|
|
148
154
|
|
|
149
155
|
### Return type
|
|
150
156
|
|
|
@@ -171,7 +177,7 @@ No authorization required
|
|
|
171
177
|
|
|
172
178
|
## getDogmaDynamicItemsTypeIdItemId
|
|
173
179
|
|
|
174
|
-
> DogmaDynamicItemsTypeIdItemIdGet getDogmaDynamicItemsTypeIdItemId(itemId, typeId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
180
|
+
> DogmaDynamicItemsTypeIdItemIdGet getDogmaDynamicItemsTypeIdItemId(itemId, typeId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
175
181
|
|
|
176
182
|
Get dynamic item information
|
|
177
183
|
|
|
@@ -203,6 +209,8 @@ async function example() {
|
|
|
203
209
|
ifNoneMatch: ifNoneMatch_example,
|
|
204
210
|
// string | The tenant ID for the request. (optional)
|
|
205
211
|
xTenant: ,
|
|
212
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
213
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
206
214
|
} satisfies GetDogmaDynamicItemsTypeIdItemIdRequest;
|
|
207
215
|
|
|
208
216
|
try {
|
|
@@ -228,6 +236,7 @@ example().catch(console.error);
|
|
|
228
236
|
| **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] |
|
|
229
237
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
230
238
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
239
|
+
| **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`] |
|
|
231
240
|
|
|
232
241
|
### Return type
|
|
233
242
|
|
|
@@ -254,7 +263,7 @@ No authorization required
|
|
|
254
263
|
|
|
255
264
|
## getDogmaEffects
|
|
256
265
|
|
|
257
|
-
> Array<number> getDogmaEffects(xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
266
|
+
> Array<number> getDogmaEffects(xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
258
267
|
|
|
259
268
|
Get effects
|
|
260
269
|
|
|
@@ -282,6 +291,8 @@ async function example() {
|
|
|
282
291
|
ifNoneMatch: ifNoneMatch_example,
|
|
283
292
|
// string | The tenant ID for the request. (optional)
|
|
284
293
|
xTenant: ,
|
|
294
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
295
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
285
296
|
} satisfies GetDogmaEffectsRequest;
|
|
286
297
|
|
|
287
298
|
try {
|
|
@@ -305,6 +316,7 @@ example().catch(console.error);
|
|
|
305
316
|
| **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] |
|
|
306
317
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
307
318
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
319
|
+
| **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`] |
|
|
308
320
|
|
|
309
321
|
### Return type
|
|
310
322
|
|
|
@@ -331,7 +343,7 @@ No authorization required
|
|
|
331
343
|
|
|
332
344
|
## getDogmaEffectsEffectId
|
|
333
345
|
|
|
334
|
-
> DogmaEffectsEffectIdGet getDogmaEffectsEffectId(effectId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
346
|
+
> DogmaEffectsEffectIdGet getDogmaEffectsEffectId(effectId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
335
347
|
|
|
336
348
|
Get effect information
|
|
337
349
|
|
|
@@ -361,6 +373,8 @@ async function example() {
|
|
|
361
373
|
ifNoneMatch: ifNoneMatch_example,
|
|
362
374
|
// string | The tenant ID for the request. (optional)
|
|
363
375
|
xTenant: ,
|
|
376
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
377
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
364
378
|
} satisfies GetDogmaEffectsEffectIdRequest;
|
|
365
379
|
|
|
366
380
|
try {
|
|
@@ -385,6 +399,7 @@ example().catch(console.error);
|
|
|
385
399
|
| **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] |
|
|
386
400
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
387
401
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
402
|
+
| **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`] |
|
|
388
403
|
|
|
389
404
|
### Return type
|
|
390
405
|
|
|
@@ -17,7 +17,7 @@ All URIs are relative to *https://esi.evetech.net*
|
|
|
17
17
|
|
|
18
18
|
## getCharactersCharacterIdFwStats
|
|
19
19
|
|
|
20
|
-
> CharactersCharacterIdFwStatsGet getCharactersCharacterIdFwStats(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
20
|
+
> CharactersCharacterIdFwStatsGet getCharactersCharacterIdFwStats(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
21
21
|
|
|
22
22
|
Overview of a character involved in faction warfare
|
|
23
23
|
|
|
@@ -51,6 +51,8 @@ async function example() {
|
|
|
51
51
|
ifNoneMatch: ifNoneMatch_example,
|
|
52
52
|
// string | The tenant ID for the request. (optional)
|
|
53
53
|
xTenant: ,
|
|
54
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
55
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
54
56
|
} satisfies GetCharactersCharacterIdFwStatsRequest;
|
|
55
57
|
|
|
56
58
|
try {
|
|
@@ -75,6 +77,7 @@ example().catch(console.error);
|
|
|
75
77
|
| **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] |
|
|
76
78
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
77
79
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
80
|
+
| **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`] |
|
|
78
81
|
|
|
79
82
|
### Return type
|
|
80
83
|
|
|
@@ -101,7 +104,7 @@ example().catch(console.error);
|
|
|
101
104
|
|
|
102
105
|
## getCorporationsCorporationIdFwStats
|
|
103
106
|
|
|
104
|
-
> CorporationsCorporationIdFwStatsGet getCorporationsCorporationIdFwStats(corporationId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
107
|
+
> CorporationsCorporationIdFwStatsGet getCorporationsCorporationIdFwStats(corporationId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
105
108
|
|
|
106
109
|
Overview of a corporation involved in faction warfare
|
|
107
110
|
|
|
@@ -135,6 +138,8 @@ async function example() {
|
|
|
135
138
|
ifNoneMatch: ifNoneMatch_example,
|
|
136
139
|
// string | The tenant ID for the request. (optional)
|
|
137
140
|
xTenant: ,
|
|
141
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
142
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
138
143
|
} satisfies GetCorporationsCorporationIdFwStatsRequest;
|
|
139
144
|
|
|
140
145
|
try {
|
|
@@ -159,6 +164,7 @@ example().catch(console.error);
|
|
|
159
164
|
| **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] |
|
|
160
165
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
161
166
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
167
|
+
| **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`] |
|
|
162
168
|
|
|
163
169
|
### Return type
|
|
164
170
|
|
|
@@ -185,7 +191,7 @@ example().catch(console.error);
|
|
|
185
191
|
|
|
186
192
|
## getFwLeaderboards
|
|
187
193
|
|
|
188
|
-
> FwLeaderboardsGet getFwLeaderboards(xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
194
|
+
> FwLeaderboardsGet getFwLeaderboards(xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
189
195
|
|
|
190
196
|
List of the top factions in faction warfare
|
|
191
197
|
|
|
@@ -213,6 +219,8 @@ async function example() {
|
|
|
213
219
|
ifNoneMatch: ifNoneMatch_example,
|
|
214
220
|
// string | The tenant ID for the request. (optional)
|
|
215
221
|
xTenant: ,
|
|
222
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
223
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
216
224
|
} satisfies GetFwLeaderboardsRequest;
|
|
217
225
|
|
|
218
226
|
try {
|
|
@@ -236,6 +244,7 @@ example().catch(console.error);
|
|
|
236
244
|
| **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] |
|
|
237
245
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
238
246
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
247
|
+
| **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`] |
|
|
239
248
|
|
|
240
249
|
### Return type
|
|
241
250
|
|
|
@@ -262,7 +271,7 @@ No authorization required
|
|
|
262
271
|
|
|
263
272
|
## getFwLeaderboardsCharacters
|
|
264
273
|
|
|
265
|
-
> FwLeaderboardsCharactersGet getFwLeaderboardsCharacters(xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
274
|
+
> FwLeaderboardsCharactersGet getFwLeaderboardsCharacters(xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
266
275
|
|
|
267
276
|
List of the top pilots in faction warfare
|
|
268
277
|
|
|
@@ -290,6 +299,8 @@ async function example() {
|
|
|
290
299
|
ifNoneMatch: ifNoneMatch_example,
|
|
291
300
|
// string | The tenant ID for the request. (optional)
|
|
292
301
|
xTenant: ,
|
|
302
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
303
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
293
304
|
} satisfies GetFwLeaderboardsCharactersRequest;
|
|
294
305
|
|
|
295
306
|
try {
|
|
@@ -313,6 +324,7 @@ example().catch(console.error);
|
|
|
313
324
|
| **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] |
|
|
314
325
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
315
326
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
327
|
+
| **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`] |
|
|
316
328
|
|
|
317
329
|
### Return type
|
|
318
330
|
|
|
@@ -339,7 +351,7 @@ No authorization required
|
|
|
339
351
|
|
|
340
352
|
## getFwLeaderboardsCorporations
|
|
341
353
|
|
|
342
|
-
> FwLeaderboardsCorporationsGet getFwLeaderboardsCorporations(xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
354
|
+
> FwLeaderboardsCorporationsGet getFwLeaderboardsCorporations(xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
343
355
|
|
|
344
356
|
List of the top corporations in faction warfare
|
|
345
357
|
|
|
@@ -367,6 +379,8 @@ async function example() {
|
|
|
367
379
|
ifNoneMatch: ifNoneMatch_example,
|
|
368
380
|
// string | The tenant ID for the request. (optional)
|
|
369
381
|
xTenant: ,
|
|
382
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
383
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
370
384
|
} satisfies GetFwLeaderboardsCorporationsRequest;
|
|
371
385
|
|
|
372
386
|
try {
|
|
@@ -390,6 +404,7 @@ example().catch(console.error);
|
|
|
390
404
|
| **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] |
|
|
391
405
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
392
406
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
407
|
+
| **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`] |
|
|
393
408
|
|
|
394
409
|
### Return type
|
|
395
410
|
|
|
@@ -416,7 +431,7 @@ No authorization required
|
|
|
416
431
|
|
|
417
432
|
## getFwStats
|
|
418
433
|
|
|
419
|
-
> Array<FwStatsGetInner> getFwStats(xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
434
|
+
> Array<FwStatsGetInner> getFwStats(xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
420
435
|
|
|
421
436
|
An overview of statistics about factions involved in faction warfare
|
|
422
437
|
|
|
@@ -444,6 +459,8 @@ async function example() {
|
|
|
444
459
|
ifNoneMatch: ifNoneMatch_example,
|
|
445
460
|
// string | The tenant ID for the request. (optional)
|
|
446
461
|
xTenant: ,
|
|
462
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
463
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
447
464
|
} satisfies GetFwStatsRequest;
|
|
448
465
|
|
|
449
466
|
try {
|
|
@@ -467,6 +484,7 @@ example().catch(console.error);
|
|
|
467
484
|
| **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] |
|
|
468
485
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
469
486
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
487
|
+
| **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`] |
|
|
470
488
|
|
|
471
489
|
### Return type
|
|
472
490
|
|
|
@@ -493,7 +511,7 @@ No authorization required
|
|
|
493
511
|
|
|
494
512
|
## getFwSystems
|
|
495
513
|
|
|
496
|
-
> Array<FwSystemsGetInner> getFwSystems(xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
514
|
+
> Array<FwSystemsGetInner> getFwSystems(xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
497
515
|
|
|
498
516
|
Ownership of faction warfare systems
|
|
499
517
|
|
|
@@ -521,6 +539,8 @@ async function example() {
|
|
|
521
539
|
ifNoneMatch: ifNoneMatch_example,
|
|
522
540
|
// string | The tenant ID for the request. (optional)
|
|
523
541
|
xTenant: ,
|
|
542
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
543
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
524
544
|
} satisfies GetFwSystemsRequest;
|
|
525
545
|
|
|
526
546
|
try {
|
|
@@ -544,6 +564,7 @@ example().catch(console.error);
|
|
|
544
564
|
| **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] |
|
|
545
565
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
546
566
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
567
|
+
| **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`] |
|
|
547
568
|
|
|
548
569
|
### Return type
|
|
549
570
|
|
|
@@ -570,7 +591,7 @@ No authorization required
|
|
|
570
591
|
|
|
571
592
|
## getFwWars
|
|
572
593
|
|
|
573
|
-
> Array<FwWarsGetInner> getFwWars(xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
594
|
+
> Array<FwWarsGetInner> getFwWars(xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
574
595
|
|
|
575
596
|
Data about which NPC factions are at war
|
|
576
597
|
|
|
@@ -598,6 +619,8 @@ async function example() {
|
|
|
598
619
|
ifNoneMatch: ifNoneMatch_example,
|
|
599
620
|
// string | The tenant ID for the request. (optional)
|
|
600
621
|
xTenant: ,
|
|
622
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
623
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
601
624
|
} satisfies GetFwWarsRequest;
|
|
602
625
|
|
|
603
626
|
try {
|
|
@@ -621,6 +644,7 @@ example().catch(console.error);
|
|
|
621
644
|
| **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] |
|
|
622
645
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
623
646
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
647
|
+
| **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`] |
|
|
624
648
|
|
|
625
649
|
### Return type
|
|
626
650
|
|
package/docs/FittingsApi.md
CHANGED
|
@@ -12,7 +12,7 @@ All URIs are relative to *https://esi.evetech.net*
|
|
|
12
12
|
|
|
13
13
|
## deleteCharactersCharacterIdFittingsFittingId
|
|
14
14
|
|
|
15
|
-
> deleteCharactersCharacterIdFittingsFittingId(characterId, fittingId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
15
|
+
> deleteCharactersCharacterIdFittingsFittingId(characterId, fittingId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
16
16
|
|
|
17
17
|
Delete fitting
|
|
18
18
|
|
|
@@ -48,6 +48,8 @@ async function example() {
|
|
|
48
48
|
ifNoneMatch: ifNoneMatch_example,
|
|
49
49
|
// string | The tenant ID for the request. (optional)
|
|
50
50
|
xTenant: ,
|
|
51
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
52
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
51
53
|
} satisfies DeleteCharactersCharacterIdFittingsFittingIdRequest;
|
|
52
54
|
|
|
53
55
|
try {
|
|
@@ -73,6 +75,7 @@ example().catch(console.error);
|
|
|
73
75
|
| **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] |
|
|
74
76
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
75
77
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
78
|
+
| **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`] |
|
|
76
79
|
|
|
77
80
|
### Return type
|
|
78
81
|
|
|
@@ -99,7 +102,7 @@ example().catch(console.error);
|
|
|
99
102
|
|
|
100
103
|
## getCharactersCharacterIdFittings
|
|
101
104
|
|
|
102
|
-
> Array<CharactersCharacterIdFittingsGetInner> getCharactersCharacterIdFittings(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
105
|
+
> Array<CharactersCharacterIdFittingsGetInner> getCharactersCharacterIdFittings(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
103
106
|
|
|
104
107
|
Get fittings
|
|
105
108
|
|
|
@@ -133,6 +136,8 @@ async function example() {
|
|
|
133
136
|
ifNoneMatch: ifNoneMatch_example,
|
|
134
137
|
// string | The tenant ID for the request. (optional)
|
|
135
138
|
xTenant: ,
|
|
139
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
140
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
136
141
|
} satisfies GetCharactersCharacterIdFittingsRequest;
|
|
137
142
|
|
|
138
143
|
try {
|
|
@@ -157,6 +162,7 @@ example().catch(console.error);
|
|
|
157
162
|
| **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] |
|
|
158
163
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
159
164
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
165
|
+
| **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`] |
|
|
160
166
|
|
|
161
167
|
### Return type
|
|
162
168
|
|
|
@@ -183,7 +189,7 @@ example().catch(console.error);
|
|
|
183
189
|
|
|
184
190
|
## postCharactersCharacterIdFittings
|
|
185
191
|
|
|
186
|
-
> CharactersCharacterIdFittingsPost postCharactersCharacterIdFittings(characterId, xCompatibilityDate, postCharactersCharacterIdFittingsRequest, acceptLanguage, ifNoneMatch, xTenant)
|
|
192
|
+
> CharactersCharacterIdFittingsPost postCharactersCharacterIdFittings(characterId, xCompatibilityDate, postCharactersCharacterIdFittingsRequest, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
187
193
|
|
|
188
194
|
Create fitting
|
|
189
195
|
|
|
@@ -219,6 +225,8 @@ async function example() {
|
|
|
219
225
|
ifNoneMatch: ifNoneMatch_example,
|
|
220
226
|
// string | The tenant ID for the request. (optional)
|
|
221
227
|
xTenant: ,
|
|
228
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
229
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
222
230
|
} satisfies PostCharactersCharacterIdFittingsOperationRequest;
|
|
223
231
|
|
|
224
232
|
try {
|
|
@@ -244,6 +252,7 @@ example().catch(console.error);
|
|
|
244
252
|
| **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] |
|
|
245
253
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
246
254
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
255
|
+
| **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`] |
|
|
247
256
|
|
|
248
257
|
### Return type
|
|
249
258
|
|