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/UserInterfaceApi.md
CHANGED
|
@@ -14,7 +14,7 @@ All URIs are relative to *https://esi.evetech.net*
|
|
|
14
14
|
|
|
15
15
|
## postUiAutopilotWaypoint
|
|
16
16
|
|
|
17
|
-
> postUiAutopilotWaypoint(addToBeginning, clearOtherWaypoints, destinationId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
17
|
+
> postUiAutopilotWaypoint(addToBeginning, clearOtherWaypoints, destinationId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
18
18
|
|
|
19
19
|
Set Autopilot Waypoint
|
|
20
20
|
|
|
@@ -52,6 +52,8 @@ async function example() {
|
|
|
52
52
|
ifNoneMatch: ifNoneMatch_example,
|
|
53
53
|
// string | The tenant ID for the request. (optional)
|
|
54
54
|
xTenant: ,
|
|
55
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
56
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
55
57
|
} satisfies PostUiAutopilotWaypointRequest;
|
|
56
58
|
|
|
57
59
|
try {
|
|
@@ -78,6 +80,7 @@ example().catch(console.error);
|
|
|
78
80
|
| **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] |
|
|
79
81
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
80
82
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
83
|
+
| **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`] |
|
|
81
84
|
|
|
82
85
|
### Return type
|
|
83
86
|
|
|
@@ -104,7 +107,7 @@ example().catch(console.error);
|
|
|
104
107
|
|
|
105
108
|
## postUiOpenwindowContract
|
|
106
109
|
|
|
107
|
-
> postUiOpenwindowContract(contractId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
110
|
+
> postUiOpenwindowContract(contractId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
108
111
|
|
|
109
112
|
Open Contract Window
|
|
110
113
|
|
|
@@ -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 PostUiOpenwindowContractRequest;
|
|
142
147
|
|
|
143
148
|
try {
|
|
@@ -162,6 +167,7 @@ example().catch(console.error);
|
|
|
162
167
|
| **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] |
|
|
163
168
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
164
169
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
170
|
+
| **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`] |
|
|
165
171
|
|
|
166
172
|
### Return type
|
|
167
173
|
|
|
@@ -188,7 +194,7 @@ example().catch(console.error);
|
|
|
188
194
|
|
|
189
195
|
## postUiOpenwindowInformation
|
|
190
196
|
|
|
191
|
-
> postUiOpenwindowInformation(targetId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
197
|
+
> postUiOpenwindowInformation(targetId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
192
198
|
|
|
193
199
|
Open Information Window
|
|
194
200
|
|
|
@@ -222,6 +228,8 @@ async function example() {
|
|
|
222
228
|
ifNoneMatch: ifNoneMatch_example,
|
|
223
229
|
// string | The tenant ID for the request. (optional)
|
|
224
230
|
xTenant: ,
|
|
231
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
232
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
225
233
|
} satisfies PostUiOpenwindowInformationRequest;
|
|
226
234
|
|
|
227
235
|
try {
|
|
@@ -246,6 +254,7 @@ example().catch(console.error);
|
|
|
246
254
|
| **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] |
|
|
247
255
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
248
256
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
257
|
+
| **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`] |
|
|
249
258
|
|
|
250
259
|
### Return type
|
|
251
260
|
|
|
@@ -272,7 +281,7 @@ example().catch(console.error);
|
|
|
272
281
|
|
|
273
282
|
## postUiOpenwindowMarketdetails
|
|
274
283
|
|
|
275
|
-
> postUiOpenwindowMarketdetails(typeId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
284
|
+
> postUiOpenwindowMarketdetails(typeId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
276
285
|
|
|
277
286
|
Open Market Details
|
|
278
287
|
|
|
@@ -306,6 +315,8 @@ async function example() {
|
|
|
306
315
|
ifNoneMatch: ifNoneMatch_example,
|
|
307
316
|
// string | The tenant ID for the request. (optional)
|
|
308
317
|
xTenant: ,
|
|
318
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
319
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
309
320
|
} satisfies PostUiOpenwindowMarketdetailsRequest;
|
|
310
321
|
|
|
311
322
|
try {
|
|
@@ -330,6 +341,7 @@ example().catch(console.error);
|
|
|
330
341
|
| **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] |
|
|
331
342
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
332
343
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
344
|
+
| **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`] |
|
|
333
345
|
|
|
334
346
|
### Return type
|
|
335
347
|
|
|
@@ -356,7 +368,7 @@ example().catch(console.error);
|
|
|
356
368
|
|
|
357
369
|
## postUiOpenwindowNewmail
|
|
358
370
|
|
|
359
|
-
> postUiOpenwindowNewmail(xCompatibilityDate, postUiOpenwindowNewmailRequest, acceptLanguage, ifNoneMatch, xTenant)
|
|
371
|
+
> postUiOpenwindowNewmail(xCompatibilityDate, postUiOpenwindowNewmailRequest, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
360
372
|
|
|
361
373
|
Open New Mail Window
|
|
362
374
|
|
|
@@ -390,6 +402,8 @@ async function example() {
|
|
|
390
402
|
ifNoneMatch: ifNoneMatch_example,
|
|
391
403
|
// string | The tenant ID for the request. (optional)
|
|
392
404
|
xTenant: ,
|
|
405
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
406
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
393
407
|
} satisfies PostUiOpenwindowNewmailOperationRequest;
|
|
394
408
|
|
|
395
409
|
try {
|
|
@@ -414,6 +428,7 @@ example().catch(console.error);
|
|
|
414
428
|
| **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] |
|
|
415
429
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
416
430
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
431
|
+
| **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`] |
|
|
417
432
|
|
|
418
433
|
### Return type
|
|
419
434
|
|
package/docs/WalletApi.md
CHANGED
|
@@ -15,7 +15,7 @@ All URIs are relative to *https://esi.evetech.net*
|
|
|
15
15
|
|
|
16
16
|
## getCharactersCharacterIdWallet
|
|
17
17
|
|
|
18
|
-
> number getCharactersCharacterIdWallet(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
18
|
+
> number getCharactersCharacterIdWallet(characterId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
19
19
|
|
|
20
20
|
Get a character\'s wallet balance
|
|
21
21
|
|
|
@@ -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 GetCharactersCharacterIdWalletRequest;
|
|
53
55
|
|
|
54
56
|
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
|
## getCharactersCharacterIdWalletJournal
|
|
101
104
|
|
|
102
|
-
> Array<CharactersCharacterIdWalletJournalGetInner> getCharactersCharacterIdWalletJournal(characterId, xCompatibilityDate, page, acceptLanguage, ifNoneMatch, xTenant)
|
|
105
|
+
> Array<CharactersCharacterIdWalletJournalGetInner> getCharactersCharacterIdWalletJournal(characterId, xCompatibilityDate, page, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
103
106
|
|
|
104
107
|
Get character wallet journal
|
|
105
108
|
|
|
@@ -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 GetCharactersCharacterIdWalletJournalRequest;
|
|
139
144
|
|
|
140
145
|
try {
|
|
@@ -160,6 +165,7 @@ example().catch(console.error);
|
|
|
160
165
|
| **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] |
|
|
161
166
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
162
167
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
168
|
+
| **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`] |
|
|
163
169
|
|
|
164
170
|
### Return type
|
|
165
171
|
|
|
@@ -186,7 +192,7 @@ example().catch(console.error);
|
|
|
186
192
|
|
|
187
193
|
## getCharactersCharacterIdWalletTransactions
|
|
188
194
|
|
|
189
|
-
> Array<CharactersCharacterIdWalletTransactionsGetInner> getCharactersCharacterIdWalletTransactions(characterId, xCompatibilityDate, fromId, acceptLanguage, ifNoneMatch, xTenant)
|
|
195
|
+
> Array<CharactersCharacterIdWalletTransactionsGetInner> getCharactersCharacterIdWalletTransactions(characterId, xCompatibilityDate, fromId, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
190
196
|
|
|
191
197
|
Get wallet transactions
|
|
192
198
|
|
|
@@ -222,6 +228,8 @@ async function example() {
|
|
|
222
228
|
ifNoneMatch: ifNoneMatch_example,
|
|
223
229
|
// string | The tenant ID for the request. (optional)
|
|
224
230
|
xTenant: ,
|
|
231
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
232
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
225
233
|
} satisfies GetCharactersCharacterIdWalletTransactionsRequest;
|
|
226
234
|
|
|
227
235
|
try {
|
|
@@ -247,6 +255,7 @@ example().catch(console.error);
|
|
|
247
255
|
| **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] |
|
|
248
256
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
249
257
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
258
|
+
| **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`] |
|
|
250
259
|
|
|
251
260
|
### Return type
|
|
252
261
|
|
|
@@ -273,7 +282,7 @@ example().catch(console.error);
|
|
|
273
282
|
|
|
274
283
|
## getCorporationsCorporationIdWallets
|
|
275
284
|
|
|
276
|
-
> Array<CorporationsCorporationIdWalletsGetInner> getCorporationsCorporationIdWallets(corporationId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
285
|
+
> Array<CorporationsCorporationIdWalletsGetInner> getCorporationsCorporationIdWallets(corporationId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
277
286
|
|
|
278
287
|
Returns a corporation\'s wallet balance
|
|
279
288
|
|
|
@@ -307,6 +316,8 @@ async function example() {
|
|
|
307
316
|
ifNoneMatch: ifNoneMatch_example,
|
|
308
317
|
// string | The tenant ID for the request. (optional)
|
|
309
318
|
xTenant: ,
|
|
319
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
320
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
310
321
|
} satisfies GetCorporationsCorporationIdWalletsRequest;
|
|
311
322
|
|
|
312
323
|
try {
|
|
@@ -331,6 +342,7 @@ example().catch(console.error);
|
|
|
331
342
|
| **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] |
|
|
332
343
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
333
344
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
345
|
+
| **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`] |
|
|
334
346
|
|
|
335
347
|
### Return type
|
|
336
348
|
|
|
@@ -357,7 +369,7 @@ example().catch(console.error);
|
|
|
357
369
|
|
|
358
370
|
## getCorporationsCorporationIdWalletsDivisionJournal
|
|
359
371
|
|
|
360
|
-
> Array<CorporationsCorporationIdWalletsDivisionJournalGetInner> getCorporationsCorporationIdWalletsDivisionJournal(corporationId, division, xCompatibilityDate, page, acceptLanguage, ifNoneMatch, xTenant)
|
|
372
|
+
> Array<CorporationsCorporationIdWalletsDivisionJournalGetInner> getCorporationsCorporationIdWalletsDivisionJournal(corporationId, division, xCompatibilityDate, page, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
361
373
|
|
|
362
374
|
Get corporation wallet journal
|
|
363
375
|
|
|
@@ -395,6 +407,8 @@ async function example() {
|
|
|
395
407
|
ifNoneMatch: ifNoneMatch_example,
|
|
396
408
|
// string | The tenant ID for the request. (optional)
|
|
397
409
|
xTenant: ,
|
|
410
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
411
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
398
412
|
} satisfies GetCorporationsCorporationIdWalletsDivisionJournalRequest;
|
|
399
413
|
|
|
400
414
|
try {
|
|
@@ -421,6 +435,7 @@ example().catch(console.error);
|
|
|
421
435
|
| **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] |
|
|
422
436
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
423
437
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
438
|
+
| **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`] |
|
|
424
439
|
|
|
425
440
|
### Return type
|
|
426
441
|
|
|
@@ -447,7 +462,7 @@ example().catch(console.error);
|
|
|
447
462
|
|
|
448
463
|
## getCorporationsCorporationIdWalletsDivisionTransactions
|
|
449
464
|
|
|
450
|
-
> Array<CorporationsCorporationIdWalletsDivisionTransactionsGetInner> getCorporationsCorporationIdWalletsDivisionTransactions(corporationId, division, xCompatibilityDate, fromId, acceptLanguage, ifNoneMatch, xTenant)
|
|
465
|
+
> Array<CorporationsCorporationIdWalletsDivisionTransactionsGetInner> getCorporationsCorporationIdWalletsDivisionTransactions(corporationId, division, xCompatibilityDate, fromId, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
451
466
|
|
|
452
467
|
Get corporation wallet transactions
|
|
453
468
|
|
|
@@ -485,6 +500,8 @@ async function example() {
|
|
|
485
500
|
ifNoneMatch: ifNoneMatch_example,
|
|
486
501
|
// string | The tenant ID for the request. (optional)
|
|
487
502
|
xTenant: ,
|
|
503
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
504
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
488
505
|
} satisfies GetCorporationsCorporationIdWalletsDivisionTransactionsRequest;
|
|
489
506
|
|
|
490
507
|
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/WarsApi.md
CHANGED
|
@@ -12,7 +12,7 @@ All URIs are relative to *https://esi.evetech.net*
|
|
|
12
12
|
|
|
13
13
|
## getWars
|
|
14
14
|
|
|
15
|
-
> Array<number> getWars(xCompatibilityDate, maxWarId, acceptLanguage, ifNoneMatch, xTenant)
|
|
15
|
+
> Array<number> getWars(xCompatibilityDate, maxWarId, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
16
16
|
|
|
17
17
|
List wars
|
|
18
18
|
|
|
@@ -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 GetWarsRequest;
|
|
46
48
|
|
|
47
49
|
try {
|
|
@@ -66,6 +68,7 @@ example().catch(console.error);
|
|
|
66
68
|
| **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] |
|
|
67
69
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
68
70
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
71
|
+
| **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`] |
|
|
69
72
|
|
|
70
73
|
### Return type
|
|
71
74
|
|
|
@@ -92,7 +95,7 @@ No authorization required
|
|
|
92
95
|
|
|
93
96
|
## getWarsWarId
|
|
94
97
|
|
|
95
|
-
> WarsWarIdGet getWarsWarId(warId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant)
|
|
98
|
+
> WarsWarIdGet getWarsWarId(warId, xCompatibilityDate, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
96
99
|
|
|
97
100
|
Get war information
|
|
98
101
|
|
|
@@ -122,6 +125,8 @@ async function example() {
|
|
|
122
125
|
ifNoneMatch: ifNoneMatch_example,
|
|
123
126
|
// string | The tenant ID for the request. (optional)
|
|
124
127
|
xTenant: ,
|
|
128
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
129
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
125
130
|
} satisfies GetWarsWarIdRequest;
|
|
126
131
|
|
|
127
132
|
try {
|
|
@@ -146,6 +151,7 @@ example().catch(console.error);
|
|
|
146
151
|
| **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] |
|
|
147
152
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
148
153
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
154
|
+
| **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`] |
|
|
149
155
|
|
|
150
156
|
### Return type
|
|
151
157
|
|
|
@@ -172,7 +178,7 @@ No authorization required
|
|
|
172
178
|
|
|
173
179
|
## getWarsWarIdKillmails
|
|
174
180
|
|
|
175
|
-
> Array<CharactersCharacterIdKillmailsRecentGetInner> getWarsWarIdKillmails(warId, xCompatibilityDate, page, acceptLanguage, ifNoneMatch, xTenant)
|
|
181
|
+
> Array<CharactersCharacterIdKillmailsRecentGetInner> getWarsWarIdKillmails(warId, xCompatibilityDate, page, acceptLanguage, ifNoneMatch, xTenant, ifModifiedSince)
|
|
176
182
|
|
|
177
183
|
List kills for a war
|
|
178
184
|
|
|
@@ -204,6 +210,8 @@ async function example() {
|
|
|
204
210
|
ifNoneMatch: ifNoneMatch_example,
|
|
205
211
|
// string | The tenant ID for the request. (optional)
|
|
206
212
|
xTenant: ,
|
|
213
|
+
// string | The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date. (optional)
|
|
214
|
+
ifModifiedSince: ifModifiedSince_example,
|
|
207
215
|
} satisfies GetWarsWarIdKillmailsRequest;
|
|
208
216
|
|
|
209
217
|
try {
|
|
@@ -229,6 +237,7 @@ example().catch(console.error);
|
|
|
229
237
|
| **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] |
|
|
230
238
|
| **ifNoneMatch** | `string` | The ETag of the previous request. A 304 will be returned if this matches the current ETag. | [Optional] [Defaults to `undefined`] |
|
|
231
239
|
| **xTenant** | `string` | The tenant ID for the request. | [Optional] [Defaults to `'tranquility'`] |
|
|
240
|
+
| **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`] |
|
|
232
241
|
|
|
233
242
|
### Return type
|
|
234
243
|
|
|
Binary file
|
package/package.json
CHANGED
package/src/apis/AllianceApi.ts
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
import * as runtime from '../runtime';
|
|
17
|
+
import { ESI_COMPATIBILITY_DATE } from '../constants';
|
|
17
18
|
|
|
18
19
|
import type {
|
|
19
20
|
AlliancesAllianceIdGet,
|
|
@@ -25,6 +26,7 @@ export interface GetAlliancesRequest {
|
|
|
25
26
|
acceptLanguage?: GetAlliancesAcceptLanguageEnum;
|
|
26
27
|
ifNoneMatch?: string;
|
|
27
28
|
xTenant?: string;
|
|
29
|
+
ifModifiedSince?: string;
|
|
28
30
|
}
|
|
29
31
|
|
|
30
32
|
export interface GetAlliancesAllianceIdRequest {
|
|
@@ -33,6 +35,7 @@ export interface GetAlliancesAllianceIdRequest {
|
|
|
33
35
|
acceptLanguage?: GetAlliancesAllianceIdAcceptLanguageEnum;
|
|
34
36
|
ifNoneMatch?: string;
|
|
35
37
|
xTenant?: string;
|
|
38
|
+
ifModifiedSince?: string;
|
|
36
39
|
}
|
|
37
40
|
|
|
38
41
|
export interface GetAlliancesAllianceIdCorporationsRequest {
|
|
@@ -41,6 +44,7 @@ export interface GetAlliancesAllianceIdCorporationsRequest {
|
|
|
41
44
|
acceptLanguage?: GetAlliancesAllianceIdCorporationsAcceptLanguageEnum;
|
|
42
45
|
ifNoneMatch?: string;
|
|
43
46
|
xTenant?: string;
|
|
47
|
+
ifModifiedSince?: string;
|
|
44
48
|
}
|
|
45
49
|
|
|
46
50
|
export interface GetAlliancesAllianceIdIconsRequest {
|
|
@@ -49,6 +53,7 @@ export interface GetAlliancesAllianceIdIconsRequest {
|
|
|
49
53
|
acceptLanguage?: GetAlliancesAllianceIdIconsAcceptLanguageEnum;
|
|
50
54
|
ifNoneMatch?: string;
|
|
51
55
|
xTenant?: string;
|
|
56
|
+
ifModifiedSince?: string;
|
|
52
57
|
}
|
|
53
58
|
|
|
54
59
|
/**
|
|
@@ -65,6 +70,7 @@ export interface AllianceApiInterface {
|
|
|
65
70
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
66
71
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
67
72
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
73
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
68
74
|
* @param {*} [options] Override http request option.
|
|
69
75
|
* @throws {RequiredError}
|
|
70
76
|
* @memberof AllianceApiInterface
|
|
@@ -85,6 +91,7 @@ export interface AllianceApiInterface {
|
|
|
85
91
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
86
92
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
87
93
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
94
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
88
95
|
* @param {*} [options] Override http request option.
|
|
89
96
|
* @throws {RequiredError}
|
|
90
97
|
* @memberof AllianceApiInterface
|
|
@@ -105,6 +112,7 @@ export interface AllianceApiInterface {
|
|
|
105
112
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
106
113
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
107
114
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
115
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
108
116
|
* @param {*} [options] Override http request option.
|
|
109
117
|
* @throws {RequiredError}
|
|
110
118
|
* @memberof AllianceApiInterface
|
|
@@ -125,6 +133,7 @@ export interface AllianceApiInterface {
|
|
|
125
133
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
126
134
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
127
135
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
136
|
+
* @param {string} [ifModifiedSince] The date the resource was last modified. A 304 will be returned if the resource has not been modified since this date.
|
|
128
137
|
* @param {*} [options] Override http request option.
|
|
129
138
|
* @throws {RequiredError}
|
|
130
139
|
* @memberof AllianceApiInterface
|
|
@@ -176,11 +185,20 @@ export class AllianceApi extends runtime.BaseAPI implements AllianceApiInterface
|
|
|
176
185
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
177
186
|
}
|
|
178
187
|
|
|
188
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
189
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
190
|
+
}
|
|
191
|
+
|
|
179
192
|
/*
|
|
180
193
|
*/
|
|
181
194
|
|
|
182
195
|
let urlPath = `/alliances`;
|
|
183
196
|
|
|
197
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
198
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
199
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
200
|
+
}
|
|
201
|
+
|
|
184
202
|
const facade = this.configuration?.apiFacade;
|
|
185
203
|
if (!facade) {
|
|
186
204
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -244,12 +262,21 @@ export class AllianceApi extends runtime.BaseAPI implements AllianceApiInterface
|
|
|
244
262
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
245
263
|
}
|
|
246
264
|
|
|
265
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
266
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
267
|
+
}
|
|
268
|
+
|
|
247
269
|
/*
|
|
248
270
|
*/
|
|
249
271
|
|
|
250
272
|
let urlPath = `/alliances/{alliance_id}`;
|
|
251
273
|
urlPath = urlPath.replace(`{${"alliance_id"}}`, encodeURIComponent(String(requestParameters['allianceId'])));
|
|
252
274
|
|
|
275
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
276
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
277
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
278
|
+
}
|
|
279
|
+
|
|
253
280
|
const facade = this.configuration?.apiFacade;
|
|
254
281
|
if (!facade) {
|
|
255
282
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -313,12 +340,21 @@ export class AllianceApi extends runtime.BaseAPI implements AllianceApiInterface
|
|
|
313
340
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
314
341
|
}
|
|
315
342
|
|
|
343
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
344
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
345
|
+
}
|
|
346
|
+
|
|
316
347
|
/*
|
|
317
348
|
*/
|
|
318
349
|
|
|
319
350
|
let urlPath = `/alliances/{alliance_id}/corporations`;
|
|
320
351
|
urlPath = urlPath.replace(`{${"alliance_id"}}`, encodeURIComponent(String(requestParameters['allianceId'])));
|
|
321
352
|
|
|
353
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
354
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
355
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
356
|
+
}
|
|
357
|
+
|
|
322
358
|
const facade = this.configuration?.apiFacade;
|
|
323
359
|
if (!facade) {
|
|
324
360
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -382,12 +418,21 @@ export class AllianceApi extends runtime.BaseAPI implements AllianceApiInterface
|
|
|
382
418
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
383
419
|
}
|
|
384
420
|
|
|
421
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
422
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
423
|
+
}
|
|
424
|
+
|
|
385
425
|
/*
|
|
386
426
|
*/
|
|
387
427
|
|
|
388
428
|
let urlPath = `/alliances/{alliance_id}/icons`;
|
|
389
429
|
urlPath = urlPath.replace(`{${"alliance_id"}}`, encodeURIComponent(String(requestParameters['allianceId'])));
|
|
390
430
|
|
|
431
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
432
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
433
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
434
|
+
}
|
|
435
|
+
|
|
391
436
|
const facade = this.configuration?.apiFacade;
|
|
392
437
|
if (!facade) {
|
|
393
438
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|