File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " rfesi"
3
- version = " 0.15.0 "
3
+ version = " 0.15.1 "
4
4
authors = [
" Celeo <[email protected] >" ]
5
5
edition = " 2021"
6
6
description = " Rust API for EVE Online's ESI"
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ pub struct CharacterPublicInfo {
21
21
22
22
#[ derive( Debug , Deserialize ) ]
23
23
#[ allow( missing_docs) ]
24
- pub struct CorporationHistoryItem {
24
+ pub struct CharacterCorporationHistoryItem {
25
25
pub corporation_id : u64 ,
26
26
pub record_id : u64 ,
27
27
pub start_date : String ,
@@ -59,7 +59,7 @@ impl<'a> CharacterGroup<'a> {
59
59
get_history,
60
60
"get_characters_character_id_corporationhistory" ,
61
61
RequestType :: Public ,
62
- Vec <CorporationHistoryItem >,
62
+ Vec <CharacterCorporationHistoryItem >,
63
63
( character_id: u64 ) => "{character_id}"
64
64
) ;
65
65
You can’t perform that action at this time.
0 commit comments