eve-esi-client-ts 1.0.8 → 1.0.10
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/.github/workflows/generate.yml +9 -0
- package/README.md +2 -2
- package/api.ts +35 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +35 -1
- package/dist/api.js +35 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +35 -1
- package/dist/esm/api.js +35 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
|
@@ -33,6 +33,7 @@ jobs:
|
|
|
33
33
|
openapi-file: swagger.json
|
|
34
34
|
command-args: --minimal-update --additional-properties=supportsES6=true,npmName=eve-esi-client-ts,npmVersion=${{ steps.version.outputs.version }},licenseName=MIT --git-user-id=${{ github.repository_owner }} --git-repo-id=${{ github.event.repository.name }} --git-host=github.com
|
|
35
35
|
- name: Process output
|
|
36
|
+
id: check
|
|
36
37
|
run: |
|
|
37
38
|
rsync -a --remove-source-files typescript-axios-client/ .
|
|
38
39
|
rm -rf typescript-axios-client
|
|
@@ -41,21 +42,26 @@ jobs:
|
|
|
41
42
|
git diff --cached
|
|
42
43
|
if git diff --cached --quiet; then
|
|
43
44
|
echo "No changes after client generation. Exiting."
|
|
45
|
+
echo "changed=false" >> $GITHUB_OUTPUT
|
|
44
46
|
exit 0
|
|
45
47
|
fi
|
|
48
|
+
echo "changed=true" >> $GITHUB_OUTPUT
|
|
46
49
|
- name: Bump version
|
|
47
50
|
id: bump
|
|
51
|
+
if: steps.check.outputs.changed == 'true'
|
|
48
52
|
run: |
|
|
49
53
|
git reset --hard
|
|
50
54
|
VERSION=$(npm version patch --tag-version-prefix='' --git-tag-version false)
|
|
51
55
|
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
|
|
52
56
|
- name: Generate new Client
|
|
53
57
|
uses: openapi-generators/openapitools-generator-action@v1
|
|
58
|
+
if: steps.check.outputs.changed == 'true'
|
|
54
59
|
with:
|
|
55
60
|
generator: typescript-axios
|
|
56
61
|
openapi-file: swagger.json
|
|
57
62
|
command-args: --minimal-update --additional-properties=supportsES6=true,npmName=eve-esi-client-ts,npmVersion=${{ steps.bump.outputs.version }},licenseName=MIT --git-user-id=${{ github.repository_owner }} --git-repo-id=${{ github.event.repository.name }} --git-host=github.com
|
|
58
63
|
- name: Process new output
|
|
64
|
+
if: steps.check.outputs.changed == 'true'
|
|
59
65
|
run: |
|
|
60
66
|
rsync -a --remove-source-files typescript-axios-client/ .
|
|
61
67
|
rm -rf typescript-axios-client swagger.json
|
|
@@ -63,15 +69,18 @@ jobs:
|
|
|
63
69
|
git commit -m "Auto generate: ${{ steps.bump.outputs.version }}"
|
|
64
70
|
git push
|
|
65
71
|
- name: Set up Node.js
|
|
72
|
+
if: steps.check.outputs.changed == 'true'
|
|
66
73
|
uses: actions/setup-node@v4
|
|
67
74
|
with:
|
|
68
75
|
node-version: lts/*
|
|
69
76
|
registry-url: 'https://registry.npmjs.org'
|
|
70
77
|
- name: Install dependencies
|
|
78
|
+
if: steps.check.outputs.changed == 'true'
|
|
71
79
|
run: |
|
|
72
80
|
rm -rf node_modules package-lock.json
|
|
73
81
|
npm install
|
|
74
82
|
- name: Publish to NPM
|
|
83
|
+
if: steps.check.outputs.changed == 'true'
|
|
75
84
|
run: npm publish --provenance --access public
|
|
76
85
|
env:
|
|
77
86
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## eve-esi-client-ts@1.0.
|
|
1
|
+
## eve-esi-client-ts@1.0.10
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install eve-esi-client-ts@1.0.
|
|
39
|
+
npm install eve-esi-client-ts@1.0.10 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* EVE Swagger Interface
|
|
5
5
|
* An OpenAPI for EVE Online
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.36
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -390,6 +390,7 @@ export const GetCharactersCharacterIdAssets200OkLocationFlagEnum = {
|
|
|
390
390
|
AssetSafety: 'AssetSafety',
|
|
391
391
|
AutoFit: 'AutoFit',
|
|
392
392
|
BoosterBay: 'BoosterBay',
|
|
393
|
+
CapsuleerDeliveries: 'CapsuleerDeliveries',
|
|
393
394
|
Cargo: 'Cargo',
|
|
394
395
|
CorporationGoalDeliveries: 'CorporationGoalDeliveries',
|
|
395
396
|
CorpseBay: 'CorpseBay',
|
|
@@ -3971,6 +3972,7 @@ export const GetCharactersCharacterIdWalletJournal200OkRefTypeEnum = {
|
|
|
3971
3972
|
AgentSecurityServices: 'agent_security_services',
|
|
3972
3973
|
AgentServicesRendered: 'agent_services_rendered',
|
|
3973
3974
|
AgentsPreward: 'agents_preward',
|
|
3975
|
+
AirCareerProgramReward: 'air_career_program_reward',
|
|
3974
3976
|
AllianceMaintainanceFee: 'alliance_maintainance_fee',
|
|
3975
3977
|
AllianceRegistrationFee: 'alliance_registration_fee',
|
|
3976
3978
|
AllignmentBasedGateToll: 'allignment_based_gate_toll',
|
|
@@ -4044,7 +4046,14 @@ export const GetCharactersCharacterIdWalletJournal200OkRefTypeEnum = {
|
|
|
4044
4046
|
FluxTax: 'flux_tax',
|
|
4045
4047
|
FluxTicketRepayment: 'flux_ticket_repayment',
|
|
4046
4048
|
FluxTicketSale: 'flux_ticket_sale',
|
|
4049
|
+
FreelanceJobsBroadcastingFee: 'freelance_jobs_broadcasting_fee',
|
|
4050
|
+
FreelanceJobsDurationFee: 'freelance_jobs_duration_fee',
|
|
4051
|
+
FreelanceJobsEscrowRefund: 'freelance_jobs_escrow_refund',
|
|
4052
|
+
FreelanceJobsReward: 'freelance_jobs_reward',
|
|
4053
|
+
FreelanceJobsRewardCorporationTax: 'freelance_jobs_reward_corporation_tax',
|
|
4054
|
+
FreelanceJobsRewardEscrow: 'freelance_jobs_reward_escrow',
|
|
4047
4055
|
GmCashTransfer: 'gm_cash_transfer',
|
|
4056
|
+
GmPlexFeeRefund: 'gm_plex_fee_refund',
|
|
4048
4057
|
IndustryJobTax: 'industry_job_tax',
|
|
4049
4058
|
InfrastructureHubMaintenance: 'infrastructure_hub_maintenance',
|
|
4050
4059
|
Inheritance: 'inheritance',
|
|
@@ -4093,6 +4102,7 @@ export const GetCharactersCharacterIdWalletJournal200OkRefTypeEnum = {
|
|
|
4093
4102
|
SecurityProcessingFee: 'security_processing_fee',
|
|
4094
4103
|
Shares: 'shares',
|
|
4095
4104
|
SkillPurchase: 'skill_purchase',
|
|
4105
|
+
SkyhookClaimFee: 'skyhook_claim_fee',
|
|
4096
4106
|
SovereignityBill: 'sovereignity_bill',
|
|
4097
4107
|
StorePurchase: 'store_purchase',
|
|
4098
4108
|
StorePurchaseRefund: 'store_purchase_refund',
|
|
@@ -4639,6 +4649,7 @@ export const GetCorporationsCorporationIdAssets200OkLocationFlagEnum = {
|
|
|
4639
4649
|
Booster: 'Booster',
|
|
4640
4650
|
BoosterBay: 'BoosterBay',
|
|
4641
4651
|
Capsule: 'Capsule',
|
|
4652
|
+
CapsuleerDeliveries: 'CapsuleerDeliveries',
|
|
4642
4653
|
Cargo: 'Cargo',
|
|
4643
4654
|
CorpDeliveries: 'CorpDeliveries',
|
|
4644
4655
|
CorpSag1: 'CorpSAG1',
|
|
@@ -4831,6 +4842,7 @@ export const GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum = {
|
|
|
4831
4842
|
Booster: 'Booster',
|
|
4832
4843
|
BoosterBay: 'BoosterBay',
|
|
4833
4844
|
Capsule: 'Capsule',
|
|
4845
|
+
CapsuleerDeliveries: 'CapsuleerDeliveries',
|
|
4834
4846
|
Cargo: 'Cargo',
|
|
4835
4847
|
CorpDeliveries: 'CorpDeliveries',
|
|
4836
4848
|
CorpSag1: 'CorpSAG1',
|
|
@@ -4840,6 +4852,7 @@ export const GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum = {
|
|
|
4840
4852
|
CorpSag5: 'CorpSAG5',
|
|
4841
4853
|
CorpSag6: 'CorpSAG6',
|
|
4842
4854
|
CorpSag7: 'CorpSAG7',
|
|
4855
|
+
CorporationGoalDeliveries: 'CorporationGoalDeliveries',
|
|
4843
4856
|
CrateLoot: 'CrateLoot',
|
|
4844
4857
|
Deliveries: 'Deliveries',
|
|
4845
4858
|
DroneBay: 'DroneBay',
|
|
@@ -4866,6 +4879,7 @@ export const GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum = {
|
|
|
4866
4879
|
HiddenModifiers: 'HiddenModifiers',
|
|
4867
4880
|
Implant: 'Implant',
|
|
4868
4881
|
Impounded: 'Impounded',
|
|
4882
|
+
InfrastructureHangar: 'InfrastructureHangar',
|
|
4869
4883
|
JunkyardReprocessed: 'JunkyardReprocessed',
|
|
4870
4884
|
JunkyardTrashed: 'JunkyardTrashed',
|
|
4871
4885
|
LoSlot0: 'LoSlot0',
|
|
@@ -4885,6 +4899,8 @@ export const GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum = {
|
|
|
4885
4899
|
MedSlot5: 'MedSlot5',
|
|
4886
4900
|
MedSlot6: 'MedSlot6',
|
|
4887
4901
|
MedSlot7: 'MedSlot7',
|
|
4902
|
+
MobileDepotHold: 'MobileDepotHold',
|
|
4903
|
+
MoonMaterialBay: 'MoonMaterialBay',
|
|
4888
4904
|
OfficeFolder: 'OfficeFolder',
|
|
4889
4905
|
Pilot: 'Pilot',
|
|
4890
4906
|
PlanetSurface: 'PlanetSurface',
|
|
@@ -4913,9 +4929,11 @@ export const GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum = {
|
|
|
4913
4929
|
Skill: 'Skill',
|
|
4914
4930
|
SkillInTraining: 'SkillInTraining',
|
|
4915
4931
|
SpecializedAmmoHold: 'SpecializedAmmoHold',
|
|
4932
|
+
SpecializedAsteroidHold: 'SpecializedAsteroidHold',
|
|
4916
4933
|
SpecializedCommandCenterHold: 'SpecializedCommandCenterHold',
|
|
4917
4934
|
SpecializedFuelBay: 'SpecializedFuelBay',
|
|
4918
4935
|
SpecializedGasHold: 'SpecializedGasHold',
|
|
4936
|
+
SpecializedIceHold: 'SpecializedIceHold',
|
|
4919
4937
|
SpecializedIndustrialShipHold: 'SpecializedIndustrialShipHold',
|
|
4920
4938
|
SpecializedLargeShipHold: 'SpecializedLargeShipHold',
|
|
4921
4939
|
SpecializedMaterialBay: 'SpecializedMaterialBay',
|
|
@@ -5113,6 +5131,7 @@ export const GetCorporationsCorporationIdContainersLogs200OkLocationFlagEnum = {
|
|
|
5113
5131
|
Booster: 'Booster',
|
|
5114
5132
|
BoosterBay: 'BoosterBay',
|
|
5115
5133
|
Capsule: 'Capsule',
|
|
5134
|
+
CapsuleerDeliveries: 'CapsuleerDeliveries',
|
|
5116
5135
|
Cargo: 'Cargo',
|
|
5117
5136
|
CorpDeliveries: 'CorpDeliveries',
|
|
5118
5137
|
CorpSag1: 'CorpSAG1',
|
|
@@ -5122,6 +5141,7 @@ export const GetCorporationsCorporationIdContainersLogs200OkLocationFlagEnum = {
|
|
|
5122
5141
|
CorpSag5: 'CorpSAG5',
|
|
5123
5142
|
CorpSag6: 'CorpSAG6',
|
|
5124
5143
|
CorpSag7: 'CorpSAG7',
|
|
5144
|
+
CorporationGoalDeliveries: 'CorporationGoalDeliveries',
|
|
5125
5145
|
CrateLoot: 'CrateLoot',
|
|
5126
5146
|
Deliveries: 'Deliveries',
|
|
5127
5147
|
DroneBay: 'DroneBay',
|
|
@@ -5148,6 +5168,7 @@ export const GetCorporationsCorporationIdContainersLogs200OkLocationFlagEnum = {
|
|
|
5148
5168
|
HiddenModifiers: 'HiddenModifiers',
|
|
5149
5169
|
Implant: 'Implant',
|
|
5150
5170
|
Impounded: 'Impounded',
|
|
5171
|
+
InfrastructureHangar: 'InfrastructureHangar',
|
|
5151
5172
|
JunkyardReprocessed: 'JunkyardReprocessed',
|
|
5152
5173
|
JunkyardTrashed: 'JunkyardTrashed',
|
|
5153
5174
|
LoSlot0: 'LoSlot0',
|
|
@@ -5167,6 +5188,8 @@ export const GetCorporationsCorporationIdContainersLogs200OkLocationFlagEnum = {
|
|
|
5167
5188
|
MedSlot5: 'MedSlot5',
|
|
5168
5189
|
MedSlot6: 'MedSlot6',
|
|
5169
5190
|
MedSlot7: 'MedSlot7',
|
|
5191
|
+
MobileDepotHold: 'MobileDepotHold',
|
|
5192
|
+
MoonMaterialBay: 'MoonMaterialBay',
|
|
5170
5193
|
OfficeFolder: 'OfficeFolder',
|
|
5171
5194
|
Pilot: 'Pilot',
|
|
5172
5195
|
PlanetSurface: 'PlanetSurface',
|
|
@@ -5195,9 +5218,11 @@ export const GetCorporationsCorporationIdContainersLogs200OkLocationFlagEnum = {
|
|
|
5195
5218
|
Skill: 'Skill',
|
|
5196
5219
|
SkillInTraining: 'SkillInTraining',
|
|
5197
5220
|
SpecializedAmmoHold: 'SpecializedAmmoHold',
|
|
5221
|
+
SpecializedAsteroidHold: 'SpecializedAsteroidHold',
|
|
5198
5222
|
SpecializedCommandCenterHold: 'SpecializedCommandCenterHold',
|
|
5199
5223
|
SpecializedFuelBay: 'SpecializedFuelBay',
|
|
5200
5224
|
SpecializedGasHold: 'SpecializedGasHold',
|
|
5225
|
+
SpecializedIceHold: 'SpecializedIceHold',
|
|
5201
5226
|
SpecializedIndustrialShipHold: 'SpecializedIndustrialShipHold',
|
|
5202
5227
|
SpecializedLargeShipHold: 'SpecializedLargeShipHold',
|
|
5203
5228
|
SpecializedMaterialBay: 'SpecializedMaterialBay',
|
|
@@ -8306,6 +8331,7 @@ export const GetCorporationsCorporationIdWalletsDivisionJournal200OkRefTypeEnum
|
|
|
8306
8331
|
AgentSecurityServices: 'agent_security_services',
|
|
8307
8332
|
AgentServicesRendered: 'agent_services_rendered',
|
|
8308
8333
|
AgentsPreward: 'agents_preward',
|
|
8334
|
+
AirCareerProgramReward: 'air_career_program_reward',
|
|
8309
8335
|
AllianceMaintainanceFee: 'alliance_maintainance_fee',
|
|
8310
8336
|
AllianceRegistrationFee: 'alliance_registration_fee',
|
|
8311
8337
|
AllignmentBasedGateToll: 'allignment_based_gate_toll',
|
|
@@ -8379,7 +8405,14 @@ export const GetCorporationsCorporationIdWalletsDivisionJournal200OkRefTypeEnum
|
|
|
8379
8405
|
FluxTax: 'flux_tax',
|
|
8380
8406
|
FluxTicketRepayment: 'flux_ticket_repayment',
|
|
8381
8407
|
FluxTicketSale: 'flux_ticket_sale',
|
|
8408
|
+
FreelanceJobsBroadcastingFee: 'freelance_jobs_broadcasting_fee',
|
|
8409
|
+
FreelanceJobsDurationFee: 'freelance_jobs_duration_fee',
|
|
8410
|
+
FreelanceJobsEscrowRefund: 'freelance_jobs_escrow_refund',
|
|
8411
|
+
FreelanceJobsReward: 'freelance_jobs_reward',
|
|
8412
|
+
FreelanceJobsRewardCorporationTax: 'freelance_jobs_reward_corporation_tax',
|
|
8413
|
+
FreelanceJobsRewardEscrow: 'freelance_jobs_reward_escrow',
|
|
8382
8414
|
GmCashTransfer: 'gm_cash_transfer',
|
|
8415
|
+
GmPlexFeeRefund: 'gm_plex_fee_refund',
|
|
8383
8416
|
IndustryJobTax: 'industry_job_tax',
|
|
8384
8417
|
InfrastructureHubMaintenance: 'infrastructure_hub_maintenance',
|
|
8385
8418
|
Inheritance: 'inheritance',
|
|
@@ -8428,6 +8461,7 @@ export const GetCorporationsCorporationIdWalletsDivisionJournal200OkRefTypeEnum
|
|
|
8428
8461
|
SecurityProcessingFee: 'security_processing_fee',
|
|
8429
8462
|
Shares: 'shares',
|
|
8430
8463
|
SkillPurchase: 'skill_purchase',
|
|
8464
|
+
SkyhookClaimFee: 'skyhook_claim_fee',
|
|
8431
8465
|
SovereignityBill: 'sovereignity_bill',
|
|
8432
8466
|
StorePurchase: 'store_purchase',
|
|
8433
8467
|
StorePurchaseRefund: 'store_purchase_refund',
|
package/base.ts
CHANGED
package/common.ts
CHANGED
package/configuration.ts
CHANGED
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* EVE Swagger Interface
|
|
3
3
|
* An OpenAPI for EVE Online
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.36
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -376,6 +376,7 @@ export declare const GetCharactersCharacterIdAssets200OkLocationFlagEnum: {
|
|
|
376
376
|
readonly AssetSafety: "AssetSafety";
|
|
377
377
|
readonly AutoFit: "AutoFit";
|
|
378
378
|
readonly BoosterBay: "BoosterBay";
|
|
379
|
+
readonly CapsuleerDeliveries: "CapsuleerDeliveries";
|
|
379
380
|
readonly Cargo: "Cargo";
|
|
380
381
|
readonly CorporationGoalDeliveries: "CorporationGoalDeliveries";
|
|
381
382
|
readonly CorpseBay: "CorpseBay";
|
|
@@ -3879,6 +3880,7 @@ export declare const GetCharactersCharacterIdWalletJournal200OkRefTypeEnum: {
|
|
|
3879
3880
|
readonly AgentSecurityServices: "agent_security_services";
|
|
3880
3881
|
readonly AgentServicesRendered: "agent_services_rendered";
|
|
3881
3882
|
readonly AgentsPreward: "agents_preward";
|
|
3883
|
+
readonly AirCareerProgramReward: "air_career_program_reward";
|
|
3882
3884
|
readonly AllianceMaintainanceFee: "alliance_maintainance_fee";
|
|
3883
3885
|
readonly AllianceRegistrationFee: "alliance_registration_fee";
|
|
3884
3886
|
readonly AllignmentBasedGateToll: "allignment_based_gate_toll";
|
|
@@ -3952,7 +3954,14 @@ export declare const GetCharactersCharacterIdWalletJournal200OkRefTypeEnum: {
|
|
|
3952
3954
|
readonly FluxTax: "flux_tax";
|
|
3953
3955
|
readonly FluxTicketRepayment: "flux_ticket_repayment";
|
|
3954
3956
|
readonly FluxTicketSale: "flux_ticket_sale";
|
|
3957
|
+
readonly FreelanceJobsBroadcastingFee: "freelance_jobs_broadcasting_fee";
|
|
3958
|
+
readonly FreelanceJobsDurationFee: "freelance_jobs_duration_fee";
|
|
3959
|
+
readonly FreelanceJobsEscrowRefund: "freelance_jobs_escrow_refund";
|
|
3960
|
+
readonly FreelanceJobsReward: "freelance_jobs_reward";
|
|
3961
|
+
readonly FreelanceJobsRewardCorporationTax: "freelance_jobs_reward_corporation_tax";
|
|
3962
|
+
readonly FreelanceJobsRewardEscrow: "freelance_jobs_reward_escrow";
|
|
3955
3963
|
readonly GmCashTransfer: "gm_cash_transfer";
|
|
3964
|
+
readonly GmPlexFeeRefund: "gm_plex_fee_refund";
|
|
3956
3965
|
readonly IndustryJobTax: "industry_job_tax";
|
|
3957
3966
|
readonly InfrastructureHubMaintenance: "infrastructure_hub_maintenance";
|
|
3958
3967
|
readonly Inheritance: "inheritance";
|
|
@@ -4001,6 +4010,7 @@ export declare const GetCharactersCharacterIdWalletJournal200OkRefTypeEnum: {
|
|
|
4001
4010
|
readonly SecurityProcessingFee: "security_processing_fee";
|
|
4002
4011
|
readonly Shares: "shares";
|
|
4003
4012
|
readonly SkillPurchase: "skill_purchase";
|
|
4013
|
+
readonly SkyhookClaimFee: "skyhook_claim_fee";
|
|
4004
4014
|
readonly SovereignityBill: "sovereignity_bill";
|
|
4005
4015
|
readonly StorePurchase: "store_purchase";
|
|
4006
4016
|
readonly StorePurchaseRefund: "store_purchase_refund";
|
|
@@ -4538,6 +4548,7 @@ export declare const GetCorporationsCorporationIdAssets200OkLocationFlagEnum: {
|
|
|
4538
4548
|
readonly Booster: "Booster";
|
|
4539
4549
|
readonly BoosterBay: "BoosterBay";
|
|
4540
4550
|
readonly Capsule: "Capsule";
|
|
4551
|
+
readonly CapsuleerDeliveries: "CapsuleerDeliveries";
|
|
4541
4552
|
readonly Cargo: "Cargo";
|
|
4542
4553
|
readonly CorpDeliveries: "CorpDeliveries";
|
|
4543
4554
|
readonly CorpSag1: "CorpSAG1";
|
|
@@ -4726,6 +4737,7 @@ export declare const GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum
|
|
|
4726
4737
|
readonly Booster: "Booster";
|
|
4727
4738
|
readonly BoosterBay: "BoosterBay";
|
|
4728
4739
|
readonly Capsule: "Capsule";
|
|
4740
|
+
readonly CapsuleerDeliveries: "CapsuleerDeliveries";
|
|
4729
4741
|
readonly Cargo: "Cargo";
|
|
4730
4742
|
readonly CorpDeliveries: "CorpDeliveries";
|
|
4731
4743
|
readonly CorpSag1: "CorpSAG1";
|
|
@@ -4735,6 +4747,7 @@ export declare const GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum
|
|
|
4735
4747
|
readonly CorpSag5: "CorpSAG5";
|
|
4736
4748
|
readonly CorpSag6: "CorpSAG6";
|
|
4737
4749
|
readonly CorpSag7: "CorpSAG7";
|
|
4750
|
+
readonly CorporationGoalDeliveries: "CorporationGoalDeliveries";
|
|
4738
4751
|
readonly CrateLoot: "CrateLoot";
|
|
4739
4752
|
readonly Deliveries: "Deliveries";
|
|
4740
4753
|
readonly DroneBay: "DroneBay";
|
|
@@ -4761,6 +4774,7 @@ export declare const GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum
|
|
|
4761
4774
|
readonly HiddenModifiers: "HiddenModifiers";
|
|
4762
4775
|
readonly Implant: "Implant";
|
|
4763
4776
|
readonly Impounded: "Impounded";
|
|
4777
|
+
readonly InfrastructureHangar: "InfrastructureHangar";
|
|
4764
4778
|
readonly JunkyardReprocessed: "JunkyardReprocessed";
|
|
4765
4779
|
readonly JunkyardTrashed: "JunkyardTrashed";
|
|
4766
4780
|
readonly LoSlot0: "LoSlot0";
|
|
@@ -4780,6 +4794,8 @@ export declare const GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum
|
|
|
4780
4794
|
readonly MedSlot5: "MedSlot5";
|
|
4781
4795
|
readonly MedSlot6: "MedSlot6";
|
|
4782
4796
|
readonly MedSlot7: "MedSlot7";
|
|
4797
|
+
readonly MobileDepotHold: "MobileDepotHold";
|
|
4798
|
+
readonly MoonMaterialBay: "MoonMaterialBay";
|
|
4783
4799
|
readonly OfficeFolder: "OfficeFolder";
|
|
4784
4800
|
readonly Pilot: "Pilot";
|
|
4785
4801
|
readonly PlanetSurface: "PlanetSurface";
|
|
@@ -4808,9 +4824,11 @@ export declare const GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum
|
|
|
4808
4824
|
readonly Skill: "Skill";
|
|
4809
4825
|
readonly SkillInTraining: "SkillInTraining";
|
|
4810
4826
|
readonly SpecializedAmmoHold: "SpecializedAmmoHold";
|
|
4827
|
+
readonly SpecializedAsteroidHold: "SpecializedAsteroidHold";
|
|
4811
4828
|
readonly SpecializedCommandCenterHold: "SpecializedCommandCenterHold";
|
|
4812
4829
|
readonly SpecializedFuelBay: "SpecializedFuelBay";
|
|
4813
4830
|
readonly SpecializedGasHold: "SpecializedGasHold";
|
|
4831
|
+
readonly SpecializedIceHold: "SpecializedIceHold";
|
|
4814
4832
|
readonly SpecializedIndustrialShipHold: "SpecializedIndustrialShipHold";
|
|
4815
4833
|
readonly SpecializedLargeShipHold: "SpecializedLargeShipHold";
|
|
4816
4834
|
readonly SpecializedMaterialBay: "SpecializedMaterialBay";
|
|
@@ -5001,6 +5019,7 @@ export declare const GetCorporationsCorporationIdContainersLogs200OkLocationFlag
|
|
|
5001
5019
|
readonly Booster: "Booster";
|
|
5002
5020
|
readonly BoosterBay: "BoosterBay";
|
|
5003
5021
|
readonly Capsule: "Capsule";
|
|
5022
|
+
readonly CapsuleerDeliveries: "CapsuleerDeliveries";
|
|
5004
5023
|
readonly Cargo: "Cargo";
|
|
5005
5024
|
readonly CorpDeliveries: "CorpDeliveries";
|
|
5006
5025
|
readonly CorpSag1: "CorpSAG1";
|
|
@@ -5010,6 +5029,7 @@ export declare const GetCorporationsCorporationIdContainersLogs200OkLocationFlag
|
|
|
5010
5029
|
readonly CorpSag5: "CorpSAG5";
|
|
5011
5030
|
readonly CorpSag6: "CorpSAG6";
|
|
5012
5031
|
readonly CorpSag7: "CorpSAG7";
|
|
5032
|
+
readonly CorporationGoalDeliveries: "CorporationGoalDeliveries";
|
|
5013
5033
|
readonly CrateLoot: "CrateLoot";
|
|
5014
5034
|
readonly Deliveries: "Deliveries";
|
|
5015
5035
|
readonly DroneBay: "DroneBay";
|
|
@@ -5036,6 +5056,7 @@ export declare const GetCorporationsCorporationIdContainersLogs200OkLocationFlag
|
|
|
5036
5056
|
readonly HiddenModifiers: "HiddenModifiers";
|
|
5037
5057
|
readonly Implant: "Implant";
|
|
5038
5058
|
readonly Impounded: "Impounded";
|
|
5059
|
+
readonly InfrastructureHangar: "InfrastructureHangar";
|
|
5039
5060
|
readonly JunkyardReprocessed: "JunkyardReprocessed";
|
|
5040
5061
|
readonly JunkyardTrashed: "JunkyardTrashed";
|
|
5041
5062
|
readonly LoSlot0: "LoSlot0";
|
|
@@ -5055,6 +5076,8 @@ export declare const GetCorporationsCorporationIdContainersLogs200OkLocationFlag
|
|
|
5055
5076
|
readonly MedSlot5: "MedSlot5";
|
|
5056
5077
|
readonly MedSlot6: "MedSlot6";
|
|
5057
5078
|
readonly MedSlot7: "MedSlot7";
|
|
5079
|
+
readonly MobileDepotHold: "MobileDepotHold";
|
|
5080
|
+
readonly MoonMaterialBay: "MoonMaterialBay";
|
|
5058
5081
|
readonly OfficeFolder: "OfficeFolder";
|
|
5059
5082
|
readonly Pilot: "Pilot";
|
|
5060
5083
|
readonly PlanetSurface: "PlanetSurface";
|
|
@@ -5083,9 +5106,11 @@ export declare const GetCorporationsCorporationIdContainersLogs200OkLocationFlag
|
|
|
5083
5106
|
readonly Skill: "Skill";
|
|
5084
5107
|
readonly SkillInTraining: "SkillInTraining";
|
|
5085
5108
|
readonly SpecializedAmmoHold: "SpecializedAmmoHold";
|
|
5109
|
+
readonly SpecializedAsteroidHold: "SpecializedAsteroidHold";
|
|
5086
5110
|
readonly SpecializedCommandCenterHold: "SpecializedCommandCenterHold";
|
|
5087
5111
|
readonly SpecializedFuelBay: "SpecializedFuelBay";
|
|
5088
5112
|
readonly SpecializedGasHold: "SpecializedGasHold";
|
|
5113
|
+
readonly SpecializedIceHold: "SpecializedIceHold";
|
|
5089
5114
|
readonly SpecializedIndustrialShipHold: "SpecializedIndustrialShipHold";
|
|
5090
5115
|
readonly SpecializedLargeShipHold: "SpecializedLargeShipHold";
|
|
5091
5116
|
readonly SpecializedMaterialBay: "SpecializedMaterialBay";
|
|
@@ -8120,6 +8145,7 @@ export declare const GetCorporationsCorporationIdWalletsDivisionJournal200OkRefT
|
|
|
8120
8145
|
readonly AgentSecurityServices: "agent_security_services";
|
|
8121
8146
|
readonly AgentServicesRendered: "agent_services_rendered";
|
|
8122
8147
|
readonly AgentsPreward: "agents_preward";
|
|
8148
|
+
readonly AirCareerProgramReward: "air_career_program_reward";
|
|
8123
8149
|
readonly AllianceMaintainanceFee: "alliance_maintainance_fee";
|
|
8124
8150
|
readonly AllianceRegistrationFee: "alliance_registration_fee";
|
|
8125
8151
|
readonly AllignmentBasedGateToll: "allignment_based_gate_toll";
|
|
@@ -8193,7 +8219,14 @@ export declare const GetCorporationsCorporationIdWalletsDivisionJournal200OkRefT
|
|
|
8193
8219
|
readonly FluxTax: "flux_tax";
|
|
8194
8220
|
readonly FluxTicketRepayment: "flux_ticket_repayment";
|
|
8195
8221
|
readonly FluxTicketSale: "flux_ticket_sale";
|
|
8222
|
+
readonly FreelanceJobsBroadcastingFee: "freelance_jobs_broadcasting_fee";
|
|
8223
|
+
readonly FreelanceJobsDurationFee: "freelance_jobs_duration_fee";
|
|
8224
|
+
readonly FreelanceJobsEscrowRefund: "freelance_jobs_escrow_refund";
|
|
8225
|
+
readonly FreelanceJobsReward: "freelance_jobs_reward";
|
|
8226
|
+
readonly FreelanceJobsRewardCorporationTax: "freelance_jobs_reward_corporation_tax";
|
|
8227
|
+
readonly FreelanceJobsRewardEscrow: "freelance_jobs_reward_escrow";
|
|
8196
8228
|
readonly GmCashTransfer: "gm_cash_transfer";
|
|
8229
|
+
readonly GmPlexFeeRefund: "gm_plex_fee_refund";
|
|
8197
8230
|
readonly IndustryJobTax: "industry_job_tax";
|
|
8198
8231
|
readonly InfrastructureHubMaintenance: "infrastructure_hub_maintenance";
|
|
8199
8232
|
readonly Inheritance: "inheritance";
|
|
@@ -8242,6 +8275,7 @@ export declare const GetCorporationsCorporationIdWalletsDivisionJournal200OkRefT
|
|
|
8242
8275
|
readonly SecurityProcessingFee: "security_processing_fee";
|
|
8243
8276
|
readonly Shares: "shares";
|
|
8244
8277
|
readonly SkillPurchase: "skill_purchase";
|
|
8278
|
+
readonly SkyhookClaimFee: "skyhook_claim_fee";
|
|
8245
8279
|
readonly SovereignityBill: "sovereignity_bill";
|
|
8246
8280
|
readonly StorePurchase: "store_purchase";
|
|
8247
8281
|
readonly StorePurchaseRefund: "store_purchase_refund";
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* EVE Swagger Interface
|
|
6
6
|
* An OpenAPI for EVE Online
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.36
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -48,6 +48,7 @@ exports.GetCharactersCharacterIdAssets200OkLocationFlagEnum = {
|
|
|
48
48
|
AssetSafety: 'AssetSafety',
|
|
49
49
|
AutoFit: 'AutoFit',
|
|
50
50
|
BoosterBay: 'BoosterBay',
|
|
51
|
+
CapsuleerDeliveries: 'CapsuleerDeliveries',
|
|
51
52
|
Cargo: 'Cargo',
|
|
52
53
|
CorporationGoalDeliveries: 'CorporationGoalDeliveries',
|
|
53
54
|
CorpseBay: 'CorpseBay',
|
|
@@ -929,6 +930,7 @@ exports.GetCharactersCharacterIdWalletJournal200OkRefTypeEnum = {
|
|
|
929
930
|
AgentSecurityServices: 'agent_security_services',
|
|
930
931
|
AgentServicesRendered: 'agent_services_rendered',
|
|
931
932
|
AgentsPreward: 'agents_preward',
|
|
933
|
+
AirCareerProgramReward: 'air_career_program_reward',
|
|
932
934
|
AllianceMaintainanceFee: 'alliance_maintainance_fee',
|
|
933
935
|
AllianceRegistrationFee: 'alliance_registration_fee',
|
|
934
936
|
AllignmentBasedGateToll: 'allignment_based_gate_toll',
|
|
@@ -1002,7 +1004,14 @@ exports.GetCharactersCharacterIdWalletJournal200OkRefTypeEnum = {
|
|
|
1002
1004
|
FluxTax: 'flux_tax',
|
|
1003
1005
|
FluxTicketRepayment: 'flux_ticket_repayment',
|
|
1004
1006
|
FluxTicketSale: 'flux_ticket_sale',
|
|
1007
|
+
FreelanceJobsBroadcastingFee: 'freelance_jobs_broadcasting_fee',
|
|
1008
|
+
FreelanceJobsDurationFee: 'freelance_jobs_duration_fee',
|
|
1009
|
+
FreelanceJobsEscrowRefund: 'freelance_jobs_escrow_refund',
|
|
1010
|
+
FreelanceJobsReward: 'freelance_jobs_reward',
|
|
1011
|
+
FreelanceJobsRewardCorporationTax: 'freelance_jobs_reward_corporation_tax',
|
|
1012
|
+
FreelanceJobsRewardEscrow: 'freelance_jobs_reward_escrow',
|
|
1005
1013
|
GmCashTransfer: 'gm_cash_transfer',
|
|
1014
|
+
GmPlexFeeRefund: 'gm_plex_fee_refund',
|
|
1006
1015
|
IndustryJobTax: 'industry_job_tax',
|
|
1007
1016
|
InfrastructureHubMaintenance: 'infrastructure_hub_maintenance',
|
|
1008
1017
|
Inheritance: 'inheritance',
|
|
@@ -1051,6 +1060,7 @@ exports.GetCharactersCharacterIdWalletJournal200OkRefTypeEnum = {
|
|
|
1051
1060
|
SecurityProcessingFee: 'security_processing_fee',
|
|
1052
1061
|
Shares: 'shares',
|
|
1053
1062
|
SkillPurchase: 'skill_purchase',
|
|
1063
|
+
SkyhookClaimFee: 'skyhook_claim_fee',
|
|
1054
1064
|
SovereignityBill: 'sovereignity_bill',
|
|
1055
1065
|
StorePurchase: 'store_purchase',
|
|
1056
1066
|
StorePurchaseRefund: 'store_purchase_refund',
|
|
@@ -1079,6 +1089,7 @@ exports.GetCorporationsCorporationIdAssets200OkLocationFlagEnum = {
|
|
|
1079
1089
|
Booster: 'Booster',
|
|
1080
1090
|
BoosterBay: 'BoosterBay',
|
|
1081
1091
|
Capsule: 'Capsule',
|
|
1092
|
+
CapsuleerDeliveries: 'CapsuleerDeliveries',
|
|
1082
1093
|
Cargo: 'Cargo',
|
|
1083
1094
|
CorpDeliveries: 'CorpDeliveries',
|
|
1084
1095
|
CorpSag1: 'CorpSAG1',
|
|
@@ -1210,6 +1221,7 @@ exports.GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum = {
|
|
|
1210
1221
|
Booster: 'Booster',
|
|
1211
1222
|
BoosterBay: 'BoosterBay',
|
|
1212
1223
|
Capsule: 'Capsule',
|
|
1224
|
+
CapsuleerDeliveries: 'CapsuleerDeliveries',
|
|
1213
1225
|
Cargo: 'Cargo',
|
|
1214
1226
|
CorpDeliveries: 'CorpDeliveries',
|
|
1215
1227
|
CorpSag1: 'CorpSAG1',
|
|
@@ -1219,6 +1231,7 @@ exports.GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum = {
|
|
|
1219
1231
|
CorpSag5: 'CorpSAG5',
|
|
1220
1232
|
CorpSag6: 'CorpSAG6',
|
|
1221
1233
|
CorpSag7: 'CorpSAG7',
|
|
1234
|
+
CorporationGoalDeliveries: 'CorporationGoalDeliveries',
|
|
1222
1235
|
CrateLoot: 'CrateLoot',
|
|
1223
1236
|
Deliveries: 'Deliveries',
|
|
1224
1237
|
DroneBay: 'DroneBay',
|
|
@@ -1245,6 +1258,7 @@ exports.GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum = {
|
|
|
1245
1258
|
HiddenModifiers: 'HiddenModifiers',
|
|
1246
1259
|
Implant: 'Implant',
|
|
1247
1260
|
Impounded: 'Impounded',
|
|
1261
|
+
InfrastructureHangar: 'InfrastructureHangar',
|
|
1248
1262
|
JunkyardReprocessed: 'JunkyardReprocessed',
|
|
1249
1263
|
JunkyardTrashed: 'JunkyardTrashed',
|
|
1250
1264
|
LoSlot0: 'LoSlot0',
|
|
@@ -1264,6 +1278,8 @@ exports.GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum = {
|
|
|
1264
1278
|
MedSlot5: 'MedSlot5',
|
|
1265
1279
|
MedSlot6: 'MedSlot6',
|
|
1266
1280
|
MedSlot7: 'MedSlot7',
|
|
1281
|
+
MobileDepotHold: 'MobileDepotHold',
|
|
1282
|
+
MoonMaterialBay: 'MoonMaterialBay',
|
|
1267
1283
|
OfficeFolder: 'OfficeFolder',
|
|
1268
1284
|
Pilot: 'Pilot',
|
|
1269
1285
|
PlanetSurface: 'PlanetSurface',
|
|
@@ -1292,9 +1308,11 @@ exports.GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum = {
|
|
|
1292
1308
|
Skill: 'Skill',
|
|
1293
1309
|
SkillInTraining: 'SkillInTraining',
|
|
1294
1310
|
SpecializedAmmoHold: 'SpecializedAmmoHold',
|
|
1311
|
+
SpecializedAsteroidHold: 'SpecializedAsteroidHold',
|
|
1295
1312
|
SpecializedCommandCenterHold: 'SpecializedCommandCenterHold',
|
|
1296
1313
|
SpecializedFuelBay: 'SpecializedFuelBay',
|
|
1297
1314
|
SpecializedGasHold: 'SpecializedGasHold',
|
|
1315
|
+
SpecializedIceHold: 'SpecializedIceHold',
|
|
1298
1316
|
SpecializedIndustrialShipHold: 'SpecializedIndustrialShipHold',
|
|
1299
1317
|
SpecializedLargeShipHold: 'SpecializedLargeShipHold',
|
|
1300
1318
|
SpecializedMaterialBay: 'SpecializedMaterialBay',
|
|
@@ -1347,6 +1365,7 @@ exports.GetCorporationsCorporationIdContainersLogs200OkLocationFlagEnum = {
|
|
|
1347
1365
|
Booster: 'Booster',
|
|
1348
1366
|
BoosterBay: 'BoosterBay',
|
|
1349
1367
|
Capsule: 'Capsule',
|
|
1368
|
+
CapsuleerDeliveries: 'CapsuleerDeliveries',
|
|
1350
1369
|
Cargo: 'Cargo',
|
|
1351
1370
|
CorpDeliveries: 'CorpDeliveries',
|
|
1352
1371
|
CorpSag1: 'CorpSAG1',
|
|
@@ -1356,6 +1375,7 @@ exports.GetCorporationsCorporationIdContainersLogs200OkLocationFlagEnum = {
|
|
|
1356
1375
|
CorpSag5: 'CorpSAG5',
|
|
1357
1376
|
CorpSag6: 'CorpSAG6',
|
|
1358
1377
|
CorpSag7: 'CorpSAG7',
|
|
1378
|
+
CorporationGoalDeliveries: 'CorporationGoalDeliveries',
|
|
1359
1379
|
CrateLoot: 'CrateLoot',
|
|
1360
1380
|
Deliveries: 'Deliveries',
|
|
1361
1381
|
DroneBay: 'DroneBay',
|
|
@@ -1382,6 +1402,7 @@ exports.GetCorporationsCorporationIdContainersLogs200OkLocationFlagEnum = {
|
|
|
1382
1402
|
HiddenModifiers: 'HiddenModifiers',
|
|
1383
1403
|
Implant: 'Implant',
|
|
1384
1404
|
Impounded: 'Impounded',
|
|
1405
|
+
InfrastructureHangar: 'InfrastructureHangar',
|
|
1385
1406
|
JunkyardReprocessed: 'JunkyardReprocessed',
|
|
1386
1407
|
JunkyardTrashed: 'JunkyardTrashed',
|
|
1387
1408
|
LoSlot0: 'LoSlot0',
|
|
@@ -1401,6 +1422,8 @@ exports.GetCorporationsCorporationIdContainersLogs200OkLocationFlagEnum = {
|
|
|
1401
1422
|
MedSlot5: 'MedSlot5',
|
|
1402
1423
|
MedSlot6: 'MedSlot6',
|
|
1403
1424
|
MedSlot7: 'MedSlot7',
|
|
1425
|
+
MobileDepotHold: 'MobileDepotHold',
|
|
1426
|
+
MoonMaterialBay: 'MoonMaterialBay',
|
|
1404
1427
|
OfficeFolder: 'OfficeFolder',
|
|
1405
1428
|
Pilot: 'Pilot',
|
|
1406
1429
|
PlanetSurface: 'PlanetSurface',
|
|
@@ -1429,9 +1452,11 @@ exports.GetCorporationsCorporationIdContainersLogs200OkLocationFlagEnum = {
|
|
|
1429
1452
|
Skill: 'Skill',
|
|
1430
1453
|
SkillInTraining: 'SkillInTraining',
|
|
1431
1454
|
SpecializedAmmoHold: 'SpecializedAmmoHold',
|
|
1455
|
+
SpecializedAsteroidHold: 'SpecializedAsteroidHold',
|
|
1432
1456
|
SpecializedCommandCenterHold: 'SpecializedCommandCenterHold',
|
|
1433
1457
|
SpecializedFuelBay: 'SpecializedFuelBay',
|
|
1434
1458
|
SpecializedGasHold: 'SpecializedGasHold',
|
|
1459
|
+
SpecializedIceHold: 'SpecializedIceHold',
|
|
1435
1460
|
SpecializedIndustrialShipHold: 'SpecializedIndustrialShipHold',
|
|
1436
1461
|
SpecializedLargeShipHold: 'SpecializedLargeShipHold',
|
|
1437
1462
|
SpecializedMaterialBay: 'SpecializedMaterialBay',
|
|
@@ -2658,6 +2683,7 @@ exports.GetCorporationsCorporationIdWalletsDivisionJournal200OkRefTypeEnum = {
|
|
|
2658
2683
|
AgentSecurityServices: 'agent_security_services',
|
|
2659
2684
|
AgentServicesRendered: 'agent_services_rendered',
|
|
2660
2685
|
AgentsPreward: 'agents_preward',
|
|
2686
|
+
AirCareerProgramReward: 'air_career_program_reward',
|
|
2661
2687
|
AllianceMaintainanceFee: 'alliance_maintainance_fee',
|
|
2662
2688
|
AllianceRegistrationFee: 'alliance_registration_fee',
|
|
2663
2689
|
AllignmentBasedGateToll: 'allignment_based_gate_toll',
|
|
@@ -2731,7 +2757,14 @@ exports.GetCorporationsCorporationIdWalletsDivisionJournal200OkRefTypeEnum = {
|
|
|
2731
2757
|
FluxTax: 'flux_tax',
|
|
2732
2758
|
FluxTicketRepayment: 'flux_ticket_repayment',
|
|
2733
2759
|
FluxTicketSale: 'flux_ticket_sale',
|
|
2760
|
+
FreelanceJobsBroadcastingFee: 'freelance_jobs_broadcasting_fee',
|
|
2761
|
+
FreelanceJobsDurationFee: 'freelance_jobs_duration_fee',
|
|
2762
|
+
FreelanceJobsEscrowRefund: 'freelance_jobs_escrow_refund',
|
|
2763
|
+
FreelanceJobsReward: 'freelance_jobs_reward',
|
|
2764
|
+
FreelanceJobsRewardCorporationTax: 'freelance_jobs_reward_corporation_tax',
|
|
2765
|
+
FreelanceJobsRewardEscrow: 'freelance_jobs_reward_escrow',
|
|
2734
2766
|
GmCashTransfer: 'gm_cash_transfer',
|
|
2767
|
+
GmPlexFeeRefund: 'gm_plex_fee_refund',
|
|
2735
2768
|
IndustryJobTax: 'industry_job_tax',
|
|
2736
2769
|
InfrastructureHubMaintenance: 'infrastructure_hub_maintenance',
|
|
2737
2770
|
Inheritance: 'inheritance',
|
|
@@ -2780,6 +2813,7 @@ exports.GetCorporationsCorporationIdWalletsDivisionJournal200OkRefTypeEnum = {
|
|
|
2780
2813
|
SecurityProcessingFee: 'security_processing_fee',
|
|
2781
2814
|
Shares: 'shares',
|
|
2782
2815
|
SkillPurchase: 'skill_purchase',
|
|
2816
|
+
SkyhookClaimFee: 'skyhook_claim_fee',
|
|
2783
2817
|
SovereignityBill: 'sovereignity_bill',
|
|
2784
2818
|
StorePurchase: 'store_purchase',
|
|
2785
2819
|
StorePurchaseRefund: 'store_purchase_refund',
|
package/dist/base.d.ts
CHANGED
package/dist/base.js
CHANGED
package/dist/common.d.ts
CHANGED
package/dist/common.js
CHANGED
package/dist/configuration.d.ts
CHANGED
package/dist/configuration.js
CHANGED
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* EVE Swagger Interface
|
|
3
3
|
* An OpenAPI for EVE Online
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.36
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -376,6 +376,7 @@ export declare const GetCharactersCharacterIdAssets200OkLocationFlagEnum: {
|
|
|
376
376
|
readonly AssetSafety: "AssetSafety";
|
|
377
377
|
readonly AutoFit: "AutoFit";
|
|
378
378
|
readonly BoosterBay: "BoosterBay";
|
|
379
|
+
readonly CapsuleerDeliveries: "CapsuleerDeliveries";
|
|
379
380
|
readonly Cargo: "Cargo";
|
|
380
381
|
readonly CorporationGoalDeliveries: "CorporationGoalDeliveries";
|
|
381
382
|
readonly CorpseBay: "CorpseBay";
|
|
@@ -3879,6 +3880,7 @@ export declare const GetCharactersCharacterIdWalletJournal200OkRefTypeEnum: {
|
|
|
3879
3880
|
readonly AgentSecurityServices: "agent_security_services";
|
|
3880
3881
|
readonly AgentServicesRendered: "agent_services_rendered";
|
|
3881
3882
|
readonly AgentsPreward: "agents_preward";
|
|
3883
|
+
readonly AirCareerProgramReward: "air_career_program_reward";
|
|
3882
3884
|
readonly AllianceMaintainanceFee: "alliance_maintainance_fee";
|
|
3883
3885
|
readonly AllianceRegistrationFee: "alliance_registration_fee";
|
|
3884
3886
|
readonly AllignmentBasedGateToll: "allignment_based_gate_toll";
|
|
@@ -3952,7 +3954,14 @@ export declare const GetCharactersCharacterIdWalletJournal200OkRefTypeEnum: {
|
|
|
3952
3954
|
readonly FluxTax: "flux_tax";
|
|
3953
3955
|
readonly FluxTicketRepayment: "flux_ticket_repayment";
|
|
3954
3956
|
readonly FluxTicketSale: "flux_ticket_sale";
|
|
3957
|
+
readonly FreelanceJobsBroadcastingFee: "freelance_jobs_broadcasting_fee";
|
|
3958
|
+
readonly FreelanceJobsDurationFee: "freelance_jobs_duration_fee";
|
|
3959
|
+
readonly FreelanceJobsEscrowRefund: "freelance_jobs_escrow_refund";
|
|
3960
|
+
readonly FreelanceJobsReward: "freelance_jobs_reward";
|
|
3961
|
+
readonly FreelanceJobsRewardCorporationTax: "freelance_jobs_reward_corporation_tax";
|
|
3962
|
+
readonly FreelanceJobsRewardEscrow: "freelance_jobs_reward_escrow";
|
|
3955
3963
|
readonly GmCashTransfer: "gm_cash_transfer";
|
|
3964
|
+
readonly GmPlexFeeRefund: "gm_plex_fee_refund";
|
|
3956
3965
|
readonly IndustryJobTax: "industry_job_tax";
|
|
3957
3966
|
readonly InfrastructureHubMaintenance: "infrastructure_hub_maintenance";
|
|
3958
3967
|
readonly Inheritance: "inheritance";
|
|
@@ -4001,6 +4010,7 @@ export declare const GetCharactersCharacterIdWalletJournal200OkRefTypeEnum: {
|
|
|
4001
4010
|
readonly SecurityProcessingFee: "security_processing_fee";
|
|
4002
4011
|
readonly Shares: "shares";
|
|
4003
4012
|
readonly SkillPurchase: "skill_purchase";
|
|
4013
|
+
readonly SkyhookClaimFee: "skyhook_claim_fee";
|
|
4004
4014
|
readonly SovereignityBill: "sovereignity_bill";
|
|
4005
4015
|
readonly StorePurchase: "store_purchase";
|
|
4006
4016
|
readonly StorePurchaseRefund: "store_purchase_refund";
|
|
@@ -4538,6 +4548,7 @@ export declare const GetCorporationsCorporationIdAssets200OkLocationFlagEnum: {
|
|
|
4538
4548
|
readonly Booster: "Booster";
|
|
4539
4549
|
readonly BoosterBay: "BoosterBay";
|
|
4540
4550
|
readonly Capsule: "Capsule";
|
|
4551
|
+
readonly CapsuleerDeliveries: "CapsuleerDeliveries";
|
|
4541
4552
|
readonly Cargo: "Cargo";
|
|
4542
4553
|
readonly CorpDeliveries: "CorpDeliveries";
|
|
4543
4554
|
readonly CorpSag1: "CorpSAG1";
|
|
@@ -4726,6 +4737,7 @@ export declare const GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum
|
|
|
4726
4737
|
readonly Booster: "Booster";
|
|
4727
4738
|
readonly BoosterBay: "BoosterBay";
|
|
4728
4739
|
readonly Capsule: "Capsule";
|
|
4740
|
+
readonly CapsuleerDeliveries: "CapsuleerDeliveries";
|
|
4729
4741
|
readonly Cargo: "Cargo";
|
|
4730
4742
|
readonly CorpDeliveries: "CorpDeliveries";
|
|
4731
4743
|
readonly CorpSag1: "CorpSAG1";
|
|
@@ -4735,6 +4747,7 @@ export declare const GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum
|
|
|
4735
4747
|
readonly CorpSag5: "CorpSAG5";
|
|
4736
4748
|
readonly CorpSag6: "CorpSAG6";
|
|
4737
4749
|
readonly CorpSag7: "CorpSAG7";
|
|
4750
|
+
readonly CorporationGoalDeliveries: "CorporationGoalDeliveries";
|
|
4738
4751
|
readonly CrateLoot: "CrateLoot";
|
|
4739
4752
|
readonly Deliveries: "Deliveries";
|
|
4740
4753
|
readonly DroneBay: "DroneBay";
|
|
@@ -4761,6 +4774,7 @@ export declare const GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum
|
|
|
4761
4774
|
readonly HiddenModifiers: "HiddenModifiers";
|
|
4762
4775
|
readonly Implant: "Implant";
|
|
4763
4776
|
readonly Impounded: "Impounded";
|
|
4777
|
+
readonly InfrastructureHangar: "InfrastructureHangar";
|
|
4764
4778
|
readonly JunkyardReprocessed: "JunkyardReprocessed";
|
|
4765
4779
|
readonly JunkyardTrashed: "JunkyardTrashed";
|
|
4766
4780
|
readonly LoSlot0: "LoSlot0";
|
|
@@ -4780,6 +4794,8 @@ export declare const GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum
|
|
|
4780
4794
|
readonly MedSlot5: "MedSlot5";
|
|
4781
4795
|
readonly MedSlot6: "MedSlot6";
|
|
4782
4796
|
readonly MedSlot7: "MedSlot7";
|
|
4797
|
+
readonly MobileDepotHold: "MobileDepotHold";
|
|
4798
|
+
readonly MoonMaterialBay: "MoonMaterialBay";
|
|
4783
4799
|
readonly OfficeFolder: "OfficeFolder";
|
|
4784
4800
|
readonly Pilot: "Pilot";
|
|
4785
4801
|
readonly PlanetSurface: "PlanetSurface";
|
|
@@ -4808,9 +4824,11 @@ export declare const GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum
|
|
|
4808
4824
|
readonly Skill: "Skill";
|
|
4809
4825
|
readonly SkillInTraining: "SkillInTraining";
|
|
4810
4826
|
readonly SpecializedAmmoHold: "SpecializedAmmoHold";
|
|
4827
|
+
readonly SpecializedAsteroidHold: "SpecializedAsteroidHold";
|
|
4811
4828
|
readonly SpecializedCommandCenterHold: "SpecializedCommandCenterHold";
|
|
4812
4829
|
readonly SpecializedFuelBay: "SpecializedFuelBay";
|
|
4813
4830
|
readonly SpecializedGasHold: "SpecializedGasHold";
|
|
4831
|
+
readonly SpecializedIceHold: "SpecializedIceHold";
|
|
4814
4832
|
readonly SpecializedIndustrialShipHold: "SpecializedIndustrialShipHold";
|
|
4815
4833
|
readonly SpecializedLargeShipHold: "SpecializedLargeShipHold";
|
|
4816
4834
|
readonly SpecializedMaterialBay: "SpecializedMaterialBay";
|
|
@@ -5001,6 +5019,7 @@ export declare const GetCorporationsCorporationIdContainersLogs200OkLocationFlag
|
|
|
5001
5019
|
readonly Booster: "Booster";
|
|
5002
5020
|
readonly BoosterBay: "BoosterBay";
|
|
5003
5021
|
readonly Capsule: "Capsule";
|
|
5022
|
+
readonly CapsuleerDeliveries: "CapsuleerDeliveries";
|
|
5004
5023
|
readonly Cargo: "Cargo";
|
|
5005
5024
|
readonly CorpDeliveries: "CorpDeliveries";
|
|
5006
5025
|
readonly CorpSag1: "CorpSAG1";
|
|
@@ -5010,6 +5029,7 @@ export declare const GetCorporationsCorporationIdContainersLogs200OkLocationFlag
|
|
|
5010
5029
|
readonly CorpSag5: "CorpSAG5";
|
|
5011
5030
|
readonly CorpSag6: "CorpSAG6";
|
|
5012
5031
|
readonly CorpSag7: "CorpSAG7";
|
|
5032
|
+
readonly CorporationGoalDeliveries: "CorporationGoalDeliveries";
|
|
5013
5033
|
readonly CrateLoot: "CrateLoot";
|
|
5014
5034
|
readonly Deliveries: "Deliveries";
|
|
5015
5035
|
readonly DroneBay: "DroneBay";
|
|
@@ -5036,6 +5056,7 @@ export declare const GetCorporationsCorporationIdContainersLogs200OkLocationFlag
|
|
|
5036
5056
|
readonly HiddenModifiers: "HiddenModifiers";
|
|
5037
5057
|
readonly Implant: "Implant";
|
|
5038
5058
|
readonly Impounded: "Impounded";
|
|
5059
|
+
readonly InfrastructureHangar: "InfrastructureHangar";
|
|
5039
5060
|
readonly JunkyardReprocessed: "JunkyardReprocessed";
|
|
5040
5061
|
readonly JunkyardTrashed: "JunkyardTrashed";
|
|
5041
5062
|
readonly LoSlot0: "LoSlot0";
|
|
@@ -5055,6 +5076,8 @@ export declare const GetCorporationsCorporationIdContainersLogs200OkLocationFlag
|
|
|
5055
5076
|
readonly MedSlot5: "MedSlot5";
|
|
5056
5077
|
readonly MedSlot6: "MedSlot6";
|
|
5057
5078
|
readonly MedSlot7: "MedSlot7";
|
|
5079
|
+
readonly MobileDepotHold: "MobileDepotHold";
|
|
5080
|
+
readonly MoonMaterialBay: "MoonMaterialBay";
|
|
5058
5081
|
readonly OfficeFolder: "OfficeFolder";
|
|
5059
5082
|
readonly Pilot: "Pilot";
|
|
5060
5083
|
readonly PlanetSurface: "PlanetSurface";
|
|
@@ -5083,9 +5106,11 @@ export declare const GetCorporationsCorporationIdContainersLogs200OkLocationFlag
|
|
|
5083
5106
|
readonly Skill: "Skill";
|
|
5084
5107
|
readonly SkillInTraining: "SkillInTraining";
|
|
5085
5108
|
readonly SpecializedAmmoHold: "SpecializedAmmoHold";
|
|
5109
|
+
readonly SpecializedAsteroidHold: "SpecializedAsteroidHold";
|
|
5086
5110
|
readonly SpecializedCommandCenterHold: "SpecializedCommandCenterHold";
|
|
5087
5111
|
readonly SpecializedFuelBay: "SpecializedFuelBay";
|
|
5088
5112
|
readonly SpecializedGasHold: "SpecializedGasHold";
|
|
5113
|
+
readonly SpecializedIceHold: "SpecializedIceHold";
|
|
5089
5114
|
readonly SpecializedIndustrialShipHold: "SpecializedIndustrialShipHold";
|
|
5090
5115
|
readonly SpecializedLargeShipHold: "SpecializedLargeShipHold";
|
|
5091
5116
|
readonly SpecializedMaterialBay: "SpecializedMaterialBay";
|
|
@@ -8120,6 +8145,7 @@ export declare const GetCorporationsCorporationIdWalletsDivisionJournal200OkRefT
|
|
|
8120
8145
|
readonly AgentSecurityServices: "agent_security_services";
|
|
8121
8146
|
readonly AgentServicesRendered: "agent_services_rendered";
|
|
8122
8147
|
readonly AgentsPreward: "agents_preward";
|
|
8148
|
+
readonly AirCareerProgramReward: "air_career_program_reward";
|
|
8123
8149
|
readonly AllianceMaintainanceFee: "alliance_maintainance_fee";
|
|
8124
8150
|
readonly AllianceRegistrationFee: "alliance_registration_fee";
|
|
8125
8151
|
readonly AllignmentBasedGateToll: "allignment_based_gate_toll";
|
|
@@ -8193,7 +8219,14 @@ export declare const GetCorporationsCorporationIdWalletsDivisionJournal200OkRefT
|
|
|
8193
8219
|
readonly FluxTax: "flux_tax";
|
|
8194
8220
|
readonly FluxTicketRepayment: "flux_ticket_repayment";
|
|
8195
8221
|
readonly FluxTicketSale: "flux_ticket_sale";
|
|
8222
|
+
readonly FreelanceJobsBroadcastingFee: "freelance_jobs_broadcasting_fee";
|
|
8223
|
+
readonly FreelanceJobsDurationFee: "freelance_jobs_duration_fee";
|
|
8224
|
+
readonly FreelanceJobsEscrowRefund: "freelance_jobs_escrow_refund";
|
|
8225
|
+
readonly FreelanceJobsReward: "freelance_jobs_reward";
|
|
8226
|
+
readonly FreelanceJobsRewardCorporationTax: "freelance_jobs_reward_corporation_tax";
|
|
8227
|
+
readonly FreelanceJobsRewardEscrow: "freelance_jobs_reward_escrow";
|
|
8196
8228
|
readonly GmCashTransfer: "gm_cash_transfer";
|
|
8229
|
+
readonly GmPlexFeeRefund: "gm_plex_fee_refund";
|
|
8197
8230
|
readonly IndustryJobTax: "industry_job_tax";
|
|
8198
8231
|
readonly InfrastructureHubMaintenance: "infrastructure_hub_maintenance";
|
|
8199
8232
|
readonly Inheritance: "inheritance";
|
|
@@ -8242,6 +8275,7 @@ export declare const GetCorporationsCorporationIdWalletsDivisionJournal200OkRefT
|
|
|
8242
8275
|
readonly SecurityProcessingFee: "security_processing_fee";
|
|
8243
8276
|
readonly Shares: "shares";
|
|
8244
8277
|
readonly SkillPurchase: "skill_purchase";
|
|
8278
|
+
readonly SkyhookClaimFee: "skyhook_claim_fee";
|
|
8245
8279
|
readonly SovereignityBill: "sovereignity_bill";
|
|
8246
8280
|
readonly StorePurchase: "store_purchase";
|
|
8247
8281
|
readonly StorePurchaseRefund: "store_purchase_refund";
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* EVE Swagger Interface
|
|
5
5
|
* An OpenAPI for EVE Online
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.36
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -36,6 +36,7 @@ export const GetCharactersCharacterIdAssets200OkLocationFlagEnum = {
|
|
|
36
36
|
AssetSafety: 'AssetSafety',
|
|
37
37
|
AutoFit: 'AutoFit',
|
|
38
38
|
BoosterBay: 'BoosterBay',
|
|
39
|
+
CapsuleerDeliveries: 'CapsuleerDeliveries',
|
|
39
40
|
Cargo: 'Cargo',
|
|
40
41
|
CorporationGoalDeliveries: 'CorporationGoalDeliveries',
|
|
41
42
|
CorpseBay: 'CorpseBay',
|
|
@@ -917,6 +918,7 @@ export const GetCharactersCharacterIdWalletJournal200OkRefTypeEnum = {
|
|
|
917
918
|
AgentSecurityServices: 'agent_security_services',
|
|
918
919
|
AgentServicesRendered: 'agent_services_rendered',
|
|
919
920
|
AgentsPreward: 'agents_preward',
|
|
921
|
+
AirCareerProgramReward: 'air_career_program_reward',
|
|
920
922
|
AllianceMaintainanceFee: 'alliance_maintainance_fee',
|
|
921
923
|
AllianceRegistrationFee: 'alliance_registration_fee',
|
|
922
924
|
AllignmentBasedGateToll: 'allignment_based_gate_toll',
|
|
@@ -990,7 +992,14 @@ export const GetCharactersCharacterIdWalletJournal200OkRefTypeEnum = {
|
|
|
990
992
|
FluxTax: 'flux_tax',
|
|
991
993
|
FluxTicketRepayment: 'flux_ticket_repayment',
|
|
992
994
|
FluxTicketSale: 'flux_ticket_sale',
|
|
995
|
+
FreelanceJobsBroadcastingFee: 'freelance_jobs_broadcasting_fee',
|
|
996
|
+
FreelanceJobsDurationFee: 'freelance_jobs_duration_fee',
|
|
997
|
+
FreelanceJobsEscrowRefund: 'freelance_jobs_escrow_refund',
|
|
998
|
+
FreelanceJobsReward: 'freelance_jobs_reward',
|
|
999
|
+
FreelanceJobsRewardCorporationTax: 'freelance_jobs_reward_corporation_tax',
|
|
1000
|
+
FreelanceJobsRewardEscrow: 'freelance_jobs_reward_escrow',
|
|
993
1001
|
GmCashTransfer: 'gm_cash_transfer',
|
|
1002
|
+
GmPlexFeeRefund: 'gm_plex_fee_refund',
|
|
994
1003
|
IndustryJobTax: 'industry_job_tax',
|
|
995
1004
|
InfrastructureHubMaintenance: 'infrastructure_hub_maintenance',
|
|
996
1005
|
Inheritance: 'inheritance',
|
|
@@ -1039,6 +1048,7 @@ export const GetCharactersCharacterIdWalletJournal200OkRefTypeEnum = {
|
|
|
1039
1048
|
SecurityProcessingFee: 'security_processing_fee',
|
|
1040
1049
|
Shares: 'shares',
|
|
1041
1050
|
SkillPurchase: 'skill_purchase',
|
|
1051
|
+
SkyhookClaimFee: 'skyhook_claim_fee',
|
|
1042
1052
|
SovereignityBill: 'sovereignity_bill',
|
|
1043
1053
|
StorePurchase: 'store_purchase',
|
|
1044
1054
|
StorePurchaseRefund: 'store_purchase_refund',
|
|
@@ -1067,6 +1077,7 @@ export const GetCorporationsCorporationIdAssets200OkLocationFlagEnum = {
|
|
|
1067
1077
|
Booster: 'Booster',
|
|
1068
1078
|
BoosterBay: 'BoosterBay',
|
|
1069
1079
|
Capsule: 'Capsule',
|
|
1080
|
+
CapsuleerDeliveries: 'CapsuleerDeliveries',
|
|
1070
1081
|
Cargo: 'Cargo',
|
|
1071
1082
|
CorpDeliveries: 'CorpDeliveries',
|
|
1072
1083
|
CorpSag1: 'CorpSAG1',
|
|
@@ -1198,6 +1209,7 @@ export const GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum = {
|
|
|
1198
1209
|
Booster: 'Booster',
|
|
1199
1210
|
BoosterBay: 'BoosterBay',
|
|
1200
1211
|
Capsule: 'Capsule',
|
|
1212
|
+
CapsuleerDeliveries: 'CapsuleerDeliveries',
|
|
1201
1213
|
Cargo: 'Cargo',
|
|
1202
1214
|
CorpDeliveries: 'CorpDeliveries',
|
|
1203
1215
|
CorpSag1: 'CorpSAG1',
|
|
@@ -1207,6 +1219,7 @@ export const GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum = {
|
|
|
1207
1219
|
CorpSag5: 'CorpSAG5',
|
|
1208
1220
|
CorpSag6: 'CorpSAG6',
|
|
1209
1221
|
CorpSag7: 'CorpSAG7',
|
|
1222
|
+
CorporationGoalDeliveries: 'CorporationGoalDeliveries',
|
|
1210
1223
|
CrateLoot: 'CrateLoot',
|
|
1211
1224
|
Deliveries: 'Deliveries',
|
|
1212
1225
|
DroneBay: 'DroneBay',
|
|
@@ -1233,6 +1246,7 @@ export const GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum = {
|
|
|
1233
1246
|
HiddenModifiers: 'HiddenModifiers',
|
|
1234
1247
|
Implant: 'Implant',
|
|
1235
1248
|
Impounded: 'Impounded',
|
|
1249
|
+
InfrastructureHangar: 'InfrastructureHangar',
|
|
1236
1250
|
JunkyardReprocessed: 'JunkyardReprocessed',
|
|
1237
1251
|
JunkyardTrashed: 'JunkyardTrashed',
|
|
1238
1252
|
LoSlot0: 'LoSlot0',
|
|
@@ -1252,6 +1266,8 @@ export const GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum = {
|
|
|
1252
1266
|
MedSlot5: 'MedSlot5',
|
|
1253
1267
|
MedSlot6: 'MedSlot6',
|
|
1254
1268
|
MedSlot7: 'MedSlot7',
|
|
1269
|
+
MobileDepotHold: 'MobileDepotHold',
|
|
1270
|
+
MoonMaterialBay: 'MoonMaterialBay',
|
|
1255
1271
|
OfficeFolder: 'OfficeFolder',
|
|
1256
1272
|
Pilot: 'Pilot',
|
|
1257
1273
|
PlanetSurface: 'PlanetSurface',
|
|
@@ -1280,9 +1296,11 @@ export const GetCorporationsCorporationIdBlueprints200OkLocationFlagEnum = {
|
|
|
1280
1296
|
Skill: 'Skill',
|
|
1281
1297
|
SkillInTraining: 'SkillInTraining',
|
|
1282
1298
|
SpecializedAmmoHold: 'SpecializedAmmoHold',
|
|
1299
|
+
SpecializedAsteroidHold: 'SpecializedAsteroidHold',
|
|
1283
1300
|
SpecializedCommandCenterHold: 'SpecializedCommandCenterHold',
|
|
1284
1301
|
SpecializedFuelBay: 'SpecializedFuelBay',
|
|
1285
1302
|
SpecializedGasHold: 'SpecializedGasHold',
|
|
1303
|
+
SpecializedIceHold: 'SpecializedIceHold',
|
|
1286
1304
|
SpecializedIndustrialShipHold: 'SpecializedIndustrialShipHold',
|
|
1287
1305
|
SpecializedLargeShipHold: 'SpecializedLargeShipHold',
|
|
1288
1306
|
SpecializedMaterialBay: 'SpecializedMaterialBay',
|
|
@@ -1335,6 +1353,7 @@ export const GetCorporationsCorporationIdContainersLogs200OkLocationFlagEnum = {
|
|
|
1335
1353
|
Booster: 'Booster',
|
|
1336
1354
|
BoosterBay: 'BoosterBay',
|
|
1337
1355
|
Capsule: 'Capsule',
|
|
1356
|
+
CapsuleerDeliveries: 'CapsuleerDeliveries',
|
|
1338
1357
|
Cargo: 'Cargo',
|
|
1339
1358
|
CorpDeliveries: 'CorpDeliveries',
|
|
1340
1359
|
CorpSag1: 'CorpSAG1',
|
|
@@ -1344,6 +1363,7 @@ export const GetCorporationsCorporationIdContainersLogs200OkLocationFlagEnum = {
|
|
|
1344
1363
|
CorpSag5: 'CorpSAG5',
|
|
1345
1364
|
CorpSag6: 'CorpSAG6',
|
|
1346
1365
|
CorpSag7: 'CorpSAG7',
|
|
1366
|
+
CorporationGoalDeliveries: 'CorporationGoalDeliveries',
|
|
1347
1367
|
CrateLoot: 'CrateLoot',
|
|
1348
1368
|
Deliveries: 'Deliveries',
|
|
1349
1369
|
DroneBay: 'DroneBay',
|
|
@@ -1370,6 +1390,7 @@ export const GetCorporationsCorporationIdContainersLogs200OkLocationFlagEnum = {
|
|
|
1370
1390
|
HiddenModifiers: 'HiddenModifiers',
|
|
1371
1391
|
Implant: 'Implant',
|
|
1372
1392
|
Impounded: 'Impounded',
|
|
1393
|
+
InfrastructureHangar: 'InfrastructureHangar',
|
|
1373
1394
|
JunkyardReprocessed: 'JunkyardReprocessed',
|
|
1374
1395
|
JunkyardTrashed: 'JunkyardTrashed',
|
|
1375
1396
|
LoSlot0: 'LoSlot0',
|
|
@@ -1389,6 +1410,8 @@ export const GetCorporationsCorporationIdContainersLogs200OkLocationFlagEnum = {
|
|
|
1389
1410
|
MedSlot5: 'MedSlot5',
|
|
1390
1411
|
MedSlot6: 'MedSlot6',
|
|
1391
1412
|
MedSlot7: 'MedSlot7',
|
|
1413
|
+
MobileDepotHold: 'MobileDepotHold',
|
|
1414
|
+
MoonMaterialBay: 'MoonMaterialBay',
|
|
1392
1415
|
OfficeFolder: 'OfficeFolder',
|
|
1393
1416
|
Pilot: 'Pilot',
|
|
1394
1417
|
PlanetSurface: 'PlanetSurface',
|
|
@@ -1417,9 +1440,11 @@ export const GetCorporationsCorporationIdContainersLogs200OkLocationFlagEnum = {
|
|
|
1417
1440
|
Skill: 'Skill',
|
|
1418
1441
|
SkillInTraining: 'SkillInTraining',
|
|
1419
1442
|
SpecializedAmmoHold: 'SpecializedAmmoHold',
|
|
1443
|
+
SpecializedAsteroidHold: 'SpecializedAsteroidHold',
|
|
1420
1444
|
SpecializedCommandCenterHold: 'SpecializedCommandCenterHold',
|
|
1421
1445
|
SpecializedFuelBay: 'SpecializedFuelBay',
|
|
1422
1446
|
SpecializedGasHold: 'SpecializedGasHold',
|
|
1447
|
+
SpecializedIceHold: 'SpecializedIceHold',
|
|
1423
1448
|
SpecializedIndustrialShipHold: 'SpecializedIndustrialShipHold',
|
|
1424
1449
|
SpecializedLargeShipHold: 'SpecializedLargeShipHold',
|
|
1425
1450
|
SpecializedMaterialBay: 'SpecializedMaterialBay',
|
|
@@ -2646,6 +2671,7 @@ export const GetCorporationsCorporationIdWalletsDivisionJournal200OkRefTypeEnum
|
|
|
2646
2671
|
AgentSecurityServices: 'agent_security_services',
|
|
2647
2672
|
AgentServicesRendered: 'agent_services_rendered',
|
|
2648
2673
|
AgentsPreward: 'agents_preward',
|
|
2674
|
+
AirCareerProgramReward: 'air_career_program_reward',
|
|
2649
2675
|
AllianceMaintainanceFee: 'alliance_maintainance_fee',
|
|
2650
2676
|
AllianceRegistrationFee: 'alliance_registration_fee',
|
|
2651
2677
|
AllignmentBasedGateToll: 'allignment_based_gate_toll',
|
|
@@ -2719,7 +2745,14 @@ export const GetCorporationsCorporationIdWalletsDivisionJournal200OkRefTypeEnum
|
|
|
2719
2745
|
FluxTax: 'flux_tax',
|
|
2720
2746
|
FluxTicketRepayment: 'flux_ticket_repayment',
|
|
2721
2747
|
FluxTicketSale: 'flux_ticket_sale',
|
|
2748
|
+
FreelanceJobsBroadcastingFee: 'freelance_jobs_broadcasting_fee',
|
|
2749
|
+
FreelanceJobsDurationFee: 'freelance_jobs_duration_fee',
|
|
2750
|
+
FreelanceJobsEscrowRefund: 'freelance_jobs_escrow_refund',
|
|
2751
|
+
FreelanceJobsReward: 'freelance_jobs_reward',
|
|
2752
|
+
FreelanceJobsRewardCorporationTax: 'freelance_jobs_reward_corporation_tax',
|
|
2753
|
+
FreelanceJobsRewardEscrow: 'freelance_jobs_reward_escrow',
|
|
2722
2754
|
GmCashTransfer: 'gm_cash_transfer',
|
|
2755
|
+
GmPlexFeeRefund: 'gm_plex_fee_refund',
|
|
2723
2756
|
IndustryJobTax: 'industry_job_tax',
|
|
2724
2757
|
InfrastructureHubMaintenance: 'infrastructure_hub_maintenance',
|
|
2725
2758
|
Inheritance: 'inheritance',
|
|
@@ -2768,6 +2801,7 @@ export const GetCorporationsCorporationIdWalletsDivisionJournal200OkRefTypeEnum
|
|
|
2768
2801
|
SecurityProcessingFee: 'security_processing_fee',
|
|
2769
2802
|
Shares: 'shares',
|
|
2770
2803
|
SkillPurchase: 'skill_purchase',
|
|
2804
|
+
SkyhookClaimFee: 'skyhook_claim_fee',
|
|
2771
2805
|
SovereignityBill: 'sovereignity_bill',
|
|
2772
2806
|
StorePurchase: 'store_purchase',
|
|
2773
2807
|
StorePurchaseRefund: 'store_purchase_refund',
|
package/dist/esm/base.d.ts
CHANGED
package/dist/esm/base.js
CHANGED
package/dist/esm/common.d.ts
CHANGED
package/dist/esm/common.js
CHANGED
package/dist/esm/index.d.ts
CHANGED
package/dist/esm/index.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/index.ts
CHANGED