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
|
@@ -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
|
CharactersCharacterIdStandingsGetInner,
|
|
@@ -43,6 +44,7 @@ export interface GetCorporationsCorporationIdRequest {
|
|
|
43
44
|
acceptLanguage?: GetCorporationsCorporationIdAcceptLanguageEnum;
|
|
44
45
|
ifNoneMatch?: string;
|
|
45
46
|
xTenant?: string;
|
|
47
|
+
ifModifiedSince?: string;
|
|
46
48
|
}
|
|
47
49
|
|
|
48
50
|
export interface GetCorporationsCorporationIdAlliancehistoryRequest {
|
|
@@ -51,6 +53,7 @@ export interface GetCorporationsCorporationIdAlliancehistoryRequest {
|
|
|
51
53
|
acceptLanguage?: GetCorporationsCorporationIdAlliancehistoryAcceptLanguageEnum;
|
|
52
54
|
ifNoneMatch?: string;
|
|
53
55
|
xTenant?: string;
|
|
56
|
+
ifModifiedSince?: string;
|
|
54
57
|
}
|
|
55
58
|
|
|
56
59
|
export interface GetCorporationsCorporationIdBlueprintsRequest {
|
|
@@ -60,6 +63,7 @@ export interface GetCorporationsCorporationIdBlueprintsRequest {
|
|
|
60
63
|
acceptLanguage?: GetCorporationsCorporationIdBlueprintsAcceptLanguageEnum;
|
|
61
64
|
ifNoneMatch?: string;
|
|
62
65
|
xTenant?: string;
|
|
66
|
+
ifModifiedSince?: string;
|
|
63
67
|
}
|
|
64
68
|
|
|
65
69
|
export interface GetCorporationsCorporationIdContainersLogsRequest {
|
|
@@ -69,6 +73,7 @@ export interface GetCorporationsCorporationIdContainersLogsRequest {
|
|
|
69
73
|
acceptLanguage?: GetCorporationsCorporationIdContainersLogsAcceptLanguageEnum;
|
|
70
74
|
ifNoneMatch?: string;
|
|
71
75
|
xTenant?: string;
|
|
76
|
+
ifModifiedSince?: string;
|
|
72
77
|
}
|
|
73
78
|
|
|
74
79
|
export interface GetCorporationsCorporationIdDivisionsRequest {
|
|
@@ -77,6 +82,7 @@ export interface GetCorporationsCorporationIdDivisionsRequest {
|
|
|
77
82
|
acceptLanguage?: GetCorporationsCorporationIdDivisionsAcceptLanguageEnum;
|
|
78
83
|
ifNoneMatch?: string;
|
|
79
84
|
xTenant?: string;
|
|
85
|
+
ifModifiedSince?: string;
|
|
80
86
|
}
|
|
81
87
|
|
|
82
88
|
export interface GetCorporationsCorporationIdFacilitiesRequest {
|
|
@@ -85,6 +91,7 @@ export interface GetCorporationsCorporationIdFacilitiesRequest {
|
|
|
85
91
|
acceptLanguage?: GetCorporationsCorporationIdFacilitiesAcceptLanguageEnum;
|
|
86
92
|
ifNoneMatch?: string;
|
|
87
93
|
xTenant?: string;
|
|
94
|
+
ifModifiedSince?: string;
|
|
88
95
|
}
|
|
89
96
|
|
|
90
97
|
export interface GetCorporationsCorporationIdIconsRequest {
|
|
@@ -93,6 +100,7 @@ export interface GetCorporationsCorporationIdIconsRequest {
|
|
|
93
100
|
acceptLanguage?: GetCorporationsCorporationIdIconsAcceptLanguageEnum;
|
|
94
101
|
ifNoneMatch?: string;
|
|
95
102
|
xTenant?: string;
|
|
103
|
+
ifModifiedSince?: string;
|
|
96
104
|
}
|
|
97
105
|
|
|
98
106
|
export interface GetCorporationsCorporationIdMedalsRequest {
|
|
@@ -102,6 +110,7 @@ export interface GetCorporationsCorporationIdMedalsRequest {
|
|
|
102
110
|
acceptLanguage?: GetCorporationsCorporationIdMedalsAcceptLanguageEnum;
|
|
103
111
|
ifNoneMatch?: string;
|
|
104
112
|
xTenant?: string;
|
|
113
|
+
ifModifiedSince?: string;
|
|
105
114
|
}
|
|
106
115
|
|
|
107
116
|
export interface GetCorporationsCorporationIdMedalsIssuedRequest {
|
|
@@ -111,6 +120,7 @@ export interface GetCorporationsCorporationIdMedalsIssuedRequest {
|
|
|
111
120
|
acceptLanguage?: GetCorporationsCorporationIdMedalsIssuedAcceptLanguageEnum;
|
|
112
121
|
ifNoneMatch?: string;
|
|
113
122
|
xTenant?: string;
|
|
123
|
+
ifModifiedSince?: string;
|
|
114
124
|
}
|
|
115
125
|
|
|
116
126
|
export interface GetCorporationsCorporationIdMembersRequest {
|
|
@@ -119,6 +129,7 @@ export interface GetCorporationsCorporationIdMembersRequest {
|
|
|
119
129
|
acceptLanguage?: GetCorporationsCorporationIdMembersAcceptLanguageEnum;
|
|
120
130
|
ifNoneMatch?: string;
|
|
121
131
|
xTenant?: string;
|
|
132
|
+
ifModifiedSince?: string;
|
|
122
133
|
}
|
|
123
134
|
|
|
124
135
|
export interface GetCorporationsCorporationIdMembersLimitRequest {
|
|
@@ -127,6 +138,7 @@ export interface GetCorporationsCorporationIdMembersLimitRequest {
|
|
|
127
138
|
acceptLanguage?: GetCorporationsCorporationIdMembersLimitAcceptLanguageEnum;
|
|
128
139
|
ifNoneMatch?: string;
|
|
129
140
|
xTenant?: string;
|
|
141
|
+
ifModifiedSince?: string;
|
|
130
142
|
}
|
|
131
143
|
|
|
132
144
|
export interface GetCorporationsCorporationIdMembersTitlesRequest {
|
|
@@ -135,6 +147,7 @@ export interface GetCorporationsCorporationIdMembersTitlesRequest {
|
|
|
135
147
|
acceptLanguage?: GetCorporationsCorporationIdMembersTitlesAcceptLanguageEnum;
|
|
136
148
|
ifNoneMatch?: string;
|
|
137
149
|
xTenant?: string;
|
|
150
|
+
ifModifiedSince?: string;
|
|
138
151
|
}
|
|
139
152
|
|
|
140
153
|
export interface GetCorporationsCorporationIdMembertrackingRequest {
|
|
@@ -143,6 +156,7 @@ export interface GetCorporationsCorporationIdMembertrackingRequest {
|
|
|
143
156
|
acceptLanguage?: GetCorporationsCorporationIdMembertrackingAcceptLanguageEnum;
|
|
144
157
|
ifNoneMatch?: string;
|
|
145
158
|
xTenant?: string;
|
|
159
|
+
ifModifiedSince?: string;
|
|
146
160
|
}
|
|
147
161
|
|
|
148
162
|
export interface GetCorporationsCorporationIdRolesRequest {
|
|
@@ -151,6 +165,7 @@ export interface GetCorporationsCorporationIdRolesRequest {
|
|
|
151
165
|
acceptLanguage?: GetCorporationsCorporationIdRolesAcceptLanguageEnum;
|
|
152
166
|
ifNoneMatch?: string;
|
|
153
167
|
xTenant?: string;
|
|
168
|
+
ifModifiedSince?: string;
|
|
154
169
|
}
|
|
155
170
|
|
|
156
171
|
export interface GetCorporationsCorporationIdRolesHistoryRequest {
|
|
@@ -160,6 +175,7 @@ export interface GetCorporationsCorporationIdRolesHistoryRequest {
|
|
|
160
175
|
acceptLanguage?: GetCorporationsCorporationIdRolesHistoryAcceptLanguageEnum;
|
|
161
176
|
ifNoneMatch?: string;
|
|
162
177
|
xTenant?: string;
|
|
178
|
+
ifModifiedSince?: string;
|
|
163
179
|
}
|
|
164
180
|
|
|
165
181
|
export interface GetCorporationsCorporationIdShareholdersRequest {
|
|
@@ -169,6 +185,7 @@ export interface GetCorporationsCorporationIdShareholdersRequest {
|
|
|
169
185
|
acceptLanguage?: GetCorporationsCorporationIdShareholdersAcceptLanguageEnum;
|
|
170
186
|
ifNoneMatch?: string;
|
|
171
187
|
xTenant?: string;
|
|
188
|
+
ifModifiedSince?: string;
|
|
172
189
|
}
|
|
173
190
|
|
|
174
191
|
export interface GetCorporationsCorporationIdStandingsRequest {
|
|
@@ -178,6 +195,7 @@ export interface GetCorporationsCorporationIdStandingsRequest {
|
|
|
178
195
|
acceptLanguage?: GetCorporationsCorporationIdStandingsAcceptLanguageEnum;
|
|
179
196
|
ifNoneMatch?: string;
|
|
180
197
|
xTenant?: string;
|
|
198
|
+
ifModifiedSince?: string;
|
|
181
199
|
}
|
|
182
200
|
|
|
183
201
|
export interface GetCorporationsCorporationIdStarbasesRequest {
|
|
@@ -187,6 +205,7 @@ export interface GetCorporationsCorporationIdStarbasesRequest {
|
|
|
187
205
|
acceptLanguage?: GetCorporationsCorporationIdStarbasesAcceptLanguageEnum;
|
|
188
206
|
ifNoneMatch?: string;
|
|
189
207
|
xTenant?: string;
|
|
208
|
+
ifModifiedSince?: string;
|
|
190
209
|
}
|
|
191
210
|
|
|
192
211
|
export interface GetCorporationsCorporationIdStarbasesStarbaseIdRequest {
|
|
@@ -197,6 +216,7 @@ export interface GetCorporationsCorporationIdStarbasesStarbaseIdRequest {
|
|
|
197
216
|
acceptLanguage?: GetCorporationsCorporationIdStarbasesStarbaseIdAcceptLanguageEnum;
|
|
198
217
|
ifNoneMatch?: string;
|
|
199
218
|
xTenant?: string;
|
|
219
|
+
ifModifiedSince?: string;
|
|
200
220
|
}
|
|
201
221
|
|
|
202
222
|
export interface GetCorporationsCorporationIdStructuresRequest {
|
|
@@ -206,6 +226,7 @@ export interface GetCorporationsCorporationIdStructuresRequest {
|
|
|
206
226
|
acceptLanguage?: GetCorporationsCorporationIdStructuresAcceptLanguageEnum;
|
|
207
227
|
ifNoneMatch?: string;
|
|
208
228
|
xTenant?: string;
|
|
229
|
+
ifModifiedSince?: string;
|
|
209
230
|
}
|
|
210
231
|
|
|
211
232
|
export interface GetCorporationsCorporationIdTitlesRequest {
|
|
@@ -214,6 +235,7 @@ export interface GetCorporationsCorporationIdTitlesRequest {
|
|
|
214
235
|
acceptLanguage?: GetCorporationsCorporationIdTitlesAcceptLanguageEnum;
|
|
215
236
|
ifNoneMatch?: string;
|
|
216
237
|
xTenant?: string;
|
|
238
|
+
ifModifiedSince?: string;
|
|
217
239
|
}
|
|
218
240
|
|
|
219
241
|
export interface GetCorporationsNpccorpsRequest {
|
|
@@ -221,6 +243,7 @@ export interface GetCorporationsNpccorpsRequest {
|
|
|
221
243
|
acceptLanguage?: GetCorporationsNpccorpsAcceptLanguageEnum;
|
|
222
244
|
ifNoneMatch?: string;
|
|
223
245
|
xTenant?: string;
|
|
246
|
+
ifModifiedSince?: string;
|
|
224
247
|
}
|
|
225
248
|
|
|
226
249
|
/**
|
|
@@ -238,6 +261,7 @@ export interface CorporationApiInterface {
|
|
|
238
261
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
239
262
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
240
263
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
264
|
+
* @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.
|
|
241
265
|
* @param {*} [options] Override http request option.
|
|
242
266
|
* @throws {RequiredError}
|
|
243
267
|
* @memberof CorporationApiInterface
|
|
@@ -258,6 +282,7 @@ export interface CorporationApiInterface {
|
|
|
258
282
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
259
283
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
260
284
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
285
|
+
* @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.
|
|
261
286
|
* @param {*} [options] Override http request option.
|
|
262
287
|
* @throws {RequiredError}
|
|
263
288
|
* @memberof CorporationApiInterface
|
|
@@ -279,6 +304,7 @@ export interface CorporationApiInterface {
|
|
|
279
304
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
280
305
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
281
306
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
307
|
+
* @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.
|
|
282
308
|
* @param {*} [options] Override http request option.
|
|
283
309
|
* @throws {RequiredError}
|
|
284
310
|
* @memberof CorporationApiInterface
|
|
@@ -300,6 +326,7 @@ export interface CorporationApiInterface {
|
|
|
300
326
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
301
327
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
302
328
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
329
|
+
* @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.
|
|
303
330
|
* @param {*} [options] Override http request option.
|
|
304
331
|
* @throws {RequiredError}
|
|
305
332
|
* @memberof CorporationApiInterface
|
|
@@ -320,6 +347,7 @@ export interface CorporationApiInterface {
|
|
|
320
347
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
321
348
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
322
349
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
350
|
+
* @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.
|
|
323
351
|
* @param {*} [options] Override http request option.
|
|
324
352
|
* @throws {RequiredError}
|
|
325
353
|
* @memberof CorporationApiInterface
|
|
@@ -340,6 +368,7 @@ export interface CorporationApiInterface {
|
|
|
340
368
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
341
369
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
342
370
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
371
|
+
* @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.
|
|
343
372
|
* @param {*} [options] Override http request option.
|
|
344
373
|
* @throws {RequiredError}
|
|
345
374
|
* @memberof CorporationApiInterface
|
|
@@ -360,6 +389,7 @@ export interface CorporationApiInterface {
|
|
|
360
389
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
361
390
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
362
391
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
392
|
+
* @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.
|
|
363
393
|
* @param {*} [options] Override http request option.
|
|
364
394
|
* @throws {RequiredError}
|
|
365
395
|
* @memberof CorporationApiInterface
|
|
@@ -381,6 +411,7 @@ export interface CorporationApiInterface {
|
|
|
381
411
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
382
412
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
383
413
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
414
|
+
* @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.
|
|
384
415
|
* @param {*} [options] Override http request option.
|
|
385
416
|
* @throws {RequiredError}
|
|
386
417
|
* @memberof CorporationApiInterface
|
|
@@ -402,6 +433,7 @@ export interface CorporationApiInterface {
|
|
|
402
433
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
403
434
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
404
435
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
436
|
+
* @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.
|
|
405
437
|
* @param {*} [options] Override http request option.
|
|
406
438
|
* @throws {RequiredError}
|
|
407
439
|
* @memberof CorporationApiInterface
|
|
@@ -422,6 +454,7 @@ export interface CorporationApiInterface {
|
|
|
422
454
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
423
455
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
424
456
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
457
|
+
* @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.
|
|
425
458
|
* @param {*} [options] Override http request option.
|
|
426
459
|
* @throws {RequiredError}
|
|
427
460
|
* @memberof CorporationApiInterface
|
|
@@ -442,6 +475,7 @@ export interface CorporationApiInterface {
|
|
|
442
475
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
443
476
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
444
477
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
478
|
+
* @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.
|
|
445
479
|
* @param {*} [options] Override http request option.
|
|
446
480
|
* @throws {RequiredError}
|
|
447
481
|
* @memberof CorporationApiInterface
|
|
@@ -462,6 +496,7 @@ export interface CorporationApiInterface {
|
|
|
462
496
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
463
497
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
464
498
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
499
|
+
* @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.
|
|
465
500
|
* @param {*} [options] Override http request option.
|
|
466
501
|
* @throws {RequiredError}
|
|
467
502
|
* @memberof CorporationApiInterface
|
|
@@ -482,6 +517,7 @@ export interface CorporationApiInterface {
|
|
|
482
517
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
483
518
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
484
519
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
520
|
+
* @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.
|
|
485
521
|
* @param {*} [options] Override http request option.
|
|
486
522
|
* @throws {RequiredError}
|
|
487
523
|
* @memberof CorporationApiInterface
|
|
@@ -502,6 +538,7 @@ export interface CorporationApiInterface {
|
|
|
502
538
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
503
539
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
504
540
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
541
|
+
* @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.
|
|
505
542
|
* @param {*} [options] Override http request option.
|
|
506
543
|
* @throws {RequiredError}
|
|
507
544
|
* @memberof CorporationApiInterface
|
|
@@ -523,6 +560,7 @@ export interface CorporationApiInterface {
|
|
|
523
560
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
524
561
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
525
562
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
563
|
+
* @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.
|
|
526
564
|
* @param {*} [options] Override http request option.
|
|
527
565
|
* @throws {RequiredError}
|
|
528
566
|
* @memberof CorporationApiInterface
|
|
@@ -544,6 +582,7 @@ export interface CorporationApiInterface {
|
|
|
544
582
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
545
583
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
546
584
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
585
|
+
* @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.
|
|
547
586
|
* @param {*} [options] Override http request option.
|
|
548
587
|
* @throws {RequiredError}
|
|
549
588
|
* @memberof CorporationApiInterface
|
|
@@ -565,6 +604,7 @@ export interface CorporationApiInterface {
|
|
|
565
604
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
566
605
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
567
606
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
607
|
+
* @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.
|
|
568
608
|
* @param {*} [options] Override http request option.
|
|
569
609
|
* @throws {RequiredError}
|
|
570
610
|
* @memberof CorporationApiInterface
|
|
@@ -586,6 +626,7 @@ export interface CorporationApiInterface {
|
|
|
586
626
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
587
627
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
588
628
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
629
|
+
* @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.
|
|
589
630
|
* @param {*} [options] Override http request option.
|
|
590
631
|
* @throws {RequiredError}
|
|
591
632
|
* @memberof CorporationApiInterface
|
|
@@ -608,6 +649,7 @@ export interface CorporationApiInterface {
|
|
|
608
649
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
609
650
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
610
651
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
652
|
+
* @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.
|
|
611
653
|
* @param {*} [options] Override http request option.
|
|
612
654
|
* @throws {RequiredError}
|
|
613
655
|
* @memberof CorporationApiInterface
|
|
@@ -629,6 +671,7 @@ export interface CorporationApiInterface {
|
|
|
629
671
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
630
672
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
631
673
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
674
|
+
* @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.
|
|
632
675
|
* @param {*} [options] Override http request option.
|
|
633
676
|
* @throws {RequiredError}
|
|
634
677
|
* @memberof CorporationApiInterface
|
|
@@ -649,6 +692,7 @@ export interface CorporationApiInterface {
|
|
|
649
692
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
650
693
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
651
694
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
695
|
+
* @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.
|
|
652
696
|
* @param {*} [options] Override http request option.
|
|
653
697
|
* @throws {RequiredError}
|
|
654
698
|
* @memberof CorporationApiInterface
|
|
@@ -668,6 +712,7 @@ export interface CorporationApiInterface {
|
|
|
668
712
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
669
713
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
670
714
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
715
|
+
* @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.
|
|
671
716
|
* @param {*} [options] Override http request option.
|
|
672
717
|
* @throws {RequiredError}
|
|
673
718
|
* @memberof CorporationApiInterface
|
|
@@ -726,12 +771,21 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
726
771
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
727
772
|
}
|
|
728
773
|
|
|
774
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
775
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
776
|
+
}
|
|
777
|
+
|
|
729
778
|
/*
|
|
730
779
|
*/
|
|
731
780
|
|
|
732
781
|
let urlPath = `/corporations/{corporation_id}`;
|
|
733
782
|
urlPath = urlPath.replace(`{${"corporation_id"}}`, encodeURIComponent(String(requestParameters['corporationId'])));
|
|
734
783
|
|
|
784
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
785
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
786
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
787
|
+
}
|
|
788
|
+
|
|
735
789
|
const facade = this.configuration?.apiFacade;
|
|
736
790
|
if (!facade) {
|
|
737
791
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -795,12 +849,21 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
795
849
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
796
850
|
}
|
|
797
851
|
|
|
852
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
853
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
854
|
+
}
|
|
855
|
+
|
|
798
856
|
/*
|
|
799
857
|
*/
|
|
800
858
|
|
|
801
859
|
let urlPath = `/corporations/{corporation_id}/alliancehistory`;
|
|
802
860
|
urlPath = urlPath.replace(`{${"corporation_id"}}`, encodeURIComponent(String(requestParameters['corporationId'])));
|
|
803
861
|
|
|
862
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
863
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
864
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
865
|
+
}
|
|
866
|
+
|
|
804
867
|
const facade = this.configuration?.apiFacade;
|
|
805
868
|
if (!facade) {
|
|
806
869
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -868,6 +931,10 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
868
931
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
869
932
|
}
|
|
870
933
|
|
|
934
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
935
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
936
|
+
}
|
|
937
|
+
|
|
871
938
|
/*
|
|
872
939
|
if (this.configuration && this.configuration.accessToken) {
|
|
873
940
|
// oauth required
|
|
@@ -879,6 +946,11 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
879
946
|
let urlPath = `/corporations/{corporation_id}/blueprints`;
|
|
880
947
|
urlPath = urlPath.replace(`{${"corporation_id"}}`, encodeURIComponent(String(requestParameters['corporationId'])));
|
|
881
948
|
|
|
949
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
950
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
951
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
952
|
+
}
|
|
953
|
+
|
|
882
954
|
const facade = this.configuration?.apiFacade;
|
|
883
955
|
if (!facade) {
|
|
884
956
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -946,6 +1018,10 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
946
1018
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
947
1019
|
}
|
|
948
1020
|
|
|
1021
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
1022
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
1023
|
+
}
|
|
1024
|
+
|
|
949
1025
|
/*
|
|
950
1026
|
if (this.configuration && this.configuration.accessToken) {
|
|
951
1027
|
// oauth required
|
|
@@ -957,6 +1033,11 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
957
1033
|
let urlPath = `/corporations/{corporation_id}/containers/logs`;
|
|
958
1034
|
urlPath = urlPath.replace(`{${"corporation_id"}}`, encodeURIComponent(String(requestParameters['corporationId'])));
|
|
959
1035
|
|
|
1036
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
1037
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
1038
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
1039
|
+
}
|
|
1040
|
+
|
|
960
1041
|
const facade = this.configuration?.apiFacade;
|
|
961
1042
|
if (!facade) {
|
|
962
1043
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -1020,6 +1101,10 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1020
1101
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
1021
1102
|
}
|
|
1022
1103
|
|
|
1104
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
1105
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1023
1108
|
/*
|
|
1024
1109
|
if (this.configuration && this.configuration.accessToken) {
|
|
1025
1110
|
// oauth required
|
|
@@ -1031,6 +1116,11 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1031
1116
|
let urlPath = `/corporations/{corporation_id}/divisions`;
|
|
1032
1117
|
urlPath = urlPath.replace(`{${"corporation_id"}}`, encodeURIComponent(String(requestParameters['corporationId'])));
|
|
1033
1118
|
|
|
1119
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
1120
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
1121
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1034
1124
|
const facade = this.configuration?.apiFacade;
|
|
1035
1125
|
if (!facade) {
|
|
1036
1126
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -1094,6 +1184,10 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1094
1184
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
1095
1185
|
}
|
|
1096
1186
|
|
|
1187
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
1188
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1097
1191
|
/*
|
|
1098
1192
|
if (this.configuration && this.configuration.accessToken) {
|
|
1099
1193
|
// oauth required
|
|
@@ -1105,6 +1199,11 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1105
1199
|
let urlPath = `/corporations/{corporation_id}/facilities`;
|
|
1106
1200
|
urlPath = urlPath.replace(`{${"corporation_id"}}`, encodeURIComponent(String(requestParameters['corporationId'])));
|
|
1107
1201
|
|
|
1202
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
1203
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
1204
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1108
1207
|
const facade = this.configuration?.apiFacade;
|
|
1109
1208
|
if (!facade) {
|
|
1110
1209
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -1168,12 +1267,21 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1168
1267
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
1169
1268
|
}
|
|
1170
1269
|
|
|
1270
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
1271
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1171
1274
|
/*
|
|
1172
1275
|
*/
|
|
1173
1276
|
|
|
1174
1277
|
let urlPath = `/corporations/{corporation_id}/icons`;
|
|
1175
1278
|
urlPath = urlPath.replace(`{${"corporation_id"}}`, encodeURIComponent(String(requestParameters['corporationId'])));
|
|
1176
1279
|
|
|
1280
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
1281
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
1282
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1177
1285
|
const facade = this.configuration?.apiFacade;
|
|
1178
1286
|
if (!facade) {
|
|
1179
1287
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -1241,6 +1349,10 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1241
1349
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
1242
1350
|
}
|
|
1243
1351
|
|
|
1352
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
1353
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
1354
|
+
}
|
|
1355
|
+
|
|
1244
1356
|
/*
|
|
1245
1357
|
if (this.configuration && this.configuration.accessToken) {
|
|
1246
1358
|
// oauth required
|
|
@@ -1252,6 +1364,11 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1252
1364
|
let urlPath = `/corporations/{corporation_id}/medals`;
|
|
1253
1365
|
urlPath = urlPath.replace(`{${"corporation_id"}}`, encodeURIComponent(String(requestParameters['corporationId'])));
|
|
1254
1366
|
|
|
1367
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
1368
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
1369
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
1370
|
+
}
|
|
1371
|
+
|
|
1255
1372
|
const facade = this.configuration?.apiFacade;
|
|
1256
1373
|
if (!facade) {
|
|
1257
1374
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -1319,6 +1436,10 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1319
1436
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
1320
1437
|
}
|
|
1321
1438
|
|
|
1439
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
1440
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
1441
|
+
}
|
|
1442
|
+
|
|
1322
1443
|
/*
|
|
1323
1444
|
if (this.configuration && this.configuration.accessToken) {
|
|
1324
1445
|
// oauth required
|
|
@@ -1330,6 +1451,11 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1330
1451
|
let urlPath = `/corporations/{corporation_id}/medals/issued`;
|
|
1331
1452
|
urlPath = urlPath.replace(`{${"corporation_id"}}`, encodeURIComponent(String(requestParameters['corporationId'])));
|
|
1332
1453
|
|
|
1454
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
1455
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
1456
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1333
1459
|
const facade = this.configuration?.apiFacade;
|
|
1334
1460
|
if (!facade) {
|
|
1335
1461
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -1393,6 +1519,10 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1393
1519
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
1394
1520
|
}
|
|
1395
1521
|
|
|
1522
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
1523
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
1524
|
+
}
|
|
1525
|
+
|
|
1396
1526
|
/*
|
|
1397
1527
|
if (this.configuration && this.configuration.accessToken) {
|
|
1398
1528
|
// oauth required
|
|
@@ -1404,6 +1534,11 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1404
1534
|
let urlPath = `/corporations/{corporation_id}/members`;
|
|
1405
1535
|
urlPath = urlPath.replace(`{${"corporation_id"}}`, encodeURIComponent(String(requestParameters['corporationId'])));
|
|
1406
1536
|
|
|
1537
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
1538
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
1539
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
1540
|
+
}
|
|
1541
|
+
|
|
1407
1542
|
const facade = this.configuration?.apiFacade;
|
|
1408
1543
|
if (!facade) {
|
|
1409
1544
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -1467,6 +1602,10 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1467
1602
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
1468
1603
|
}
|
|
1469
1604
|
|
|
1605
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
1606
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
1607
|
+
}
|
|
1608
|
+
|
|
1470
1609
|
/*
|
|
1471
1610
|
if (this.configuration && this.configuration.accessToken) {
|
|
1472
1611
|
// oauth required
|
|
@@ -1478,6 +1617,11 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1478
1617
|
let urlPath = `/corporations/{corporation_id}/members/limit`;
|
|
1479
1618
|
urlPath = urlPath.replace(`{${"corporation_id"}}`, encodeURIComponent(String(requestParameters['corporationId'])));
|
|
1480
1619
|
|
|
1620
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
1621
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
1622
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
1623
|
+
}
|
|
1624
|
+
|
|
1481
1625
|
const facade = this.configuration?.apiFacade;
|
|
1482
1626
|
if (!facade) {
|
|
1483
1627
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -1541,6 +1685,10 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1541
1685
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
1542
1686
|
}
|
|
1543
1687
|
|
|
1688
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
1689
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1544
1692
|
/*
|
|
1545
1693
|
if (this.configuration && this.configuration.accessToken) {
|
|
1546
1694
|
// oauth required
|
|
@@ -1552,6 +1700,11 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1552
1700
|
let urlPath = `/corporations/{corporation_id}/members/titles`;
|
|
1553
1701
|
urlPath = urlPath.replace(`{${"corporation_id"}}`, encodeURIComponent(String(requestParameters['corporationId'])));
|
|
1554
1702
|
|
|
1703
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
1704
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
1705
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
1706
|
+
}
|
|
1707
|
+
|
|
1555
1708
|
const facade = this.configuration?.apiFacade;
|
|
1556
1709
|
if (!facade) {
|
|
1557
1710
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -1615,6 +1768,10 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1615
1768
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
1616
1769
|
}
|
|
1617
1770
|
|
|
1771
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
1772
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
1773
|
+
}
|
|
1774
|
+
|
|
1618
1775
|
/*
|
|
1619
1776
|
if (this.configuration && this.configuration.accessToken) {
|
|
1620
1777
|
// oauth required
|
|
@@ -1626,6 +1783,11 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1626
1783
|
let urlPath = `/corporations/{corporation_id}/membertracking`;
|
|
1627
1784
|
urlPath = urlPath.replace(`{${"corporation_id"}}`, encodeURIComponent(String(requestParameters['corporationId'])));
|
|
1628
1785
|
|
|
1786
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
1787
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
1788
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
1789
|
+
}
|
|
1790
|
+
|
|
1629
1791
|
const facade = this.configuration?.apiFacade;
|
|
1630
1792
|
if (!facade) {
|
|
1631
1793
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -1689,6 +1851,10 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1689
1851
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
1690
1852
|
}
|
|
1691
1853
|
|
|
1854
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
1855
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1692
1858
|
/*
|
|
1693
1859
|
if (this.configuration && this.configuration.accessToken) {
|
|
1694
1860
|
// oauth required
|
|
@@ -1700,6 +1866,11 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1700
1866
|
let urlPath = `/corporations/{corporation_id}/roles`;
|
|
1701
1867
|
urlPath = urlPath.replace(`{${"corporation_id"}}`, encodeURIComponent(String(requestParameters['corporationId'])));
|
|
1702
1868
|
|
|
1869
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
1870
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
1871
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1703
1874
|
const facade = this.configuration?.apiFacade;
|
|
1704
1875
|
if (!facade) {
|
|
1705
1876
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -1767,6 +1938,10 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1767
1938
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
1768
1939
|
}
|
|
1769
1940
|
|
|
1941
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
1942
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
1943
|
+
}
|
|
1944
|
+
|
|
1770
1945
|
/*
|
|
1771
1946
|
if (this.configuration && this.configuration.accessToken) {
|
|
1772
1947
|
// oauth required
|
|
@@ -1778,6 +1953,11 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1778
1953
|
let urlPath = `/corporations/{corporation_id}/roles/history`;
|
|
1779
1954
|
urlPath = urlPath.replace(`{${"corporation_id"}}`, encodeURIComponent(String(requestParameters['corporationId'])));
|
|
1780
1955
|
|
|
1956
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
1957
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
1958
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
1959
|
+
}
|
|
1960
|
+
|
|
1781
1961
|
const facade = this.configuration?.apiFacade;
|
|
1782
1962
|
if (!facade) {
|
|
1783
1963
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -1845,6 +2025,10 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1845
2025
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
1846
2026
|
}
|
|
1847
2027
|
|
|
2028
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
2029
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
2030
|
+
}
|
|
2031
|
+
|
|
1848
2032
|
/*
|
|
1849
2033
|
if (this.configuration && this.configuration.accessToken) {
|
|
1850
2034
|
// oauth required
|
|
@@ -1856,6 +2040,11 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1856
2040
|
let urlPath = `/corporations/{corporation_id}/shareholders`;
|
|
1857
2041
|
urlPath = urlPath.replace(`{${"corporation_id"}}`, encodeURIComponent(String(requestParameters['corporationId'])));
|
|
1858
2042
|
|
|
2043
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
2044
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
2045
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
2046
|
+
}
|
|
2047
|
+
|
|
1859
2048
|
const facade = this.configuration?.apiFacade;
|
|
1860
2049
|
if (!facade) {
|
|
1861
2050
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -1923,6 +2112,10 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1923
2112
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
1924
2113
|
}
|
|
1925
2114
|
|
|
2115
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
2116
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
2117
|
+
}
|
|
2118
|
+
|
|
1926
2119
|
/*
|
|
1927
2120
|
if (this.configuration && this.configuration.accessToken) {
|
|
1928
2121
|
// oauth required
|
|
@@ -1934,6 +2127,11 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
1934
2127
|
let urlPath = `/corporations/{corporation_id}/standings`;
|
|
1935
2128
|
urlPath = urlPath.replace(`{${"corporation_id"}}`, encodeURIComponent(String(requestParameters['corporationId'])));
|
|
1936
2129
|
|
|
2130
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
2131
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
2132
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
2133
|
+
}
|
|
2134
|
+
|
|
1937
2135
|
const facade = this.configuration?.apiFacade;
|
|
1938
2136
|
if (!facade) {
|
|
1939
2137
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -2001,6 +2199,10 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
2001
2199
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
2002
2200
|
}
|
|
2003
2201
|
|
|
2202
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
2203
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
2204
|
+
}
|
|
2205
|
+
|
|
2004
2206
|
/*
|
|
2005
2207
|
if (this.configuration && this.configuration.accessToken) {
|
|
2006
2208
|
// oauth required
|
|
@@ -2012,6 +2214,11 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
2012
2214
|
let urlPath = `/corporations/{corporation_id}/starbases`;
|
|
2013
2215
|
urlPath = urlPath.replace(`{${"corporation_id"}}`, encodeURIComponent(String(requestParameters['corporationId'])));
|
|
2014
2216
|
|
|
2217
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
2218
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
2219
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
2220
|
+
}
|
|
2221
|
+
|
|
2015
2222
|
const facade = this.configuration?.apiFacade;
|
|
2016
2223
|
if (!facade) {
|
|
2017
2224
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -2093,6 +2300,10 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
2093
2300
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
2094
2301
|
}
|
|
2095
2302
|
|
|
2303
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
2304
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
2305
|
+
}
|
|
2306
|
+
|
|
2096
2307
|
/*
|
|
2097
2308
|
if (this.configuration && this.configuration.accessToken) {
|
|
2098
2309
|
// oauth required
|
|
@@ -2105,6 +2316,11 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
2105
2316
|
urlPath = urlPath.replace(`{${"corporation_id"}}`, encodeURIComponent(String(requestParameters['corporationId'])));
|
|
2106
2317
|
urlPath = urlPath.replace(`{${"starbase_id"}}`, encodeURIComponent(String(requestParameters['starbaseId'])));
|
|
2107
2318
|
|
|
2319
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
2320
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
2321
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
2322
|
+
}
|
|
2323
|
+
|
|
2108
2324
|
const facade = this.configuration?.apiFacade;
|
|
2109
2325
|
if (!facade) {
|
|
2110
2326
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -2172,6 +2388,10 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
2172
2388
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
2173
2389
|
}
|
|
2174
2390
|
|
|
2391
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
2392
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
2393
|
+
}
|
|
2394
|
+
|
|
2175
2395
|
/*
|
|
2176
2396
|
if (this.configuration && this.configuration.accessToken) {
|
|
2177
2397
|
// oauth required
|
|
@@ -2183,6 +2403,11 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
2183
2403
|
let urlPath = `/corporations/{corporation_id}/structures`;
|
|
2184
2404
|
urlPath = urlPath.replace(`{${"corporation_id"}}`, encodeURIComponent(String(requestParameters['corporationId'])));
|
|
2185
2405
|
|
|
2406
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
2407
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
2408
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
2409
|
+
}
|
|
2410
|
+
|
|
2186
2411
|
const facade = this.configuration?.apiFacade;
|
|
2187
2412
|
if (!facade) {
|
|
2188
2413
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -2246,6 +2471,10 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
2246
2471
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
2247
2472
|
}
|
|
2248
2473
|
|
|
2474
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
2475
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
2476
|
+
}
|
|
2477
|
+
|
|
2249
2478
|
/*
|
|
2250
2479
|
if (this.configuration && this.configuration.accessToken) {
|
|
2251
2480
|
// oauth required
|
|
@@ -2257,6 +2486,11 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
2257
2486
|
let urlPath = `/corporations/{corporation_id}/titles`;
|
|
2258
2487
|
urlPath = urlPath.replace(`{${"corporation_id"}}`, encodeURIComponent(String(requestParameters['corporationId'])));
|
|
2259
2488
|
|
|
2489
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
2490
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
2491
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
2492
|
+
}
|
|
2493
|
+
|
|
2260
2494
|
const facade = this.configuration?.apiFacade;
|
|
2261
2495
|
if (!facade) {
|
|
2262
2496
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -2313,11 +2547,20 @@ export class CorporationApi extends runtime.BaseAPI implements CorporationApiInt
|
|
|
2313
2547
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
2314
2548
|
}
|
|
2315
2549
|
|
|
2550
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
2551
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
2552
|
+
}
|
|
2553
|
+
|
|
2316
2554
|
/*
|
|
2317
2555
|
*/
|
|
2318
2556
|
|
|
2319
2557
|
let urlPath = `/corporations/npccorps`;
|
|
2320
2558
|
|
|
2559
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
2560
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
2561
|
+
headerParameters['X-Compatibility-Date'] = ESI_COMPATIBILITY_DATE;
|
|
2562
|
+
}
|
|
2563
|
+
|
|
2321
2564
|
const facade = this.configuration?.apiFacade;
|
|
2322
2565
|
if (!facade) {
|
|
2323
2566
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|