esisl_genoa_client 0.1.0 → 0.1.1
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 +2 -2
- package/dist/apis/AllianceApi.js +40 -21
- package/dist/apis/AssetsApi.js +60 -31
- package/dist/apis/CalendarApi.js +40 -21
- package/dist/apis/CharacterApi.js +140 -71
- package/dist/apis/ClonesApi.js +20 -11
- package/dist/apis/ContactsApi.js +90 -46
- package/dist/apis/ContractsApi.js +90 -46
- package/dist/apis/CorporationApi.js +220 -111
- package/dist/apis/DogmaApi.js +50 -26
- package/dist/apis/FactionWarfareApi.js +80 -41
- package/dist/apis/FittingsApi.js +30 -16
- package/dist/apis/FleetsApi.js +140 -71
- package/dist/apis/IncursionsApi.js +10 -6
- package/dist/apis/IndustryApi.js +80 -41
- package/dist/apis/InsuranceApi.js +10 -6
- package/dist/apis/KillmailsApi.js +30 -16
- package/dist/apis/LocationApi.js +30 -16
- package/dist/apis/LoyaltyApi.js +20 -11
- package/dist/apis/MailApi.js +90 -46
- package/dist/apis/MarketApi.js +110 -56
- package/dist/apis/MetaApi.js +20 -11
- package/dist/apis/PlanetaryInteractionApi.js +40 -21
- package/dist/apis/RoutesApi.js +10 -6
- package/dist/apis/SearchApi.js +10 -6
- package/dist/apis/SkillsApi.js +30 -16
- package/dist/apis/SovereigntyApi.js +30 -16
- package/dist/apis/StatusApi.js +10 -6
- package/dist/apis/UniverseApi.js +300 -151
- package/dist/apis/UserInterfaceApi.js +50 -26
- package/dist/apis/WalletApi.js +60 -31
- package/dist/apis/WarsApi.js +30 -16
- package/dist/runtime.d.ts +2 -0
- package/dist/runtime.js +7 -0
- package/esisl_genoa_client-0.1.1.tgz +0 -0
- package/package.json +1 -1
- package/src/apis/AllianceApi.ts +25 -5
- package/src/apis/AssetsApi.ts +37 -7
- package/src/apis/CalendarApi.ts +25 -5
- package/src/apis/CharacterApi.ts +85 -15
- package/src/apis/ClonesApi.ts +13 -3
- package/src/apis/ContactsApi.ts +55 -10
- package/src/apis/ContractsApi.ts +55 -10
- package/src/apis/CorporationApi.ts +133 -23
- package/src/apis/DogmaApi.ts +31 -6
- package/src/apis/FactionWarfareApi.ts +49 -9
- package/src/apis/FittingsApi.ts +19 -4
- package/src/apis/FleetsApi.ts +85 -15
- package/src/apis/IncursionsApi.ts +7 -2
- package/src/apis/IndustryApi.ts +49 -9
- package/src/apis/InsuranceApi.ts +7 -2
- package/src/apis/KillmailsApi.ts +19 -4
- package/src/apis/LocationApi.ts +19 -4
- package/src/apis/LoyaltyApi.ts +13 -3
- package/src/apis/MailApi.ts +55 -10
- package/src/apis/MarketApi.ts +67 -12
- package/src/apis/MetaApi.ts +13 -3
- package/src/apis/PlanetaryInteractionApi.ts +25 -5
- package/src/apis/RoutesApi.ts +7 -2
- package/src/apis/SearchApi.ts +7 -2
- package/src/apis/SkillsApi.ts +19 -4
- package/src/apis/SovereigntyApi.ts +19 -4
- package/src/apis/StatusApi.ts +7 -2
- package/src/apis/UniverseApi.ts +181 -31
- package/src/apis/UserInterfaceApi.ts +31 -6
- package/src/apis/WalletApi.ts +37 -7
- package/src/apis/WarsApi.ts +19 -4
- package/src/runtime.ts +5 -0
package/src/apis/MarketApi.ts
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
import * as runtime from '../runtime';
|
|
17
|
-
|
|
17
|
+
|
|
18
18
|
import type {
|
|
19
19
|
CharactersCharacterIdOrdersGetInner,
|
|
20
20
|
CharactersCharacterIdOrdersHistoryGetInner,
|
|
@@ -413,7 +413,12 @@ export class MarketApi extends runtime.BaseAPI implements MarketApiInterface {
|
|
|
413
413
|
let urlPath = `/characters/{character_id}/orders`;
|
|
414
414
|
urlPath = urlPath.replace(`{${"character_id"}}`, encodeURIComponent(String(requestParameters['characterId'])));
|
|
415
415
|
|
|
416
|
-
const
|
|
416
|
+
const facade = this.configuration?.apiFacade;
|
|
417
|
+
if (!facade) {
|
|
418
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
const response = await facade.esi.proxy({
|
|
417
422
|
path: urlPath,
|
|
418
423
|
method: 'GET',
|
|
419
424
|
headers: headerParameters,
|
|
@@ -486,7 +491,12 @@ export class MarketApi extends runtime.BaseAPI implements MarketApiInterface {
|
|
|
486
491
|
let urlPath = `/characters/{character_id}/orders/history`;
|
|
487
492
|
urlPath = urlPath.replace(`{${"character_id"}}`, encodeURIComponent(String(requestParameters['characterId'])));
|
|
488
493
|
|
|
489
|
-
const
|
|
494
|
+
const facade = this.configuration?.apiFacade;
|
|
495
|
+
if (!facade) {
|
|
496
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
const response = await facade.esi.proxy({
|
|
490
500
|
path: urlPath,
|
|
491
501
|
method: 'GET',
|
|
492
502
|
headers: headerParameters,
|
|
@@ -559,7 +569,12 @@ export class MarketApi extends runtime.BaseAPI implements MarketApiInterface {
|
|
|
559
569
|
let urlPath = `/corporations/{corporation_id}/orders`;
|
|
560
570
|
urlPath = urlPath.replace(`{${"corporation_id"}}`, encodeURIComponent(String(requestParameters['corporationId'])));
|
|
561
571
|
|
|
562
|
-
const
|
|
572
|
+
const facade = this.configuration?.apiFacade;
|
|
573
|
+
if (!facade) {
|
|
574
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
const response = await facade.esi.proxy({
|
|
563
578
|
path: urlPath,
|
|
564
579
|
method: 'GET',
|
|
565
580
|
headers: headerParameters,
|
|
@@ -632,7 +647,12 @@ export class MarketApi extends runtime.BaseAPI implements MarketApiInterface {
|
|
|
632
647
|
let urlPath = `/corporations/{corporation_id}/orders/history`;
|
|
633
648
|
urlPath = urlPath.replace(`{${"corporation_id"}}`, encodeURIComponent(String(requestParameters['corporationId'])));
|
|
634
649
|
|
|
635
|
-
const
|
|
650
|
+
const facade = this.configuration?.apiFacade;
|
|
651
|
+
if (!facade) {
|
|
652
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
const response = await facade.esi.proxy({
|
|
636
656
|
path: urlPath,
|
|
637
657
|
method: 'GET',
|
|
638
658
|
headers: headerParameters,
|
|
@@ -688,7 +708,12 @@ export class MarketApi extends runtime.BaseAPI implements MarketApiInterface {
|
|
|
688
708
|
|
|
689
709
|
let urlPath = `/markets/groups`;
|
|
690
710
|
|
|
691
|
-
const
|
|
711
|
+
const facade = this.configuration?.apiFacade;
|
|
712
|
+
if (!facade) {
|
|
713
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
const response = await facade.esi.proxy({
|
|
692
717
|
path: urlPath,
|
|
693
718
|
method: 'GET',
|
|
694
719
|
headers: headerParameters,
|
|
@@ -752,7 +777,12 @@ export class MarketApi extends runtime.BaseAPI implements MarketApiInterface {
|
|
|
752
777
|
let urlPath = `/markets/groups/{market_group_id}`;
|
|
753
778
|
urlPath = urlPath.replace(`{${"market_group_id"}}`, encodeURIComponent(String(requestParameters['marketGroupId'])));
|
|
754
779
|
|
|
755
|
-
const
|
|
780
|
+
const facade = this.configuration?.apiFacade;
|
|
781
|
+
if (!facade) {
|
|
782
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
const response = await facade.esi.proxy({
|
|
756
786
|
path: urlPath,
|
|
757
787
|
method: 'GET',
|
|
758
788
|
headers: headerParameters,
|
|
@@ -808,7 +838,12 @@ export class MarketApi extends runtime.BaseAPI implements MarketApiInterface {
|
|
|
808
838
|
|
|
809
839
|
let urlPath = `/markets/prices`;
|
|
810
840
|
|
|
811
|
-
const
|
|
841
|
+
const facade = this.configuration?.apiFacade;
|
|
842
|
+
if (!facade) {
|
|
843
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
const response = await facade.esi.proxy({
|
|
812
847
|
path: urlPath,
|
|
813
848
|
method: 'GET',
|
|
814
849
|
headers: headerParameters,
|
|
@@ -883,7 +918,12 @@ export class MarketApi extends runtime.BaseAPI implements MarketApiInterface {
|
|
|
883
918
|
let urlPath = `/markets/{region_id}/history`;
|
|
884
919
|
urlPath = urlPath.replace(`{${"region_id"}}`, encodeURIComponent(String(requestParameters['regionId'])));
|
|
885
920
|
|
|
886
|
-
const
|
|
921
|
+
const facade = this.configuration?.apiFacade;
|
|
922
|
+
if (!facade) {
|
|
923
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
const response = await facade.esi.proxy({
|
|
887
927
|
path: urlPath,
|
|
888
928
|
method: 'GET',
|
|
889
929
|
headers: headerParameters,
|
|
@@ -966,7 +1006,12 @@ export class MarketApi extends runtime.BaseAPI implements MarketApiInterface {
|
|
|
966
1006
|
let urlPath = `/markets/{region_id}/orders`;
|
|
967
1007
|
urlPath = urlPath.replace(`{${"region_id"}}`, encodeURIComponent(String(requestParameters['regionId'])));
|
|
968
1008
|
|
|
969
|
-
const
|
|
1009
|
+
const facade = this.configuration?.apiFacade;
|
|
1010
|
+
if (!facade) {
|
|
1011
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
const response = await facade.esi.proxy({
|
|
970
1015
|
path: urlPath,
|
|
971
1016
|
method: 'GET',
|
|
972
1017
|
headers: headerParameters,
|
|
@@ -1034,7 +1079,12 @@ export class MarketApi extends runtime.BaseAPI implements MarketApiInterface {
|
|
|
1034
1079
|
let urlPath = `/markets/{region_id}/types`;
|
|
1035
1080
|
urlPath = urlPath.replace(`{${"region_id"}}`, encodeURIComponent(String(requestParameters['regionId'])));
|
|
1036
1081
|
|
|
1037
|
-
const
|
|
1082
|
+
const facade = this.configuration?.apiFacade;
|
|
1083
|
+
if (!facade) {
|
|
1084
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
const response = await facade.esi.proxy({
|
|
1038
1088
|
path: urlPath,
|
|
1039
1089
|
method: 'GET',
|
|
1040
1090
|
headers: headerParameters,
|
|
@@ -1107,7 +1157,12 @@ export class MarketApi extends runtime.BaseAPI implements MarketApiInterface {
|
|
|
1107
1157
|
let urlPath = `/markets/structures/{structure_id}`;
|
|
1108
1158
|
urlPath = urlPath.replace(`{${"structure_id"}}`, encodeURIComponent(String(requestParameters['structureId'])));
|
|
1109
1159
|
|
|
1110
|
-
const
|
|
1160
|
+
const facade = this.configuration?.apiFacade;
|
|
1161
|
+
if (!facade) {
|
|
1162
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1165
|
+
const response = await facade.esi.proxy({
|
|
1111
1166
|
path: urlPath,
|
|
1112
1167
|
method: 'GET',
|
|
1113
1168
|
headers: headerParameters,
|
package/src/apis/MetaApi.ts
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
import * as runtime from '../runtime';
|
|
17
|
-
|
|
17
|
+
|
|
18
18
|
import type {
|
|
19
19
|
MetaChangelog,
|
|
20
20
|
MetaCompatibilityDates,
|
|
@@ -123,7 +123,12 @@ export class MetaApi extends runtime.BaseAPI implements MetaApiInterface {
|
|
|
123
123
|
|
|
124
124
|
let urlPath = `/meta/changelog`;
|
|
125
125
|
|
|
126
|
-
const
|
|
126
|
+
const facade = this.configuration?.apiFacade;
|
|
127
|
+
if (!facade) {
|
|
128
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
const response = await facade.esi.proxy({
|
|
127
132
|
path: urlPath,
|
|
128
133
|
method: 'GET',
|
|
129
134
|
headers: headerParameters,
|
|
@@ -179,7 +184,12 @@ export class MetaApi extends runtime.BaseAPI implements MetaApiInterface {
|
|
|
179
184
|
|
|
180
185
|
let urlPath = `/meta/compatibility-dates`;
|
|
181
186
|
|
|
182
|
-
const
|
|
187
|
+
const facade = this.configuration?.apiFacade;
|
|
188
|
+
if (!facade) {
|
|
189
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
const response = await facade.esi.proxy({
|
|
183
193
|
path: urlPath,
|
|
184
194
|
method: 'GET',
|
|
185
195
|
headers: headerParameters,
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
import * as runtime from '../runtime';
|
|
17
|
-
|
|
17
|
+
|
|
18
18
|
import type {
|
|
19
19
|
CharactersCharacterIdPlanetsGetInner,
|
|
20
20
|
CharactersCharacterIdPlanetsPlanetIdGet,
|
|
@@ -202,7 +202,12 @@ export class PlanetaryInteractionApi extends runtime.BaseAPI implements Planetar
|
|
|
202
202
|
let urlPath = `/characters/{character_id}/planets`;
|
|
203
203
|
urlPath = urlPath.replace(`{${"character_id"}}`, encodeURIComponent(String(requestParameters['characterId'])));
|
|
204
204
|
|
|
205
|
-
const
|
|
205
|
+
const facade = this.configuration?.apiFacade;
|
|
206
|
+
if (!facade) {
|
|
207
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
const response = await facade.esi.proxy({
|
|
206
211
|
path: urlPath,
|
|
207
212
|
method: 'GET',
|
|
208
213
|
headers: headerParameters,
|
|
@@ -279,7 +284,12 @@ export class PlanetaryInteractionApi extends runtime.BaseAPI implements Planetar
|
|
|
279
284
|
urlPath = urlPath.replace(`{${"character_id"}}`, encodeURIComponent(String(requestParameters['characterId'])));
|
|
280
285
|
urlPath = urlPath.replace(`{${"planet_id"}}`, encodeURIComponent(String(requestParameters['planetId'])));
|
|
281
286
|
|
|
282
|
-
const
|
|
287
|
+
const facade = this.configuration?.apiFacade;
|
|
288
|
+
if (!facade) {
|
|
289
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
const response = await facade.esi.proxy({
|
|
283
293
|
path: urlPath,
|
|
284
294
|
method: 'GET',
|
|
285
295
|
headers: headerParameters,
|
|
@@ -352,7 +362,12 @@ export class PlanetaryInteractionApi extends runtime.BaseAPI implements Planetar
|
|
|
352
362
|
let urlPath = `/corporations/{corporation_id}/customs_offices`;
|
|
353
363
|
urlPath = urlPath.replace(`{${"corporation_id"}}`, encodeURIComponent(String(requestParameters['corporationId'])));
|
|
354
364
|
|
|
355
|
-
const
|
|
365
|
+
const facade = this.configuration?.apiFacade;
|
|
366
|
+
if (!facade) {
|
|
367
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
const response = await facade.esi.proxy({
|
|
356
371
|
path: urlPath,
|
|
357
372
|
method: 'GET',
|
|
358
373
|
headers: headerParameters,
|
|
@@ -416,7 +431,12 @@ export class PlanetaryInteractionApi extends runtime.BaseAPI implements Planetar
|
|
|
416
431
|
let urlPath = `/universe/schematics/{schematic_id}`;
|
|
417
432
|
urlPath = urlPath.replace(`{${"schematic_id"}}`, encodeURIComponent(String(requestParameters['schematicId'])));
|
|
418
433
|
|
|
419
|
-
const
|
|
434
|
+
const facade = this.configuration?.apiFacade;
|
|
435
|
+
if (!facade) {
|
|
436
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
const response = await facade.esi.proxy({
|
|
420
440
|
path: urlPath,
|
|
421
441
|
method: 'GET',
|
|
422
442
|
headers: headerParameters,
|
package/src/apis/RoutesApi.ts
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
import * as runtime from '../runtime';
|
|
17
|
-
|
|
17
|
+
|
|
18
18
|
|
|
19
19
|
export interface GetRouteOriginDestinationRequest {
|
|
20
20
|
destination: number;
|
|
@@ -131,7 +131,12 @@ export class RoutesApi extends runtime.BaseAPI implements RoutesApiInterface {
|
|
|
131
131
|
urlPath = urlPath.replace(`{${"destination"}}`, encodeURIComponent(String(requestParameters['destination'])));
|
|
132
132
|
urlPath = urlPath.replace(`{${"origin"}}`, encodeURIComponent(String(requestParameters['origin'])));
|
|
133
133
|
|
|
134
|
-
const
|
|
134
|
+
const facade = this.configuration?.apiFacade;
|
|
135
|
+
if (!facade) {
|
|
136
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
const response = await facade.esi.proxy({
|
|
135
140
|
path: urlPath,
|
|
136
141
|
method: 'GET',
|
|
137
142
|
headers: headerParameters,
|
package/src/apis/SearchApi.ts
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
import * as runtime from '../runtime';
|
|
17
|
-
|
|
17
|
+
|
|
18
18
|
import type {
|
|
19
19
|
CharactersCharacterIdSearchGet,
|
|
20
20
|
} from '../models/index';
|
|
@@ -143,7 +143,12 @@ export class SearchApi extends runtime.BaseAPI implements SearchApiInterface {
|
|
|
143
143
|
let urlPath = `/characters/{character_id}/search`;
|
|
144
144
|
urlPath = urlPath.replace(`{${"character_id"}}`, encodeURIComponent(String(requestParameters['characterId'])));
|
|
145
145
|
|
|
146
|
-
const
|
|
146
|
+
const facade = this.configuration?.apiFacade;
|
|
147
|
+
if (!facade) {
|
|
148
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
const response = await facade.esi.proxy({
|
|
147
152
|
path: urlPath,
|
|
148
153
|
method: 'GET',
|
|
149
154
|
headers: headerParameters,
|
package/src/apis/SkillsApi.ts
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
import * as runtime from '../runtime';
|
|
17
|
-
|
|
17
|
+
|
|
18
18
|
import type {
|
|
19
19
|
CharactersCharacterIdAttributesGet,
|
|
20
20
|
CharactersCharacterIdSkillqueueGetInner,
|
|
@@ -169,7 +169,12 @@ export class SkillsApi extends runtime.BaseAPI implements SkillsApiInterface {
|
|
|
169
169
|
let urlPath = `/characters/{character_id}/attributes`;
|
|
170
170
|
urlPath = urlPath.replace(`{${"character_id"}}`, encodeURIComponent(String(requestParameters['characterId'])));
|
|
171
171
|
|
|
172
|
-
const
|
|
172
|
+
const facade = this.configuration?.apiFacade;
|
|
173
|
+
if (!facade) {
|
|
174
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
const response = await facade.esi.proxy({
|
|
173
178
|
path: urlPath,
|
|
174
179
|
method: 'GET',
|
|
175
180
|
headers: headerParameters,
|
|
@@ -238,7 +243,12 @@ export class SkillsApi extends runtime.BaseAPI implements SkillsApiInterface {
|
|
|
238
243
|
let urlPath = `/characters/{character_id}/skillqueue`;
|
|
239
244
|
urlPath = urlPath.replace(`{${"character_id"}}`, encodeURIComponent(String(requestParameters['characterId'])));
|
|
240
245
|
|
|
241
|
-
const
|
|
246
|
+
const facade = this.configuration?.apiFacade;
|
|
247
|
+
if (!facade) {
|
|
248
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
const response = await facade.esi.proxy({
|
|
242
252
|
path: urlPath,
|
|
243
253
|
method: 'GET',
|
|
244
254
|
headers: headerParameters,
|
|
@@ -307,7 +317,12 @@ export class SkillsApi extends runtime.BaseAPI implements SkillsApiInterface {
|
|
|
307
317
|
let urlPath = `/characters/{character_id}/skills`;
|
|
308
318
|
urlPath = urlPath.replace(`{${"character_id"}}`, encodeURIComponent(String(requestParameters['characterId'])));
|
|
309
319
|
|
|
310
|
-
const
|
|
320
|
+
const facade = this.configuration?.apiFacade;
|
|
321
|
+
if (!facade) {
|
|
322
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
const response = await facade.esi.proxy({
|
|
311
326
|
path: urlPath,
|
|
312
327
|
method: 'GET',
|
|
313
328
|
headers: headerParameters,
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
import * as runtime from '../runtime';
|
|
17
|
-
|
|
17
|
+
|
|
18
18
|
import type {
|
|
19
19
|
SovereigntyCampaignsGetInner,
|
|
20
20
|
SovereigntyMapGetInner,
|
|
@@ -150,7 +150,12 @@ export class SovereigntyApi extends runtime.BaseAPI implements SovereigntyApiInt
|
|
|
150
150
|
|
|
151
151
|
let urlPath = `/sovereignty/campaigns`;
|
|
152
152
|
|
|
153
|
-
const
|
|
153
|
+
const facade = this.configuration?.apiFacade;
|
|
154
|
+
if (!facade) {
|
|
155
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
const response = await facade.esi.proxy({
|
|
154
159
|
path: urlPath,
|
|
155
160
|
method: 'GET',
|
|
156
161
|
headers: headerParameters,
|
|
@@ -206,7 +211,12 @@ export class SovereigntyApi extends runtime.BaseAPI implements SovereigntyApiInt
|
|
|
206
211
|
|
|
207
212
|
let urlPath = `/sovereignty/map`;
|
|
208
213
|
|
|
209
|
-
const
|
|
214
|
+
const facade = this.configuration?.apiFacade;
|
|
215
|
+
if (!facade) {
|
|
216
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
const response = await facade.esi.proxy({
|
|
210
220
|
path: urlPath,
|
|
211
221
|
method: 'GET',
|
|
212
222
|
headers: headerParameters,
|
|
@@ -262,7 +272,12 @@ export class SovereigntyApi extends runtime.BaseAPI implements SovereigntyApiInt
|
|
|
262
272
|
|
|
263
273
|
let urlPath = `/sovereignty/structures`;
|
|
264
274
|
|
|
265
|
-
const
|
|
275
|
+
const facade = this.configuration?.apiFacade;
|
|
276
|
+
if (!facade) {
|
|
277
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
const response = await facade.esi.proxy({
|
|
266
281
|
path: urlPath,
|
|
267
282
|
method: 'GET',
|
|
268
283
|
headers: headerParameters,
|
package/src/apis/StatusApi.ts
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
import * as runtime from '../runtime';
|
|
17
|
-
|
|
17
|
+
|
|
18
18
|
import type {
|
|
19
19
|
StatusGet,
|
|
20
20
|
} from '../models/index';
|
|
@@ -96,7 +96,12 @@ export class StatusApi extends runtime.BaseAPI implements StatusApiInterface {
|
|
|
96
96
|
|
|
97
97
|
let urlPath = `/status`;
|
|
98
98
|
|
|
99
|
-
const
|
|
99
|
+
const facade = this.configuration?.apiFacade;
|
|
100
|
+
if (!facade) {
|
|
101
|
+
throw new runtime.RequiredError('apiFacade', 'apiFacade is required in Configuration. Provide it via new Configuration({ apiFacade: myFacade })');
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
const response = await facade.esi.proxy({
|
|
100
105
|
path: urlPath,
|
|
101
106
|
method: 'GET',
|
|
102
107
|
headers: headerParameters,
|