eve-esi-types 3.2.0 → 3.2.2
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/CHANGELOG.md +27 -8
- package/package.json +1 -1
- package/v2/esi-tagged-types.d.ts +1 -1
- package/v2/experimental-esi-types.d.ts +287 -0
- package/v2/globals/character.d.ts +32 -198
- package/v2/globals/corporation.d.ts +352 -1104
- package/v2/globals/factionwarfare.d.ts +6 -78
- package/v2/globals/universe.d.ts +78 -78
- package/v2/index.d.ts +6 -4
- package/v2/response-map.d.ts +1 -1
- package/v2/types-index.d.ts +1 -1
- package/v2/types-util.d.ts +3 -166
- package/v2/util.d.ts +19 -0
|
@@ -737,10 +737,11 @@ interface GetCorporationsCorporationIdMembertracking_200Ok {
|
|
|
737
737
|
/*!
|
|
738
738
|
* ESI endpoint: get:/corporations/{corporation_id}/roles/
|
|
739
739
|
*/
|
|
740
|
+
|
|
740
741
|
/**
|
|
741
742
|
* grantable_role string
|
|
742
743
|
*/
|
|
743
|
-
type
|
|
744
|
+
type __CorporationRole =
|
|
744
745
|
| "Account_Take_1"
|
|
745
746
|
| "Account_Take_2"
|
|
746
747
|
| "Account_Take_3"
|
|
@@ -795,211 +796,137 @@ type GetCorporationsCorporationIdRolesGrantableRole =
|
|
|
795
796
|
| "Starbase_Fuel_Technician"
|
|
796
797
|
| "Station_Manager"
|
|
797
798
|
| "Trader";
|
|
799
|
+
|
|
800
|
+
/**
|
|
801
|
+
* grantable_role string
|
|
802
|
+
*/
|
|
803
|
+
type GetCorporationsCorporationIdRolesGrantableRole = __CorporationRole;
|
|
804
|
+
|
|
798
805
|
/**
|
|
799
806
|
* grantable_roles array
|
|
800
807
|
*
|
|
801
808
|
* @maxItems 100
|
|
802
809
|
*/
|
|
803
|
-
type GetCorporationsCorporationIdRolesGrantableRoles =
|
|
810
|
+
type GetCorporationsCorporationIdRolesGrantableRoles = __CorporationRole[];
|
|
811
|
+
|
|
804
812
|
/**
|
|
805
813
|
* grantable_roles_at_base string
|
|
806
814
|
*/
|
|
807
|
-
type GetCorporationsCorporationIdRolesGrantableRolesAtBaseGrantableRolesAtBase =
|
|
808
|
-
|
|
809
|
-
| "Account_Take_2"
|
|
810
|
-
| "Account_Take_3"
|
|
811
|
-
| "Account_Take_4"
|
|
812
|
-
| "Account_Take_5"
|
|
813
|
-
| "Account_Take_6"
|
|
814
|
-
| "Account_Take_7"
|
|
815
|
-
| "Accountant"
|
|
816
|
-
| "Auditor"
|
|
817
|
-
| "Brand_Manager"
|
|
818
|
-
| "Communications_Officer"
|
|
819
|
-
| "Config_Equipment"
|
|
820
|
-
| "Config_Starbase_Equipment"
|
|
821
|
-
| "Container_Take_1"
|
|
822
|
-
| "Container_Take_2"
|
|
823
|
-
| "Container_Take_3"
|
|
824
|
-
| "Container_Take_4"
|
|
825
|
-
| "Container_Take_5"
|
|
826
|
-
| "Container_Take_6"
|
|
827
|
-
| "Container_Take_7"
|
|
828
|
-
| "Contract_Manager"
|
|
829
|
-
| "Deliveries_Container_Take"
|
|
830
|
-
| "Deliveries_Query"
|
|
831
|
-
| "Deliveries_Take"
|
|
832
|
-
| "Diplomat"
|
|
833
|
-
| "Director"
|
|
834
|
-
| "Factory_Manager"
|
|
835
|
-
| "Fitting_Manager"
|
|
836
|
-
| "Hangar_Query_1"
|
|
837
|
-
| "Hangar_Query_2"
|
|
838
|
-
| "Hangar_Query_3"
|
|
839
|
-
| "Hangar_Query_4"
|
|
840
|
-
| "Hangar_Query_5"
|
|
841
|
-
| "Hangar_Query_6"
|
|
842
|
-
| "Hangar_Query_7"
|
|
843
|
-
| "Hangar_Take_1"
|
|
844
|
-
| "Hangar_Take_2"
|
|
845
|
-
| "Hangar_Take_3"
|
|
846
|
-
| "Hangar_Take_4"
|
|
847
|
-
| "Hangar_Take_5"
|
|
848
|
-
| "Hangar_Take_6"
|
|
849
|
-
| "Hangar_Take_7"
|
|
850
|
-
| "Junior_Accountant"
|
|
851
|
-
| "Personnel_Manager"
|
|
852
|
-
| "Project_Manager"
|
|
853
|
-
| "Rent_Factory_Facility"
|
|
854
|
-
| "Rent_Office"
|
|
855
|
-
| "Rent_Research_Facility"
|
|
856
|
-
| "Security_Officer"
|
|
857
|
-
| "Skill_Plan_Manager"
|
|
858
|
-
| "Starbase_Defense_Operator"
|
|
859
|
-
| "Starbase_Fuel_Technician"
|
|
860
|
-
| "Station_Manager"
|
|
861
|
-
| "Trader";
|
|
815
|
+
type GetCorporationsCorporationIdRolesGrantableRolesAtBaseGrantableRolesAtBase = __CorporationRole;
|
|
816
|
+
|
|
862
817
|
/**
|
|
863
818
|
* grantable_roles_at_base array
|
|
864
819
|
*
|
|
865
820
|
* @maxItems 100
|
|
866
821
|
*/
|
|
867
|
-
type GetCorporationsCorporationIdRolesGrantableRolesAtBase =
|
|
868
|
-
|
|
822
|
+
type GetCorporationsCorporationIdRolesGrantableRolesAtBase = __CorporationRole[];
|
|
823
|
+
|
|
869
824
|
/**
|
|
870
825
|
* grantable_roles_at_hq string
|
|
871
826
|
*/
|
|
872
|
-
type GetCorporationsCorporationIdRolesGrantableRolesAtHqGrantableRolesAtHq =
|
|
873
|
-
|
|
874
|
-
| "Account_Take_2"
|
|
875
|
-
| "Account_Take_3"
|
|
876
|
-
| "Account_Take_4"
|
|
877
|
-
| "Account_Take_5"
|
|
878
|
-
| "Account_Take_6"
|
|
879
|
-
| "Account_Take_7"
|
|
880
|
-
| "Accountant"
|
|
881
|
-
| "Auditor"
|
|
882
|
-
| "Brand_Manager"
|
|
883
|
-
| "Communications_Officer"
|
|
884
|
-
| "Config_Equipment"
|
|
885
|
-
| "Config_Starbase_Equipment"
|
|
886
|
-
| "Container_Take_1"
|
|
887
|
-
| "Container_Take_2"
|
|
888
|
-
| "Container_Take_3"
|
|
889
|
-
| "Container_Take_4"
|
|
890
|
-
| "Container_Take_5"
|
|
891
|
-
| "Container_Take_6"
|
|
892
|
-
| "Container_Take_7"
|
|
893
|
-
| "Contract_Manager"
|
|
894
|
-
| "Deliveries_Container_Take"
|
|
895
|
-
| "Deliveries_Query"
|
|
896
|
-
| "Deliveries_Take"
|
|
897
|
-
| "Diplomat"
|
|
898
|
-
| "Director"
|
|
899
|
-
| "Factory_Manager"
|
|
900
|
-
| "Fitting_Manager"
|
|
901
|
-
| "Hangar_Query_1"
|
|
902
|
-
| "Hangar_Query_2"
|
|
903
|
-
| "Hangar_Query_3"
|
|
904
|
-
| "Hangar_Query_4"
|
|
905
|
-
| "Hangar_Query_5"
|
|
906
|
-
| "Hangar_Query_6"
|
|
907
|
-
| "Hangar_Query_7"
|
|
908
|
-
| "Hangar_Take_1"
|
|
909
|
-
| "Hangar_Take_2"
|
|
910
|
-
| "Hangar_Take_3"
|
|
911
|
-
| "Hangar_Take_4"
|
|
912
|
-
| "Hangar_Take_5"
|
|
913
|
-
| "Hangar_Take_6"
|
|
914
|
-
| "Hangar_Take_7"
|
|
915
|
-
| "Junior_Accountant"
|
|
916
|
-
| "Personnel_Manager"
|
|
917
|
-
| "Project_Manager"
|
|
918
|
-
| "Rent_Factory_Facility"
|
|
919
|
-
| "Rent_Office"
|
|
920
|
-
| "Rent_Research_Facility"
|
|
921
|
-
| "Security_Officer"
|
|
922
|
-
| "Skill_Plan_Manager"
|
|
923
|
-
| "Starbase_Defense_Operator"
|
|
924
|
-
| "Starbase_Fuel_Technician"
|
|
925
|
-
| "Station_Manager"
|
|
926
|
-
| "Trader";
|
|
827
|
+
type GetCorporationsCorporationIdRolesGrantableRolesAtHqGrantableRolesAtHq = __CorporationRole;
|
|
828
|
+
|
|
927
829
|
/**
|
|
928
830
|
* grantable_roles_at_hq array
|
|
929
831
|
*
|
|
930
832
|
* @maxItems 100
|
|
931
833
|
*/
|
|
932
|
-
type GetCorporationsCorporationIdRolesGrantableRolesAtHq =
|
|
933
|
-
|
|
834
|
+
type GetCorporationsCorporationIdRolesGrantableRolesAtHq = __CorporationRole[];
|
|
835
|
+
|
|
934
836
|
/**
|
|
935
837
|
* grantable_roles_at_other string
|
|
936
838
|
*/
|
|
937
|
-
type GetCorporationsCorporationIdRolesGrantableRolesAtOtherGrantableRolesAtOther =
|
|
938
|
-
|
|
939
|
-
| "Account_Take_2"
|
|
940
|
-
| "Account_Take_3"
|
|
941
|
-
| "Account_Take_4"
|
|
942
|
-
| "Account_Take_5"
|
|
943
|
-
| "Account_Take_6"
|
|
944
|
-
| "Account_Take_7"
|
|
945
|
-
| "Accountant"
|
|
946
|
-
| "Auditor"
|
|
947
|
-
| "Brand_Manager"
|
|
948
|
-
| "Communications_Officer"
|
|
949
|
-
| "Config_Equipment"
|
|
950
|
-
| "Config_Starbase_Equipment"
|
|
951
|
-
| "Container_Take_1"
|
|
952
|
-
| "Container_Take_2"
|
|
953
|
-
| "Container_Take_3"
|
|
954
|
-
| "Container_Take_4"
|
|
955
|
-
| "Container_Take_5"
|
|
956
|
-
| "Container_Take_6"
|
|
957
|
-
| "Container_Take_7"
|
|
958
|
-
| "Contract_Manager"
|
|
959
|
-
| "Deliveries_Container_Take"
|
|
960
|
-
| "Deliveries_Query"
|
|
961
|
-
| "Deliveries_Take"
|
|
962
|
-
| "Diplomat"
|
|
963
|
-
| "Director"
|
|
964
|
-
| "Factory_Manager"
|
|
965
|
-
| "Fitting_Manager"
|
|
966
|
-
| "Hangar_Query_1"
|
|
967
|
-
| "Hangar_Query_2"
|
|
968
|
-
| "Hangar_Query_3"
|
|
969
|
-
| "Hangar_Query_4"
|
|
970
|
-
| "Hangar_Query_5"
|
|
971
|
-
| "Hangar_Query_6"
|
|
972
|
-
| "Hangar_Query_7"
|
|
973
|
-
| "Hangar_Take_1"
|
|
974
|
-
| "Hangar_Take_2"
|
|
975
|
-
| "Hangar_Take_3"
|
|
976
|
-
| "Hangar_Take_4"
|
|
977
|
-
| "Hangar_Take_5"
|
|
978
|
-
| "Hangar_Take_6"
|
|
979
|
-
| "Hangar_Take_7"
|
|
980
|
-
| "Junior_Accountant"
|
|
981
|
-
| "Personnel_Manager"
|
|
982
|
-
| "Project_Manager"
|
|
983
|
-
| "Rent_Factory_Facility"
|
|
984
|
-
| "Rent_Office"
|
|
985
|
-
| "Rent_Research_Facility"
|
|
986
|
-
| "Security_Officer"
|
|
987
|
-
| "Skill_Plan_Manager"
|
|
988
|
-
| "Starbase_Defense_Operator"
|
|
989
|
-
| "Starbase_Fuel_Technician"
|
|
990
|
-
| "Station_Manager"
|
|
991
|
-
| "Trader";
|
|
839
|
+
type GetCorporationsCorporationIdRolesGrantableRolesAtOtherGrantableRolesAtOther = __CorporationRole;
|
|
840
|
+
|
|
992
841
|
/**
|
|
993
842
|
* grantable_roles_at_other array
|
|
994
843
|
*
|
|
995
844
|
* @maxItems 100
|
|
996
845
|
*/
|
|
997
|
-
type GetCorporationsCorporationIdRolesGrantableRolesAtOther =
|
|
998
|
-
|
|
846
|
+
type GetCorporationsCorporationIdRolesGrantableRolesAtOther = __CorporationRole[];
|
|
847
|
+
|
|
999
848
|
/**
|
|
1000
849
|
* role string
|
|
1001
850
|
*/
|
|
1002
|
-
type GetCorporationsCorporationIdRolesRole =
|
|
851
|
+
type GetCorporationsCorporationIdRolesRole = __CorporationRole;
|
|
852
|
+
|
|
853
|
+
/**
|
|
854
|
+
* roles array
|
|
855
|
+
*
|
|
856
|
+
* @maxItems 100
|
|
857
|
+
*/
|
|
858
|
+
type GetCorporationsCorporationIdRolesRoles = __CorporationRole[];
|
|
859
|
+
|
|
860
|
+
/**
|
|
861
|
+
* roles_at_base string
|
|
862
|
+
*/
|
|
863
|
+
type GetCorporationsCorporationIdRolesRolesAtBaseRolesAtBase = __CorporationRole;
|
|
864
|
+
|
|
865
|
+
/**
|
|
866
|
+
* roles_at_base array
|
|
867
|
+
*
|
|
868
|
+
* @maxItems 100
|
|
869
|
+
*/
|
|
870
|
+
type GetCorporationsCorporationIdRolesRolesAtBase = __CorporationRole[];
|
|
871
|
+
|
|
872
|
+
/**
|
|
873
|
+
* roles_at_hq string
|
|
874
|
+
*/
|
|
875
|
+
type GetCorporationsCorporationIdRolesRolesAtHqRolesAtHq = __CorporationRole;
|
|
876
|
+
|
|
877
|
+
/**
|
|
878
|
+
* roles_at_hq array
|
|
879
|
+
*
|
|
880
|
+
* @maxItems 100
|
|
881
|
+
*/
|
|
882
|
+
type GetCorporationsCorporationIdRolesRolesAtHq = __CorporationRole[];
|
|
883
|
+
|
|
884
|
+
/**
|
|
885
|
+
* roles_at_other string
|
|
886
|
+
*/
|
|
887
|
+
type GetCorporationsCorporationIdRolesRolesAtOtherRolesAtOther = __CorporationRole;
|
|
888
|
+
|
|
889
|
+
/**
|
|
890
|
+
* roles_at_other array
|
|
891
|
+
*
|
|
892
|
+
* @maxItems 100
|
|
893
|
+
*/
|
|
894
|
+
type GetCorporationsCorporationIdRolesRolesAtOther = __CorporationRole[];
|
|
895
|
+
|
|
896
|
+
/**
|
|
897
|
+
* 200 ok array
|
|
898
|
+
*
|
|
899
|
+
* @maxItems 12601
|
|
900
|
+
*/
|
|
901
|
+
type GetCorporationsCorporationIdRolesOk = GetCorporationsCorporationIdRoles_200Ok[];
|
|
902
|
+
|
|
903
|
+
/**
|
|
904
|
+
* 200 ok object
|
|
905
|
+
*/
|
|
906
|
+
interface GetCorporationsCorporationIdRoles_200Ok {
|
|
907
|
+
/**
|
|
908
|
+
* character_id integer
|
|
909
|
+
*/
|
|
910
|
+
character_id: number;
|
|
911
|
+
grantable_roles?: GetCorporationsCorporationIdRolesGrantableRoles;
|
|
912
|
+
grantable_roles_at_base?: GetCorporationsCorporationIdRolesGrantableRolesAtBase;
|
|
913
|
+
grantable_roles_at_hq?: GetCorporationsCorporationIdRolesGrantableRolesAtHq;
|
|
914
|
+
grantable_roles_at_other?: GetCorporationsCorporationIdRolesGrantableRolesAtOther;
|
|
915
|
+
roles?: GetCorporationsCorporationIdRolesRoles;
|
|
916
|
+
roles_at_base?: GetCorporationsCorporationIdRolesRolesAtBase;
|
|
917
|
+
roles_at_hq?: GetCorporationsCorporationIdRolesRolesAtHq;
|
|
918
|
+
roles_at_other?: GetCorporationsCorporationIdRolesRolesAtOther;
|
|
919
|
+
[k: string]: unknown | undefined;
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
/*!
|
|
923
|
+
* ESI endpoint: get:/corporations/{corporation_id}/roles/history/
|
|
924
|
+
*/
|
|
925
|
+
|
|
926
|
+
/**
|
|
927
|
+
* Corporation role string
|
|
928
|
+
*/
|
|
929
|
+
type __CorporationRole =
|
|
1003
930
|
| "Account_Take_1"
|
|
1004
931
|
| "Account_Take_2"
|
|
1005
932
|
| "Account_Take_3"
|
|
@@ -1054,437 +981,108 @@ type GetCorporationsCorporationIdRolesRole =
|
|
|
1054
981
|
| "Starbase_Fuel_Technician"
|
|
1055
982
|
| "Station_Manager"
|
|
1056
983
|
| "Trader";
|
|
984
|
+
|
|
1057
985
|
/**
|
|
1058
|
-
*
|
|
986
|
+
* new_role string
|
|
987
|
+
*/
|
|
988
|
+
type GetCorporationsCorporationIdRolesHistoryNewRole = __CorporationRole;
|
|
989
|
+
|
|
990
|
+
/**
|
|
991
|
+
* new_roles array
|
|
1059
992
|
*
|
|
1060
|
-
* @maxItems
|
|
993
|
+
* @maxItems 50
|
|
1061
994
|
*/
|
|
1062
|
-
type
|
|
995
|
+
type GetCorporationsCorporationIdRolesHistoryNewRoles = __CorporationRole[];
|
|
996
|
+
|
|
1063
997
|
/**
|
|
1064
|
-
*
|
|
998
|
+
* old_role string
|
|
1065
999
|
*/
|
|
1066
|
-
type
|
|
1067
|
-
|
|
1068
|
-
| "Account_Take_2"
|
|
1069
|
-
| "Account_Take_3"
|
|
1070
|
-
| "Account_Take_4"
|
|
1071
|
-
| "Account_Take_5"
|
|
1072
|
-
| "Account_Take_6"
|
|
1073
|
-
| "Account_Take_7"
|
|
1074
|
-
| "Accountant"
|
|
1075
|
-
| "Auditor"
|
|
1076
|
-
| "Brand_Manager"
|
|
1077
|
-
| "Communications_Officer"
|
|
1078
|
-
| "Config_Equipment"
|
|
1079
|
-
| "Config_Starbase_Equipment"
|
|
1080
|
-
| "Container_Take_1"
|
|
1081
|
-
| "Container_Take_2"
|
|
1082
|
-
| "Container_Take_3"
|
|
1083
|
-
| "Container_Take_4"
|
|
1084
|
-
| "Container_Take_5"
|
|
1085
|
-
| "Container_Take_6"
|
|
1086
|
-
| "Container_Take_7"
|
|
1087
|
-
| "Contract_Manager"
|
|
1088
|
-
| "Deliveries_Container_Take"
|
|
1089
|
-
| "Deliveries_Query"
|
|
1090
|
-
| "Deliveries_Take"
|
|
1091
|
-
| "Diplomat"
|
|
1092
|
-
| "Director"
|
|
1093
|
-
| "Factory_Manager"
|
|
1094
|
-
| "Fitting_Manager"
|
|
1095
|
-
| "Hangar_Query_1"
|
|
1096
|
-
| "Hangar_Query_2"
|
|
1097
|
-
| "Hangar_Query_3"
|
|
1098
|
-
| "Hangar_Query_4"
|
|
1099
|
-
| "Hangar_Query_5"
|
|
1100
|
-
| "Hangar_Query_6"
|
|
1101
|
-
| "Hangar_Query_7"
|
|
1102
|
-
| "Hangar_Take_1"
|
|
1103
|
-
| "Hangar_Take_2"
|
|
1104
|
-
| "Hangar_Take_3"
|
|
1105
|
-
| "Hangar_Take_4"
|
|
1106
|
-
| "Hangar_Take_5"
|
|
1107
|
-
| "Hangar_Take_6"
|
|
1108
|
-
| "Hangar_Take_7"
|
|
1109
|
-
| "Junior_Accountant"
|
|
1110
|
-
| "Personnel_Manager"
|
|
1111
|
-
| "Project_Manager"
|
|
1112
|
-
| "Rent_Factory_Facility"
|
|
1113
|
-
| "Rent_Office"
|
|
1114
|
-
| "Rent_Research_Facility"
|
|
1115
|
-
| "Security_Officer"
|
|
1116
|
-
| "Skill_Plan_Manager"
|
|
1117
|
-
| "Starbase_Defense_Operator"
|
|
1118
|
-
| "Starbase_Fuel_Technician"
|
|
1119
|
-
| "Station_Manager"
|
|
1120
|
-
| "Trader";
|
|
1000
|
+
type GetCorporationsCorporationIdRolesHistoryOldRole = __CorporationRole;
|
|
1001
|
+
|
|
1121
1002
|
/**
|
|
1122
|
-
*
|
|
1003
|
+
* old_roles array
|
|
1123
1004
|
*
|
|
1124
|
-
* @maxItems
|
|
1005
|
+
* @maxItems 50
|
|
1125
1006
|
*/
|
|
1126
|
-
type
|
|
1007
|
+
type GetCorporationsCorporationIdRolesHistoryOldRoles = __CorporationRole[];
|
|
1008
|
+
|
|
1127
1009
|
/**
|
|
1128
|
-
*
|
|
1010
|
+
* role_type string
|
|
1129
1011
|
*/
|
|
1130
|
-
type
|
|
1131
|
-
| "
|
|
1132
|
-
| "
|
|
1133
|
-
| "
|
|
1134
|
-
| "
|
|
1135
|
-
| "
|
|
1136
|
-
| "
|
|
1137
|
-
| "
|
|
1138
|
-
| "
|
|
1139
|
-
|
|
1140
|
-
| "Brand_Manager"
|
|
1141
|
-
| "Communications_Officer"
|
|
1142
|
-
| "Config_Equipment"
|
|
1143
|
-
| "Config_Starbase_Equipment"
|
|
1144
|
-
| "Container_Take_1"
|
|
1145
|
-
| "Container_Take_2"
|
|
1146
|
-
| "Container_Take_3"
|
|
1147
|
-
| "Container_Take_4"
|
|
1148
|
-
| "Container_Take_5"
|
|
1149
|
-
| "Container_Take_6"
|
|
1150
|
-
| "Container_Take_7"
|
|
1151
|
-
| "Contract_Manager"
|
|
1152
|
-
| "Deliveries_Container_Take"
|
|
1153
|
-
| "Deliveries_Query"
|
|
1154
|
-
| "Deliveries_Take"
|
|
1155
|
-
| "Diplomat"
|
|
1156
|
-
| "Director"
|
|
1157
|
-
| "Factory_Manager"
|
|
1158
|
-
| "Fitting_Manager"
|
|
1159
|
-
| "Hangar_Query_1"
|
|
1160
|
-
| "Hangar_Query_2"
|
|
1161
|
-
| "Hangar_Query_3"
|
|
1162
|
-
| "Hangar_Query_4"
|
|
1163
|
-
| "Hangar_Query_5"
|
|
1164
|
-
| "Hangar_Query_6"
|
|
1165
|
-
| "Hangar_Query_7"
|
|
1166
|
-
| "Hangar_Take_1"
|
|
1167
|
-
| "Hangar_Take_2"
|
|
1168
|
-
| "Hangar_Take_3"
|
|
1169
|
-
| "Hangar_Take_4"
|
|
1170
|
-
| "Hangar_Take_5"
|
|
1171
|
-
| "Hangar_Take_6"
|
|
1172
|
-
| "Hangar_Take_7"
|
|
1173
|
-
| "Junior_Accountant"
|
|
1174
|
-
| "Personnel_Manager"
|
|
1175
|
-
| "Project_Manager"
|
|
1176
|
-
| "Rent_Factory_Facility"
|
|
1177
|
-
| "Rent_Office"
|
|
1178
|
-
| "Rent_Research_Facility"
|
|
1179
|
-
| "Security_Officer"
|
|
1180
|
-
| "Skill_Plan_Manager"
|
|
1181
|
-
| "Starbase_Defense_Operator"
|
|
1182
|
-
| "Starbase_Fuel_Technician"
|
|
1183
|
-
| "Station_Manager"
|
|
1184
|
-
| "Trader";
|
|
1012
|
+
type GetCorporationsCorporationIdRolesHistoryRoleType =
|
|
1013
|
+
| "grantable_roles"
|
|
1014
|
+
| "grantable_roles_at_base"
|
|
1015
|
+
| "grantable_roles_at_hq"
|
|
1016
|
+
| "grantable_roles_at_other"
|
|
1017
|
+
| "roles"
|
|
1018
|
+
| "roles_at_base"
|
|
1019
|
+
| "roles_at_hq"
|
|
1020
|
+
| "roles_at_other";
|
|
1021
|
+
|
|
1185
1022
|
/**
|
|
1186
|
-
*
|
|
1023
|
+
* 200 ok array
|
|
1187
1024
|
*
|
|
1188
|
-
* @maxItems
|
|
1025
|
+
* @maxItems 1000
|
|
1189
1026
|
*/
|
|
1190
|
-
type
|
|
1027
|
+
type GetCorporationsCorporationIdRolesHistoryOk = GetCorporationsCorporationIdRolesHistory_200Ok[];
|
|
1028
|
+
|
|
1191
1029
|
/**
|
|
1192
|
-
*
|
|
1030
|
+
* 200 ok object
|
|
1031
|
+
*/
|
|
1032
|
+
interface GetCorporationsCorporationIdRolesHistory_200Ok {
|
|
1033
|
+
/**
|
|
1034
|
+
* changed_at string
|
|
1035
|
+
*/
|
|
1036
|
+
changed_at: string;
|
|
1037
|
+
/**
|
|
1038
|
+
* The character whose roles are changed
|
|
1039
|
+
*/
|
|
1040
|
+
character_id: number;
|
|
1041
|
+
/**
|
|
1042
|
+
* ID of the character who issued this change
|
|
1043
|
+
*/
|
|
1044
|
+
issuer_id: number;
|
|
1045
|
+
new_roles: GetCorporationsCorporationIdRolesHistoryNewRoles;
|
|
1046
|
+
old_roles: GetCorporationsCorporationIdRolesHistoryOldRoles;
|
|
1047
|
+
role_type: GetCorporationsCorporationIdRolesHistoryRoleType;
|
|
1048
|
+
[k: string]: unknown | undefined;
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
/*!
|
|
1052
|
+
* ESI endpoint: get:/corporations/{corporation_id}/shareholders/
|
|
1193
1053
|
*/
|
|
1194
|
-
type GetCorporationsCorporationIdRolesRolesAtOtherRolesAtOther =
|
|
1195
|
-
| "Account_Take_1"
|
|
1196
|
-
| "Account_Take_2"
|
|
1197
|
-
| "Account_Take_3"
|
|
1198
|
-
| "Account_Take_4"
|
|
1199
|
-
| "Account_Take_5"
|
|
1200
|
-
| "Account_Take_6"
|
|
1201
|
-
| "Account_Take_7"
|
|
1202
|
-
| "Accountant"
|
|
1203
|
-
| "Auditor"
|
|
1204
|
-
| "Brand_Manager"
|
|
1205
|
-
| "Communications_Officer"
|
|
1206
|
-
| "Config_Equipment"
|
|
1207
|
-
| "Config_Starbase_Equipment"
|
|
1208
|
-
| "Container_Take_1"
|
|
1209
|
-
| "Container_Take_2"
|
|
1210
|
-
| "Container_Take_3"
|
|
1211
|
-
| "Container_Take_4"
|
|
1212
|
-
| "Container_Take_5"
|
|
1213
|
-
| "Container_Take_6"
|
|
1214
|
-
| "Container_Take_7"
|
|
1215
|
-
| "Contract_Manager"
|
|
1216
|
-
| "Deliveries_Container_Take"
|
|
1217
|
-
| "Deliveries_Query"
|
|
1218
|
-
| "Deliveries_Take"
|
|
1219
|
-
| "Diplomat"
|
|
1220
|
-
| "Director"
|
|
1221
|
-
| "Factory_Manager"
|
|
1222
|
-
| "Fitting_Manager"
|
|
1223
|
-
| "Hangar_Query_1"
|
|
1224
|
-
| "Hangar_Query_2"
|
|
1225
|
-
| "Hangar_Query_3"
|
|
1226
|
-
| "Hangar_Query_4"
|
|
1227
|
-
| "Hangar_Query_5"
|
|
1228
|
-
| "Hangar_Query_6"
|
|
1229
|
-
| "Hangar_Query_7"
|
|
1230
|
-
| "Hangar_Take_1"
|
|
1231
|
-
| "Hangar_Take_2"
|
|
1232
|
-
| "Hangar_Take_3"
|
|
1233
|
-
| "Hangar_Take_4"
|
|
1234
|
-
| "Hangar_Take_5"
|
|
1235
|
-
| "Hangar_Take_6"
|
|
1236
|
-
| "Hangar_Take_7"
|
|
1237
|
-
| "Junior_Accountant"
|
|
1238
|
-
| "Personnel_Manager"
|
|
1239
|
-
| "Project_Manager"
|
|
1240
|
-
| "Rent_Factory_Facility"
|
|
1241
|
-
| "Rent_Office"
|
|
1242
|
-
| "Rent_Research_Facility"
|
|
1243
|
-
| "Security_Officer"
|
|
1244
|
-
| "Skill_Plan_Manager"
|
|
1245
|
-
| "Starbase_Defense_Operator"
|
|
1246
|
-
| "Starbase_Fuel_Technician"
|
|
1247
|
-
| "Station_Manager"
|
|
1248
|
-
| "Trader";
|
|
1249
1054
|
/**
|
|
1250
|
-
*
|
|
1251
|
-
*
|
|
1252
|
-
* @maxItems 100
|
|
1055
|
+
* shareholder_type string
|
|
1253
1056
|
*/
|
|
1254
|
-
type
|
|
1057
|
+
type GetCorporationsCorporationIdShareholdersShareholderType = "character" | "corporation";
|
|
1255
1058
|
/**
|
|
1256
|
-
*
|
|
1059
|
+
* List of shareholders
|
|
1257
1060
|
*
|
|
1258
|
-
* @maxItems
|
|
1061
|
+
* @maxItems 1000
|
|
1259
1062
|
*/
|
|
1260
|
-
type
|
|
1063
|
+
type GetCorporationsCorporationIdShareholdersOk = GetCorporationsCorporationIdShareholders_200Ok[];
|
|
1261
1064
|
|
|
1262
1065
|
/**
|
|
1263
1066
|
* 200 ok object
|
|
1264
1067
|
*/
|
|
1265
|
-
interface
|
|
1068
|
+
interface GetCorporationsCorporationIdShareholders_200Ok {
|
|
1266
1069
|
/**
|
|
1267
|
-
*
|
|
1070
|
+
* share_count integer
|
|
1268
1071
|
*/
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
roles_at_base?: GetCorporationsCorporationIdRolesRolesAtBase;
|
|
1276
|
-
roles_at_hq?: GetCorporationsCorporationIdRolesRolesAtHq;
|
|
1277
|
-
roles_at_other?: GetCorporationsCorporationIdRolesRolesAtOther;
|
|
1072
|
+
share_count: number;
|
|
1073
|
+
/**
|
|
1074
|
+
* shareholder_id integer
|
|
1075
|
+
*/
|
|
1076
|
+
shareholder_id: number;
|
|
1077
|
+
shareholder_type: GetCorporationsCorporationIdShareholdersShareholderType;
|
|
1278
1078
|
[k: string]: unknown | undefined;
|
|
1279
1079
|
}
|
|
1280
1080
|
|
|
1281
1081
|
/*!
|
|
1282
|
-
* ESI endpoint: get:/corporations/{corporation_id}/
|
|
1082
|
+
* ESI endpoint: get:/corporations/{corporation_id}/standings/
|
|
1283
1083
|
*/
|
|
1284
1084
|
/**
|
|
1285
|
-
*
|
|
1286
|
-
*/
|
|
1287
|
-
type GetCorporationsCorporationIdRolesHistoryNewRole =
|
|
1288
|
-
| "Account_Take_1"
|
|
1289
|
-
| "Account_Take_2"
|
|
1290
|
-
| "Account_Take_3"
|
|
1291
|
-
| "Account_Take_4"
|
|
1292
|
-
| "Account_Take_5"
|
|
1293
|
-
| "Account_Take_6"
|
|
1294
|
-
| "Account_Take_7"
|
|
1295
|
-
| "Accountant"
|
|
1296
|
-
| "Auditor"
|
|
1297
|
-
| "Brand_Manager"
|
|
1298
|
-
| "Communications_Officer"
|
|
1299
|
-
| "Config_Equipment"
|
|
1300
|
-
| "Config_Starbase_Equipment"
|
|
1301
|
-
| "Container_Take_1"
|
|
1302
|
-
| "Container_Take_2"
|
|
1303
|
-
| "Container_Take_3"
|
|
1304
|
-
| "Container_Take_4"
|
|
1305
|
-
| "Container_Take_5"
|
|
1306
|
-
| "Container_Take_6"
|
|
1307
|
-
| "Container_Take_7"
|
|
1308
|
-
| "Contract_Manager"
|
|
1309
|
-
| "Deliveries_Container_Take"
|
|
1310
|
-
| "Deliveries_Query"
|
|
1311
|
-
| "Deliveries_Take"
|
|
1312
|
-
| "Diplomat"
|
|
1313
|
-
| "Director"
|
|
1314
|
-
| "Factory_Manager"
|
|
1315
|
-
| "Fitting_Manager"
|
|
1316
|
-
| "Hangar_Query_1"
|
|
1317
|
-
| "Hangar_Query_2"
|
|
1318
|
-
| "Hangar_Query_3"
|
|
1319
|
-
| "Hangar_Query_4"
|
|
1320
|
-
| "Hangar_Query_5"
|
|
1321
|
-
| "Hangar_Query_6"
|
|
1322
|
-
| "Hangar_Query_7"
|
|
1323
|
-
| "Hangar_Take_1"
|
|
1324
|
-
| "Hangar_Take_2"
|
|
1325
|
-
| "Hangar_Take_3"
|
|
1326
|
-
| "Hangar_Take_4"
|
|
1327
|
-
| "Hangar_Take_5"
|
|
1328
|
-
| "Hangar_Take_6"
|
|
1329
|
-
| "Hangar_Take_7"
|
|
1330
|
-
| "Junior_Accountant"
|
|
1331
|
-
| "Personnel_Manager"
|
|
1332
|
-
| "Project_Manager"
|
|
1333
|
-
| "Rent_Factory_Facility"
|
|
1334
|
-
| "Rent_Office"
|
|
1335
|
-
| "Rent_Research_Facility"
|
|
1336
|
-
| "Security_Officer"
|
|
1337
|
-
| "Skill_Plan_Manager"
|
|
1338
|
-
| "Starbase_Defense_Operator"
|
|
1339
|
-
| "Starbase_Fuel_Technician"
|
|
1340
|
-
| "Station_Manager"
|
|
1341
|
-
| "Trader";
|
|
1342
|
-
/**
|
|
1343
|
-
* new_roles array
|
|
1344
|
-
*
|
|
1345
|
-
* @maxItems 50
|
|
1346
|
-
*/
|
|
1347
|
-
type GetCorporationsCorporationIdRolesHistoryNewRoles = GetCorporationsCorporationIdRolesHistoryNewRole[];
|
|
1348
|
-
/**
|
|
1349
|
-
* old_role string
|
|
1350
|
-
*/
|
|
1351
|
-
type GetCorporationsCorporationIdRolesHistoryOldRole =
|
|
1352
|
-
| "Account_Take_1"
|
|
1353
|
-
| "Account_Take_2"
|
|
1354
|
-
| "Account_Take_3"
|
|
1355
|
-
| "Account_Take_4"
|
|
1356
|
-
| "Account_Take_5"
|
|
1357
|
-
| "Account_Take_6"
|
|
1358
|
-
| "Account_Take_7"
|
|
1359
|
-
| "Accountant"
|
|
1360
|
-
| "Auditor"
|
|
1361
|
-
| "Brand_Manager"
|
|
1362
|
-
| "Communications_Officer"
|
|
1363
|
-
| "Config_Equipment"
|
|
1364
|
-
| "Config_Starbase_Equipment"
|
|
1365
|
-
| "Container_Take_1"
|
|
1366
|
-
| "Container_Take_2"
|
|
1367
|
-
| "Container_Take_3"
|
|
1368
|
-
| "Container_Take_4"
|
|
1369
|
-
| "Container_Take_5"
|
|
1370
|
-
| "Container_Take_6"
|
|
1371
|
-
| "Container_Take_7"
|
|
1372
|
-
| "Contract_Manager"
|
|
1373
|
-
| "Deliveries_Container_Take"
|
|
1374
|
-
| "Deliveries_Query"
|
|
1375
|
-
| "Deliveries_Take"
|
|
1376
|
-
| "Diplomat"
|
|
1377
|
-
| "Director"
|
|
1378
|
-
| "Factory_Manager"
|
|
1379
|
-
| "Fitting_Manager"
|
|
1380
|
-
| "Hangar_Query_1"
|
|
1381
|
-
| "Hangar_Query_2"
|
|
1382
|
-
| "Hangar_Query_3"
|
|
1383
|
-
| "Hangar_Query_4"
|
|
1384
|
-
| "Hangar_Query_5"
|
|
1385
|
-
| "Hangar_Query_6"
|
|
1386
|
-
| "Hangar_Query_7"
|
|
1387
|
-
| "Hangar_Take_1"
|
|
1388
|
-
| "Hangar_Take_2"
|
|
1389
|
-
| "Hangar_Take_3"
|
|
1390
|
-
| "Hangar_Take_4"
|
|
1391
|
-
| "Hangar_Take_5"
|
|
1392
|
-
| "Hangar_Take_6"
|
|
1393
|
-
| "Hangar_Take_7"
|
|
1394
|
-
| "Junior_Accountant"
|
|
1395
|
-
| "Personnel_Manager"
|
|
1396
|
-
| "Project_Manager"
|
|
1397
|
-
| "Rent_Factory_Facility"
|
|
1398
|
-
| "Rent_Office"
|
|
1399
|
-
| "Rent_Research_Facility"
|
|
1400
|
-
| "Security_Officer"
|
|
1401
|
-
| "Skill_Plan_Manager"
|
|
1402
|
-
| "Starbase_Defense_Operator"
|
|
1403
|
-
| "Starbase_Fuel_Technician"
|
|
1404
|
-
| "Station_Manager"
|
|
1405
|
-
| "Trader";
|
|
1406
|
-
/**
|
|
1407
|
-
* old_roles array
|
|
1408
|
-
*
|
|
1409
|
-
* @maxItems 50
|
|
1410
|
-
*/
|
|
1411
|
-
type GetCorporationsCorporationIdRolesHistoryOldRoles = GetCorporationsCorporationIdRolesHistoryOldRole[];
|
|
1412
|
-
/**
|
|
1413
|
-
* role_type string
|
|
1414
|
-
*/
|
|
1415
|
-
type GetCorporationsCorporationIdRolesHistoryRoleType =
|
|
1416
|
-
| "grantable_roles"
|
|
1417
|
-
| "grantable_roles_at_base"
|
|
1418
|
-
| "grantable_roles_at_hq"
|
|
1419
|
-
| "grantable_roles_at_other"
|
|
1420
|
-
| "roles"
|
|
1421
|
-
| "roles_at_base"
|
|
1422
|
-
| "roles_at_hq"
|
|
1423
|
-
| "roles_at_other";
|
|
1424
|
-
/**
|
|
1425
|
-
* 200 ok array
|
|
1426
|
-
*
|
|
1427
|
-
* @maxItems 1000
|
|
1428
|
-
*/
|
|
1429
|
-
type GetCorporationsCorporationIdRolesHistoryOk = GetCorporationsCorporationIdRolesHistory_200Ok[];
|
|
1430
|
-
|
|
1431
|
-
/**
|
|
1432
|
-
* 200 ok object
|
|
1433
|
-
*/
|
|
1434
|
-
interface GetCorporationsCorporationIdRolesHistory_200Ok {
|
|
1435
|
-
/**
|
|
1436
|
-
* changed_at string
|
|
1437
|
-
*/
|
|
1438
|
-
changed_at: string;
|
|
1439
|
-
/**
|
|
1440
|
-
* The character whose roles are changed
|
|
1441
|
-
*/
|
|
1442
|
-
character_id: number;
|
|
1443
|
-
/**
|
|
1444
|
-
* ID of the character who issued this change
|
|
1445
|
-
*/
|
|
1446
|
-
issuer_id: number;
|
|
1447
|
-
new_roles: GetCorporationsCorporationIdRolesHistoryNewRoles;
|
|
1448
|
-
old_roles: GetCorporationsCorporationIdRolesHistoryOldRoles;
|
|
1449
|
-
role_type: GetCorporationsCorporationIdRolesHistoryRoleType;
|
|
1450
|
-
[k: string]: unknown | undefined;
|
|
1451
|
-
}
|
|
1452
|
-
|
|
1453
|
-
/*!
|
|
1454
|
-
* ESI endpoint: get:/corporations/{corporation_id}/shareholders/
|
|
1455
|
-
*/
|
|
1456
|
-
/**
|
|
1457
|
-
* shareholder_type string
|
|
1458
|
-
*/
|
|
1459
|
-
type GetCorporationsCorporationIdShareholdersShareholderType = "character" | "corporation";
|
|
1460
|
-
/**
|
|
1461
|
-
* List of shareholders
|
|
1462
|
-
*
|
|
1463
|
-
* @maxItems 1000
|
|
1464
|
-
*/
|
|
1465
|
-
type GetCorporationsCorporationIdShareholdersOk = GetCorporationsCorporationIdShareholders_200Ok[];
|
|
1466
|
-
|
|
1467
|
-
/**
|
|
1468
|
-
* 200 ok object
|
|
1469
|
-
*/
|
|
1470
|
-
interface GetCorporationsCorporationIdShareholders_200Ok {
|
|
1471
|
-
/**
|
|
1472
|
-
* share_count integer
|
|
1473
|
-
*/
|
|
1474
|
-
share_count: number;
|
|
1475
|
-
/**
|
|
1476
|
-
* shareholder_id integer
|
|
1477
|
-
*/
|
|
1478
|
-
shareholder_id: number;
|
|
1479
|
-
shareholder_type: GetCorporationsCorporationIdShareholdersShareholderType;
|
|
1480
|
-
[k: string]: unknown | undefined;
|
|
1481
|
-
}
|
|
1482
|
-
|
|
1483
|
-
/*!
|
|
1484
|
-
* ESI endpoint: get:/corporations/{corporation_id}/standings/
|
|
1485
|
-
*/
|
|
1486
|
-
/**
|
|
1487
|
-
* from_type string
|
|
1085
|
+
* from_type string
|
|
1488
1086
|
*/
|
|
1489
1087
|
type GetCorporationsCorporationIdStandingsFromType = "agent" | "npc_corp" | "faction";
|
|
1490
1088
|
/**
|
|
@@ -1565,60 +1163,43 @@ interface GetCorporationsCorporationIdStarbases_200Ok {
|
|
|
1565
1163
|
/*!
|
|
1566
1164
|
* ESI endpoint: get:/corporations/{corporation_id}/starbases/{starbase_id}/
|
|
1567
1165
|
*/
|
|
1166
|
+
|
|
1568
1167
|
/**
|
|
1569
|
-
* Who can
|
|
1570
|
-
|
|
1571
|
-
type
|
|
1572
|
-
|
|
1573
|
-
| "config_starbase_equipment_role"
|
|
1574
|
-
| "corporation_member"
|
|
1575
|
-
| "starbase_fuel_technician_role";
|
|
1576
|
-
/**
|
|
1577
|
-
* Who can take fuel blocks out of the starbase (POS)'s fuel bay
|
|
1578
|
-
*/
|
|
1579
|
-
type GetCorporationsCorporationIdStarbasesStarbaseIdFuelBayTake =
|
|
1580
|
-
| "alliance_member"
|
|
1581
|
-
| "config_starbase_equipment_role"
|
|
1582
|
-
| "corporation_member"
|
|
1583
|
-
| "starbase_fuel_technician_role";
|
|
1584
|
-
/**
|
|
1585
|
-
* Who can view the starbase (POS)'s fule bay. Characters either need to have required role or belong to the starbase (POS) owner's corporation or alliance, as described by the enum, all other access settings follows the same scheme
|
|
1168
|
+
* Who can perform actions related to starbase (POS) or its structures.
|
|
1169
|
+
*
|
|
1170
|
+
* This type defines the potential access levels for various operations such as anchoring,
|
|
1171
|
+
* taking fuel, viewing fuel bay, onlining, offlining, and unanchoring starbase (POS).
|
|
1586
1172
|
*/
|
|
1587
|
-
type
|
|
1173
|
+
type __StarbaseAccessLevel =
|
|
1588
1174
|
| "alliance_member"
|
|
1589
1175
|
| "config_starbase_equipment_role"
|
|
1590
1176
|
| "corporation_member"
|
|
1591
1177
|
| "starbase_fuel_technician_role";
|
|
1178
|
+
|
|
1592
1179
|
/**
|
|
1593
1180
|
* Fuel blocks and other things that will be consumed when operating a starbase (POS)
|
|
1594
1181
|
*
|
|
1595
1182
|
* @maxItems 20
|
|
1596
1183
|
*/
|
|
1597
|
-
type
|
|
1598
|
-
|
|
1599
|
-
* Who can offline starbase (POS) and its structures
|
|
1600
|
-
*/
|
|
1601
|
-
type GetCorporationsCorporationIdStarbasesStarbaseIdOffline =
|
|
1602
|
-
| "alliance_member"
|
|
1603
|
-
| "config_starbase_equipment_role"
|
|
1604
|
-
| "corporation_member"
|
|
1605
|
-
| "starbase_fuel_technician_role";
|
|
1606
|
-
/**
|
|
1607
|
-
* Who can online starbase (POS) and its structures
|
|
1608
|
-
*/
|
|
1609
|
-
type GetCorporationsCorporationIdStarbasesStarbaseIdOnline =
|
|
1610
|
-
| "alliance_member"
|
|
1611
|
-
| "config_starbase_equipment_role"
|
|
1612
|
-
| "corporation_member"
|
|
1613
|
-
| "starbase_fuel_technician_role";
|
|
1184
|
+
type StarbaseFuels = GetCorporationsCorporationIdStarbasesStarbaseIdFuel[];
|
|
1185
|
+
|
|
1614
1186
|
/**
|
|
1615
|
-
*
|
|
1187
|
+
* fuel object
|
|
1616
1188
|
*/
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1189
|
+
interface GetCorporationsCorporationIdStarbasesStarbaseIdFuel {
|
|
1190
|
+
/**
|
|
1191
|
+
* quantity integer
|
|
1192
|
+
*/
|
|
1193
|
+
quantity: number;
|
|
1194
|
+
/**
|
|
1195
|
+
* type_id integer
|
|
1196
|
+
*/
|
|
1197
|
+
type_id: number;
|
|
1198
|
+
/**
|
|
1199
|
+
* Additional unspecified fields
|
|
1200
|
+
*/
|
|
1201
|
+
[k: string]: unknown | undefined;
|
|
1202
|
+
}
|
|
1622
1203
|
|
|
1623
1204
|
/**
|
|
1624
1205
|
* 200 ok object
|
|
@@ -1628,53 +1209,80 @@ interface GetCorporationsCorporationIdStarbasesStarbaseIdOk {
|
|
|
1628
1209
|
* allow_alliance_members boolean
|
|
1629
1210
|
*/
|
|
1630
1211
|
allow_alliance_members: boolean;
|
|
1212
|
+
|
|
1631
1213
|
/**
|
|
1632
1214
|
* allow_corporation_members boolean
|
|
1633
1215
|
*/
|
|
1634
1216
|
allow_corporation_members: boolean;
|
|
1635
|
-
|
|
1217
|
+
|
|
1218
|
+
/**
|
|
1219
|
+
* Who can anchor starbase (POS) and its structures
|
|
1220
|
+
*/
|
|
1221
|
+
anchor: __StarbaseAccessLevel;
|
|
1222
|
+
|
|
1636
1223
|
/**
|
|
1637
1224
|
* attack_if_at_war boolean
|
|
1638
1225
|
*/
|
|
1639
1226
|
attack_if_at_war: boolean;
|
|
1227
|
+
|
|
1640
1228
|
/**
|
|
1641
1229
|
* attack_if_other_security_status_dropping boolean
|
|
1642
1230
|
*/
|
|
1643
1231
|
attack_if_other_security_status_dropping: boolean;
|
|
1232
|
+
|
|
1644
1233
|
/**
|
|
1645
1234
|
* Starbase (POS) will attack if target's security standing is lower than this value
|
|
1646
1235
|
*/
|
|
1647
1236
|
attack_security_status_threshold?: number;
|
|
1237
|
+
|
|
1648
1238
|
/**
|
|
1649
1239
|
* Starbase (POS) will attack if target's standing is lower than this value
|
|
1650
1240
|
*/
|
|
1651
1241
|
attack_standing_threshold?: number;
|
|
1652
|
-
|
|
1653
|
-
fuel_bay_view: GetCorporationsCorporationIdStarbasesStarbaseIdFuelBayView;
|
|
1654
|
-
fuels?: GetCorporationsCorporationIdStarbasesStarbaseIdFuels;
|
|
1655
|
-
offline: GetCorporationsCorporationIdStarbasesStarbaseIdOffline;
|
|
1656
|
-
online: GetCorporationsCorporationIdStarbasesStarbaseIdOnline;
|
|
1657
|
-
unanchor: GetCorporationsCorporationIdStarbasesStarbaseIdUnanchor;
|
|
1242
|
+
|
|
1658
1243
|
/**
|
|
1659
|
-
*
|
|
1244
|
+
* Who can take fuel blocks out of the starbase (POS)'s fuel bay
|
|
1660
1245
|
*/
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
}
|
|
1664
|
-
/**
|
|
1665
|
-
* fuel object
|
|
1666
|
-
*/
|
|
1667
|
-
interface GetCorporationsCorporationIdStarbasesStarbaseIdFuel {
|
|
1246
|
+
fuel_bay_take: __StarbaseAccessLevel;
|
|
1247
|
+
|
|
1668
1248
|
/**
|
|
1669
|
-
*
|
|
1249
|
+
* Who can view the starbase (POS)'s fuel bay. Characters either need to have required role or belong to the starbase (POS) owner's corporation or alliance, as described by the enum, all other access settings follow the same scheme
|
|
1670
1250
|
*/
|
|
1671
|
-
|
|
1672
|
-
type_id: number;
|
|
1673
|
-
[k: string]: unknown | undefined;
|
|
1674
|
-
}
|
|
1251
|
+
fuel_bay_view: __StarbaseAccessLevel;
|
|
1675
1252
|
|
|
1676
|
-
|
|
1677
|
-
|
|
1253
|
+
/**
|
|
1254
|
+
* Fuel blocks and other things that will be consumed when operating a starbase (POS)
|
|
1255
|
+
*/
|
|
1256
|
+
fuels?: StarbaseFuels;
|
|
1257
|
+
|
|
1258
|
+
/**
|
|
1259
|
+
* Who can offline starbase (POS) and its structures
|
|
1260
|
+
*/
|
|
1261
|
+
offline: __StarbaseAccessLevel;
|
|
1262
|
+
|
|
1263
|
+
/**
|
|
1264
|
+
* Who can online starbase (POS) and its structures
|
|
1265
|
+
*/
|
|
1266
|
+
online: __StarbaseAccessLevel;
|
|
1267
|
+
|
|
1268
|
+
/**
|
|
1269
|
+
* Who can unanchor starbase (POS) and its structures
|
|
1270
|
+
*/
|
|
1271
|
+
unanchor: __StarbaseAccessLevel;
|
|
1272
|
+
|
|
1273
|
+
/**
|
|
1274
|
+
* True if the starbase (POS) is using alliance standings, otherwise using corporation's
|
|
1275
|
+
*/
|
|
1276
|
+
use_alliance_standings: boolean;
|
|
1277
|
+
|
|
1278
|
+
/**
|
|
1279
|
+
* Additional unspecified fields
|
|
1280
|
+
*/
|
|
1281
|
+
[k: string]: unknown | undefined;
|
|
1282
|
+
}
|
|
1283
|
+
|
|
1284
|
+
/*!
|
|
1285
|
+
* ESI endpoint: get:/corporations/{corporation_id}/structures/
|
|
1678
1286
|
*/
|
|
1679
1287
|
/**
|
|
1680
1288
|
* state string
|
|
@@ -1749,308 +1357,44 @@ interface GetCorporationsCorporationIdStructures_200Ok {
|
|
|
1749
1357
|
*/
|
|
1750
1358
|
state_timer_end?: string;
|
|
1751
1359
|
/**
|
|
1752
|
-
* Date at which the structure entered it's current state
|
|
1753
|
-
*/
|
|
1754
|
-
state_timer_start?: string;
|
|
1755
|
-
/**
|
|
1756
|
-
* The Item ID of the structure
|
|
1757
|
-
*/
|
|
1758
|
-
structure_id: number;
|
|
1759
|
-
/**
|
|
1760
|
-
* The solar system the structure is in
|
|
1761
|
-
*/
|
|
1762
|
-
system_id: number;
|
|
1763
|
-
type_id: number;
|
|
1764
|
-
/**
|
|
1765
|
-
* Date at which the structure will unanchor
|
|
1766
|
-
*/
|
|
1767
|
-
unanchors_at?: string;
|
|
1768
|
-
[k: string]: unknown | undefined;
|
|
1769
|
-
}
|
|
1770
|
-
/**
|
|
1771
|
-
* service object
|
|
1772
|
-
*/
|
|
1773
|
-
interface GetCorporationsCorporationIdStructuresService {
|
|
1774
|
-
/**
|
|
1775
|
-
* name string
|
|
1776
|
-
*/
|
|
1777
|
-
name: string;
|
|
1778
|
-
state: GetCorporationsCorporationIdStructuresServiceState;
|
|
1779
|
-
[k: string]: unknown | undefined;
|
|
1780
|
-
}
|
|
1781
|
-
|
|
1782
|
-
/*!
|
|
1783
|
-
* ESI endpoint: get:/corporations/{corporation_id}/titles/
|
|
1784
|
-
*/
|
|
1785
|
-
/**
|
|
1786
|
-
* 200 ok array
|
|
1787
|
-
*
|
|
1788
|
-
* @maxItems 16
|
|
1789
|
-
*/
|
|
1790
|
-
type GetCorporationsCorporationIdTitlesOk = GetCorporationsCorporationIdTitles_200Ok[];
|
|
1791
|
-
/**
|
|
1792
|
-
* grantable_role string
|
|
1793
|
-
*/
|
|
1794
|
-
type GetCorporationsCorporationIdTitlesGrantableRole =
|
|
1795
|
-
| "Account_Take_1"
|
|
1796
|
-
| "Account_Take_2"
|
|
1797
|
-
| "Account_Take_3"
|
|
1798
|
-
| "Account_Take_4"
|
|
1799
|
-
| "Account_Take_5"
|
|
1800
|
-
| "Account_Take_6"
|
|
1801
|
-
| "Account_Take_7"
|
|
1802
|
-
| "Accountant"
|
|
1803
|
-
| "Auditor"
|
|
1804
|
-
| "Brand_Manager"
|
|
1805
|
-
| "Communications_Officer"
|
|
1806
|
-
| "Config_Equipment"
|
|
1807
|
-
| "Config_Starbase_Equipment"
|
|
1808
|
-
| "Container_Take_1"
|
|
1809
|
-
| "Container_Take_2"
|
|
1810
|
-
| "Container_Take_3"
|
|
1811
|
-
| "Container_Take_4"
|
|
1812
|
-
| "Container_Take_5"
|
|
1813
|
-
| "Container_Take_6"
|
|
1814
|
-
| "Container_Take_7"
|
|
1815
|
-
| "Contract_Manager"
|
|
1816
|
-
| "Deliveries_Container_Take"
|
|
1817
|
-
| "Deliveries_Query"
|
|
1818
|
-
| "Deliveries_Take"
|
|
1819
|
-
| "Diplomat"
|
|
1820
|
-
| "Director"
|
|
1821
|
-
| "Factory_Manager"
|
|
1822
|
-
| "Fitting_Manager"
|
|
1823
|
-
| "Hangar_Query_1"
|
|
1824
|
-
| "Hangar_Query_2"
|
|
1825
|
-
| "Hangar_Query_3"
|
|
1826
|
-
| "Hangar_Query_4"
|
|
1827
|
-
| "Hangar_Query_5"
|
|
1828
|
-
| "Hangar_Query_6"
|
|
1829
|
-
| "Hangar_Query_7"
|
|
1830
|
-
| "Hangar_Take_1"
|
|
1831
|
-
| "Hangar_Take_2"
|
|
1832
|
-
| "Hangar_Take_3"
|
|
1833
|
-
| "Hangar_Take_4"
|
|
1834
|
-
| "Hangar_Take_5"
|
|
1835
|
-
| "Hangar_Take_6"
|
|
1836
|
-
| "Hangar_Take_7"
|
|
1837
|
-
| "Junior_Accountant"
|
|
1838
|
-
| "Personnel_Manager"
|
|
1839
|
-
| "Project_Manager"
|
|
1840
|
-
| "Rent_Factory_Facility"
|
|
1841
|
-
| "Rent_Office"
|
|
1842
|
-
| "Rent_Research_Facility"
|
|
1843
|
-
| "Security_Officer"
|
|
1844
|
-
| "Skill_Plan_Manager"
|
|
1845
|
-
| "Starbase_Defense_Operator"
|
|
1846
|
-
| "Starbase_Fuel_Technician"
|
|
1847
|
-
| "Station_Manager"
|
|
1848
|
-
| "Trader";
|
|
1849
|
-
/**
|
|
1850
|
-
* grantable_roles array
|
|
1851
|
-
*
|
|
1852
|
-
* @maxItems 50
|
|
1853
|
-
*/
|
|
1854
|
-
type GetCorporationsCorporationIdTitlesGrantableRoles = GetCorporationsCorporationIdTitlesGrantableRole[];
|
|
1855
|
-
/**
|
|
1856
|
-
* grantable_roles_at_base string
|
|
1857
|
-
*/
|
|
1858
|
-
type GetCorporationsCorporationIdTitlesGrantableRolesAtBaseGrantableRolesAtBase =
|
|
1859
|
-
| "Account_Take_1"
|
|
1860
|
-
| "Account_Take_2"
|
|
1861
|
-
| "Account_Take_3"
|
|
1862
|
-
| "Account_Take_4"
|
|
1863
|
-
| "Account_Take_5"
|
|
1864
|
-
| "Account_Take_6"
|
|
1865
|
-
| "Account_Take_7"
|
|
1866
|
-
| "Accountant"
|
|
1867
|
-
| "Auditor"
|
|
1868
|
-
| "Brand_Manager"
|
|
1869
|
-
| "Communications_Officer"
|
|
1870
|
-
| "Config_Equipment"
|
|
1871
|
-
| "Config_Starbase_Equipment"
|
|
1872
|
-
| "Container_Take_1"
|
|
1873
|
-
| "Container_Take_2"
|
|
1874
|
-
| "Container_Take_3"
|
|
1875
|
-
| "Container_Take_4"
|
|
1876
|
-
| "Container_Take_5"
|
|
1877
|
-
| "Container_Take_6"
|
|
1878
|
-
| "Container_Take_7"
|
|
1879
|
-
| "Contract_Manager"
|
|
1880
|
-
| "Deliveries_Container_Take"
|
|
1881
|
-
| "Deliveries_Query"
|
|
1882
|
-
| "Deliveries_Take"
|
|
1883
|
-
| "Diplomat"
|
|
1884
|
-
| "Director"
|
|
1885
|
-
| "Factory_Manager"
|
|
1886
|
-
| "Fitting_Manager"
|
|
1887
|
-
| "Hangar_Query_1"
|
|
1888
|
-
| "Hangar_Query_2"
|
|
1889
|
-
| "Hangar_Query_3"
|
|
1890
|
-
| "Hangar_Query_4"
|
|
1891
|
-
| "Hangar_Query_5"
|
|
1892
|
-
| "Hangar_Query_6"
|
|
1893
|
-
| "Hangar_Query_7"
|
|
1894
|
-
| "Hangar_Take_1"
|
|
1895
|
-
| "Hangar_Take_2"
|
|
1896
|
-
| "Hangar_Take_3"
|
|
1897
|
-
| "Hangar_Take_4"
|
|
1898
|
-
| "Hangar_Take_5"
|
|
1899
|
-
| "Hangar_Take_6"
|
|
1900
|
-
| "Hangar_Take_7"
|
|
1901
|
-
| "Junior_Accountant"
|
|
1902
|
-
| "Personnel_Manager"
|
|
1903
|
-
| "Project_Manager"
|
|
1904
|
-
| "Rent_Factory_Facility"
|
|
1905
|
-
| "Rent_Office"
|
|
1906
|
-
| "Rent_Research_Facility"
|
|
1907
|
-
| "Security_Officer"
|
|
1908
|
-
| "Skill_Plan_Manager"
|
|
1909
|
-
| "Starbase_Defense_Operator"
|
|
1910
|
-
| "Starbase_Fuel_Technician"
|
|
1911
|
-
| "Station_Manager"
|
|
1912
|
-
| "Trader";
|
|
1913
|
-
/**
|
|
1914
|
-
* grantable_roles_at_base array
|
|
1915
|
-
*
|
|
1916
|
-
* @maxItems 50
|
|
1917
|
-
*/
|
|
1918
|
-
type GetCorporationsCorporationIdTitlesGrantableRolesAtBase =
|
|
1919
|
-
GetCorporationsCorporationIdTitlesGrantableRolesAtBaseGrantableRolesAtBase[];
|
|
1920
|
-
/**
|
|
1921
|
-
* grantable_roles_at_hq string
|
|
1922
|
-
*/
|
|
1923
|
-
type GetCorporationsCorporationIdTitlesGrantableRolesAtHqGrantableRolesAtHq =
|
|
1924
|
-
| "Account_Take_1"
|
|
1925
|
-
| "Account_Take_2"
|
|
1926
|
-
| "Account_Take_3"
|
|
1927
|
-
| "Account_Take_4"
|
|
1928
|
-
| "Account_Take_5"
|
|
1929
|
-
| "Account_Take_6"
|
|
1930
|
-
| "Account_Take_7"
|
|
1931
|
-
| "Accountant"
|
|
1932
|
-
| "Auditor"
|
|
1933
|
-
| "Brand_Manager"
|
|
1934
|
-
| "Communications_Officer"
|
|
1935
|
-
| "Config_Equipment"
|
|
1936
|
-
| "Config_Starbase_Equipment"
|
|
1937
|
-
| "Container_Take_1"
|
|
1938
|
-
| "Container_Take_2"
|
|
1939
|
-
| "Container_Take_3"
|
|
1940
|
-
| "Container_Take_4"
|
|
1941
|
-
| "Container_Take_5"
|
|
1942
|
-
| "Container_Take_6"
|
|
1943
|
-
| "Container_Take_7"
|
|
1944
|
-
| "Contract_Manager"
|
|
1945
|
-
| "Deliveries_Container_Take"
|
|
1946
|
-
| "Deliveries_Query"
|
|
1947
|
-
| "Deliveries_Take"
|
|
1948
|
-
| "Diplomat"
|
|
1949
|
-
| "Director"
|
|
1950
|
-
| "Factory_Manager"
|
|
1951
|
-
| "Fitting_Manager"
|
|
1952
|
-
| "Hangar_Query_1"
|
|
1953
|
-
| "Hangar_Query_2"
|
|
1954
|
-
| "Hangar_Query_3"
|
|
1955
|
-
| "Hangar_Query_4"
|
|
1956
|
-
| "Hangar_Query_5"
|
|
1957
|
-
| "Hangar_Query_6"
|
|
1958
|
-
| "Hangar_Query_7"
|
|
1959
|
-
| "Hangar_Take_1"
|
|
1960
|
-
| "Hangar_Take_2"
|
|
1961
|
-
| "Hangar_Take_3"
|
|
1962
|
-
| "Hangar_Take_4"
|
|
1963
|
-
| "Hangar_Take_5"
|
|
1964
|
-
| "Hangar_Take_6"
|
|
1965
|
-
| "Hangar_Take_7"
|
|
1966
|
-
| "Junior_Accountant"
|
|
1967
|
-
| "Personnel_Manager"
|
|
1968
|
-
| "Project_Manager"
|
|
1969
|
-
| "Rent_Factory_Facility"
|
|
1970
|
-
| "Rent_Office"
|
|
1971
|
-
| "Rent_Research_Facility"
|
|
1972
|
-
| "Security_Officer"
|
|
1973
|
-
| "Skill_Plan_Manager"
|
|
1974
|
-
| "Starbase_Defense_Operator"
|
|
1975
|
-
| "Starbase_Fuel_Technician"
|
|
1976
|
-
| "Station_Manager"
|
|
1977
|
-
| "Trader";
|
|
1978
|
-
/**
|
|
1979
|
-
* grantable_roles_at_hq array
|
|
1980
|
-
*
|
|
1981
|
-
* @maxItems 50
|
|
1982
|
-
*/
|
|
1983
|
-
type GetCorporationsCorporationIdTitlesGrantableRolesAtHq =
|
|
1984
|
-
GetCorporationsCorporationIdTitlesGrantableRolesAtHqGrantableRolesAtHq[];
|
|
1985
|
-
/**
|
|
1986
|
-
* grantable_roles_at_other string
|
|
1987
|
-
*/
|
|
1988
|
-
type GetCorporationsCorporationIdTitlesGrantableRolesAtOtherGrantableRolesAtOther =
|
|
1989
|
-
| "Account_Take_1"
|
|
1990
|
-
| "Account_Take_2"
|
|
1991
|
-
| "Account_Take_3"
|
|
1992
|
-
| "Account_Take_4"
|
|
1993
|
-
| "Account_Take_5"
|
|
1994
|
-
| "Account_Take_6"
|
|
1995
|
-
| "Account_Take_7"
|
|
1996
|
-
| "Accountant"
|
|
1997
|
-
| "Auditor"
|
|
1998
|
-
| "Brand_Manager"
|
|
1999
|
-
| "Communications_Officer"
|
|
2000
|
-
| "Config_Equipment"
|
|
2001
|
-
| "Config_Starbase_Equipment"
|
|
2002
|
-
| "Container_Take_1"
|
|
2003
|
-
| "Container_Take_2"
|
|
2004
|
-
| "Container_Take_3"
|
|
2005
|
-
| "Container_Take_4"
|
|
2006
|
-
| "Container_Take_5"
|
|
2007
|
-
| "Container_Take_6"
|
|
2008
|
-
| "Container_Take_7"
|
|
2009
|
-
| "Contract_Manager"
|
|
2010
|
-
| "Deliveries_Container_Take"
|
|
2011
|
-
| "Deliveries_Query"
|
|
2012
|
-
| "Deliveries_Take"
|
|
2013
|
-
| "Diplomat"
|
|
2014
|
-
| "Director"
|
|
2015
|
-
| "Factory_Manager"
|
|
2016
|
-
| "Fitting_Manager"
|
|
2017
|
-
| "Hangar_Query_1"
|
|
2018
|
-
| "Hangar_Query_2"
|
|
2019
|
-
| "Hangar_Query_3"
|
|
2020
|
-
| "Hangar_Query_4"
|
|
2021
|
-
| "Hangar_Query_5"
|
|
2022
|
-
| "Hangar_Query_6"
|
|
2023
|
-
| "Hangar_Query_7"
|
|
2024
|
-
| "Hangar_Take_1"
|
|
2025
|
-
| "Hangar_Take_2"
|
|
2026
|
-
| "Hangar_Take_3"
|
|
2027
|
-
| "Hangar_Take_4"
|
|
2028
|
-
| "Hangar_Take_5"
|
|
2029
|
-
| "Hangar_Take_6"
|
|
2030
|
-
| "Hangar_Take_7"
|
|
2031
|
-
| "Junior_Accountant"
|
|
2032
|
-
| "Personnel_Manager"
|
|
2033
|
-
| "Project_Manager"
|
|
2034
|
-
| "Rent_Factory_Facility"
|
|
2035
|
-
| "Rent_Office"
|
|
2036
|
-
| "Rent_Research_Facility"
|
|
2037
|
-
| "Security_Officer"
|
|
2038
|
-
| "Skill_Plan_Manager"
|
|
2039
|
-
| "Starbase_Defense_Operator"
|
|
2040
|
-
| "Starbase_Fuel_Technician"
|
|
2041
|
-
| "Station_Manager"
|
|
2042
|
-
| "Trader";
|
|
1360
|
+
* Date at which the structure entered it's current state
|
|
1361
|
+
*/
|
|
1362
|
+
state_timer_start?: string;
|
|
1363
|
+
/**
|
|
1364
|
+
* The Item ID of the structure
|
|
1365
|
+
*/
|
|
1366
|
+
structure_id: number;
|
|
1367
|
+
/**
|
|
1368
|
+
* The solar system the structure is in
|
|
1369
|
+
*/
|
|
1370
|
+
system_id: number;
|
|
1371
|
+
type_id: number;
|
|
1372
|
+
/**
|
|
1373
|
+
* Date at which the structure will unanchor
|
|
1374
|
+
*/
|
|
1375
|
+
unanchors_at?: string;
|
|
1376
|
+
[k: string]: unknown | undefined;
|
|
1377
|
+
}
|
|
2043
1378
|
/**
|
|
2044
|
-
*
|
|
2045
|
-
|
|
2046
|
-
|
|
1379
|
+
* service object
|
|
1380
|
+
*/
|
|
1381
|
+
interface GetCorporationsCorporationIdStructuresService {
|
|
1382
|
+
/**
|
|
1383
|
+
* name string
|
|
1384
|
+
*/
|
|
1385
|
+
name: string;
|
|
1386
|
+
state: GetCorporationsCorporationIdStructuresServiceState;
|
|
1387
|
+
[k: string]: unknown | undefined;
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1390
|
+
/*!
|
|
1391
|
+
* ESI endpoint: get:/corporations/{corporation_id}/titles/
|
|
2047
1392
|
*/
|
|
2048
|
-
|
|
2049
|
-
GetCorporationsCorporationIdTitlesGrantableRolesAtOtherGrantableRolesAtOther[];
|
|
1393
|
+
|
|
2050
1394
|
/**
|
|
2051
|
-
* role string
|
|
1395
|
+
* Base role string for all roles and grantable roles.
|
|
2052
1396
|
*/
|
|
2053
|
-
type
|
|
1397
|
+
type GccIdTitlesBaseRole =
|
|
2054
1398
|
| "Account_Take_1"
|
|
2055
1399
|
| "Account_Take_2"
|
|
2056
1400
|
| "Account_Take_3"
|
|
@@ -2105,205 +1449,109 @@ type GetCorporationsCorporationIdTitlesRole =
|
|
|
2105
1449
|
| "Starbase_Fuel_Technician"
|
|
2106
1450
|
| "Station_Manager"
|
|
2107
1451
|
| "Trader";
|
|
1452
|
+
|
|
1453
|
+
/**
|
|
1454
|
+
* grantable_role string
|
|
1455
|
+
*/
|
|
1456
|
+
type GetCorporationsCorporationIdTitlesGrantableRole = GccIdTitlesBaseRole;
|
|
1457
|
+
|
|
1458
|
+
/**
|
|
1459
|
+
* grantable_roles array
|
|
1460
|
+
*
|
|
1461
|
+
* @maxItems 50
|
|
1462
|
+
*/
|
|
1463
|
+
type GetCorporationsCorporationIdTitlesGrantableRoles = GccIdTitlesBaseRole[];
|
|
1464
|
+
|
|
1465
|
+
/**
|
|
1466
|
+
* grantable_roles_at_base string
|
|
1467
|
+
*/
|
|
1468
|
+
type GetCorporationsCorporationIdTitlesGrantableRolesAtBaseGrantableRolesAtBase = GccIdTitlesBaseRole;
|
|
1469
|
+
|
|
1470
|
+
/**
|
|
1471
|
+
* grantable_roles_at_base array
|
|
1472
|
+
*
|
|
1473
|
+
* @maxItems 50
|
|
1474
|
+
*/
|
|
1475
|
+
type GetCorporationsCorporationIdTitlesGrantableRolesAtBase = GccIdTitlesBaseRole[];
|
|
1476
|
+
|
|
1477
|
+
/**
|
|
1478
|
+
* grantable_roles_at_hq string
|
|
1479
|
+
*/
|
|
1480
|
+
type GetCorporationsCorporationIdTitlesGrantableRolesAtHqGrantableRolesAtHq = GccIdTitlesBaseRole;
|
|
1481
|
+
|
|
1482
|
+
/**
|
|
1483
|
+
* grantable_roles_at_hq array
|
|
1484
|
+
*
|
|
1485
|
+
* @maxItems 50
|
|
1486
|
+
*/
|
|
1487
|
+
type GetCorporationsCorporationIdTitlesGrantableRolesAtHq = GccIdTitlesBaseRole[];
|
|
1488
|
+
|
|
1489
|
+
/**
|
|
1490
|
+
* grantable_roles_at_other string
|
|
1491
|
+
*/
|
|
1492
|
+
type GetCorporationsCorporationIdTitlesGrantableRolesAtOtherGrantableRolesAtOther = GccIdTitlesBaseRole;
|
|
1493
|
+
|
|
1494
|
+
/**
|
|
1495
|
+
* grantable_roles_at_other array
|
|
1496
|
+
*
|
|
1497
|
+
* @maxItems 50
|
|
1498
|
+
*/
|
|
1499
|
+
type GetCorporationsCorporationIdTitlesGrantableRolesAtOther = GccIdTitlesBaseRole[];
|
|
1500
|
+
|
|
1501
|
+
/**
|
|
1502
|
+
* role string
|
|
1503
|
+
*/
|
|
1504
|
+
type GetCorporationsCorporationIdTitlesRole = GccIdTitlesBaseRole;
|
|
1505
|
+
|
|
2108
1506
|
/**
|
|
2109
1507
|
* roles array
|
|
2110
1508
|
*
|
|
2111
1509
|
* @maxItems 50
|
|
2112
1510
|
*/
|
|
2113
|
-
type GetCorporationsCorporationIdTitlesRoles =
|
|
1511
|
+
type GetCorporationsCorporationIdTitlesRoles = GccIdTitlesBaseRole[];
|
|
1512
|
+
|
|
2114
1513
|
/**
|
|
2115
1514
|
* roles_at_base string
|
|
2116
1515
|
*/
|
|
2117
|
-
type GetCorporationsCorporationIdTitlesRolesAtBaseRolesAtBase =
|
|
2118
|
-
|
|
2119
|
-
| "Account_Take_2"
|
|
2120
|
-
| "Account_Take_3"
|
|
2121
|
-
| "Account_Take_4"
|
|
2122
|
-
| "Account_Take_5"
|
|
2123
|
-
| "Account_Take_6"
|
|
2124
|
-
| "Account_Take_7"
|
|
2125
|
-
| "Accountant"
|
|
2126
|
-
| "Auditor"
|
|
2127
|
-
| "Brand_Manager"
|
|
2128
|
-
| "Communications_Officer"
|
|
2129
|
-
| "Config_Equipment"
|
|
2130
|
-
| "Config_Starbase_Equipment"
|
|
2131
|
-
| "Container_Take_1"
|
|
2132
|
-
| "Container_Take_2"
|
|
2133
|
-
| "Container_Take_3"
|
|
2134
|
-
| "Container_Take_4"
|
|
2135
|
-
| "Container_Take_5"
|
|
2136
|
-
| "Container_Take_6"
|
|
2137
|
-
| "Container_Take_7"
|
|
2138
|
-
| "Contract_Manager"
|
|
2139
|
-
| "Deliveries_Container_Take"
|
|
2140
|
-
| "Deliveries_Query"
|
|
2141
|
-
| "Deliveries_Take"
|
|
2142
|
-
| "Diplomat"
|
|
2143
|
-
| "Director"
|
|
2144
|
-
| "Factory_Manager"
|
|
2145
|
-
| "Fitting_Manager"
|
|
2146
|
-
| "Hangar_Query_1"
|
|
2147
|
-
| "Hangar_Query_2"
|
|
2148
|
-
| "Hangar_Query_3"
|
|
2149
|
-
| "Hangar_Query_4"
|
|
2150
|
-
| "Hangar_Query_5"
|
|
2151
|
-
| "Hangar_Query_6"
|
|
2152
|
-
| "Hangar_Query_7"
|
|
2153
|
-
| "Hangar_Take_1"
|
|
2154
|
-
| "Hangar_Take_2"
|
|
2155
|
-
| "Hangar_Take_3"
|
|
2156
|
-
| "Hangar_Take_4"
|
|
2157
|
-
| "Hangar_Take_5"
|
|
2158
|
-
| "Hangar_Take_6"
|
|
2159
|
-
| "Hangar_Take_7"
|
|
2160
|
-
| "Junior_Accountant"
|
|
2161
|
-
| "Personnel_Manager"
|
|
2162
|
-
| "Project_Manager"
|
|
2163
|
-
| "Rent_Factory_Facility"
|
|
2164
|
-
| "Rent_Office"
|
|
2165
|
-
| "Rent_Research_Facility"
|
|
2166
|
-
| "Security_Officer"
|
|
2167
|
-
| "Skill_Plan_Manager"
|
|
2168
|
-
| "Starbase_Defense_Operator"
|
|
2169
|
-
| "Starbase_Fuel_Technician"
|
|
2170
|
-
| "Station_Manager"
|
|
2171
|
-
| "Trader";
|
|
1516
|
+
type GetCorporationsCorporationIdTitlesRolesAtBaseRolesAtBase = GccIdTitlesBaseRole;
|
|
1517
|
+
|
|
2172
1518
|
/**
|
|
2173
1519
|
* roles_at_base array
|
|
2174
1520
|
*
|
|
2175
1521
|
* @maxItems 50
|
|
2176
1522
|
*/
|
|
2177
|
-
type GetCorporationsCorporationIdTitlesRolesAtBase =
|
|
1523
|
+
type GetCorporationsCorporationIdTitlesRolesAtBase = GccIdTitlesBaseRole[];
|
|
1524
|
+
|
|
2178
1525
|
/**
|
|
2179
1526
|
* roles_at_hq string
|
|
2180
1527
|
*/
|
|
2181
|
-
type GetCorporationsCorporationIdTitlesRolesAtHqRolesAtHq =
|
|
2182
|
-
|
|
2183
|
-
| "Account_Take_2"
|
|
2184
|
-
| "Account_Take_3"
|
|
2185
|
-
| "Account_Take_4"
|
|
2186
|
-
| "Account_Take_5"
|
|
2187
|
-
| "Account_Take_6"
|
|
2188
|
-
| "Account_Take_7"
|
|
2189
|
-
| "Accountant"
|
|
2190
|
-
| "Auditor"
|
|
2191
|
-
| "Brand_Manager"
|
|
2192
|
-
| "Communications_Officer"
|
|
2193
|
-
| "Config_Equipment"
|
|
2194
|
-
| "Config_Starbase_Equipment"
|
|
2195
|
-
| "Container_Take_1"
|
|
2196
|
-
| "Container_Take_2"
|
|
2197
|
-
| "Container_Take_3"
|
|
2198
|
-
| "Container_Take_4"
|
|
2199
|
-
| "Container_Take_5"
|
|
2200
|
-
| "Container_Take_6"
|
|
2201
|
-
| "Container_Take_7"
|
|
2202
|
-
| "Contract_Manager"
|
|
2203
|
-
| "Deliveries_Container_Take"
|
|
2204
|
-
| "Deliveries_Query"
|
|
2205
|
-
| "Deliveries_Take"
|
|
2206
|
-
| "Diplomat"
|
|
2207
|
-
| "Director"
|
|
2208
|
-
| "Factory_Manager"
|
|
2209
|
-
| "Fitting_Manager"
|
|
2210
|
-
| "Hangar_Query_1"
|
|
2211
|
-
| "Hangar_Query_2"
|
|
2212
|
-
| "Hangar_Query_3"
|
|
2213
|
-
| "Hangar_Query_4"
|
|
2214
|
-
| "Hangar_Query_5"
|
|
2215
|
-
| "Hangar_Query_6"
|
|
2216
|
-
| "Hangar_Query_7"
|
|
2217
|
-
| "Hangar_Take_1"
|
|
2218
|
-
| "Hangar_Take_2"
|
|
2219
|
-
| "Hangar_Take_3"
|
|
2220
|
-
| "Hangar_Take_4"
|
|
2221
|
-
| "Hangar_Take_5"
|
|
2222
|
-
| "Hangar_Take_6"
|
|
2223
|
-
| "Hangar_Take_7"
|
|
2224
|
-
| "Junior_Accountant"
|
|
2225
|
-
| "Personnel_Manager"
|
|
2226
|
-
| "Project_Manager"
|
|
2227
|
-
| "Rent_Factory_Facility"
|
|
2228
|
-
| "Rent_Office"
|
|
2229
|
-
| "Rent_Research_Facility"
|
|
2230
|
-
| "Security_Officer"
|
|
2231
|
-
| "Skill_Plan_Manager"
|
|
2232
|
-
| "Starbase_Defense_Operator"
|
|
2233
|
-
| "Starbase_Fuel_Technician"
|
|
2234
|
-
| "Station_Manager"
|
|
2235
|
-
| "Trader";
|
|
1528
|
+
type GetCorporationsCorporationIdTitlesRolesAtHqRolesAtHq = GccIdTitlesBaseRole;
|
|
1529
|
+
|
|
2236
1530
|
/**
|
|
2237
1531
|
* roles_at_hq array
|
|
2238
1532
|
*
|
|
2239
1533
|
* @maxItems 50
|
|
2240
1534
|
*/
|
|
2241
|
-
type GetCorporationsCorporationIdTitlesRolesAtHq =
|
|
1535
|
+
type GetCorporationsCorporationIdTitlesRolesAtHq = GccIdTitlesBaseRole[];
|
|
1536
|
+
|
|
2242
1537
|
/**
|
|
2243
1538
|
* roles_at_other string
|
|
2244
1539
|
*/
|
|
2245
|
-
type GetCorporationsCorporationIdTitlesRolesAtOtherRolesAtOther =
|
|
2246
|
-
|
|
2247
|
-
| "Account_Take_2"
|
|
2248
|
-
| "Account_Take_3"
|
|
2249
|
-
| "Account_Take_4"
|
|
2250
|
-
| "Account_Take_5"
|
|
2251
|
-
| "Account_Take_6"
|
|
2252
|
-
| "Account_Take_7"
|
|
2253
|
-
| "Accountant"
|
|
2254
|
-
| "Auditor"
|
|
2255
|
-
| "Brand_Manager"
|
|
2256
|
-
| "Communications_Officer"
|
|
2257
|
-
| "Config_Equipment"
|
|
2258
|
-
| "Config_Starbase_Equipment"
|
|
2259
|
-
| "Container_Take_1"
|
|
2260
|
-
| "Container_Take_2"
|
|
2261
|
-
| "Container_Take_3"
|
|
2262
|
-
| "Container_Take_4"
|
|
2263
|
-
| "Container_Take_5"
|
|
2264
|
-
| "Container_Take_6"
|
|
2265
|
-
| "Container_Take_7"
|
|
2266
|
-
| "Contract_Manager"
|
|
2267
|
-
| "Deliveries_Container_Take"
|
|
2268
|
-
| "Deliveries_Query"
|
|
2269
|
-
| "Deliveries_Take"
|
|
2270
|
-
| "Diplomat"
|
|
2271
|
-
| "Director"
|
|
2272
|
-
| "Factory_Manager"
|
|
2273
|
-
| "Fitting_Manager"
|
|
2274
|
-
| "Hangar_Query_1"
|
|
2275
|
-
| "Hangar_Query_2"
|
|
2276
|
-
| "Hangar_Query_3"
|
|
2277
|
-
| "Hangar_Query_4"
|
|
2278
|
-
| "Hangar_Query_5"
|
|
2279
|
-
| "Hangar_Query_6"
|
|
2280
|
-
| "Hangar_Query_7"
|
|
2281
|
-
| "Hangar_Take_1"
|
|
2282
|
-
| "Hangar_Take_2"
|
|
2283
|
-
| "Hangar_Take_3"
|
|
2284
|
-
| "Hangar_Take_4"
|
|
2285
|
-
| "Hangar_Take_5"
|
|
2286
|
-
| "Hangar_Take_6"
|
|
2287
|
-
| "Hangar_Take_7"
|
|
2288
|
-
| "Junior_Accountant"
|
|
2289
|
-
| "Personnel_Manager"
|
|
2290
|
-
| "Project_Manager"
|
|
2291
|
-
| "Rent_Factory_Facility"
|
|
2292
|
-
| "Rent_Office"
|
|
2293
|
-
| "Rent_Research_Facility"
|
|
2294
|
-
| "Security_Officer"
|
|
2295
|
-
| "Skill_Plan_Manager"
|
|
2296
|
-
| "Starbase_Defense_Operator"
|
|
2297
|
-
| "Starbase_Fuel_Technician"
|
|
2298
|
-
| "Station_Manager"
|
|
2299
|
-
| "Trader";
|
|
1540
|
+
type GetCorporationsCorporationIdTitlesRolesAtOtherRolesAtOther = GccIdTitlesBaseRole;
|
|
1541
|
+
|
|
2300
1542
|
/**
|
|
2301
1543
|
* roles_at_other array
|
|
2302
1544
|
*
|
|
2303
1545
|
* @maxItems 50
|
|
2304
1546
|
*/
|
|
2305
|
-
type GetCorporationsCorporationIdTitlesRolesAtOther =
|
|
2306
|
-
|
|
1547
|
+
type GetCorporationsCorporationIdTitlesRolesAtOther = GccIdTitlesBaseRole[];
|
|
1548
|
+
|
|
1549
|
+
/**
|
|
1550
|
+
* 200 ok array
|
|
1551
|
+
*
|
|
1552
|
+
* @maxItems 16
|
|
1553
|
+
*/
|
|
1554
|
+
type GetCorporationsCorporationIdTitlesOk = GetCorporationsCorporationIdTitles_200Ok[];
|
|
2307
1555
|
|
|
2308
1556
|
/**
|
|
2309
1557
|
* 200 ok object
|