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/AssetsApi.md
CHANGED
|
@@ -15,7 +15,7 @@ All URIs are relative to *https://esi.evetech.net*
|
|
|
15
15
|
|
|
16
16
|
## getCharactersCharacterIdAssets
|
|
17
17
|
|
|
18
|
-
> Array<CharactersCharacterIdAssetsGetInner> getCharactersCharacterIdAssets(characterId, xCompatibilityDate, page, acceptLanguage, ifNoneMatch, xTenant)
|
|
18
|
+
> Array<CharactersCharacterIdAssetsGetInner> getCharactersCharacterIdAssets(characterId, xCompatibilityDate, page, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
19
19
|
|
|
20
20
|
Get character assets
|
|
21
21
|
|
|
@@ -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 GetCharactersCharacterIdAssetsRequest;
|
|
55
57
|
|
|
56
58
|
try {
|
|
@@ -76,6 +78,7 @@ example().catch(console.error);
|
|
|
76
78
|
| **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] |
|
|
77
79
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
78
80
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
81
|
+
| **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`] |
|
|
79
82
|
|
|
80
83
|
### Return type
|
|
81
84
|
|
|
@@ -102,7 +105,7 @@ example().catch(console.error);
|
|
|
102
105
|
|
|
103
106
|
## getCorporationsCorporationIdAssets
|
|
104
107
|
|
|
105
|
-
> Array<CorporationsCorporationIdAssetsGetInner> getCorporationsCorporationIdAssets(corporationId, xCompatibilityDate, page, acceptLanguage, ifNoneMatch, xTenant)
|
|
108
|
+
> Array<CorporationsCorporationIdAssetsGetInner> getCorporationsCorporationIdAssets(corporationId, xCompatibilityDate, page, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
106
109
|
|
|
107
110
|
Get corporation assets
|
|
108
111
|
|
|
@@ -138,6 +141,8 @@ async function example() {
|
|
|
138
141
|
ifNoneMatch: ifNoneMatch_example,
|
|
139
142
|
// string | The tenant ID for the request. (optional)
|
|
140
143
|
xTenant: ,
|
|
144
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
145
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
141
146
|
} satisfies GetCorporationsCorporationIdAssetsRequest;
|
|
142
147
|
|
|
143
148
|
try {
|
|
@@ -163,6 +168,7 @@ example().catch(console.error);
|
|
|
163
168
|
| **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] |
|
|
164
169
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
165
170
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
171
|
+
| **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`] |
|
|
166
172
|
|
|
167
173
|
### Return type
|
|
168
174
|
|
|
@@ -189,7 +195,7 @@ example().catch(console.error);
|
|
|
189
195
|
|
|
190
196
|
## postCharactersCharacterIdAssetsLocations
|
|
191
197
|
|
|
192
|
-
> Array<CharactersCharacterIdAssetsLocationsPostInner> postCharactersCharacterIdAssetsLocations(characterId, xCompatibilityDate, requestBody, acceptLanguage, ifNoneMatch, xTenant)
|
|
198
|
+
> Array<CharactersCharacterIdAssetsLocationsPostInner> postCharactersCharacterIdAssetsLocations(characterId, xCompatibilityDate, requestBody, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
193
199
|
|
|
194
200
|
Get character asset locations
|
|
195
201
|
|
|
@@ -225,6 +231,8 @@ async function example() {
|
|
|
225
231
|
ifNoneMatch: ifNoneMatch_example,
|
|
226
232
|
// string | The tenant ID for the request. (optional)
|
|
227
233
|
xTenant: ,
|
|
234
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
235
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
228
236
|
} satisfies PostCharactersCharacterIdAssetsLocationsRequest;
|
|
229
237
|
|
|
230
238
|
try {
|
|
@@ -250,6 +258,7 @@ example().catch(console.error);
|
|
|
250
258
|
| **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] |
|
|
251
259
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
252
260
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
261
|
+
| **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`] |
|
|
253
262
|
|
|
254
263
|
### Return type
|
|
255
264
|
|
|
@@ -276,7 +285,7 @@ example().catch(console.error);
|
|
|
276
285
|
|
|
277
286
|
## postCharactersCharacterIdAssetsNames
|
|
278
287
|
|
|
279
|
-
> Array<CharactersCharacterIdAssetsNamesPostInner> postCharactersCharacterIdAssetsNames(characterId, xCompatibilityDate, requestBody, acceptLanguage, ifNoneMatch, xTenant)
|
|
288
|
+
> Array<CharactersCharacterIdAssetsNamesPostInner> postCharactersCharacterIdAssetsNames(characterId, xCompatibilityDate, requestBody, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
280
289
|
|
|
281
290
|
Get character asset names
|
|
282
291
|
|
|
@@ -312,6 +321,8 @@ async function example() {
|
|
|
312
321
|
ifNoneMatch: ifNoneMatch_example,
|
|
313
322
|
// string | The tenant ID for the request. (optional)
|
|
314
323
|
xTenant: ,
|
|
324
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
325
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
315
326
|
} satisfies PostCharactersCharacterIdAssetsNamesRequest;
|
|
316
327
|
|
|
317
328
|
try {
|
|
@@ -337,6 +348,7 @@ example().catch(console.error);
|
|
|
337
348
|
| **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] |
|
|
338
349
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
339
350
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
351
|
+
| **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`] |
|
|
340
352
|
|
|
341
353
|
### Return type
|
|
342
354
|
|
|
@@ -363,7 +375,7 @@ example().catch(console.error);
|
|
|
363
375
|
|
|
364
376
|
## postCorporationsCorporationIdAssetsLocations
|
|
365
377
|
|
|
366
|
-
> Array<CharactersCharacterIdAssetsLocationsPostInner> postCorporationsCorporationIdAssetsLocations(corporationId, xCompatibilityDate, requestBody, acceptLanguage, ifNoneMatch, xTenant)
|
|
378
|
+
> Array<CharactersCharacterIdAssetsLocationsPostInner> postCorporationsCorporationIdAssetsLocations(corporationId, xCompatibilityDate, requestBody, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
367
379
|
|
|
368
380
|
Get corporation asset locations
|
|
369
381
|
|
|
@@ -399,6 +411,8 @@ async function example() {
|
|
|
399
411
|
ifNoneMatch: ifNoneMatch_example,
|
|
400
412
|
// string | The tenant ID for the request. (optional)
|
|
401
413
|
xTenant: ,
|
|
414
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
415
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
402
416
|
} satisfies PostCorporationsCorporationIdAssetsLocationsRequest;
|
|
403
417
|
|
|
404
418
|
try {
|
|
@@ -424,6 +438,7 @@ example().catch(console.error);
|
|
|
424
438
|
| **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] |
|
|
425
439
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
426
440
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
441
|
+
| **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`] |
|
|
427
442
|
|
|
428
443
|
### Return type
|
|
429
444
|
|
|
@@ -450,7 +465,7 @@ example().catch(console.error);
|
|
|
450
465
|
|
|
451
466
|
## postCorporationsCorporationIdAssetsNames
|
|
452
467
|
|
|
453
|
-
> Array<CharactersCharacterIdAssetsNamesPostInner> postCorporationsCorporationIdAssetsNames(corporationId, xCompatibilityDate, requestBody, acceptLanguage, ifNoneMatch, xTenant)
|
|
468
|
+
> Array<CharactersCharacterIdAssetsNamesPostInner> postCorporationsCorporationIdAssetsNames(corporationId, xCompatibilityDate, requestBody, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
454
469
|
|
|
455
470
|
Get corporation asset names
|
|
456
471
|
|
|
@@ -486,6 +501,8 @@ async function example() {
|
|
|
486
501
|
ifNoneMatch: ifNoneMatch_example,
|
|
487
502
|
// string | The tenant ID for the request. (optional)
|
|
488
503
|
xTenant: ,
|
|
504
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
505
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
489
506
|
} satisfies PostCorporationsCorporationIdAssetsNamesRequest;
|
|
490
507
|
|
|
491
508
|
try {
|
|
@@ -511,6 +528,7 @@ example().catch(console.error);
|
|
|
511
528
|
| **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] |
|
|
512
529
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
513
530
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
531
|
+
| **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`] |
|
|
514
532
|
|
|
515
533
|
### Return type
|
|
516
534
|
|
package/docs/CalendarApi.md
CHANGED
|
@@ -13,7 +13,7 @@ All URIs are relative to *https://esi.evetech.net*
|
|
|
13
13
|
|
|
14
14
|
## getCharactersCharacterIdCalendar
|
|
15
15
|
|
|
16
|
-
> Array<CharactersCharacterIdCalendarGetInner> getCharactersCharacterIdCalendar(characterId, xCompatibilityDate, fromEvent, acceptLanguage, ifNoneMatch, xTenant)
|
|
16
|
+
> Array<CharactersCharacterIdCalendarGetInner> getCharactersCharacterIdCalendar(characterId, xCompatibilityDate, fromEvent, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
17
17
|
|
|
18
18
|
List calendar event summaries
|
|
19
19
|
|
|
@@ -49,6 +49,8 @@ async function example() {
|
|
|
49
49
|
ifNoneMatch: ifNoneMatch_example,
|
|
50
50
|
// string | The tenant ID for the request. (optional)
|
|
51
51
|
xTenant: ,
|
|
52
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
53
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
52
54
|
} satisfies GetCharactersCharacterIdCalendarRequest;
|
|
53
55
|
|
|
54
56
|
try {
|
|
@@ -74,6 +76,7 @@ example().catch(console.error);
|
|
|
74
76
|
| **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] |
|
|
75
77
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
76
78
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
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`] |
|
|
77
80
|
|
|
78
81
|
### Return type
|
|
79
82
|
|
|
@@ -100,7 +103,7 @@ example().catch(console.error);
|
|
|
100
103
|
|
|
101
104
|
## getCharactersCharacterIdCalendarEventId
|
|
102
105
|
|
|
103
|
-
> CharactersCharacterIdCalendarEventIdGet getCharactersCharacterIdCalendarEventId(characterId, eventId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
106
|
+
> CharactersCharacterIdCalendarEventIdGet getCharactersCharacterIdCalendarEventId(characterId, eventId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
104
107
|
|
|
105
108
|
Get an event
|
|
106
109
|
|
|
@@ -136,6 +139,8 @@ async function example() {
|
|
|
136
139
|
ifNoneMatch: ifNoneMatch_example,
|
|
137
140
|
// string | The tenant ID for the request. (optional)
|
|
138
141
|
xTenant: ,
|
|
142
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
143
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
139
144
|
} satisfies GetCharactersCharacterIdCalendarEventIdRequest;
|
|
140
145
|
|
|
141
146
|
try {
|
|
@@ -161,6 +166,7 @@ example().catch(console.error);
|
|
|
161
166
|
| **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] |
|
|
162
167
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
163
168
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
169
|
+
| **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`] |
|
|
164
170
|
|
|
165
171
|
### Return type
|
|
166
172
|
|
|
@@ -187,7 +193,7 @@ example().catch(console.error);
|
|
|
187
193
|
|
|
188
194
|
## getCharactersCharacterIdCalendarEventIdAttendees
|
|
189
195
|
|
|
190
|
-
> Array<CharactersCharacterIdCalendarEventIdAttendeesGetInner> getCharactersCharacterIdCalendarEventIdAttendees(characterId, eventId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
196
|
+
> Array<CharactersCharacterIdCalendarEventIdAttendeesGetInner> getCharactersCharacterIdCalendarEventIdAttendees(characterId, eventId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
191
197
|
|
|
192
198
|
Get attendees
|
|
193
199
|
|
|
@@ -223,6 +229,8 @@ async function example() {
|
|
|
223
229
|
ifNoneMatch: ifNoneMatch_example,
|
|
224
230
|
// string | The tenant ID for the request. (optional)
|
|
225
231
|
xTenant: ,
|
|
232
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
233
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
226
234
|
} satisfies GetCharactersCharacterIdCalendarEventIdAttendeesRequest;
|
|
227
235
|
|
|
228
236
|
try {
|
|
@@ -248,6 +256,7 @@ example().catch(console.error);
|
|
|
248
256
|
| **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] |
|
|
249
257
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
250
258
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
259
|
+
| **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`] |
|
|
251
260
|
|
|
252
261
|
### Return type
|
|
253
262
|
|
|
@@ -274,7 +283,7 @@ example().catch(console.error);
|
|
|
274
283
|
|
|
275
284
|
## putCharactersCharacterIdCalendarEventId
|
|
276
285
|
|
|
277
|
-
> putCharactersCharacterIdCalendarEventId(characterId, eventId, xCompatibilityDate, putCharactersCharacterIdCalendarEventIdRequest, acceptLanguage, ifNoneMatch, xTenant)
|
|
286
|
+
> putCharactersCharacterIdCalendarEventId(characterId, eventId, xCompatibilityDate, putCharactersCharacterIdCalendarEventIdRequest, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
278
287
|
|
|
279
288
|
Respond to an event
|
|
280
289
|
|
|
@@ -312,6 +321,8 @@ async function example() {
|
|
|
312
321
|
ifNoneMatch: ifNoneMatch_example,
|
|
313
322
|
// string | The tenant ID for the request. (optional)
|
|
314
323
|
xTenant: ,
|
|
324
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
325
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
315
326
|
} satisfies PutCharactersCharacterIdCalendarEventIdOperationRequest;
|
|
316
327
|
|
|
317
328
|
try {
|
|
@@ -338,6 +349,7 @@ example().catch(console.error);
|
|
|
338
349
|
| **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] |
|
|
339
350
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
340
351
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
352
|
+
| **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`] |
|
|
341
353
|
|
|
342
354
|
### Return type
|
|
343
355
|
|
package/docs/CharacterApi.md
CHANGED
|
@@ -23,7 +23,7 @@ All URIs are relative to *https://esi.evetech.net*
|
|
|
23
23
|
|
|
24
24
|
## getCharactersCharacterId
|
|
25
25
|
|
|
26
|
-
> CharactersCharacterIdGet getCharactersCharacterId(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
26
|
+
> CharactersCharacterIdGet getCharactersCharacterId(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
27
27
|
|
|
28
28
|
Get character\'s public information
|
|
29
29
|
|
|
@@ -53,6 +53,8 @@ async function example() {
|
|
|
53
53
|
ifNoneMatch: ifNoneMatch_example,
|
|
54
54
|
// string | The tenant ID for the request. (optional)
|
|
55
55
|
xTenant: ,
|
|
56
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
57
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
56
58
|
} satisfies GetCharactersCharacterIdRequest;
|
|
57
59
|
|
|
58
60
|
try {
|
|
@@ -77,6 +79,7 @@ example().catch(console.error);
|
|
|
77
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] |
|
|
78
80
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
79
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`] |
|
|
80
83
|
|
|
81
84
|
### Return type
|
|
82
85
|
|
|
@@ -103,7 +106,7 @@ No authorization required
|
|
|
103
106
|
|
|
104
107
|
## getCharactersCharacterIdAgentsResearch
|
|
105
108
|
|
|
106
|
-
> Array<CharactersCharacterIdAgentsResearchGetInner> getCharactersCharacterIdAgentsResearch(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
109
|
+
> Array<CharactersCharacterIdAgentsResearchGetInner> getCharactersCharacterIdAgentsResearch(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
107
110
|
|
|
108
111
|
Get agents research
|
|
109
112
|
|
|
@@ -137,6 +140,8 @@ async function example() {
|
|
|
137
140
|
ifNoneMatch: ifNoneMatch_example,
|
|
138
141
|
// string | The tenant ID for the request. (optional)
|
|
139
142
|
xTenant: ,
|
|
143
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
144
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
140
145
|
} satisfies GetCharactersCharacterIdAgentsResearchRequest;
|
|
141
146
|
|
|
142
147
|
try {
|
|
@@ -161,6 +166,7 @@ example().catch(console.error);
|
|
|
161
166
|
| **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] |
|
|
162
167
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
163
168
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
169
|
+
| **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`] |
|
|
164
170
|
|
|
165
171
|
### Return type
|
|
166
172
|
|
|
@@ -187,7 +193,7 @@ example().catch(console.error);
|
|
|
187
193
|
|
|
188
194
|
## getCharactersCharacterIdBlueprints
|
|
189
195
|
|
|
190
|
-
> Array<CharactersCharacterIdBlueprintsGetInner> getCharactersCharacterIdBlueprints(characterId, xCompatibilityDate, page, acceptLanguage, ifNoneMatch, xTenant)
|
|
196
|
+
> Array<CharactersCharacterIdBlueprintsGetInner> getCharactersCharacterIdBlueprints(characterId, xCompatibilityDate, page, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
191
197
|
|
|
192
198
|
Get blueprints
|
|
193
199
|
|
|
@@ -223,6 +229,8 @@ async function example() {
|
|
|
223
229
|
ifNoneMatch: ifNoneMatch_example,
|
|
224
230
|
// string | The tenant ID for the request. (optional)
|
|
225
231
|
xTenant: ,
|
|
232
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
233
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
226
234
|
} satisfies GetCharactersCharacterIdBlueprintsRequest;
|
|
227
235
|
|
|
228
236
|
try {
|
|
@@ -248,6 +256,7 @@ example().catch(console.error);
|
|
|
248
256
|
| **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] |
|
|
249
257
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
250
258
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
259
|
+
| **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`] |
|
|
251
260
|
|
|
252
261
|
### Return type
|
|
253
262
|
|
|
@@ -274,7 +283,7 @@ example().catch(console.error);
|
|
|
274
283
|
|
|
275
284
|
## getCharactersCharacterIdCorporationhistory
|
|
276
285
|
|
|
277
|
-
> Array<CharactersCharacterIdCorporationhistoryGetInner> getCharactersCharacterIdCorporationhistory(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
286
|
+
> Array<CharactersCharacterIdCorporationhistoryGetInner> getCharactersCharacterIdCorporationhistory(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
278
287
|
|
|
279
288
|
Get corporation history
|
|
280
289
|
|
|
@@ -304,6 +313,8 @@ async function example() {
|
|
|
304
313
|
ifNoneMatch: ifNoneMatch_example,
|
|
305
314
|
// string | The tenant ID for the request. (optional)
|
|
306
315
|
xTenant: ,
|
|
316
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
317
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
307
318
|
} satisfies GetCharactersCharacterIdCorporationhistoryRequest;
|
|
308
319
|
|
|
309
320
|
try {
|
|
@@ -328,6 +339,7 @@ example().catch(console.error);
|
|
|
328
339
|
| **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] |
|
|
329
340
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
330
341
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
342
|
+
| **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`] |
|
|
331
343
|
|
|
332
344
|
### Return type
|
|
333
345
|
|
|
@@ -354,7 +366,7 @@ No authorization required
|
|
|
354
366
|
|
|
355
367
|
## getCharactersCharacterIdFatigue
|
|
356
368
|
|
|
357
|
-
> CharactersCharacterIdFatigueGet getCharactersCharacterIdFatigue(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
369
|
+
> CharactersCharacterIdFatigueGet getCharactersCharacterIdFatigue(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
358
370
|
|
|
359
371
|
Get jump fatigue
|
|
360
372
|
|
|
@@ -388,6 +400,8 @@ async function example() {
|
|
|
388
400
|
ifNoneMatch: ifNoneMatch_example,
|
|
389
401
|
// string | The tenant ID for the request. (optional)
|
|
390
402
|
xTenant: ,
|
|
403
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
404
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
391
405
|
} satisfies GetCharactersCharacterIdFatigueRequest;
|
|
392
406
|
|
|
393
407
|
try {
|
|
@@ -412,6 +426,7 @@ example().catch(console.error);
|
|
|
412
426
|
| **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] |
|
|
413
427
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
414
428
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
429
|
+
| **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`] |
|
|
415
430
|
|
|
416
431
|
### Return type
|
|
417
432
|
|
|
@@ -438,7 +453,7 @@ example().catch(console.error);
|
|
|
438
453
|
|
|
439
454
|
## getCharactersCharacterIdMedals
|
|
440
455
|
|
|
441
|
-
> Array<CharactersCharacterIdMedalsGetInner> getCharactersCharacterIdMedals(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
456
|
+
> Array<CharactersCharacterIdMedalsGetInner> getCharactersCharacterIdMedals(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
442
457
|
|
|
443
458
|
Get medals
|
|
444
459
|
|
|
@@ -472,6 +487,8 @@ async function example() {
|
|
|
472
487
|
ifNoneMatch: ifNoneMatch_example,
|
|
473
488
|
// string | The tenant ID for the request. (optional)
|
|
474
489
|
xTenant: ,
|
|
490
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
491
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
475
492
|
} satisfies GetCharactersCharacterIdMedalsRequest;
|
|
476
493
|
|
|
477
494
|
try {
|
|
@@ -496,6 +513,7 @@ example().catch(console.error);
|
|
|
496
513
|
| **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] |
|
|
497
514
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
498
515
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
516
|
+
| **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`] |
|
|
499
517
|
|
|
500
518
|
### Return type
|
|
501
519
|
|
|
@@ -522,7 +540,7 @@ example().catch(console.error);
|
|
|
522
540
|
|
|
523
541
|
## getCharactersCharacterIdNotifications
|
|
524
542
|
|
|
525
|
-
> Array<CharactersCharacterIdNotificationsGetInner> getCharactersCharacterIdNotifications(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
543
|
+
> Array<CharactersCharacterIdNotificationsGetInner> getCharactersCharacterIdNotifications(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
526
544
|
|
|
527
545
|
Get character notifications
|
|
528
546
|
|
|
@@ -556,6 +574,8 @@ async function example() {
|
|
|
556
574
|
ifNoneMatch: ifNoneMatch_example,
|
|
557
575
|
// string | The tenant ID for the request. (optional)
|
|
558
576
|
xTenant: ,
|
|
577
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
578
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
559
579
|
} satisfies GetCharactersCharacterIdNotificationsRequest;
|
|
560
580
|
|
|
561
581
|
try {
|
|
@@ -580,6 +600,7 @@ example().catch(console.error);
|
|
|
580
600
|
| **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] |
|
|
581
601
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
582
602
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
603
|
+
| **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`] |
|
|
583
604
|
|
|
584
605
|
### Return type
|
|
585
606
|
|
|
@@ -606,7 +627,7 @@ example().catch(console.error);
|
|
|
606
627
|
|
|
607
628
|
## getCharactersCharacterIdNotificationsContacts
|
|
608
629
|
|
|
609
|
-
> Array<CharactersCharacterIdNotificationsContactsGetInner> getCharactersCharacterIdNotificationsContacts(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
630
|
+
> Array<CharactersCharacterIdNotificationsContactsGetInner> getCharactersCharacterIdNotificationsContacts(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
610
631
|
|
|
611
632
|
Get new contact notifications
|
|
612
633
|
|
|
@@ -640,6 +661,8 @@ async function example() {
|
|
|
640
661
|
ifNoneMatch: ifNoneMatch_example,
|
|
641
662
|
// string | The tenant ID for the request. (optional)
|
|
642
663
|
xTenant: ,
|
|
664
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
665
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
643
666
|
} satisfies GetCharactersCharacterIdNotificationsContactsRequest;
|
|
644
667
|
|
|
645
668
|
try {
|
|
@@ -664,6 +687,7 @@ example().catch(console.error);
|
|
|
664
687
|
| **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] |
|
|
665
688
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
666
689
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
690
|
+
| **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`] |
|
|
667
691
|
|
|
668
692
|
### Return type
|
|
669
693
|
|
|
@@ -690,7 +714,7 @@ example().catch(console.error);
|
|
|
690
714
|
|
|
691
715
|
## getCharactersCharacterIdPortrait
|
|
692
716
|
|
|
693
|
-
> CharactersCharacterIdPortraitGet getCharactersCharacterIdPortrait(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
717
|
+
> CharactersCharacterIdPortraitGet getCharactersCharacterIdPortrait(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
694
718
|
|
|
695
719
|
Get character portraits
|
|
696
720
|
|
|
@@ -720,6 +744,8 @@ async function example() {
|
|
|
720
744
|
ifNoneMatch: ifNoneMatch_example,
|
|
721
745
|
// string | The tenant ID for the request. (optional)
|
|
722
746
|
xTenant: ,
|
|
747
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
748
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
723
749
|
} satisfies GetCharactersCharacterIdPortraitRequest;
|
|
724
750
|
|
|
725
751
|
try {
|
|
@@ -744,6 +770,7 @@ example().catch(console.error);
|
|
|
744
770
|
| **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] |
|
|
745
771
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
746
772
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
773
|
+
| **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`] |
|
|
747
774
|
|
|
748
775
|
### Return type
|
|
749
776
|
|
|
@@ -770,7 +797,7 @@ No authorization required
|
|
|
770
797
|
|
|
771
798
|
## getCharactersCharacterIdRoles
|
|
772
799
|
|
|
773
|
-
> CharactersCharacterIdRolesGet getCharactersCharacterIdRoles(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
800
|
+
> CharactersCharacterIdRolesGet getCharactersCharacterIdRoles(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
774
801
|
|
|
775
802
|
Get character corporation roles
|
|
776
803
|
|
|
@@ -804,6 +831,8 @@ async function example() {
|
|
|
804
831
|
ifNoneMatch: ifNoneMatch_example,
|
|
805
832
|
// string | The tenant ID for the request. (optional)
|
|
806
833
|
xTenant: ,
|
|
834
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
835
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
807
836
|
} satisfies GetCharactersCharacterIdRolesRequest;
|
|
808
837
|
|
|
809
838
|
try {
|
|
@@ -828,6 +857,7 @@ example().catch(console.error);
|
|
|
828
857
|
| **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] |
|
|
829
858
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
830
859
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
860
|
+
| **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`] |
|
|
831
861
|
|
|
832
862
|
### Return type
|
|
833
863
|
|
|
@@ -854,7 +884,7 @@ example().catch(console.error);
|
|
|
854
884
|
|
|
855
885
|
## getCharactersCharacterIdStandings
|
|
856
886
|
|
|
857
|
-
> Array<CharactersCharacterIdStandingsGetInner> getCharactersCharacterIdStandings(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
887
|
+
> Array<CharactersCharacterIdStandingsGetInner> getCharactersCharacterIdStandings(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
858
888
|
|
|
859
889
|
Get standings
|
|
860
890
|
|
|
@@ -888,6 +918,8 @@ async function example() {
|
|
|
888
918
|
ifNoneMatch: ifNoneMatch_example,
|
|
889
919
|
// string | The tenant ID for the request. (optional)
|
|
890
920
|
xTenant: ,
|
|
921
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
922
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
891
923
|
} satisfies GetCharactersCharacterIdStandingsRequest;
|
|
892
924
|
|
|
893
925
|
try {
|
|
@@ -912,6 +944,7 @@ example().catch(console.error);
|
|
|
912
944
|
| **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] |
|
|
913
945
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
914
946
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
947
|
+
| **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`] |
|
|
915
948
|
|
|
916
949
|
### Return type
|
|
917
950
|
|
|
@@ -938,7 +971,7 @@ example().catch(console.error);
|
|
|
938
971
|
|
|
939
972
|
## getCharactersCharacterIdTitles
|
|
940
973
|
|
|
941
|
-
> Array<CharactersCharacterIdTitlesGetInner> getCharactersCharacterIdTitles(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
974
|
+
> Array<CharactersCharacterIdTitlesGetInner> getCharactersCharacterIdTitles(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
942
975
|
|
|
943
976
|
Get character corporation titles
|
|
944
977
|
|
|
@@ -972,6 +1005,8 @@ async function example() {
|
|
|
972
1005
|
ifNoneMatch: ifNoneMatch_example,
|
|
973
1006
|
// string | The tenant ID for the request. (optional)
|
|
974
1007
|
xTenant: ,
|
|
1008
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
1009
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
975
1010
|
} satisfies GetCharactersCharacterIdTitlesRequest;
|
|
976
1011
|
|
|
977
1012
|
try {
|
|
@@ -996,6 +1031,7 @@ example().catch(console.error);
|
|
|
996
1031
|
| **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] |
|
|
997
1032
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
998
1033
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
1034
|
+
| **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`] |
|
|
999
1035
|
|
|
1000
1036
|
### Return type
|
|
1001
1037
|
|
|
@@ -1022,7 +1058,7 @@ example().catch(console.error);
|
|
|
1022
1058
|
|
|
1023
1059
|
## postCharactersAffiliation
|
|
1024
1060
|
|
|
1025
|
-
> Array<CharactersAffiliationPostInner> postCharactersAffiliation(xCompatibilityDate, requestBody, acceptLanguage, ifNoneMatch, xTenant)
|
|
1061
|
+
> Array<CharactersAffiliationPostInner> postCharactersAffiliation(xCompatibilityDate, requestBody, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
1026
1062
|
|
|
1027
1063
|
Character affiliation
|
|
1028
1064
|
|
|
@@ -1052,6 +1088,8 @@ async function example() {
|
|
|
1052
1088
|
ifNoneMatch: ifNoneMatch_example,
|
|
1053
1089
|
// string | The tenant ID for the request. (optional)
|
|
1054
1090
|
xTenant: ,
|
|
1091
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
1092
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
1055
1093
|
} satisfies PostCharactersAffiliationRequest;
|
|
1056
1094
|
|
|
1057
1095
|
try {
|
|
@@ -1076,6 +1114,7 @@ example().catch(console.error);
|
|
|
1076
1114
|
| **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] |
|
|
1077
1115
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
1078
1116
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
1117
|
+
| **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`] |
|
|
1079
1118
|
|
|
1080
1119
|
### Return type
|
|
1081
1120
|
|
|
@@ -1102,7 +1141,7 @@ No authorization required
|
|
|
1102
1141
|
|
|
1103
1142
|
## postCharactersCharacterIdCspa
|
|
1104
1143
|
|
|
1105
|
-
> number postCharactersCharacterIdCspa(characterId, xCompatibilityDate, requestBody, acceptLanguage, ifNoneMatch, xTenant)
|
|
1144
|
+
> number postCharactersCharacterIdCspa(characterId, xCompatibilityDate, requestBody, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
1106
1145
|
|
|
1107
1146
|
Calculate a CSPA charge cost
|
|
1108
1147
|
|
|
@@ -1138,6 +1177,8 @@ async function example() {
|
|
|
1138
1177
|
ifNoneMatch: ifNoneMatch_example,
|
|
1139
1178
|
// string | The tenant ID for the request. (optional)
|
|
1140
1179
|
xTenant: ,
|
|
1180
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
1181
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
1141
1182
|
} satisfies PostCharactersCharacterIdCspaRequest;
|
|
1142
1183
|
|
|
1143
1184
|
try {
|
|
@@ -1163,6 +1204,7 @@ example().catch(console.error);
|
|
|
1163
1204
|
| **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] |
|
|
1164
1205
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
1165
1206
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
1207
|
+
| **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`] |
|
|
1166
1208
|
|
|
1167
1209
|
### Return type
|
|
1168
1210
|
|
package/docs/ClonesApi.md
CHANGED
|
@@ -11,7 +11,7 @@ All URIs are relative to *https://esi.evetech.net*
|
|
|
11
11
|
|
|
12
12
|
## getCharactersCharacterIdClones
|
|
13
13
|
|
|
14
|
-
> CharactersCharacterIdClonesGet getCharactersCharacterIdClones(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
14
|
+
> CharactersCharacterIdClonesGet getCharactersCharacterIdClones(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
15
15
|
|
|
16
16
|
Get clones
|
|
17
17
|
|
|
@@ -45,6 +45,8 @@ async function example() {
|
|
|
45
45
|
ifNoneMatch: ifNoneMatch_example,
|
|
46
46
|
// string | The tenant ID for the request. (optional)
|
|
47
47
|
xTenant: ,
|
|
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,
|
|
48
50
|
} satisfies GetCharactersCharacterIdClonesRequest;
|
|
49
51
|
|
|
50
52
|
try {
|
|
@@ -69,6 +71,7 @@ example().catch(console.error);
|
|
|
69
71
|
| **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] |
|
|
70
72
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
71
73
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
74
|
+
| **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`] |
|
|
72
75
|
|
|
73
76
|
### Return type
|
|
74
77
|
|
|
@@ -95,7 +98,7 @@ example().catch(console.error);
|
|
|
95
98
|
|
|
96
99
|
## getCharactersCharacterIdImplants
|
|
97
100
|
|
|
98
|
-
> Array<number> getCharactersCharacterIdImplants(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
101
|
+
> Array<number> getCharactersCharacterIdImplants(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
99
102
|
|
|
100
103
|
Get active implants
|
|
101
104
|
|
|
@@ -129,6 +132,8 @@ async function example() {
|
|
|
129
132
|
ifNoneMatch: ifNoneMatch_example,
|
|
130
133
|
// string | The tenant ID for the request. (optional)
|
|
131
134
|
xTenant: ,
|
|
135
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
136
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
132
137
|
} satisfies GetCharactersCharacterIdImplantsRequest;
|
|
133
138
|
|
|
134
139
|
try {
|
|
@@ -153,6 +158,7 @@ example().catch(console.error);
|
|
|
153
158
|
| **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] |
|
|
154
159
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
155
160
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
161
|
+
| **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`] |
|
|
156
162
|
|
|
157
163
|
### Return type
|
|
158
164
|
|