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/dist/apis/LocationApi.js
CHANGED
|
@@ -66,6 +66,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
66
66
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
67
67
|
exports.GetCharactersCharacterIdShipAcceptLanguageEnum = exports.GetCharactersCharacterIdShipXCompatibilityDateEnum = exports.GetCharactersCharacterIdOnlineAcceptLanguageEnum = exports.GetCharactersCharacterIdOnlineXCompatibilityDateEnum = exports.GetCharactersCharacterIdLocationAcceptLanguageEnum = exports.GetCharactersCharacterIdLocationXCompatibilityDateEnum = exports.LocationApi = void 0;
|
|
68
68
|
var runtime = require("../runtime");
|
|
69
|
+
var constants_1 = require("../constants");
|
|
69
70
|
/**
|
|
70
71
|
*
|
|
71
72
|
*/
|
|
@@ -105,8 +106,15 @@ var LocationApi = /** @class */ (function (_super) {
|
|
|
105
106
|
if (requestParameters['xTenant'] != null) {
|
|
106
107
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
107
108
|
}
|
|
109
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
110
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
111
|
+
}
|
|
108
112
|
urlPath = "/characters/{character_id}/location";
|
|
109
113
|
urlPath = urlPath.replace("{".concat("character_id", "}"), encodeURIComponent(String(requestParameters['characterId'])));
|
|
114
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
115
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
116
|
+
headerParameters['X-Compatibility-Date'] = constants_1.ESI_COMPATIBILITY_DATE;
|
|
117
|
+
}
|
|
110
118
|
facade = (_a = this.configuration) === null || _a === void 0 ? void 0 : _a.apiFacade;
|
|
111
119
|
if (!facade) {
|
|
112
120
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -172,8 +180,15 @@ var LocationApi = /** @class */ (function (_super) {
|
|
|
172
180
|
if (requestParameters['xTenant'] != null) {
|
|
173
181
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
174
182
|
}
|
|
183
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
184
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
185
|
+
}
|
|
175
186
|
urlPath = "/characters/{character_id}/online";
|
|
176
187
|
urlPath = urlPath.replace("{".concat("character_id", "}"), encodeURIComponent(String(requestParameters['characterId'])));
|
|
188
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
189
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
190
|
+
headerParameters['X-Compatibility-Date'] = constants_1.ESI_COMPATIBILITY_DATE;
|
|
191
|
+
}
|
|
177
192
|
facade = (_a = this.configuration) === null || _a === void 0 ? void 0 : _a.apiFacade;
|
|
178
193
|
if (!facade) {
|
|
179
194
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -239,8 +254,15 @@ var LocationApi = /** @class */ (function (_super) {
|
|
|
239
254
|
if (requestParameters['xTenant'] != null) {
|
|
240
255
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
241
256
|
}
|
|
257
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
258
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
259
|
+
}
|
|
242
260
|
urlPath = "/characters/{character_id}/ship";
|
|
243
261
|
urlPath = urlPath.replace("{".concat("character_id", "}"), encodeURIComponent(String(requestParameters['characterId'])));
|
|
262
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
263
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
264
|
+
headerParameters['X-Compatibility-Date'] = constants_1.ESI_COMPATIBILITY_DATE;
|
|
265
|
+
}
|
|
244
266
|
facade = (_a = this.configuration) === null || _a === void 0 ? void 0 : _a.apiFacade;
|
|
245
267
|
if (!facade) {
|
|
246
268
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -17,6 +17,7 @@ export interface GetCharactersCharacterIdLoyaltyPointsRequest {
|
|
|
17
17
|
acceptLanguage?: GetCharactersCharacterIdLoyaltyPointsAcceptLanguageEnum;
|
|
18
18
|
ifNoneMatch?: string;
|
|
19
19
|
xTenant?: string;
|
|
20
|
+
ifModifiedSince?: string;
|
|
20
21
|
}
|
|
21
22
|
export interface GetLoyaltyStoresCorporationIdOffersRequest {
|
|
22
23
|
corporationId: number;
|
|
@@ -24,6 +25,7 @@ export interface GetLoyaltyStoresCorporationIdOffersRequest {
|
|
|
24
25
|
acceptLanguage?: GetLoyaltyStoresCorporationIdOffersAcceptLanguageEnum;
|
|
25
26
|
ifNoneMatch?: string;
|
|
26
27
|
xTenant?: string;
|
|
28
|
+
ifModifiedSince?: string;
|
|
27
29
|
}
|
|
28
30
|
/**
|
|
29
31
|
* LoyaltyApi - interface
|
|
@@ -40,6 +42,7 @@ export interface LoyaltyApiInterface {
|
|
|
40
42
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
41
43
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
42
44
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
45
|
+
* @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.
|
|
43
46
|
* @param {*} [options] Override http request option.
|
|
44
47
|
* @throws {RequiredError}
|
|
45
48
|
* @memberof LoyaltyApiInterface
|
|
@@ -58,6 +61,7 @@ export interface LoyaltyApiInterface {
|
|
|
58
61
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
59
62
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
60
63
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
64
|
+
* @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.
|
|
61
65
|
* @param {*} [options] Override http request option.
|
|
62
66
|
* @throws {RequiredError}
|
|
63
67
|
* @memberof LoyaltyApiInterface
|
package/dist/apis/LoyaltyApi.js
CHANGED
|
@@ -66,6 +66,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
66
66
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
67
67
|
exports.GetLoyaltyStoresCorporationIdOffersAcceptLanguageEnum = exports.GetLoyaltyStoresCorporationIdOffersXCompatibilityDateEnum = exports.GetCharactersCharacterIdLoyaltyPointsAcceptLanguageEnum = exports.GetCharactersCharacterIdLoyaltyPointsXCompatibilityDateEnum = exports.LoyaltyApi = void 0;
|
|
68
68
|
var runtime = require("../runtime");
|
|
69
|
+
var constants_1 = require("../constants");
|
|
69
70
|
/**
|
|
70
71
|
*
|
|
71
72
|
*/
|
|
@@ -105,8 +106,15 @@ var LoyaltyApi = /** @class */ (function (_super) {
|
|
|
105
106
|
if (requestParameters['xTenant'] != null) {
|
|
106
107
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
107
108
|
}
|
|
109
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
110
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
111
|
+
}
|
|
108
112
|
urlPath = "/characters/{character_id}/loyalty/points";
|
|
109
113
|
urlPath = urlPath.replace("{".concat("character_id", "}"), encodeURIComponent(String(requestParameters['characterId'])));
|
|
114
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
115
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
116
|
+
headerParameters['X-Compatibility-Date'] = constants_1.ESI_COMPATIBILITY_DATE;
|
|
117
|
+
}
|
|
110
118
|
facade = (_a = this.configuration) === null || _a === void 0 ? void 0 : _a.apiFacade;
|
|
111
119
|
if (!facade) {
|
|
112
120
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -172,8 +180,15 @@ var LoyaltyApi = /** @class */ (function (_super) {
|
|
|
172
180
|
if (requestParameters['xTenant'] != null) {
|
|
173
181
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
174
182
|
}
|
|
183
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
184
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
185
|
+
}
|
|
175
186
|
urlPath = "/loyalty/stores/{corporation_id}/offers";
|
|
176
187
|
urlPath = urlPath.replace("{".concat("corporation_id", "}"), encodeURIComponent(String(requestParameters['corporationId'])));
|
|
188
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
189
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
190
|
+
headerParameters['X-Compatibility-Date'] = constants_1.ESI_COMPATIBILITY_DATE;
|
|
191
|
+
}
|
|
177
192
|
facade = (_a = this.configuration) === null || _a === void 0 ? void 0 : _a.apiFacade;
|
|
178
193
|
if (!facade) {
|
|
179
194
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
package/dist/apis/MailApi.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ export interface DeleteCharactersCharacterIdMailLabelsLabelIdRequest {
|
|
|
18
18
|
acceptLanguage?: DeleteCharactersCharacterIdMailLabelsLabelIdAcceptLanguageEnum;
|
|
19
19
|
ifNoneMatch?: string;
|
|
20
20
|
xTenant?: string;
|
|
21
|
+
ifModifiedSince?: string;
|
|
21
22
|
}
|
|
22
23
|
export interface DeleteCharactersCharacterIdMailMailIdRequest {
|
|
23
24
|
characterId: number;
|
|
@@ -26,6 +27,7 @@ export interface DeleteCharactersCharacterIdMailMailIdRequest {
|
|
|
26
27
|
acceptLanguage?: DeleteCharactersCharacterIdMailMailIdAcceptLanguageEnum;
|
|
27
28
|
ifNoneMatch?: string;
|
|
28
29
|
xTenant?: string;
|
|
30
|
+
ifModifiedSince?: string;
|
|
29
31
|
}
|
|
30
32
|
export interface GetCharactersCharacterIdMailRequest {
|
|
31
33
|
characterId: number;
|
|
@@ -35,6 +37,7 @@ export interface GetCharactersCharacterIdMailRequest {
|
|
|
35
37
|
acceptLanguage?: GetCharactersCharacterIdMailAcceptLanguageEnum;
|
|
36
38
|
ifNoneMatch?: string;
|
|
37
39
|
xTenant?: string;
|
|
40
|
+
ifModifiedSince?: string;
|
|
38
41
|
}
|
|
39
42
|
export interface GetCharactersCharacterIdMailLabelsRequest {
|
|
40
43
|
characterId: number;
|
|
@@ -42,6 +45,7 @@ export interface GetCharactersCharacterIdMailLabelsRequest {
|
|
|
42
45
|
acceptLanguage?: GetCharactersCharacterIdMailLabelsAcceptLanguageEnum;
|
|
43
46
|
ifNoneMatch?: string;
|
|
44
47
|
xTenant?: string;
|
|
48
|
+
ifModifiedSince?: string;
|
|
45
49
|
}
|
|
46
50
|
export interface GetCharactersCharacterIdMailListsRequest {
|
|
47
51
|
characterId: number;
|
|
@@ -49,6 +53,7 @@ export interface GetCharactersCharacterIdMailListsRequest {
|
|
|
49
53
|
acceptLanguage?: GetCharactersCharacterIdMailListsAcceptLanguageEnum;
|
|
50
54
|
ifNoneMatch?: string;
|
|
51
55
|
xTenant?: string;
|
|
56
|
+
ifModifiedSince?: string;
|
|
52
57
|
}
|
|
53
58
|
export interface GetCharactersCharacterIdMailMailIdRequest {
|
|
54
59
|
characterId: number;
|
|
@@ -57,6 +62,7 @@ export interface GetCharactersCharacterIdMailMailIdRequest {
|
|
|
57
62
|
acceptLanguage?: GetCharactersCharacterIdMailMailIdAcceptLanguageEnum;
|
|
58
63
|
ifNoneMatch?: string;
|
|
59
64
|
xTenant?: string;
|
|
65
|
+
ifModifiedSince?: string;
|
|
60
66
|
}
|
|
61
67
|
export interface PostCharactersCharacterIdMailOperationRequest {
|
|
62
68
|
characterId: number;
|
|
@@ -65,6 +71,7 @@ export interface PostCharactersCharacterIdMailOperationRequest {
|
|
|
65
71
|
acceptLanguage?: PostCharactersCharacterIdMailOperationAcceptLanguageEnum;
|
|
66
72
|
ifNoneMatch?: string;
|
|
67
73
|
xTenant?: string;
|
|
74
|
+
ifModifiedSince?: string;
|
|
68
75
|
}
|
|
69
76
|
export interface PostCharactersCharacterIdMailLabelsOperationRequest {
|
|
70
77
|
characterId: number;
|
|
@@ -73,6 +80,7 @@ export interface PostCharactersCharacterIdMailLabelsOperationRequest {
|
|
|
73
80
|
acceptLanguage?: PostCharactersCharacterIdMailLabelsOperationAcceptLanguageEnum;
|
|
74
81
|
ifNoneMatch?: string;
|
|
75
82
|
xTenant?: string;
|
|
83
|
+
ifModifiedSince?: string;
|
|
76
84
|
}
|
|
77
85
|
export interface PutCharactersCharacterIdMailMailIdOperationRequest {
|
|
78
86
|
characterId: number;
|
|
@@ -82,6 +90,7 @@ export interface PutCharactersCharacterIdMailMailIdOperationRequest {
|
|
|
82
90
|
acceptLanguage?: PutCharactersCharacterIdMailMailIdOperationAcceptLanguageEnum;
|
|
83
91
|
ifNoneMatch?: string;
|
|
84
92
|
xTenant?: string;
|
|
93
|
+
ifModifiedSince?: string;
|
|
85
94
|
}
|
|
86
95
|
/**
|
|
87
96
|
* MailApi - interface
|
|
@@ -99,6 +108,7 @@ export interface MailApiInterface {
|
|
|
99
108
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
100
109
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
101
110
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
111
|
+
* @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.
|
|
102
112
|
* @param {*} [options] Override http request option.
|
|
103
113
|
* @throws {RequiredError}
|
|
104
114
|
* @memberof MailApiInterface
|
|
@@ -118,6 +128,7 @@ export interface MailApiInterface {
|
|
|
118
128
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
119
129
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
120
130
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
131
|
+
* @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.
|
|
121
132
|
* @param {*} [options] Override http request option.
|
|
122
133
|
* @throws {RequiredError}
|
|
123
134
|
* @memberof MailApiInterface
|
|
@@ -138,6 +149,7 @@ export interface MailApiInterface {
|
|
|
138
149
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
139
150
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
140
151
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
152
|
+
* @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.
|
|
141
153
|
* @param {*} [options] Override http request option.
|
|
142
154
|
* @throws {RequiredError}
|
|
143
155
|
* @memberof MailApiInterface
|
|
@@ -156,6 +168,7 @@ export interface MailApiInterface {
|
|
|
156
168
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
157
169
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
158
170
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
171
|
+
* @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.
|
|
159
172
|
* @param {*} [options] Override http request option.
|
|
160
173
|
* @throws {RequiredError}
|
|
161
174
|
* @memberof MailApiInterface
|
|
@@ -174,6 +187,7 @@ export interface MailApiInterface {
|
|
|
174
187
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
175
188
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
176
189
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
190
|
+
* @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.
|
|
177
191
|
* @param {*} [options] Override http request option.
|
|
178
192
|
* @throws {RequiredError}
|
|
179
193
|
* @memberof MailApiInterface
|
|
@@ -193,6 +207,7 @@ export interface MailApiInterface {
|
|
|
193
207
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
194
208
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
195
209
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
210
|
+
* @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.
|
|
196
211
|
* @param {*} [options] Override http request option.
|
|
197
212
|
* @throws {RequiredError}
|
|
198
213
|
* @memberof MailApiInterface
|
|
@@ -212,6 +227,7 @@ export interface MailApiInterface {
|
|
|
212
227
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
213
228
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
214
229
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
230
|
+
* @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.
|
|
215
231
|
* @param {*} [options] Override http request option.
|
|
216
232
|
* @throws {RequiredError}
|
|
217
233
|
* @memberof MailApiInterface
|
|
@@ -231,6 +247,7 @@ export interface MailApiInterface {
|
|
|
231
247
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
232
248
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
233
249
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
250
|
+
* @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.
|
|
234
251
|
* @param {*} [options] Override http request option.
|
|
235
252
|
* @throws {RequiredError}
|
|
236
253
|
* @memberof MailApiInterface
|
|
@@ -251,6 +268,7 @@ export interface MailApiInterface {
|
|
|
251
268
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
252
269
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
253
270
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
271
|
+
* @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.
|
|
254
272
|
* @param {*} [options] Override http request option.
|
|
255
273
|
* @throws {RequiredError}
|
|
256
274
|
* @memberof MailApiInterface
|
package/dist/apis/MailApi.js
CHANGED
|
@@ -66,6 +66,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
66
66
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
67
67
|
exports.PutCharactersCharacterIdMailMailIdOperationAcceptLanguageEnum = exports.PutCharactersCharacterIdMailMailIdOperationXCompatibilityDateEnum = exports.PostCharactersCharacterIdMailLabelsOperationAcceptLanguageEnum = exports.PostCharactersCharacterIdMailLabelsOperationXCompatibilityDateEnum = exports.PostCharactersCharacterIdMailOperationAcceptLanguageEnum = exports.PostCharactersCharacterIdMailOperationXCompatibilityDateEnum = exports.GetCharactersCharacterIdMailMailIdAcceptLanguageEnum = exports.GetCharactersCharacterIdMailMailIdXCompatibilityDateEnum = exports.GetCharactersCharacterIdMailListsAcceptLanguageEnum = exports.GetCharactersCharacterIdMailListsXCompatibilityDateEnum = exports.GetCharactersCharacterIdMailLabelsAcceptLanguageEnum = exports.GetCharactersCharacterIdMailLabelsXCompatibilityDateEnum = exports.GetCharactersCharacterIdMailAcceptLanguageEnum = exports.GetCharactersCharacterIdMailXCompatibilityDateEnum = exports.DeleteCharactersCharacterIdMailMailIdAcceptLanguageEnum = exports.DeleteCharactersCharacterIdMailMailIdXCompatibilityDateEnum = exports.DeleteCharactersCharacterIdMailLabelsLabelIdAcceptLanguageEnum = exports.DeleteCharactersCharacterIdMailLabelsLabelIdXCompatibilityDateEnum = exports.MailApi = void 0;
|
|
68
68
|
var runtime = require("../runtime");
|
|
69
|
+
var constants_1 = require("../constants");
|
|
69
70
|
/**
|
|
70
71
|
*
|
|
71
72
|
*/
|
|
@@ -108,9 +109,16 @@ var MailApi = /** @class */ (function (_super) {
|
|
|
108
109
|
if (requestParameters['xTenant'] != null) {
|
|
109
110
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
110
111
|
}
|
|
112
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
113
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
114
|
+
}
|
|
111
115
|
urlPath = "/characters/{character_id}/mail/labels/{label_id}";
|
|
112
116
|
urlPath = urlPath.replace("{".concat("character_id", "}"), encodeURIComponent(String(requestParameters['characterId'])));
|
|
113
117
|
urlPath = urlPath.replace("{".concat("label_id", "}"), encodeURIComponent(String(requestParameters['labelId'])));
|
|
118
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
119
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
120
|
+
headerParameters['X-Compatibility-Date'] = constants_1.ESI_COMPATIBILITY_DATE;
|
|
121
|
+
}
|
|
114
122
|
facade = (_a = this.configuration) === null || _a === void 0 ? void 0 : _a.apiFacade;
|
|
115
123
|
if (!facade) {
|
|
116
124
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -176,9 +184,16 @@ var MailApi = /** @class */ (function (_super) {
|
|
|
176
184
|
if (requestParameters['xTenant'] != null) {
|
|
177
185
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
178
186
|
}
|
|
187
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
188
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
189
|
+
}
|
|
179
190
|
urlPath = "/characters/{character_id}/mail/{mail_id}";
|
|
180
191
|
urlPath = urlPath.replace("{".concat("character_id", "}"), encodeURIComponent(String(requestParameters['characterId'])));
|
|
181
192
|
urlPath = urlPath.replace("{".concat("mail_id", "}"), encodeURIComponent(String(requestParameters['mailId'])));
|
|
193
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
194
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
195
|
+
headerParameters['X-Compatibility-Date'] = constants_1.ESI_COMPATIBILITY_DATE;
|
|
196
|
+
}
|
|
182
197
|
facade = (_a = this.configuration) === null || _a === void 0 ? void 0 : _a.apiFacade;
|
|
183
198
|
if (!facade) {
|
|
184
199
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -247,8 +262,15 @@ var MailApi = /** @class */ (function (_super) {
|
|
|
247
262
|
if (requestParameters['xTenant'] != null) {
|
|
248
263
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
249
264
|
}
|
|
265
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
266
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
267
|
+
}
|
|
250
268
|
urlPath = "/characters/{character_id}/mail";
|
|
251
269
|
urlPath = urlPath.replace("{".concat("character_id", "}"), encodeURIComponent(String(requestParameters['characterId'])));
|
|
270
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
271
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
272
|
+
headerParameters['X-Compatibility-Date'] = constants_1.ESI_COMPATIBILITY_DATE;
|
|
273
|
+
}
|
|
252
274
|
facade = (_a = this.configuration) === null || _a === void 0 ? void 0 : _a.apiFacade;
|
|
253
275
|
if (!facade) {
|
|
254
276
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -314,8 +336,15 @@ var MailApi = /** @class */ (function (_super) {
|
|
|
314
336
|
if (requestParameters['xTenant'] != null) {
|
|
315
337
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
316
338
|
}
|
|
339
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
340
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
341
|
+
}
|
|
317
342
|
urlPath = "/characters/{character_id}/mail/labels";
|
|
318
343
|
urlPath = urlPath.replace("{".concat("character_id", "}"), encodeURIComponent(String(requestParameters['characterId'])));
|
|
344
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
345
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
346
|
+
headerParameters['X-Compatibility-Date'] = constants_1.ESI_COMPATIBILITY_DATE;
|
|
347
|
+
}
|
|
319
348
|
facade = (_a = this.configuration) === null || _a === void 0 ? void 0 : _a.apiFacade;
|
|
320
349
|
if (!facade) {
|
|
321
350
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -381,8 +410,15 @@ var MailApi = /** @class */ (function (_super) {
|
|
|
381
410
|
if (requestParameters['xTenant'] != null) {
|
|
382
411
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
383
412
|
}
|
|
413
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
414
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
415
|
+
}
|
|
384
416
|
urlPath = "/characters/{character_id}/mail/lists";
|
|
385
417
|
urlPath = urlPath.replace("{".concat("character_id", "}"), encodeURIComponent(String(requestParameters['characterId'])));
|
|
418
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
419
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
420
|
+
headerParameters['X-Compatibility-Date'] = constants_1.ESI_COMPATIBILITY_DATE;
|
|
421
|
+
}
|
|
386
422
|
facade = (_a = this.configuration) === null || _a === void 0 ? void 0 : _a.apiFacade;
|
|
387
423
|
if (!facade) {
|
|
388
424
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -451,9 +487,16 @@ var MailApi = /** @class */ (function (_super) {
|
|
|
451
487
|
if (requestParameters['xTenant'] != null) {
|
|
452
488
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
453
489
|
}
|
|
490
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
491
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
492
|
+
}
|
|
454
493
|
urlPath = "/characters/{character_id}/mail/{mail_id}";
|
|
455
494
|
urlPath = urlPath.replace("{".concat("character_id", "}"), encodeURIComponent(String(requestParameters['characterId'])));
|
|
456
495
|
urlPath = urlPath.replace("{".concat("mail_id", "}"), encodeURIComponent(String(requestParameters['mailId'])));
|
|
496
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
497
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
498
|
+
headerParameters['X-Compatibility-Date'] = constants_1.ESI_COMPATIBILITY_DATE;
|
|
499
|
+
}
|
|
457
500
|
facade = (_a = this.configuration) === null || _a === void 0 ? void 0 : _a.apiFacade;
|
|
458
501
|
if (!facade) {
|
|
459
502
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -523,8 +566,15 @@ var MailApi = /** @class */ (function (_super) {
|
|
|
523
566
|
if (requestParameters['xTenant'] != null) {
|
|
524
567
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
525
568
|
}
|
|
569
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
570
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
571
|
+
}
|
|
526
572
|
urlPath = "/characters/{character_id}/mail";
|
|
527
573
|
urlPath = urlPath.replace("{".concat("character_id", "}"), encodeURIComponent(String(requestParameters['characterId'])));
|
|
574
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
575
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
576
|
+
headerParameters['X-Compatibility-Date'] = constants_1.ESI_COMPATIBILITY_DATE;
|
|
577
|
+
}
|
|
528
578
|
facade = (_a = this.configuration) === null || _a === void 0 ? void 0 : _a.apiFacade;
|
|
529
579
|
if (!facade) {
|
|
530
580
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -595,8 +645,15 @@ var MailApi = /** @class */ (function (_super) {
|
|
|
595
645
|
if (requestParameters['xTenant'] != null) {
|
|
596
646
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
597
647
|
}
|
|
648
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
649
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
650
|
+
}
|
|
598
651
|
urlPath = "/characters/{character_id}/mail/labels";
|
|
599
652
|
urlPath = urlPath.replace("{".concat("character_id", "}"), encodeURIComponent(String(requestParameters['characterId'])));
|
|
653
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
654
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
655
|
+
headerParameters['X-Compatibility-Date'] = constants_1.ESI_COMPATIBILITY_DATE;
|
|
656
|
+
}
|
|
600
657
|
facade = (_a = this.configuration) === null || _a === void 0 ? void 0 : _a.apiFacade;
|
|
601
658
|
if (!facade) {
|
|
602
659
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
@@ -670,9 +727,16 @@ var MailApi = /** @class */ (function (_super) {
|
|
|
670
727
|
if (requestParameters['xTenant'] != null) {
|
|
671
728
|
headerParameters['X-Tenant'] = String(requestParameters['xTenant']);
|
|
672
729
|
}
|
|
730
|
+
if (requestParameters['ifModifiedSince'] != null) {
|
|
731
|
+
headerParameters['If-Modified-Since'] = String(requestParameters['ifModifiedSince']);
|
|
732
|
+
}
|
|
673
733
|
urlPath = "/characters/{character_id}/mail/{mail_id}";
|
|
674
734
|
urlPath = urlPath.replace("{".concat("character_id", "}"), encodeURIComponent(String(requestParameters['characterId'])));
|
|
675
735
|
urlPath = urlPath.replace("{".concat("mail_id", "}"), encodeURIComponent(String(requestParameters['mailId'])));
|
|
736
|
+
// Auto-inject X-Compatibility-Date if not already provided
|
|
737
|
+
if (!headerParameters['X-Compatibility-Date']) {
|
|
738
|
+
headerParameters['X-Compatibility-Date'] = constants_1.ESI_COMPATIBILITY_DATE;
|
|
739
|
+
}
|
|
676
740
|
facade = (_a = this.configuration) === null || _a === void 0 ? void 0 : _a.apiFacade;
|
|
677
741
|
if (!facade) {
|
|
678
742
|
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
package/dist/apis/MarketApi.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export interface GetCharactersCharacterIdOrdersRequest {
|
|
|
17
17
|
acceptLanguage?: GetCharactersCharacterIdOrdersAcceptLanguageEnum;
|
|
18
18
|
ifNoneMatch?: string;
|
|
19
19
|
xTenant?: string;
|
|
20
|
+
ifModifiedSince?: string;
|
|
20
21
|
}
|
|
21
22
|
export interface GetCharactersCharacterIdOrdersHistoryRequest {
|
|
22
23
|
characterId: number;
|
|
@@ -25,6 +26,7 @@ export interface GetCharactersCharacterIdOrdersHistoryRequest {
|
|
|
25
26
|
acceptLanguage?: GetCharactersCharacterIdOrdersHistoryAcceptLanguageEnum;
|
|
26
27
|
ifNoneMatch?: string;
|
|
27
28
|
xTenant?: string;
|
|
29
|
+
ifModifiedSince?: string;
|
|
28
30
|
}
|
|
29
31
|
export interface GetCorporationsCorporationIdOrdersRequest {
|
|
30
32
|
corporationId: number;
|
|
@@ -33,6 +35,7 @@ export interface GetCorporationsCorporationIdOrdersRequest {
|
|
|
33
35
|
acceptLanguage?: GetCorporationsCorporationIdOrdersAcceptLanguageEnum;
|
|
34
36
|
ifNoneMatch?: string;
|
|
35
37
|
xTenant?: string;
|
|
38
|
+
ifModifiedSince?: string;
|
|
36
39
|
}
|
|
37
40
|
export interface GetCorporationsCorporationIdOrdersHistoryRequest {
|
|
38
41
|
corporationId: number;
|
|
@@ -41,12 +44,14 @@ export interface GetCorporationsCorporationIdOrdersHistoryRequest {
|
|
|
41
44
|
acceptLanguage?: GetCorporationsCorporationIdOrdersHistoryAcceptLanguageEnum;
|
|
42
45
|
ifNoneMatch?: string;
|
|
43
46
|
xTenant?: string;
|
|
47
|
+
ifModifiedSince?: string;
|
|
44
48
|
}
|
|
45
49
|
export interface GetMarketsGroupsRequest {
|
|
46
50
|
xCompatibilityDate: GetMarketsGroupsXCompatibilityDateEnum;
|
|
47
51
|
acceptLanguage?: GetMarketsGroupsAcceptLanguageEnum;
|
|
48
52
|
ifNoneMatch?: string;
|
|
49
53
|
xTenant?: string;
|
|
54
|
+
ifModifiedSince?: string;
|
|
50
55
|
}
|
|
51
56
|
export interface GetMarketsGroupsMarketGroupIdRequest {
|
|
52
57
|
marketGroupId: number;
|
|
@@ -54,12 +59,14 @@ export interface GetMarketsGroupsMarketGroupIdRequest {
|
|
|
54
59
|
acceptLanguage?: GetMarketsGroupsMarketGroupIdAcceptLanguageEnum;
|
|
55
60
|
ifNoneMatch?: string;
|
|
56
61
|
xTenant?: string;
|
|
62
|
+
ifModifiedSince?: string;
|
|
57
63
|
}
|
|
58
64
|
export interface GetMarketsPricesRequest {
|
|
59
65
|
xCompatibilityDate: GetMarketsPricesXCompatibilityDateEnum;
|
|
60
66
|
acceptLanguage?: GetMarketsPricesAcceptLanguageEnum;
|
|
61
67
|
ifNoneMatch?: string;
|
|
62
68
|
xTenant?: string;
|
|
69
|
+
ifModifiedSince?: string;
|
|
63
70
|
}
|
|
64
71
|
export interface GetMarketsRegionIdHistoryRequest {
|
|
65
72
|
regionId: number;
|
|
@@ -68,6 +75,7 @@ export interface GetMarketsRegionIdHistoryRequest {
|
|
|
68
75
|
acceptLanguage?: GetMarketsRegionIdHistoryAcceptLanguageEnum;
|
|
69
76
|
ifNoneMatch?: string;
|
|
70
77
|
xTenant?: string;
|
|
78
|
+
ifModifiedSince?: string;
|
|
71
79
|
}
|
|
72
80
|
export interface GetMarketsRegionIdOrdersRequest {
|
|
73
81
|
orderType: GetMarketsRegionIdOrdersOrderTypeEnum;
|
|
@@ -78,6 +86,7 @@ export interface GetMarketsRegionIdOrdersRequest {
|
|
|
78
86
|
acceptLanguage?: GetMarketsRegionIdOrdersAcceptLanguageEnum;
|
|
79
87
|
ifNoneMatch?: string;
|
|
80
88
|
xTenant?: string;
|
|
89
|
+
ifModifiedSince?: string;
|
|
81
90
|
}
|
|
82
91
|
export interface GetMarketsRegionIdTypesRequest {
|
|
83
92
|
regionId: number;
|
|
@@ -86,6 +95,7 @@ export interface GetMarketsRegionIdTypesRequest {
|
|
|
86
95
|
acceptLanguage?: GetMarketsRegionIdTypesAcceptLanguageEnum;
|
|
87
96
|
ifNoneMatch?: string;
|
|
88
97
|
xTenant?: string;
|
|
98
|
+
ifModifiedSince?: string;
|
|
89
99
|
}
|
|
90
100
|
export interface GetMarketsStructuresStructureIdRequest {
|
|
91
101
|
structureId: number;
|
|
@@ -94,6 +104,7 @@ export interface GetMarketsStructuresStructureIdRequest {
|
|
|
94
104
|
acceptLanguage?: GetMarketsStructuresStructureIdAcceptLanguageEnum;
|
|
95
105
|
ifNoneMatch?: string;
|
|
96
106
|
xTenant?: string;
|
|
107
|
+
ifModifiedSince?: string;
|
|
97
108
|
}
|
|
98
109
|
/**
|
|
99
110
|
* MarketApi - interface
|
|
@@ -110,6 +121,7 @@ export interface MarketApiInterface {
|
|
|
110
121
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
111
122
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
112
123
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
124
|
+
* @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.
|
|
113
125
|
* @param {*} [options] Override http request option.
|
|
114
126
|
* @throws {RequiredError}
|
|
115
127
|
* @memberof MarketApiInterface
|
|
@@ -129,6 +141,7 @@ export interface MarketApiInterface {
|
|
|
129
141
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
130
142
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
131
143
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
144
|
+
* @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.
|
|
132
145
|
* @param {*} [options] Override http request option.
|
|
133
146
|
* @throws {RequiredError}
|
|
134
147
|
* @memberof MarketApiInterface
|
|
@@ -148,6 +161,7 @@ export interface MarketApiInterface {
|
|
|
148
161
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
149
162
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
150
163
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
164
|
+
* @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.
|
|
151
165
|
* @param {*} [options] Override http request option.
|
|
152
166
|
* @throws {RequiredError}
|
|
153
167
|
* @memberof MarketApiInterface
|
|
@@ -167,6 +181,7 @@ export interface MarketApiInterface {
|
|
|
167
181
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
168
182
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
169
183
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
184
|
+
* @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.
|
|
170
185
|
* @param {*} [options] Override http request option.
|
|
171
186
|
* @throws {RequiredError}
|
|
172
187
|
* @memberof MarketApiInterface
|
|
@@ -184,6 +199,7 @@ export interface MarketApiInterface {
|
|
|
184
199
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
185
200
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
186
201
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
202
|
+
* @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.
|
|
187
203
|
* @param {*} [options] Override http request option.
|
|
188
204
|
* @throws {RequiredError}
|
|
189
205
|
* @memberof MarketApiInterface
|
|
@@ -202,6 +218,7 @@ export interface MarketApiInterface {
|
|
|
202
218
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
203
219
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
204
220
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
221
|
+
* @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.
|
|
205
222
|
* @param {*} [options] Override http request option.
|
|
206
223
|
* @throws {RequiredError}
|
|
207
224
|
* @memberof MarketApiInterface
|
|
@@ -219,6 +236,7 @@ export interface MarketApiInterface {
|
|
|
219
236
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
220
237
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
221
238
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
239
|
+
* @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.
|
|
222
240
|
* @param {*} [options] Override http request option.
|
|
223
241
|
* @throws {RequiredError}
|
|
224
242
|
* @memberof MarketApiInterface
|
|
@@ -238,6 +256,7 @@ export interface MarketApiInterface {
|
|
|
238
256
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
239
257
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
240
258
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
259
|
+
* @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
260
|
* @param {*} [options] Override http request option.
|
|
242
261
|
* @throws {RequiredError}
|
|
243
262
|
* @memberof MarketApiInterface
|
|
@@ -259,6 +278,7 @@ export interface MarketApiInterface {
|
|
|
259
278
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
260
279
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
261
280
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
281
|
+
* @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.
|
|
262
282
|
* @param {*} [options] Override http request option.
|
|
263
283
|
* @throws {RequiredError}
|
|
264
284
|
* @memberof MarketApiInterface
|
|
@@ -278,6 +298,7 @@ export interface MarketApiInterface {
|
|
|
278
298
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
279
299
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
280
300
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
301
|
+
* @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.
|
|
281
302
|
* @param {*} [options] Override http request option.
|
|
282
303
|
* @throws {RequiredError}
|
|
283
304
|
* @memberof MarketApiInterface
|
|
@@ -297,6 +318,7 @@ export interface MarketApiInterface {
|
|
|
297
318
|
* @param {'en' | 'de' | 'fr' | 'ja' | 'ru' | 'zh' | 'ko' | 'es'} [acceptLanguage] The language to use for the response.
|
|
298
319
|
* @param {string} [ifNoneMatch] The ETag of the previous request. A 304 will be returned if this matches the current ETag.
|
|
299
320
|
* @param {string} [xTenant] The tenant ID for the request.
|
|
321
|
+
* @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.
|
|
300
322
|
* @param {*} [options] Override http request option.
|
|
301
323
|
* @throws {RequiredError}
|
|
302
324
|
* @memberof MarketApiInterface
|